@xmtp/wasm-bindings 1.5.0-rc3 → 1.6.0-dev.399ac31
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 +212 -200
- package/dist/bindings_wasm.js +406 -285
- package/dist/bindings_wasm_bg.wasm +0 -0
- package/dist/bindings_wasm_bg.wasm.d.ts +186 -180
- package/dist/version.json +3 -3
- package/package.json +1 -1
package/dist/bindings_wasm.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
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
3
|
export function encodeMultiRemoteAttachment(multiRemoteAttachment: MultiRemoteAttachment): Uint8Array;
|
|
5
4
|
export function decodeMultiRemoteAttachment(bytes: Uint8Array): MultiRemoteAttachment;
|
|
6
|
-
export function getInboxIdForIdentifier(host: string, accountIdentifier: Identifier): Promise<string | undefined>;
|
|
7
|
-
export function generateInboxId(accountIdentifier: Identifier): string;
|
|
8
|
-
export function inboxStateFromInboxIds(host: string, inbox_ids: string[]): Promise<InboxState[]>;
|
|
9
|
-
export function verifySignedWithPublicKey(signature_text: string, signature_bytes: Uint8Array, public_key: Uint8Array): void;
|
|
10
|
-
export function revokeInstallationsSignatureRequest(host: string, recovery_identifier: Identifier, inbox_id: string, installation_ids: Uint8Array[]): Promise<SignatureRequestHandle>;
|
|
11
|
-
export function applySignatureRequest(host: string, signature_request: SignatureRequestHandle): Promise<void>;
|
|
12
5
|
export function encodeReaction(reaction: Reaction): Uint8Array;
|
|
13
6
|
export function decodeReaction(bytes: Uint8Array): Reaction;
|
|
7
|
+
export function verifySignedWithPublicKey(signature_text: string, signature_bytes: Uint8Array, public_key: Uint8Array): void;
|
|
8
|
+
export function revokeInstallationsSignatureRequest(host: string, payer_host: string | null | undefined, recovery_identifier: Identifier, inbox_id: string, installation_ids: Uint8Array[]): Promise<SignatureRequestHandle>;
|
|
9
|
+
export function applySignatureRequest(host: string, payer_host: string | null | undefined, signature_request: SignatureRequestHandle): Promise<void>;
|
|
10
|
+
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, payer_host?: string | null): Promise<Client>;
|
|
11
|
+
export function getInboxIdForIdentifier(host: string, payer_host: string | null | undefined, accountIdentifier: Identifier): Promise<string | undefined>;
|
|
12
|
+
export function generateInboxId(accountIdentifier: Identifier): string;
|
|
13
|
+
export function inboxStateFromInboxIds(host: string, payer_host: string | null | undefined, inbox_ids: string[]): Promise<InboxState[]>;
|
|
14
14
|
/**
|
|
15
15
|
* Entry point invoked by JavaScript in a worker.
|
|
16
16
|
*/
|
|
@@ -136,6 +136,18 @@ export class ApiStats {
|
|
|
136
136
|
export class Client {
|
|
137
137
|
private constructor();
|
|
138
138
|
free(): void;
|
|
139
|
+
setConsentStates(records: Consent[]): Promise<void>;
|
|
140
|
+
getConsentState(entity_type: ConsentEntityType, entity: string): Promise<ConsentState>;
|
|
141
|
+
createInboxSignatureRequest(): SignatureRequestHandle | undefined;
|
|
142
|
+
addWalletSignatureRequest(new_identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
143
|
+
revokeWalletSignatureRequest(identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
144
|
+
revokeAllOtherInstallationsSignatureRequest(): Promise<SignatureRequestHandle>;
|
|
145
|
+
revokeInstallationsSignatureRequest(installation_ids: Uint8Array[]): Promise<SignatureRequestHandle>;
|
|
146
|
+
changeRecoveryIdentifierSignatureRequest(new_recovery_identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
147
|
+
applySignatureRequest(signature_request: SignatureRequestHandle): Promise<void>;
|
|
148
|
+
registerIdentity(signature_request: SignatureRequestHandle): Promise<void>;
|
|
149
|
+
signWithInstallationKey(signature_text: string): Uint8Array;
|
|
150
|
+
verifySignedWithInstallationKey(signature_text: string, signature_bytes: Uint8Array): void;
|
|
139
151
|
/**
|
|
140
152
|
* Output booleans should be zipped with the index of input identifiers
|
|
141
153
|
*/
|
|
@@ -150,8 +162,6 @@ export class Client {
|
|
|
150
162
|
apiAggregateStatistics(): string;
|
|
151
163
|
clearAllStatistics(): void;
|
|
152
164
|
uploadDebugArchive(server_url: string): Promise<string>;
|
|
153
|
-
setConsentStates(records: Consent[]): Promise<void>;
|
|
154
|
-
getConsentState(entity_type: ConsentEntityType, entity: string): Promise<ConsentState>;
|
|
155
165
|
/**
|
|
156
166
|
*
|
|
157
167
|
* * Get the client's inbox state.
|
|
@@ -170,16 +180,6 @@ export class Client {
|
|
|
170
180
|
*
|
|
171
181
|
*/
|
|
172
182
|
getKeyPackageStatusesForInstallationIds(installation_ids: string[]): Promise<any>;
|
|
173
|
-
createInboxSignatureRequest(): SignatureRequestHandle | undefined;
|
|
174
|
-
addWalletSignatureRequest(new_identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
175
|
-
revokeWalletSignatureRequest(identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
176
|
-
revokeAllOtherInstallationsSignatureRequest(): Promise<SignatureRequestHandle>;
|
|
177
|
-
revokeInstallationsSignatureRequest(installation_ids: Uint8Array[]): Promise<SignatureRequestHandle>;
|
|
178
|
-
changeRecoveryIdentifierSignatureRequest(new_recovery_identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
179
|
-
applySignatureRequest(signature_request: SignatureRequestHandle): Promise<void>;
|
|
180
|
-
registerIdentity(signature_request: SignatureRequestHandle): Promise<void>;
|
|
181
|
-
signWithInstallationKey(signature_text: string): Uint8Array;
|
|
182
|
-
verifySignedWithInstallationKey(signature_text: string, signature_bytes: Uint8Array): void;
|
|
183
183
|
readonly accountIdentifier: Identifier;
|
|
184
184
|
readonly inboxId: string;
|
|
185
185
|
readonly isRegistered: boolean;
|
|
@@ -267,7 +267,7 @@ export class ConversationDebugInfo {
|
|
|
267
267
|
set isCommitLogForked(value: boolean | null | undefined);
|
|
268
268
|
localCommitLog: string;
|
|
269
269
|
remoteCommitLog: string;
|
|
270
|
-
cursor:
|
|
270
|
+
cursor: XmtpCursor[];
|
|
271
271
|
}
|
|
272
272
|
export class ConversationListItem {
|
|
273
273
|
free(): void;
|
|
@@ -618,39 +618,43 @@ export class StreamCloser {
|
|
|
618
618
|
*/
|
|
619
619
|
isClosed(): boolean;
|
|
620
620
|
}
|
|
621
|
+
export class XmtpCursor {
|
|
622
|
+
private constructor();
|
|
623
|
+
free(): void;
|
|
624
|
+
originator_id: number;
|
|
625
|
+
sequence_id: bigint;
|
|
626
|
+
}
|
|
621
627
|
|
|
622
628
|
export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
|
|
623
629
|
|
|
624
630
|
export interface InitOutput {
|
|
625
631
|
readonly memory: WebAssembly.Memory;
|
|
626
|
-
readonly
|
|
627
|
-
readonly
|
|
628
|
-
readonly
|
|
629
|
-
readonly
|
|
630
|
-
readonly
|
|
631
|
-
readonly
|
|
632
|
-
readonly
|
|
633
|
-
readonly
|
|
634
|
-
readonly
|
|
635
|
-
readonly
|
|
636
|
-
readonly
|
|
637
|
-
readonly
|
|
638
|
-
readonly
|
|
639
|
-
readonly
|
|
640
|
-
readonly
|
|
641
|
-
readonly
|
|
642
|
-
readonly
|
|
643
|
-
readonly
|
|
644
|
-
readonly
|
|
645
|
-
readonly
|
|
646
|
-
readonly
|
|
647
|
-
readonly
|
|
648
|
-
readonly
|
|
649
|
-
readonly
|
|
650
|
-
readonly
|
|
651
|
-
readonly
|
|
652
|
-
readonly client_clearAllStatistics: (a: number) => void;
|
|
653
|
-
readonly client_uploadDebugArchive: (a: number, b: number, c: number) => any;
|
|
632
|
+
readonly __wbg_apistats_free: (a: number, b: number) => void;
|
|
633
|
+
readonly __wbg_get_apistats_upload_key_package: (a: number) => bigint;
|
|
634
|
+
readonly __wbg_set_apistats_upload_key_package: (a: number, b: bigint) => void;
|
|
635
|
+
readonly __wbg_get_apistats_fetch_key_package: (a: number) => bigint;
|
|
636
|
+
readonly __wbg_set_apistats_fetch_key_package: (a: number, b: bigint) => void;
|
|
637
|
+
readonly __wbg_get_apistats_send_group_messages: (a: number) => bigint;
|
|
638
|
+
readonly __wbg_set_apistats_send_group_messages: (a: number, b: bigint) => void;
|
|
639
|
+
readonly __wbg_get_apistats_send_welcome_messages: (a: number) => bigint;
|
|
640
|
+
readonly __wbg_set_apistats_send_welcome_messages: (a: number, b: bigint) => void;
|
|
641
|
+
readonly __wbg_get_apistats_query_group_messages: (a: number) => bigint;
|
|
642
|
+
readonly __wbg_set_apistats_query_group_messages: (a: number, b: bigint) => void;
|
|
643
|
+
readonly __wbg_get_apistats_query_welcome_messages: (a: number) => bigint;
|
|
644
|
+
readonly __wbg_set_apistats_query_welcome_messages: (a: number, b: bigint) => void;
|
|
645
|
+
readonly __wbg_get_apistats_subscribe_messages: (a: number) => bigint;
|
|
646
|
+
readonly __wbg_set_apistats_subscribe_messages: (a: number, b: bigint) => void;
|
|
647
|
+
readonly __wbg_get_apistats_subscribe_welcomes: (a: number) => bigint;
|
|
648
|
+
readonly __wbg_set_apistats_subscribe_welcomes: (a: number, b: bigint) => void;
|
|
649
|
+
readonly __wbg_identitystats_free: (a: number, b: number) => void;
|
|
650
|
+
readonly __wbg_set_identitystats_publish_identity_update: (a: number, b: bigint) => void;
|
|
651
|
+
readonly __wbg_set_identitystats_get_identity_updates_v2: (a: number, b: bigint) => void;
|
|
652
|
+
readonly __wbg_set_identitystats_get_inbox_ids: (a: number, b: bigint) => void;
|
|
653
|
+
readonly __wbg_set_identitystats_verify_smart_contract_wallet_signature: (a: number, b: bigint) => void;
|
|
654
|
+
readonly __wbg_get_identitystats_publish_identity_update: (a: number) => bigint;
|
|
655
|
+
readonly __wbg_get_identitystats_get_identity_updates_v2: (a: number) => bigint;
|
|
656
|
+
readonly __wbg_get_identitystats_get_inbox_ids: (a: number) => bigint;
|
|
657
|
+
readonly __wbg_get_identitystats_verify_smart_contract_wallet_signature: (a: number) => bigint;
|
|
654
658
|
readonly __wbg_consent_free: (a: number, b: number) => void;
|
|
655
659
|
readonly __wbg_get_consent_entityType: (a: number) => number;
|
|
656
660
|
readonly __wbg_set_consent_entityType: (a: number, b: number) => void;
|
|
@@ -671,6 +675,7 @@ export interface InitOutput {
|
|
|
671
675
|
readonly __wbg_get_remoteattachmentinfo_scheme: (a: number) => [number, number];
|
|
672
676
|
readonly __wbg_set_remoteattachmentinfo_scheme: (a: number, b: number, c: number) => void;
|
|
673
677
|
readonly __wbg_get_remoteattachmentinfo_url: (a: number) => [number, number];
|
|
678
|
+
readonly __wbg_set_remoteattachmentinfo_url: (a: number, b: number, c: number) => void;
|
|
674
679
|
readonly __wbg_get_remoteattachmentinfo_salt: (a: number) => any;
|
|
675
680
|
readonly __wbg_set_remoteattachmentinfo_salt: (a: number, b: any) => void;
|
|
676
681
|
readonly __wbg_get_remoteattachmentinfo_contentLength: (a: number) => number;
|
|
@@ -684,6 +689,18 @@ export interface InitOutput {
|
|
|
684
689
|
readonly multiremoteattachment_new: (a: number, b: number) => number;
|
|
685
690
|
readonly encodeMultiRemoteAttachment: (a: number) => [number, number, number];
|
|
686
691
|
readonly decodeMultiRemoteAttachment: (a: any) => [number, number, number];
|
|
692
|
+
readonly __wbg_reaction_free: (a: number, b: number) => void;
|
|
693
|
+
readonly __wbg_get_reaction_reference: (a: number) => [number, number];
|
|
694
|
+
readonly __wbg_get_reaction_referenceInboxId: (a: number) => [number, number];
|
|
695
|
+
readonly __wbg_get_reaction_action: (a: number) => number;
|
|
696
|
+
readonly __wbg_set_reaction_action: (a: number, b: number) => void;
|
|
697
|
+
readonly __wbg_get_reaction_content: (a: number) => [number, number];
|
|
698
|
+
readonly __wbg_set_reaction_content: (a: number, b: number, c: number) => void;
|
|
699
|
+
readonly __wbg_get_reaction_schema: (a: number) => number;
|
|
700
|
+
readonly __wbg_set_reaction_schema: (a: number, b: number) => void;
|
|
701
|
+
readonly reaction_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
702
|
+
readonly encodeReaction: (a: number) => [number, number, number];
|
|
703
|
+
readonly decodeReaction: (a: any) => [number, number, number];
|
|
687
704
|
readonly __wbg_groupmetadata_free: (a: number, b: number) => void;
|
|
688
705
|
readonly groupmetadata_creatorInboxId: (a: number) => [number, number];
|
|
689
706
|
readonly groupmetadata_conversationType: (a: number) => [number, number];
|
|
@@ -741,11 +758,72 @@ export interface InitOutput {
|
|
|
741
758
|
readonly conversation_getHmacKeys: (a: number) => [number, number, number];
|
|
742
759
|
readonly conversation_getDebugInfo: (a: number) => any;
|
|
743
760
|
readonly conversation_findDuplicateDms: (a: number) => any;
|
|
761
|
+
readonly __wbg_contenttypeid_free: (a: number, b: number) => void;
|
|
762
|
+
readonly __wbg_get_contenttypeid_authorityId: (a: number) => [number, number];
|
|
763
|
+
readonly __wbg_get_contenttypeid_typeId: (a: number) => [number, number];
|
|
764
|
+
readonly __wbg_set_contenttypeid_typeId: (a: number, b: number, c: number) => void;
|
|
765
|
+
readonly __wbg_get_contenttypeid_versionMajor: (a: number) => number;
|
|
766
|
+
readonly __wbg_set_contenttypeid_versionMajor: (a: number, b: number) => void;
|
|
767
|
+
readonly __wbg_get_contenttypeid_versionMinor: (a: number) => number;
|
|
768
|
+
readonly __wbg_set_contenttypeid_versionMinor: (a: number, b: number) => void;
|
|
769
|
+
readonly contenttypeid_new: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
770
|
+
readonly __wbg_encodedcontent_free: (a: number, b: number) => void;
|
|
771
|
+
readonly __wbg_get_encodedcontent_type: (a: number) => number;
|
|
772
|
+
readonly __wbg_set_encodedcontent_type: (a: number, b: number) => void;
|
|
773
|
+
readonly __wbg_get_encodedcontent_parameters: (a: number) => any;
|
|
774
|
+
readonly __wbg_set_encodedcontent_parameters: (a: number, b: any) => void;
|
|
775
|
+
readonly __wbg_get_encodedcontent_fallback: (a: number) => [number, number];
|
|
776
|
+
readonly __wbg_set_encodedcontent_fallback: (a: number, b: number, c: number) => void;
|
|
777
|
+
readonly __wbg_get_encodedcontent_compression: (a: number) => number;
|
|
778
|
+
readonly __wbg_set_encodedcontent_compression: (a: number, b: number) => void;
|
|
779
|
+
readonly __wbg_get_encodedcontent_content: (a: number) => any;
|
|
780
|
+
readonly __wbg_set_encodedcontent_content: (a: number, b: any) => void;
|
|
781
|
+
readonly encodedcontent_new: (a: number, b: any, c: number, d: number, e: number, f: any) => number;
|
|
782
|
+
readonly __wbg_opfs_free: (a: number, b: number) => void;
|
|
783
|
+
readonly opfs_init_sqlite_opfs: () => any;
|
|
784
|
+
readonly opfs_exists: () => number;
|
|
785
|
+
readonly opfs_error: () => [number, number];
|
|
786
|
+
readonly opfs_wipeFiles: () => any;
|
|
787
|
+
readonly opfs_rm: (a: number, b: number) => [number, number, number];
|
|
788
|
+
readonly opfs_getFileNames: () => [number, number];
|
|
789
|
+
readonly opfs_importDb: (a: number, b: number, c: number, d: number) => [number, number];
|
|
790
|
+
readonly opfs_exportFile: (a: number, b: number) => [number, number, number, number];
|
|
791
|
+
readonly opfs_getFileCount: () => number;
|
|
792
|
+
readonly opfs_getCapacity: () => number;
|
|
793
|
+
readonly opfs_addCapacity: (a: number) => any;
|
|
794
|
+
readonly opfs_reduceCapacity: (a: number) => any;
|
|
795
|
+
readonly __wbg_signaturerequesthandle_free: (a: number, b: number) => void;
|
|
796
|
+
readonly verifySignedWithPublicKey: (a: number, b: number, c: any, d: any) => [number, number];
|
|
797
|
+
readonly revokeInstallationsSignatureRequest: (a: number, b: number, c: number, d: number, e: any, f: number, g: number, h: number, i: number) => any;
|
|
798
|
+
readonly applySignatureRequest: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
799
|
+
readonly __wbg_passkeysignature_free: (a: number, b: number) => void;
|
|
800
|
+
readonly signaturerequesthandle_signatureText: (a: number) => any;
|
|
801
|
+
readonly signaturerequesthandle_addEcdsaSignature: (a: number, b: any) => any;
|
|
802
|
+
readonly signaturerequesthandle_addPasskeySignature: (a: number, b: number) => any;
|
|
803
|
+
readonly signaturerequesthandle_addScwSignature: (a: number, b: any, c: any, d: bigint, e: number, f: bigint) => any;
|
|
804
|
+
readonly client_createInboxSignatureRequest: (a: number) => [number, number, number];
|
|
805
|
+
readonly client_addWalletSignatureRequest: (a: number, b: any) => any;
|
|
806
|
+
readonly client_revokeWalletSignatureRequest: (a: number, b: any) => any;
|
|
807
|
+
readonly client_revokeAllOtherInstallationsSignatureRequest: (a: number) => any;
|
|
808
|
+
readonly client_revokeInstallationsSignatureRequest: (a: number, b: number, c: number) => any;
|
|
809
|
+
readonly client_changeRecoveryIdentifierSignatureRequest: (a: number, b: any) => any;
|
|
810
|
+
readonly client_applySignatureRequest: (a: number, b: number) => any;
|
|
811
|
+
readonly client_registerIdentity: (a: number, b: number) => any;
|
|
812
|
+
readonly client_signWithInstallationKey: (a: number, b: number, c: number) => [number, number, number];
|
|
813
|
+
readonly client_verifySignedWithInstallationKey: (a: number, b: number, c: number, d: any) => [number, number];
|
|
814
|
+
readonly __wbg_set_reaction_reference: (a: number, b: number, c: number) => void;
|
|
815
|
+
readonly __wbg_set_groupmember_inboxId: (a: number, b: number, c: number) => void;
|
|
816
|
+
readonly __wbg_set_contenttypeid_authorityId: (a: number, b: number, c: number) => void;
|
|
817
|
+
readonly __wbg_set_reaction_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
818
|
+
readonly __wbg_get_remoteattachmentinfo_secret: (a: number) => any;
|
|
819
|
+
readonly __wbg_set_remoteattachmentinfo_secret: (a: number, b: any) => void;
|
|
744
820
|
readonly __wbg_listconversationsoptions_free: (a: number, b: number) => void;
|
|
745
821
|
readonly __wbg_get_listconversationsoptions_consentStates: (a: number) => [number, number];
|
|
746
822
|
readonly __wbg_set_listconversationsoptions_consentStates: (a: number, b: number, c: number) => void;
|
|
747
823
|
readonly __wbg_get_listconversationsoptions_conversationType: (a: number) => number;
|
|
748
824
|
readonly __wbg_set_listconversationsoptions_conversationType: (a: number, b: number) => void;
|
|
825
|
+
readonly __wbg_get_listconversationsoptions_createdAfterNs: (a: number) => [number, bigint];
|
|
826
|
+
readonly __wbg_set_listconversationsoptions_createdAfterNs: (a: number, b: number, c: bigint) => void;
|
|
749
827
|
readonly __wbg_get_listconversationsoptions_createdBeforeNs: (a: number) => [number, bigint];
|
|
750
828
|
readonly __wbg_set_listconversationsoptions_createdBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
751
829
|
readonly __wbg_get_listconversationsoptions_includeDuplicateDms: (a: number) => number;
|
|
@@ -753,7 +831,13 @@ export interface InitOutput {
|
|
|
753
831
|
readonly __wbg_get_listconversationsoptions_limit: (a: number) => [number, bigint];
|
|
754
832
|
readonly __wbg_set_listconversationsoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
755
833
|
readonly listconversationsoptions_new: (a: number, b: number, c: number, d: number, e: bigint, f: number, g: bigint, h: number, i: number, j: bigint) => number;
|
|
834
|
+
readonly __wbg_messagedisappearingsettings_free: (a: number, b: number) => void;
|
|
835
|
+
readonly __wbg_get_messagedisappearingsettings_inNs: (a: number) => bigint;
|
|
836
|
+
readonly __wbg_set_messagedisappearingsettings_inNs: (a: number, b: bigint) => void;
|
|
756
837
|
readonly messagedisappearingsettings_new: (a: bigint, b: bigint) => number;
|
|
838
|
+
readonly __wbg_xmtpcursor_free: (a: number, b: number) => void;
|
|
839
|
+
readonly __wbg_get_xmtpcursor_originator_id: (a: number) => number;
|
|
840
|
+
readonly __wbg_set_xmtpcursor_originator_id: (a: number, b: number) => void;
|
|
757
841
|
readonly __wbg_conversationdebuginfo_free: (a: number, b: number) => void;
|
|
758
842
|
readonly __wbg_get_conversationdebuginfo_epoch: (a: number) => bigint;
|
|
759
843
|
readonly __wbg_set_conversationdebuginfo_epoch: (a: number, b: bigint) => void;
|
|
@@ -767,8 +851,8 @@ export interface InitOutput {
|
|
|
767
851
|
readonly __wbg_set_conversationdebuginfo_localCommitLog: (a: number, b: number, c: number) => void;
|
|
768
852
|
readonly __wbg_get_conversationdebuginfo_remoteCommitLog: (a: number) => [number, number];
|
|
769
853
|
readonly __wbg_set_conversationdebuginfo_remoteCommitLog: (a: number, b: number, c: number) => void;
|
|
770
|
-
readonly __wbg_get_conversationdebuginfo_cursor: (a: number) =>
|
|
771
|
-
readonly __wbg_set_conversationdebuginfo_cursor: (a: number, b:
|
|
854
|
+
readonly __wbg_get_conversationdebuginfo_cursor: (a: number) => [number, number];
|
|
855
|
+
readonly __wbg_set_conversationdebuginfo_cursor: (a: number, b: number, c: number) => void;
|
|
772
856
|
readonly __wbg_creategroupoptions_free: (a: number, b: number) => void;
|
|
773
857
|
readonly __wbg_get_creategroupoptions_permissions: (a: number) => number;
|
|
774
858
|
readonly __wbg_set_creategroupoptions_permissions: (a: number, b: number) => void;
|
|
@@ -787,7 +871,6 @@ export interface InitOutput {
|
|
|
787
871
|
readonly createdmoptions_new: (a: number) => number;
|
|
788
872
|
readonly __wbg_hmackey_free: (a: number, b: number) => void;
|
|
789
873
|
readonly __wbg_get_hmackey_key: (a: number) => [number, number];
|
|
790
|
-
readonly __wbg_set_hmackey_key: (a: number, b: number, c: number) => void;
|
|
791
874
|
readonly __wbg_conversationlistitem_free: (a: number, b: number) => void;
|
|
792
875
|
readonly __wbg_get_conversationlistitem_conversation: (a: number) => number;
|
|
793
876
|
readonly __wbg_set_conversationlistitem_conversation: (a: number, b: number) => void;
|
|
@@ -814,53 +897,6 @@ export interface InitOutput {
|
|
|
814
897
|
readonly conversations_streamAllMessages: (a: number, b: any, c: number, d: number, e: number) => [number, number, number];
|
|
815
898
|
readonly conversations_streamConsent: (a: number, b: any) => [number, number, number];
|
|
816
899
|
readonly conversations_streamPreferences: (a: number, b: any) => [number, number, number];
|
|
817
|
-
readonly __wbg_contenttypeid_free: (a: number, b: number) => void;
|
|
818
|
-
readonly __wbg_get_contenttypeid_authorityId: (a: number) => [number, number];
|
|
819
|
-
readonly __wbg_get_contenttypeid_typeId: (a: number) => [number, number];
|
|
820
|
-
readonly __wbg_set_contenttypeid_typeId: (a: number, b: number, c: number) => void;
|
|
821
|
-
readonly __wbg_get_contenttypeid_versionMajor: (a: number) => number;
|
|
822
|
-
readonly __wbg_set_contenttypeid_versionMajor: (a: number, b: number) => void;
|
|
823
|
-
readonly __wbg_get_contenttypeid_versionMinor: (a: number) => number;
|
|
824
|
-
readonly __wbg_set_contenttypeid_versionMinor: (a: number, b: number) => void;
|
|
825
|
-
readonly contenttypeid_new: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
826
|
-
readonly __wbg_encodedcontent_free: (a: number, b: number) => void;
|
|
827
|
-
readonly __wbg_get_encodedcontent_type: (a: number) => number;
|
|
828
|
-
readonly __wbg_set_encodedcontent_type: (a: number, b: number) => void;
|
|
829
|
-
readonly __wbg_get_encodedcontent_parameters: (a: number) => any;
|
|
830
|
-
readonly __wbg_set_encodedcontent_parameters: (a: number, b: any) => void;
|
|
831
|
-
readonly __wbg_get_encodedcontent_fallback: (a: number) => [number, number];
|
|
832
|
-
readonly __wbg_set_encodedcontent_fallback: (a: number, b: number, c: number) => void;
|
|
833
|
-
readonly __wbg_get_encodedcontent_compression: (a: number) => number;
|
|
834
|
-
readonly __wbg_set_encodedcontent_compression: (a: number, b: number) => void;
|
|
835
|
-
readonly __wbg_get_encodedcontent_content: (a: number) => any;
|
|
836
|
-
readonly __wbg_set_encodedcontent_content: (a: number, b: any) => void;
|
|
837
|
-
readonly encodedcontent_new: (a: number, b: any, c: number, d: number, e: number, f: any) => number;
|
|
838
|
-
readonly getInboxIdForIdentifier: (a: number, b: number, c: any) => any;
|
|
839
|
-
readonly generateInboxId: (a: any) => [number, number, number, number];
|
|
840
|
-
readonly __wbg_installation_free: (a: number, b: number) => void;
|
|
841
|
-
readonly __wbg_get_installation_bytes: (a: number) => any;
|
|
842
|
-
readonly __wbg_set_installation_bytes: (a: number, b: any) => void;
|
|
843
|
-
readonly __wbg_get_installation_id: (a: number) => [number, number];
|
|
844
|
-
readonly __wbg_get_installation_clientTimestampNs: (a: number) => [number, bigint];
|
|
845
|
-
readonly __wbg_set_installation_clientTimestampNs: (a: number, b: number, c: bigint) => void;
|
|
846
|
-
readonly installation_new: (a: any, b: number, c: number, d: number, e: bigint) => number;
|
|
847
|
-
readonly __wbg_inboxstate_free: (a: number, b: number) => void;
|
|
848
|
-
readonly __wbg_get_inboxstate_inboxId: (a: number) => [number, number];
|
|
849
|
-
readonly __wbg_get_inboxstate_recoveryIdentifier: (a: number) => any;
|
|
850
|
-
readonly __wbg_set_inboxstate_recoveryIdentifier: (a: number, b: any) => void;
|
|
851
|
-
readonly __wbg_get_inboxstate_installations: (a: number) => [number, number];
|
|
852
|
-
readonly __wbg_set_inboxstate_installations: (a: number, b: number, c: number) => void;
|
|
853
|
-
readonly __wbg_get_inboxstate_accountIdentifiers: (a: number) => [number, number];
|
|
854
|
-
readonly __wbg_set_inboxstate_accountIdentifiers: (a: number, b: number, c: number) => void;
|
|
855
|
-
readonly inboxstate_new: (a: number, b: number, c: any, d: number, e: number, f: number, g: number) => number;
|
|
856
|
-
readonly __wbg_keypackagestatus_free: (a: number, b: number) => void;
|
|
857
|
-
readonly __wbg_get_keypackagestatus_validationError: (a: number) => [number, number];
|
|
858
|
-
readonly __wbg_set_keypackagestatus_validationError: (a: number, b: number, c: number) => void;
|
|
859
|
-
readonly __wbg_lifetime_free: (a: number, b: number) => void;
|
|
860
|
-
readonly inboxStateFromInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
861
|
-
readonly client_inboxState: (a: number, b: number) => any;
|
|
862
|
-
readonly client_getLatestInboxState: (a: number, b: number, c: number) => any;
|
|
863
|
-
readonly client_getKeyPackageStatusesForInstallationIds: (a: number, b: number, c: number) => any;
|
|
864
900
|
readonly __wbg_listmessagesoptions_free: (a: number, b: number) => void;
|
|
865
901
|
readonly __wbg_get_listmessagesoptions_contentTypes: (a: number) => [number, number];
|
|
866
902
|
readonly __wbg_set_listmessagesoptions_contentTypes: (a: number, b: number, c: number) => void;
|
|
@@ -890,115 +926,85 @@ export interface InitOutput {
|
|
|
890
926
|
readonly __wbg_set_messagewithreactions_message: (a: number, b: number) => void;
|
|
891
927
|
readonly __wbg_get_messagewithreactions_reactions: (a: number) => [number, number];
|
|
892
928
|
readonly __wbg_set_messagewithreactions_reactions: (a: number, b: number, c: number) => void;
|
|
893
|
-
readonly
|
|
894
|
-
readonly
|
|
895
|
-
readonly opfs_exists: () => number;
|
|
896
|
-
readonly opfs_error: () => [number, number];
|
|
897
|
-
readonly opfs_wipeFiles: () => any;
|
|
898
|
-
readonly opfs_rm: (a: number, b: number) => [number, number, number];
|
|
899
|
-
readonly opfs_getFileNames: () => [number, number];
|
|
900
|
-
readonly opfs_importDb: (a: number, b: number, c: number, d: number) => [number, number];
|
|
901
|
-
readonly opfs_exportFile: (a: number, b: number) => [number, number, number, number];
|
|
902
|
-
readonly opfs_getFileCount: () => number;
|
|
903
|
-
readonly opfs_getCapacity: () => number;
|
|
904
|
-
readonly opfs_addCapacity: (a: number) => any;
|
|
905
|
-
readonly opfs_reduceCapacity: (a: number) => any;
|
|
906
|
-
readonly __wbg_signaturerequesthandle_free: (a: number, b: number) => void;
|
|
907
|
-
readonly verifySignedWithPublicKey: (a: number, b: number, c: any, d: any) => [number, number];
|
|
908
|
-
readonly revokeInstallationsSignatureRequest: (a: number, b: number, c: any, d: number, e: number, f: number, g: number) => any;
|
|
909
|
-
readonly applySignatureRequest: (a: number, b: number, c: number) => any;
|
|
910
|
-
readonly __wbg_passkeysignature_free: (a: number, b: number) => void;
|
|
911
|
-
readonly signaturerequesthandle_signatureText: (a: number) => any;
|
|
912
|
-
readonly signaturerequesthandle_addEcdsaSignature: (a: number, b: any) => any;
|
|
913
|
-
readonly signaturerequesthandle_addPasskeySignature: (a: number, b: number) => any;
|
|
914
|
-
readonly signaturerequesthandle_addScwSignature: (a: number, b: any, c: any, d: bigint, e: number, f: bigint) => any;
|
|
915
|
-
readonly client_createInboxSignatureRequest: (a: number) => [number, number, number];
|
|
916
|
-
readonly client_addWalletSignatureRequest: (a: number, b: any) => any;
|
|
917
|
-
readonly client_revokeWalletSignatureRequest: (a: number, b: any) => any;
|
|
918
|
-
readonly client_revokeAllOtherInstallationsSignatureRequest: (a: number) => any;
|
|
919
|
-
readonly client_revokeInstallationsSignatureRequest: (a: number, b: number, c: number) => any;
|
|
920
|
-
readonly client_changeRecoveryIdentifierSignatureRequest: (a: number, b: any) => any;
|
|
921
|
-
readonly client_applySignatureRequest: (a: number, b: number) => any;
|
|
922
|
-
readonly client_registerIdentity: (a: number, b: number) => any;
|
|
923
|
-
readonly client_signWithInstallationKey: (a: number, b: number, c: number) => [number, number, number];
|
|
924
|
-
readonly client_verifySignedWithInstallationKey: (a: number, b: number, c: number, d: any) => [number, number];
|
|
925
|
-
readonly __wbg_streamcloser_free: (a: number, b: number) => void;
|
|
926
|
-
readonly streamcloser_end: (a: number) => void;
|
|
927
|
-
readonly streamcloser_endAndWait: (a: number) => any;
|
|
928
|
-
readonly streamcloser_waitForReady: (a: number) => any;
|
|
929
|
-
readonly streamcloser_isClosed: (a: number) => number;
|
|
930
|
-
readonly __wbg_get_creategroupoptions_messageDisappearingSettings: (a: number) => number;
|
|
931
|
-
readonly __wbg_set_groupmember_inboxId: (a: number, b: number, c: number) => void;
|
|
932
|
-
readonly __wbg_set_remoteattachmentinfo_url: (a: number, b: number, c: number) => void;
|
|
933
|
-
readonly __wbg_set_contenttypeid_authorityId: (a: number, b: number, c: number) => void;
|
|
934
|
-
readonly __wbg_set_installation_id: (a: number, b: number, c: number) => void;
|
|
935
|
-
readonly __wbg_set_inboxstate_inboxId: (a: number, b: number, c: number) => void;
|
|
936
|
-
readonly __wbg_get_remoteattachmentinfo_secret: (a: number) => any;
|
|
929
|
+
readonly __wbg_set_hmackey_key: (a: number, b: number, c: number) => void;
|
|
930
|
+
readonly __wbg_set_xmtpcursor_sequence_id: (a: number, b: bigint) => void;
|
|
937
931
|
readonly __wbg_set_messagedisappearingsettings_fromNs: (a: number, b: bigint) => void;
|
|
938
|
-
readonly __wbg_set_messagedisappearingsettings_inNs: (a: number, b: bigint) => void;
|
|
939
932
|
readonly __wbg_set_hmackey_epoch: (a: number, b: bigint) => void;
|
|
940
|
-
readonly __wbg_set_lifetime_not_before: (a: number, b: bigint) => void;
|
|
941
|
-
readonly __wbg_set_lifetime_not_after: (a: number, b: bigint) => void;
|
|
942
933
|
readonly __wbg_set_message_sentAtNs: (a: number, b: bigint) => void;
|
|
943
|
-
readonly __wbg_set_creategroupoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
944
|
-
readonly __wbg_get_listconversationsoptions_createdAfterNs: (a: number) => [number, bigint];
|
|
945
934
|
readonly __wbg_get_listmessagesoptions_sentBeforeNs: (a: number) => [number, bigint];
|
|
946
935
|
readonly __wbg_get_listmessagesoptions_sentAfterNs: (a: number) => [number, bigint];
|
|
947
936
|
readonly __wbg_get_listmessagesoptions_limit: (a: number) => [number, bigint];
|
|
948
|
-
readonly
|
|
949
|
-
readonly __wbg_get_messagedisappearingsettings_fromNs: (a: number) => bigint;
|
|
950
|
-
readonly __wbg_get_messagedisappearingsettings_inNs: (a: number) => bigint;
|
|
951
|
-
readonly __wbg_get_hmackey_epoch: (a: number) => bigint;
|
|
952
|
-
readonly __wbg_get_lifetime_not_before: (a: number) => bigint;
|
|
953
|
-
readonly __wbg_get_lifetime_not_after: (a: number) => bigint;
|
|
954
|
-
readonly __wbg_get_message_sentAtNs: (a: number) => bigint;
|
|
955
|
-
readonly __wbg_set_listconversationsoptions_createdAfterNs: (a: number, b: number, c: bigint) => void;
|
|
937
|
+
readonly __wbg_get_creategroupoptions_messageDisappearingSettings: (a: number) => number;
|
|
956
938
|
readonly __wbg_set_listmessagesoptions_sentBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
957
939
|
readonly __wbg_set_listmessagesoptions_sentAfterNs: (a: number, b: number, c: bigint) => void;
|
|
958
940
|
readonly __wbg_set_listmessagesoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
959
|
-
readonly
|
|
960
|
-
readonly
|
|
941
|
+
readonly __wbg_get_xmtpcursor_sequence_id: (a: number) => bigint;
|
|
942
|
+
readonly __wbg_get_messagedisappearingsettings_fromNs: (a: number) => bigint;
|
|
943
|
+
readonly __wbg_get_hmackey_epoch: (a: number) => bigint;
|
|
944
|
+
readonly __wbg_get_message_sentAtNs: (a: number) => bigint;
|
|
945
|
+
readonly __wbg_set_creategroupoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
946
|
+
readonly __wbg_client_free: (a: number, b: number) => void;
|
|
947
|
+
readonly __wbg_logoptions_free: (a: number, b: number) => void;
|
|
948
|
+
readonly __wbg_get_logoptions_structured: (a: number) => number;
|
|
949
|
+
readonly __wbg_set_logoptions_structured: (a: number, b: number) => void;
|
|
950
|
+
readonly __wbg_get_logoptions_performance: (a: number) => number;
|
|
951
|
+
readonly __wbg_set_logoptions_performance: (a: number, b: number) => void;
|
|
952
|
+
readonly __wbg_get_logoptions_level: (a: number) => number;
|
|
953
|
+
readonly __wbg_set_logoptions_level: (a: number, b: number) => void;
|
|
954
|
+
readonly logoptions_new: (a: number, b: number, c: number) => number;
|
|
955
|
+
readonly createClient: (a: number, b: number, c: number, d: number, e: any, f: number, g: number, h: number, i: number, j: number, k: number, l: number, m: number, n: number, o: number, p: number, q: number, r: number) => any;
|
|
956
|
+
readonly client_accountIdentifier: (a: number) => any;
|
|
957
|
+
readonly client_inboxId: (a: number) => [number, number];
|
|
958
|
+
readonly client_isRegistered: (a: number) => number;
|
|
959
|
+
readonly client_installationId: (a: number) => [number, number];
|
|
960
|
+
readonly client_installationIdBytes: (a: number) => any;
|
|
961
|
+
readonly client_appVersion: (a: number) => [number, number];
|
|
962
|
+
readonly client_libxmtpVersion: (a: number) => [number, number];
|
|
963
|
+
readonly client_canMessage: (a: number, b: number, c: number) => any;
|
|
964
|
+
readonly client_sendSyncRequest: (a: number) => any;
|
|
965
|
+
readonly client_findInboxIdByIdentifier: (a: number, b: any) => any;
|
|
966
|
+
readonly client_inboxStateFromInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
967
|
+
readonly client_conversations: (a: number) => number;
|
|
968
|
+
readonly client_syncPreferences: (a: number) => any;
|
|
969
|
+
readonly client_apiStatistics: (a: number) => number;
|
|
970
|
+
readonly client_apiIdentityStatistics: (a: number) => number;
|
|
971
|
+
readonly client_apiAggregateStatistics: (a: number) => [number, number];
|
|
972
|
+
readonly client_clearAllStatistics: (a: number) => void;
|
|
973
|
+
readonly client_uploadDebugArchive: (a: number, b: number, c: number) => any;
|
|
974
|
+
readonly getInboxIdForIdentifier: (a: number, b: number, c: number, d: number, e: any) => any;
|
|
975
|
+
readonly generateInboxId: (a: any) => [number, number, number, number];
|
|
976
|
+
readonly __wbg_installation_free: (a: number, b: number) => void;
|
|
977
|
+
readonly __wbg_get_installation_bytes: (a: number) => any;
|
|
978
|
+
readonly __wbg_set_installation_bytes: (a: number, b: any) => void;
|
|
979
|
+
readonly __wbg_get_installation_id: (a: number) => [number, number];
|
|
980
|
+
readonly __wbg_set_installation_id: (a: number, b: number, c: number) => void;
|
|
981
|
+
readonly __wbg_get_installation_clientTimestampNs: (a: number) => [number, bigint];
|
|
982
|
+
readonly __wbg_set_installation_clientTimestampNs: (a: number, b: number, c: bigint) => void;
|
|
983
|
+
readonly installation_new: (a: any, b: number, c: number, d: number, e: bigint) => number;
|
|
984
|
+
readonly __wbg_inboxstate_free: (a: number, b: number) => void;
|
|
985
|
+
readonly __wbg_get_inboxstate_inboxId: (a: number) => [number, number];
|
|
986
|
+
readonly __wbg_set_inboxstate_inboxId: (a: number, b: number, c: number) => void;
|
|
987
|
+
readonly __wbg_get_inboxstate_recoveryIdentifier: (a: number) => any;
|
|
988
|
+
readonly __wbg_set_inboxstate_recoveryIdentifier: (a: number, b: any) => void;
|
|
989
|
+
readonly __wbg_get_inboxstate_installations: (a: number) => [number, number];
|
|
990
|
+
readonly __wbg_set_inboxstate_installations: (a: number, b: number, c: number) => void;
|
|
991
|
+
readonly __wbg_get_inboxstate_accountIdentifiers: (a: number) => [number, number];
|
|
992
|
+
readonly __wbg_set_inboxstate_accountIdentifiers: (a: number, b: number, c: number) => void;
|
|
993
|
+
readonly inboxstate_new: (a: number, b: number, c: any, d: number, e: number, f: number, g: number) => number;
|
|
994
|
+
readonly __wbg_keypackagestatus_free: (a: number, b: number) => void;
|
|
961
995
|
readonly __wbg_get_keypackagestatus_lifetime: (a: number) => number;
|
|
962
|
-
readonly
|
|
963
|
-
readonly
|
|
964
|
-
readonly
|
|
965
|
-
readonly
|
|
966
|
-
readonly
|
|
967
|
-
readonly
|
|
968
|
-
readonly
|
|
969
|
-
readonly
|
|
970
|
-
readonly
|
|
971
|
-
readonly
|
|
972
|
-
readonly
|
|
973
|
-
readonly
|
|
974
|
-
readonly __wbg_set_apistats_query_welcome_messages: (a: number, b: bigint) => void;
|
|
975
|
-
readonly __wbg_get_apistats_subscribe_messages: (a: number) => bigint;
|
|
976
|
-
readonly __wbg_set_apistats_subscribe_messages: (a: number, b: bigint) => void;
|
|
977
|
-
readonly __wbg_get_apistats_subscribe_welcomes: (a: number) => bigint;
|
|
978
|
-
readonly __wbg_set_apistats_subscribe_welcomes: (a: number, b: bigint) => void;
|
|
979
|
-
readonly __wbg_identitystats_free: (a: number, b: number) => void;
|
|
980
|
-
readonly __wbg_set_identitystats_publish_identity_update: (a: number, b: bigint) => void;
|
|
981
|
-
readonly __wbg_set_identitystats_get_identity_updates_v2: (a: number, b: bigint) => void;
|
|
982
|
-
readonly __wbg_set_identitystats_get_inbox_ids: (a: number, b: bigint) => void;
|
|
983
|
-
readonly __wbg_set_identitystats_verify_smart_contract_wallet_signature: (a: number, b: bigint) => void;
|
|
984
|
-
readonly __wbg_get_identitystats_publish_identity_update: (a: number) => bigint;
|
|
985
|
-
readonly __wbg_get_identitystats_get_identity_updates_v2: (a: number) => bigint;
|
|
986
|
-
readonly __wbg_get_identitystats_get_inbox_ids: (a: number) => bigint;
|
|
987
|
-
readonly __wbg_get_identitystats_verify_smart_contract_wallet_signature: (a: number) => bigint;
|
|
988
|
-
readonly __wbg_reaction_free: (a: number, b: number) => void;
|
|
989
|
-
readonly __wbg_get_reaction_reference: (a: number) => [number, number];
|
|
990
|
-
readonly __wbg_set_reaction_reference: (a: number, b: number, c: number) => void;
|
|
991
|
-
readonly __wbg_get_reaction_referenceInboxId: (a: number) => [number, number];
|
|
992
|
-
readonly __wbg_set_reaction_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
993
|
-
readonly __wbg_get_reaction_action: (a: number) => number;
|
|
994
|
-
readonly __wbg_set_reaction_action: (a: number, b: number) => void;
|
|
995
|
-
readonly __wbg_get_reaction_content: (a: number) => [number, number];
|
|
996
|
-
readonly __wbg_set_reaction_content: (a: number, b: number, c: number) => void;
|
|
997
|
-
readonly __wbg_get_reaction_schema: (a: number) => number;
|
|
998
|
-
readonly __wbg_set_reaction_schema: (a: number, b: number) => void;
|
|
999
|
-
readonly reaction_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
1000
|
-
readonly encodeReaction: (a: number) => [number, number, number];
|
|
1001
|
-
readonly decodeReaction: (a: any) => [number, number, number];
|
|
996
|
+
readonly __wbg_set_keypackagestatus_lifetime: (a: number, b: number) => void;
|
|
997
|
+
readonly __wbg_get_keypackagestatus_validationError: (a: number) => [number, number];
|
|
998
|
+
readonly __wbg_set_keypackagestatus_validationError: (a: number, b: number, c: number) => void;
|
|
999
|
+
readonly __wbg_lifetime_free: (a: number, b: number) => void;
|
|
1000
|
+
readonly __wbg_get_lifetime_not_before: (a: number) => bigint;
|
|
1001
|
+
readonly __wbg_set_lifetime_not_before: (a: number, b: bigint) => void;
|
|
1002
|
+
readonly __wbg_get_lifetime_not_after: (a: number) => bigint;
|
|
1003
|
+
readonly __wbg_set_lifetime_not_after: (a: number, b: bigint) => void;
|
|
1004
|
+
readonly inboxStateFromInboxIds: (a: number, b: number, c: number, d: number, e: number, f: number) => any;
|
|
1005
|
+
readonly client_inboxState: (a: number, b: number) => any;
|
|
1006
|
+
readonly client_getLatestInboxState: (a: number, b: number, c: number) => any;
|
|
1007
|
+
readonly client_getKeyPackageStatusesForInstallationIds: (a: number, b: number, c: number) => any;
|
|
1002
1008
|
readonly __wbg_permissionpolicyset_free: (a: number, b: number) => void;
|
|
1003
1009
|
readonly __wbg_get_permissionpolicyset_addMemberPolicy: (a: number) => number;
|
|
1004
1010
|
readonly __wbg_set_permissionpolicyset_addMemberPolicy: (a: number, b: number) => void;
|
|
@@ -1020,6 +1026,11 @@ export interface InitOutput {
|
|
|
1020
1026
|
readonly __wbg_grouppermissions_free: (a: number, b: number) => void;
|
|
1021
1027
|
readonly grouppermissions_policyType: (a: number) => [number, number, number];
|
|
1022
1028
|
readonly grouppermissions_policySet: (a: number) => [number, number, number];
|
|
1029
|
+
readonly __wbg_streamcloser_free: (a: number, b: number) => void;
|
|
1030
|
+
readonly streamcloser_end: (a: number) => void;
|
|
1031
|
+
readonly streamcloser_endAndWait: (a: number) => any;
|
|
1032
|
+
readonly streamcloser_waitForReady: (a: number) => any;
|
|
1033
|
+
readonly streamcloser_isClosed: (a: number) => number;
|
|
1023
1034
|
readonly rust_zstd_wasm_shim_qsort: (a: number, b: number, c: number, d: number) => void;
|
|
1024
1035
|
readonly rust_zstd_wasm_shim_malloc: (a: number) => number;
|
|
1025
1036
|
readonly rust_zstd_wasm_shim_memcmp: (a: number, b: number, c: number) => number;
|
|
@@ -1062,10 +1073,11 @@ export interface InitOutput {
|
|
|
1062
1073
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
1063
1074
|
readonly __wbindgen_export_7: WebAssembly.Table;
|
|
1064
1075
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
1065
|
-
readonly
|
|
1076
|
+
readonly wasm_bindgen__convert__closures_____invoke__hf1da1e5ad7398b09: (a: number, b: number) => void;
|
|
1077
|
+
readonly wasm_bindgen__convert__closures_____invoke__h7637509b4f7e8710: (a: number, b: number) => void;
|
|
1066
1078
|
readonly wasm_bindgen__convert__closures_____invoke__hfa5440517c90e88d: (a: number, b: number) => void;
|
|
1067
|
-
readonly
|
|
1068
|
-
readonly
|
|
1079
|
+
readonly closure5647_externref_shim: (a: number, b: number, c: any) => void;
|
|
1080
|
+
readonly closure6618_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
1069
1081
|
readonly __wbindgen_start: () => void;
|
|
1070
1082
|
}
|
|
1071
1083
|
|