@xmtp/wasm-bindings 1.6.2 → 1.6.8
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 +562 -497
- package/dist/bindings_wasm.js +653 -292
- package/dist/bindings_wasm_bg.wasm +0 -0
- package/dist/bindings_wasm_bg.wasm.d.ts +453 -421
- package/package.json +1 -1
package/dist/bindings_wasm.d.ts
CHANGED
|
@@ -1,22 +1,37 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
+
export function verifySignedWithPublicKey(signature_text: string, signature_bytes: Uint8Array, public_key: Uint8Array): void;
|
|
4
|
+
export function revokeInstallationsSignatureRequest(v3_host: string, gateway_host: string | null | undefined, recovery_identifier: Identifier, inbox_id: string, installation_ids: Uint8Array[]): SignatureRequestHandle;
|
|
5
|
+
export function applySignatureRequest(v3_host: string, gateway_host: string | null | undefined, signature_request: SignatureRequestHandle): Promise<void>;
|
|
3
6
|
export function inboxStateFromInboxIds(v3_host: string, gateway_host: string | null | undefined, inbox_ids: string[]): Promise<InboxState[]>;
|
|
4
|
-
export function
|
|
5
|
-
export function
|
|
6
|
-
export function encodeActions(actions: Actions): Uint8Array;
|
|
7
|
-
export function decodeActions(bytes: Uint8Array): Actions;
|
|
8
|
-
export function encodeMultiRemoteAttachment(multiRemoteAttachment: MultiRemoteAttachment): Uint8Array;
|
|
7
|
+
export function decodeLeaveRequest(bytes: Uint8Array): LeaveRequest;
|
|
8
|
+
export function encodeLeaveRequest(leaveRequest: LeaveRequest): Uint8Array;
|
|
9
9
|
export function decodeMultiRemoteAttachment(bytes: Uint8Array): MultiRemoteAttachment;
|
|
10
|
-
export function
|
|
11
|
-
export function
|
|
12
|
-
export function
|
|
13
|
-
export function revokeInstallationsSignatureRequest(v3_host: string, gateway_host: string | null | undefined, recovery_identifier: Identifier, inbox_id: string, installation_ids: Uint8Array[]): SignatureRequestHandle;
|
|
14
|
-
export function verifySignedWithPublicKey(signature_text: string, signature_bytes: Uint8Array, public_key: Uint8Array): void;
|
|
15
|
-
export function encodeIntent(intent: Intent): Uint8Array;
|
|
16
|
-
export function decodeIntent(bytes: Uint8Array): Intent;
|
|
10
|
+
export function encodeMultiRemoteAttachment(multiRemoteAttachment: MultiRemoteAttachment): Uint8Array;
|
|
11
|
+
export function decodeActions(bytes: Uint8Array): Actions;
|
|
12
|
+
export function encodeActions(actions: Actions): Uint8Array;
|
|
17
13
|
export function encodeReaction(reaction: Reaction): Uint8Array;
|
|
18
14
|
export function decodeReaction(bytes: Uint8Array): Reaction;
|
|
19
15
|
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, nonce?: bigint | null, auth_callback?: any | null, auth_handle?: AuthHandle | null, client_mode?: ClientMode | null): Promise<Client>;
|
|
16
|
+
export function generateInboxId(accountIdentifier: Identifier, nonce?: bigint | null): string;
|
|
17
|
+
export function getInboxIdForIdentifier(host: string, gatewayHost: string | null | undefined, accountIdentifier: Identifier): Promise<string | undefined>;
|
|
18
|
+
export function decodeGroupUpdated(bytes: Uint8Array): GroupUpdated;
|
|
19
|
+
export function decodeWalletSendCalls(bytes: Uint8Array): any;
|
|
20
|
+
export function encodeWalletSendCalls(wallet_send_calls: any): Uint8Array;
|
|
21
|
+
export function decodeXmtpText(bytes: Uint8Array): string;
|
|
22
|
+
export function encodeXmtpText(text: string): Uint8Array;
|
|
23
|
+
export function encodeAttachment(attachment: Attachment): Uint8Array;
|
|
24
|
+
export function decodeAttachment(bytes: Uint8Array): Attachment;
|
|
25
|
+
export function decodeReadReceipt(bytes: Uint8Array): ReadReceipt;
|
|
26
|
+
export function encodeReadReceipt(readReceipt: ReadReceipt): Uint8Array;
|
|
27
|
+
export function encodeRemoteAttachment(remoteAttachment: RemoteAttachment): Uint8Array;
|
|
28
|
+
export function decodeRemoteAttachment(bytes: Uint8Array): RemoteAttachment;
|
|
29
|
+
export function decodeTransactionReference(bytes: Uint8Array): TransactionReference;
|
|
30
|
+
export function encodeTransactionReference(transactionReference: TransactionReference): Uint8Array;
|
|
31
|
+
export function encodeReply(reply: Reply): Uint8Array;
|
|
32
|
+
export function decodeReply(bytes: Uint8Array): Reply;
|
|
33
|
+
export function decodeIntent(bytes: Uint8Array): Intent;
|
|
34
|
+
export function encodeIntent(intent: Intent): Uint8Array;
|
|
20
35
|
/**
|
|
21
36
|
* Entry point invoked by JavaScript in a worker.
|
|
22
37
|
*/
|
|
@@ -42,14 +57,15 @@ export enum ConsentState {
|
|
|
42
57
|
export enum ContentType {
|
|
43
58
|
Unknown = 0,
|
|
44
59
|
Text = 1,
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
60
|
+
LeaveRequest = 2,
|
|
61
|
+
GroupMembershipChange = 3,
|
|
62
|
+
GroupUpdated = 4,
|
|
63
|
+
Reaction = 5,
|
|
64
|
+
ReadReceipt = 6,
|
|
65
|
+
Reply = 7,
|
|
66
|
+
Attachment = 8,
|
|
67
|
+
RemoteAttachment = 9,
|
|
68
|
+
TransactionReference = 10,
|
|
53
69
|
}
|
|
54
70
|
export enum ConversationType {
|
|
55
71
|
Dm = 0,
|
|
@@ -103,10 +119,11 @@ export enum PayloadType {
|
|
|
103
119
|
TransactionReference = 6,
|
|
104
120
|
GroupUpdated = 7,
|
|
105
121
|
ReadReceipt = 8,
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
122
|
+
LeaveRequest = 9,
|
|
123
|
+
WalletSendCalls = 10,
|
|
124
|
+
Intent = 11,
|
|
125
|
+
Actions = 12,
|
|
126
|
+
Custom = 13,
|
|
110
127
|
}
|
|
111
128
|
export enum PermissionLevel {
|
|
112
129
|
Member = 0,
|
|
@@ -162,8 +179,6 @@ type LogLevel = "off" | "error" | "warn" | "info" | "debug" | "trace";
|
|
|
162
179
|
* *This API requires the following crate features to be activated: `ReadableStreamType`*
|
|
163
180
|
*/
|
|
164
181
|
type ReadableStreamType = "bytes";
|
|
165
|
-
export type UserPreference = { type: "Consent"; consent: Consent } | { type: "HmacKeyUpdate"; key: number[] };
|
|
166
|
-
|
|
167
182
|
export type IdentifierKind = "Ethereum" | "Passkey";
|
|
168
183
|
|
|
169
184
|
export interface Identifier {
|
|
@@ -171,6 +186,8 @@ export interface Identifier {
|
|
|
171
186
|
identifierKind: IdentifierKind;
|
|
172
187
|
}
|
|
173
188
|
|
|
189
|
+
export type UserPreference = { type: "Consent"; consent: Consent } | { type: "HmacKeyUpdate"; key: number[] };
|
|
190
|
+
|
|
174
191
|
export class Action {
|
|
175
192
|
free(): void;
|
|
176
193
|
[Symbol.dispose](): void;
|
|
@@ -229,6 +246,16 @@ export class Client {
|
|
|
229
246
|
private constructor();
|
|
230
247
|
free(): void;
|
|
231
248
|
[Symbol.dispose](): void;
|
|
249
|
+
registerIdentity(signature_request: SignatureRequestHandle): Promise<void>;
|
|
250
|
+
applySignatureRequest(signature_request: SignatureRequestHandle): Promise<void>;
|
|
251
|
+
signWithInstallationKey(signature_text: string): Uint8Array;
|
|
252
|
+
createInboxSignatureRequest(): SignatureRequestHandle | undefined;
|
|
253
|
+
addWalletSignatureRequest(new_identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
254
|
+
revokeWalletSignatureRequest(identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
255
|
+
verifySignedWithInstallationKey(signature_text: string, signature_bytes: Uint8Array): void;
|
|
256
|
+
revokeInstallationsSignatureRequest(installation_ids: Uint8Array[]): Promise<SignatureRequestHandle>;
|
|
257
|
+
changeRecoveryIdentifierSignatureRequest(new_recovery_identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
258
|
+
revokeAllOtherInstallationsSignatureRequest(): Promise<SignatureRequestHandle | undefined>;
|
|
232
259
|
/**
|
|
233
260
|
*
|
|
234
261
|
* * Get the client's inbox state.
|
|
@@ -247,16 +274,6 @@ export class Client {
|
|
|
247
274
|
*
|
|
248
275
|
*/
|
|
249
276
|
getKeyPackageStatusesForInstallationIds(installation_ids: string[]): Promise<any>;
|
|
250
|
-
registerIdentity(signature_request: SignatureRequestHandle): Promise<void>;
|
|
251
|
-
applySignatureRequest(signature_request: SignatureRequestHandle): Promise<void>;
|
|
252
|
-
signWithInstallationKey(signature_text: string): Uint8Array;
|
|
253
|
-
createInboxSignatureRequest(): SignatureRequestHandle | undefined;
|
|
254
|
-
addWalletSignatureRequest(new_identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
255
|
-
revokeWalletSignatureRequest(identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
256
|
-
verifySignedWithInstallationKey(signature_text: string, signature_bytes: Uint8Array): void;
|
|
257
|
-
revokeInstallationsSignatureRequest(installation_ids: Uint8Array[]): Promise<SignatureRequestHandle>;
|
|
258
|
-
changeRecoveryIdentifierSignatureRequest(new_recovery_identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
259
|
-
revokeAllOtherInstallationsSignatureRequest(): Promise<SignatureRequestHandle | undefined>;
|
|
260
277
|
getConsentState(entity_type: ConsentEntityType, entity: string): Promise<ConsentState>;
|
|
261
278
|
setConsentStates(records: Consent[]): Promise<void>;
|
|
262
279
|
/**
|
|
@@ -304,10 +321,13 @@ export class Conversation {
|
|
|
304
321
|
private constructor();
|
|
305
322
|
free(): void;
|
|
306
323
|
[Symbol.dispose](): void;
|
|
324
|
+
consentState(): ConsentState;
|
|
325
|
+
updateConsentState(state: ConsentState): void;
|
|
307
326
|
adminList(): string[];
|
|
308
327
|
getDebugInfo(): Promise<any>;
|
|
309
328
|
groupName(): string;
|
|
310
329
|
addMembers(account_identifiers: Identifier[]): Promise<void>;
|
|
330
|
+
leaveGroup(): Promise<void>;
|
|
311
331
|
listMembers(): Promise<any>;
|
|
312
332
|
removeAdmin(inbox_id: string): Promise<void>;
|
|
313
333
|
createdAtNs(): bigint;
|
|
@@ -324,13 +344,13 @@ export class Conversation {
|
|
|
324
344
|
sendOptimistic(encoded_content: EncodedContent, opts: SendMessageOpts): string;
|
|
325
345
|
updateAppData(app_data: string): Promise<void>;
|
|
326
346
|
dmPeerInboxId(): string;
|
|
347
|
+
membershipState(): GroupMembershipState;
|
|
327
348
|
/**
|
|
328
349
|
* Publish all unpublished messages
|
|
329
350
|
*/
|
|
330
351
|
publishMessages(): Promise<void>;
|
|
331
352
|
superAdminList(): string[];
|
|
332
353
|
addedByInboxId(): string;
|
|
333
|
-
findMessagesV2(opts?: ListMessagesOptions | null): Promise<DecodedMessage[]>;
|
|
334
354
|
groupDescription(): string;
|
|
335
355
|
groupPermissions(): GroupPermissions;
|
|
336
356
|
updateGroupName(group_name: string): Promise<void>;
|
|
@@ -338,6 +358,7 @@ export class Conversation {
|
|
|
338
358
|
pausedForVersion(): string | undefined;
|
|
339
359
|
removeSuperAdmin(inbox_id: string): Promise<void>;
|
|
340
360
|
getLastReadTimes(): Promise<any>;
|
|
361
|
+
findEnrichedMessages(opts?: ListMessagesOptions | null): Promise<DecodedMessage[]>;
|
|
341
362
|
groupImageUrlSquare(): string;
|
|
342
363
|
addMembersByInboxId(inbox_ids: string[]): Promise<void>;
|
|
343
364
|
updateGroupDescription(group_description: string): Promise<void>;
|
|
@@ -347,6 +368,7 @@ export class Conversation {
|
|
|
347
368
|
messageDisappearingSettings(): MessageDisappearingSettings | undefined;
|
|
348
369
|
updateGroupImageUrlSquare(group_image_url_square: string): Promise<void>;
|
|
349
370
|
id(): string;
|
|
371
|
+
processStreamedGroupMessage(envelope_bytes: Uint8Array): Promise<Message>;
|
|
350
372
|
isMessageDisappearingEnabled(): boolean;
|
|
351
373
|
removeMessageDisappearingSettings(): Promise<void>;
|
|
352
374
|
updateMessageDisappearingSettings(settings: MessageDisappearingSettings): Promise<void>;
|
|
@@ -357,8 +379,6 @@ export class Conversation {
|
|
|
357
379
|
isAdmin(inbox_id: string): boolean;
|
|
358
380
|
addAdmin(inbox_id: string): Promise<void>;
|
|
359
381
|
isActive(): boolean;
|
|
360
|
-
consentState(): ConsentState;
|
|
361
|
-
updateConsentState(state: ConsentState): void;
|
|
362
382
|
}
|
|
363
383
|
export class ConversationDebugInfo {
|
|
364
384
|
private constructor();
|
|
@@ -467,6 +487,7 @@ export class DecodedMessageContent {
|
|
|
467
487
|
asAttachment(): Attachment | undefined;
|
|
468
488
|
asReadReceipt(): ReadReceipt | undefined;
|
|
469
489
|
asGroupUpdated(): GroupUpdated | undefined;
|
|
490
|
+
asLeaveRequest(): LeaveRequest | undefined;
|
|
470
491
|
asRemoteAttachment(): RemoteAttachment | undefined;
|
|
471
492
|
asWalletSendCalls(): any;
|
|
472
493
|
asTransactionReference(): TransactionReference | undefined;
|
|
@@ -536,7 +557,12 @@ export class GroupUpdated {
|
|
|
536
557
|
initiatedByInboxId: string;
|
|
537
558
|
addedInboxes: Inbox[];
|
|
538
559
|
removedInboxes: Inbox[];
|
|
560
|
+
leftInboxes: Inbox[];
|
|
539
561
|
metadataFieldChanges: MetadataFieldChange[];
|
|
562
|
+
addedAdminInboxes: Inbox[];
|
|
563
|
+
removedAdminInboxes: Inbox[];
|
|
564
|
+
addedSuperAdminInboxes: Inbox[];
|
|
565
|
+
removedSuperAdminInboxes: Inbox[];
|
|
540
566
|
}
|
|
541
567
|
export class HmacKey {
|
|
542
568
|
private constructor();
|
|
@@ -620,6 +646,13 @@ export class KeyPackageStatus {
|
|
|
620
646
|
get validationError(): string | undefined;
|
|
621
647
|
set validationError(value: string | null | undefined);
|
|
622
648
|
}
|
|
649
|
+
export class LeaveRequest {
|
|
650
|
+
private constructor();
|
|
651
|
+
free(): void;
|
|
652
|
+
[Symbol.dispose](): void;
|
|
653
|
+
get authenticatedNote(): Uint8Array | undefined;
|
|
654
|
+
set authenticatedNote(value: Uint8Array | null | undefined);
|
|
655
|
+
}
|
|
623
656
|
export class Lifetime {
|
|
624
657
|
private constructor();
|
|
625
658
|
free(): void;
|
|
@@ -838,7 +871,7 @@ export class RemoteAttachment {
|
|
|
838
871
|
salt: Uint8Array;
|
|
839
872
|
nonce: Uint8Array;
|
|
840
873
|
scheme: string;
|
|
841
|
-
contentLength:
|
|
874
|
+
contentLength: number;
|
|
842
875
|
get filename(): string | undefined;
|
|
843
876
|
set filename(value: string | null | undefined);
|
|
844
877
|
}
|
|
@@ -942,19 +975,13 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
942
975
|
|
|
943
976
|
export interface InitOutput {
|
|
944
977
|
readonly memory: WebAssembly.Memory;
|
|
945
|
-
readonly __wbg_authhandle_free: (a: number, b: number) => void;
|
|
946
|
-
readonly __wbg_credential_free: (a: number, b: number) => void;
|
|
947
|
-
readonly authhandle_id: (a: number) => number;
|
|
948
|
-
readonly authhandle_new: () => number;
|
|
949
|
-
readonly authhandle_set: (a: number, b: number) => any;
|
|
950
|
-
readonly credential_new: (a: number, b: number, c: number, d: number, e: bigint) => number;
|
|
951
978
|
readonly __wbg_action_free: (a: number, b: number) => void;
|
|
952
979
|
readonly __wbg_actions_free: (a: number, b: number) => void;
|
|
953
|
-
readonly
|
|
954
|
-
readonly
|
|
955
|
-
readonly
|
|
956
|
-
readonly
|
|
957
|
-
readonly
|
|
980
|
+
readonly __wbg_apistats_free: (a: number, b: number) => void;
|
|
981
|
+
readonly __wbg_authhandle_free: (a: number, b: number) => void;
|
|
982
|
+
readonly __wbg_client_free: (a: number, b: number) => void;
|
|
983
|
+
readonly __wbg_consent_free: (a: number, b: number) => void;
|
|
984
|
+
readonly __wbg_credential_free: (a: number, b: number) => void;
|
|
958
985
|
readonly __wbg_get_action_expiresAtNs: (a: number) => [number, bigint];
|
|
959
986
|
readonly __wbg_get_action_id: (a: number) => [number, number];
|
|
960
987
|
readonly __wbg_get_action_imageUrl: (a: number) => [number, number];
|
|
@@ -962,31 +989,19 @@ export interface InitOutput {
|
|
|
962
989
|
readonly __wbg_get_action_style: (a: number) => number;
|
|
963
990
|
readonly __wbg_get_actions_description: (a: number) => [number, number];
|
|
964
991
|
readonly __wbg_get_actions_id: (a: number) => [number, number];
|
|
965
|
-
readonly
|
|
966
|
-
readonly
|
|
967
|
-
readonly
|
|
968
|
-
readonly
|
|
969
|
-
readonly
|
|
970
|
-
readonly
|
|
971
|
-
readonly
|
|
972
|
-
readonly
|
|
973
|
-
readonly
|
|
974
|
-
readonly
|
|
975
|
-
readonly
|
|
976
|
-
readonly
|
|
977
|
-
readonly
|
|
978
|
-
readonly __wbg_get_decodedmessage_sender_installation_id: (a: number) => [number, number];
|
|
979
|
-
readonly __wbg_get_decodedmessage_sent_at_ns: (a: number) => bigint;
|
|
980
|
-
readonly __wbg_get_groupmember_accountIdentifiers: (a: number) => [number, number];
|
|
981
|
-
readonly __wbg_get_groupmember_consentState: (a: number) => number;
|
|
982
|
-
readonly __wbg_get_groupmember_inboxId: (a: number) => [number, number];
|
|
983
|
-
readonly __wbg_get_groupmember_installationIds: (a: number) => [number, number];
|
|
984
|
-
readonly __wbg_get_groupmember_permissionLevel: (a: number) => number;
|
|
985
|
-
readonly __wbg_get_groupupdated_addedInboxes: (a: number) => [number, number];
|
|
986
|
-
readonly __wbg_get_groupupdated_initiatedByInboxId: (a: number) => [number, number];
|
|
987
|
-
readonly __wbg_get_groupupdated_metadataFieldChanges: (a: number) => [number, number];
|
|
988
|
-
readonly __wbg_get_groupupdated_removedInboxes: (a: number) => [number, number];
|
|
989
|
-
readonly __wbg_get_inbox_inboxId: (a: number) => [number, number];
|
|
992
|
+
readonly __wbg_get_apistats_fetch_key_package: (a: number) => bigint;
|
|
993
|
+
readonly __wbg_get_apistats_query_group_messages: (a: number) => bigint;
|
|
994
|
+
readonly __wbg_get_apistats_query_welcome_messages: (a: number) => bigint;
|
|
995
|
+
readonly __wbg_get_apistats_send_group_messages: (a: number) => bigint;
|
|
996
|
+
readonly __wbg_get_apistats_send_welcome_messages: (a: number) => bigint;
|
|
997
|
+
readonly __wbg_get_apistats_subscribe_messages: (a: number) => bigint;
|
|
998
|
+
readonly __wbg_get_apistats_subscribe_welcomes: (a: number) => bigint;
|
|
999
|
+
readonly __wbg_get_apistats_upload_key_package: (a: number) => bigint;
|
|
1000
|
+
readonly __wbg_get_consent_entity: (a: number) => [number, number];
|
|
1001
|
+
readonly __wbg_get_consent_entityType: (a: number) => number;
|
|
1002
|
+
readonly __wbg_get_consent_state: (a: number) => number;
|
|
1003
|
+
readonly __wbg_get_groupsyncsummary_numEligible: (a: number) => number;
|
|
1004
|
+
readonly __wbg_get_groupsyncsummary_numSynced: (a: number) => number;
|
|
990
1005
|
readonly __wbg_get_inboxstate_accountIdentifiers: (a: number) => [number, number];
|
|
991
1006
|
readonly __wbg_get_inboxstate_inboxId: (a: number) => [number, number];
|
|
992
1007
|
readonly __wbg_get_inboxstate_installations: (a: number) => [number, number];
|
|
@@ -995,348 +1010,109 @@ export interface InitOutput {
|
|
|
995
1010
|
readonly __wbg_get_installation_id: (a: number) => [number, number];
|
|
996
1011
|
readonly __wbg_get_keypackagestatus_lifetime: (a: number) => number;
|
|
997
1012
|
readonly __wbg_get_keypackagestatus_validationError: (a: number) => [number, number];
|
|
998
|
-
readonly
|
|
999
|
-
readonly
|
|
1000
|
-
readonly
|
|
1001
|
-
readonly
|
|
1002
|
-
readonly
|
|
1003
|
-
readonly
|
|
1004
|
-
readonly
|
|
1005
|
-
readonly
|
|
1006
|
-
readonly
|
|
1007
|
-
readonly
|
|
1008
|
-
readonly
|
|
1009
|
-
readonly
|
|
1010
|
-
readonly
|
|
1011
|
-
readonly
|
|
1012
|
-
readonly
|
|
1013
|
-
readonly
|
|
1014
|
-
readonly
|
|
1015
|
-
readonly
|
|
1016
|
-
readonly
|
|
1017
|
-
readonly
|
|
1018
|
-
readonly
|
|
1019
|
-
readonly
|
|
1013
|
+
readonly __wbg_get_leaverequest_authenticatedNote: (a: number) => any;
|
|
1014
|
+
readonly __wbg_get_logoptions_level: (a: number) => number;
|
|
1015
|
+
readonly __wbg_get_logoptions_performance: (a: number) => number;
|
|
1016
|
+
readonly __wbg_get_logoptions_structured: (a: number) => number;
|
|
1017
|
+
readonly __wbg_get_multiremoteattachment_attachments: (a: number) => [number, number];
|
|
1018
|
+
readonly __wbg_get_reaction_action: (a: number) => number;
|
|
1019
|
+
readonly __wbg_get_reaction_content: (a: number) => [number, number];
|
|
1020
|
+
readonly __wbg_get_reaction_reference: (a: number) => [number, number];
|
|
1021
|
+
readonly __wbg_get_reaction_referenceInboxId: (a: number) => [number, number];
|
|
1022
|
+
readonly __wbg_get_reaction_schema: (a: number) => number;
|
|
1023
|
+
readonly __wbg_get_reactionpayload_content: (a: number) => [number, number];
|
|
1024
|
+
readonly __wbg_get_reactionpayload_reference: (a: number) => [number, number];
|
|
1025
|
+
readonly __wbg_get_reactionpayload_referenceInboxId: (a: number) => [number, number];
|
|
1026
|
+
readonly __wbg_get_remoteattachmentinfo_contentDigest: (a: number) => [number, number];
|
|
1027
|
+
readonly __wbg_get_remoteattachmentinfo_contentLength: (a: number) => number;
|
|
1028
|
+
readonly __wbg_get_remoteattachmentinfo_nonce: (a: number) => any;
|
|
1029
|
+
readonly __wbg_get_remoteattachmentinfo_salt: (a: number) => any;
|
|
1030
|
+
readonly __wbg_get_remoteattachmentinfo_scheme: (a: number) => [number, number];
|
|
1031
|
+
readonly __wbg_get_remoteattachmentinfo_secret: (a: number) => any;
|
|
1032
|
+
readonly __wbg_get_remoteattachmentinfo_url: (a: number) => [number, number];
|
|
1033
|
+
readonly __wbg_groupsyncsummary_free: (a: number, b: number) => void;
|
|
1034
|
+
readonly __wbg_identitystats_free: (a: number, b: number) => void;
|
|
1020
1035
|
readonly __wbg_inboxstate_free: (a: number, b: number) => void;
|
|
1021
1036
|
readonly __wbg_installation_free: (a: number, b: number) => void;
|
|
1022
1037
|
readonly __wbg_keypackagestatus_free: (a: number, b: number) => void;
|
|
1038
|
+
readonly __wbg_leaverequest_free: (a: number, b: number) => void;
|
|
1023
1039
|
readonly __wbg_lifetime_free: (a: number, b: number) => void;
|
|
1024
|
-
readonly
|
|
1025
|
-
readonly
|
|
1026
|
-
readonly
|
|
1027
|
-
readonly
|
|
1040
|
+
readonly __wbg_logoptions_free: (a: number, b: number) => void;
|
|
1041
|
+
readonly __wbg_multiremoteattachment_free: (a: number, b: number) => void;
|
|
1042
|
+
readonly __wbg_opfs_free: (a: number, b: number) => void;
|
|
1043
|
+
readonly __wbg_passkeysignature_free: (a: number, b: number) => void;
|
|
1044
|
+
readonly __wbg_reaction_free: (a: number, b: number) => void;
|
|
1045
|
+
readonly __wbg_reactionpayload_free: (a: number, b: number) => void;
|
|
1046
|
+
readonly __wbg_remoteattachmentinfo_free: (a: number, b: number) => void;
|
|
1028
1047
|
readonly __wbg_set_action_expiresAtNs: (a: number, b: number, c: bigint) => void;
|
|
1029
1048
|
readonly __wbg_set_action_id: (a: number, b: number, c: number) => void;
|
|
1030
1049
|
readonly __wbg_set_action_imageUrl: (a: number, b: number, c: number) => void;
|
|
1031
1050
|
readonly __wbg_set_action_label: (a: number, b: number, c: number) => void;
|
|
1032
1051
|
readonly __wbg_set_action_style: (a: number, b: number) => void;
|
|
1033
|
-
readonly
|
|
1034
|
-
readonly
|
|
1035
|
-
readonly
|
|
1036
|
-
readonly
|
|
1037
|
-
readonly
|
|
1038
|
-
readonly
|
|
1039
|
-
readonly
|
|
1040
|
-
readonly
|
|
1041
|
-
readonly
|
|
1042
|
-
readonly
|
|
1043
|
-
readonly
|
|
1044
|
-
readonly
|
|
1045
|
-
readonly
|
|
1046
|
-
readonly __wbg_set_decodedmessage_sender_installation_id: (a: number, b: number, c: number) => void;
|
|
1047
|
-
readonly __wbg_set_decodedmessage_sent_at_ns: (a: number, b: bigint) => void;
|
|
1048
|
-
readonly __wbg_set_groupmember_accountIdentifiers: (a: number, b: number, c: number) => void;
|
|
1049
|
-
readonly __wbg_set_groupmember_consentState: (a: number, b: number) => void;
|
|
1050
|
-
readonly __wbg_set_groupmember_installationIds: (a: number, b: number, c: number) => void;
|
|
1051
|
-
readonly __wbg_set_groupmember_permissionLevel: (a: number, b: number) => void;
|
|
1052
|
-
readonly __wbg_set_groupupdated_addedInboxes: (a: number, b: number, c: number) => void;
|
|
1053
|
-
readonly __wbg_set_groupupdated_metadataFieldChanges: (a: number, b: number, c: number) => void;
|
|
1054
|
-
readonly __wbg_set_groupupdated_removedInboxes: (a: number, b: number, c: number) => void;
|
|
1052
|
+
readonly __wbg_set_apistats_fetch_key_package: (a: number, b: bigint) => void;
|
|
1053
|
+
readonly __wbg_set_apistats_query_group_messages: (a: number, b: bigint) => void;
|
|
1054
|
+
readonly __wbg_set_apistats_query_welcome_messages: (a: number, b: bigint) => void;
|
|
1055
|
+
readonly __wbg_set_apistats_send_group_messages: (a: number, b: bigint) => void;
|
|
1056
|
+
readonly __wbg_set_apistats_send_welcome_messages: (a: number, b: bigint) => void;
|
|
1057
|
+
readonly __wbg_set_apistats_subscribe_messages: (a: number, b: bigint) => void;
|
|
1058
|
+
readonly __wbg_set_apistats_subscribe_welcomes: (a: number, b: bigint) => void;
|
|
1059
|
+
readonly __wbg_set_apistats_upload_key_package: (a: number, b: bigint) => void;
|
|
1060
|
+
readonly __wbg_set_consent_entity: (a: number, b: number, c: number) => void;
|
|
1061
|
+
readonly __wbg_set_consent_entityType: (a: number, b: number) => void;
|
|
1062
|
+
readonly __wbg_set_consent_state: (a: number, b: number) => void;
|
|
1063
|
+
readonly __wbg_set_groupsyncsummary_numEligible: (a: number, b: number) => void;
|
|
1064
|
+
readonly __wbg_set_groupsyncsummary_numSynced: (a: number, b: number) => void;
|
|
1055
1065
|
readonly __wbg_set_inboxstate_accountIdentifiers: (a: number, b: number, c: number) => void;
|
|
1056
1066
|
readonly __wbg_set_inboxstate_installations: (a: number, b: number, c: number) => void;
|
|
1057
1067
|
readonly __wbg_set_inboxstate_recoveryIdentifier: (a: number, b: any) => void;
|
|
1058
1068
|
readonly __wbg_set_installation_bytes: (a: number, b: any) => void;
|
|
1059
1069
|
readonly __wbg_set_keypackagestatus_lifetime: (a: number, b: number) => void;
|
|
1060
1070
|
readonly __wbg_set_keypackagestatus_validationError: (a: number, b: number, c: number) => void;
|
|
1061
|
-
readonly
|
|
1062
|
-
readonly
|
|
1063
|
-
readonly
|
|
1064
|
-
readonly
|
|
1065
|
-
readonly
|
|
1066
|
-
readonly
|
|
1067
|
-
readonly
|
|
1068
|
-
readonly
|
|
1069
|
-
readonly
|
|
1070
|
-
readonly
|
|
1071
|
-
readonly
|
|
1072
|
-
readonly
|
|
1073
|
-
readonly
|
|
1074
|
-
readonly
|
|
1075
|
-
readonly
|
|
1076
|
-
readonly
|
|
1077
|
-
readonly
|
|
1078
|
-
readonly __wbg_transactionmetadata_free: (a: number, b: number) => void;
|
|
1079
|
-
readonly __wbg_transactionreference_free: (a: number, b: number) => void;
|
|
1071
|
+
readonly __wbg_set_leaverequest_authenticatedNote: (a: number, b: number) => void;
|
|
1072
|
+
readonly __wbg_set_logoptions_level: (a: number, b: number) => void;
|
|
1073
|
+
readonly __wbg_set_logoptions_performance: (a: number, b: number) => void;
|
|
1074
|
+
readonly __wbg_set_logoptions_structured: (a: number, b: number) => void;
|
|
1075
|
+
readonly __wbg_set_multiremoteattachment_attachments: (a: number, b: number, c: number) => void;
|
|
1076
|
+
readonly __wbg_set_reaction_action: (a: number, b: number) => void;
|
|
1077
|
+
readonly __wbg_set_reaction_content: (a: number, b: number, c: number) => void;
|
|
1078
|
+
readonly __wbg_set_reaction_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
1079
|
+
readonly __wbg_set_reaction_schema: (a: number, b: number) => void;
|
|
1080
|
+
readonly __wbg_set_remoteattachmentinfo_contentDigest: (a: number, b: number, c: number) => void;
|
|
1081
|
+
readonly __wbg_set_remoteattachmentinfo_contentLength: (a: number, b: number) => void;
|
|
1082
|
+
readonly __wbg_set_remoteattachmentinfo_filename: (a: number, b: number, c: number) => void;
|
|
1083
|
+
readonly __wbg_set_remoteattachmentinfo_nonce: (a: number, b: any) => void;
|
|
1084
|
+
readonly __wbg_set_remoteattachmentinfo_salt: (a: number, b: any) => void;
|
|
1085
|
+
readonly __wbg_set_remoteattachmentinfo_scheme: (a: number, b: number, c: number) => void;
|
|
1086
|
+
readonly __wbg_set_remoteattachmentinfo_secret: (a: number, b: any) => void;
|
|
1087
|
+
readonly __wbg_signaturerequesthandle_free: (a: number, b: number) => void;
|
|
1080
1088
|
readonly action_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: bigint) => number;
|
|
1081
1089
|
readonly actions_addAction: (a: number, b: number) => void;
|
|
1082
1090
|
readonly actions_getActions: (a: number) => [number, number];
|
|
1083
1091
|
readonly actions_new: (a: number, b: number, c: number, d: number, e: number, f: bigint) => number;
|
|
1084
1092
|
readonly actions_setActions: (a: number, b: number, c: number) => void;
|
|
1093
|
+
readonly applySignatureRequest: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
1094
|
+
readonly authhandle_id: (a: number) => number;
|
|
1095
|
+
readonly authhandle_new: () => number;
|
|
1096
|
+
readonly authhandle_set: (a: number, b: number) => any;
|
|
1097
|
+
readonly client_accountIdentifier: (a: number) => any;
|
|
1098
|
+
readonly client_addWalletSignatureRequest: (a: number, b: any) => any;
|
|
1099
|
+
readonly client_apiAggregateStatistics: (a: number) => [number, number];
|
|
1100
|
+
readonly client_apiIdentityStatistics: (a: number) => number;
|
|
1101
|
+
readonly client_apiStatistics: (a: number) => number;
|
|
1102
|
+
readonly client_appVersion: (a: number) => [number, number];
|
|
1103
|
+
readonly client_applySignatureRequest: (a: number, b: number) => any;
|
|
1104
|
+
readonly client_canMessage: (a: number, b: number, c: number) => any;
|
|
1105
|
+
readonly client_changeRecoveryIdentifierSignatureRequest: (a: number, b: any) => any;
|
|
1106
|
+
readonly client_clearAllStatistics: (a: number) => void;
|
|
1107
|
+
readonly client_conversations: (a: number) => number;
|
|
1108
|
+
readonly client_createInboxSignatureRequest: (a: number) => [number, number, number];
|
|
1109
|
+
readonly client_deleteMessage: (a: number, b: number, c: number) => [number, number, number];
|
|
1110
|
+
readonly client_findInboxIdByIdentifier: (a: number, b: any) => any;
|
|
1111
|
+
readonly client_getConsentState: (a: number, b: number, c: number, d: number) => any;
|
|
1085
1112
|
readonly client_getKeyPackageStatusesForInstallationIds: (a: number, b: number, c: number) => any;
|
|
1086
1113
|
readonly client_getLatestInboxState: (a: number, b: number, c: number) => any;
|
|
1114
|
+
readonly client_inboxId: (a: number) => [number, number];
|
|
1087
1115
|
readonly client_inboxState: (a: number, b: number) => any;
|
|
1088
|
-
readonly conversation_addAdmin: (a: number, b: number, c: number) => any;
|
|
1089
|
-
readonly conversation_addMembers: (a: number, b: number, c: number) => any;
|
|
1090
|
-
readonly conversation_addMembersByInboxId: (a: number, b: number, c: number) => any;
|
|
1091
|
-
readonly conversation_addSuperAdmin: (a: number, b: number, c: number) => any;
|
|
1092
|
-
readonly conversation_addedByInboxId: (a: number) => [number, number, number, number];
|
|
1093
|
-
readonly conversation_adminList: (a: number) => [number, number, number, number];
|
|
1094
|
-
readonly conversation_appData: (a: number) => [number, number, number, number];
|
|
1095
|
-
readonly conversation_countMessages: (a: number, b: number) => any;
|
|
1096
|
-
readonly conversation_createdAtNs: (a: number) => bigint;
|
|
1097
|
-
readonly conversation_dmPeerInboxId: (a: number) => [number, number, number, number];
|
|
1098
|
-
readonly conversation_findDuplicateDms: (a: number) => any;
|
|
1099
|
-
readonly conversation_findMessages: (a: number, b: number) => any;
|
|
1100
|
-
readonly conversation_findMessagesV2: (a: number, b: number) => any;
|
|
1101
|
-
readonly conversation_findMessagesWithReactions: (a: number, b: number) => any;
|
|
1102
|
-
readonly conversation_getDebugInfo: (a: number) => any;
|
|
1103
|
-
readonly conversation_getHmacKeys: (a: number) => [number, number, number];
|
|
1104
|
-
readonly conversation_getLastReadTimes: (a: number) => any;
|
|
1105
|
-
readonly conversation_groupDescription: (a: number) => [number, number, number, number];
|
|
1106
|
-
readonly conversation_groupImageUrlSquare: (a: number) => [number, number, number, number];
|
|
1107
|
-
readonly conversation_groupMetadata: (a: number) => any;
|
|
1108
|
-
readonly conversation_groupName: (a: number) => [number, number, number, number];
|
|
1109
|
-
readonly conversation_groupPermissions: (a: number) => [number, number, number];
|
|
1110
|
-
readonly conversation_id: (a: number) => [number, number];
|
|
1111
|
-
readonly conversation_isActive: (a: number) => [number, number, number];
|
|
1112
|
-
readonly conversation_isAdmin: (a: number, b: number, c: number) => [number, number, number];
|
|
1113
|
-
readonly conversation_isMessageDisappearingEnabled: (a: number) => [number, number, number];
|
|
1114
|
-
readonly conversation_isSuperAdmin: (a: number, b: number, c: number) => [number, number, number];
|
|
1115
|
-
readonly conversation_listMembers: (a: number) => any;
|
|
1116
|
-
readonly conversation_messageDisappearingSettings: (a: number) => [number, number, number];
|
|
1117
|
-
readonly conversation_pausedForVersion: (a: number) => [number, number, number, number];
|
|
1118
|
-
readonly conversation_publishMessages: (a: number) => any;
|
|
1119
|
-
readonly conversation_removeAdmin: (a: number, b: number, c: number) => any;
|
|
1120
|
-
readonly conversation_removeMembers: (a: number, b: number, c: number) => any;
|
|
1121
|
-
readonly conversation_removeMembersByInboxId: (a: number, b: number, c: number) => any;
|
|
1122
|
-
readonly conversation_removeMessageDisappearingSettings: (a: number) => any;
|
|
1123
|
-
readonly conversation_removeSuperAdmin: (a: number, b: number, c: number) => any;
|
|
1124
|
-
readonly conversation_send: (a: number, b: number, c: number) => any;
|
|
1125
|
-
readonly conversation_sendOptimistic: (a: number, b: number, c: number) => [number, number, number, number];
|
|
1126
|
-
readonly conversation_stream: (a: number, b: any) => [number, number, number];
|
|
1127
|
-
readonly conversation_superAdminList: (a: number) => [number, number, number, number];
|
|
1128
|
-
readonly conversation_sync: (a: number) => any;
|
|
1129
|
-
readonly conversation_updateAppData: (a: number, b: number, c: number) => any;
|
|
1130
|
-
readonly conversation_updateGroupDescription: (a: number, b: number, c: number) => any;
|
|
1131
|
-
readonly conversation_updateGroupImageUrlSquare: (a: number, b: number, c: number) => any;
|
|
1132
|
-
readonly conversation_updateGroupName: (a: number, b: number, c: number) => any;
|
|
1133
|
-
readonly conversation_updateMessageDisappearingSettings: (a: number, b: number) => any;
|
|
1134
|
-
readonly conversation_updatePermissionPolicy: (a: number, b: number, c: number, d: number) => any;
|
|
1135
|
-
readonly decodeActions: (a: any) => [number, number, number];
|
|
1136
|
-
readonly decodeReply: (a: any) => [number, number, number];
|
|
1137
|
-
readonly decodedmessagecontent_asActions: (a: number) => [number, number, number];
|
|
1138
|
-
readonly decodedmessagecontent_asAttachment: (a: number) => number;
|
|
1139
|
-
readonly decodedmessagecontent_asCustom: (a: number) => number;
|
|
1140
|
-
readonly decodedmessagecontent_asGroupUpdated: (a: number) => number;
|
|
1141
|
-
readonly decodedmessagecontent_asIntent: (a: number) => [number, number, number];
|
|
1142
|
-
readonly decodedmessagecontent_asMultiRemoteAttachment: (a: number) => number;
|
|
1143
|
-
readonly decodedmessagecontent_asReaction: (a: number) => number;
|
|
1144
|
-
readonly decodedmessagecontent_asReadReceipt: (a: number) => number;
|
|
1145
|
-
readonly decodedmessagecontent_asRemoteAttachment: (a: number) => number;
|
|
1146
|
-
readonly decodedmessagecontent_asReply: (a: number) => number;
|
|
1147
|
-
readonly decodedmessagecontent_asText: (a: number) => number;
|
|
1148
|
-
readonly decodedmessagecontent_asTransactionReference: (a: number) => number;
|
|
1149
|
-
readonly decodedmessagecontent_asWalletSendCalls: (a: number) => [number, number, number];
|
|
1150
|
-
readonly decodedmessagecontent_payloadType: (a: number) => number;
|
|
1151
|
-
readonly encodeActions: (a: number) => [number, number, number];
|
|
1152
|
-
readonly encodeReply: (a: number) => [number, number, number];
|
|
1153
|
-
readonly enrichedreply_content: (a: number) => number;
|
|
1154
|
-
readonly enrichedreply_inReplyTo: (a: number) => number;
|
|
1155
|
-
readonly enrichedreply_referenceId: (a: number) => [number, number];
|
|
1156
|
-
readonly groupmember_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
1157
|
-
readonly groupmetadata_conversationType: (a: number) => [number, number];
|
|
1158
|
-
readonly groupmetadata_creatorInboxId: (a: number) => [number, number];
|
|
1159
|
-
readonly inboxStateFromInboxIds: (a: number, b: number, c: number, d: number, e: number, f: number) => any;
|
|
1160
|
-
readonly inboxstate_new: (a: number, b: number, c: any, d: number, e: number, f: number, g: number) => number;
|
|
1161
|
-
readonly installation_new: (a: any, b: number, c: number, d: number, e: bigint) => number;
|
|
1162
|
-
readonly reply_new: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
1163
|
-
readonly sendmessageopts_new: (a: number) => number;
|
|
1164
|
-
readonly __wbg_set_actions_description: (a: number, b: number, c: number) => void;
|
|
1165
|
-
readonly __wbg_set_actions_id: (a: number, b: number, c: number) => void;
|
|
1166
|
-
readonly __wbg_set_groupmember_inboxId: (a: number, b: number, c: number) => void;
|
|
1167
|
-
readonly __wbg_set_groupupdated_initiatedByInboxId: (a: number, b: number, c: number) => void;
|
|
1168
|
-
readonly __wbg_set_inbox_inboxId: (a: number, b: number, c: number) => void;
|
|
1169
|
-
readonly __wbg_set_inboxstate_inboxId: (a: number, b: number, c: number) => void;
|
|
1170
|
-
readonly __wbg_set_installation_id: (a: number, b: number, c: number) => void;
|
|
1171
|
-
readonly __wbg_set_metadatafieldchange_fieldName: (a: number, b: number, c: number) => void;
|
|
1172
|
-
readonly __wbg_set_metadatafieldchange_newValue: (a: number, b: number, c: number) => void;
|
|
1173
|
-
readonly __wbg_get_actions_expiresAtNs: (a: number) => [number, bigint];
|
|
1174
|
-
readonly __wbg_get_installation_clientTimestampNs: (a: number) => [number, bigint];
|
|
1175
|
-
readonly __wbg_get_metadatafieldchange_newValue: (a: number) => [number, number];
|
|
1176
|
-
readonly __wbg_set_actions_expiresAtNs: (a: number, b: number, c: bigint) => void;
|
|
1177
|
-
readonly __wbg_set_installation_clientTimestampNs: (a: number, b: number, c: bigint) => void;
|
|
1178
|
-
readonly __wbg_contenttypeid_free: (a: number, b: number) => void;
|
|
1179
|
-
readonly __wbg_encodedcontent_free: (a: number, b: number) => void;
|
|
1180
|
-
readonly __wbg_get_contenttypeid_authorityId: (a: number) => [number, number];
|
|
1181
|
-
readonly __wbg_get_contenttypeid_typeId: (a: number) => [number, number];
|
|
1182
|
-
readonly __wbg_get_contenttypeid_versionMajor: (a: number) => number;
|
|
1183
|
-
readonly __wbg_get_contenttypeid_versionMinor: (a: number) => number;
|
|
1184
|
-
readonly __wbg_get_encodedcontent_compression: (a: number) => number;
|
|
1185
|
-
readonly __wbg_get_encodedcontent_content: (a: number) => any;
|
|
1186
|
-
readonly __wbg_get_encodedcontent_fallback: (a: number) => [number, number];
|
|
1187
|
-
readonly __wbg_get_encodedcontent_parameters: (a: number) => any;
|
|
1188
|
-
readonly __wbg_get_encodedcontent_type: (a: number) => number;
|
|
1189
|
-
readonly __wbg_get_multiremoteattachment_attachments: (a: number) => [number, number];
|
|
1190
|
-
readonly __wbg_get_remoteattachment_contentDigest: (a: number) => [number, number];
|
|
1191
|
-
readonly __wbg_get_remoteattachment_contentLength: (a: number) => bigint;
|
|
1192
|
-
readonly __wbg_get_remoteattachment_filename: (a: number) => [number, number];
|
|
1193
|
-
readonly __wbg_get_remoteattachment_nonce: (a: number) => [number, number];
|
|
1194
|
-
readonly __wbg_get_remoteattachment_salt: (a: number) => [number, number];
|
|
1195
|
-
readonly __wbg_get_remoteattachment_scheme: (a: number) => [number, number];
|
|
1196
|
-
readonly __wbg_get_remoteattachment_secret: (a: number) => [number, number];
|
|
1197
|
-
readonly __wbg_get_remoteattachment_url: (a: number) => [number, number];
|
|
1198
|
-
readonly __wbg_get_remoteattachmentinfo_contentDigest: (a: number) => [number, number];
|
|
1199
|
-
readonly __wbg_get_remoteattachmentinfo_contentLength: (a: number) => number;
|
|
1200
|
-
readonly __wbg_get_remoteattachmentinfo_filename: (a: number) => [number, number];
|
|
1201
|
-
readonly __wbg_get_remoteattachmentinfo_nonce: (a: number) => any;
|
|
1202
|
-
readonly __wbg_get_remoteattachmentinfo_salt: (a: number) => any;
|
|
1203
|
-
readonly __wbg_get_remoteattachmentinfo_scheme: (a: number) => [number, number];
|
|
1204
|
-
readonly __wbg_get_remoteattachmentinfo_url: (a: number) => [number, number];
|
|
1205
|
-
readonly __wbg_get_textcontent_content: (a: number) => [number, number];
|
|
1206
|
-
readonly __wbg_multiremoteattachment_free: (a: number, b: number) => void;
|
|
1207
|
-
readonly __wbg_opfs_free: (a: number, b: number) => void;
|
|
1208
|
-
readonly __wbg_remoteattachment_free: (a: number, b: number) => void;
|
|
1209
|
-
readonly __wbg_remoteattachmentinfo_free: (a: number, b: number) => void;
|
|
1210
|
-
readonly __wbg_set_contenttypeid_authorityId: (a: number, b: number, c: number) => void;
|
|
1211
|
-
readonly __wbg_set_contenttypeid_typeId: (a: number, b: number, c: number) => void;
|
|
1212
|
-
readonly __wbg_set_contenttypeid_versionMajor: (a: number, b: number) => void;
|
|
1213
|
-
readonly __wbg_set_contenttypeid_versionMinor: (a: number, b: number) => void;
|
|
1214
|
-
readonly __wbg_set_encodedcontent_compression: (a: number, b: number) => void;
|
|
1215
|
-
readonly __wbg_set_encodedcontent_content: (a: number, b: any) => void;
|
|
1216
|
-
readonly __wbg_set_encodedcontent_fallback: (a: number, b: number, c: number) => void;
|
|
1217
|
-
readonly __wbg_set_encodedcontent_parameters: (a: number, b: any) => void;
|
|
1218
|
-
readonly __wbg_set_encodedcontent_type: (a: number, b: number) => void;
|
|
1219
|
-
readonly __wbg_set_multiremoteattachment_attachments: (a: number, b: number, c: number) => void;
|
|
1220
|
-
readonly __wbg_set_remoteattachment_contentDigest: (a: number, b: number, c: number) => void;
|
|
1221
|
-
readonly __wbg_set_remoteattachment_contentLength: (a: number, b: bigint) => void;
|
|
1222
|
-
readonly __wbg_set_remoteattachment_filename: (a: number, b: number, c: number) => void;
|
|
1223
|
-
readonly __wbg_set_remoteattachment_nonce: (a: number, b: number, c: number) => void;
|
|
1224
|
-
readonly __wbg_set_remoteattachment_salt: (a: number, b: number, c: number) => void;
|
|
1225
|
-
readonly __wbg_set_remoteattachment_scheme: (a: number, b: number, c: number) => void;
|
|
1226
|
-
readonly __wbg_set_remoteattachment_secret: (a: number, b: number, c: number) => void;
|
|
1227
|
-
readonly __wbg_set_remoteattachment_url: (a: number, b: number, c: number) => void;
|
|
1228
|
-
readonly __wbg_set_remoteattachmentinfo_contentDigest: (a: number, b: number, c: number) => void;
|
|
1229
|
-
readonly __wbg_set_remoteattachmentinfo_contentLength: (a: number, b: number) => void;
|
|
1230
|
-
readonly __wbg_set_remoteattachmentinfo_filename: (a: number, b: number, c: number) => void;
|
|
1231
|
-
readonly __wbg_set_remoteattachmentinfo_nonce: (a: number, b: any) => void;
|
|
1232
|
-
readonly __wbg_set_remoteattachmentinfo_salt: (a: number, b: any) => void;
|
|
1233
|
-
readonly __wbg_set_remoteattachmentinfo_scheme: (a: number, b: number, c: number) => void;
|
|
1234
|
-
readonly __wbg_set_remoteattachmentinfo_url: (a: number, b: number, c: number) => void;
|
|
1235
|
-
readonly __wbg_streamcloser_free: (a: number, b: number) => void;
|
|
1236
|
-
readonly __wbg_textcontent_free: (a: number, b: number) => void;
|
|
1237
|
-
readonly contenttypeid_new: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
1238
|
-
readonly decodeMultiRemoteAttachment: (a: any) => [number, number, number];
|
|
1239
|
-
readonly encodeMultiRemoteAttachment: (a: number) => [number, number, number];
|
|
1240
|
-
readonly encodedcontent_new: (a: number, b: any, c: number, d: number, e: number, f: any) => number;
|
|
1241
|
-
readonly generateInboxId: (a: any, b: number, c: bigint) => [number, number, number, number];
|
|
1242
|
-
readonly getInboxIdForIdentifier: (a: number, b: number, c: number, d: number, e: any) => any;
|
|
1243
|
-
readonly multiremoteattachment_new: (a: number, b: number) => number;
|
|
1244
|
-
readonly opfs_addCapacity: (a: number) => any;
|
|
1245
|
-
readonly opfs_error: () => [number, number];
|
|
1246
|
-
readonly opfs_exists: () => number;
|
|
1247
|
-
readonly opfs_exportFile: (a: number, b: number) => [number, number, number, number];
|
|
1248
|
-
readonly opfs_getCapacity: () => number;
|
|
1249
|
-
readonly opfs_getFileCount: () => number;
|
|
1250
|
-
readonly opfs_getFileNames: () => [number, number];
|
|
1251
|
-
readonly opfs_importDb: (a: number, b: number, c: number, d: number) => [number, number];
|
|
1252
|
-
readonly opfs_init_sqlite_opfs: () => any;
|
|
1253
|
-
readonly opfs_reduceCapacity: (a: number) => any;
|
|
1254
|
-
readonly opfs_rm: (a: number, b: number) => [number, number, number];
|
|
1255
|
-
readonly opfs_wipeFiles: () => any;
|
|
1256
|
-
readonly remoteattachmentinfo_new: (a: any, b: number, c: number, d: any, e: number, f: number, g: number, h: number, i: any, j: number, k: number, l: number) => number;
|
|
1257
|
-
readonly streamcloser_end: (a: number) => void;
|
|
1258
|
-
readonly streamcloser_endAndWait: (a: number) => any;
|
|
1259
|
-
readonly streamcloser_isClosed: (a: number) => number;
|
|
1260
|
-
readonly streamcloser_waitForReady: (a: number) => any;
|
|
1261
|
-
readonly __wbg_set_textcontent_content: (a: number, b: number, c: number) => void;
|
|
1262
|
-
readonly __wbg_get_remoteattachmentinfo_secret: (a: number) => any;
|
|
1263
|
-
readonly __wbg_set_remoteattachmentinfo_secret: (a: number, b: any) => void;
|
|
1264
|
-
readonly __wbg_apistats_free: (a: number, b: number) => void;
|
|
1265
|
-
readonly __wbg_client_free: (a: number, b: number) => void;
|
|
1266
|
-
readonly __wbg_consent_free: (a: number, b: number) => void;
|
|
1267
|
-
readonly __wbg_get_apistats_fetch_key_package: (a: number) => bigint;
|
|
1268
|
-
readonly __wbg_get_apistats_query_group_messages: (a: number) => bigint;
|
|
1269
|
-
readonly __wbg_get_apistats_query_welcome_messages: (a: number) => bigint;
|
|
1270
|
-
readonly __wbg_get_apistats_send_group_messages: (a: number) => bigint;
|
|
1271
|
-
readonly __wbg_get_apistats_send_welcome_messages: (a: number) => bigint;
|
|
1272
|
-
readonly __wbg_get_apistats_subscribe_messages: (a: number) => bigint;
|
|
1273
|
-
readonly __wbg_get_apistats_subscribe_welcomes: (a: number) => bigint;
|
|
1274
|
-
readonly __wbg_get_apistats_upload_key_package: (a: number) => bigint;
|
|
1275
|
-
readonly __wbg_get_consent_entity: (a: number) => [number, number];
|
|
1276
|
-
readonly __wbg_get_consent_entityType: (a: number) => number;
|
|
1277
|
-
readonly __wbg_get_consent_state: (a: number) => number;
|
|
1278
|
-
readonly __wbg_get_groupsyncsummary_numEligible: (a: number) => number;
|
|
1279
|
-
readonly __wbg_get_groupsyncsummary_numSynced: (a: number) => number;
|
|
1280
|
-
readonly __wbg_get_intent_actionId: (a: number) => [number, number];
|
|
1281
|
-
readonly __wbg_get_intent_id: (a: number) => [number, number];
|
|
1282
|
-
readonly __wbg_get_intent_metadata: (a: number) => any;
|
|
1283
|
-
readonly __wbg_get_logoptions_level: (a: number) => number;
|
|
1284
|
-
readonly __wbg_get_logoptions_performance: (a: number) => number;
|
|
1285
|
-
readonly __wbg_get_logoptions_structured: (a: number) => number;
|
|
1286
|
-
readonly __wbg_get_reaction_action: (a: number) => number;
|
|
1287
|
-
readonly __wbg_get_reaction_content: (a: number) => [number, number];
|
|
1288
|
-
readonly __wbg_get_reaction_reference: (a: number) => [number, number];
|
|
1289
|
-
readonly __wbg_get_reaction_referenceInboxId: (a: number) => [number, number];
|
|
1290
|
-
readonly __wbg_get_reaction_schema: (a: number) => number;
|
|
1291
|
-
readonly __wbg_get_reactionpayload_content: (a: number) => [number, number];
|
|
1292
|
-
readonly __wbg_get_reactionpayload_reference: (a: number) => [number, number];
|
|
1293
|
-
readonly __wbg_get_reactionpayload_referenceInboxId: (a: number) => [number, number];
|
|
1294
|
-
readonly __wbg_groupsyncsummary_free: (a: number, b: number) => void;
|
|
1295
|
-
readonly __wbg_identitystats_free: (a: number, b: number) => void;
|
|
1296
|
-
readonly __wbg_intent_free: (a: number, b: number) => void;
|
|
1297
|
-
readonly __wbg_logoptions_free: (a: number, b: number) => void;
|
|
1298
|
-
readonly __wbg_passkeysignature_free: (a: number, b: number) => void;
|
|
1299
|
-
readonly __wbg_reaction_free: (a: number, b: number) => void;
|
|
1300
|
-
readonly __wbg_reactionpayload_free: (a: number, b: number) => void;
|
|
1301
|
-
readonly __wbg_set_apistats_fetch_key_package: (a: number, b: bigint) => void;
|
|
1302
|
-
readonly __wbg_set_apistats_query_group_messages: (a: number, b: bigint) => void;
|
|
1303
|
-
readonly __wbg_set_apistats_query_welcome_messages: (a: number, b: bigint) => void;
|
|
1304
|
-
readonly __wbg_set_apistats_send_group_messages: (a: number, b: bigint) => void;
|
|
1305
|
-
readonly __wbg_set_apistats_send_welcome_messages: (a: number, b: bigint) => void;
|
|
1306
|
-
readonly __wbg_set_apistats_subscribe_messages: (a: number, b: bigint) => void;
|
|
1307
|
-
readonly __wbg_set_apistats_subscribe_welcomes: (a: number, b: bigint) => void;
|
|
1308
|
-
readonly __wbg_set_apistats_upload_key_package: (a: number, b: bigint) => void;
|
|
1309
|
-
readonly __wbg_set_consent_entity: (a: number, b: number, c: number) => void;
|
|
1310
|
-
readonly __wbg_set_consent_entityType: (a: number, b: number) => void;
|
|
1311
|
-
readonly __wbg_set_consent_state: (a: number, b: number) => void;
|
|
1312
|
-
readonly __wbg_set_groupsyncsummary_numEligible: (a: number, b: number) => void;
|
|
1313
|
-
readonly __wbg_set_groupsyncsummary_numSynced: (a: number, b: number) => void;
|
|
1314
|
-
readonly __wbg_set_intent_actionId: (a: number, b: number, c: number) => void;
|
|
1315
|
-
readonly __wbg_set_intent_metadata: (a: number, b: any) => void;
|
|
1316
|
-
readonly __wbg_set_logoptions_level: (a: number, b: number) => void;
|
|
1317
|
-
readonly __wbg_set_logoptions_performance: (a: number, b: number) => void;
|
|
1318
|
-
readonly __wbg_set_logoptions_structured: (a: number, b: number) => void;
|
|
1319
|
-
readonly __wbg_set_reaction_action: (a: number, b: number) => void;
|
|
1320
|
-
readonly __wbg_set_reaction_content: (a: number, b: number, c: number) => void;
|
|
1321
|
-
readonly __wbg_set_reaction_schema: (a: number, b: number) => void;
|
|
1322
|
-
readonly __wbg_signaturerequesthandle_free: (a: number, b: number) => void;
|
|
1323
|
-
readonly applySignatureRequest: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
1324
|
-
readonly client_accountIdentifier: (a: number) => any;
|
|
1325
|
-
readonly client_addWalletSignatureRequest: (a: number, b: any) => any;
|
|
1326
|
-
readonly client_apiAggregateStatistics: (a: number) => [number, number];
|
|
1327
|
-
readonly client_apiIdentityStatistics: (a: number) => number;
|
|
1328
|
-
readonly client_apiStatistics: (a: number) => number;
|
|
1329
|
-
readonly client_appVersion: (a: number) => [number, number];
|
|
1330
|
-
readonly client_applySignatureRequest: (a: number, b: number) => any;
|
|
1331
|
-
readonly client_canMessage: (a: number, b: number, c: number) => any;
|
|
1332
|
-
readonly client_changeRecoveryIdentifierSignatureRequest: (a: number, b: any) => any;
|
|
1333
|
-
readonly client_clearAllStatistics: (a: number) => void;
|
|
1334
|
-
readonly client_conversations: (a: number) => number;
|
|
1335
|
-
readonly client_createInboxSignatureRequest: (a: number) => [number, number, number];
|
|
1336
|
-
readonly client_deleteMessage: (a: number, b: number, c: number) => [number, number, number];
|
|
1337
|
-
readonly client_findInboxIdByIdentifier: (a: number, b: any) => any;
|
|
1338
|
-
readonly client_getConsentState: (a: number, b: number, c: number, d: number) => any;
|
|
1339
|
-
readonly client_inboxId: (a: number) => [number, number];
|
|
1340
1116
|
readonly client_inboxStateFromInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
1341
1117
|
readonly client_installationId: (a: number) => [number, number];
|
|
1342
1118
|
readonly client_installationIdBytes: (a: number) => any;
|
|
@@ -1357,26 +1133,52 @@ export interface InitOutput {
|
|
|
1357
1133
|
readonly conversation_consentState: (a: number) => [number, number, number];
|
|
1358
1134
|
readonly conversation_updateConsentState: (a: number, b: number) => [number, number];
|
|
1359
1135
|
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, s: number, t: bigint, u: number, v: number, w: number) => any;
|
|
1360
|
-
readonly
|
|
1136
|
+
readonly credential_new: (a: number, b: number, c: number, d: number, e: bigint) => number;
|
|
1137
|
+
readonly decodeActions: (a: any) => [number, number, number];
|
|
1138
|
+
readonly decodeLeaveRequest: (a: any) => [number, number, number];
|
|
1139
|
+
readonly decodeMultiRemoteAttachment: (a: any) => [number, number, number];
|
|
1361
1140
|
readonly decodeReaction: (a: any) => [number, number, number];
|
|
1362
|
-
readonly
|
|
1141
|
+
readonly encodeActions: (a: number) => [number, number, number];
|
|
1142
|
+
readonly encodeLeaveRequest: (a: number) => [number, number, number];
|
|
1143
|
+
readonly encodeMultiRemoteAttachment: (a: number) => [number, number, number];
|
|
1363
1144
|
readonly encodeReaction: (a: number) => [number, number, number];
|
|
1145
|
+
readonly generateInboxId: (a: any, b: number, c: bigint) => [number, number, number, number];
|
|
1146
|
+
readonly getInboxIdForIdentifier: (a: number, b: number, c: number, d: number, e: any) => any;
|
|
1364
1147
|
readonly groupsyncsummary_new: (a: number, b: number) => number;
|
|
1365
|
-
readonly
|
|
1148
|
+
readonly inboxStateFromInboxIds: (a: number, b: number, c: number, d: number, e: number, f: number) => any;
|
|
1149
|
+
readonly inboxstate_new: (a: number, b: number, c: any, d: number, e: number, f: number, g: number) => number;
|
|
1150
|
+
readonly installation_new: (a: any, b: number, c: number, d: number, e: bigint) => number;
|
|
1366
1151
|
readonly logoptions_new: (a: number, b: number, c: number) => number;
|
|
1152
|
+
readonly multiremoteattachment_new: (a: number, b: number) => number;
|
|
1153
|
+
readonly opfs_addCapacity: (a: number) => any;
|
|
1154
|
+
readonly opfs_error: () => [number, number];
|
|
1155
|
+
readonly opfs_exists: () => number;
|
|
1156
|
+
readonly opfs_exportFile: (a: number, b: number) => [number, number, number, number];
|
|
1157
|
+
readonly opfs_getCapacity: () => number;
|
|
1158
|
+
readonly opfs_getFileCount: () => number;
|
|
1159
|
+
readonly opfs_getFileNames: () => [number, number];
|
|
1160
|
+
readonly opfs_importDb: (a: number, b: number, c: number, d: number) => [number, number];
|
|
1161
|
+
readonly opfs_init_sqlite_opfs: () => any;
|
|
1162
|
+
readonly opfs_reduceCapacity: (a: number) => any;
|
|
1163
|
+
readonly opfs_rm: (a: number, b: number) => [number, number, number];
|
|
1164
|
+
readonly opfs_wipeFiles: () => any;
|
|
1367
1165
|
readonly reaction_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
1166
|
+
readonly remoteattachmentinfo_new: (a: any, b: number, c: number, d: any, e: number, f: number, g: number, h: number, i: any, j: number, k: number, l: number) => number;
|
|
1368
1167
|
readonly revokeInstallationsSignatureRequest: (a: number, b: number, c: number, d: number, e: any, f: number, g: number, h: number, i: number) => [number, number, number];
|
|
1369
1168
|
readonly signaturerequesthandle_addEcdsaSignature: (a: number, b: any) => any;
|
|
1370
1169
|
readonly signaturerequesthandle_addPasskeySignature: (a: number, b: number) => any;
|
|
1371
1170
|
readonly signaturerequesthandle_addScwSignature: (a: number, b: any, c: any, d: bigint, e: number, f: bigint) => any;
|
|
1372
1171
|
readonly signaturerequesthandle_signatureText: (a: number) => any;
|
|
1373
1172
|
readonly verifySignedWithPublicKey: (a: number, b: number, c: any, d: any) => [number, number];
|
|
1374
|
-
readonly
|
|
1173
|
+
readonly __wbg_set_actions_description: (a: number, b: number, c: number) => void;
|
|
1174
|
+
readonly __wbg_set_actions_id: (a: number, b: number, c: number) => void;
|
|
1175
|
+
readonly __wbg_set_inboxstate_inboxId: (a: number, b: number, c: number) => void;
|
|
1176
|
+
readonly __wbg_set_installation_id: (a: number, b: number, c: number) => void;
|
|
1375
1177
|
readonly __wbg_set_reaction_reference: (a: number, b: number, c: number) => void;
|
|
1376
|
-
readonly __wbg_set_reaction_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
1377
1178
|
readonly __wbg_set_reactionpayload_content: (a: number, b: number, c: number) => void;
|
|
1378
1179
|
readonly __wbg_set_reactionpayload_reference: (a: number, b: number, c: number) => void;
|
|
1379
1180
|
readonly __wbg_set_reactionpayload_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
1181
|
+
readonly __wbg_set_remoteattachmentinfo_url: (a: number, b: number, c: number) => void;
|
|
1380
1182
|
readonly __wbg_set_reactionpayload_action: (a: number, b: number) => void;
|
|
1381
1183
|
readonly __wbg_set_reactionpayload_schema: (a: number, b: number) => void;
|
|
1382
1184
|
readonly __wbg_get_reactionpayload_action: (a: number) => number;
|
|
@@ -1385,10 +1187,19 @@ export interface InitOutput {
|
|
|
1385
1187
|
readonly __wbg_set_identitystats_get_inbox_ids: (a: number, b: bigint) => void;
|
|
1386
1188
|
readonly __wbg_set_identitystats_publish_identity_update: (a: number, b: bigint) => void;
|
|
1387
1189
|
readonly __wbg_set_identitystats_verify_smart_contract_wallet_signature: (a: number, b: bigint) => void;
|
|
1190
|
+
readonly __wbg_set_lifetime_not_after: (a: number, b: bigint) => void;
|
|
1191
|
+
readonly __wbg_set_lifetime_not_before: (a: number, b: bigint) => void;
|
|
1192
|
+
readonly __wbg_get_actions_expiresAtNs: (a: number) => [number, bigint];
|
|
1193
|
+
readonly __wbg_get_installation_clientTimestampNs: (a: number) => [number, bigint];
|
|
1194
|
+
readonly __wbg_get_remoteattachmentinfo_filename: (a: number) => [number, number];
|
|
1195
|
+
readonly __wbg_set_actions_expiresAtNs: (a: number, b: number, c: bigint) => void;
|
|
1196
|
+
readonly __wbg_set_installation_clientTimestampNs: (a: number, b: number, c: bigint) => void;
|
|
1388
1197
|
readonly __wbg_get_identitystats_get_identity_updates_v2: (a: number) => bigint;
|
|
1389
1198
|
readonly __wbg_get_identitystats_get_inbox_ids: (a: number) => bigint;
|
|
1390
1199
|
readonly __wbg_get_identitystats_publish_identity_update: (a: number) => bigint;
|
|
1391
1200
|
readonly __wbg_get_identitystats_verify_smart_contract_wallet_signature: (a: number) => bigint;
|
|
1201
|
+
readonly __wbg_get_lifetime_not_after: (a: number) => bigint;
|
|
1202
|
+
readonly __wbg_get_lifetime_not_before: (a: number) => bigint;
|
|
1392
1203
|
readonly __wbg_conversationdebuginfo_free: (a: number, b: number) => void;
|
|
1393
1204
|
readonly __wbg_conversationlistitem_free: (a: number, b: number) => void;
|
|
1394
1205
|
readonly __wbg_conversations_free: (a: number, b: number) => void;
|
|
@@ -1411,7 +1222,17 @@ export interface InitOutput {
|
|
|
1411
1222
|
readonly __wbg_get_creategroupoptions_groupImageUrlSquare: (a: number) => [number, number];
|
|
1412
1223
|
readonly __wbg_get_creategroupoptions_groupName: (a: number) => [number, number];
|
|
1413
1224
|
readonly __wbg_get_creategroupoptions_permissions: (a: number) => number;
|
|
1225
|
+
readonly __wbg_get_groupupdated_addedAdminInboxes: (a: number) => [number, number];
|
|
1226
|
+
readonly __wbg_get_groupupdated_addedInboxes: (a: number) => [number, number];
|
|
1227
|
+
readonly __wbg_get_groupupdated_addedSuperAdminInboxes: (a: number) => [number, number];
|
|
1228
|
+
readonly __wbg_get_groupupdated_initiatedByInboxId: (a: number) => [number, number];
|
|
1229
|
+
readonly __wbg_get_groupupdated_leftInboxes: (a: number) => [number, number];
|
|
1230
|
+
readonly __wbg_get_groupupdated_metadataFieldChanges: (a: number) => [number, number];
|
|
1231
|
+
readonly __wbg_get_groupupdated_removedAdminInboxes: (a: number) => [number, number];
|
|
1232
|
+
readonly __wbg_get_groupupdated_removedInboxes: (a: number) => [number, number];
|
|
1233
|
+
readonly __wbg_get_groupupdated_removedSuperAdminInboxes: (a: number) => [number, number];
|
|
1414
1234
|
readonly __wbg_get_hmackey_key: (a: number) => [number, number];
|
|
1235
|
+
readonly __wbg_get_inbox_inboxId: (a: number) => [number, number];
|
|
1415
1236
|
readonly __wbg_get_listconversationsoptions_consentStates: (a: number) => [number, number];
|
|
1416
1237
|
readonly __wbg_get_listconversationsoptions_conversationType: (a: number) => number;
|
|
1417
1238
|
readonly __wbg_get_listconversationsoptions_createdAfterNs: (a: number) => [number, bigint];
|
|
@@ -1419,6 +1240,143 @@ export interface InitOutput {
|
|
|
1419
1240
|
readonly __wbg_get_listconversationsoptions_includeDuplicateDms: (a: number) => number;
|
|
1420
1241
|
readonly __wbg_get_listconversationsoptions_limit: (a: number) => [number, bigint];
|
|
1421
1242
|
readonly __wbg_get_listconversationsoptions_orderBy: (a: number) => number;
|
|
1243
|
+
readonly __wbg_get_messagedisappearingsettings_inNs: (a: number) => bigint;
|
|
1244
|
+
readonly __wbg_get_metadatafieldchange_fieldName: (a: number) => [number, number];
|
|
1245
|
+
readonly __wbg_get_metadatafieldchange_newValue: (a: number) => [number, number];
|
|
1246
|
+
readonly __wbg_get_metadatafieldchange_oldValue: (a: number) => [number, number];
|
|
1247
|
+
readonly __wbg_get_permissionpolicyset_addAdminPolicy: (a: number) => number;
|
|
1248
|
+
readonly __wbg_get_permissionpolicyset_addMemberPolicy: (a: number) => number;
|
|
1249
|
+
readonly __wbg_get_permissionpolicyset_removeAdminPolicy: (a: number) => number;
|
|
1250
|
+
readonly __wbg_get_permissionpolicyset_removeMemberPolicy: (a: number) => number;
|
|
1251
|
+
readonly __wbg_get_permissionpolicyset_updateGroupDescriptionPolicy: (a: number) => number;
|
|
1252
|
+
readonly __wbg_get_permissionpolicyset_updateGroupImageUrlSquarePolicy: (a: number) => number;
|
|
1253
|
+
readonly __wbg_get_permissionpolicyset_updateGroupNamePolicy: (a: number) => number;
|
|
1254
|
+
readonly __wbg_get_permissionpolicyset_updateMessageDisappearingPolicy: (a: number) => number;
|
|
1255
|
+
readonly __wbg_get_textcontent_content: (a: number) => [number, number];
|
|
1256
|
+
readonly __wbg_get_xmtpcursor_originator_id: (a: number) => number;
|
|
1257
|
+
readonly __wbg_grouppermissions_free: (a: number, b: number) => void;
|
|
1258
|
+
readonly __wbg_groupupdated_free: (a: number, b: number) => void;
|
|
1259
|
+
readonly __wbg_hmackey_free: (a: number, b: number) => void;
|
|
1260
|
+
readonly __wbg_inbox_free: (a: number, b: number) => void;
|
|
1261
|
+
readonly __wbg_listconversationsoptions_free: (a: number, b: number) => void;
|
|
1262
|
+
readonly __wbg_messagedisappearingsettings_free: (a: number, b: number) => void;
|
|
1263
|
+
readonly __wbg_metadatafieldchange_free: (a: number, b: number) => void;
|
|
1264
|
+
readonly __wbg_permissionpolicyset_free: (a: number, b: number) => void;
|
|
1265
|
+
readonly __wbg_set_conversationdebuginfo_cursor: (a: number, b: number, c: number) => void;
|
|
1266
|
+
readonly __wbg_set_conversationdebuginfo_epoch: (a: number, b: bigint) => void;
|
|
1267
|
+
readonly __wbg_set_conversationdebuginfo_forkDetails: (a: number, b: number, c: number) => void;
|
|
1268
|
+
readonly __wbg_set_conversationdebuginfo_isCommitLogForked: (a: number, b: number) => void;
|
|
1269
|
+
readonly __wbg_set_conversationdebuginfo_localCommitLog: (a: number, b: number, c: number) => void;
|
|
1270
|
+
readonly __wbg_set_conversationdebuginfo_maybeForked: (a: number, b: number) => void;
|
|
1271
|
+
readonly __wbg_set_conversationdebuginfo_remoteCommitLog: (a: number, b: number, c: number) => void;
|
|
1272
|
+
readonly __wbg_set_conversationlistitem_conversation: (a: number, b: number) => void;
|
|
1273
|
+
readonly __wbg_set_conversationlistitem_isCommitLogForked: (a: number, b: number) => void;
|
|
1274
|
+
readonly __wbg_set_conversationlistitem_lastMessage: (a: number, b: number) => void;
|
|
1275
|
+
readonly __wbg_set_createdmoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
1276
|
+
readonly __wbg_set_creategroupoptions_appData: (a: number, b: number, c: number) => void;
|
|
1277
|
+
readonly __wbg_set_creategroupoptions_customPermissionPolicySet: (a: number, b: number) => void;
|
|
1278
|
+
readonly __wbg_set_creategroupoptions_groupDescription: (a: number, b: number, c: number) => void;
|
|
1279
|
+
readonly __wbg_set_creategroupoptions_groupImageUrlSquare: (a: number, b: number, c: number) => void;
|
|
1280
|
+
readonly __wbg_set_creategroupoptions_groupName: (a: number, b: number, c: number) => void;
|
|
1281
|
+
readonly __wbg_set_creategroupoptions_permissions: (a: number, b: number) => void;
|
|
1282
|
+
readonly __wbg_set_groupupdated_addedAdminInboxes: (a: number, b: number, c: number) => void;
|
|
1283
|
+
readonly __wbg_set_groupupdated_addedInboxes: (a: number, b: number, c: number) => void;
|
|
1284
|
+
readonly __wbg_set_groupupdated_addedSuperAdminInboxes: (a: number, b: number, c: number) => void;
|
|
1285
|
+
readonly __wbg_set_groupupdated_initiatedByInboxId: (a: number, b: number, c: number) => void;
|
|
1286
|
+
readonly __wbg_set_groupupdated_leftInboxes: (a: number, b: number, c: number) => void;
|
|
1287
|
+
readonly __wbg_set_groupupdated_metadataFieldChanges: (a: number, b: number, c: number) => void;
|
|
1288
|
+
readonly __wbg_set_groupupdated_removedAdminInboxes: (a: number, b: number, c: number) => void;
|
|
1289
|
+
readonly __wbg_set_groupupdated_removedInboxes: (a: number, b: number, c: number) => void;
|
|
1290
|
+
readonly __wbg_set_groupupdated_removedSuperAdminInboxes: (a: number, b: number, c: number) => void;
|
|
1291
|
+
readonly __wbg_set_listconversationsoptions_consentStates: (a: number, b: number, c: number) => void;
|
|
1292
|
+
readonly __wbg_set_listconversationsoptions_conversationType: (a: number, b: number) => void;
|
|
1293
|
+
readonly __wbg_set_listconversationsoptions_createdAfterNs: (a: number, b: number, c: bigint) => void;
|
|
1294
|
+
readonly __wbg_set_listconversationsoptions_createdBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
1295
|
+
readonly __wbg_set_listconversationsoptions_includeDuplicateDms: (a: number, b: number) => void;
|
|
1296
|
+
readonly __wbg_set_listconversationsoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
1297
|
+
readonly __wbg_set_listconversationsoptions_orderBy: (a: number, b: number) => void;
|
|
1298
|
+
readonly __wbg_set_messagedisappearingsettings_inNs: (a: number, b: bigint) => void;
|
|
1299
|
+
readonly __wbg_set_metadatafieldchange_newValue: (a: number, b: number, c: number) => void;
|
|
1300
|
+
readonly __wbg_set_metadatafieldchange_oldValue: (a: number, b: number, c: number) => void;
|
|
1301
|
+
readonly __wbg_set_permissionpolicyset_addAdminPolicy: (a: number, b: number) => void;
|
|
1302
|
+
readonly __wbg_set_permissionpolicyset_addMemberPolicy: (a: number, b: number) => void;
|
|
1303
|
+
readonly __wbg_set_permissionpolicyset_removeAdminPolicy: (a: number, b: number) => void;
|
|
1304
|
+
readonly __wbg_set_permissionpolicyset_removeMemberPolicy: (a: number, b: number) => void;
|
|
1305
|
+
readonly __wbg_set_permissionpolicyset_updateGroupDescriptionPolicy: (a: number, b: number) => void;
|
|
1306
|
+
readonly __wbg_set_permissionpolicyset_updateGroupImageUrlSquarePolicy: (a: number, b: number) => void;
|
|
1307
|
+
readonly __wbg_set_permissionpolicyset_updateGroupNamePolicy: (a: number, b: number) => void;
|
|
1308
|
+
readonly __wbg_set_permissionpolicyset_updateMessageDisappearingPolicy: (a: number, b: number) => void;
|
|
1309
|
+
readonly __wbg_set_xmtpcursor_originator_id: (a: number, b: number) => void;
|
|
1310
|
+
readonly __wbg_streamcloser_free: (a: number, b: number) => void;
|
|
1311
|
+
readonly __wbg_textcontent_free: (a: number, b: number) => void;
|
|
1312
|
+
readonly __wbg_xmtpcursor_free: (a: number, b: number) => void;
|
|
1313
|
+
readonly conversationlistitem_new: (a: number, b: number, c: number) => number;
|
|
1314
|
+
readonly conversations_createDm: (a: number, b: any, c: number) => any;
|
|
1315
|
+
readonly conversations_createDmByInboxId: (a: number, b: number, c: number, d: number) => any;
|
|
1316
|
+
readonly conversations_createGroup: (a: number, b: number, c: number, d: number) => any;
|
|
1317
|
+
readonly conversations_createGroupByInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
1318
|
+
readonly conversations_createGroupOptimistic: (a: number, b: number) => [number, number, number];
|
|
1319
|
+
readonly conversations_findDmByTargetInboxId: (a: number, b: number, c: number) => [number, number, number];
|
|
1320
|
+
readonly conversations_findGroupById: (a: number, b: number, c: number) => [number, number, number];
|
|
1321
|
+
readonly conversations_findMessageById: (a: number, b: number, c: number) => [number, number, number];
|
|
1322
|
+
readonly conversations_getHmacKeys: (a: number) => [number, number, number];
|
|
1323
|
+
readonly conversations_list: (a: number, b: number) => [number, number, number];
|
|
1324
|
+
readonly conversations_stream: (a: number, b: any, c: number) => [number, number, number];
|
|
1325
|
+
readonly conversations_streamAllMessages: (a: number, b: any, c: number, d: number, e: number) => [number, number, number];
|
|
1326
|
+
readonly conversations_streamConsent: (a: number, b: any) => [number, number, number];
|
|
1327
|
+
readonly conversations_streamLocal: (a: number, b: number) => any;
|
|
1328
|
+
readonly conversations_streamMessageDeletions: (a: number, b: any) => [number, number, number];
|
|
1329
|
+
readonly conversations_streamPreferences: (a: number, b: any) => [number, number, number];
|
|
1330
|
+
readonly conversations_sync: (a: number) => any;
|
|
1331
|
+
readonly conversations_syncAllConversations: (a: number, b: number, c: number) => any;
|
|
1332
|
+
readonly createdmoptions_new: (a: number) => number;
|
|
1333
|
+
readonly creategroupoptions_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number) => number;
|
|
1334
|
+
readonly decodeGroupUpdated: (a: any) => [number, number, number];
|
|
1335
|
+
readonly decodeWalletSendCalls: (a: any) => [number, number, number];
|
|
1336
|
+
readonly decodeXmtpText: (a: any) => [number, number, number, number];
|
|
1337
|
+
readonly encodeWalletSendCalls: (a: any) => [number, number, number];
|
|
1338
|
+
readonly encodeXmtpText: (a: number, b: number) => [number, number, number];
|
|
1339
|
+
readonly grouppermissions_policySet: (a: number) => [number, number, number];
|
|
1340
|
+
readonly grouppermissions_policyType: (a: number) => [number, number, number];
|
|
1341
|
+
readonly listconversationsoptions_new: (a: number, b: number, c: number, d: number, e: bigint, f: number, g: bigint, h: number, i: number, j: bigint, k: number) => number;
|
|
1342
|
+
readonly messagedisappearingsettings_new: (a: bigint, b: bigint) => number;
|
|
1343
|
+
readonly permissionpolicyset_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
1344
|
+
readonly streamcloser_end: (a: number) => void;
|
|
1345
|
+
readonly streamcloser_endAndWait: (a: number) => any;
|
|
1346
|
+
readonly streamcloser_isClosed: (a: number) => number;
|
|
1347
|
+
readonly streamcloser_waitForReady: (a: number) => any;
|
|
1348
|
+
readonly __wbg_set_hmackey_key: (a: number, b: number, c: number) => void;
|
|
1349
|
+
readonly __wbg_set_inbox_inboxId: (a: number, b: number, c: number) => void;
|
|
1350
|
+
readonly __wbg_set_metadatafieldchange_fieldName: (a: number, b: number, c: number) => void;
|
|
1351
|
+
readonly __wbg_set_textcontent_content: (a: number, b: number, c: number) => void;
|
|
1352
|
+
readonly __wbg_set_hmackey_epoch: (a: number, b: bigint) => void;
|
|
1353
|
+
readonly __wbg_set_messagedisappearingsettings_fromNs: (a: number, b: bigint) => void;
|
|
1354
|
+
readonly __wbg_set_xmtpcursor_sequence_id: (a: number, b: bigint) => void;
|
|
1355
|
+
readonly __wbg_get_creategroupoptions_messageDisappearingSettings: (a: number) => number;
|
|
1356
|
+
readonly __wbg_get_hmackey_epoch: (a: number) => bigint;
|
|
1357
|
+
readonly __wbg_get_messagedisappearingsettings_fromNs: (a: number) => bigint;
|
|
1358
|
+
readonly __wbg_get_xmtpcursor_sequence_id: (a: number) => bigint;
|
|
1359
|
+
readonly __wbg_set_creategroupoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
1360
|
+
readonly __wbg_attachment_free: (a: number, b: number) => void;
|
|
1361
|
+
readonly __wbg_contenttypeid_free: (a: number, b: number) => void;
|
|
1362
|
+
readonly __wbg_decodedmessagecontent_free: (a: number, b: number) => void;
|
|
1363
|
+
readonly __wbg_encodedcontent_free: (a: number, b: number) => void;
|
|
1364
|
+
readonly __wbg_enrichedreply_free: (a: number, b: number) => void;
|
|
1365
|
+
readonly __wbg_get_attachment_content: (a: number) => [number, number];
|
|
1366
|
+
readonly __wbg_get_attachment_filename: (a: number) => [number, number];
|
|
1367
|
+
readonly __wbg_get_attachment_mimeType: (a: number) => [number, number];
|
|
1368
|
+
readonly __wbg_get_contenttypeid_authorityId: (a: number) => [number, number];
|
|
1369
|
+
readonly __wbg_get_contenttypeid_typeId: (a: number) => [number, number];
|
|
1370
|
+
readonly __wbg_get_contenttypeid_versionMajor: (a: number) => number;
|
|
1371
|
+
readonly __wbg_get_contenttypeid_versionMinor: (a: number) => number;
|
|
1372
|
+
readonly __wbg_get_encodedcontent_compression: (a: number) => number;
|
|
1373
|
+
readonly __wbg_get_encodedcontent_content: (a: number) => any;
|
|
1374
|
+
readonly __wbg_get_encodedcontent_fallback: (a: number) => [number, number];
|
|
1375
|
+
readonly __wbg_get_encodedcontent_parameters: (a: number) => any;
|
|
1376
|
+
readonly __wbg_get_encodedcontent_type: (a: number) => number;
|
|
1377
|
+
readonly __wbg_get_intent_actionId: (a: number) => [number, number];
|
|
1378
|
+
readonly __wbg_get_intent_id: (a: number) => [number, number];
|
|
1379
|
+
readonly __wbg_get_intent_metadata: (a: number) => any;
|
|
1422
1380
|
readonly __wbg_get_listmessagesoptions_contentTypes: (a: number) => [number, number];
|
|
1423
1381
|
readonly __wbg_get_listmessagesoptions_deliveryStatus: (a: number) => number;
|
|
1424
1382
|
readonly __wbg_get_listmessagesoptions_direction: (a: number) => number;
|
|
@@ -1427,6 +1385,9 @@ export interface InitOutput {
|
|
|
1427
1385
|
readonly __wbg_get_listmessagesoptions_insertedAfterNs: (a: number) => [number, bigint];
|
|
1428
1386
|
readonly __wbg_get_listmessagesoptions_insertedBeforeNs: (a: number) => [number, bigint];
|
|
1429
1387
|
readonly __wbg_get_listmessagesoptions_kind: (a: number) => number;
|
|
1388
|
+
readonly __wbg_get_listmessagesoptions_limit: (a: number) => [number, bigint];
|
|
1389
|
+
readonly __wbg_get_listmessagesoptions_sentAfterNs: (a: number) => [number, bigint];
|
|
1390
|
+
readonly __wbg_get_listmessagesoptions_sentBeforeNs: (a: number) => [number, bigint];
|
|
1430
1391
|
readonly __wbg_get_listmessagesoptions_sortBy: (a: number) => number;
|
|
1431
1392
|
readonly __wbg_get_message_content: (a: number) => number;
|
|
1432
1393
|
readonly __wbg_get_message_convoId: (a: number) => [number, number];
|
|
@@ -1434,50 +1395,47 @@ export interface InitOutput {
|
|
|
1434
1395
|
readonly __wbg_get_message_id: (a: number) => [number, number];
|
|
1435
1396
|
readonly __wbg_get_message_kind: (a: number) => number;
|
|
1436
1397
|
readonly __wbg_get_message_senderInboxId: (a: number) => [number, number];
|
|
1437
|
-
readonly
|
|
1398
|
+
readonly __wbg_get_message_sentAtNs: (a: number) => bigint;
|
|
1438
1399
|
readonly __wbg_get_messagewithreactions_message: (a: number) => number;
|
|
1439
1400
|
readonly __wbg_get_messagewithreactions_reactions: (a: number) => [number, number];
|
|
1440
|
-
readonly
|
|
1441
|
-
readonly
|
|
1442
|
-
readonly
|
|
1443
|
-
readonly
|
|
1444
|
-
readonly
|
|
1445
|
-
readonly
|
|
1446
|
-
readonly
|
|
1447
|
-
readonly
|
|
1448
|
-
readonly
|
|
1449
|
-
readonly
|
|
1450
|
-
readonly
|
|
1451
|
-
readonly
|
|
1401
|
+
readonly __wbg_get_remoteattachment_contentDigest: (a: number) => [number, number];
|
|
1402
|
+
readonly __wbg_get_remoteattachment_contentLength: (a: number) => number;
|
|
1403
|
+
readonly __wbg_get_remoteattachment_filename: (a: number) => [number, number];
|
|
1404
|
+
readonly __wbg_get_remoteattachment_nonce: (a: number) => [number, number];
|
|
1405
|
+
readonly __wbg_get_remoteattachment_salt: (a: number) => [number, number];
|
|
1406
|
+
readonly __wbg_get_remoteattachment_scheme: (a: number) => [number, number];
|
|
1407
|
+
readonly __wbg_get_remoteattachment_secret: (a: number) => [number, number];
|
|
1408
|
+
readonly __wbg_get_remoteattachment_url: (a: number) => [number, number];
|
|
1409
|
+
readonly __wbg_get_reply_content: (a: number) => number;
|
|
1410
|
+
readonly __wbg_get_reply_reference: (a: number) => [number, number];
|
|
1411
|
+
readonly __wbg_get_transactionmetadata_amount: (a: number) => number;
|
|
1412
|
+
readonly __wbg_get_transactionmetadata_currency: (a: number) => [number, number];
|
|
1413
|
+
readonly __wbg_get_transactionmetadata_decimals: (a: number) => number;
|
|
1414
|
+
readonly __wbg_get_transactionmetadata_fromAddress: (a: number) => [number, number];
|
|
1415
|
+
readonly __wbg_get_transactionmetadata_toAddress: (a: number) => [number, number];
|
|
1416
|
+
readonly __wbg_get_transactionmetadata_transactionType: (a: number) => [number, number];
|
|
1417
|
+
readonly __wbg_get_transactionreference_metadata: (a: number) => number;
|
|
1418
|
+
readonly __wbg_get_transactionreference_namespace: (a: number) => [number, number];
|
|
1419
|
+
readonly __wbg_get_transactionreference_networkId: (a: number) => [number, number];
|
|
1420
|
+
readonly __wbg_get_transactionreference_reference: (a: number) => [number, number];
|
|
1421
|
+
readonly __wbg_intent_free: (a: number, b: number) => void;
|
|
1452
1422
|
readonly __wbg_listmessagesoptions_free: (a: number, b: number) => void;
|
|
1453
1423
|
readonly __wbg_message_free: (a: number, b: number) => void;
|
|
1454
|
-
readonly __wbg_messagedisappearingsettings_free: (a: number, b: number) => void;
|
|
1455
1424
|
readonly __wbg_messagewithreactions_free: (a: number, b: number) => void;
|
|
1456
|
-
readonly
|
|
1457
|
-
readonly
|
|
1458
|
-
readonly
|
|
1459
|
-
readonly
|
|
1460
|
-
readonly
|
|
1461
|
-
readonly
|
|
1462
|
-
readonly
|
|
1463
|
-
readonly
|
|
1464
|
-
readonly
|
|
1465
|
-
readonly
|
|
1466
|
-
readonly
|
|
1467
|
-
readonly
|
|
1468
|
-
readonly
|
|
1469
|
-
readonly
|
|
1470
|
-
readonly __wbg_set_creategroupoptions_groupDescription: (a: number, b: number, c: number) => void;
|
|
1471
|
-
readonly __wbg_set_creategroupoptions_groupImageUrlSquare: (a: number, b: number, c: number) => void;
|
|
1472
|
-
readonly __wbg_set_creategroupoptions_groupName: (a: number, b: number, c: number) => void;
|
|
1473
|
-
readonly __wbg_set_creategroupoptions_permissions: (a: number, b: number) => void;
|
|
1474
|
-
readonly __wbg_set_listconversationsoptions_consentStates: (a: number, b: number, c: number) => void;
|
|
1475
|
-
readonly __wbg_set_listconversationsoptions_conversationType: (a: number, b: number) => void;
|
|
1476
|
-
readonly __wbg_set_listconversationsoptions_createdAfterNs: (a: number, b: number, c: bigint) => void;
|
|
1477
|
-
readonly __wbg_set_listconversationsoptions_createdBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
1478
|
-
readonly __wbg_set_listconversationsoptions_includeDuplicateDms: (a: number, b: number) => void;
|
|
1479
|
-
readonly __wbg_set_listconversationsoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
1480
|
-
readonly __wbg_set_listconversationsoptions_orderBy: (a: number, b: number) => void;
|
|
1425
|
+
readonly __wbg_readreceipt_free: (a: number, b: number) => void;
|
|
1426
|
+
readonly __wbg_remoteattachment_free: (a: number, b: number) => void;
|
|
1427
|
+
readonly __wbg_reply_free: (a: number, b: number) => void;
|
|
1428
|
+
readonly __wbg_set_attachment_content: (a: number, b: number, c: number) => void;
|
|
1429
|
+
readonly __wbg_set_attachment_filename: (a: number, b: number, c: number) => void;
|
|
1430
|
+
readonly __wbg_set_attachment_mimeType: (a: number, b: number, c: number) => void;
|
|
1431
|
+
readonly __wbg_set_contenttypeid_versionMajor: (a: number, b: number) => void;
|
|
1432
|
+
readonly __wbg_set_contenttypeid_versionMinor: (a: number, b: number) => void;
|
|
1433
|
+
readonly __wbg_set_encodedcontent_compression: (a: number, b: number) => void;
|
|
1434
|
+
readonly __wbg_set_encodedcontent_content: (a: number, b: any) => void;
|
|
1435
|
+
readonly __wbg_set_encodedcontent_fallback: (a: number, b: number, c: number) => void;
|
|
1436
|
+
readonly __wbg_set_encodedcontent_parameters: (a: number, b: any) => void;
|
|
1437
|
+
readonly __wbg_set_encodedcontent_type: (a: number, b: number) => void;
|
|
1438
|
+
readonly __wbg_set_intent_metadata: (a: number, b: any) => void;
|
|
1481
1439
|
readonly __wbg_set_listmessagesoptions_contentTypes: (a: number, b: number, c: number) => void;
|
|
1482
1440
|
readonly __wbg_set_listmessagesoptions_deliveryStatus: (a: number, b: number) => void;
|
|
1483
1441
|
readonly __wbg_set_listmessagesoptions_direction: (a: number, b: number) => void;
|
|
@@ -1486,6 +1444,9 @@ export interface InitOutput {
|
|
|
1486
1444
|
readonly __wbg_set_listmessagesoptions_insertedAfterNs: (a: number, b: number, c: bigint) => void;
|
|
1487
1445
|
readonly __wbg_set_listmessagesoptions_insertedBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
1488
1446
|
readonly __wbg_set_listmessagesoptions_kind: (a: number, b: number) => void;
|
|
1447
|
+
readonly __wbg_set_listmessagesoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
1448
|
+
readonly __wbg_set_listmessagesoptions_sentAfterNs: (a: number, b: number, c: bigint) => void;
|
|
1449
|
+
readonly __wbg_set_listmessagesoptions_sentBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
1489
1450
|
readonly __wbg_set_listmessagesoptions_sortBy: (a: number, b: number) => void;
|
|
1490
1451
|
readonly __wbg_set_message_content: (a: number, b: number) => void;
|
|
1491
1452
|
readonly __wbg_set_message_convoId: (a: number, b: number, c: number) => void;
|
|
@@ -1493,64 +1454,168 @@ export interface InitOutput {
|
|
|
1493
1454
|
readonly __wbg_set_message_id: (a: number, b: number, c: number) => void;
|
|
1494
1455
|
readonly __wbg_set_message_kind: (a: number, b: number) => void;
|
|
1495
1456
|
readonly __wbg_set_message_senderInboxId: (a: number, b: number, c: number) => void;
|
|
1496
|
-
readonly
|
|
1457
|
+
readonly __wbg_set_message_sentAtNs: (a: number, b: bigint) => void;
|
|
1497
1458
|
readonly __wbg_set_messagewithreactions_message: (a: number, b: number) => void;
|
|
1498
1459
|
readonly __wbg_set_messagewithreactions_reactions: (a: number, b: number, c: number) => void;
|
|
1499
|
-
readonly
|
|
1500
|
-
readonly
|
|
1501
|
-
readonly
|
|
1502
|
-
readonly
|
|
1503
|
-
readonly
|
|
1504
|
-
readonly
|
|
1505
|
-
readonly
|
|
1506
|
-
readonly
|
|
1507
|
-
readonly
|
|
1508
|
-
readonly
|
|
1509
|
-
readonly
|
|
1510
|
-
readonly
|
|
1511
|
-
readonly
|
|
1512
|
-
readonly
|
|
1513
|
-
readonly
|
|
1514
|
-
readonly
|
|
1515
|
-
readonly
|
|
1516
|
-
readonly
|
|
1517
|
-
readonly
|
|
1518
|
-
readonly
|
|
1519
|
-
readonly
|
|
1520
|
-
readonly
|
|
1521
|
-
readonly
|
|
1522
|
-
readonly
|
|
1523
|
-
readonly
|
|
1524
|
-
readonly
|
|
1525
|
-
readonly
|
|
1526
|
-
readonly
|
|
1527
|
-
readonly
|
|
1528
|
-
readonly
|
|
1529
|
-
readonly
|
|
1530
|
-
readonly
|
|
1531
|
-
readonly
|
|
1532
|
-
readonly
|
|
1460
|
+
readonly __wbg_set_remoteattachment_contentLength: (a: number, b: number) => void;
|
|
1461
|
+
readonly __wbg_set_remoteattachment_filename: (a: number, b: number, c: number) => void;
|
|
1462
|
+
readonly __wbg_set_remoteattachment_nonce: (a: number, b: number, c: number) => void;
|
|
1463
|
+
readonly __wbg_set_remoteattachment_salt: (a: number, b: number, c: number) => void;
|
|
1464
|
+
readonly __wbg_set_remoteattachment_scheme: (a: number, b: number, c: number) => void;
|
|
1465
|
+
readonly __wbg_set_remoteattachment_secret: (a: number, b: number, c: number) => void;
|
|
1466
|
+
readonly __wbg_set_reply_content: (a: number, b: number) => void;
|
|
1467
|
+
readonly __wbg_set_transactionmetadata_amount: (a: number, b: number) => void;
|
|
1468
|
+
readonly __wbg_set_transactionmetadata_decimals: (a: number, b: number) => void;
|
|
1469
|
+
readonly __wbg_set_transactionmetadata_fromAddress: (a: number, b: number, c: number) => void;
|
|
1470
|
+
readonly __wbg_set_transactionmetadata_transactionType: (a: number, b: number, c: number) => void;
|
|
1471
|
+
readonly __wbg_set_transactionreference_metadata: (a: number, b: number) => void;
|
|
1472
|
+
readonly __wbg_set_transactionreference_namespace: (a: number, b: number, c: number) => void;
|
|
1473
|
+
readonly __wbg_set_transactionreference_networkId: (a: number, b: number, c: number) => void;
|
|
1474
|
+
readonly __wbg_set_transactionreference_reference: (a: number, b: number, c: number) => void;
|
|
1475
|
+
readonly __wbg_transactionmetadata_free: (a: number, b: number) => void;
|
|
1476
|
+
readonly __wbg_transactionreference_free: (a: number, b: number) => void;
|
|
1477
|
+
readonly contenttypeid_new: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
1478
|
+
readonly decodeAttachment: (a: any) => [number, number, number];
|
|
1479
|
+
readonly decodeIntent: (a: any) => [number, number, number];
|
|
1480
|
+
readonly decodeReadReceipt: (a: any) => [number, number, number];
|
|
1481
|
+
readonly decodeRemoteAttachment: (a: any) => [number, number, number];
|
|
1482
|
+
readonly decodeReply: (a: any) => [number, number, number];
|
|
1483
|
+
readonly decodeTransactionReference: (a: any) => [number, number, number];
|
|
1484
|
+
readonly decodedmessagecontent_asActions: (a: number) => [number, number, number];
|
|
1485
|
+
readonly decodedmessagecontent_asAttachment: (a: number) => number;
|
|
1486
|
+
readonly decodedmessagecontent_asCustom: (a: number) => number;
|
|
1487
|
+
readonly decodedmessagecontent_asGroupUpdated: (a: number) => number;
|
|
1488
|
+
readonly decodedmessagecontent_asIntent: (a: number) => [number, number, number];
|
|
1489
|
+
readonly decodedmessagecontent_asLeaveRequest: (a: number) => number;
|
|
1490
|
+
readonly decodedmessagecontent_asMultiRemoteAttachment: (a: number) => number;
|
|
1491
|
+
readonly decodedmessagecontent_asReaction: (a: number) => number;
|
|
1492
|
+
readonly decodedmessagecontent_asReadReceipt: (a: number) => number;
|
|
1493
|
+
readonly decodedmessagecontent_asRemoteAttachment: (a: number) => number;
|
|
1494
|
+
readonly decodedmessagecontent_asReply: (a: number) => number;
|
|
1495
|
+
readonly decodedmessagecontent_asText: (a: number) => number;
|
|
1496
|
+
readonly decodedmessagecontent_asTransactionReference: (a: number) => number;
|
|
1497
|
+
readonly decodedmessagecontent_asWalletSendCalls: (a: number) => [number, number, number];
|
|
1498
|
+
readonly decodedmessagecontent_payloadType: (a: number) => number;
|
|
1499
|
+
readonly encodeAttachment: (a: number) => [number, number, number];
|
|
1500
|
+
readonly encodeIntent: (a: number) => [number, number, number];
|
|
1501
|
+
readonly encodeReadReceipt: (a: number) => [number, number, number];
|
|
1502
|
+
readonly encodeRemoteAttachment: (a: number) => [number, number, number];
|
|
1503
|
+
readonly encodeReply: (a: number) => [number, number, number];
|
|
1504
|
+
readonly encodeTransactionReference: (a: number) => [number, number, number];
|
|
1505
|
+
readonly encodedcontent_new: (a: number, b: any, c: number, d: number, e: number, f: any) => number;
|
|
1506
|
+
readonly enrichedreply_content: (a: number) => number;
|
|
1507
|
+
readonly enrichedreply_inReplyTo: (a: number) => number;
|
|
1508
|
+
readonly enrichedreply_referenceId: (a: number) => [number, number];
|
|
1509
|
+
readonly intent_new: (a: number, b: number, c: number, d: number, e: any) => number;
|
|
1533
1510
|
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, p: number, q: number, r: bigint, s: number, t: bigint) => number;
|
|
1534
1511
|
readonly message_new: (a: number, b: number, c: bigint, d: number, e: number, f: number, g: number, h: number, i: number, j: number) => number;
|
|
1535
|
-
readonly
|
|
1536
|
-
readonly
|
|
1537
|
-
readonly
|
|
1538
|
-
readonly
|
|
1539
|
-
readonly
|
|
1540
|
-
readonly
|
|
1541
|
-
readonly
|
|
1542
|
-
readonly
|
|
1543
|
-
readonly
|
|
1544
|
-
readonly
|
|
1545
|
-
readonly
|
|
1546
|
-
readonly
|
|
1547
|
-
readonly
|
|
1548
|
-
readonly
|
|
1549
|
-
readonly
|
|
1550
|
-
readonly
|
|
1551
|
-
readonly
|
|
1552
|
-
readonly
|
|
1553
|
-
readonly
|
|
1512
|
+
readonly reply_new: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
1513
|
+
readonly __wbg_set_contenttypeid_authorityId: (a: number, b: number, c: number) => void;
|
|
1514
|
+
readonly __wbg_set_contenttypeid_typeId: (a: number, b: number, c: number) => void;
|
|
1515
|
+
readonly __wbg_set_intent_actionId: (a: number, b: number, c: number) => void;
|
|
1516
|
+
readonly __wbg_set_intent_id: (a: number, b: number, c: number) => void;
|
|
1517
|
+
readonly __wbg_set_remoteattachment_contentDigest: (a: number, b: number, c: number) => void;
|
|
1518
|
+
readonly __wbg_set_remoteattachment_url: (a: number, b: number, c: number) => void;
|
|
1519
|
+
readonly __wbg_set_reply_reference: (a: number, b: number, c: number) => void;
|
|
1520
|
+
readonly __wbg_set_transactionmetadata_currency: (a: number, b: number, c: number) => void;
|
|
1521
|
+
readonly __wbg_set_transactionmetadata_toAddress: (a: number, b: number, c: number) => void;
|
|
1522
|
+
readonly __wbg_set_reply_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
1523
|
+
readonly __wbg_get_reply_referenceInboxId: (a: number) => [number, number];
|
|
1524
|
+
readonly __wbg_conversation_free: (a: number, b: number) => void;
|
|
1525
|
+
readonly __wbg_get_groupmember_accountIdentifiers: (a: number) => [number, number];
|
|
1526
|
+
readonly __wbg_get_groupmember_consentState: (a: number) => number;
|
|
1527
|
+
readonly __wbg_get_groupmember_inboxId: (a: number) => [number, number];
|
|
1528
|
+
readonly __wbg_get_groupmember_installationIds: (a: number) => [number, number];
|
|
1529
|
+
readonly __wbg_get_groupmember_permissionLevel: (a: number) => number;
|
|
1530
|
+
readonly __wbg_get_sendmessageopts_shouldPush: (a: number) => number;
|
|
1531
|
+
readonly __wbg_groupmember_free: (a: number, b: number) => void;
|
|
1532
|
+
readonly __wbg_groupmetadata_free: (a: number, b: number) => void;
|
|
1533
|
+
readonly __wbg_sendmessageopts_free: (a: number, b: number) => void;
|
|
1534
|
+
readonly __wbg_set_groupmember_accountIdentifiers: (a: number, b: number, c: number) => void;
|
|
1535
|
+
readonly __wbg_set_groupmember_consentState: (a: number, b: number) => void;
|
|
1536
|
+
readonly __wbg_set_groupmember_inboxId: (a: number, b: number, c: number) => void;
|
|
1537
|
+
readonly __wbg_set_groupmember_installationIds: (a: number, b: number, c: number) => void;
|
|
1538
|
+
readonly __wbg_set_groupmember_permissionLevel: (a: number, b: number) => void;
|
|
1539
|
+
readonly __wbg_set_sendmessageopts_shouldPush: (a: number, b: number) => void;
|
|
1540
|
+
readonly conversation_addAdmin: (a: number, b: number, c: number) => any;
|
|
1541
|
+
readonly conversation_addMembers: (a: number, b: number, c: number) => any;
|
|
1542
|
+
readonly conversation_addMembersByInboxId: (a: number, b: number, c: number) => any;
|
|
1543
|
+
readonly conversation_addSuperAdmin: (a: number, b: number, c: number) => any;
|
|
1544
|
+
readonly conversation_addedByInboxId: (a: number) => [number, number, number, number];
|
|
1545
|
+
readonly conversation_adminList: (a: number) => [number, number, number, number];
|
|
1546
|
+
readonly conversation_appData: (a: number) => [number, number, number, number];
|
|
1547
|
+
readonly conversation_countMessages: (a: number, b: number) => any;
|
|
1548
|
+
readonly conversation_createdAtNs: (a: number) => bigint;
|
|
1549
|
+
readonly conversation_dmPeerInboxId: (a: number) => [number, number, number, number];
|
|
1550
|
+
readonly conversation_findDuplicateDms: (a: number) => any;
|
|
1551
|
+
readonly conversation_findEnrichedMessages: (a: number, b: number) => any;
|
|
1552
|
+
readonly conversation_findMessages: (a: number, b: number) => any;
|
|
1553
|
+
readonly conversation_findMessagesWithReactions: (a: number, b: number) => any;
|
|
1554
|
+
readonly conversation_getDebugInfo: (a: number) => any;
|
|
1555
|
+
readonly conversation_getHmacKeys: (a: number) => [number, number, number];
|
|
1556
|
+
readonly conversation_getLastReadTimes: (a: number) => any;
|
|
1557
|
+
readonly conversation_groupDescription: (a: number) => [number, number, number, number];
|
|
1558
|
+
readonly conversation_groupImageUrlSquare: (a: number) => [number, number, number, number];
|
|
1559
|
+
readonly conversation_groupMetadata: (a: number) => any;
|
|
1560
|
+
readonly conversation_groupName: (a: number) => [number, number, number, number];
|
|
1561
|
+
readonly conversation_groupPermissions: (a: number) => [number, number, number];
|
|
1562
|
+
readonly conversation_id: (a: number) => [number, number];
|
|
1563
|
+
readonly conversation_isActive: (a: number) => [number, number, number];
|
|
1564
|
+
readonly conversation_isAdmin: (a: number, b: number, c: number) => [number, number, number];
|
|
1565
|
+
readonly conversation_isMessageDisappearingEnabled: (a: number) => [number, number, number];
|
|
1566
|
+
readonly conversation_isSuperAdmin: (a: number, b: number, c: number) => [number, number, number];
|
|
1567
|
+
readonly conversation_leaveGroup: (a: number) => any;
|
|
1568
|
+
readonly conversation_listMembers: (a: number) => any;
|
|
1569
|
+
readonly conversation_membershipState: (a: number) => [number, number, number];
|
|
1570
|
+
readonly conversation_messageDisappearingSettings: (a: number) => [number, number, number];
|
|
1571
|
+
readonly conversation_pausedForVersion: (a: number) => [number, number, number, number];
|
|
1572
|
+
readonly conversation_processStreamedGroupMessage: (a: number, b: any) => any;
|
|
1573
|
+
readonly conversation_publishMessages: (a: number) => any;
|
|
1574
|
+
readonly conversation_removeAdmin: (a: number, b: number, c: number) => any;
|
|
1575
|
+
readonly conversation_removeMembers: (a: number, b: number, c: number) => any;
|
|
1576
|
+
readonly conversation_removeMembersByInboxId: (a: number, b: number, c: number) => any;
|
|
1577
|
+
readonly conversation_removeMessageDisappearingSettings: (a: number) => any;
|
|
1578
|
+
readonly conversation_removeSuperAdmin: (a: number, b: number, c: number) => any;
|
|
1579
|
+
readonly conversation_send: (a: number, b: number, c: number) => any;
|
|
1580
|
+
readonly conversation_sendOptimistic: (a: number, b: number, c: number) => [number, number, number, number];
|
|
1581
|
+
readonly conversation_stream: (a: number, b: any) => [number, number, number];
|
|
1582
|
+
readonly conversation_superAdminList: (a: number) => [number, number, number, number];
|
|
1583
|
+
readonly conversation_sync: (a: number) => any;
|
|
1584
|
+
readonly conversation_updateAppData: (a: number, b: number, c: number) => any;
|
|
1585
|
+
readonly conversation_updateGroupDescription: (a: number, b: number, c: number) => any;
|
|
1586
|
+
readonly conversation_updateGroupImageUrlSquare: (a: number, b: number, c: number) => any;
|
|
1587
|
+
readonly conversation_updateGroupName: (a: number, b: number, c: number) => any;
|
|
1588
|
+
readonly conversation_updateMessageDisappearingSettings: (a: number, b: number) => any;
|
|
1589
|
+
readonly conversation_updatePermissionPolicy: (a: number, b: number, c: number, d: number) => any;
|
|
1590
|
+
readonly groupmember_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
1591
|
+
readonly groupmetadata_conversationType: (a: number) => [number, number];
|
|
1592
|
+
readonly groupmetadata_creatorInboxId: (a: number) => [number, number];
|
|
1593
|
+
readonly sendmessageopts_new: (a: number) => number;
|
|
1594
|
+
readonly __wbg_decodedmessage_free: (a: number, b: number) => void;
|
|
1595
|
+
readonly __wbg_get_decodedmessage_content: (a: number) => number;
|
|
1596
|
+
readonly __wbg_get_decodedmessage_content_type: (a: number) => number;
|
|
1597
|
+
readonly __wbg_get_decodedmessage_conversation_id: (a: number) => [number, number];
|
|
1598
|
+
readonly __wbg_get_decodedmessage_delivery_status: (a: number) => number;
|
|
1599
|
+
readonly __wbg_get_decodedmessage_fallback_text: (a: number) => [number, number];
|
|
1600
|
+
readonly __wbg_get_decodedmessage_id: (a: number) => [number, number];
|
|
1601
|
+
readonly __wbg_get_decodedmessage_kind: (a: number) => number;
|
|
1602
|
+
readonly __wbg_get_decodedmessage_num_replies: (a: number) => bigint;
|
|
1603
|
+
readonly __wbg_get_decodedmessage_reactions: (a: number) => [number, number];
|
|
1604
|
+
readonly __wbg_get_decodedmessage_sender_inbox_id: (a: number) => [number, number];
|
|
1605
|
+
readonly __wbg_get_decodedmessage_sender_installation_id: (a: number) => [number, number];
|
|
1606
|
+
readonly __wbg_get_decodedmessage_sent_at_ns: (a: number) => bigint;
|
|
1607
|
+
readonly __wbg_set_decodedmessage_content: (a: number, b: number) => void;
|
|
1608
|
+
readonly __wbg_set_decodedmessage_content_type: (a: number, b: number) => void;
|
|
1609
|
+
readonly __wbg_set_decodedmessage_conversation_id: (a: number, b: number, c: number) => void;
|
|
1610
|
+
readonly __wbg_set_decodedmessage_delivery_status: (a: number, b: number) => void;
|
|
1611
|
+
readonly __wbg_set_decodedmessage_fallback_text: (a: number, b: number, c: number) => void;
|
|
1612
|
+
readonly __wbg_set_decodedmessage_id: (a: number, b: number, c: number) => void;
|
|
1613
|
+
readonly __wbg_set_decodedmessage_kind: (a: number, b: number) => void;
|
|
1614
|
+
readonly __wbg_set_decodedmessage_num_replies: (a: number, b: bigint) => void;
|
|
1615
|
+
readonly __wbg_set_decodedmessage_reactions: (a: number, b: number, c: number) => void;
|
|
1616
|
+
readonly __wbg_set_decodedmessage_sender_inbox_id: (a: number, b: number, c: number) => void;
|
|
1617
|
+
readonly __wbg_set_decodedmessage_sender_installation_id: (a: number, b: number, c: number) => void;
|
|
1618
|
+
readonly __wbg_set_decodedmessage_sent_at_ns: (a: number, b: bigint) => void;
|
|
1554
1619
|
readonly rust_zstd_wasm_shim_calloc: (a: number, b: number) => number;
|
|
1555
1620
|
readonly rust_zstd_wasm_shim_free: (a: number) => void;
|
|
1556
1621
|
readonly rust_zstd_wasm_shim_malloc: (a: number) => number;
|
|
@@ -1583,14 +1648,14 @@ export interface InitOutput {
|
|
|
1583
1648
|
readonly intounderlyingsink_abort: (a: number, b: any) => any;
|
|
1584
1649
|
readonly intounderlyingsink_close: (a: number) => any;
|
|
1585
1650
|
readonly intounderlyingsink_write: (a: number, b: any) => any;
|
|
1586
|
-
readonly wasm_bindgen__convert__closures_____invoke__hafab8b28acda63ce: (a: number, b: number) => void;
|
|
1587
|
-
readonly wasm_bindgen__closure__destroy__h83869f5b20c236a6: (a: number, b: number) => void;
|
|
1588
|
-
readonly wasm_bindgen__convert__closures_____invoke__h34df32c886f66f02: (a: number, b: number, c: any) => void;
|
|
1589
|
-
readonly wasm_bindgen__closure__destroy__h5faecc40242ea0ca: (a: number, b: number) => void;
|
|
1590
1651
|
readonly wasm_bindgen__convert__closures_____invoke__h753a3e053785270d: (a: number, b: number) => void;
|
|
1591
1652
|
readonly wasm_bindgen__closure__destroy__h8a0c80adf0f210e5: (a: number, b: number) => void;
|
|
1653
|
+
readonly wasm_bindgen__convert__closures_____invoke__hafab8b28acda63ce: (a: number, b: number) => void;
|
|
1654
|
+
readonly wasm_bindgen__closure__destroy__h83869f5b20c236a6: (a: number, b: number) => void;
|
|
1592
1655
|
readonly wasm_bindgen__convert__closures_____invoke__h9011598bdd38acb2: (a: number, b: number) => void;
|
|
1593
1656
|
readonly wasm_bindgen__closure__destroy__h5e0a3136249b832f: (a: number, b: number) => void;
|
|
1657
|
+
readonly wasm_bindgen__convert__closures_____invoke__h34df32c886f66f02: (a: number, b: number, c: any) => void;
|
|
1658
|
+
readonly wasm_bindgen__closure__destroy__h5faecc40242ea0ca: (a: number, b: number) => void;
|
|
1594
1659
|
readonly wasm_bindgen__convert__closures_____invoke__h18a484e2affd7fe5: (a: number, b: number, c: any, d: any) => void;
|
|
1595
1660
|
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
1596
1661
|
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|