@imam-inter/wasm-client-sdk 3.8.4-patch-pin.21 → 3.8.4-patch-pin.22
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/index.es.js +9 -0
- package/lib/index.js +9 -0
- package/lib/index.umd.js +9 -0
- package/lib/worker-legacy.js +1 -1
- package/lib/worker.js +1 -1
- package/package.json +1 -1
package/lib/index.es.js
CHANGED
|
@@ -640,6 +640,15 @@ function initDatabaseAPI(isLogStandardOutput = true) {
|
|
|
640
640
|
window.insertSendingMessage = registeMethodOnWindow('insertSendingMessage');
|
|
641
641
|
window.deleteSendingMessage = registeMethodOnWindow('deleteSendingMessage');
|
|
642
642
|
window.getAllSendingMessages = registeMethodOnWindow('getAllSendingMessages');
|
|
643
|
+
// message pin
|
|
644
|
+
// @ts-ignore - window types extended in types/index.d.ts
|
|
645
|
+
window.insertMsgPin = registeMethodOnWindow('insertMsgPin');
|
|
646
|
+
// @ts-ignore
|
|
647
|
+
window.deleteMsgPin = registeMethodOnWindow('deleteMsgPin');
|
|
648
|
+
// @ts-ignore
|
|
649
|
+
window.findMsgPinByConversationIDAndSeq = registeMethodOnWindow('findMsgPinByConversationIDAndSeq');
|
|
650
|
+
// @ts-ignore
|
|
651
|
+
window.findMsgPinByConversationID = registeMethodOnWindow('findMsgPinByConversationID');
|
|
643
652
|
// conversation
|
|
644
653
|
window.getAllConversationListDB = registeMethodOnWindow('getAllConversationList');
|
|
645
654
|
window.getAllConversationListToSync = registeMethodOnWindow('getAllConversationListToSync');
|
package/lib/index.js
CHANGED
|
@@ -644,6 +644,15 @@ function initDatabaseAPI(isLogStandardOutput = true) {
|
|
|
644
644
|
window.insertSendingMessage = registeMethodOnWindow('insertSendingMessage');
|
|
645
645
|
window.deleteSendingMessage = registeMethodOnWindow('deleteSendingMessage');
|
|
646
646
|
window.getAllSendingMessages = registeMethodOnWindow('getAllSendingMessages');
|
|
647
|
+
// message pin
|
|
648
|
+
// @ts-ignore - window types extended in types/index.d.ts
|
|
649
|
+
window.insertMsgPin = registeMethodOnWindow('insertMsgPin');
|
|
650
|
+
// @ts-ignore
|
|
651
|
+
window.deleteMsgPin = registeMethodOnWindow('deleteMsgPin');
|
|
652
|
+
// @ts-ignore
|
|
653
|
+
window.findMsgPinByConversationIDAndSeq = registeMethodOnWindow('findMsgPinByConversationIDAndSeq');
|
|
654
|
+
// @ts-ignore
|
|
655
|
+
window.findMsgPinByConversationID = registeMethodOnWindow('findMsgPinByConversationID');
|
|
647
656
|
// conversation
|
|
648
657
|
window.getAllConversationListDB = registeMethodOnWindow('getAllConversationList');
|
|
649
658
|
window.getAllConversationListToSync = registeMethodOnWindow('getAllConversationListToSync');
|
package/lib/index.umd.js
CHANGED
|
@@ -646,6 +646,15 @@
|
|
|
646
646
|
window.insertSendingMessage = registeMethodOnWindow('insertSendingMessage');
|
|
647
647
|
window.deleteSendingMessage = registeMethodOnWindow('deleteSendingMessage');
|
|
648
648
|
window.getAllSendingMessages = registeMethodOnWindow('getAllSendingMessages');
|
|
649
|
+
// message pin
|
|
650
|
+
// @ts-ignore - window types extended in types/index.d.ts
|
|
651
|
+
window.insertMsgPin = registeMethodOnWindow('insertMsgPin');
|
|
652
|
+
// @ts-ignore
|
|
653
|
+
window.deleteMsgPin = registeMethodOnWindow('deleteMsgPin');
|
|
654
|
+
// @ts-ignore
|
|
655
|
+
window.findMsgPinByConversationIDAndSeq = registeMethodOnWindow('findMsgPinByConversationIDAndSeq');
|
|
656
|
+
// @ts-ignore
|
|
657
|
+
window.findMsgPinByConversationID = registeMethodOnWindow('findMsgPinByConversationID');
|
|
649
658
|
// conversation
|
|
650
659
|
window.getAllConversationListDB = registeMethodOnWindow('getAllConversationList');
|
|
651
660
|
window.getAllConversationListToSync = registeMethodOnWindow('getAllConversationListToSync');
|