@tcic/core-sdk-v1 1.0.7 → 1.0.9

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.
@@ -8,5 +8,6 @@ export declare const enum ActionModule {
8
8
  REPORT = "REPORT",
9
9
  ERROR = "ERROR",
10
10
  Webview = "Webview",
11
- TIW = "TIW"
11
+ TIW = "TIW",
12
+ Custom = "Custom"
12
13
  }
@@ -1,4 +1,5 @@
1
1
  export declare const enum ActionName {
2
+ Report = "Report",
2
3
  Init = "Init",
3
4
  Join = "Join",
4
5
  Leave = "Leave",
@@ -68,6 +69,7 @@ export declare const enum ActionName {
68
69
  IM_LOGIN = "IM_LOGIN",
69
70
  IM_UPDATE_MY_PROFILE = "IM_UPDATE_MY_PROFILE",
70
71
  IM_JOIN_GROUP = "IM_JOIN_GROUP",
72
+ IM_JOIN_GROUP_ERROR = "IM_JOIN_GROUP_ERROR",
71
73
  IM_ON = "IM_ON",
72
74
  IM_OFF = "IM_OFF",
73
75
  IM_CONSUME = "IM_CONSUME",
package/dist/mods/im.d.ts CHANGED
@@ -47,7 +47,7 @@ export declare class TCIC_IM {
47
47
  * 切换登陆用户
48
48
  * @param tcic - TCIC实例,以切换用户
49
49
  */
50
- changeUser(tcic: TCIC): Promise<any>;
50
+ changeUser(tcic: TCIC): Promise<void>;
51
51
  /**
52
52
  * 监听新的消息
53
53
  */
package/dist/tcic.d.ts CHANGED
@@ -323,4 +323,5 @@ export declare class TCIC {
323
323
  * 获取task列表
324
324
  */
325
325
  getTasks(): Promise<unknown>;
326
+ report(data: string): void;
326
327
  }