@inter-digital/wasm-client-sdk 3.8.4-patch.15 → 3.8.4-patch.16
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/lib/api/database/conversation.d.ts +1 -0
- package/lib/index.es.js +1 -0
- package/lib/index.js +1 -0
- package/lib/index.umd.js +1 -0
- package/lib/sqls/localConversations.d.ts +1 -0
- package/lib/worker-legacy.js +1 -1
- package/lib/worker.js +1 -1
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ export declare function getAllSingleConversationIDList(): Promise<string>;
|
|
|
6
6
|
export declare function getAllConversationIDList(): Promise<string>;
|
|
7
7
|
export declare function getHiddenConversationList(): Promise<string>;
|
|
8
8
|
export declare function getConversation(conversationID: string): Promise<string>;
|
|
9
|
+
export declare function getConversationByConversationIDLike(conversationID: string): Promise<string>;
|
|
9
10
|
export declare function getMultipleConversation(conversationIDList: string): Promise<string>;
|
|
10
11
|
export declare function updateColumnsConversation(conversationID: string, conversation: ClientConversation | string): Promise<string>;
|
|
11
12
|
export declare function decrConversationUnreadCount(conversationID: string, count: number): Promise<string>;
|
package/lib/index.es.js
CHANGED
|
@@ -641,6 +641,7 @@ function initDatabaseAPI(isLogStandardOutput = true) {
|
|
|
641
641
|
window.getAllConversationListToSync = registeMethodOnWindow('getAllConversationListToSync');
|
|
642
642
|
window.getHiddenConversationList = registeMethodOnWindow('getHiddenConversationList');
|
|
643
643
|
window.getConversation = registeMethodOnWindow('getConversation');
|
|
644
|
+
window.getConversationByConversationIDLike = registeMethodOnWindow('getConversationByConversationIDLike');
|
|
644
645
|
window.getMultipleConversationDB = registeMethodOnWindow('getMultipleConversation');
|
|
645
646
|
window.updateColumnsConversation = registeMethodOnWindow('updateColumnsConversation');
|
|
646
647
|
window.updateConversation = registeMethodOnWindow('updateColumnsConversation', 'updateConversation');
|
package/lib/index.js
CHANGED
|
@@ -645,6 +645,7 @@ function initDatabaseAPI(isLogStandardOutput = true) {
|
|
|
645
645
|
window.getAllConversationListToSync = registeMethodOnWindow('getAllConversationListToSync');
|
|
646
646
|
window.getHiddenConversationList = registeMethodOnWindow('getHiddenConversationList');
|
|
647
647
|
window.getConversation = registeMethodOnWindow('getConversation');
|
|
648
|
+
window.getConversationByConversationIDLike = registeMethodOnWindow('getConversationByConversationIDLike');
|
|
648
649
|
window.getMultipleConversationDB = registeMethodOnWindow('getMultipleConversation');
|
|
649
650
|
window.updateColumnsConversation = registeMethodOnWindow('updateColumnsConversation');
|
|
650
651
|
window.updateConversation = registeMethodOnWindow('updateColumnsConversation', 'updateConversation');
|
package/lib/index.umd.js
CHANGED
|
@@ -647,6 +647,7 @@
|
|
|
647
647
|
window.getAllConversationListToSync = registeMethodOnWindow('getAllConversationListToSync');
|
|
648
648
|
window.getHiddenConversationList = registeMethodOnWindow('getHiddenConversationList');
|
|
649
649
|
window.getConversation = registeMethodOnWindow('getConversation');
|
|
650
|
+
window.getConversationByConversationIDLike = registeMethodOnWindow('getConversationByConversationIDLike');
|
|
650
651
|
window.getMultipleConversationDB = registeMethodOnWindow('getMultipleConversation');
|
|
651
652
|
window.updateColumnsConversation = registeMethodOnWindow('updateColumnsConversation');
|
|
652
653
|
window.updateConversation = registeMethodOnWindow('updateColumnsConversation', 'updateConversation');
|
|
@@ -12,6 +12,7 @@ export declare function getAllConversationIDList(db: Database): QueryExecResult[
|
|
|
12
12
|
export declare function getHiddenConversationList(db: Database): QueryExecResult[];
|
|
13
13
|
export declare function getConversationListSplit(db: Database, offset: number, count: number): QueryExecResult[];
|
|
14
14
|
export declare function getConversation(db: Database, conversationID: string): QueryExecResult[];
|
|
15
|
+
export declare function getConversationByConversationIDLike(db: Database, conversationID: string): QueryExecResult[];
|
|
15
16
|
export declare function getMultipleConversation(db: Database, conversationIDList: string[]): QueryExecResult[];
|
|
16
17
|
export declare function updateColumnsConversation(db: Database, conversationID: string, conversation: ClientConversation): QueryExecResult[];
|
|
17
18
|
export declare function incrConversationUnreadCount(db: Database, conversationID: string): QueryExecResult[];
|