@inter-digital/wasm-client-sdk 3.8.4-patch.8 → 3.8.4-patch.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.
@@ -20,6 +20,7 @@ export declare function searchMessageByContentType(conversationID: string, conte
20
20
  export declare function searchMessageByContentTypeAndKeyword(conversationID: string, contentTypeStr: string, keywordListStr: string, keywordListMatchType: number, startTime: number, endTime: number): Promise<string>;
21
21
  export declare function messageIfExists(conversationID: string, clientMsgID: string): Promise<string>;
22
22
  export declare function updateMsgSenderFaceURLAndSenderNickname(conversationID: string, sendID: string, faceURL: string, nickname: string, faceBackgroundColor?: string): Promise<string>;
23
+ export declare function updateMsgSenderFaceBackgroundColor(conversationID: string, sendID: string, faceBackgroundColor: string): Promise<string>;
23
24
  export declare function deleteConversationAllMessages(conversationID: string): Promise<string>;
24
25
  export declare function markDeleteConversationAllMessages(conversationID: string): Promise<string>;
25
26
  export declare function getUnreadMessage(conversationID: string, loginUserID: string): Promise<string>;
package/lib/index.es.js CHANGED
@@ -607,6 +607,7 @@ function initDatabaseAPI(isLogStandardOutput = true) {
607
607
  window.updateMsgSenderNickname = registeMethodOnWindow('updateMsgSenderNickname');
608
608
  window.updateMsgSenderFaceURL = registeMethodOnWindow('updateMsgSenderFaceURL');
609
609
  window.updateMsgSenderFaceURLAndSenderNickname = registeMethodOnWindow('updateMsgSenderFaceURLAndSenderNickname');
610
+ window.updateMsgSenderFaceBackgroundColor = registeMethodOnWindow('updateMsgSenderFaceBackgroundColor');
610
611
  window.getMsgSeqByClientMsgID = registeMethodOnWindow('getMsgSeqByClientMsgID');
611
612
  window.getMsgSeqListByGroupID = registeMethodOnWindow('getMsgSeqListByGroupID');
612
613
  window.getMsgSeqListByPeerUserID = registeMethodOnWindow('getMsgSeqListByPeerUserID');
package/lib/index.js CHANGED
@@ -611,6 +611,7 @@ function initDatabaseAPI(isLogStandardOutput = true) {
611
611
  window.updateMsgSenderNickname = registeMethodOnWindow('updateMsgSenderNickname');
612
612
  window.updateMsgSenderFaceURL = registeMethodOnWindow('updateMsgSenderFaceURL');
613
613
  window.updateMsgSenderFaceURLAndSenderNickname = registeMethodOnWindow('updateMsgSenderFaceURLAndSenderNickname');
614
+ window.updateMsgSenderFaceBackgroundColor = registeMethodOnWindow('updateMsgSenderFaceBackgroundColor');
614
615
  window.getMsgSeqByClientMsgID = registeMethodOnWindow('getMsgSeqByClientMsgID');
615
616
  window.getMsgSeqListByGroupID = registeMethodOnWindow('getMsgSeqListByGroupID');
616
617
  window.getMsgSeqListByPeerUserID = registeMethodOnWindow('getMsgSeqListByPeerUserID');
package/lib/index.umd.js CHANGED
@@ -613,6 +613,7 @@
613
613
  window.updateMsgSenderNickname = registeMethodOnWindow('updateMsgSenderNickname');
614
614
  window.updateMsgSenderFaceURL = registeMethodOnWindow('updateMsgSenderFaceURL');
615
615
  window.updateMsgSenderFaceURLAndSenderNickname = registeMethodOnWindow('updateMsgSenderFaceURLAndSenderNickname');
616
+ window.updateMsgSenderFaceBackgroundColor = registeMethodOnWindow('updateMsgSenderFaceBackgroundColor');
616
617
  window.getMsgSeqByClientMsgID = registeMethodOnWindow('getMsgSeqByClientMsgID');
617
618
  window.getMsgSeqListByGroupID = registeMethodOnWindow('getMsgSeqListByGroupID');
618
619
  window.getMsgSeqListByPeerUserID = registeMethodOnWindow('getMsgSeqListByPeerUserID');
@@ -24,6 +24,7 @@ export declare function searchMessageByContentType(db: Database, conversationID:
24
24
  export declare function searchMessageByContentTypeAndKeyword(db: Database, conversationID: string, contentType: number[], keywordList: string[], keywordListMatchType: number, startTime: number, endTime: number): QueryExecResult[];
25
25
  export declare function messageIfExists(db: Database, conversationID: string, clientMsgID: string): QueryExecResult[];
26
26
  export declare function updateMsgSenderFaceURLAndSenderNickname(db: Database, conversationID: string, sendID: string, faceURL: string, nickname: string, faceBackgroundColor?: string): QueryExecResult[];
27
+ export declare function updateMsgSenderFaceBackgroundColor(db: Database, conversationID: string, sendID: string, faceBackgroundColor: string): QueryExecResult[];
27
28
  export declare function deleteConversationAllMessages(db: Database, conversationID: string): QueryExecResult[];
28
29
  export declare function markDeleteConversationAllMessages(db: Database, conversationID: string): QueryExecResult[];
29
30
  export declare function getUnreadMessage(db: Database, conversationID: string, loginUserID: string): QueryExecResult[];