@tencentcloud/lite-chat 1.1.0 → 1.1.1-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +2 -0
- package/index.es.js +1 -1
- package/index.js +1 -1
- package/package.json +6 -3
- package/plugins/conversation.d.ts +8 -0
- package/plugins/conversation.js +1 -1
- package/plugins/friend.d.ts +8 -0
- package/plugins/friend.es.js +1 -1
- package/plugins/friend.js +1 -1
- package/plugins/group.d.ts +8 -0
- package/plugins/group.js +1 -1
- package/plugins/message-enhancer.d.ts +8 -0
- package/plugins/message-enhancer.js +1 -1
- package/plugins/rich-media-message.d.ts +8 -0
- package/plugins/rich-media-message.js +1 -1
- package/plugins/user-enhancer.d.ts +8 -0
- package/plugins/user-enhancer.es.js +0 -1
- package/plugins/user-enhancer.js +0 -1
package/index.d.ts
CHANGED
|
@@ -2359,6 +2359,8 @@ declare interface LOGIN_OPTIONS {
|
|
|
2359
2359
|
modifyInvitation(options: MODIFY_INVITATION_OPTIONS): Promise<any>;
|
|
2360
2360
|
|
|
2361
2361
|
callExperimentalAPI(key: string, options: any)
|
|
2362
|
+
|
|
2363
|
+
use(plugin: any): void;
|
|
2362
2364
|
}
|
|
2363
2365
|
|
|
2364
2366
|
declare interface CREATE_OPTIONS {
|