@xmtp/wasm-bindings 1.6.0-dev.e545a64 → 1.6.1-rc1
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 +358 -357
- package/dist/bindings_wasm.js +179 -177
- package/dist/bindings_wasm_bg.wasm +0 -0
- package/dist/bindings_wasm_bg.wasm.d.ts +334 -334
- 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 encodeReaction(reaction: Reaction): Uint8Array;
|
|
4
|
+
export function decodeReaction(bytes: Uint8Array): Reaction;
|
|
5
|
+
export function getInboxIdForIdentifier(v3_host: string, gateway_host: string | null | undefined, accountIdentifier: Identifier): Promise<string | undefined>;
|
|
6
|
+
export function generateInboxId(accountIdentifier: Identifier): string;
|
|
3
7
|
export function verifySignedWithPublicKey(signature_text: string, signature_bytes: Uint8Array, public_key: Uint8Array): void;
|
|
4
8
|
export function revokeInstallationsSignatureRequest(v3_host: string, gateway_host: string | null | undefined, recovery_identifier: Identifier, inbox_id: string, installation_ids: Uint8Array[]): SignatureRequestHandle;
|
|
5
9
|
export function applySignatureRequest(v3_host: string, gateway_host: string | null | undefined, signature_request: SignatureRequestHandle): Promise<void>;
|
|
6
|
-
export function inboxStateFromInboxIds(v3_host: string, gateway_host: string | null | undefined, inbox_ids: string[]): Promise<InboxState[]>;
|
|
7
|
-
export function getInboxIdForIdentifier(v3_host: string, gateway_host: string | null | undefined, accountIdentifier: Identifier): Promise<string | undefined>;
|
|
8
|
-
export function generateInboxId(accountIdentifier: Identifier): string;
|
|
9
|
-
export function encodeReaction(reaction: Reaction): Uint8Array;
|
|
10
|
-
export function decodeReaction(bytes: Uint8Array): Reaction;
|
|
11
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, gateway_host?: string | null): Promise<Client>;
|
|
12
11
|
export function encodeMultiRemoteAttachment(multiRemoteAttachment: MultiRemoteAttachment): Uint8Array;
|
|
13
12
|
export function decodeMultiRemoteAttachment(bytes: Uint8Array): MultiRemoteAttachment;
|
|
13
|
+
export function inboxStateFromInboxIds(v3_host: string, gateway_host: string | null | undefined, inbox_ids: string[]): Promise<InboxState[]>;
|
|
14
14
|
/**
|
|
15
15
|
* Entry point invoked by JavaScript in a worker.
|
|
16
16
|
*/
|
|
@@ -52,6 +52,7 @@ export enum GroupMembershipState {
|
|
|
52
52
|
Rejected = 1,
|
|
53
53
|
Pending = 2,
|
|
54
54
|
Restored = 3,
|
|
55
|
+
PendingRemove = 4,
|
|
55
56
|
}
|
|
56
57
|
export enum GroupMessageKind {
|
|
57
58
|
Application = 0,
|
|
@@ -181,24 +182,6 @@ export class Client {
|
|
|
181
182
|
registerIdentity(signature_request: SignatureRequestHandle): Promise<void>;
|
|
182
183
|
signWithInstallationKey(signature_text: string): Uint8Array;
|
|
183
184
|
verifySignedWithInstallationKey(signature_text: string, signature_bytes: Uint8Array): void;
|
|
184
|
-
/**
|
|
185
|
-
*
|
|
186
|
-
* * Get the client's inbox state.
|
|
187
|
-
* *
|
|
188
|
-
* * If `refresh_from_network` is true, the client will go to the network first to refresh the state.
|
|
189
|
-
* * Otherwise, the state will be read from the local database.
|
|
190
|
-
*
|
|
191
|
-
*/
|
|
192
|
-
inboxState(refresh_from_network: boolean): Promise<InboxState>;
|
|
193
|
-
getLatestInboxState(inbox_id: string): Promise<InboxState>;
|
|
194
|
-
/**
|
|
195
|
-
*
|
|
196
|
-
* * Get key package statuses for a list of installation IDs.
|
|
197
|
-
* *
|
|
198
|
-
* * Returns a JavaScript object mapping installation ID strings to KeyPackageStatus objects.
|
|
199
|
-
*
|
|
200
|
-
*/
|
|
201
|
-
getKeyPackageStatusesForInstallationIds(installation_ids: string[]): Promise<any>;
|
|
202
185
|
setConsentStates(records: Consent[]): Promise<void>;
|
|
203
186
|
getConsentState(entity_type: ConsentEntityType, entity: string): Promise<ConsentState>;
|
|
204
187
|
/**
|
|
@@ -217,6 +200,24 @@ export class Client {
|
|
|
217
200
|
uploadDebugArchive(server_url: string): Promise<string>;
|
|
218
201
|
deleteMessage(message_id: Uint8Array): number;
|
|
219
202
|
messageV2(message_id: Uint8Array): Promise<DecodedMessage>;
|
|
203
|
+
/**
|
|
204
|
+
*
|
|
205
|
+
* * Get the client's inbox state.
|
|
206
|
+
* *
|
|
207
|
+
* * If `refresh_from_network` is true, the client will go to the network first to refresh the state.
|
|
208
|
+
* * Otherwise, the state will be read from the local database.
|
|
209
|
+
*
|
|
210
|
+
*/
|
|
211
|
+
inboxState(refresh_from_network: boolean): Promise<InboxState>;
|
|
212
|
+
getLatestInboxState(inbox_id: string): Promise<InboxState>;
|
|
213
|
+
/**
|
|
214
|
+
*
|
|
215
|
+
* * Get key package statuses for a list of installation IDs.
|
|
216
|
+
* *
|
|
217
|
+
* * Returns a JavaScript object mapping installation ID strings to KeyPackageStatus objects.
|
|
218
|
+
*
|
|
219
|
+
*/
|
|
220
|
+
getKeyPackageStatusesForInstallationIds(installation_ids: string[]): Promise<any>;
|
|
220
221
|
readonly accountIdentifier: Identifier;
|
|
221
222
|
readonly inboxId: string;
|
|
222
223
|
readonly isRegistered: boolean;
|
|
@@ -847,58 +848,26 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
847
848
|
|
|
848
849
|
export interface InitOutput {
|
|
849
850
|
readonly memory: WebAssembly.Memory;
|
|
850
|
-
readonly
|
|
851
|
-
readonly
|
|
852
|
-
readonly
|
|
853
|
-
readonly
|
|
854
|
-
readonly
|
|
855
|
-
readonly
|
|
856
|
-
readonly
|
|
857
|
-
readonly
|
|
858
|
-
readonly
|
|
859
|
-
readonly
|
|
860
|
-
readonly
|
|
861
|
-
readonly
|
|
862
|
-
readonly
|
|
863
|
-
readonly
|
|
864
|
-
readonly
|
|
865
|
-
readonly
|
|
866
|
-
readonly
|
|
867
|
-
readonly
|
|
868
|
-
readonly
|
|
869
|
-
readonly
|
|
870
|
-
readonly __wbg_set_identitystats_get_inbox_ids: (a: number, b: bigint) => void;
|
|
871
|
-
readonly __wbg_set_identitystats_verify_smart_contract_wallet_signature: (a: number, b: bigint) => void;
|
|
872
|
-
readonly __wbg_get_identitystats_publish_identity_update: (a: number) => bigint;
|
|
873
|
-
readonly __wbg_get_identitystats_get_identity_updates_v2: (a: number) => bigint;
|
|
874
|
-
readonly __wbg_get_identitystats_get_inbox_ids: (a: number) => bigint;
|
|
875
|
-
readonly __wbg_get_identitystats_verify_smart_contract_wallet_signature: (a: number) => bigint;
|
|
876
|
-
readonly __wbg_permissionpolicyset_free: (a: number, b: number) => void;
|
|
877
|
-
readonly __wbg_get_permissionpolicyset_addMemberPolicy: (a: number) => number;
|
|
878
|
-
readonly __wbg_set_permissionpolicyset_addMemberPolicy: (a: number, b: number) => void;
|
|
879
|
-
readonly __wbg_get_permissionpolicyset_removeMemberPolicy: (a: number) => number;
|
|
880
|
-
readonly __wbg_set_permissionpolicyset_removeMemberPolicy: (a: number, b: number) => void;
|
|
881
|
-
readonly __wbg_get_permissionpolicyset_addAdminPolicy: (a: number) => number;
|
|
882
|
-
readonly __wbg_set_permissionpolicyset_addAdminPolicy: (a: number, b: number) => void;
|
|
883
|
-
readonly __wbg_get_permissionpolicyset_removeAdminPolicy: (a: number) => number;
|
|
884
|
-
readonly __wbg_set_permissionpolicyset_removeAdminPolicy: (a: number, b: number) => void;
|
|
885
|
-
readonly __wbg_get_permissionpolicyset_updateGroupNamePolicy: (a: number) => number;
|
|
886
|
-
readonly __wbg_set_permissionpolicyset_updateGroupNamePolicy: (a: number, b: number) => void;
|
|
887
|
-
readonly __wbg_get_permissionpolicyset_updateGroupDescriptionPolicy: (a: number) => number;
|
|
888
|
-
readonly __wbg_set_permissionpolicyset_updateGroupDescriptionPolicy: (a: number, b: number) => void;
|
|
889
|
-
readonly __wbg_get_permissionpolicyset_updateGroupImageUrlSquarePolicy: (a: number) => number;
|
|
890
|
-
readonly __wbg_set_permissionpolicyset_updateGroupImageUrlSquarePolicy: (a: number, b: number) => void;
|
|
891
|
-
readonly __wbg_get_permissionpolicyset_updateMessageDisappearingPolicy: (a: number) => number;
|
|
892
|
-
readonly __wbg_set_permissionpolicyset_updateMessageDisappearingPolicy: (a: number, b: number) => void;
|
|
893
|
-
readonly permissionpolicyset_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
894
|
-
readonly __wbg_grouppermissions_free: (a: number, b: number) => void;
|
|
895
|
-
readonly grouppermissions_policyType: (a: number) => [number, number, number];
|
|
896
|
-
readonly grouppermissions_policySet: (a: number) => [number, number, number];
|
|
897
|
-
readonly __wbg_streamcloser_free: (a: number, b: number) => void;
|
|
898
|
-
readonly streamcloser_end: (a: number) => void;
|
|
899
|
-
readonly streamcloser_endAndWait: (a: number) => any;
|
|
900
|
-
readonly streamcloser_waitForReady: (a: number) => any;
|
|
901
|
-
readonly streamcloser_isClosed: (a: number) => number;
|
|
851
|
+
readonly __wbg_reaction_free: (a: number, b: number) => void;
|
|
852
|
+
readonly __wbg_get_reaction_reference: (a: number) => [number, number];
|
|
853
|
+
readonly __wbg_set_reaction_reference: (a: number, b: number, c: number) => void;
|
|
854
|
+
readonly __wbg_get_reaction_referenceInboxId: (a: number) => [number, number];
|
|
855
|
+
readonly __wbg_set_reaction_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
856
|
+
readonly __wbg_get_reaction_action: (a: number) => number;
|
|
857
|
+
readonly __wbg_set_reaction_action: (a: number, b: number) => void;
|
|
858
|
+
readonly __wbg_get_reaction_content: (a: number) => [number, number];
|
|
859
|
+
readonly __wbg_set_reaction_content: (a: number, b: number, c: number) => void;
|
|
860
|
+
readonly __wbg_get_reaction_schema: (a: number) => number;
|
|
861
|
+
readonly __wbg_set_reaction_schema: (a: number, b: number) => void;
|
|
862
|
+
readonly reaction_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
863
|
+
readonly encodeReaction: (a: number) => [number, number, number];
|
|
864
|
+
readonly decodeReaction: (a: any) => [number, number, number];
|
|
865
|
+
readonly __wbg_reactionpayload_free: (a: number, b: number) => void;
|
|
866
|
+
readonly __wbg_get_reactionpayload_reference: (a: number) => [number, number];
|
|
867
|
+
readonly __wbg_get_reactionpayload_referenceInboxId: (a: number) => [number, number];
|
|
868
|
+
readonly __wbg_get_reactionpayload_content: (a: number) => [number, number];
|
|
869
|
+
readonly getInboxIdForIdentifier: (a: number, b: number, c: number, d: number, e: any) => any;
|
|
870
|
+
readonly generateInboxId: (a: any) => [number, number, number, number];
|
|
902
871
|
readonly __wbg_signaturerequesthandle_free: (a: number, b: number) => void;
|
|
903
872
|
readonly verifySignedWithPublicKey: (a: number, b: number, c: any, d: any) => [number, number];
|
|
904
873
|
readonly revokeInstallationsSignatureRequest: (a: number, b: number, c: number, d: number, e: any, f: number, g: number, h: number, i: number) => [number, number, number];
|
|
@@ -918,6 +887,18 @@ export interface InitOutput {
|
|
|
918
887
|
readonly client_registerIdentity: (a: number, b: number) => any;
|
|
919
888
|
readonly client_signWithInstallationKey: (a: number, b: number, c: number) => [number, number, number];
|
|
920
889
|
readonly client_verifySignedWithInstallationKey: (a: number, b: number, c: number, d: any) => [number, number];
|
|
890
|
+
readonly __wbg_streamcloser_free: (a: number, b: number) => void;
|
|
891
|
+
readonly streamcloser_end: (a: number) => void;
|
|
892
|
+
readonly streamcloser_endAndWait: (a: number) => any;
|
|
893
|
+
readonly streamcloser_waitForReady: (a: number) => any;
|
|
894
|
+
readonly streamcloser_isClosed: (a: number) => number;
|
|
895
|
+
readonly __wbg_set_reactionpayload_reference: (a: number, b: number, c: number) => void;
|
|
896
|
+
readonly __wbg_set_reactionpayload_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
897
|
+
readonly __wbg_set_reactionpayload_content: (a: number, b: number, c: number) => void;
|
|
898
|
+
readonly __wbg_set_reactionpayload_action: (a: number, b: number) => void;
|
|
899
|
+
readonly __wbg_set_reactionpayload_schema: (a: number, b: number) => void;
|
|
900
|
+
readonly __wbg_get_reactionpayload_action: (a: number) => number;
|
|
901
|
+
readonly __wbg_get_reactionpayload_schema: (a: number) => number;
|
|
921
902
|
readonly __wbg_decodedmessagecontent_free: (a: number, b: number) => void;
|
|
922
903
|
readonly decodedmessagecontent_payloadType: (a: number) => number;
|
|
923
904
|
readonly decodedmessagecontent_asText: (a: number) => number;
|
|
@@ -935,81 +916,6 @@ export interface InitOutput {
|
|
|
935
916
|
readonly enrichedreply_referenceId: (a: number) => [number, number];
|
|
936
917
|
readonly enrichedreply_content: (a: number) => number;
|
|
937
918
|
readonly enrichedreply_inReplyTo: (a: number) => number;
|
|
938
|
-
readonly __wbg_listconversationsoptions_free: (a: number, b: number) => void;
|
|
939
|
-
readonly __wbg_get_listconversationsoptions_consentStates: (a: number) => [number, number];
|
|
940
|
-
readonly __wbg_set_listconversationsoptions_consentStates: (a: number, b: number, c: number) => void;
|
|
941
|
-
readonly __wbg_get_listconversationsoptions_conversationType: (a: number) => number;
|
|
942
|
-
readonly __wbg_set_listconversationsoptions_conversationType: (a: number, b: number) => void;
|
|
943
|
-
readonly __wbg_get_listconversationsoptions_createdBeforeNs: (a: number) => [number, bigint];
|
|
944
|
-
readonly __wbg_set_listconversationsoptions_createdBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
945
|
-
readonly __wbg_get_listconversationsoptions_includeDuplicateDms: (a: number) => number;
|
|
946
|
-
readonly __wbg_set_listconversationsoptions_includeDuplicateDms: (a: number, b: number) => void;
|
|
947
|
-
readonly __wbg_get_listconversationsoptions_limit: (a: number) => [number, bigint];
|
|
948
|
-
readonly __wbg_set_listconversationsoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
949
|
-
readonly listconversationsoptions_new: (a: number, b: number, c: number, d: number, e: bigint, f: number, g: bigint, h: number, i: number, j: bigint) => number;
|
|
950
|
-
readonly messagedisappearingsettings_new: (a: bigint, b: bigint) => number;
|
|
951
|
-
readonly __wbg_xmtpcursor_free: (a: number, b: number) => void;
|
|
952
|
-
readonly __wbg_get_xmtpcursor_originator_id: (a: number) => number;
|
|
953
|
-
readonly __wbg_set_xmtpcursor_originator_id: (a: number, b: number) => void;
|
|
954
|
-
readonly __wbg_conversationdebuginfo_free: (a: number, b: number) => void;
|
|
955
|
-
readonly __wbg_get_conversationdebuginfo_epoch: (a: number) => bigint;
|
|
956
|
-
readonly __wbg_set_conversationdebuginfo_epoch: (a: number, b: bigint) => void;
|
|
957
|
-
readonly __wbg_get_conversationdebuginfo_maybeForked: (a: number) => number;
|
|
958
|
-
readonly __wbg_set_conversationdebuginfo_maybeForked: (a: number, b: number) => void;
|
|
959
|
-
readonly __wbg_get_conversationdebuginfo_forkDetails: (a: number) => [number, number];
|
|
960
|
-
readonly __wbg_set_conversationdebuginfo_forkDetails: (a: number, b: number, c: number) => void;
|
|
961
|
-
readonly __wbg_get_conversationdebuginfo_isCommitLogForked: (a: number) => number;
|
|
962
|
-
readonly __wbg_set_conversationdebuginfo_isCommitLogForked: (a: number, b: number) => void;
|
|
963
|
-
readonly __wbg_get_conversationdebuginfo_localCommitLog: (a: number) => [number, number];
|
|
964
|
-
readonly __wbg_set_conversationdebuginfo_localCommitLog: (a: number, b: number, c: number) => void;
|
|
965
|
-
readonly __wbg_get_conversationdebuginfo_remoteCommitLog: (a: number) => [number, number];
|
|
966
|
-
readonly __wbg_set_conversationdebuginfo_remoteCommitLog: (a: number, b: number, c: number) => void;
|
|
967
|
-
readonly __wbg_get_conversationdebuginfo_cursor: (a: number) => [number, number];
|
|
968
|
-
readonly __wbg_set_conversationdebuginfo_cursor: (a: number, b: number, c: number) => void;
|
|
969
|
-
readonly __wbg_creategroupoptions_free: (a: number, b: number) => void;
|
|
970
|
-
readonly __wbg_get_creategroupoptions_permissions: (a: number) => number;
|
|
971
|
-
readonly __wbg_set_creategroupoptions_permissions: (a: number, b: number) => void;
|
|
972
|
-
readonly __wbg_get_creategroupoptions_groupName: (a: number) => [number, number];
|
|
973
|
-
readonly __wbg_set_creategroupoptions_groupName: (a: number, b: number, c: number) => void;
|
|
974
|
-
readonly __wbg_get_creategroupoptions_groupImageUrlSquare: (a: number) => [number, number];
|
|
975
|
-
readonly __wbg_set_creategroupoptions_groupImageUrlSquare: (a: number, b: number, c: number) => void;
|
|
976
|
-
readonly __wbg_get_creategroupoptions_groupDescription: (a: number) => [number, number];
|
|
977
|
-
readonly __wbg_set_creategroupoptions_groupDescription: (a: number, b: number, c: number) => void;
|
|
978
|
-
readonly __wbg_get_creategroupoptions_customPermissionPolicySet: (a: number) => number;
|
|
979
|
-
readonly __wbg_set_creategroupoptions_customPermissionPolicySet: (a: number, b: number) => void;
|
|
980
|
-
readonly creategroupoptions_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => number;
|
|
981
|
-
readonly __wbg_createdmoptions_free: (a: number, b: number) => void;
|
|
982
|
-
readonly __wbg_get_createdmoptions_messageDisappearingSettings: (a: number) => number;
|
|
983
|
-
readonly __wbg_set_createdmoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
984
|
-
readonly createdmoptions_new: (a: number) => number;
|
|
985
|
-
readonly __wbg_hmackey_free: (a: number, b: number) => void;
|
|
986
|
-
readonly __wbg_get_hmackey_key: (a: number) => [number, number];
|
|
987
|
-
readonly __wbg_conversationlistitem_free: (a: number, b: number) => void;
|
|
988
|
-
readonly __wbg_get_conversationlistitem_conversation: (a: number) => number;
|
|
989
|
-
readonly __wbg_set_conversationlistitem_conversation: (a: number, b: number) => void;
|
|
990
|
-
readonly __wbg_get_conversationlistitem_lastMessage: (a: number) => number;
|
|
991
|
-
readonly __wbg_set_conversationlistitem_lastMessage: (a: number, b: number) => void;
|
|
992
|
-
readonly __wbg_get_conversationlistitem_isCommitLogForked: (a: number) => number;
|
|
993
|
-
readonly __wbg_set_conversationlistitem_isCommitLogForked: (a: number, b: number) => void;
|
|
994
|
-
readonly conversationlistitem_new: (a: number, b: number, c: number) => number;
|
|
995
|
-
readonly __wbg_conversations_free: (a: number, b: number) => void;
|
|
996
|
-
readonly conversations_createGroupOptimistic: (a: number, b: number) => [number, number, number];
|
|
997
|
-
readonly conversations_createGroup: (a: number, b: number, c: number, d: number) => any;
|
|
998
|
-
readonly conversations_createGroupByInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
999
|
-
readonly conversations_createDm: (a: number, b: any, c: number) => any;
|
|
1000
|
-
readonly conversations_createDmByInboxId: (a: number, b: number, c: number, d: number) => any;
|
|
1001
|
-
readonly conversations_findGroupById: (a: number, b: number, c: number) => [number, number, number];
|
|
1002
|
-
readonly conversations_findDmByTargetInboxId: (a: number, b: number, c: number) => [number, number, number];
|
|
1003
|
-
readonly conversations_findMessageById: (a: number, b: number, c: number) => [number, number, number];
|
|
1004
|
-
readonly conversations_sync: (a: number) => any;
|
|
1005
|
-
readonly conversations_syncAllConversations: (a: number, b: number, c: number) => any;
|
|
1006
|
-
readonly conversations_list: (a: number, b: number) => [number, number, number];
|
|
1007
|
-
readonly conversations_getHmacKeys: (a: number) => [number, number, number];
|
|
1008
|
-
readonly conversations_streamLocal: (a: number, b: number) => any;
|
|
1009
|
-
readonly conversations_stream: (a: number, b: any, c: number) => [number, number, number];
|
|
1010
|
-
readonly conversations_streamAllMessages: (a: number, b: any, c: number, d: number, e: number) => [number, number, number];
|
|
1011
|
-
readonly conversations_streamConsent: (a: number, b: any) => [number, number, number];
|
|
1012
|
-
readonly conversations_streamPreferences: (a: number, b: any) => [number, number, number];
|
|
1013
919
|
readonly __wbg_decodedmessage_free: (a: number, b: number) => void;
|
|
1014
920
|
readonly __wbg_get_decodedmessage_id: (a: number) => [number, number];
|
|
1015
921
|
readonly __wbg_set_decodedmessage_id: (a: number, b: number, c: number) => void;
|
|
@@ -1035,73 +941,16 @@ export interface InitOutput {
|
|
|
1035
941
|
readonly __wbg_set_decodedmessage_delivery_status: (a: number, b: number) => void;
|
|
1036
942
|
readonly __wbg_get_decodedmessage_num_replies: (a: number) => bigint;
|
|
1037
943
|
readonly __wbg_set_decodedmessage_num_replies: (a: number, b: bigint) => void;
|
|
1038
|
-
readonly
|
|
1039
|
-
readonly
|
|
1040
|
-
readonly
|
|
1041
|
-
readonly
|
|
1042
|
-
readonly
|
|
1043
|
-
readonly
|
|
1044
|
-
readonly
|
|
1045
|
-
readonly
|
|
1046
|
-
readonly
|
|
1047
|
-
readonly
|
|
1048
|
-
readonly __wbg_set_inboxstate_inboxId: (a: number, b: number, c: number) => void;
|
|
1049
|
-
readonly __wbg_get_inboxstate_recoveryIdentifier: (a: number) => any;
|
|
1050
|
-
readonly __wbg_set_inboxstate_recoveryIdentifier: (a: number, b: any) => void;
|
|
1051
|
-
readonly __wbg_get_inboxstate_installations: (a: number) => [number, number];
|
|
1052
|
-
readonly __wbg_set_inboxstate_installations: (a: number, b: number, c: number) => void;
|
|
1053
|
-
readonly __wbg_get_inboxstate_accountIdentifiers: (a: number) => [number, number];
|
|
1054
|
-
readonly __wbg_set_inboxstate_accountIdentifiers: (a: number, b: number, c: number) => void;
|
|
1055
|
-
readonly inboxstate_new: (a: number, b: number, c: any, d: number, e: number, f: number, g: number) => number;
|
|
1056
|
-
readonly __wbg_keypackagestatus_free: (a: number, b: number) => void;
|
|
1057
|
-
readonly __wbg_get_keypackagestatus_validationError: (a: number) => [number, number];
|
|
1058
|
-
readonly __wbg_set_keypackagestatus_validationError: (a: number, b: number, c: number) => void;
|
|
1059
|
-
readonly __wbg_lifetime_free: (a: number, b: number) => void;
|
|
1060
|
-
readonly __wbg_get_lifetime_not_after: (a: number) => bigint;
|
|
1061
|
-
readonly __wbg_set_lifetime_not_after: (a: number, b: bigint) => void;
|
|
1062
|
-
readonly inboxStateFromInboxIds: (a: number, b: number, c: number, d: number, e: number, f: number) => any;
|
|
1063
|
-
readonly client_inboxState: (a: number, b: number) => any;
|
|
1064
|
-
readonly client_getLatestInboxState: (a: number, b: number, c: number) => any;
|
|
1065
|
-
readonly client_getKeyPackageStatusesForInstallationIds: (a: number, b: number, c: number) => any;
|
|
1066
|
-
readonly __wbg_set_hmackey_key: (a: number, b: number, c: number) => void;
|
|
1067
|
-
readonly __wbg_set_xmtpcursor_sequence_id: (a: number, b: bigint) => void;
|
|
1068
|
-
readonly __wbg_set_messagedisappearingsettings_fromNs: (a: number, b: bigint) => void;
|
|
1069
|
-
readonly __wbg_set_hmackey_epoch: (a: number, b: bigint) => void;
|
|
1070
|
-
readonly __wbg_set_lifetime_not_before: (a: number, b: bigint) => void;
|
|
1071
|
-
readonly __wbg_set_messagedisappearingsettings_inNs: (a: number, b: bigint) => void;
|
|
1072
|
-
readonly __wbg_get_listconversationsoptions_createdAfterNs: (a: number) => [number, bigint];
|
|
1073
|
-
readonly __wbg_get_creategroupoptions_messageDisappearingSettings: (a: number) => number;
|
|
1074
|
-
readonly __wbg_set_listconversationsoptions_createdAfterNs: (a: number, b: number, c: bigint) => void;
|
|
1075
|
-
readonly __wbg_get_xmtpcursor_sequence_id: (a: number) => bigint;
|
|
1076
|
-
readonly __wbg_get_messagedisappearingsettings_fromNs: (a: number) => bigint;
|
|
1077
|
-
readonly __wbg_get_hmackey_epoch: (a: number) => bigint;
|
|
1078
|
-
readonly __wbg_get_lifetime_not_before: (a: number) => bigint;
|
|
1079
|
-
readonly __wbg_get_messagedisappearingsettings_inNs: (a: number) => bigint;
|
|
1080
|
-
readonly __wbg_set_creategroupoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
1081
|
-
readonly __wbg_set_keypackagestatus_lifetime: (a: number, b: number) => void;
|
|
1082
|
-
readonly __wbg_messagedisappearingsettings_free: (a: number, b: number) => void;
|
|
1083
|
-
readonly __wbg_get_keypackagestatus_lifetime: (a: number) => number;
|
|
1084
|
-
readonly __wbg_groupupdated_free: (a: number, b: number) => void;
|
|
1085
|
-
readonly __wbg_get_groupupdated_initiatedByInboxId: (a: number) => [number, number];
|
|
1086
|
-
readonly __wbg_set_groupupdated_initiatedByInboxId: (a: number, b: number, c: number) => void;
|
|
1087
|
-
readonly __wbg_get_groupupdated_addedInboxes: (a: number) => [number, number];
|
|
1088
|
-
readonly __wbg_set_groupupdated_addedInboxes: (a: number, b: number, c: number) => void;
|
|
1089
|
-
readonly __wbg_get_groupupdated_removedInboxes: (a: number) => [number, number];
|
|
1090
|
-
readonly __wbg_set_groupupdated_removedInboxes: (a: number, b: number, c: number) => void;
|
|
1091
|
-
readonly __wbg_get_groupupdated_metadataFieldChanges: (a: number) => [number, number];
|
|
1092
|
-
readonly __wbg_set_groupupdated_metadataFieldChanges: (a: number, b: number, c: number) => void;
|
|
1093
|
-
readonly __wbg_inbox_free: (a: number, b: number) => void;
|
|
1094
|
-
readonly __wbg_get_inbox_inboxId: (a: number) => [number, number];
|
|
1095
|
-
readonly __wbg_metadatafieldchange_free: (a: number, b: number) => void;
|
|
1096
|
-
readonly __wbg_get_metadatafieldchange_fieldName: (a: number) => [number, number];
|
|
1097
|
-
readonly __wbg_get_metadatafieldchange_oldValue: (a: number) => [number, number];
|
|
1098
|
-
readonly __wbg_set_metadatafieldchange_oldValue: (a: number, b: number, c: number) => void;
|
|
1099
|
-
readonly __wbg_get_metadatafieldchange_newValue: (a: number) => [number, number];
|
|
1100
|
-
readonly __wbg_set_metadatafieldchange_newValue: (a: number, b: number, c: number) => void;
|
|
1101
|
-
readonly getInboxIdForIdentifier: (a: number, b: number, c: number, d: number, e: any) => any;
|
|
1102
|
-
readonly generateInboxId: (a: any) => [number, number, number, number];
|
|
1103
|
-
readonly __wbg_set_inbox_inboxId: (a: number, b: number, c: number) => void;
|
|
1104
|
-
readonly __wbg_set_metadatafieldchange_fieldName: (a: number, b: number, c: number) => void;
|
|
944
|
+
readonly __wbg_attachment_free: (a: number, b: number) => void;
|
|
945
|
+
readonly __wbg_get_attachment_filename: (a: number) => [number, number];
|
|
946
|
+
readonly __wbg_set_attachment_filename: (a: number, b: number, c: number) => void;
|
|
947
|
+
readonly __wbg_get_attachment_mimeType: (a: number) => [number, number];
|
|
948
|
+
readonly __wbg_set_attachment_mimeType: (a: number, b: number, c: number) => void;
|
|
949
|
+
readonly __wbg_get_attachment_content: (a: number) => [number, number];
|
|
950
|
+
readonly __wbg_set_attachment_content: (a: number, b: number, c: number) => void;
|
|
951
|
+
readonly __wbg_textcontent_free: (a: number, b: number) => void;
|
|
952
|
+
readonly __wbg_get_textcontent_content: (a: number) => [number, number];
|
|
953
|
+
readonly __wbg_set_textcontent_content: (a: number, b: number, c: number) => void;
|
|
1105
954
|
readonly __wbg_consent_free: (a: number, b: number) => void;
|
|
1106
955
|
readonly __wbg_get_consent_entityType: (a: number) => number;
|
|
1107
956
|
readonly __wbg_set_consent_entityType: (a: number, b: number) => void;
|
|
@@ -1114,56 +963,6 @@ export interface InitOutput {
|
|
|
1114
963
|
readonly client_getConsentState: (a: number, b: number, c: number, d: number) => any;
|
|
1115
964
|
readonly conversation_consentState: (a: number) => [number, number, number];
|
|
1116
965
|
readonly conversation_updateConsentState: (a: number, b: number) => [number, number];
|
|
1117
|
-
readonly __wbg_reaction_free: (a: number, b: number) => void;
|
|
1118
|
-
readonly __wbg_get_reaction_reference: (a: number) => [number, number];
|
|
1119
|
-
readonly __wbg_get_reaction_referenceInboxId: (a: number) => [number, number];
|
|
1120
|
-
readonly __wbg_get_reaction_action: (a: number) => number;
|
|
1121
|
-
readonly __wbg_set_reaction_action: (a: number, b: number) => void;
|
|
1122
|
-
readonly __wbg_get_reaction_content: (a: number) => [number, number];
|
|
1123
|
-
readonly __wbg_set_reaction_content: (a: number, b: number, c: number) => void;
|
|
1124
|
-
readonly __wbg_get_reaction_schema: (a: number) => number;
|
|
1125
|
-
readonly __wbg_set_reaction_schema: (a: number, b: number) => void;
|
|
1126
|
-
readonly reaction_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
1127
|
-
readonly encodeReaction: (a: number) => [number, number, number];
|
|
1128
|
-
readonly decodeReaction: (a: any) => [number, number, number];
|
|
1129
|
-
readonly __wbg_reactionpayload_free: (a: number, b: number) => void;
|
|
1130
|
-
readonly __wbg_get_reactionpayload_reference: (a: number) => [number, number];
|
|
1131
|
-
readonly __wbg_get_reactionpayload_referenceInboxId: (a: number) => [number, number];
|
|
1132
|
-
readonly __wbg_get_reactionpayload_content: (a: number) => [number, number];
|
|
1133
|
-
readonly __wbg_remoteattachment_free: (a: number, b: number) => void;
|
|
1134
|
-
readonly __wbg_get_remoteattachment_url: (a: number) => [number, number];
|
|
1135
|
-
readonly __wbg_set_remoteattachment_url: (a: number, b: number, c: number) => void;
|
|
1136
|
-
readonly __wbg_get_remoteattachment_contentDigest: (a: number) => [number, number];
|
|
1137
|
-
readonly __wbg_get_remoteattachment_secret: (a: number) => [number, number];
|
|
1138
|
-
readonly __wbg_set_remoteattachment_secret: (a: number, b: number, c: number) => void;
|
|
1139
|
-
readonly __wbg_get_remoteattachment_salt: (a: number) => [number, number];
|
|
1140
|
-
readonly __wbg_set_remoteattachment_salt: (a: number, b: number, c: number) => void;
|
|
1141
|
-
readonly __wbg_get_remoteattachment_nonce: (a: number) => [number, number];
|
|
1142
|
-
readonly __wbg_set_remoteattachment_nonce: (a: number, b: number, c: number) => void;
|
|
1143
|
-
readonly __wbg_get_remoteattachment_scheme: (a: number) => [number, number];
|
|
1144
|
-
readonly __wbg_set_remoteattachment_scheme: (a: number, b: number, c: number) => void;
|
|
1145
|
-
readonly __wbg_get_remoteattachment_contentLength: (a: number) => bigint;
|
|
1146
|
-
readonly __wbg_set_remoteattachment_contentLength: (a: number, b: bigint) => void;
|
|
1147
|
-
readonly __wbg_get_remoteattachment_filename: (a: number) => [number, number];
|
|
1148
|
-
readonly __wbg_set_remoteattachment_filename: (a: number, b: number, c: number) => void;
|
|
1149
|
-
readonly __wbg_transactionreference_free: (a: number, b: number) => void;
|
|
1150
|
-
readonly __wbg_get_transactionreference_namespace: (a: number) => [number, number];
|
|
1151
|
-
readonly __wbg_set_transactionreference_namespace: (a: number, b: number, c: number) => void;
|
|
1152
|
-
readonly __wbg_get_transactionreference_networkId: (a: number) => [number, number];
|
|
1153
|
-
readonly __wbg_set_transactionreference_networkId: (a: number, b: number, c: number) => void;
|
|
1154
|
-
readonly __wbg_get_transactionreference_reference: (a: number) => [number, number];
|
|
1155
|
-
readonly __wbg_set_transactionreference_reference: (a: number, b: number, c: number) => void;
|
|
1156
|
-
readonly __wbg_get_transactionreference_metadata: (a: number) => number;
|
|
1157
|
-
readonly __wbg_set_transactionreference_metadata: (a: number, b: number) => void;
|
|
1158
|
-
readonly __wbg_transactionmetadata_free: (a: number, b: number) => void;
|
|
1159
|
-
readonly __wbg_get_transactionmetadata_transactionType: (a: number) => [number, number];
|
|
1160
|
-
readonly __wbg_get_transactionmetadata_currency: (a: number) => [number, number];
|
|
1161
|
-
readonly __wbg_get_transactionmetadata_amount: (a: number) => number;
|
|
1162
|
-
readonly __wbg_set_transactionmetadata_amount: (a: number, b: number) => void;
|
|
1163
|
-
readonly __wbg_get_transactionmetadata_decimals: (a: number) => number;
|
|
1164
|
-
readonly __wbg_set_transactionmetadata_decimals: (a: number, b: number) => void;
|
|
1165
|
-
readonly __wbg_get_transactionmetadata_fromAddress: (a: number) => [number, number];
|
|
1166
|
-
readonly __wbg_get_transactionmetadata_toAddress: (a: number) => [number, number];
|
|
1167
966
|
readonly __wbg_sendmessageopts_free: (a: number, b: number) => void;
|
|
1168
967
|
readonly __wbg_get_sendmessageopts_shouldPush: (a: number) => number;
|
|
1169
968
|
readonly __wbg_set_sendmessageopts_shouldPush: (a: number, b: number) => void;
|
|
@@ -1227,27 +1026,47 @@ export interface InitOutput {
|
|
|
1227
1026
|
readonly conversation_findDuplicateDms: (a: number) => any;
|
|
1228
1027
|
readonly conversation_findMessagesV2: (a: number, b: number) => any;
|
|
1229
1028
|
readonly conversation_getLastReadTimes: (a: number) => any;
|
|
1230
|
-
readonly
|
|
1231
|
-
readonly
|
|
1232
|
-
readonly
|
|
1233
|
-
readonly
|
|
1234
|
-
readonly
|
|
1235
|
-
readonly
|
|
1236
|
-
readonly
|
|
1237
|
-
readonly
|
|
1238
|
-
readonly
|
|
1239
|
-
readonly
|
|
1240
|
-
readonly
|
|
1241
|
-
readonly
|
|
1242
|
-
readonly
|
|
1243
|
-
readonly
|
|
1244
|
-
readonly
|
|
1245
|
-
readonly
|
|
1246
|
-
readonly
|
|
1247
|
-
readonly
|
|
1248
|
-
readonly
|
|
1249
|
-
readonly
|
|
1250
|
-
readonly
|
|
1029
|
+
readonly __wbg_listmessagesoptions_free: (a: number, b: number) => void;
|
|
1030
|
+
readonly __wbg_get_listmessagesoptions_contentTypes: (a: number) => [number, number];
|
|
1031
|
+
readonly __wbg_set_listmessagesoptions_contentTypes: (a: number, b: number, c: number) => void;
|
|
1032
|
+
readonly __wbg_get_listmessagesoptions_excludeContentTypes: (a: number) => [number, number];
|
|
1033
|
+
readonly __wbg_set_listmessagesoptions_excludeContentTypes: (a: number, b: number, c: number) => void;
|
|
1034
|
+
readonly __wbg_get_listmessagesoptions_sentBeforeNs: (a: number) => [number, bigint];
|
|
1035
|
+
readonly __wbg_set_listmessagesoptions_sentBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
1036
|
+
readonly __wbg_get_listmessagesoptions_sentAfterNs: (a: number) => [number, bigint];
|
|
1037
|
+
readonly __wbg_set_listmessagesoptions_sentAfterNs: (a: number, b: number, c: bigint) => void;
|
|
1038
|
+
readonly __wbg_get_listmessagesoptions_limit: (a: number) => [number, bigint];
|
|
1039
|
+
readonly __wbg_set_listmessagesoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
1040
|
+
readonly __wbg_get_listmessagesoptions_deliveryStatus: (a: number) => number;
|
|
1041
|
+
readonly __wbg_set_listmessagesoptions_deliveryStatus: (a: number, b: number) => void;
|
|
1042
|
+
readonly __wbg_get_listmessagesoptions_direction: (a: number) => number;
|
|
1043
|
+
readonly __wbg_set_listmessagesoptions_direction: (a: number, b: number) => void;
|
|
1044
|
+
readonly __wbg_get_listmessagesoptions_kind: (a: number) => number;
|
|
1045
|
+
readonly __wbg_set_listmessagesoptions_kind: (a: number, b: number) => void;
|
|
1046
|
+
readonly __wbg_get_listmessagesoptions_excludeSenderInboxIds: (a: number) => [number, number];
|
|
1047
|
+
readonly __wbg_set_listmessagesoptions_excludeSenderInboxIds: (a: number, b: number, c: number) => void;
|
|
1048
|
+
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, l: number, m: number, n: number, o: number) => number;
|
|
1049
|
+
readonly __wbg_message_free: (a: number, b: number) => void;
|
|
1050
|
+
readonly __wbg_get_message_id: (a: number) => [number, number];
|
|
1051
|
+
readonly __wbg_set_message_id: (a: number, b: number, c: number) => void;
|
|
1052
|
+
readonly __wbg_get_message_sentAtNs: (a: number) => bigint;
|
|
1053
|
+
readonly __wbg_set_message_sentAtNs: (a: number, b: bigint) => void;
|
|
1054
|
+
readonly __wbg_get_message_convoId: (a: number) => [number, number];
|
|
1055
|
+
readonly __wbg_set_message_convoId: (a: number, b: number, c: number) => void;
|
|
1056
|
+
readonly __wbg_get_message_senderInboxId: (a: number) => [number, number];
|
|
1057
|
+
readonly __wbg_set_message_senderInboxId: (a: number, b: number, c: number) => void;
|
|
1058
|
+
readonly __wbg_get_message_content: (a: number) => number;
|
|
1059
|
+
readonly __wbg_set_message_content: (a: number, b: number) => void;
|
|
1060
|
+
readonly __wbg_get_message_kind: (a: number) => number;
|
|
1061
|
+
readonly __wbg_set_message_kind: (a: number, b: number) => void;
|
|
1062
|
+
readonly __wbg_get_message_deliveryStatus: (a: number) => number;
|
|
1063
|
+
readonly __wbg_set_message_deliveryStatus: (a: number, b: number) => void;
|
|
1064
|
+
readonly message_new: (a: number, b: number, c: bigint, d: number, e: number, f: number, g: number, h: number, i: number, j: number) => number;
|
|
1065
|
+
readonly __wbg_messagewithreactions_free: (a: number, b: number) => void;
|
|
1066
|
+
readonly __wbg_get_messagewithreactions_message: (a: number) => number;
|
|
1067
|
+
readonly __wbg_set_messagewithreactions_message: (a: number, b: number) => void;
|
|
1068
|
+
readonly __wbg_get_messagewithreactions_reactions: (a: number) => [number, number];
|
|
1069
|
+
readonly __wbg_set_messagewithreactions_reactions: (a: number, b: number, c: number) => void;
|
|
1251
1070
|
readonly __wbg_opfs_free: (a: number, b: number) => void;
|
|
1252
1071
|
readonly opfs_init_sqlite_opfs: () => any;
|
|
1253
1072
|
readonly opfs_exists: () => number;
|
|
@@ -1261,29 +1080,28 @@ export interface InitOutput {
|
|
|
1261
1080
|
readonly opfs_getCapacity: () => number;
|
|
1262
1081
|
readonly opfs_addCapacity: (a: number) => any;
|
|
1263
1082
|
readonly opfs_reduceCapacity: (a: number) => any;
|
|
1264
|
-
readonly __wbg_set_reaction_reference: (a: number, b: number, c: number) => void;
|
|
1265
|
-
readonly __wbg_set_reactionpayload_reference: (a: number, b: number, c: number) => void;
|
|
1266
|
-
readonly __wbg_set_reactionpayload_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
1267
|
-
readonly __wbg_set_reactionpayload_content: (a: number, b: number, c: number) => void;
|
|
1268
|
-
readonly __wbg_set_remoteattachment_contentDigest: (a: number, b: number, c: number) => void;
|
|
1269
|
-
readonly __wbg_set_transactionmetadata_transactionType: (a: number, b: number, c: number) => void;
|
|
1270
|
-
readonly __wbg_set_transactionmetadata_currency: (a: number, b: number, c: number) => void;
|
|
1271
|
-
readonly __wbg_set_transactionmetadata_fromAddress: (a: number, b: number, c: number) => void;
|
|
1272
|
-
readonly __wbg_set_transactionmetadata_toAddress: (a: number, b: number, c: number) => void;
|
|
1273
1083
|
readonly __wbg_set_groupmember_inboxId: (a: number, b: number, c: number) => void;
|
|
1274
|
-
readonly
|
|
1275
|
-
readonly
|
|
1276
|
-
readonly
|
|
1277
|
-
readonly
|
|
1278
|
-
readonly
|
|
1279
|
-
readonly
|
|
1280
|
-
readonly
|
|
1281
|
-
readonly
|
|
1282
|
-
readonly
|
|
1283
|
-
readonly
|
|
1284
|
-
readonly
|
|
1285
|
-
readonly
|
|
1286
|
-
readonly
|
|
1084
|
+
readonly __wbg_permissionpolicyset_free: (a: number, b: number) => void;
|
|
1085
|
+
readonly __wbg_get_permissionpolicyset_addMemberPolicy: (a: number) => number;
|
|
1086
|
+
readonly __wbg_set_permissionpolicyset_addMemberPolicy: (a: number, b: number) => void;
|
|
1087
|
+
readonly __wbg_get_permissionpolicyset_removeMemberPolicy: (a: number) => number;
|
|
1088
|
+
readonly __wbg_set_permissionpolicyset_removeMemberPolicy: (a: number, b: number) => void;
|
|
1089
|
+
readonly __wbg_get_permissionpolicyset_addAdminPolicy: (a: number) => number;
|
|
1090
|
+
readonly __wbg_set_permissionpolicyset_addAdminPolicy: (a: number, b: number) => void;
|
|
1091
|
+
readonly __wbg_get_permissionpolicyset_removeAdminPolicy: (a: number) => number;
|
|
1092
|
+
readonly __wbg_set_permissionpolicyset_removeAdminPolicy: (a: number, b: number) => void;
|
|
1093
|
+
readonly __wbg_get_permissionpolicyset_updateGroupNamePolicy: (a: number) => number;
|
|
1094
|
+
readonly __wbg_set_permissionpolicyset_updateGroupNamePolicy: (a: number, b: number) => void;
|
|
1095
|
+
readonly __wbg_get_permissionpolicyset_updateGroupDescriptionPolicy: (a: number) => number;
|
|
1096
|
+
readonly __wbg_set_permissionpolicyset_updateGroupDescriptionPolicy: (a: number, b: number) => void;
|
|
1097
|
+
readonly __wbg_get_permissionpolicyset_updateGroupImageUrlSquarePolicy: (a: number) => number;
|
|
1098
|
+
readonly __wbg_set_permissionpolicyset_updateGroupImageUrlSquarePolicy: (a: number, b: number) => void;
|
|
1099
|
+
readonly __wbg_get_permissionpolicyset_updateMessageDisappearingPolicy: (a: number) => number;
|
|
1100
|
+
readonly __wbg_set_permissionpolicyset_updateMessageDisappearingPolicy: (a: number, b: number) => void;
|
|
1101
|
+
readonly permissionpolicyset_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
1102
|
+
readonly __wbg_grouppermissions_free: (a: number, b: number) => void;
|
|
1103
|
+
readonly grouppermissions_policyType: (a: number) => [number, number, number];
|
|
1104
|
+
readonly grouppermissions_policySet: (a: number) => [number, number, number];
|
|
1287
1105
|
readonly __wbg_client_free: (a: number, b: number) => void;
|
|
1288
1106
|
readonly __wbg_logoptions_free: (a: number, b: number) => void;
|
|
1289
1107
|
readonly __wbg_get_logoptions_structured: (a: number) => number;
|
|
@@ -1344,51 +1162,234 @@ export interface InitOutput {
|
|
|
1344
1162
|
readonly multiremoteattachment_new: (a: number, b: number) => number;
|
|
1345
1163
|
readonly encodeMultiRemoteAttachment: (a: number) => [number, number, number];
|
|
1346
1164
|
readonly decodeMultiRemoteAttachment: (a: any) => [number, number, number];
|
|
1165
|
+
readonly __wbg_apistats_free: (a: number, b: number) => void;
|
|
1166
|
+
readonly __wbg_get_apistats_upload_key_package: (a: number) => bigint;
|
|
1167
|
+
readonly __wbg_set_apistats_upload_key_package: (a: number, b: bigint) => void;
|
|
1168
|
+
readonly __wbg_get_apistats_fetch_key_package: (a: number) => bigint;
|
|
1169
|
+
readonly __wbg_set_apistats_fetch_key_package: (a: number, b: bigint) => void;
|
|
1170
|
+
readonly __wbg_get_apistats_send_group_messages: (a: number) => bigint;
|
|
1171
|
+
readonly __wbg_set_apistats_send_group_messages: (a: number, b: bigint) => void;
|
|
1172
|
+
readonly __wbg_get_apistats_send_welcome_messages: (a: number) => bigint;
|
|
1173
|
+
readonly __wbg_set_apistats_send_welcome_messages: (a: number, b: bigint) => void;
|
|
1174
|
+
readonly __wbg_get_apistats_query_group_messages: (a: number) => bigint;
|
|
1175
|
+
readonly __wbg_set_apistats_query_group_messages: (a: number, b: bigint) => void;
|
|
1176
|
+
readonly __wbg_get_apistats_query_welcome_messages: (a: number) => bigint;
|
|
1177
|
+
readonly __wbg_set_apistats_query_welcome_messages: (a: number, b: bigint) => void;
|
|
1178
|
+
readonly __wbg_get_apistats_subscribe_messages: (a: number) => bigint;
|
|
1179
|
+
readonly __wbg_set_apistats_subscribe_messages: (a: number, b: bigint) => void;
|
|
1180
|
+
readonly __wbg_get_apistats_subscribe_welcomes: (a: number) => bigint;
|
|
1181
|
+
readonly __wbg_set_apistats_subscribe_welcomes: (a: number, b: bigint) => void;
|
|
1182
|
+
readonly __wbg_identitystats_free: (a: number, b: number) => void;
|
|
1183
|
+
readonly __wbg_set_identitystats_publish_identity_update: (a: number, b: bigint) => void;
|
|
1184
|
+
readonly __wbg_set_identitystats_get_identity_updates_v2: (a: number, b: bigint) => void;
|
|
1185
|
+
readonly __wbg_set_identitystats_get_inbox_ids: (a: number, b: bigint) => void;
|
|
1186
|
+
readonly __wbg_set_identitystats_verify_smart_contract_wallet_signature: (a: number, b: bigint) => void;
|
|
1187
|
+
readonly __wbg_get_identitystats_publish_identity_update: (a: number) => bigint;
|
|
1188
|
+
readonly __wbg_get_identitystats_get_identity_updates_v2: (a: number) => bigint;
|
|
1189
|
+
readonly __wbg_get_identitystats_get_inbox_ids: (a: number) => bigint;
|
|
1190
|
+
readonly __wbg_get_identitystats_verify_smart_contract_wallet_signature: (a: number) => bigint;
|
|
1191
|
+
readonly __wbg_groupupdated_free: (a: number, b: number) => void;
|
|
1192
|
+
readonly __wbg_get_groupupdated_initiatedByInboxId: (a: number) => [number, number];
|
|
1193
|
+
readonly __wbg_get_groupupdated_addedInboxes: (a: number) => [number, number];
|
|
1194
|
+
readonly __wbg_set_groupupdated_addedInboxes: (a: number, b: number, c: number) => void;
|
|
1195
|
+
readonly __wbg_get_groupupdated_removedInboxes: (a: number) => [number, number];
|
|
1196
|
+
readonly __wbg_set_groupupdated_removedInboxes: (a: number, b: number, c: number) => void;
|
|
1197
|
+
readonly __wbg_get_groupupdated_metadataFieldChanges: (a: number) => [number, number];
|
|
1198
|
+
readonly __wbg_set_groupupdated_metadataFieldChanges: (a: number, b: number, c: number) => void;
|
|
1199
|
+
readonly __wbg_inbox_free: (a: number, b: number) => void;
|
|
1200
|
+
readonly __wbg_get_inbox_inboxId: (a: number) => [number, number];
|
|
1201
|
+
readonly __wbg_metadatafieldchange_free: (a: number, b: number) => void;
|
|
1202
|
+
readonly __wbg_get_metadatafieldchange_fieldName: (a: number) => [number, number];
|
|
1203
|
+
readonly __wbg_get_metadatafieldchange_oldValue: (a: number) => [number, number];
|
|
1204
|
+
readonly __wbg_set_metadatafieldchange_oldValue: (a: number, b: number, c: number) => void;
|
|
1205
|
+
readonly __wbg_get_metadatafieldchange_newValue: (a: number) => [number, number];
|
|
1206
|
+
readonly __wbg_set_metadatafieldchange_newValue: (a: number, b: number, c: number) => void;
|
|
1347
1207
|
readonly __wbg_readreceipt_free: (a: number, b: number) => void;
|
|
1348
|
-
readonly
|
|
1349
|
-
readonly
|
|
1350
|
-
readonly
|
|
1351
|
-
readonly
|
|
1352
|
-
readonly
|
|
1353
|
-
readonly
|
|
1354
|
-
readonly
|
|
1355
|
-
readonly
|
|
1356
|
-
readonly
|
|
1357
|
-
readonly
|
|
1358
|
-
readonly
|
|
1359
|
-
readonly
|
|
1360
|
-
readonly
|
|
1361
|
-
readonly
|
|
1362
|
-
readonly
|
|
1363
|
-
readonly
|
|
1364
|
-
readonly
|
|
1365
|
-
readonly
|
|
1366
|
-
readonly
|
|
1367
|
-
readonly
|
|
1368
|
-
readonly
|
|
1369
|
-
readonly
|
|
1370
|
-
readonly
|
|
1371
|
-
readonly
|
|
1372
|
-
readonly
|
|
1373
|
-
readonly
|
|
1374
|
-
readonly
|
|
1375
|
-
readonly
|
|
1376
|
-
readonly
|
|
1377
|
-
readonly
|
|
1378
|
-
readonly
|
|
1379
|
-
readonly
|
|
1380
|
-
readonly
|
|
1381
|
-
readonly
|
|
1382
|
-
readonly
|
|
1383
|
-
readonly
|
|
1384
|
-
readonly
|
|
1385
|
-
readonly
|
|
1386
|
-
readonly
|
|
1387
|
-
readonly
|
|
1388
|
-
readonly
|
|
1389
|
-
readonly
|
|
1390
|
-
readonly
|
|
1391
|
-
readonly
|
|
1208
|
+
readonly __wbg_remoteattachment_free: (a: number, b: number) => void;
|
|
1209
|
+
readonly __wbg_get_remoteattachment_url: (a: number) => [number, number];
|
|
1210
|
+
readonly __wbg_get_remoteattachment_contentDigest: (a: number) => [number, number];
|
|
1211
|
+
readonly __wbg_get_remoteattachment_secret: (a: number) => [number, number];
|
|
1212
|
+
readonly __wbg_get_remoteattachment_salt: (a: number) => [number, number];
|
|
1213
|
+
readonly __wbg_set_remoteattachment_salt: (a: number, b: number, c: number) => void;
|
|
1214
|
+
readonly __wbg_get_remoteattachment_nonce: (a: number) => [number, number];
|
|
1215
|
+
readonly __wbg_set_remoteattachment_nonce: (a: number, b: number, c: number) => void;
|
|
1216
|
+
readonly __wbg_get_remoteattachment_scheme: (a: number) => [number, number];
|
|
1217
|
+
readonly __wbg_set_remoteattachment_scheme: (a: number, b: number, c: number) => void;
|
|
1218
|
+
readonly __wbg_get_remoteattachment_filename: (a: number) => [number, number];
|
|
1219
|
+
readonly __wbg_set_remoteattachment_filename: (a: number, b: number, c: number) => void;
|
|
1220
|
+
readonly __wbg_transactionreference_free: (a: number, b: number) => void;
|
|
1221
|
+
readonly __wbg_get_transactionreference_namespace: (a: number) => [number, number];
|
|
1222
|
+
readonly __wbg_set_transactionreference_namespace: (a: number, b: number, c: number) => void;
|
|
1223
|
+
readonly __wbg_get_transactionreference_networkId: (a: number) => [number, number];
|
|
1224
|
+
readonly __wbg_set_transactionreference_networkId: (a: number, b: number, c: number) => void;
|
|
1225
|
+
readonly __wbg_get_transactionreference_reference: (a: number) => [number, number];
|
|
1226
|
+
readonly __wbg_set_transactionreference_reference: (a: number, b: number, c: number) => void;
|
|
1227
|
+
readonly __wbg_get_transactionreference_metadata: (a: number) => number;
|
|
1228
|
+
readonly __wbg_set_transactionreference_metadata: (a: number, b: number) => void;
|
|
1229
|
+
readonly __wbg_transactionmetadata_free: (a: number, b: number) => void;
|
|
1230
|
+
readonly __wbg_get_transactionmetadata_transactionType: (a: number) => [number, number];
|
|
1231
|
+
readonly __wbg_get_transactionmetadata_currency: (a: number) => [number, number];
|
|
1232
|
+
readonly __wbg_get_transactionmetadata_amount: (a: number) => number;
|
|
1233
|
+
readonly __wbg_set_transactionmetadata_amount: (a: number, b: number) => void;
|
|
1234
|
+
readonly __wbg_get_transactionmetadata_decimals: (a: number) => number;
|
|
1235
|
+
readonly __wbg_set_transactionmetadata_decimals: (a: number, b: number) => void;
|
|
1236
|
+
readonly __wbg_get_transactionmetadata_fromAddress: (a: number) => [number, number];
|
|
1237
|
+
readonly __wbg_get_transactionmetadata_toAddress: (a: number) => [number, number];
|
|
1238
|
+
readonly __wbg_listconversationsoptions_free: (a: number, b: number) => void;
|
|
1239
|
+
readonly __wbg_get_listconversationsoptions_consentStates: (a: number) => [number, number];
|
|
1240
|
+
readonly __wbg_set_listconversationsoptions_consentStates: (a: number, b: number, c: number) => void;
|
|
1241
|
+
readonly __wbg_get_listconversationsoptions_conversationType: (a: number) => number;
|
|
1242
|
+
readonly __wbg_set_listconversationsoptions_conversationType: (a: number, b: number) => void;
|
|
1243
|
+
readonly __wbg_get_listconversationsoptions_createdBeforeNs: (a: number) => [number, bigint];
|
|
1244
|
+
readonly __wbg_set_listconversationsoptions_createdBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
1245
|
+
readonly __wbg_get_listconversationsoptions_includeDuplicateDms: (a: number) => number;
|
|
1246
|
+
readonly __wbg_set_listconversationsoptions_includeDuplicateDms: (a: number, b: number) => void;
|
|
1247
|
+
readonly __wbg_get_listconversationsoptions_limit: (a: number) => [number, bigint];
|
|
1248
|
+
readonly __wbg_set_listconversationsoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
1249
|
+
readonly listconversationsoptions_new: (a: number, b: number, c: number, d: number, e: bigint, f: number, g: bigint, h: number, i: number, j: bigint) => number;
|
|
1250
|
+
readonly messagedisappearingsettings_new: (a: bigint, b: bigint) => number;
|
|
1251
|
+
readonly __wbg_xmtpcursor_free: (a: number, b: number) => void;
|
|
1252
|
+
readonly __wbg_get_xmtpcursor_originator_id: (a: number) => number;
|
|
1253
|
+
readonly __wbg_set_xmtpcursor_originator_id: (a: number, b: number) => void;
|
|
1254
|
+
readonly __wbg_conversationdebuginfo_free: (a: number, b: number) => void;
|
|
1255
|
+
readonly __wbg_get_conversationdebuginfo_epoch: (a: number) => bigint;
|
|
1256
|
+
readonly __wbg_set_conversationdebuginfo_epoch: (a: number, b: bigint) => void;
|
|
1257
|
+
readonly __wbg_get_conversationdebuginfo_maybeForked: (a: number) => number;
|
|
1258
|
+
readonly __wbg_set_conversationdebuginfo_maybeForked: (a: number, b: number) => void;
|
|
1259
|
+
readonly __wbg_get_conversationdebuginfo_forkDetails: (a: number) => [number, number];
|
|
1260
|
+
readonly __wbg_set_conversationdebuginfo_forkDetails: (a: number, b: number, c: number) => void;
|
|
1261
|
+
readonly __wbg_get_conversationdebuginfo_isCommitLogForked: (a: number) => number;
|
|
1262
|
+
readonly __wbg_set_conversationdebuginfo_isCommitLogForked: (a: number, b: number) => void;
|
|
1263
|
+
readonly __wbg_get_conversationdebuginfo_localCommitLog: (a: number) => [number, number];
|
|
1264
|
+
readonly __wbg_set_conversationdebuginfo_localCommitLog: (a: number, b: number, c: number) => void;
|
|
1265
|
+
readonly __wbg_get_conversationdebuginfo_remoteCommitLog: (a: number) => [number, number];
|
|
1266
|
+
readonly __wbg_set_conversationdebuginfo_remoteCommitLog: (a: number, b: number, c: number) => void;
|
|
1267
|
+
readonly __wbg_get_conversationdebuginfo_cursor: (a: number) => [number, number];
|
|
1268
|
+
readonly __wbg_set_conversationdebuginfo_cursor: (a: number, b: number, c: number) => void;
|
|
1269
|
+
readonly __wbg_creategroupoptions_free: (a: number, b: number) => void;
|
|
1270
|
+
readonly __wbg_get_creategroupoptions_permissions: (a: number) => number;
|
|
1271
|
+
readonly __wbg_set_creategroupoptions_permissions: (a: number, b: number) => void;
|
|
1272
|
+
readonly __wbg_get_creategroupoptions_groupName: (a: number) => [number, number];
|
|
1273
|
+
readonly __wbg_set_creategroupoptions_groupName: (a: number, b: number, c: number) => void;
|
|
1274
|
+
readonly __wbg_get_creategroupoptions_groupImageUrlSquare: (a: number) => [number, number];
|
|
1275
|
+
readonly __wbg_set_creategroupoptions_groupImageUrlSquare: (a: number, b: number, c: number) => void;
|
|
1276
|
+
readonly __wbg_get_creategroupoptions_groupDescription: (a: number) => [number, number];
|
|
1277
|
+
readonly __wbg_set_creategroupoptions_groupDescription: (a: number, b: number, c: number) => void;
|
|
1278
|
+
readonly __wbg_get_creategroupoptions_customPermissionPolicySet: (a: number) => number;
|
|
1279
|
+
readonly __wbg_set_creategroupoptions_customPermissionPolicySet: (a: number, b: number) => void;
|
|
1280
|
+
readonly creategroupoptions_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => number;
|
|
1281
|
+
readonly __wbg_createdmoptions_free: (a: number, b: number) => void;
|
|
1282
|
+
readonly __wbg_get_createdmoptions_messageDisappearingSettings: (a: number) => number;
|
|
1283
|
+
readonly __wbg_set_createdmoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
1284
|
+
readonly createdmoptions_new: (a: number) => number;
|
|
1285
|
+
readonly __wbg_hmackey_free: (a: number, b: number) => void;
|
|
1286
|
+
readonly __wbg_get_hmackey_key: (a: number) => [number, number];
|
|
1287
|
+
readonly __wbg_conversationlistitem_free: (a: number, b: number) => void;
|
|
1288
|
+
readonly __wbg_get_conversationlistitem_conversation: (a: number) => number;
|
|
1289
|
+
readonly __wbg_set_conversationlistitem_conversation: (a: number, b: number) => void;
|
|
1290
|
+
readonly __wbg_get_conversationlistitem_lastMessage: (a: number) => number;
|
|
1291
|
+
readonly __wbg_set_conversationlistitem_lastMessage: (a: number, b: number) => void;
|
|
1292
|
+
readonly __wbg_get_conversationlistitem_isCommitLogForked: (a: number) => number;
|
|
1293
|
+
readonly __wbg_set_conversationlistitem_isCommitLogForked: (a: number, b: number) => void;
|
|
1294
|
+
readonly conversationlistitem_new: (a: number, b: number, c: number) => number;
|
|
1295
|
+
readonly __wbg_conversations_free: (a: number, b: number) => void;
|
|
1296
|
+
readonly conversations_createGroupOptimistic: (a: number, b: number) => [number, number, number];
|
|
1297
|
+
readonly conversations_createGroup: (a: number, b: number, c: number, d: number) => any;
|
|
1298
|
+
readonly conversations_createGroupByInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
1299
|
+
readonly conversations_createDm: (a: number, b: any, c: number) => any;
|
|
1300
|
+
readonly conversations_createDmByInboxId: (a: number, b: number, c: number, d: number) => any;
|
|
1301
|
+
readonly conversations_findGroupById: (a: number, b: number, c: number) => [number, number, number];
|
|
1302
|
+
readonly conversations_findDmByTargetInboxId: (a: number, b: number, c: number) => [number, number, number];
|
|
1303
|
+
readonly conversations_findMessageById: (a: number, b: number, c: number) => [number, number, number];
|
|
1304
|
+
readonly conversations_sync: (a: number) => any;
|
|
1305
|
+
readonly conversations_syncAllConversations: (a: number, b: number, c: number) => any;
|
|
1306
|
+
readonly conversations_list: (a: number, b: number) => [number, number, number];
|
|
1307
|
+
readonly conversations_getHmacKeys: (a: number) => [number, number, number];
|
|
1308
|
+
readonly conversations_streamLocal: (a: number, b: number) => any;
|
|
1309
|
+
readonly conversations_stream: (a: number, b: any, c: number) => [number, number, number];
|
|
1310
|
+
readonly conversations_streamAllMessages: (a: number, b: any, c: number, d: number, e: number) => [number, number, number];
|
|
1311
|
+
readonly conversations_streamConsent: (a: number, b: any) => [number, number, number];
|
|
1312
|
+
readonly conversations_streamPreferences: (a: number, b: any) => [number, number, number];
|
|
1313
|
+
readonly __wbg_contenttypeid_free: (a: number, b: number) => void;
|
|
1314
|
+
readonly __wbg_get_contenttypeid_authorityId: (a: number) => [number, number];
|
|
1315
|
+
readonly __wbg_set_contenttypeid_authorityId: (a: number, b: number, c: number) => void;
|
|
1316
|
+
readonly __wbg_get_contenttypeid_typeId: (a: number) => [number, number];
|
|
1317
|
+
readonly __wbg_set_contenttypeid_typeId: (a: number, b: number, c: number) => void;
|
|
1318
|
+
readonly __wbg_get_contenttypeid_versionMajor: (a: number) => number;
|
|
1319
|
+
readonly __wbg_set_contenttypeid_versionMajor: (a: number, b: number) => void;
|
|
1320
|
+
readonly __wbg_get_contenttypeid_versionMinor: (a: number) => number;
|
|
1321
|
+
readonly __wbg_set_contenttypeid_versionMinor: (a: number, b: number) => void;
|
|
1322
|
+
readonly contenttypeid_new: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
1323
|
+
readonly __wbg_encodedcontent_free: (a: number, b: number) => void;
|
|
1324
|
+
readonly __wbg_get_encodedcontent_type: (a: number) => number;
|
|
1325
|
+
readonly __wbg_set_encodedcontent_type: (a: number, b: number) => void;
|
|
1326
|
+
readonly __wbg_get_encodedcontent_parameters: (a: number) => any;
|
|
1327
|
+
readonly __wbg_set_encodedcontent_parameters: (a: number, b: any) => void;
|
|
1328
|
+
readonly __wbg_get_encodedcontent_fallback: (a: number) => [number, number];
|
|
1329
|
+
readonly __wbg_set_encodedcontent_fallback: (a: number, b: number, c: number) => void;
|
|
1330
|
+
readonly __wbg_get_encodedcontent_compression: (a: number) => number;
|
|
1331
|
+
readonly __wbg_set_encodedcontent_compression: (a: number, b: number) => void;
|
|
1332
|
+
readonly __wbg_get_encodedcontent_content: (a: number) => any;
|
|
1333
|
+
readonly __wbg_set_encodedcontent_content: (a: number, b: any) => void;
|
|
1334
|
+
readonly encodedcontent_new: (a: number, b: any, c: number, d: number, e: number, f: any) => number;
|
|
1335
|
+
readonly __wbg_installation_free: (a: number, b: number) => void;
|
|
1336
|
+
readonly __wbg_get_installation_bytes: (a: number) => any;
|
|
1337
|
+
readonly __wbg_set_installation_bytes: (a: number, b: any) => void;
|
|
1338
|
+
readonly __wbg_get_installation_id: (a: number) => [number, number];
|
|
1339
|
+
readonly __wbg_set_installation_id: (a: number, b: number, c: number) => void;
|
|
1340
|
+
readonly __wbg_get_installation_clientTimestampNs: (a: number) => [number, bigint];
|
|
1341
|
+
readonly __wbg_set_installation_clientTimestampNs: (a: number, b: number, c: bigint) => void;
|
|
1342
|
+
readonly installation_new: (a: any, b: number, c: number, d: number, e: bigint) => number;
|
|
1343
|
+
readonly __wbg_inboxstate_free: (a: number, b: number) => void;
|
|
1344
|
+
readonly __wbg_get_inboxstate_inboxId: (a: number) => [number, number];
|
|
1345
|
+
readonly __wbg_get_inboxstate_recoveryIdentifier: (a: number) => any;
|
|
1346
|
+
readonly __wbg_set_inboxstate_recoveryIdentifier: (a: number, b: any) => void;
|
|
1347
|
+
readonly __wbg_get_inboxstate_installations: (a: number) => [number, number];
|
|
1348
|
+
readonly __wbg_set_inboxstate_installations: (a: number, b: number, c: number) => void;
|
|
1349
|
+
readonly __wbg_get_inboxstate_accountIdentifiers: (a: number) => [number, number];
|
|
1350
|
+
readonly __wbg_set_inboxstate_accountIdentifiers: (a: number, b: number, c: number) => void;
|
|
1351
|
+
readonly inboxstate_new: (a: number, b: number, c: any, d: number, e: number, f: number, g: number) => number;
|
|
1352
|
+
readonly __wbg_keypackagestatus_free: (a: number, b: number) => void;
|
|
1353
|
+
readonly __wbg_get_keypackagestatus_validationError: (a: number) => [number, number];
|
|
1354
|
+
readonly __wbg_set_keypackagestatus_validationError: (a: number, b: number, c: number) => void;
|
|
1355
|
+
readonly __wbg_lifetime_free: (a: number, b: number) => void;
|
|
1356
|
+
readonly __wbg_get_lifetime_not_after: (a: number) => bigint;
|
|
1357
|
+
readonly __wbg_set_lifetime_not_after: (a: number, b: bigint) => void;
|
|
1358
|
+
readonly inboxStateFromInboxIds: (a: number, b: number, c: number, d: number, e: number, f: number) => any;
|
|
1359
|
+
readonly client_inboxState: (a: number, b: number) => any;
|
|
1360
|
+
readonly client_getLatestInboxState: (a: number, b: number, c: number) => any;
|
|
1361
|
+
readonly client_getKeyPackageStatusesForInstallationIds: (a: number, b: number, c: number) => any;
|
|
1362
|
+
readonly __wbg_get_creategroupoptions_messageDisappearingSettings: (a: number) => number;
|
|
1363
|
+
readonly __wbg_set_inbox_inboxId: (a: number, b: number, c: number) => void;
|
|
1364
|
+
readonly __wbg_set_metadatafieldchange_fieldName: (a: number, b: number, c: number) => void;
|
|
1365
|
+
readonly __wbg_set_transactionmetadata_transactionType: (a: number, b: number, c: number) => void;
|
|
1366
|
+
readonly __wbg_set_transactionmetadata_currency: (a: number, b: number, c: number) => void;
|
|
1367
|
+
readonly __wbg_set_transactionmetadata_fromAddress: (a: number, b: number, c: number) => void;
|
|
1368
|
+
readonly __wbg_set_transactionmetadata_toAddress: (a: number, b: number, c: number) => void;
|
|
1369
|
+
readonly __wbg_set_remoteattachment_url: (a: number, b: number, c: number) => void;
|
|
1370
|
+
readonly __wbg_set_remoteattachment_contentDigest: (a: number, b: number, c: number) => void;
|
|
1371
|
+
readonly __wbg_set_remoteattachment_secret: (a: number, b: number, c: number) => void;
|
|
1372
|
+
readonly __wbg_set_hmackey_key: (a: number, b: number, c: number) => void;
|
|
1373
|
+
readonly __wbg_set_groupupdated_initiatedByInboxId: (a: number, b: number, c: number) => void;
|
|
1374
|
+
readonly __wbg_set_inboxstate_inboxId: (a: number, b: number, c: number) => void;
|
|
1375
|
+
readonly __wbg_set_remoteattachment_contentLength: (a: number, b: bigint) => void;
|
|
1376
|
+
readonly __wbg_set_xmtpcursor_sequence_id: (a: number, b: bigint) => void;
|
|
1377
|
+
readonly __wbg_set_messagedisappearingsettings_fromNs: (a: number, b: bigint) => void;
|
|
1378
|
+
readonly __wbg_set_hmackey_epoch: (a: number, b: bigint) => void;
|
|
1379
|
+
readonly __wbg_set_lifetime_not_before: (a: number, b: bigint) => void;
|
|
1380
|
+
readonly __wbg_set_messagedisappearingsettings_inNs: (a: number, b: bigint) => void;
|
|
1381
|
+
readonly __wbg_set_creategroupoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
1382
|
+
readonly __wbg_get_listconversationsoptions_createdAfterNs: (a: number) => [number, bigint];
|
|
1383
|
+
readonly __wbg_get_remoteattachment_contentLength: (a: number) => bigint;
|
|
1384
|
+
readonly __wbg_get_xmtpcursor_sequence_id: (a: number) => bigint;
|
|
1385
|
+
readonly __wbg_get_messagedisappearingsettings_fromNs: (a: number) => bigint;
|
|
1386
|
+
readonly __wbg_get_hmackey_epoch: (a: number) => bigint;
|
|
1387
|
+
readonly __wbg_get_lifetime_not_before: (a: number) => bigint;
|
|
1388
|
+
readonly __wbg_get_messagedisappearingsettings_inNs: (a: number) => bigint;
|
|
1389
|
+
readonly __wbg_set_listconversationsoptions_createdAfterNs: (a: number, b: number, c: bigint) => void;
|
|
1390
|
+
readonly __wbg_set_keypackagestatus_lifetime: (a: number, b: number) => void;
|
|
1391
|
+
readonly __wbg_messagedisappearingsettings_free: (a: number, b: number) => void;
|
|
1392
|
+
readonly __wbg_get_keypackagestatus_lifetime: (a: number) => number;
|
|
1392
1393
|
readonly rust_zstd_wasm_shim_qsort: (a: number, b: number, c: number, d: number) => void;
|
|
1393
1394
|
readonly rust_zstd_wasm_shim_malloc: (a: number) => number;
|
|
1394
1395
|
readonly rust_zstd_wasm_shim_memcmp: (a: number, b: number, c: number) => number;
|
|
@@ -1432,10 +1433,10 @@ export interface InitOutput {
|
|
|
1432
1433
|
readonly __wbindgen_export_7: WebAssembly.Table;
|
|
1433
1434
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
1434
1435
|
readonly wasm_bindgen__convert__closures_____invoke__h8d2688e22b07e25f: (a: number, b: number) => void;
|
|
1435
|
-
readonly closure6985_externref_shim: (a: number, b: number, c: any) => void;
|
|
1436
|
-
readonly wasm_bindgen__convert__closures_____invoke__h6553f0a100c562a9: (a: number, b: number) => void;
|
|
1437
1436
|
readonly wasm_bindgen__convert__closures_____invoke__h040a93cf6078a98e: (a: number, b: number) => void;
|
|
1438
|
-
readonly
|
|
1437
|
+
readonly wasm_bindgen__convert__closures_____invoke__h6553f0a100c562a9: (a: number, b: number) => void;
|
|
1438
|
+
readonly closure7152_externref_shim: (a: number, b: number, c: any) => void;
|
|
1439
|
+
readonly closure8118_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
1439
1440
|
readonly __wbindgen_start: () => void;
|
|
1440
1441
|
}
|
|
1441
1442
|
|