@xmtp/wasm-bindings 1.4.0-dev.7f5d8e0 → 1.4.0-dev.8148c3f
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/dist/bindings_wasm.d.ts +197 -186
- package/dist/bindings_wasm.js +146 -89
- package/dist/bindings_wasm_bg.wasm +0 -0
- package/dist/bindings_wasm_bg.wasm.d.ts +187 -181
- package/dist/version.json +3 -3
- package/package.json +1 -1
package/dist/bindings_wasm.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
+
export function getInboxIdForIdentifier(host: string, accountIdentifier: Identifier): Promise<string | undefined>;
|
|
4
|
+
export function generateInboxId(accountIdentifier: Identifier): string;
|
|
3
5
|
export function createClient(host: string, inbox_id: string, account_identifier: Identifier, db_path?: string | null, encryption_key?: Uint8Array | null, device_sync_server_url?: string | null, device_sync_worker_mode?: DeviceSyncWorkerMode | null, log_options?: LogOptions | null, allow_offline?: boolean | null, disable_events?: boolean | null, app_version?: string | null): Promise<Client>;
|
|
4
6
|
export function encodeMultiRemoteAttachment(multiRemoteAttachment: MultiRemoteAttachment): Uint8Array;
|
|
5
7
|
export function decodeMultiRemoteAttachment(bytes: Uint8Array): MultiRemoteAttachment;
|
|
@@ -9,8 +11,6 @@ export function inboxStateFromInboxIds(host: string, inbox_ids: string[]): Promi
|
|
|
9
11
|
export function verifySignedWithPublicKey(signature_text: string, signature_bytes: Uint8Array, public_key: Uint8Array): void;
|
|
10
12
|
export function revokeInstallationsSignatureRequest(host: string, recovery_identifier: Identifier, inbox_id: string, installation_ids: Uint8Array[]): Promise<SignatureRequestHandle>;
|
|
11
13
|
export function applySignatureRequest(host: string, signature_request: SignatureRequestHandle): Promise<void>;
|
|
12
|
-
export function getInboxIdForIdentifier(host: string, accountIdentifier: Identifier): Promise<string | undefined>;
|
|
13
|
-
export function generateInboxId(accountIdentifier: Identifier): string;
|
|
14
14
|
/**
|
|
15
15
|
* Entry point invoked by JavaScript in a worker.
|
|
16
16
|
*/
|
|
@@ -111,8 +111,6 @@ type LogLevel = "off" | "error" | "warn" | "info" | "debug" | "trace";
|
|
|
111
111
|
* *This API requires the following crate features to be activated: `ReadableStreamType`*
|
|
112
112
|
*/
|
|
113
113
|
type ReadableStreamType = "bytes";
|
|
114
|
-
export type UserPreference = { type: "Consent"; consent: Consent } | { type: "HmacKeyUpdate"; key: number[] };
|
|
115
|
-
|
|
116
114
|
export interface Identifier {
|
|
117
115
|
identifier: string;
|
|
118
116
|
identifierKind: IdentifierKind;
|
|
@@ -120,6 +118,8 @@ export interface Identifier {
|
|
|
120
118
|
|
|
121
119
|
export type IdentifierKind = "Ethereum" | "Passkey";
|
|
122
120
|
|
|
121
|
+
export type UserPreference = { type: "Consent"; consent: Consent } | { type: "HmacKeyUpdate"; key: number[] };
|
|
122
|
+
|
|
123
123
|
export class ApiStats {
|
|
124
124
|
private constructor();
|
|
125
125
|
free(): void;
|
|
@@ -262,15 +262,20 @@ export class ConversationDebugInfo {
|
|
|
262
262
|
epoch: bigint;
|
|
263
263
|
maybeForked: boolean;
|
|
264
264
|
forkDetails: string;
|
|
265
|
+
get isCommitLogForked(): boolean | undefined;
|
|
266
|
+
set isCommitLogForked(value: boolean | null | undefined);
|
|
265
267
|
localCommitLog: string;
|
|
268
|
+
remoteCommitLog: string;
|
|
266
269
|
cursor: bigint;
|
|
267
270
|
}
|
|
268
271
|
export class ConversationListItem {
|
|
269
272
|
free(): void;
|
|
270
|
-
constructor(conversation: Conversation, last_message?: Message | null);
|
|
273
|
+
constructor(conversation: Conversation, last_message?: Message | null, is_commit_log_forked?: boolean | null);
|
|
271
274
|
conversation: Conversation;
|
|
272
275
|
get lastMessage(): Message | undefined;
|
|
273
276
|
set lastMessage(value: Message | null | undefined);
|
|
277
|
+
get isCommitLogForked(): boolean | undefined;
|
|
278
|
+
set isCommitLogForked(value: boolean | null | undefined);
|
|
274
279
|
}
|
|
275
280
|
export class Conversations {
|
|
276
281
|
private constructor();
|
|
@@ -617,6 +622,160 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
617
622
|
|
|
618
623
|
export interface InitOutput {
|
|
619
624
|
readonly memory: WebAssembly.Memory;
|
|
625
|
+
readonly __wbg_listconversationsoptions_free: (a: number, b: number) => void;
|
|
626
|
+
readonly __wbg_get_listconversationsoptions_consentStates: (a: number) => [number, number];
|
|
627
|
+
readonly __wbg_set_listconversationsoptions_consentStates: (a: number, b: number, c: number) => void;
|
|
628
|
+
readonly __wbg_get_listconversationsoptions_conversationType: (a: number) => number;
|
|
629
|
+
readonly __wbg_set_listconversationsoptions_conversationType: (a: number, b: number) => void;
|
|
630
|
+
readonly __wbg_get_listconversationsoptions_createdAfterNs: (a: number) => [number, bigint];
|
|
631
|
+
readonly __wbg_set_listconversationsoptions_createdAfterNs: (a: number, b: number, c: bigint) => void;
|
|
632
|
+
readonly __wbg_get_listconversationsoptions_createdBeforeNs: (a: number) => [number, bigint];
|
|
633
|
+
readonly __wbg_set_listconversationsoptions_createdBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
634
|
+
readonly __wbg_get_listconversationsoptions_includeDuplicateDms: (a: number) => number;
|
|
635
|
+
readonly __wbg_set_listconversationsoptions_includeDuplicateDms: (a: number, b: number) => void;
|
|
636
|
+
readonly __wbg_get_listconversationsoptions_limit: (a: number) => [number, bigint];
|
|
637
|
+
readonly __wbg_set_listconversationsoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
638
|
+
readonly listconversationsoptions_new: (a: number, b: number, c: number, d: number, e: bigint, f: number, g: bigint, h: number, i: number, j: bigint) => number;
|
|
639
|
+
readonly __wbg_messagedisappearingsettings_free: (a: number, b: number) => void;
|
|
640
|
+
readonly messagedisappearingsettings_new: (a: bigint, b: bigint) => number;
|
|
641
|
+
readonly __wbg_conversationdebuginfo_free: (a: number, b: number) => void;
|
|
642
|
+
readonly __wbg_get_conversationdebuginfo_epoch: (a: number) => bigint;
|
|
643
|
+
readonly __wbg_set_conversationdebuginfo_epoch: (a: number, b: bigint) => void;
|
|
644
|
+
readonly __wbg_get_conversationdebuginfo_maybeForked: (a: number) => number;
|
|
645
|
+
readonly __wbg_set_conversationdebuginfo_maybeForked: (a: number, b: number) => void;
|
|
646
|
+
readonly __wbg_get_conversationdebuginfo_forkDetails: (a: number) => [number, number];
|
|
647
|
+
readonly __wbg_set_conversationdebuginfo_forkDetails: (a: number, b: number, c: number) => void;
|
|
648
|
+
readonly __wbg_get_conversationdebuginfo_isCommitLogForked: (a: number) => number;
|
|
649
|
+
readonly __wbg_set_conversationdebuginfo_isCommitLogForked: (a: number, b: number) => void;
|
|
650
|
+
readonly __wbg_get_conversationdebuginfo_localCommitLog: (a: number) => [number, number];
|
|
651
|
+
readonly __wbg_set_conversationdebuginfo_localCommitLog: (a: number, b: number, c: number) => void;
|
|
652
|
+
readonly __wbg_get_conversationdebuginfo_remoteCommitLog: (a: number) => [number, number];
|
|
653
|
+
readonly __wbg_set_conversationdebuginfo_remoteCommitLog: (a: number, b: number, c: number) => void;
|
|
654
|
+
readonly __wbg_get_conversationdebuginfo_cursor: (a: number) => bigint;
|
|
655
|
+
readonly __wbg_set_conversationdebuginfo_cursor: (a: number, b: bigint) => void;
|
|
656
|
+
readonly __wbg_creategroupoptions_free: (a: number, b: number) => void;
|
|
657
|
+
readonly __wbg_get_creategroupoptions_permissions: (a: number) => number;
|
|
658
|
+
readonly __wbg_set_creategroupoptions_permissions: (a: number, b: number) => void;
|
|
659
|
+
readonly __wbg_get_creategroupoptions_groupName: (a: number) => [number, number];
|
|
660
|
+
readonly __wbg_set_creategroupoptions_groupName: (a: number, b: number, c: number) => void;
|
|
661
|
+
readonly __wbg_get_creategroupoptions_groupImageUrlSquare: (a: number) => [number, number];
|
|
662
|
+
readonly __wbg_set_creategroupoptions_groupImageUrlSquare: (a: number, b: number, c: number) => void;
|
|
663
|
+
readonly __wbg_get_creategroupoptions_groupDescription: (a: number) => [number, number];
|
|
664
|
+
readonly __wbg_set_creategroupoptions_groupDescription: (a: number, b: number, c: number) => void;
|
|
665
|
+
readonly __wbg_get_creategroupoptions_customPermissionPolicySet: (a: number) => number;
|
|
666
|
+
readonly __wbg_set_creategroupoptions_customPermissionPolicySet: (a: number, b: number) => void;
|
|
667
|
+
readonly creategroupoptions_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => number;
|
|
668
|
+
readonly __wbg_createdmoptions_free: (a: number, b: number) => void;
|
|
669
|
+
readonly __wbg_get_createdmoptions_messageDisappearingSettings: (a: number) => number;
|
|
670
|
+
readonly __wbg_set_createdmoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
671
|
+
readonly createdmoptions_new: (a: number) => number;
|
|
672
|
+
readonly __wbg_hmackey_free: (a: number, b: number) => void;
|
|
673
|
+
readonly __wbg_get_hmackey_key: (a: number) => [number, number];
|
|
674
|
+
readonly __wbg_set_hmackey_key: (a: number, b: number, c: number) => void;
|
|
675
|
+
readonly __wbg_conversationlistitem_free: (a: number, b: number) => void;
|
|
676
|
+
readonly __wbg_get_conversationlistitem_conversation: (a: number) => number;
|
|
677
|
+
readonly __wbg_set_conversationlistitem_conversation: (a: number, b: number) => void;
|
|
678
|
+
readonly __wbg_get_conversationlistitem_lastMessage: (a: number) => number;
|
|
679
|
+
readonly __wbg_set_conversationlistitem_lastMessage: (a: number, b: number) => void;
|
|
680
|
+
readonly __wbg_get_conversationlistitem_isCommitLogForked: (a: number) => number;
|
|
681
|
+
readonly __wbg_set_conversationlistitem_isCommitLogForked: (a: number, b: number) => void;
|
|
682
|
+
readonly conversationlistitem_new: (a: number, b: number, c: number) => number;
|
|
683
|
+
readonly __wbg_conversations_free: (a: number, b: number) => void;
|
|
684
|
+
readonly conversations_createGroupOptimistic: (a: number, b: number) => [number, number, number];
|
|
685
|
+
readonly conversations_createGroup: (a: number, b: number, c: number, d: number) => any;
|
|
686
|
+
readonly conversations_createGroupByInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
687
|
+
readonly conversations_createDm: (a: number, b: any, c: number) => any;
|
|
688
|
+
readonly conversations_createDmByInboxId: (a: number, b: number, c: number, d: number) => any;
|
|
689
|
+
readonly conversations_findGroupById: (a: number, b: number, c: number) => [number, number, number];
|
|
690
|
+
readonly conversations_findDmByTargetInboxId: (a: number, b: number, c: number) => [number, number, number];
|
|
691
|
+
readonly conversations_findMessageById: (a: number, b: number, c: number) => [number, number, number];
|
|
692
|
+
readonly conversations_sync: (a: number) => any;
|
|
693
|
+
readonly conversations_syncAllConversations: (a: number, b: number, c: number) => any;
|
|
694
|
+
readonly conversations_list: (a: number, b: number) => [number, number, number];
|
|
695
|
+
readonly conversations_getHmacKeys: (a: number) => [number, number, number];
|
|
696
|
+
readonly conversations_streamLocal: (a: number, b: number) => any;
|
|
697
|
+
readonly conversations_stream: (a: number, b: any, c: number) => [number, number, number];
|
|
698
|
+
readonly conversations_streamAllMessages: (a: number, b: any, c: number, d: number, e: number) => [number, number, number];
|
|
699
|
+
readonly conversations_streamConsent: (a: number, b: any) => [number, number, number];
|
|
700
|
+
readonly conversations_streamPreferences: (a: number, b: any) => [number, number, number];
|
|
701
|
+
readonly __wbg_listmessagesoptions_free: (a: number, b: number) => void;
|
|
702
|
+
readonly __wbg_get_listmessagesoptions_contentTypes: (a: number) => [number, number];
|
|
703
|
+
readonly __wbg_set_listmessagesoptions_contentTypes: (a: number, b: number, c: number) => void;
|
|
704
|
+
readonly __wbg_get_listmessagesoptions_deliveryStatus: (a: number) => number;
|
|
705
|
+
readonly __wbg_set_listmessagesoptions_deliveryStatus: (a: number, b: number) => void;
|
|
706
|
+
readonly __wbg_get_listmessagesoptions_direction: (a: number) => number;
|
|
707
|
+
readonly __wbg_set_listmessagesoptions_direction: (a: number, b: number) => void;
|
|
708
|
+
readonly __wbg_get_listmessagesoptions_kind: (a: number) => number;
|
|
709
|
+
readonly __wbg_set_listmessagesoptions_kind: (a: number, b: number) => void;
|
|
710
|
+
readonly listmessagesoptions_new: (a: number, b: bigint, c: number, d: bigint, e: number, f: bigint, g: number, h: number, i: number, j: number, k: number) => number;
|
|
711
|
+
readonly __wbg_message_free: (a: number, b: number) => void;
|
|
712
|
+
readonly __wbg_get_message_id: (a: number) => [number, number];
|
|
713
|
+
readonly __wbg_set_message_id: (a: number, b: number, c: number) => void;
|
|
714
|
+
readonly __wbg_get_message_convoId: (a: number) => [number, number];
|
|
715
|
+
readonly __wbg_set_message_convoId: (a: number, b: number, c: number) => void;
|
|
716
|
+
readonly __wbg_get_message_senderInboxId: (a: number) => [number, number];
|
|
717
|
+
readonly __wbg_set_message_senderInboxId: (a: number, b: number, c: number) => void;
|
|
718
|
+
readonly __wbg_get_message_content: (a: number) => number;
|
|
719
|
+
readonly __wbg_set_message_content: (a: number, b: number) => void;
|
|
720
|
+
readonly __wbg_get_message_kind: (a: number) => number;
|
|
721
|
+
readonly __wbg_set_message_kind: (a: number, b: number) => void;
|
|
722
|
+
readonly __wbg_get_message_deliveryStatus: (a: number) => number;
|
|
723
|
+
readonly __wbg_set_message_deliveryStatus: (a: number, b: number) => void;
|
|
724
|
+
readonly message_new: (a: number, b: number, c: bigint, d: number, e: number, f: number, g: number, h: number, i: number, j: number) => number;
|
|
725
|
+
readonly __wbg_messagewithreactions_free: (a: number, b: number) => void;
|
|
726
|
+
readonly __wbg_get_messagewithreactions_message: (a: number) => number;
|
|
727
|
+
readonly __wbg_set_messagewithreactions_message: (a: number, b: number) => void;
|
|
728
|
+
readonly __wbg_get_messagewithreactions_reactions: (a: number) => [number, number];
|
|
729
|
+
readonly __wbg_set_messagewithreactions_reactions: (a: number, b: number, c: number) => void;
|
|
730
|
+
readonly __wbg_set_messagedisappearingsettings_fromNs: (a: number, b: bigint) => void;
|
|
731
|
+
readonly __wbg_set_messagedisappearingsettings_inNs: (a: number, b: bigint) => void;
|
|
732
|
+
readonly __wbg_set_hmackey_epoch: (a: number, b: bigint) => void;
|
|
733
|
+
readonly __wbg_set_message_sentAtNs: (a: number, b: bigint) => void;
|
|
734
|
+
readonly __wbg_get_listmessagesoptions_sentBeforeNs: (a: number) => [number, bigint];
|
|
735
|
+
readonly __wbg_get_listmessagesoptions_sentAfterNs: (a: number) => [number, bigint];
|
|
736
|
+
readonly __wbg_get_listmessagesoptions_limit: (a: number) => [number, bigint];
|
|
737
|
+
readonly __wbg_get_creategroupoptions_messageDisappearingSettings: (a: number) => number;
|
|
738
|
+
readonly __wbg_set_listmessagesoptions_sentBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
739
|
+
readonly __wbg_set_listmessagesoptions_sentAfterNs: (a: number, b: number, c: bigint) => void;
|
|
740
|
+
readonly __wbg_set_listmessagesoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
741
|
+
readonly __wbg_get_messagedisappearingsettings_fromNs: (a: number) => bigint;
|
|
742
|
+
readonly __wbg_get_messagedisappearingsettings_inNs: (a: number) => bigint;
|
|
743
|
+
readonly __wbg_get_hmackey_epoch: (a: number) => bigint;
|
|
744
|
+
readonly __wbg_get_message_sentAtNs: (a: number) => bigint;
|
|
745
|
+
readonly __wbg_set_creategroupoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
746
|
+
readonly __wbg_apistats_free: (a: number, b: number) => void;
|
|
747
|
+
readonly __wbg_get_apistats_upload_key_package: (a: number) => bigint;
|
|
748
|
+
readonly __wbg_set_apistats_upload_key_package: (a: number, b: bigint) => void;
|
|
749
|
+
readonly __wbg_get_apistats_fetch_key_package: (a: number) => bigint;
|
|
750
|
+
readonly __wbg_set_apistats_fetch_key_package: (a: number, b: bigint) => void;
|
|
751
|
+
readonly __wbg_get_apistats_send_group_messages: (a: number) => bigint;
|
|
752
|
+
readonly __wbg_set_apistats_send_group_messages: (a: number, b: bigint) => void;
|
|
753
|
+
readonly __wbg_get_apistats_send_welcome_messages: (a: number) => bigint;
|
|
754
|
+
readonly __wbg_set_apistats_send_welcome_messages: (a: number, b: bigint) => void;
|
|
755
|
+
readonly __wbg_get_apistats_query_group_messages: (a: number) => bigint;
|
|
756
|
+
readonly __wbg_set_apistats_query_group_messages: (a: number, b: bigint) => void;
|
|
757
|
+
readonly __wbg_get_apistats_query_welcome_messages: (a: number) => bigint;
|
|
758
|
+
readonly __wbg_set_apistats_query_welcome_messages: (a: number, b: bigint) => void;
|
|
759
|
+
readonly __wbg_get_apistats_subscribe_messages: (a: number) => bigint;
|
|
760
|
+
readonly __wbg_set_apistats_subscribe_messages: (a: number, b: bigint) => void;
|
|
761
|
+
readonly __wbg_get_apistats_subscribe_welcomes: (a: number) => bigint;
|
|
762
|
+
readonly __wbg_set_apistats_subscribe_welcomes: (a: number, b: bigint) => void;
|
|
763
|
+
readonly __wbg_identitystats_free: (a: number, b: number) => void;
|
|
764
|
+
readonly getInboxIdForIdentifier: (a: number, b: number, c: any) => any;
|
|
765
|
+
readonly generateInboxId: (a: any) => [number, number, number, number];
|
|
766
|
+
readonly __wbg_streamcloser_free: (a: number, b: number) => void;
|
|
767
|
+
readonly streamcloser_end: (a: number) => void;
|
|
768
|
+
readonly streamcloser_endAndWait: (a: number) => any;
|
|
769
|
+
readonly streamcloser_waitForReady: (a: number) => any;
|
|
770
|
+
readonly streamcloser_isClosed: (a: number) => number;
|
|
771
|
+
readonly __wbg_set_identitystats_publish_identity_update: (a: number, b: bigint) => void;
|
|
772
|
+
readonly __wbg_set_identitystats_get_identity_updates_v2: (a: number, b: bigint) => void;
|
|
773
|
+
readonly __wbg_set_identitystats_get_inbox_ids: (a: number, b: bigint) => void;
|
|
774
|
+
readonly __wbg_set_identitystats_verify_smart_contract_wallet_signature: (a: number, b: bigint) => void;
|
|
775
|
+
readonly __wbg_get_identitystats_publish_identity_update: (a: number) => bigint;
|
|
776
|
+
readonly __wbg_get_identitystats_get_identity_updates_v2: (a: number) => bigint;
|
|
777
|
+
readonly __wbg_get_identitystats_get_inbox_ids: (a: number) => bigint;
|
|
778
|
+
readonly __wbg_get_identitystats_verify_smart_contract_wallet_signature: (a: number) => bigint;
|
|
620
779
|
readonly __wbg_client_free: (a: number, b: number) => void;
|
|
621
780
|
readonly __wbg_logoptions_free: (a: number, b: number) => void;
|
|
622
781
|
readonly __wbg_get_logoptions_structured: (a: number) => number;
|
|
@@ -662,7 +821,10 @@ export interface InitOutput {
|
|
|
662
821
|
readonly __wbg_set_remoteattachmentinfo_contentDigest: (a: number, b: number, c: number) => void;
|
|
663
822
|
readonly __wbg_get_remoteattachmentinfo_nonce: (a: number) => any;
|
|
664
823
|
readonly __wbg_set_remoteattachmentinfo_nonce: (a: number, b: any) => void;
|
|
824
|
+
readonly __wbg_get_remoteattachmentinfo_scheme: (a: number) => [number, number];
|
|
665
825
|
readonly __wbg_set_remoteattachmentinfo_scheme: (a: number, b: number, c: number) => void;
|
|
826
|
+
readonly __wbg_get_remoteattachmentinfo_url: (a: number) => [number, number];
|
|
827
|
+
readonly __wbg_set_remoteattachmentinfo_url: (a: number, b: number, c: number) => void;
|
|
666
828
|
readonly __wbg_get_remoteattachmentinfo_salt: (a: number) => any;
|
|
667
829
|
readonly __wbg_set_remoteattachmentinfo_salt: (a: number, b: any) => void;
|
|
668
830
|
readonly __wbg_get_remoteattachmentinfo_contentLength: (a: number) => number;
|
|
@@ -677,6 +839,8 @@ export interface InitOutput {
|
|
|
677
839
|
readonly encodeMultiRemoteAttachment: (a: number) => [number, number, number];
|
|
678
840
|
readonly decodeMultiRemoteAttachment: (a: any) => [number, number, number];
|
|
679
841
|
readonly __wbg_reaction_free: (a: number, b: number) => void;
|
|
842
|
+
readonly __wbg_get_reaction_reference: (a: number) => [number, number];
|
|
843
|
+
readonly __wbg_get_reaction_referenceInboxId: (a: number) => [number, number];
|
|
680
844
|
readonly __wbg_get_reaction_action: (a: number) => number;
|
|
681
845
|
readonly __wbg_set_reaction_action: (a: number, b: number) => void;
|
|
682
846
|
readonly __wbg_get_reaction_content: (a: number) => [number, number];
|
|
@@ -690,6 +854,7 @@ export interface InitOutput {
|
|
|
690
854
|
readonly groupmetadata_creatorInboxId: (a: number) => [number, number];
|
|
691
855
|
readonly groupmetadata_conversationType: (a: number) => [number, number];
|
|
692
856
|
readonly __wbg_groupmember_free: (a: number, b: number) => void;
|
|
857
|
+
readonly __wbg_get_groupmember_inboxId: (a: number) => [number, number];
|
|
693
858
|
readonly __wbg_get_groupmember_accountIdentifiers: (a: number) => [number, number];
|
|
694
859
|
readonly __wbg_set_groupmember_accountIdentifiers: (a: number, b: number, c: number) => void;
|
|
695
860
|
readonly __wbg_get_groupmember_installationIds: (a: number) => [number, number];
|
|
@@ -742,74 +907,8 @@ export interface InitOutput {
|
|
|
742
907
|
readonly conversation_getHmacKeys: (a: number) => [number, number, number];
|
|
743
908
|
readonly conversation_getDebugInfo: (a: number) => any;
|
|
744
909
|
readonly conversation_findDuplicateDms: (a: number) => any;
|
|
745
|
-
readonly __wbg_listconversationsoptions_free: (a: number, b: number) => void;
|
|
746
|
-
readonly __wbg_get_listconversationsoptions_consentStates: (a: number) => [number, number];
|
|
747
|
-
readonly __wbg_set_listconversationsoptions_consentStates: (a: number, b: number, c: number) => void;
|
|
748
|
-
readonly __wbg_get_listconversationsoptions_conversationType: (a: number) => number;
|
|
749
|
-
readonly __wbg_set_listconversationsoptions_conversationType: (a: number, b: number) => void;
|
|
750
|
-
readonly __wbg_get_listconversationsoptions_createdBeforeNs: (a: number) => [number, bigint];
|
|
751
|
-
readonly __wbg_set_listconversationsoptions_createdBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
752
|
-
readonly __wbg_get_listconversationsoptions_includeDuplicateDms: (a: number) => number;
|
|
753
|
-
readonly __wbg_set_listconversationsoptions_includeDuplicateDms: (a: number, b: number) => void;
|
|
754
|
-
readonly __wbg_get_listconversationsoptions_limit: (a: number) => [number, bigint];
|
|
755
|
-
readonly __wbg_set_listconversationsoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
756
|
-
readonly listconversationsoptions_new: (a: number, b: number, c: number, d: number, e: bigint, f: number, g: bigint, h: number, i: number, j: bigint) => number;
|
|
757
|
-
readonly messagedisappearingsettings_new: (a: bigint, b: bigint) => number;
|
|
758
|
-
readonly __wbg_conversationdebuginfo_free: (a: number, b: number) => void;
|
|
759
|
-
readonly __wbg_get_conversationdebuginfo_epoch: (a: number) => bigint;
|
|
760
|
-
readonly __wbg_set_conversationdebuginfo_epoch: (a: number, b: bigint) => void;
|
|
761
|
-
readonly __wbg_get_conversationdebuginfo_maybeForked: (a: number) => number;
|
|
762
|
-
readonly __wbg_set_conversationdebuginfo_maybeForked: (a: number, b: number) => void;
|
|
763
|
-
readonly __wbg_get_conversationdebuginfo_forkDetails: (a: number) => [number, number];
|
|
764
|
-
readonly __wbg_set_conversationdebuginfo_forkDetails: (a: number, b: number, c: number) => void;
|
|
765
|
-
readonly __wbg_get_conversationdebuginfo_localCommitLog: (a: number) => [number, number];
|
|
766
|
-
readonly __wbg_set_conversationdebuginfo_localCommitLog: (a: number, b: number, c: number) => void;
|
|
767
|
-
readonly __wbg_get_conversationdebuginfo_cursor: (a: number) => bigint;
|
|
768
|
-
readonly __wbg_set_conversationdebuginfo_cursor: (a: number, b: bigint) => void;
|
|
769
|
-
readonly __wbg_creategroupoptions_free: (a: number, b: number) => void;
|
|
770
|
-
readonly __wbg_get_creategroupoptions_permissions: (a: number) => number;
|
|
771
|
-
readonly __wbg_set_creategroupoptions_permissions: (a: number, b: number) => void;
|
|
772
|
-
readonly __wbg_get_creategroupoptions_groupName: (a: number) => [number, number];
|
|
773
|
-
readonly __wbg_set_creategroupoptions_groupName: (a: number, b: number, c: number) => void;
|
|
774
|
-
readonly __wbg_get_creategroupoptions_groupImageUrlSquare: (a: number) => [number, number];
|
|
775
|
-
readonly __wbg_set_creategroupoptions_groupImageUrlSquare: (a: number, b: number, c: number) => void;
|
|
776
|
-
readonly __wbg_get_creategroupoptions_groupDescription: (a: number) => [number, number];
|
|
777
|
-
readonly __wbg_set_creategroupoptions_groupDescription: (a: number, b: number, c: number) => void;
|
|
778
|
-
readonly __wbg_get_creategroupoptions_customPermissionPolicySet: (a: number) => number;
|
|
779
|
-
readonly __wbg_set_creategroupoptions_customPermissionPolicySet: (a: number, b: number) => void;
|
|
780
|
-
readonly creategroupoptions_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => number;
|
|
781
|
-
readonly __wbg_createdmoptions_free: (a: number, b: number) => void;
|
|
782
|
-
readonly __wbg_get_createdmoptions_messageDisappearingSettings: (a: number) => number;
|
|
783
|
-
readonly __wbg_set_createdmoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
784
|
-
readonly createdmoptions_new: (a: number) => number;
|
|
785
|
-
readonly __wbg_hmackey_free: (a: number, b: number) => void;
|
|
786
|
-
readonly __wbg_get_hmackey_key: (a: number) => [number, number];
|
|
787
|
-
readonly __wbg_set_hmackey_key: (a: number, b: number, c: number) => void;
|
|
788
|
-
readonly __wbg_conversationlistitem_free: (a: number, b: number) => void;
|
|
789
|
-
readonly __wbg_get_conversationlistitem_conversation: (a: number) => number;
|
|
790
|
-
readonly __wbg_set_conversationlistitem_conversation: (a: number, b: number) => void;
|
|
791
|
-
readonly __wbg_get_conversationlistitem_lastMessage: (a: number) => number;
|
|
792
|
-
readonly __wbg_set_conversationlistitem_lastMessage: (a: number, b: number) => void;
|
|
793
|
-
readonly conversationlistitem_new: (a: number, b: number) => number;
|
|
794
|
-
readonly __wbg_conversations_free: (a: number, b: number) => void;
|
|
795
|
-
readonly conversations_createGroupOptimistic: (a: number, b: number) => [number, number, number];
|
|
796
|
-
readonly conversations_createGroup: (a: number, b: number, c: number, d: number) => any;
|
|
797
|
-
readonly conversations_createGroupByInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
798
|
-
readonly conversations_createDm: (a: number, b: any, c: number) => any;
|
|
799
|
-
readonly conversations_createDmByInboxId: (a: number, b: number, c: number, d: number) => any;
|
|
800
|
-
readonly conversations_findGroupById: (a: number, b: number, c: number) => [number, number, number];
|
|
801
|
-
readonly conversations_findDmByTargetInboxId: (a: number, b: number, c: number) => [number, number, number];
|
|
802
|
-
readonly conversations_findMessageById: (a: number, b: number, c: number) => [number, number, number];
|
|
803
|
-
readonly conversations_sync: (a: number) => any;
|
|
804
|
-
readonly conversations_syncAllConversations: (a: number, b: number, c: number) => any;
|
|
805
|
-
readonly conversations_list: (a: number, b: number) => [number, number, number];
|
|
806
|
-
readonly conversations_getHmacKeys: (a: number) => [number, number, number];
|
|
807
|
-
readonly conversations_streamLocal: (a: number, b: number) => any;
|
|
808
|
-
readonly conversations_stream: (a: number, b: any, c: number) => [number, number, number];
|
|
809
|
-
readonly conversations_streamAllMessages: (a: number, b: any, c: number, d: number, e: number) => [number, number, number];
|
|
810
|
-
readonly conversations_streamConsent: (a: number, b: any) => [number, number, number];
|
|
811
|
-
readonly conversations_streamPreferences: (a: number, b: any) => [number, number, number];
|
|
812
910
|
readonly __wbg_contenttypeid_free: (a: number, b: number) => void;
|
|
911
|
+
readonly __wbg_get_contenttypeid_authorityId: (a: number) => [number, number];
|
|
813
912
|
readonly __wbg_get_contenttypeid_typeId: (a: number) => [number, number];
|
|
814
913
|
readonly __wbg_set_contenttypeid_typeId: (a: number, b: number, c: number) => void;
|
|
815
914
|
readonly __wbg_get_contenttypeid_versionMajor: (a: number) => number;
|
|
@@ -832,10 +931,13 @@ export interface InitOutput {
|
|
|
832
931
|
readonly __wbg_installation_free: (a: number, b: number) => void;
|
|
833
932
|
readonly __wbg_get_installation_bytes: (a: number) => any;
|
|
834
933
|
readonly __wbg_set_installation_bytes: (a: number, b: any) => void;
|
|
934
|
+
readonly __wbg_get_installation_id: (a: number) => [number, number];
|
|
935
|
+
readonly __wbg_set_installation_id: (a: number, b: number, c: number) => void;
|
|
835
936
|
readonly __wbg_get_installation_clientTimestampNs: (a: number) => [number, bigint];
|
|
836
937
|
readonly __wbg_set_installation_clientTimestampNs: (a: number, b: number, c: bigint) => void;
|
|
837
938
|
readonly installation_new: (a: any, b: number, c: number, d: number, e: bigint) => number;
|
|
838
939
|
readonly __wbg_inboxstate_free: (a: number, b: number) => void;
|
|
940
|
+
readonly __wbg_get_inboxstate_inboxId: (a: number) => [number, number];
|
|
839
941
|
readonly __wbg_get_inboxstate_recoveryIdentifier: (a: number) => any;
|
|
840
942
|
readonly __wbg_set_inboxstate_recoveryIdentifier: (a: number, b: any) => void;
|
|
841
943
|
readonly __wbg_get_inboxstate_installations: (a: number) => [number, number];
|
|
@@ -844,55 +946,19 @@ export interface InitOutput {
|
|
|
844
946
|
readonly __wbg_set_inboxstate_accountIdentifiers: (a: number, b: number, c: number) => void;
|
|
845
947
|
readonly inboxstate_new: (a: number, b: number, c: any, d: number, e: number, f: number, g: number) => number;
|
|
846
948
|
readonly __wbg_keypackagestatus_free: (a: number, b: number) => void;
|
|
949
|
+
readonly __wbg_get_keypackagestatus_lifetime: (a: number) => number;
|
|
950
|
+
readonly __wbg_set_keypackagestatus_lifetime: (a: number, b: number) => void;
|
|
847
951
|
readonly __wbg_get_keypackagestatus_validationError: (a: number) => [number, number];
|
|
848
952
|
readonly __wbg_set_keypackagestatus_validationError: (a: number, b: number, c: number) => void;
|
|
849
953
|
readonly __wbg_lifetime_free: (a: number, b: number) => void;
|
|
954
|
+
readonly __wbg_get_lifetime_not_before: (a: number) => bigint;
|
|
955
|
+
readonly __wbg_set_lifetime_not_before: (a: number, b: bigint) => void;
|
|
956
|
+
readonly __wbg_get_lifetime_not_after: (a: number) => bigint;
|
|
957
|
+
readonly __wbg_set_lifetime_not_after: (a: number, b: bigint) => void;
|
|
850
958
|
readonly inboxStateFromInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
851
959
|
readonly client_inboxState: (a: number, b: number) => any;
|
|
852
960
|
readonly client_getLatestInboxState: (a: number, b: number, c: number) => any;
|
|
853
961
|
readonly client_getKeyPackageStatusesForInstallationIds: (a: number, b: number, c: number) => any;
|
|
854
|
-
readonly __wbg_listmessagesoptions_free: (a: number, b: number) => void;
|
|
855
|
-
readonly __wbg_get_listmessagesoptions_contentTypes: (a: number) => [number, number];
|
|
856
|
-
readonly __wbg_set_listmessagesoptions_contentTypes: (a: number, b: number, c: number) => void;
|
|
857
|
-
readonly __wbg_get_listmessagesoptions_deliveryStatus: (a: number) => number;
|
|
858
|
-
readonly __wbg_set_listmessagesoptions_deliveryStatus: (a: number, b: number) => void;
|
|
859
|
-
readonly __wbg_get_listmessagesoptions_direction: (a: number) => number;
|
|
860
|
-
readonly __wbg_set_listmessagesoptions_direction: (a: number, b: number) => void;
|
|
861
|
-
readonly __wbg_get_listmessagesoptions_kind: (a: number) => number;
|
|
862
|
-
readonly __wbg_set_listmessagesoptions_kind: (a: number, b: number) => void;
|
|
863
|
-
readonly listmessagesoptions_new: (a: number, b: bigint, c: number, d: bigint, e: number, f: bigint, g: number, h: number, i: number, j: number, k: number) => number;
|
|
864
|
-
readonly __wbg_message_free: (a: number, b: number) => void;
|
|
865
|
-
readonly __wbg_get_message_id: (a: number) => [number, number];
|
|
866
|
-
readonly __wbg_set_message_id: (a: number, b: number, c: number) => void;
|
|
867
|
-
readonly __wbg_get_message_convoId: (a: number) => [number, number];
|
|
868
|
-
readonly __wbg_set_message_convoId: (a: number, b: number, c: number) => void;
|
|
869
|
-
readonly __wbg_get_message_senderInboxId: (a: number) => [number, number];
|
|
870
|
-
readonly __wbg_set_message_senderInboxId: (a: number, b: number, c: number) => void;
|
|
871
|
-
readonly __wbg_get_message_content: (a: number) => number;
|
|
872
|
-
readonly __wbg_set_message_content: (a: number, b: number) => void;
|
|
873
|
-
readonly __wbg_get_message_kind: (a: number) => number;
|
|
874
|
-
readonly __wbg_set_message_kind: (a: number, b: number) => void;
|
|
875
|
-
readonly __wbg_get_message_deliveryStatus: (a: number) => number;
|
|
876
|
-
readonly __wbg_set_message_deliveryStatus: (a: number, b: number) => void;
|
|
877
|
-
readonly message_new: (a: number, b: number, c: bigint, d: number, e: number, f: number, g: number, h: number, i: number, j: number) => number;
|
|
878
|
-
readonly __wbg_messagewithreactions_free: (a: number, b: number) => void;
|
|
879
|
-
readonly __wbg_get_messagewithreactions_message: (a: number) => number;
|
|
880
|
-
readonly __wbg_set_messagewithreactions_message: (a: number, b: number) => void;
|
|
881
|
-
readonly __wbg_get_messagewithreactions_reactions: (a: number) => [number, number];
|
|
882
|
-
readonly __wbg_set_messagewithreactions_reactions: (a: number, b: number, c: number) => void;
|
|
883
|
-
readonly __wbg_opfs_free: (a: number, b: number) => void;
|
|
884
|
-
readonly opfs_init_sqlite_opfs: () => any;
|
|
885
|
-
readonly opfs_exists: () => number;
|
|
886
|
-
readonly opfs_error: () => [number, number];
|
|
887
|
-
readonly opfs_wipeFiles: () => any;
|
|
888
|
-
readonly opfs_rm: (a: number, b: number) => [number, number, number];
|
|
889
|
-
readonly opfs_getFileNames: () => [number, number];
|
|
890
|
-
readonly opfs_importDb: (a: number, b: number, c: number, d: number) => [number, number];
|
|
891
|
-
readonly opfs_exportFile: (a: number, b: number) => [number, number, number, number];
|
|
892
|
-
readonly opfs_getFileCount: () => number;
|
|
893
|
-
readonly opfs_getCapacity: () => number;
|
|
894
|
-
readonly opfs_addCapacity: (a: number) => any;
|
|
895
|
-
readonly opfs_reduceCapacity: (a: number) => any;
|
|
896
962
|
readonly __wbg_signaturerequesthandle_free: (a: number, b: number) => void;
|
|
897
963
|
readonly verifySignedWithPublicKey: (a: number, b: number, c: any, d: any) => [number, number];
|
|
898
964
|
readonly revokeInstallationsSignatureRequest: (a: number, b: number, c: any, d: number, e: number, f: number, g: number) => any;
|
|
@@ -912,53 +978,13 @@ export interface InitOutput {
|
|
|
912
978
|
readonly client_registerIdentity: (a: number, b: number) => any;
|
|
913
979
|
readonly client_signWithInstallationKey: (a: number, b: number, c: number) => [number, number, number];
|
|
914
980
|
readonly client_verifySignedWithInstallationKey: (a: number, b: number, c: number, d: any) => [number, number];
|
|
915
|
-
readonly __wbg_streamcloser_free: (a: number, b: number) => void;
|
|
916
|
-
readonly streamcloser_end: (a: number) => void;
|
|
917
|
-
readonly streamcloser_endAndWait: (a: number) => any;
|
|
918
|
-
readonly streamcloser_waitForReady: (a: number) => any;
|
|
919
|
-
readonly streamcloser_isClosed: (a: number) => number;
|
|
920
|
-
readonly __wbg_get_listconversationsoptions_createdAfterNs: (a: number) => [number, bigint];
|
|
921
|
-
readonly __wbg_get_listmessagesoptions_sentBeforeNs: (a: number) => [number, bigint];
|
|
922
|
-
readonly __wbg_get_listmessagesoptions_sentAfterNs: (a: number) => [number, bigint];
|
|
923
|
-
readonly __wbg_get_listmessagesoptions_limit: (a: number) => [number, bigint];
|
|
924
|
-
readonly __wbg_get_reaction_reference: (a: number) => [number, number];
|
|
925
|
-
readonly __wbg_get_groupmember_inboxId: (a: number) => [number, number];
|
|
926
|
-
readonly __wbg_get_remoteattachmentinfo_scheme: (a: number) => [number, number];
|
|
927
|
-
readonly __wbg_get_remoteattachmentinfo_url: (a: number) => [number, number];
|
|
928
|
-
readonly __wbg_get_contenttypeid_authorityId: (a: number) => [number, number];
|
|
929
|
-
readonly __wbg_get_reaction_referenceInboxId: (a: number) => [number, number];
|
|
930
|
-
readonly __wbg_get_installation_id: (a: number) => [number, number];
|
|
931
|
-
readonly __wbg_get_inboxstate_inboxId: (a: number) => [number, number];
|
|
932
981
|
readonly __wbg_set_reaction_reference: (a: number, b: number, c: number) => void;
|
|
933
982
|
readonly __wbg_set_groupmember_inboxId: (a: number, b: number, c: number) => void;
|
|
934
|
-
readonly __wbg_set_remoteattachmentinfo_url: (a: number, b: number, c: number) => void;
|
|
935
983
|
readonly __wbg_set_contenttypeid_authorityId: (a: number, b: number, c: number) => void;
|
|
936
984
|
readonly __wbg_set_reaction_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
937
|
-
readonly __wbg_set_installation_id: (a: number, b: number, c: number) => void;
|
|
938
985
|
readonly __wbg_set_inboxstate_inboxId: (a: number, b: number, c: number) => void;
|
|
939
|
-
readonly __wbg_set_messagedisappearingsettings_fromNs: (a: number, b: bigint) => void;
|
|
940
|
-
readonly __wbg_set_messagedisappearingsettings_inNs: (a: number, b: bigint) => void;
|
|
941
|
-
readonly __wbg_set_hmackey_epoch: (a: number, b: bigint) => void;
|
|
942
|
-
readonly __wbg_set_lifetime_not_before: (a: number, b: bigint) => void;
|
|
943
|
-
readonly __wbg_set_lifetime_not_after: (a: number, b: bigint) => void;
|
|
944
|
-
readonly __wbg_set_message_sentAtNs: (a: number, b: bigint) => void;
|
|
945
|
-
readonly __wbg_get_messagedisappearingsettings_fromNs: (a: number) => bigint;
|
|
946
|
-
readonly __wbg_get_messagedisappearingsettings_inNs: (a: number) => bigint;
|
|
947
|
-
readonly __wbg_get_hmackey_epoch: (a: number) => bigint;
|
|
948
|
-
readonly __wbg_get_lifetime_not_before: (a: number) => bigint;
|
|
949
|
-
readonly __wbg_get_lifetime_not_after: (a: number) => bigint;
|
|
950
|
-
readonly __wbg_get_message_sentAtNs: (a: number) => bigint;
|
|
951
|
-
readonly __wbg_set_creategroupoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
952
986
|
readonly __wbg_get_remoteattachmentinfo_secret: (a: number) => any;
|
|
953
987
|
readonly __wbg_set_remoteattachmentinfo_secret: (a: number, b: any) => void;
|
|
954
|
-
readonly __wbg_set_listconversationsoptions_createdAfterNs: (a: number, b: number, c: bigint) => void;
|
|
955
|
-
readonly __wbg_set_listmessagesoptions_sentBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
956
|
-
readonly __wbg_set_listmessagesoptions_sentAfterNs: (a: number, b: number, c: bigint) => void;
|
|
957
|
-
readonly __wbg_set_listmessagesoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
958
|
-
readonly __wbg_get_creategroupoptions_messageDisappearingSettings: (a: number) => number;
|
|
959
|
-
readonly __wbg_get_keypackagestatus_lifetime: (a: number) => number;
|
|
960
|
-
readonly __wbg_set_keypackagestatus_lifetime: (a: number, b: number) => void;
|
|
961
|
-
readonly __wbg_messagedisappearingsettings_free: (a: number, b: number) => void;
|
|
962
988
|
readonly __wbg_permissionpolicyset_free: (a: number, b: number) => void;
|
|
963
989
|
readonly __wbg_get_permissionpolicyset_addMemberPolicy: (a: number) => number;
|
|
964
990
|
readonly __wbg_set_permissionpolicyset_addMemberPolicy: (a: number, b: number) => void;
|
|
@@ -980,34 +1006,19 @@ export interface InitOutput {
|
|
|
980
1006
|
readonly __wbg_grouppermissions_free: (a: number, b: number) => void;
|
|
981
1007
|
readonly grouppermissions_policyType: (a: number) => [number, number, number];
|
|
982
1008
|
readonly grouppermissions_policySet: (a: number) => [number, number, number];
|
|
983
|
-
readonly
|
|
984
|
-
readonly
|
|
985
|
-
readonly
|
|
986
|
-
readonly
|
|
987
|
-
readonly
|
|
988
|
-
readonly
|
|
989
|
-
readonly
|
|
990
|
-
readonly
|
|
991
|
-
readonly
|
|
992
|
-
readonly
|
|
993
|
-
readonly
|
|
994
|
-
readonly
|
|
995
|
-
readonly
|
|
996
|
-
readonly __wbg_get_apistats_query_welcome_messages: (a: number) => bigint;
|
|
997
|
-
readonly __wbg_set_apistats_query_welcome_messages: (a: number, b: bigint) => void;
|
|
998
|
-
readonly __wbg_get_apistats_subscribe_messages: (a: number) => bigint;
|
|
999
|
-
readonly __wbg_set_apistats_subscribe_messages: (a: number, b: bigint) => void;
|
|
1000
|
-
readonly __wbg_get_apistats_subscribe_welcomes: (a: number) => bigint;
|
|
1001
|
-
readonly __wbg_set_apistats_subscribe_welcomes: (a: number, b: bigint) => void;
|
|
1002
|
-
readonly __wbg_identitystats_free: (a: number, b: number) => void;
|
|
1003
|
-
readonly __wbg_set_identitystats_publish_identity_update: (a: number, b: bigint) => void;
|
|
1004
|
-
readonly __wbg_set_identitystats_get_identity_updates_v2: (a: number, b: bigint) => void;
|
|
1005
|
-
readonly __wbg_set_identitystats_get_inbox_ids: (a: number, b: bigint) => void;
|
|
1006
|
-
readonly __wbg_set_identitystats_verify_smart_contract_wallet_signature: (a: number, b: bigint) => void;
|
|
1007
|
-
readonly __wbg_get_identitystats_publish_identity_update: (a: number) => bigint;
|
|
1008
|
-
readonly __wbg_get_identitystats_get_identity_updates_v2: (a: number) => bigint;
|
|
1009
|
-
readonly __wbg_get_identitystats_get_inbox_ids: (a: number) => bigint;
|
|
1010
|
-
readonly __wbg_get_identitystats_verify_smart_contract_wallet_signature: (a: number) => bigint;
|
|
1009
|
+
readonly __wbg_opfs_free: (a: number, b: number) => void;
|
|
1010
|
+
readonly opfs_init_sqlite_opfs: () => any;
|
|
1011
|
+
readonly opfs_exists: () => number;
|
|
1012
|
+
readonly opfs_error: () => [number, number];
|
|
1013
|
+
readonly opfs_wipeFiles: () => any;
|
|
1014
|
+
readonly opfs_rm: (a: number, b: number) => [number, number, number];
|
|
1015
|
+
readonly opfs_getFileNames: () => [number, number];
|
|
1016
|
+
readonly opfs_importDb: (a: number, b: number, c: number, d: number) => [number, number];
|
|
1017
|
+
readonly opfs_exportFile: (a: number, b: number) => [number, number, number, number];
|
|
1018
|
+
readonly opfs_getFileCount: () => number;
|
|
1019
|
+
readonly opfs_getCapacity: () => number;
|
|
1020
|
+
readonly opfs_addCapacity: (a: number) => any;
|
|
1021
|
+
readonly opfs_reduceCapacity: (a: number) => any;
|
|
1011
1022
|
readonly rust_zstd_wasm_shim_qsort: (a: number, b: number, c: number, d: number) => void;
|
|
1012
1023
|
readonly rust_zstd_wasm_shim_malloc: (a: number) => number;
|
|
1013
1024
|
readonly rust_zstd_wasm_shim_memcmp: (a: number, b: number, c: number) => number;
|
|
@@ -1050,10 +1061,10 @@ export interface InitOutput {
|
|
|
1050
1061
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
1051
1062
|
readonly __wbindgen_export_7: WebAssembly.Table;
|
|
1052
1063
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
1053
|
-
readonly
|
|
1054
|
-
readonly
|
|
1055
|
-
readonly
|
|
1056
|
-
readonly
|
|
1064
|
+
readonly _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hc6b9ddcbfcc08eea: (a: number, b: number) => void;
|
|
1065
|
+
readonly _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hd0e40dce3ea5bca1: (a: number, b: number) => void;
|
|
1066
|
+
readonly closure5210_externref_shim: (a: number, b: number, c: any) => void;
|
|
1067
|
+
readonly closure6137_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
1057
1068
|
readonly __wbindgen_start: () => void;
|
|
1058
1069
|
}
|
|
1059
1070
|
|