@inter-digital/wasm-client-sdk 3.8.4-patch.10 → 3.8.4-patch.11

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.
@@ -1,5 +1,6 @@
1
1
  export declare function getBlackList(): Promise<string>;
2
2
  export declare function getBlackListUserID(): Promise<string>;
3
+ export declare function getBlackListByOtherDB(loginUserID: string): Promise<string>;
3
4
  export declare function getBlackInfoByBlockUserID(blockUserID: string, loginUserID: string): Promise<string>;
4
5
  export declare function getBlackInfoList(blockUserIDListStr: string): Promise<string>;
5
6
  export declare function insertBlack(localBlackStr: string): Promise<string>;
@@ -1,3 +1,4 @@
1
1
  export declare function getLoginUser(userID: string): Promise<string>;
2
2
  export declare function insertLoginUser(userStr: string): Promise<string>;
3
3
  export declare function updateLoginUser(userStr: string): Promise<string>;
4
+ export declare function processUserCommandGetAll(): Promise<string>;
package/lib/index.es.js CHANGED
@@ -675,6 +675,7 @@ function initDatabaseAPI(isLogStandardOutput = true) {
675
675
  window.getLoginUser = registeMethodOnWindow('getLoginUser');
676
676
  window.insertLoginUser = registeMethodOnWindow('insertLoginUser');
677
677
  window.updateLoginUser = registeMethodOnWindow('updateLoginUser');
678
+ window.processUserCommandGetAll = registeMethodOnWindow('processUserCommandGetAll');
678
679
  window.getStrangerInfo = registeMethodOnWindow('getStrangerInfo');
679
680
  window.setStrangerInfo = registeMethodOnWindow('setStrangerInfo');
680
681
  // app sdk versions
@@ -740,6 +741,7 @@ function initDatabaseAPI(isLogStandardOutput = true) {
740
741
  // black
741
742
  window.getBlackListDB = registeMethodOnWindow('getBlackList');
742
743
  window.getBlackListUserID = registeMethodOnWindow('getBlackListUserID');
744
+ window.getBlackListByOtherDB = registeMethodOnWindow('getBlackListByOtherDB');
743
745
  window.getBlackInfoByBlockUserID = registeMethodOnWindow('getBlackInfoByBlockUserID');
744
746
  window.getBlackInfoList = registeMethodOnWindow('getBlackInfoList');
745
747
  window.insertBlack = registeMethodOnWindow('insertBlack');
package/lib/index.js CHANGED
@@ -679,6 +679,7 @@ function initDatabaseAPI(isLogStandardOutput = true) {
679
679
  window.getLoginUser = registeMethodOnWindow('getLoginUser');
680
680
  window.insertLoginUser = registeMethodOnWindow('insertLoginUser');
681
681
  window.updateLoginUser = registeMethodOnWindow('updateLoginUser');
682
+ window.processUserCommandGetAll = registeMethodOnWindow('processUserCommandGetAll');
682
683
  window.getStrangerInfo = registeMethodOnWindow('getStrangerInfo');
683
684
  window.setStrangerInfo = registeMethodOnWindow('setStrangerInfo');
684
685
  // app sdk versions
@@ -744,6 +745,7 @@ function initDatabaseAPI(isLogStandardOutput = true) {
744
745
  // black
745
746
  window.getBlackListDB = registeMethodOnWindow('getBlackList');
746
747
  window.getBlackListUserID = registeMethodOnWindow('getBlackListUserID');
748
+ window.getBlackListByOtherDB = registeMethodOnWindow('getBlackListByOtherDB');
747
749
  window.getBlackInfoByBlockUserID = registeMethodOnWindow('getBlackInfoByBlockUserID');
748
750
  window.getBlackInfoList = registeMethodOnWindow('getBlackInfoList');
749
751
  window.insertBlack = registeMethodOnWindow('insertBlack');
package/lib/index.umd.js CHANGED
@@ -681,6 +681,7 @@
681
681
  window.getLoginUser = registeMethodOnWindow('getLoginUser');
682
682
  window.insertLoginUser = registeMethodOnWindow('insertLoginUser');
683
683
  window.updateLoginUser = registeMethodOnWindow('updateLoginUser');
684
+ window.processUserCommandGetAll = registeMethodOnWindow('processUserCommandGetAll');
684
685
  window.getStrangerInfo = registeMethodOnWindow('getStrangerInfo');
685
686
  window.setStrangerInfo = registeMethodOnWindow('setStrangerInfo');
686
687
  // app sdk versions
@@ -746,6 +747,7 @@
746
747
  // black
747
748
  window.getBlackListDB = registeMethodOnWindow('getBlackList');
748
749
  window.getBlackListUserID = registeMethodOnWindow('getBlackListUserID');
750
+ window.getBlackListByOtherDB = registeMethodOnWindow('getBlackListByOtherDB');
749
751
  window.getBlackInfoByBlockUserID = registeMethodOnWindow('getBlackInfoByBlockUserID');
750
752
  window.getBlackInfoList = registeMethodOnWindow('getBlackInfoList');
751
753
  window.insertBlack = registeMethodOnWindow('insertBlack');
@@ -5,6 +5,7 @@ export declare type LocalBlack = {
5
5
  export declare function locaBlacks(db: Database): QueryExecResult[];
6
6
  export declare function getBlackList(db: Database): QueryExecResult[];
7
7
  export declare function getBlackListUserID(db: Database): QueryExecResult[];
8
+ export declare function getBlackListByOther(db: Database, loginUserID: string): QueryExecResult[];
8
9
  export declare function getBlackInfoByBlockUserID(db: Database, blockUserID: string, loginUserID: string): QueryExecResult[];
9
10
  export declare function getBlackInfoList(db: Database, blockUserIDList: string[]): QueryExecResult[];
10
11
  export declare function insertBlack(db: Database, localBlack: LocalBlack): QueryExecResult[];