npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

wechaty-authing

v1.0.9

Published

wechaty-authing 主要用于 Wechaty 开发者将 Wechaty 的 Contact、Room 同步到 Authing 进行统一的管理。

Downloads

44

Readme

wechaty-authing

npm npm Maintainability Test Coverage

简体中文

Usage

POC Example: https://github.com/Authing/wechaty-authing-poc

Constructor

Params: WechatyAuthingConfig | ManagementClientOptions

Ref docs: https://docs.authing.cn/v2/reference/sdk-for-node/

Example:

import { WechatyAuthing, type WechatyAuthingConfig } from 'wechaty-authing';

const config: WechatyAuthingConfig = {
  userPoolId: 'xxxxxxxxxx',
  secret: 'xxxxxxxxxxx'
};

const authing = WechatyAuthing(config);

protected client

Returns: ManagementClient

Which is an Authing SDK client

protected createAuthingUser(contact: Contact): Promise<User | null>;

Create a Authing user

Params: Contact

Returns: User | null

getPoolName(): Promise;

Get Authing User pool name

const authing = WechatyAuthing(config);
await authing.getPoolName(); // '我的企业'

filterAuthingUsers(contacts: Contact[]): Promise<ContactsFilterResult>;

Batch check users exists from Authing

Params: Contact[]

Returns:

type ContactsFilterResult = {
  registered: Contact[];
  unregistered: Contact[];
  fail: Contact[];
};

createAuthingUsers(contacts: Contact[]): Promise<ContactsOperationResult>;

Batch create users to Authing

Params: Contact[]

Returns:

type ContactsOperationResult = {
  success: Contact[];
  fail: Contact[];
};

deleteAuthingUsers(contacts: Contact[]): Promise<ContactsOperationResult>;

Batch delete users from Authing

Params and Return values are same with the create function.

bindAuthingPhone(contact: Contact, phone: string): Promise;

Create or update a authing user with Wechaty contact and phone

Params:

  • Contact
  • string

Returns: boolean

checkPhone(phone: string): Promise;

Check if user with the phone number exists in Authing

Params: string

Returns: boolean

bindPhoneContact(phone: string, contact: Contact): Promise;

Bind Wechaty contact to a Authing user by phone number

Params:

  • string
  • Contact

Returns: boolean

checkEmail(email: string): Promise;

Check if user with the email exists in Authing

Params: string

Returns: boolean

bindEmailContact(email: string, contact: Contact): Promise;

Bind Wechaty contact to a Authing user by email

Params:

  • string
  • Contact

Returns: boolean

Utils

getAuthingGender: (gender: any) => string

Convert Wechaty ContactGender to Authing Gender format

import { getAuthingGender } from 'wechaty-authing';

getAuthingGender(contact.gender()); // ContactGender.Unknown --> U

getContactId: (contact: any) => string

Get Valid Contact ID

import { getContactId } from 'wechaty-authing';

getContactId(contact); // weixin or empty string

arrayDiff: <T = Contact>(arr: T[], diff: T[]) => T[]

Array Set Difference

import { arrayDiff } from 'wechaty-authing';

arrayDiff([contact1, contact2, contact3], [contact2, contact3, contact4]);
// [contact1]

LICENSE

Apache 2.0