@xmtp/wasm-bindings 1.6.1 → 1.6.6
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 +675 -480
- package/dist/bindings_wasm.js +1637 -600
- package/dist/bindings_wasm_bg.wasm +0 -0
- package/dist/bindings_wasm_bg.wasm.d.ts +452 -363
- package/package.json +5 -7
- package/dist/snippets/wasm-array-cp-201e2a98f0e691f7/copy.min.js +0 -1
- package/dist/version.json +0 -5
package/dist/bindings_wasm.d.ts
CHANGED
|
@@ -1,20 +1,48 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
export function
|
|
4
|
-
export function
|
|
5
|
-
export function
|
|
6
|
-
export function
|
|
7
|
-
export function
|
|
3
|
+
export function encodeReply(reply: Reply): Uint8Array;
|
|
4
|
+
export function decodeReply(bytes: Uint8Array): Reply;
|
|
5
|
+
export function decodeReadReceipt(bytes: Uint8Array): ReadReceipt;
|
|
6
|
+
export function encodeReadReceipt(readReceipt: ReadReceipt): Uint8Array;
|
|
7
|
+
export function decodeWalletSendCalls(bytes: Uint8Array): any;
|
|
8
|
+
export function encodeWalletSendCalls(wallet_send_calls: any): Uint8Array;
|
|
9
|
+
export function encodeXmtpText(text: string): Uint8Array;
|
|
10
|
+
export function decodeXmtpText(bytes: Uint8Array): string;
|
|
8
11
|
export function encodeReaction(reaction: Reaction): Uint8Array;
|
|
9
12
|
export function decodeReaction(bytes: Uint8Array): Reaction;
|
|
10
|
-
export function
|
|
13
|
+
export function applySignatureRequest(v3_host: string, gateway_host: string | null | undefined, signature_request: SignatureRequestHandle): Promise<void>;
|
|
14
|
+
export function revokeInstallationsSignatureRequest(v3_host: string, gateway_host: string | null | undefined, recovery_identifier: Identifier, inbox_id: string, installation_ids: Uint8Array[]): SignatureRequestHandle;
|
|
15
|
+
export function verifySignedWithPublicKey(signature_text: string, signature_bytes: Uint8Array, public_key: Uint8Array): void;
|
|
11
16
|
export function inboxStateFromInboxIds(v3_host: string, gateway_host: string | null | undefined, inbox_ids: string[]): Promise<InboxState[]>;
|
|
12
|
-
export function
|
|
13
|
-
export function
|
|
17
|
+
export function decodeGroupUpdated(bytes: Uint8Array): GroupUpdated;
|
|
18
|
+
export function decodeRemoteAttachment(bytes: Uint8Array): RemoteAttachment;
|
|
19
|
+
export function encodeRemoteAttachment(remoteAttachment: RemoteAttachment): Uint8Array;
|
|
20
|
+
export function decodeTransactionReference(bytes: Uint8Array): TransactionReference;
|
|
21
|
+
export function encodeTransactionReference(transactionReference: TransactionReference): Uint8Array;
|
|
22
|
+
export function encodeMultiRemoteAttachment(multiRemoteAttachment: MultiRemoteAttachment): Uint8Array;
|
|
23
|
+
export function decodeMultiRemoteAttachment(bytes: Uint8Array): MultiRemoteAttachment;
|
|
24
|
+
export function decodeActions(bytes: Uint8Array): Actions;
|
|
25
|
+
export function encodeActions(actions: Actions): Uint8Array;
|
|
26
|
+
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>;
|
|
27
|
+
export function getInboxIdForIdentifier(host: string, gatewayHost: string | null | undefined, accountIdentifier: Identifier): Promise<string | undefined>;
|
|
28
|
+
export function generateInboxId(accountIdentifier: Identifier, nonce?: bigint | null): string;
|
|
29
|
+
export function decodeAttachment(bytes: Uint8Array): Attachment;
|
|
30
|
+
export function encodeAttachment(attachment: Attachment): Uint8Array;
|
|
31
|
+
export function decodeIntent(bytes: Uint8Array): Intent;
|
|
32
|
+
export function encodeIntent(intent: Intent): Uint8Array;
|
|
14
33
|
/**
|
|
15
34
|
* Entry point invoked by JavaScript in a worker.
|
|
16
35
|
*/
|
|
17
36
|
export function task_worker_entry_point(ptr: number): void;
|
|
37
|
+
export enum ActionStyle {
|
|
38
|
+
Primary = 0,
|
|
39
|
+
Secondary = 1,
|
|
40
|
+
Danger = 2,
|
|
41
|
+
}
|
|
42
|
+
export enum ClientMode {
|
|
43
|
+
Default = 0,
|
|
44
|
+
Notification = 1,
|
|
45
|
+
}
|
|
18
46
|
export enum ConsentEntityType {
|
|
19
47
|
GroupId = 0,
|
|
20
48
|
InboxId = 1,
|
|
@@ -67,6 +95,10 @@ export enum ListConversationsOrderBy {
|
|
|
67
95
|
CreatedAt = 0,
|
|
68
96
|
LastActivity = 1,
|
|
69
97
|
}
|
|
98
|
+
export enum MessageSortBy {
|
|
99
|
+
SentAt = 0,
|
|
100
|
+
InsertedAt = 1,
|
|
101
|
+
}
|
|
70
102
|
export enum MetadataField {
|
|
71
103
|
GroupName = 0,
|
|
72
104
|
Description = 1,
|
|
@@ -85,7 +117,9 @@ export enum PayloadType {
|
|
|
85
117
|
GroupUpdated = 7,
|
|
86
118
|
ReadReceipt = 8,
|
|
87
119
|
WalletSendCalls = 9,
|
|
88
|
-
|
|
120
|
+
Intent = 10,
|
|
121
|
+
Actions = 11,
|
|
122
|
+
Custom = 12,
|
|
89
123
|
}
|
|
90
124
|
export enum PermissionLevel {
|
|
91
125
|
Member = 0,
|
|
@@ -143,13 +177,38 @@ type LogLevel = "off" | "error" | "warn" | "info" | "debug" | "trace";
|
|
|
143
177
|
type ReadableStreamType = "bytes";
|
|
144
178
|
export type UserPreference = { type: "Consent"; consent: Consent } | { type: "HmacKeyUpdate"; key: number[] };
|
|
145
179
|
|
|
146
|
-
export type IdentifierKind = "Ethereum" | "Passkey";
|
|
147
|
-
|
|
148
180
|
export interface Identifier {
|
|
149
181
|
identifier: string;
|
|
150
182
|
identifierKind: IdentifierKind;
|
|
151
183
|
}
|
|
152
184
|
|
|
185
|
+
export type IdentifierKind = "Ethereum" | "Passkey";
|
|
186
|
+
|
|
187
|
+
export class Action {
|
|
188
|
+
free(): void;
|
|
189
|
+
[Symbol.dispose](): void;
|
|
190
|
+
constructor(id: string, label: string, image_url?: string | null, style?: ActionStyle | null, expires_at_ns?: bigint | null);
|
|
191
|
+
id: string;
|
|
192
|
+
label: string;
|
|
193
|
+
get imageUrl(): string | undefined;
|
|
194
|
+
set imageUrl(value: string | null | undefined);
|
|
195
|
+
get style(): ActionStyle | undefined;
|
|
196
|
+
set style(value: ActionStyle | null | undefined);
|
|
197
|
+
get expiresAtNs(): bigint | undefined;
|
|
198
|
+
set expiresAtNs(value: bigint | null | undefined);
|
|
199
|
+
}
|
|
200
|
+
export class Actions {
|
|
201
|
+
free(): void;
|
|
202
|
+
[Symbol.dispose](): void;
|
|
203
|
+
addAction(action: Action): void;
|
|
204
|
+
getActions(): Action[];
|
|
205
|
+
setActions(actions: Action[]): void;
|
|
206
|
+
constructor(id: string, description: string, expires_at_ns?: bigint | null);
|
|
207
|
+
id: string;
|
|
208
|
+
description: string;
|
|
209
|
+
get expiresAtNs(): bigint | undefined;
|
|
210
|
+
set expiresAtNs(value: bigint | null | undefined);
|
|
211
|
+
}
|
|
153
212
|
export class ApiStats {
|
|
154
213
|
private constructor();
|
|
155
214
|
free(): void;
|
|
@@ -172,6 +231,13 @@ export class Attachment {
|
|
|
172
231
|
mimeType: string;
|
|
173
232
|
content: Uint8Array;
|
|
174
233
|
}
|
|
234
|
+
export class AuthHandle {
|
|
235
|
+
free(): void;
|
|
236
|
+
[Symbol.dispose](): void;
|
|
237
|
+
id(): number;
|
|
238
|
+
constructor();
|
|
239
|
+
set(credential: Credential): Promise<void>;
|
|
240
|
+
}
|
|
175
241
|
export class Client {
|
|
176
242
|
private constructor();
|
|
177
243
|
free(): void;
|
|
@@ -185,25 +251,7 @@ export class Client {
|
|
|
185
251
|
verifySignedWithInstallationKey(signature_text: string, signature_bytes: Uint8Array): void;
|
|
186
252
|
revokeInstallationsSignatureRequest(installation_ids: Uint8Array[]): Promise<SignatureRequestHandle>;
|
|
187
253
|
changeRecoveryIdentifierSignatureRequest(new_recovery_identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
188
|
-
revokeAllOtherInstallationsSignatureRequest(): Promise<SignatureRequestHandle>;
|
|
189
|
-
getConsentState(entity_type: ConsentEntityType, entity: string): Promise<ConsentState>;
|
|
190
|
-
setConsentStates(records: Consent[]): Promise<void>;
|
|
191
|
-
/**
|
|
192
|
-
* Output booleans should be zipped with the index of input identifiers
|
|
193
|
-
*/
|
|
194
|
-
canMessage(account_identifiers: Identifier[]): Promise<any>;
|
|
195
|
-
conversations(): Conversations;
|
|
196
|
-
apiStatistics(): ApiStats;
|
|
197
|
-
deleteMessage(message_id: Uint8Array): number;
|
|
198
|
-
messageV2(message_id: Uint8Array): Promise<DecodedMessage>;
|
|
199
|
-
syncPreferences(): Promise<GroupSyncSummary>;
|
|
200
|
-
sendSyncRequest(): Promise<void>;
|
|
201
|
-
clearAllStatistics(): void;
|
|
202
|
-
uploadDebugArchive(server_url: string): Promise<string>;
|
|
203
|
-
apiIdentityStatistics(): IdentityStats;
|
|
204
|
-
apiAggregateStatistics(): string;
|
|
205
|
-
inboxStateFromInboxIds(inbox_ids: string[], refresh_from_network: boolean): Promise<InboxState[]>;
|
|
206
|
-
findInboxIdByIdentifier(identifier: Identifier): Promise<string | undefined>;
|
|
254
|
+
revokeAllOtherInstallationsSignatureRequest(): Promise<SignatureRequestHandle | undefined>;
|
|
207
255
|
/**
|
|
208
256
|
*
|
|
209
257
|
* * Get the client's inbox state.
|
|
@@ -222,6 +270,24 @@ export class Client {
|
|
|
222
270
|
*
|
|
223
271
|
*/
|
|
224
272
|
getKeyPackageStatusesForInstallationIds(installation_ids: string[]): Promise<any>;
|
|
273
|
+
getConsentState(entity_type: ConsentEntityType, entity: string): Promise<ConsentState>;
|
|
274
|
+
setConsentStates(records: Consent[]): Promise<void>;
|
|
275
|
+
/**
|
|
276
|
+
* Output booleans should be zipped with the index of input identifiers
|
|
277
|
+
*/
|
|
278
|
+
canMessage(account_identifiers: Identifier[]): Promise<any>;
|
|
279
|
+
conversations(): Conversations;
|
|
280
|
+
apiStatistics(): ApiStats;
|
|
281
|
+
deleteMessage(message_id: Uint8Array): number;
|
|
282
|
+
messageV2(message_id: Uint8Array): Promise<DecodedMessage>;
|
|
283
|
+
syncPreferences(): Promise<GroupSyncSummary>;
|
|
284
|
+
sendSyncRequest(): Promise<void>;
|
|
285
|
+
clearAllStatistics(): void;
|
|
286
|
+
uploadDebugArchive(server_url: string): Promise<string>;
|
|
287
|
+
apiIdentityStatistics(): IdentityStats;
|
|
288
|
+
apiAggregateStatistics(): string;
|
|
289
|
+
inboxStateFromInboxIds(inbox_ids: string[], refresh_from_network: boolean): Promise<InboxState[]>;
|
|
290
|
+
findInboxIdByIdentifier(identifier: Identifier): Promise<string | undefined>;
|
|
225
291
|
readonly appVersion: string;
|
|
226
292
|
readonly isRegistered: boolean;
|
|
227
293
|
readonly installationId: string;
|
|
@@ -251,8 +317,6 @@ export class Conversation {
|
|
|
251
317
|
private constructor();
|
|
252
318
|
free(): void;
|
|
253
319
|
[Symbol.dispose](): void;
|
|
254
|
-
consentState(): ConsentState;
|
|
255
|
-
updateConsentState(state: ConsentState): void;
|
|
256
320
|
adminList(): string[];
|
|
257
321
|
getDebugInfo(): Promise<any>;
|
|
258
322
|
groupName(): string;
|
|
@@ -271,7 +335,9 @@ export class Conversation {
|
|
|
271
335
|
* send a message without immediately publishing to the delivery service.
|
|
272
336
|
*/
|
|
273
337
|
sendOptimistic(encoded_content: EncodedContent, opts: SendMessageOpts): string;
|
|
338
|
+
updateAppData(app_data: string): Promise<void>;
|
|
274
339
|
dmPeerInboxId(): string;
|
|
340
|
+
membershipState(): GroupMembershipState;
|
|
275
341
|
/**
|
|
276
342
|
* Publish all unpublished messages
|
|
277
343
|
*/
|
|
@@ -301,9 +367,12 @@ export class Conversation {
|
|
|
301
367
|
send(encoded_content: EncodedContent, opts: SendMessageOpts): Promise<string>;
|
|
302
368
|
sync(): Promise<void>;
|
|
303
369
|
stream(callback: any): StreamCloser;
|
|
370
|
+
appData(): string;
|
|
304
371
|
isAdmin(inbox_id: string): boolean;
|
|
305
372
|
addAdmin(inbox_id: string): Promise<void>;
|
|
306
373
|
isActive(): boolean;
|
|
374
|
+
consentState(): ConsentState;
|
|
375
|
+
updateConsentState(state: ConsentState): void;
|
|
307
376
|
}
|
|
308
377
|
export class ConversationDebugInfo {
|
|
309
378
|
private constructor();
|
|
@@ -364,7 +433,7 @@ export class CreateDMOptions {
|
|
|
364
433
|
export class CreateGroupOptions {
|
|
365
434
|
free(): void;
|
|
366
435
|
[Symbol.dispose](): void;
|
|
367
|
-
constructor(permissions?: GroupPermissionsOptions | null, group_name?: string | null, group_image_url_square?: string | null, group_description?: string | null, custom_permission_policy_set?: PermissionPolicySet | null, message_disappearing_settings?: MessageDisappearingSettings | null);
|
|
436
|
+
constructor(permissions?: GroupPermissionsOptions | null, group_name?: string | null, group_image_url_square?: string | null, group_description?: string | null, custom_permission_policy_set?: PermissionPolicySet | null, message_disappearing_settings?: MessageDisappearingSettings | null, app_data?: string | null);
|
|
368
437
|
get permissions(): GroupPermissionsOptions | undefined;
|
|
369
438
|
set permissions(value: GroupPermissionsOptions | null | undefined);
|
|
370
439
|
get groupName(): string | undefined;
|
|
@@ -377,6 +446,13 @@ export class CreateGroupOptions {
|
|
|
377
446
|
set customPermissionPolicySet(value: PermissionPolicySet | null | undefined);
|
|
378
447
|
get messageDisappearingSettings(): MessageDisappearingSettings | undefined;
|
|
379
448
|
set messageDisappearingSettings(value: MessageDisappearingSettings | null | undefined);
|
|
449
|
+
get appData(): string | undefined;
|
|
450
|
+
set appData(value: string | null | undefined);
|
|
451
|
+
}
|
|
452
|
+
export class Credential {
|
|
453
|
+
free(): void;
|
|
454
|
+
[Symbol.dispose](): void;
|
|
455
|
+
constructor(name: string | null | undefined, value: string, expires_at_seconds: bigint);
|
|
380
456
|
}
|
|
381
457
|
export class DecodedMessage {
|
|
382
458
|
private constructor();
|
|
@@ -400,6 +476,7 @@ export class DecodedMessageContent {
|
|
|
400
476
|
private constructor();
|
|
401
477
|
free(): void;
|
|
402
478
|
[Symbol.dispose](): void;
|
|
479
|
+
asActions(): Actions | undefined;
|
|
403
480
|
asReaction(): ReactionPayload | undefined;
|
|
404
481
|
asAttachment(): Attachment | undefined;
|
|
405
482
|
asReadReceipt(): ReadReceipt | undefined;
|
|
@@ -411,6 +488,7 @@ export class DecodedMessageContent {
|
|
|
411
488
|
asText(): TextContent | undefined;
|
|
412
489
|
asReply(): EnrichedReply | undefined;
|
|
413
490
|
asCustom(): EncodedContent | undefined;
|
|
491
|
+
asIntent(): Intent | undefined;
|
|
414
492
|
readonly payloadType: PayloadType;
|
|
415
493
|
}
|
|
416
494
|
export class EncodedContent {
|
|
@@ -472,7 +550,12 @@ export class GroupUpdated {
|
|
|
472
550
|
initiatedByInboxId: string;
|
|
473
551
|
addedInboxes: Inbox[];
|
|
474
552
|
removedInboxes: Inbox[];
|
|
553
|
+
leftInboxes: Inbox[];
|
|
475
554
|
metadataFieldChanges: MetadataFieldChange[];
|
|
555
|
+
addedAdminInboxes: Inbox[];
|
|
556
|
+
removedAdminInboxes: Inbox[];
|
|
557
|
+
addedSuperAdminInboxes: Inbox[];
|
|
558
|
+
removedSuperAdminInboxes: Inbox[];
|
|
476
559
|
}
|
|
477
560
|
export class HmacKey {
|
|
478
561
|
private constructor();
|
|
@@ -514,6 +597,14 @@ export class Installation {
|
|
|
514
597
|
get clientTimestampNs(): bigint | undefined;
|
|
515
598
|
set clientTimestampNs(value: bigint | null | undefined);
|
|
516
599
|
}
|
|
600
|
+
export class Intent {
|
|
601
|
+
free(): void;
|
|
602
|
+
[Symbol.dispose](): void;
|
|
603
|
+
constructor(id: string, action_id: string, metadata: any);
|
|
604
|
+
id: string;
|
|
605
|
+
actionId: string;
|
|
606
|
+
metadata: any;
|
|
607
|
+
}
|
|
517
608
|
export class IntoUnderlyingByteSource {
|
|
518
609
|
private constructor();
|
|
519
610
|
free(): void;
|
|
@@ -577,7 +668,7 @@ export class ListConversationsOptions {
|
|
|
577
668
|
export class ListMessagesOptions {
|
|
578
669
|
free(): void;
|
|
579
670
|
[Symbol.dispose](): void;
|
|
580
|
-
constructor(sent_before_ns?: bigint | null, sent_after_ns?: bigint | null, limit?: bigint | null, delivery_status?: DeliveryStatus | null, direction?: SortDirection | null, content_types?: any[] | null, exclude_content_types?: any[] | null, kind?: GroupMessageKind | null, exclude_sender_inbox_ids?: string[] | null);
|
|
671
|
+
constructor(sent_before_ns?: bigint | null, sent_after_ns?: bigint | null, limit?: bigint | null, delivery_status?: DeliveryStatus | null, direction?: SortDirection | null, content_types?: any[] | null, exclude_content_types?: any[] | null, kind?: GroupMessageKind | null, exclude_sender_inbox_ids?: string[] | null, sort_by?: MessageSortBy | null, inserted_after_ns?: bigint | null, inserted_before_ns?: bigint | null);
|
|
581
672
|
get contentTypes(): any[] | undefined;
|
|
582
673
|
set contentTypes(value: any[] | null | undefined);
|
|
583
674
|
get excludeContentTypes(): any[] | undefined;
|
|
@@ -596,6 +687,12 @@ export class ListMessagesOptions {
|
|
|
596
687
|
set kind(value: GroupMessageKind | null | undefined);
|
|
597
688
|
get excludeSenderInboxIds(): string[] | undefined;
|
|
598
689
|
set excludeSenderInboxIds(value: string[] | null | undefined);
|
|
690
|
+
get sortBy(): MessageSortBy | undefined;
|
|
691
|
+
set sortBy(value: MessageSortBy | null | undefined);
|
|
692
|
+
get insertedAfterNs(): bigint | undefined;
|
|
693
|
+
set insertedAfterNs(value: bigint | null | undefined);
|
|
694
|
+
get insertedBeforeNs(): bigint | undefined;
|
|
695
|
+
set insertedBeforeNs(value: bigint | null | undefined);
|
|
599
696
|
}
|
|
600
697
|
/**
|
|
601
698
|
* Specify options for the logger
|
|
@@ -760,7 +857,7 @@ export class RemoteAttachment {
|
|
|
760
857
|
salt: Uint8Array;
|
|
761
858
|
nonce: Uint8Array;
|
|
762
859
|
scheme: string;
|
|
763
|
-
contentLength:
|
|
860
|
+
contentLength: number;
|
|
764
861
|
get filename(): string | undefined;
|
|
765
862
|
set filename(value: string | null | undefined);
|
|
766
863
|
}
|
|
@@ -779,6 +876,15 @@ export class RemoteAttachmentInfo {
|
|
|
779
876
|
get filename(): string | undefined;
|
|
780
877
|
set filename(value: string | null | undefined);
|
|
781
878
|
}
|
|
879
|
+
export class Reply {
|
|
880
|
+
free(): void;
|
|
881
|
+
[Symbol.dispose](): void;
|
|
882
|
+
constructor(content: EncodedContent, reference: string, referenceInboxId?: string | null);
|
|
883
|
+
content: EncodedContent;
|
|
884
|
+
reference: string;
|
|
885
|
+
get referenceInboxId(): string | undefined;
|
|
886
|
+
set referenceInboxId(value: string | null | undefined);
|
|
887
|
+
}
|
|
782
888
|
export class SendMessageOpts {
|
|
783
889
|
free(): void;
|
|
784
890
|
[Symbol.dispose](): void;
|
|
@@ -855,123 +961,28 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
855
961
|
|
|
856
962
|
export interface InitOutput {
|
|
857
963
|
readonly memory: WebAssembly.Memory;
|
|
858
|
-
readonly
|
|
859
|
-
readonly
|
|
860
|
-
readonly
|
|
861
|
-
readonly
|
|
862
|
-
readonly
|
|
863
|
-
readonly
|
|
864
|
-
readonly
|
|
865
|
-
readonly
|
|
866
|
-
readonly
|
|
867
|
-
readonly
|
|
868
|
-
readonly
|
|
869
|
-
readonly
|
|
870
|
-
readonly
|
|
871
|
-
readonly
|
|
872
|
-
readonly
|
|
873
|
-
readonly
|
|
874
|
-
readonly
|
|
875
|
-
readonly
|
|
876
|
-
readonly
|
|
877
|
-
readonly
|
|
878
|
-
readonly
|
|
879
|
-
readonly __wbg_get_hmackey_key: (a: number) => [number, number];
|
|
880
|
-
readonly __wbg_get_listconversationsoptions_consentStates: (a: number) => [number, number];
|
|
881
|
-
readonly __wbg_get_listconversationsoptions_conversationType: (a: number) => number;
|
|
882
|
-
readonly __wbg_get_listconversationsoptions_createdAfterNs: (a: number) => [number, bigint];
|
|
883
|
-
readonly __wbg_get_listconversationsoptions_createdBeforeNs: (a: number) => [number, bigint];
|
|
884
|
-
readonly __wbg_get_listconversationsoptions_includeDuplicateDms: (a: number) => number;
|
|
885
|
-
readonly __wbg_get_listconversationsoptions_limit: (a: number) => [number, bigint];
|
|
886
|
-
readonly __wbg_get_listconversationsoptions_orderBy: (a: number) => number;
|
|
887
|
-
readonly __wbg_get_messagedisappearingsettings_inNs: (a: number) => bigint;
|
|
888
|
-
readonly __wbg_get_remoteattachment_contentDigest: (a: number) => [number, number];
|
|
889
|
-
readonly __wbg_get_remoteattachment_filename: (a: number) => [number, number];
|
|
890
|
-
readonly __wbg_get_remoteattachment_nonce: (a: number) => [number, number];
|
|
891
|
-
readonly __wbg_get_remoteattachment_salt: (a: number) => [number, number];
|
|
892
|
-
readonly __wbg_get_remoteattachment_scheme: (a: number) => [number, number];
|
|
893
|
-
readonly __wbg_get_remoteattachment_secret: (a: number) => [number, number];
|
|
894
|
-
readonly __wbg_get_remoteattachment_url: (a: number) => [number, number];
|
|
895
|
-
readonly __wbg_get_textcontent_content: (a: number) => [number, number];
|
|
896
|
-
readonly __wbg_get_xmtpcursor_originator_id: (a: number) => number;
|
|
897
|
-
readonly __wbg_hmackey_free: (a: number, b: number) => void;
|
|
898
|
-
readonly __wbg_listconversationsoptions_free: (a: number, b: number) => void;
|
|
899
|
-
readonly __wbg_messagedisappearingsettings_free: (a: number, b: number) => void;
|
|
900
|
-
readonly __wbg_remoteattachment_free: (a: number, b: number) => void;
|
|
901
|
-
readonly __wbg_set_conversationdebuginfo_cursor: (a: number, b: number, c: number) => void;
|
|
902
|
-
readonly __wbg_set_conversationdebuginfo_epoch: (a: number, b: bigint) => void;
|
|
903
|
-
readonly __wbg_set_conversationdebuginfo_forkDetails: (a: number, b: number, c: number) => void;
|
|
904
|
-
readonly __wbg_set_conversationdebuginfo_isCommitLogForked: (a: number, b: number) => void;
|
|
905
|
-
readonly __wbg_set_conversationdebuginfo_localCommitLog: (a: number, b: number, c: number) => void;
|
|
906
|
-
readonly __wbg_set_conversationdebuginfo_maybeForked: (a: number, b: number) => void;
|
|
907
|
-
readonly __wbg_set_conversationdebuginfo_remoteCommitLog: (a: number, b: number, c: number) => void;
|
|
908
|
-
readonly __wbg_set_conversationlistitem_conversation: (a: number, b: number) => void;
|
|
909
|
-
readonly __wbg_set_conversationlistitem_isCommitLogForked: (a: number, b: number) => void;
|
|
910
|
-
readonly __wbg_set_conversationlistitem_lastMessage: (a: number, b: number) => void;
|
|
911
|
-
readonly __wbg_set_createdmoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
912
|
-
readonly __wbg_set_creategroupoptions_customPermissionPolicySet: (a: number, b: number) => void;
|
|
913
|
-
readonly __wbg_set_creategroupoptions_groupDescription: (a: number, b: number, c: number) => void;
|
|
914
|
-
readonly __wbg_set_creategroupoptions_groupImageUrlSquare: (a: number, b: number, c: number) => void;
|
|
915
|
-
readonly __wbg_set_creategroupoptions_groupName: (a: number, b: number, c: number) => void;
|
|
916
|
-
readonly __wbg_set_creategroupoptions_permissions: (a: number, b: number) => void;
|
|
917
|
-
readonly __wbg_set_listconversationsoptions_consentStates: (a: number, b: number, c: number) => void;
|
|
918
|
-
readonly __wbg_set_listconversationsoptions_conversationType: (a: number, b: number) => void;
|
|
919
|
-
readonly __wbg_set_listconversationsoptions_createdAfterNs: (a: number, b: number, c: bigint) => void;
|
|
920
|
-
readonly __wbg_set_listconversationsoptions_createdBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
921
|
-
readonly __wbg_set_listconversationsoptions_includeDuplicateDms: (a: number, b: number) => void;
|
|
922
|
-
readonly __wbg_set_listconversationsoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
923
|
-
readonly __wbg_set_listconversationsoptions_orderBy: (a: number, b: number) => void;
|
|
924
|
-
readonly __wbg_set_messagedisappearingsettings_inNs: (a: number, b: bigint) => void;
|
|
925
|
-
readonly __wbg_set_remoteattachment_filename: (a: number, b: number, c: number) => void;
|
|
926
|
-
readonly __wbg_set_remoteattachment_nonce: (a: number, b: number, c: number) => void;
|
|
927
|
-
readonly __wbg_set_remoteattachment_salt: (a: number, b: number, c: number) => void;
|
|
928
|
-
readonly __wbg_set_remoteattachment_scheme: (a: number, b: number, c: number) => void;
|
|
929
|
-
readonly __wbg_set_textcontent_content: (a: number, b: number, c: number) => void;
|
|
930
|
-
readonly __wbg_set_xmtpcursor_originator_id: (a: number, b: number) => void;
|
|
931
|
-
readonly __wbg_textcontent_free: (a: number, b: number) => void;
|
|
932
|
-
readonly __wbg_xmtpcursor_free: (a: number, b: number) => void;
|
|
933
|
-
readonly conversationlistitem_new: (a: number, b: number, c: number) => number;
|
|
934
|
-
readonly conversations_createDm: (a: number, b: any, c: number) => any;
|
|
935
|
-
readonly conversations_createDmByInboxId: (a: number, b: number, c: number, d: number) => any;
|
|
936
|
-
readonly conversations_createGroup: (a: number, b: number, c: number, d: number) => any;
|
|
937
|
-
readonly conversations_createGroupByInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
938
|
-
readonly conversations_createGroupOptimistic: (a: number, b: number) => [number, number, number];
|
|
939
|
-
readonly conversations_findDmByTargetInboxId: (a: number, b: number, c: number) => [number, number, number];
|
|
940
|
-
readonly conversations_findGroupById: (a: number, b: number, c: number) => [number, number, number];
|
|
941
|
-
readonly conversations_findMessageById: (a: number, b: number, c: number) => [number, number, number];
|
|
942
|
-
readonly conversations_getHmacKeys: (a: number) => [number, number, number];
|
|
943
|
-
readonly conversations_list: (a: number, b: number) => [number, number, number];
|
|
944
|
-
readonly conversations_stream: (a: number, b: any, c: number) => [number, number, number];
|
|
945
|
-
readonly conversations_streamAllMessages: (a: number, b: any, c: number, d: number, e: number) => [number, number, number];
|
|
946
|
-
readonly conversations_streamConsent: (a: number, b: any) => [number, number, number];
|
|
947
|
-
readonly conversations_streamLocal: (a: number, b: number) => any;
|
|
948
|
-
readonly conversations_streamMessageDeletions: (a: number, b: any) => [number, number, number];
|
|
949
|
-
readonly conversations_streamPreferences: (a: number, b: any) => [number, number, number];
|
|
950
|
-
readonly conversations_sync: (a: number) => any;
|
|
951
|
-
readonly conversations_syncAllConversations: (a: number, b: number, c: number) => any;
|
|
952
|
-
readonly createdmoptions_new: (a: number) => number;
|
|
953
|
-
readonly creategroupoptions_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => number;
|
|
954
|
-
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;
|
|
955
|
-
readonly messagedisappearingsettings_new: (a: bigint, b: bigint) => number;
|
|
956
|
-
readonly __wbg_set_hmackey_key: (a: number, b: number, c: number) => void;
|
|
957
|
-
readonly __wbg_set_remoteattachment_contentDigest: (a: number, b: number, c: number) => void;
|
|
958
|
-
readonly __wbg_set_remoteattachment_secret: (a: number, b: number, c: number) => void;
|
|
959
|
-
readonly __wbg_set_remoteattachment_url: (a: number, b: number, c: number) => void;
|
|
960
|
-
readonly __wbg_set_hmackey_epoch: (a: number, b: bigint) => void;
|
|
961
|
-
readonly __wbg_set_messagedisappearingsettings_fromNs: (a: number, b: bigint) => void;
|
|
962
|
-
readonly __wbg_set_remoteattachment_contentLength: (a: number, b: bigint) => void;
|
|
963
|
-
readonly __wbg_set_xmtpcursor_sequence_id: (a: number, b: bigint) => void;
|
|
964
|
-
readonly __wbg_get_creategroupoptions_messageDisappearingSettings: (a: number) => number;
|
|
965
|
-
readonly __wbg_get_hmackey_epoch: (a: number) => bigint;
|
|
966
|
-
readonly __wbg_get_messagedisappearingsettings_fromNs: (a: number) => bigint;
|
|
967
|
-
readonly __wbg_get_remoteattachment_contentLength: (a: number) => bigint;
|
|
968
|
-
readonly __wbg_get_xmtpcursor_sequence_id: (a: number) => bigint;
|
|
969
|
-
readonly __wbg_set_creategroupoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
964
|
+
readonly __wbg_get_permissionpolicyset_addAdminPolicy: (a: number) => number;
|
|
965
|
+
readonly __wbg_get_permissionpolicyset_addMemberPolicy: (a: number) => number;
|
|
966
|
+
readonly __wbg_get_permissionpolicyset_removeAdminPolicy: (a: number) => number;
|
|
967
|
+
readonly __wbg_get_permissionpolicyset_removeMemberPolicy: (a: number) => number;
|
|
968
|
+
readonly __wbg_get_permissionpolicyset_updateGroupDescriptionPolicy: (a: number) => number;
|
|
969
|
+
readonly __wbg_get_permissionpolicyset_updateGroupImageUrlSquarePolicy: (a: number) => number;
|
|
970
|
+
readonly __wbg_get_permissionpolicyset_updateGroupNamePolicy: (a: number) => number;
|
|
971
|
+
readonly __wbg_get_permissionpolicyset_updateMessageDisappearingPolicy: (a: number) => number;
|
|
972
|
+
readonly __wbg_grouppermissions_free: (a: number, b: number) => void;
|
|
973
|
+
readonly __wbg_permissionpolicyset_free: (a: number, b: number) => void;
|
|
974
|
+
readonly __wbg_set_permissionpolicyset_addAdminPolicy: (a: number, b: number) => void;
|
|
975
|
+
readonly __wbg_set_permissionpolicyset_addMemberPolicy: (a: number, b: number) => void;
|
|
976
|
+
readonly __wbg_set_permissionpolicyset_removeAdminPolicy: (a: number, b: number) => void;
|
|
977
|
+
readonly __wbg_set_permissionpolicyset_removeMemberPolicy: (a: number, b: number) => void;
|
|
978
|
+
readonly __wbg_set_permissionpolicyset_updateGroupDescriptionPolicy: (a: number, b: number) => void;
|
|
979
|
+
readonly __wbg_set_permissionpolicyset_updateGroupImageUrlSquarePolicy: (a: number, b: number) => void;
|
|
980
|
+
readonly __wbg_set_permissionpolicyset_updateGroupNamePolicy: (a: number, b: number) => void;
|
|
981
|
+
readonly __wbg_set_permissionpolicyset_updateMessageDisappearingPolicy: (a: number, b: number) => void;
|
|
982
|
+
readonly grouppermissions_policySet: (a: number) => [number, number, number];
|
|
983
|
+
readonly grouppermissions_policyType: (a: number) => [number, number, number];
|
|
984
|
+
readonly permissionpolicyset_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
970
985
|
readonly __wbg_apistats_free: (a: number, b: number) => void;
|
|
971
|
-
readonly __wbg_client_free: (a: number, b: number) => void;
|
|
972
|
-
readonly __wbg_consent_free: (a: number, b: number) => void;
|
|
973
|
-
readonly __wbg_contenttypeid_free: (a: number, b: number) => void;
|
|
974
|
-
readonly __wbg_encodedcontent_free: (a: number, b: number) => void;
|
|
975
986
|
readonly __wbg_get_apistats_fetch_key_package: (a: number) => bigint;
|
|
976
987
|
readonly __wbg_get_apistats_query_group_messages: (a: number) => bigint;
|
|
977
988
|
readonly __wbg_get_apistats_query_welcome_messages: (a: number) => bigint;
|
|
@@ -980,49 +991,158 @@ export interface InitOutput {
|
|
|
980
991
|
readonly __wbg_get_apistats_subscribe_messages: (a: number) => bigint;
|
|
981
992
|
readonly __wbg_get_apistats_subscribe_welcomes: (a: number) => bigint;
|
|
982
993
|
readonly __wbg_get_apistats_upload_key_package: (a: number) => bigint;
|
|
983
|
-
readonly
|
|
984
|
-
readonly
|
|
985
|
-
readonly
|
|
986
|
-
readonly
|
|
987
|
-
readonly
|
|
988
|
-
readonly
|
|
989
|
-
readonly
|
|
990
|
-
readonly
|
|
991
|
-
readonly
|
|
992
|
-
readonly
|
|
993
|
-
readonly
|
|
994
|
-
readonly
|
|
995
|
-
readonly
|
|
996
|
-
readonly
|
|
997
|
-
readonly
|
|
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
|
|
1020
|
-
readonly
|
|
1021
|
-
readonly
|
|
1022
|
-
readonly
|
|
1023
|
-
readonly
|
|
1024
|
-
readonly
|
|
1025
|
-
readonly
|
|
994
|
+
readonly __wbg_identitystats_free: (a: number, b: number) => void;
|
|
995
|
+
readonly __wbg_set_apistats_fetch_key_package: (a: number, b: bigint) => void;
|
|
996
|
+
readonly __wbg_set_apistats_query_group_messages: (a: number, b: bigint) => void;
|
|
997
|
+
readonly __wbg_set_apistats_query_welcome_messages: (a: number, b: bigint) => void;
|
|
998
|
+
readonly __wbg_set_apistats_send_group_messages: (a: number, b: bigint) => void;
|
|
999
|
+
readonly __wbg_set_apistats_send_welcome_messages: (a: number, b: bigint) => void;
|
|
1000
|
+
readonly __wbg_set_apistats_subscribe_messages: (a: number, b: bigint) => void;
|
|
1001
|
+
readonly __wbg_set_apistats_subscribe_welcomes: (a: number, b: bigint) => void;
|
|
1002
|
+
readonly __wbg_set_apistats_upload_key_package: (a: number, b: bigint) => void;
|
|
1003
|
+
readonly __wbg_set_identitystats_get_identity_updates_v2: (a: number, b: bigint) => void;
|
|
1004
|
+
readonly __wbg_set_identitystats_get_inbox_ids: (a: number, b: bigint) => void;
|
|
1005
|
+
readonly __wbg_set_identitystats_publish_identity_update: (a: number, b: bigint) => void;
|
|
1006
|
+
readonly __wbg_set_identitystats_verify_smart_contract_wallet_signature: (a: number, b: bigint) => void;
|
|
1007
|
+
readonly __wbg_get_identitystats_get_identity_updates_v2: (a: number) => bigint;
|
|
1008
|
+
readonly __wbg_get_identitystats_get_inbox_ids: (a: number) => bigint;
|
|
1009
|
+
readonly __wbg_get_identitystats_publish_identity_update: (a: number) => bigint;
|
|
1010
|
+
readonly __wbg_get_identitystats_verify_smart_contract_wallet_signature: (a: number) => bigint;
|
|
1011
|
+
readonly __wbg_streamcloser_free: (a: number, b: number) => void;
|
|
1012
|
+
readonly streamcloser_end: (a: number) => void;
|
|
1013
|
+
readonly streamcloser_endAndWait: (a: number) => any;
|
|
1014
|
+
readonly streamcloser_isClosed: (a: number) => number;
|
|
1015
|
+
readonly streamcloser_waitForReady: (a: number) => any;
|
|
1016
|
+
readonly __wbg_enrichedreply_free: (a: number, b: number) => void;
|
|
1017
|
+
readonly __wbg_get_reply_content: (a: number) => number;
|
|
1018
|
+
readonly __wbg_get_reply_reference: (a: number) => [number, number];
|
|
1019
|
+
readonly __wbg_get_reply_referenceInboxId: (a: number) => [number, number];
|
|
1020
|
+
readonly __wbg_reply_free: (a: number, b: number) => void;
|
|
1021
|
+
readonly __wbg_set_reply_content: (a: number, b: number) => void;
|
|
1022
|
+
readonly __wbg_set_reply_reference: (a: number, b: number, c: number) => void;
|
|
1023
|
+
readonly __wbg_set_reply_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
1024
|
+
readonly decodeReply: (a: any) => [number, number, number];
|
|
1025
|
+
readonly encodeReply: (a: number) => [number, number, number];
|
|
1026
|
+
readonly enrichedreply_content: (a: number) => number;
|
|
1027
|
+
readonly enrichedreply_inReplyTo: (a: number) => number;
|
|
1028
|
+
readonly enrichedreply_referenceId: (a: number) => [number, number];
|
|
1029
|
+
readonly reply_new: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
1030
|
+
readonly __wbg_authhandle_free: (a: number, b: number) => void;
|
|
1031
|
+
readonly __wbg_conversation_free: (a: number, b: number) => void;
|
|
1032
|
+
readonly __wbg_credential_free: (a: number, b: number) => void;
|
|
1033
|
+
readonly __wbg_get_groupmember_accountIdentifiers: (a: number) => [number, number];
|
|
1034
|
+
readonly __wbg_get_groupmember_consentState: (a: number) => number;
|
|
1035
|
+
readonly __wbg_get_groupmember_inboxId: (a: number) => [number, number];
|
|
1036
|
+
readonly __wbg_get_groupmember_installationIds: (a: number) => [number, number];
|
|
1037
|
+
readonly __wbg_get_groupmember_permissionLevel: (a: number) => number;
|
|
1038
|
+
readonly __wbg_get_sendmessageopts_shouldPush: (a: number) => number;
|
|
1039
|
+
readonly __wbg_get_textcontent_content: (a: number) => [number, number];
|
|
1040
|
+
readonly __wbg_groupmember_free: (a: number, b: number) => void;
|
|
1041
|
+
readonly __wbg_groupmetadata_free: (a: number, b: number) => void;
|
|
1042
|
+
readonly __wbg_readreceipt_free: (a: number, b: number) => void;
|
|
1043
|
+
readonly __wbg_sendmessageopts_free: (a: number, b: number) => void;
|
|
1044
|
+
readonly __wbg_set_groupmember_accountIdentifiers: (a: number, b: number, c: number) => void;
|
|
1045
|
+
readonly __wbg_set_groupmember_consentState: (a: number, b: number) => void;
|
|
1046
|
+
readonly __wbg_set_groupmember_inboxId: (a: number, b: number, c: number) => void;
|
|
1047
|
+
readonly __wbg_set_groupmember_installationIds: (a: number, b: number, c: number) => void;
|
|
1048
|
+
readonly __wbg_set_groupmember_permissionLevel: (a: number, b: number) => void;
|
|
1049
|
+
readonly __wbg_set_sendmessageopts_shouldPush: (a: number, b: number) => void;
|
|
1050
|
+
readonly __wbg_textcontent_free: (a: number, b: number) => void;
|
|
1051
|
+
readonly authhandle_id: (a: number) => number;
|
|
1052
|
+
readonly authhandle_new: () => number;
|
|
1053
|
+
readonly authhandle_set: (a: number, b: number) => any;
|
|
1054
|
+
readonly conversation_addAdmin: (a: number, b: number, c: number) => any;
|
|
1055
|
+
readonly conversation_addMembers: (a: number, b: number, c: number) => any;
|
|
1056
|
+
readonly conversation_addMembersByInboxId: (a: number, b: number, c: number) => any;
|
|
1057
|
+
readonly conversation_addSuperAdmin: (a: number, b: number, c: number) => any;
|
|
1058
|
+
readonly conversation_addedByInboxId: (a: number) => [number, number, number, number];
|
|
1059
|
+
readonly conversation_adminList: (a: number) => [number, number, number, number];
|
|
1060
|
+
readonly conversation_appData: (a: number) => [number, number, number, number];
|
|
1061
|
+
readonly conversation_countMessages: (a: number, b: number) => any;
|
|
1062
|
+
readonly conversation_createdAtNs: (a: number) => bigint;
|
|
1063
|
+
readonly conversation_dmPeerInboxId: (a: number) => [number, number, number, number];
|
|
1064
|
+
readonly conversation_findDuplicateDms: (a: number) => any;
|
|
1065
|
+
readonly conversation_findMessages: (a: number, b: number) => any;
|
|
1066
|
+
readonly conversation_findMessagesV2: (a: number, b: number) => any;
|
|
1067
|
+
readonly conversation_findMessagesWithReactions: (a: number, b: number) => any;
|
|
1068
|
+
readonly conversation_getDebugInfo: (a: number) => any;
|
|
1069
|
+
readonly conversation_getHmacKeys: (a: number) => [number, number, number];
|
|
1070
|
+
readonly conversation_getLastReadTimes: (a: number) => any;
|
|
1071
|
+
readonly conversation_groupDescription: (a: number) => [number, number, number, number];
|
|
1072
|
+
readonly conversation_groupImageUrlSquare: (a: number) => [number, number, number, number];
|
|
1073
|
+
readonly conversation_groupMetadata: (a: number) => any;
|
|
1074
|
+
readonly conversation_groupName: (a: number) => [number, number, number, number];
|
|
1075
|
+
readonly conversation_groupPermissions: (a: number) => [number, number, number];
|
|
1076
|
+
readonly conversation_id: (a: number) => [number, number];
|
|
1077
|
+
readonly conversation_isActive: (a: number) => [number, number, number];
|
|
1078
|
+
readonly conversation_isAdmin: (a: number, b: number, c: number) => [number, number, number];
|
|
1079
|
+
readonly conversation_isMessageDisappearingEnabled: (a: number) => [number, number, number];
|
|
1080
|
+
readonly conversation_isSuperAdmin: (a: number, b: number, c: number) => [number, number, number];
|
|
1081
|
+
readonly conversation_listMembers: (a: number) => any;
|
|
1082
|
+
readonly conversation_membershipState: (a: number) => [number, number, number];
|
|
1083
|
+
readonly conversation_messageDisappearingSettings: (a: number) => [number, number, number];
|
|
1084
|
+
readonly conversation_pausedForVersion: (a: number) => [number, number, number, number];
|
|
1085
|
+
readonly conversation_publishMessages: (a: number) => any;
|
|
1086
|
+
readonly conversation_removeAdmin: (a: number, b: number, c: number) => any;
|
|
1087
|
+
readonly conversation_removeMembers: (a: number, b: number, c: number) => any;
|
|
1088
|
+
readonly conversation_removeMembersByInboxId: (a: number, b: number, c: number) => any;
|
|
1089
|
+
readonly conversation_removeMessageDisappearingSettings: (a: number) => any;
|
|
1090
|
+
readonly conversation_removeSuperAdmin: (a: number, b: number, c: number) => any;
|
|
1091
|
+
readonly conversation_send: (a: number, b: number, c: number) => any;
|
|
1092
|
+
readonly conversation_sendOptimistic: (a: number, b: number, c: number) => [number, number, number, number];
|
|
1093
|
+
readonly conversation_stream: (a: number, b: any) => [number, number, number];
|
|
1094
|
+
readonly conversation_superAdminList: (a: number) => [number, number, number, number];
|
|
1095
|
+
readonly conversation_sync: (a: number) => any;
|
|
1096
|
+
readonly conversation_updateAppData: (a: number, b: number, c: number) => any;
|
|
1097
|
+
readonly conversation_updateGroupDescription: (a: number, b: number, c: number) => any;
|
|
1098
|
+
readonly conversation_updateGroupImageUrlSquare: (a: number, b: number, c: number) => any;
|
|
1099
|
+
readonly conversation_updateGroupName: (a: number, b: number, c: number) => any;
|
|
1100
|
+
readonly conversation_updateMessageDisappearingSettings: (a: number, b: number) => any;
|
|
1101
|
+
readonly conversation_updatePermissionPolicy: (a: number, b: number, c: number, d: number) => any;
|
|
1102
|
+
readonly credential_new: (a: number, b: number, c: number, d: number, e: bigint) => number;
|
|
1103
|
+
readonly decodeReadReceipt: (a: any) => [number, number, number];
|
|
1104
|
+
readonly decodeWalletSendCalls: (a: any) => [number, number, number];
|
|
1105
|
+
readonly decodeXmtpText: (a: any) => [number, number, number, number];
|
|
1106
|
+
readonly encodeReadReceipt: (a: number) => [number, number, number];
|
|
1107
|
+
readonly encodeWalletSendCalls: (a: any) => [number, number, number];
|
|
1108
|
+
readonly encodeXmtpText: (a: number, b: number) => [number, number, number];
|
|
1109
|
+
readonly groupmember_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
1110
|
+
readonly groupmetadata_conversationType: (a: number) => [number, number];
|
|
1111
|
+
readonly groupmetadata_creatorInboxId: (a: number) => [number, number];
|
|
1112
|
+
readonly sendmessageopts_new: (a: number) => number;
|
|
1113
|
+
readonly __wbg_set_textcontent_content: (a: number, b: number, c: number) => void;
|
|
1114
|
+
readonly __wbg_contenttypeid_free: (a: number, b: number) => void;
|
|
1115
|
+
readonly __wbg_encodedcontent_free: (a: number, b: number) => void;
|
|
1116
|
+
readonly __wbg_get_contenttypeid_authorityId: (a: number) => [number, number];
|
|
1117
|
+
readonly __wbg_get_contenttypeid_typeId: (a: number) => [number, number];
|
|
1118
|
+
readonly __wbg_get_contenttypeid_versionMajor: (a: number) => number;
|
|
1119
|
+
readonly __wbg_get_contenttypeid_versionMinor: (a: number) => number;
|
|
1120
|
+
readonly __wbg_get_encodedcontent_compression: (a: number) => number;
|
|
1121
|
+
readonly __wbg_get_encodedcontent_content: (a: number) => any;
|
|
1122
|
+
readonly __wbg_get_encodedcontent_fallback: (a: number) => [number, number];
|
|
1123
|
+
readonly __wbg_get_encodedcontent_parameters: (a: number) => any;
|
|
1124
|
+
readonly __wbg_get_encodedcontent_type: (a: number) => number;
|
|
1125
|
+
readonly __wbg_get_listmessagesoptions_contentTypes: (a: number) => [number, number];
|
|
1126
|
+
readonly __wbg_get_listmessagesoptions_deliveryStatus: (a: number) => number;
|
|
1127
|
+
readonly __wbg_get_listmessagesoptions_direction: (a: number) => number;
|
|
1128
|
+
readonly __wbg_get_listmessagesoptions_excludeContentTypes: (a: number) => [number, number];
|
|
1129
|
+
readonly __wbg_get_listmessagesoptions_excludeSenderInboxIds: (a: number) => [number, number];
|
|
1130
|
+
readonly __wbg_get_listmessagesoptions_insertedAfterNs: (a: number) => [number, bigint];
|
|
1131
|
+
readonly __wbg_get_listmessagesoptions_insertedBeforeNs: (a: number) => [number, bigint];
|
|
1132
|
+
readonly __wbg_get_listmessagesoptions_kind: (a: number) => number;
|
|
1133
|
+
readonly __wbg_get_listmessagesoptions_limit: (a: number) => [number, bigint];
|
|
1134
|
+
readonly __wbg_get_listmessagesoptions_sentAfterNs: (a: number) => [number, bigint];
|
|
1135
|
+
readonly __wbg_get_listmessagesoptions_sentBeforeNs: (a: number) => [number, bigint];
|
|
1136
|
+
readonly __wbg_get_listmessagesoptions_sortBy: (a: number) => number;
|
|
1137
|
+
readonly __wbg_get_message_content: (a: number) => number;
|
|
1138
|
+
readonly __wbg_get_message_convoId: (a: number) => [number, number];
|
|
1139
|
+
readonly __wbg_get_message_deliveryStatus: (a: number) => number;
|
|
1140
|
+
readonly __wbg_get_message_id: (a: number) => [number, number];
|
|
1141
|
+
readonly __wbg_get_message_kind: (a: number) => number;
|
|
1142
|
+
readonly __wbg_get_message_senderInboxId: (a: number) => [number, number];
|
|
1143
|
+
readonly __wbg_get_message_sentAtNs: (a: number) => bigint;
|
|
1144
|
+
readonly __wbg_get_messagewithreactions_message: (a: number) => number;
|
|
1145
|
+
readonly __wbg_get_messagewithreactions_reactions: (a: number) => [number, number];
|
|
1026
1146
|
readonly __wbg_get_reaction_action: (a: number) => number;
|
|
1027
1147
|
readonly __wbg_get_reaction_content: (a: number) => [number, number];
|
|
1028
1148
|
readonly __wbg_get_reaction_reference: (a: number) => [number, number];
|
|
@@ -1031,48 +1151,12 @@ export interface InitOutput {
|
|
|
1031
1151
|
readonly __wbg_get_reactionpayload_content: (a: number) => [number, number];
|
|
1032
1152
|
readonly __wbg_get_reactionpayload_reference: (a: number) => [number, number];
|
|
1033
1153
|
readonly __wbg_get_reactionpayload_referenceInboxId: (a: number) => [number, number];
|
|
1034
|
-
readonly __wbg_get_remoteattachmentinfo_contentDigest: (a: number) => [number, number];
|
|
1035
|
-
readonly __wbg_get_remoteattachmentinfo_contentLength: (a: number) => number;
|
|
1036
|
-
readonly __wbg_get_remoteattachmentinfo_filename: (a: number) => [number, number];
|
|
1037
|
-
readonly __wbg_get_remoteattachmentinfo_nonce: (a: number) => any;
|
|
1038
|
-
readonly __wbg_get_remoteattachmentinfo_salt: (a: number) => any;
|
|
1039
|
-
readonly __wbg_get_remoteattachmentinfo_scheme: (a: number) => [number, number];
|
|
1040
|
-
readonly __wbg_get_remoteattachmentinfo_url: (a: number) => [number, number];
|
|
1041
|
-
readonly __wbg_get_transactionmetadata_amount: (a: number) => number;
|
|
1042
|
-
readonly __wbg_get_transactionmetadata_currency: (a: number) => [number, number];
|
|
1043
|
-
readonly __wbg_get_transactionmetadata_decimals: (a: number) => number;
|
|
1044
|
-
readonly __wbg_get_transactionmetadata_fromAddress: (a: number) => [number, number];
|
|
1045
|
-
readonly __wbg_get_transactionmetadata_toAddress: (a: number) => [number, number];
|
|
1046
|
-
readonly __wbg_get_transactionmetadata_transactionType: (a: number) => [number, number];
|
|
1047
|
-
readonly __wbg_get_transactionreference_metadata: (a: number) => number;
|
|
1048
|
-
readonly __wbg_get_transactionreference_namespace: (a: number) => [number, number];
|
|
1049
|
-
readonly __wbg_get_transactionreference_networkId: (a: number) => [number, number];
|
|
1050
|
-
readonly __wbg_get_transactionreference_reference: (a: number) => [number, number];
|
|
1051
|
-
readonly __wbg_grouppermissions_free: (a: number, b: number) => void;
|
|
1052
|
-
readonly __wbg_groupsyncsummary_free: (a: number, b: number) => void;
|
|
1053
|
-
readonly __wbg_identitystats_free: (a: number, b: number) => void;
|
|
1054
1154
|
readonly __wbg_listmessagesoptions_free: (a: number, b: number) => void;
|
|
1055
|
-
readonly __wbg_logoptions_free: (a: number, b: number) => void;
|
|
1056
1155
|
readonly __wbg_message_free: (a: number, b: number) => void;
|
|
1057
1156
|
readonly __wbg_messagewithreactions_free: (a: number, b: number) => void;
|
|
1058
|
-
readonly __wbg_multiremoteattachment_free: (a: number, b: number) => void;
|
|
1059
|
-
readonly __wbg_opfs_free: (a: number, b: number) => void;
|
|
1060
|
-
readonly __wbg_passkeysignature_free: (a: number, b: number) => void;
|
|
1061
|
-
readonly __wbg_permissionpolicyset_free: (a: number, b: number) => void;
|
|
1062
1157
|
readonly __wbg_reaction_free: (a: number, b: number) => void;
|
|
1063
1158
|
readonly __wbg_reactionpayload_free: (a: number, b: number) => void;
|
|
1064
|
-
readonly
|
|
1065
|
-
readonly __wbg_set_apistats_fetch_key_package: (a: number, b: bigint) => void;
|
|
1066
|
-
readonly __wbg_set_apistats_query_group_messages: (a: number, b: bigint) => void;
|
|
1067
|
-
readonly __wbg_set_apistats_query_welcome_messages: (a: number, b: bigint) => void;
|
|
1068
|
-
readonly __wbg_set_apistats_send_group_messages: (a: number, b: bigint) => void;
|
|
1069
|
-
readonly __wbg_set_apistats_send_welcome_messages: (a: number, b: bigint) => void;
|
|
1070
|
-
readonly __wbg_set_apistats_subscribe_messages: (a: number, b: bigint) => void;
|
|
1071
|
-
readonly __wbg_set_apistats_subscribe_welcomes: (a: number, b: bigint) => void;
|
|
1072
|
-
readonly __wbg_set_apistats_upload_key_package: (a: number, b: bigint) => void;
|
|
1073
|
-
readonly __wbg_set_consent_entity: (a: number, b: number, c: number) => void;
|
|
1074
|
-
readonly __wbg_set_consent_entityType: (a: number, b: number) => void;
|
|
1075
|
-
readonly __wbg_set_consent_state: (a: number, b: number) => void;
|
|
1159
|
+
readonly __wbg_set_contenttypeid_authorityId: (a: number, b: number, c: number) => void;
|
|
1076
1160
|
readonly __wbg_set_contenttypeid_typeId: (a: number, b: number, c: number) => void;
|
|
1077
1161
|
readonly __wbg_set_contenttypeid_versionMajor: (a: number, b: number) => void;
|
|
1078
1162
|
readonly __wbg_set_contenttypeid_versionMinor: (a: number, b: number) => void;
|
|
@@ -1081,51 +1165,310 @@ export interface InitOutput {
|
|
|
1081
1165
|
readonly __wbg_set_encodedcontent_fallback: (a: number, b: number, c: number) => void;
|
|
1082
1166
|
readonly __wbg_set_encodedcontent_parameters: (a: number, b: any) => void;
|
|
1083
1167
|
readonly __wbg_set_encodedcontent_type: (a: number, b: number) => void;
|
|
1084
|
-
readonly __wbg_set_groupsyncsummary_numEligible: (a: number, b: number) => void;
|
|
1085
|
-
readonly __wbg_set_groupsyncsummary_numSynced: (a: number, b: number) => void;
|
|
1086
1168
|
readonly __wbg_set_listmessagesoptions_contentTypes: (a: number, b: number, c: number) => void;
|
|
1087
1169
|
readonly __wbg_set_listmessagesoptions_deliveryStatus: (a: number, b: number) => void;
|
|
1088
1170
|
readonly __wbg_set_listmessagesoptions_direction: (a: number, b: number) => void;
|
|
1089
1171
|
readonly __wbg_set_listmessagesoptions_excludeContentTypes: (a: number, b: number, c: number) => void;
|
|
1090
1172
|
readonly __wbg_set_listmessagesoptions_excludeSenderInboxIds: (a: number, b: number, c: number) => void;
|
|
1173
|
+
readonly __wbg_set_listmessagesoptions_insertedAfterNs: (a: number, b: number, c: bigint) => void;
|
|
1174
|
+
readonly __wbg_set_listmessagesoptions_insertedBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
1091
1175
|
readonly __wbg_set_listmessagesoptions_kind: (a: number, b: number) => void;
|
|
1092
1176
|
readonly __wbg_set_listmessagesoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
1093
1177
|
readonly __wbg_set_listmessagesoptions_sentAfterNs: (a: number, b: number, c: bigint) => void;
|
|
1094
1178
|
readonly __wbg_set_listmessagesoptions_sentBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
1095
|
-
readonly
|
|
1096
|
-
readonly __wbg_set_logoptions_performance: (a: number, b: number) => void;
|
|
1097
|
-
readonly __wbg_set_logoptions_structured: (a: number, b: number) => void;
|
|
1179
|
+
readonly __wbg_set_listmessagesoptions_sortBy: (a: number, b: number) => void;
|
|
1098
1180
|
readonly __wbg_set_message_content: (a: number, b: number) => void;
|
|
1099
1181
|
readonly __wbg_set_message_convoId: (a: number, b: number, c: number) => void;
|
|
1100
1182
|
readonly __wbg_set_message_deliveryStatus: (a: number, b: number) => void;
|
|
1101
1183
|
readonly __wbg_set_message_id: (a: number, b: number, c: number) => void;
|
|
1102
1184
|
readonly __wbg_set_message_kind: (a: number, b: number) => void;
|
|
1103
1185
|
readonly __wbg_set_message_senderInboxId: (a: number, b: number, c: number) => void;
|
|
1186
|
+
readonly __wbg_set_message_sentAtNs: (a: number, b: bigint) => void;
|
|
1104
1187
|
readonly __wbg_set_messagewithreactions_message: (a: number, b: number) => void;
|
|
1105
1188
|
readonly __wbg_set_messagewithreactions_reactions: (a: number, b: number, c: number) => void;
|
|
1106
|
-
readonly __wbg_set_multiremoteattachment_attachments: (a: number, b: number, c: number) => void;
|
|
1107
|
-
readonly __wbg_set_permissionpolicyset_addAdminPolicy: (a: number, b: number) => void;
|
|
1108
|
-
readonly __wbg_set_permissionpolicyset_addMemberPolicy: (a: number, b: number) => void;
|
|
1109
|
-
readonly __wbg_set_permissionpolicyset_removeAdminPolicy: (a: number, b: number) => void;
|
|
1110
|
-
readonly __wbg_set_permissionpolicyset_removeMemberPolicy: (a: number, b: number) => void;
|
|
1111
|
-
readonly __wbg_set_permissionpolicyset_updateGroupDescriptionPolicy: (a: number, b: number) => void;
|
|
1112
|
-
readonly __wbg_set_permissionpolicyset_updateGroupImageUrlSquarePolicy: (a: number, b: number) => void;
|
|
1113
|
-
readonly __wbg_set_permissionpolicyset_updateGroupNamePolicy: (a: number, b: number) => void;
|
|
1114
|
-
readonly __wbg_set_permissionpolicyset_updateMessageDisappearingPolicy: (a: number, b: number) => void;
|
|
1115
1189
|
readonly __wbg_set_reaction_action: (a: number, b: number) => void;
|
|
1116
1190
|
readonly __wbg_set_reaction_content: (a: number, b: number, c: number) => void;
|
|
1117
1191
|
readonly __wbg_set_reaction_schema: (a: number, b: number) => void;
|
|
1192
|
+
readonly contenttypeid_new: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
1193
|
+
readonly decodeReaction: (a: any) => [number, number, number];
|
|
1194
|
+
readonly encodeReaction: (a: number) => [number, number, number];
|
|
1195
|
+
readonly encodedcontent_new: (a: number, b: any, c: number, d: number, e: number, f: any) => number;
|
|
1196
|
+
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;
|
|
1197
|
+
readonly message_new: (a: number, b: number, c: bigint, d: number, e: number, f: number, g: number, h: number, i: number, j: number) => number;
|
|
1198
|
+
readonly reaction_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
1199
|
+
readonly __wbg_set_reaction_reference: (a: number, b: number, c: number) => void;
|
|
1200
|
+
readonly __wbg_set_reaction_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
1201
|
+
readonly __wbg_set_reactionpayload_content: (a: number, b: number, c: number) => void;
|
|
1202
|
+
readonly __wbg_set_reactionpayload_reference: (a: number, b: number, c: number) => void;
|
|
1203
|
+
readonly __wbg_set_reactionpayload_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
1204
|
+
readonly __wbg_set_reactionpayload_action: (a: number, b: number) => void;
|
|
1205
|
+
readonly __wbg_set_reactionpayload_schema: (a: number, b: number) => void;
|
|
1206
|
+
readonly __wbg_get_reactionpayload_action: (a: number) => number;
|
|
1207
|
+
readonly __wbg_get_reactionpayload_schema: (a: number) => number;
|
|
1208
|
+
readonly __wbg_conversationdebuginfo_free: (a: number, b: number) => void;
|
|
1209
|
+
readonly __wbg_conversationlistitem_free: (a: number, b: number) => void;
|
|
1210
|
+
readonly __wbg_conversations_free: (a: number, b: number) => void;
|
|
1211
|
+
readonly __wbg_createdmoptions_free: (a: number, b: number) => void;
|
|
1212
|
+
readonly __wbg_creategroupoptions_free: (a: number, b: number) => void;
|
|
1213
|
+
readonly __wbg_decodedmessage_free: (a: number, b: number) => void;
|
|
1214
|
+
readonly __wbg_decodedmessagecontent_free: (a: number, b: number) => void;
|
|
1215
|
+
readonly __wbg_get_conversationdebuginfo_cursor: (a: number) => [number, number];
|
|
1216
|
+
readonly __wbg_get_conversationdebuginfo_epoch: (a: number) => bigint;
|
|
1217
|
+
readonly __wbg_get_conversationdebuginfo_forkDetails: (a: number) => [number, number];
|
|
1218
|
+
readonly __wbg_get_conversationdebuginfo_isCommitLogForked: (a: number) => number;
|
|
1219
|
+
readonly __wbg_get_conversationdebuginfo_localCommitLog: (a: number) => [number, number];
|
|
1220
|
+
readonly __wbg_get_conversationdebuginfo_maybeForked: (a: number) => number;
|
|
1221
|
+
readonly __wbg_get_conversationdebuginfo_remoteCommitLog: (a: number) => [number, number];
|
|
1222
|
+
readonly __wbg_get_conversationlistitem_conversation: (a: number) => number;
|
|
1223
|
+
readonly __wbg_get_conversationlistitem_isCommitLogForked: (a: number) => number;
|
|
1224
|
+
readonly __wbg_get_conversationlistitem_lastMessage: (a: number) => number;
|
|
1225
|
+
readonly __wbg_get_createdmoptions_messageDisappearingSettings: (a: number) => number;
|
|
1226
|
+
readonly __wbg_get_creategroupoptions_appData: (a: number) => [number, number];
|
|
1227
|
+
readonly __wbg_get_creategroupoptions_customPermissionPolicySet: (a: number) => number;
|
|
1228
|
+
readonly __wbg_get_creategroupoptions_groupDescription: (a: number) => [number, number];
|
|
1229
|
+
readonly __wbg_get_creategroupoptions_groupImageUrlSquare: (a: number) => [number, number];
|
|
1230
|
+
readonly __wbg_get_creategroupoptions_groupName: (a: number) => [number, number];
|
|
1231
|
+
readonly __wbg_get_creategroupoptions_permissions: (a: number) => number;
|
|
1232
|
+
readonly __wbg_get_decodedmessage_content: (a: number) => number;
|
|
1233
|
+
readonly __wbg_get_decodedmessage_content_type: (a: number) => number;
|
|
1234
|
+
readonly __wbg_get_decodedmessage_conversation_id: (a: number) => [number, number];
|
|
1235
|
+
readonly __wbg_get_decodedmessage_delivery_status: (a: number) => number;
|
|
1236
|
+
readonly __wbg_get_decodedmessage_fallback_text: (a: number) => [number, number];
|
|
1237
|
+
readonly __wbg_get_decodedmessage_id: (a: number) => [number, number];
|
|
1238
|
+
readonly __wbg_get_decodedmessage_kind: (a: number) => number;
|
|
1239
|
+
readonly __wbg_get_decodedmessage_num_replies: (a: number) => bigint;
|
|
1240
|
+
readonly __wbg_get_decodedmessage_reactions: (a: number) => [number, number];
|
|
1241
|
+
readonly __wbg_get_decodedmessage_sender_inbox_id: (a: number) => [number, number];
|
|
1242
|
+
readonly __wbg_get_decodedmessage_sender_installation_id: (a: number) => [number, number];
|
|
1243
|
+
readonly __wbg_get_decodedmessage_sent_at_ns: (a: number) => bigint;
|
|
1244
|
+
readonly __wbg_get_hmackey_key: (a: number) => [number, number];
|
|
1245
|
+
readonly __wbg_get_listconversationsoptions_consentStates: (a: number) => [number, number];
|
|
1246
|
+
readonly __wbg_get_listconversationsoptions_conversationType: (a: number) => number;
|
|
1247
|
+
readonly __wbg_get_listconversationsoptions_createdAfterNs: (a: number) => [number, bigint];
|
|
1248
|
+
readonly __wbg_get_listconversationsoptions_createdBeforeNs: (a: number) => [number, bigint];
|
|
1249
|
+
readonly __wbg_get_listconversationsoptions_includeDuplicateDms: (a: number) => number;
|
|
1250
|
+
readonly __wbg_get_listconversationsoptions_limit: (a: number) => [number, bigint];
|
|
1251
|
+
readonly __wbg_get_listconversationsoptions_orderBy: (a: number) => number;
|
|
1252
|
+
readonly __wbg_get_messagedisappearingsettings_inNs: (a: number) => bigint;
|
|
1253
|
+
readonly __wbg_get_xmtpcursor_originator_id: (a: number) => number;
|
|
1254
|
+
readonly __wbg_hmackey_free: (a: number, b: number) => void;
|
|
1255
|
+
readonly __wbg_listconversationsoptions_free: (a: number, b: number) => void;
|
|
1256
|
+
readonly __wbg_messagedisappearingsettings_free: (a: number, b: number) => void;
|
|
1257
|
+
readonly __wbg_set_conversationdebuginfo_cursor: (a: number, b: number, c: number) => void;
|
|
1258
|
+
readonly __wbg_set_conversationdebuginfo_epoch: (a: number, b: bigint) => void;
|
|
1259
|
+
readonly __wbg_set_conversationdebuginfo_forkDetails: (a: number, b: number, c: number) => void;
|
|
1260
|
+
readonly __wbg_set_conversationdebuginfo_isCommitLogForked: (a: number, b: number) => void;
|
|
1261
|
+
readonly __wbg_set_conversationdebuginfo_localCommitLog: (a: number, b: number, c: number) => void;
|
|
1262
|
+
readonly __wbg_set_conversationdebuginfo_maybeForked: (a: number, b: number) => void;
|
|
1263
|
+
readonly __wbg_set_conversationdebuginfo_remoteCommitLog: (a: number, b: number, c: number) => void;
|
|
1264
|
+
readonly __wbg_set_conversationlistitem_conversation: (a: number, b: number) => void;
|
|
1265
|
+
readonly __wbg_set_conversationlistitem_isCommitLogForked: (a: number, b: number) => void;
|
|
1266
|
+
readonly __wbg_set_conversationlistitem_lastMessage: (a: number, b: number) => void;
|
|
1267
|
+
readonly __wbg_set_createdmoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
1268
|
+
readonly __wbg_set_creategroupoptions_appData: (a: number, b: number, c: number) => void;
|
|
1269
|
+
readonly __wbg_set_creategroupoptions_customPermissionPolicySet: (a: number, b: number) => void;
|
|
1270
|
+
readonly __wbg_set_creategroupoptions_groupDescription: (a: number, b: number, c: number) => void;
|
|
1271
|
+
readonly __wbg_set_creategroupoptions_groupImageUrlSquare: (a: number, b: number, c: number) => void;
|
|
1272
|
+
readonly __wbg_set_creategroupoptions_groupName: (a: number, b: number, c: number) => void;
|
|
1273
|
+
readonly __wbg_set_creategroupoptions_permissions: (a: number, b: number) => void;
|
|
1274
|
+
readonly __wbg_set_decodedmessage_content: (a: number, b: number) => void;
|
|
1275
|
+
readonly __wbg_set_decodedmessage_content_type: (a: number, b: number) => void;
|
|
1276
|
+
readonly __wbg_set_decodedmessage_conversation_id: (a: number, b: number, c: number) => void;
|
|
1277
|
+
readonly __wbg_set_decodedmessage_delivery_status: (a: number, b: number) => void;
|
|
1278
|
+
readonly __wbg_set_decodedmessage_fallback_text: (a: number, b: number, c: number) => void;
|
|
1279
|
+
readonly __wbg_set_decodedmessage_id: (a: number, b: number, c: number) => void;
|
|
1280
|
+
readonly __wbg_set_decodedmessage_kind: (a: number, b: number) => void;
|
|
1281
|
+
readonly __wbg_set_decodedmessage_num_replies: (a: number, b: bigint) => void;
|
|
1282
|
+
readonly __wbg_set_decodedmessage_reactions: (a: number, b: number, c: number) => void;
|
|
1283
|
+
readonly __wbg_set_decodedmessage_sender_inbox_id: (a: number, b: number, c: number) => void;
|
|
1284
|
+
readonly __wbg_set_decodedmessage_sender_installation_id: (a: number, b: number, c: number) => void;
|
|
1285
|
+
readonly __wbg_set_decodedmessage_sent_at_ns: (a: number, b: bigint) => void;
|
|
1286
|
+
readonly __wbg_set_listconversationsoptions_consentStates: (a: number, b: number, c: number) => void;
|
|
1287
|
+
readonly __wbg_set_listconversationsoptions_conversationType: (a: number, b: number) => void;
|
|
1288
|
+
readonly __wbg_set_listconversationsoptions_createdAfterNs: (a: number, b: number, c: bigint) => void;
|
|
1289
|
+
readonly __wbg_set_listconversationsoptions_createdBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
1290
|
+
readonly __wbg_set_listconversationsoptions_includeDuplicateDms: (a: number, b: number) => void;
|
|
1291
|
+
readonly __wbg_set_listconversationsoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
1292
|
+
readonly __wbg_set_listconversationsoptions_orderBy: (a: number, b: number) => void;
|
|
1293
|
+
readonly __wbg_set_messagedisappearingsettings_inNs: (a: number, b: bigint) => void;
|
|
1294
|
+
readonly __wbg_set_xmtpcursor_originator_id: (a: number, b: number) => void;
|
|
1295
|
+
readonly __wbg_xmtpcursor_free: (a: number, b: number) => void;
|
|
1296
|
+
readonly conversationlistitem_new: (a: number, b: number, c: number) => number;
|
|
1297
|
+
readonly conversations_createDm: (a: number, b: any, c: number) => any;
|
|
1298
|
+
readonly conversations_createDmByInboxId: (a: number, b: number, c: number, d: number) => any;
|
|
1299
|
+
readonly conversations_createGroup: (a: number, b: number, c: number, d: number) => any;
|
|
1300
|
+
readonly conversations_createGroupByInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
1301
|
+
readonly conversations_createGroupOptimistic: (a: number, b: number) => [number, number, number];
|
|
1302
|
+
readonly conversations_findDmByTargetInboxId: (a: number, b: number, c: number) => [number, number, number];
|
|
1303
|
+
readonly conversations_findGroupById: (a: number, b: number, c: number) => [number, number, number];
|
|
1304
|
+
readonly conversations_findMessageById: (a: number, b: number, c: number) => [number, number, number];
|
|
1305
|
+
readonly conversations_getHmacKeys: (a: number) => [number, number, number];
|
|
1306
|
+
readonly conversations_list: (a: number, b: number) => [number, number, number];
|
|
1307
|
+
readonly conversations_stream: (a: number, b: any, c: number) => [number, number, number];
|
|
1308
|
+
readonly conversations_streamAllMessages: (a: number, b: any, c: number, d: number, e: number) => [number, number, number];
|
|
1309
|
+
readonly conversations_streamConsent: (a: number, b: any) => [number, number, number];
|
|
1310
|
+
readonly conversations_streamLocal: (a: number, b: number) => any;
|
|
1311
|
+
readonly conversations_streamMessageDeletions: (a: number, b: any) => [number, number, number];
|
|
1312
|
+
readonly conversations_streamPreferences: (a: number, b: any) => [number, number, number];
|
|
1313
|
+
readonly conversations_sync: (a: number) => any;
|
|
1314
|
+
readonly conversations_syncAllConversations: (a: number, b: number, c: number) => any;
|
|
1315
|
+
readonly createdmoptions_new: (a: number) => number;
|
|
1316
|
+
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;
|
|
1317
|
+
readonly decodedmessagecontent_asActions: (a: number) => [number, number, number];
|
|
1318
|
+
readonly decodedmessagecontent_asAttachment: (a: number) => number;
|
|
1319
|
+
readonly decodedmessagecontent_asCustom: (a: number) => number;
|
|
1320
|
+
readonly decodedmessagecontent_asGroupUpdated: (a: number) => number;
|
|
1321
|
+
readonly decodedmessagecontent_asIntent: (a: number) => [number, number, number];
|
|
1322
|
+
readonly decodedmessagecontent_asMultiRemoteAttachment: (a: number) => number;
|
|
1323
|
+
readonly decodedmessagecontent_asReaction: (a: number) => number;
|
|
1324
|
+
readonly decodedmessagecontent_asReadReceipt: (a: number) => number;
|
|
1325
|
+
readonly decodedmessagecontent_asRemoteAttachment: (a: number) => number;
|
|
1326
|
+
readonly decodedmessagecontent_asReply: (a: number) => number;
|
|
1327
|
+
readonly decodedmessagecontent_asText: (a: number) => number;
|
|
1328
|
+
readonly decodedmessagecontent_asTransactionReference: (a: number) => number;
|
|
1329
|
+
readonly decodedmessagecontent_asWalletSendCalls: (a: number) => [number, number, number];
|
|
1330
|
+
readonly decodedmessagecontent_payloadType: (a: number) => number;
|
|
1331
|
+
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;
|
|
1332
|
+
readonly messagedisappearingsettings_new: (a: bigint, b: bigint) => number;
|
|
1333
|
+
readonly __wbg_set_hmackey_key: (a: number, b: number, c: number) => void;
|
|
1334
|
+
readonly __wbg_set_hmackey_epoch: (a: number, b: bigint) => void;
|
|
1335
|
+
readonly __wbg_set_messagedisappearingsettings_fromNs: (a: number, b: bigint) => void;
|
|
1336
|
+
readonly __wbg_set_xmtpcursor_sequence_id: (a: number, b: bigint) => void;
|
|
1337
|
+
readonly __wbg_get_creategroupoptions_messageDisappearingSettings: (a: number) => number;
|
|
1338
|
+
readonly __wbg_get_hmackey_epoch: (a: number) => bigint;
|
|
1339
|
+
readonly __wbg_get_messagedisappearingsettings_fromNs: (a: number) => bigint;
|
|
1340
|
+
readonly __wbg_get_xmtpcursor_sequence_id: (a: number) => bigint;
|
|
1341
|
+
readonly __wbg_set_creategroupoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
1342
|
+
readonly __wbg_action_free: (a: number, b: number) => void;
|
|
1343
|
+
readonly __wbg_actions_free: (a: number, b: number) => void;
|
|
1344
|
+
readonly __wbg_client_free: (a: number, b: number) => void;
|
|
1345
|
+
readonly __wbg_consent_free: (a: number, b: number) => void;
|
|
1346
|
+
readonly __wbg_get_action_expiresAtNs: (a: number) => [number, bigint];
|
|
1347
|
+
readonly __wbg_get_action_id: (a: number) => [number, number];
|
|
1348
|
+
readonly __wbg_get_action_imageUrl: (a: number) => [number, number];
|
|
1349
|
+
readonly __wbg_get_action_label: (a: number) => [number, number];
|
|
1350
|
+
readonly __wbg_get_action_style: (a: number) => number;
|
|
1351
|
+
readonly __wbg_get_actions_description: (a: number) => [number, number];
|
|
1352
|
+
readonly __wbg_get_actions_id: (a: number) => [number, number];
|
|
1353
|
+
readonly __wbg_get_consent_entity: (a: number) => [number, number];
|
|
1354
|
+
readonly __wbg_get_consent_entityType: (a: number) => number;
|
|
1355
|
+
readonly __wbg_get_consent_state: (a: number) => number;
|
|
1356
|
+
readonly __wbg_get_groupsyncsummary_numEligible: (a: number) => number;
|
|
1357
|
+
readonly __wbg_get_groupsyncsummary_numSynced: (a: number) => number;
|
|
1358
|
+
readonly __wbg_get_groupupdated_addedAdminInboxes: (a: number) => [number, number];
|
|
1359
|
+
readonly __wbg_get_groupupdated_addedInboxes: (a: number) => [number, number];
|
|
1360
|
+
readonly __wbg_get_groupupdated_addedSuperAdminInboxes: (a: number) => [number, number];
|
|
1361
|
+
readonly __wbg_get_groupupdated_initiatedByInboxId: (a: number) => [number, number];
|
|
1362
|
+
readonly __wbg_get_groupupdated_leftInboxes: (a: number) => [number, number];
|
|
1363
|
+
readonly __wbg_get_groupupdated_metadataFieldChanges: (a: number) => [number, number];
|
|
1364
|
+
readonly __wbg_get_groupupdated_removedAdminInboxes: (a: number) => [number, number];
|
|
1365
|
+
readonly __wbg_get_groupupdated_removedInboxes: (a: number) => [number, number];
|
|
1366
|
+
readonly __wbg_get_groupupdated_removedSuperAdminInboxes: (a: number) => [number, number];
|
|
1367
|
+
readonly __wbg_get_inbox_inboxId: (a: number) => [number, number];
|
|
1368
|
+
readonly __wbg_get_inboxstate_accountIdentifiers: (a: number) => [number, number];
|
|
1369
|
+
readonly __wbg_get_inboxstate_inboxId: (a: number) => [number, number];
|
|
1370
|
+
readonly __wbg_get_inboxstate_installations: (a: number) => [number, number];
|
|
1371
|
+
readonly __wbg_get_inboxstate_recoveryIdentifier: (a: number) => any;
|
|
1372
|
+
readonly __wbg_get_installation_bytes: (a: number) => any;
|
|
1373
|
+
readonly __wbg_get_installation_id: (a: number) => [number, number];
|
|
1374
|
+
readonly __wbg_get_keypackagestatus_lifetime: (a: number) => number;
|
|
1375
|
+
readonly __wbg_get_keypackagestatus_validationError: (a: number) => [number, number];
|
|
1376
|
+
readonly __wbg_get_lifetime_not_after: (a: number) => bigint;
|
|
1377
|
+
readonly __wbg_get_lifetime_not_before: (a: number) => bigint;
|
|
1378
|
+
readonly __wbg_get_logoptions_level: (a: number) => number;
|
|
1379
|
+
readonly __wbg_get_logoptions_performance: (a: number) => number;
|
|
1380
|
+
readonly __wbg_get_logoptions_structured: (a: number) => number;
|
|
1381
|
+
readonly __wbg_get_metadatafieldchange_fieldName: (a: number) => [number, number];
|
|
1382
|
+
readonly __wbg_get_metadatafieldchange_newValue: (a: number) => [number, number];
|
|
1383
|
+
readonly __wbg_get_metadatafieldchange_oldValue: (a: number) => [number, number];
|
|
1384
|
+
readonly __wbg_get_multiremoteattachment_attachments: (a: number) => [number, number];
|
|
1385
|
+
readonly __wbg_get_remoteattachment_contentDigest: (a: number) => [number, number];
|
|
1386
|
+
readonly __wbg_get_remoteattachment_contentLength: (a: number) => number;
|
|
1387
|
+
readonly __wbg_get_remoteattachment_filename: (a: number) => [number, number];
|
|
1388
|
+
readonly __wbg_get_remoteattachment_nonce: (a: number) => [number, number];
|
|
1389
|
+
readonly __wbg_get_remoteattachment_salt: (a: number) => [number, number];
|
|
1390
|
+
readonly __wbg_get_remoteattachment_scheme: (a: number) => [number, number];
|
|
1391
|
+
readonly __wbg_get_remoteattachment_secret: (a: number) => [number, number];
|
|
1392
|
+
readonly __wbg_get_remoteattachment_url: (a: number) => [number, number];
|
|
1393
|
+
readonly __wbg_get_remoteattachmentinfo_contentDigest: (a: number) => [number, number];
|
|
1394
|
+
readonly __wbg_get_remoteattachmentinfo_contentLength: (a: number) => number;
|
|
1395
|
+
readonly __wbg_get_remoteattachmentinfo_nonce: (a: number) => any;
|
|
1396
|
+
readonly __wbg_get_remoteattachmentinfo_salt: (a: number) => any;
|
|
1397
|
+
readonly __wbg_get_remoteattachmentinfo_scheme: (a: number) => [number, number];
|
|
1398
|
+
readonly __wbg_get_remoteattachmentinfo_secret: (a: number) => any;
|
|
1399
|
+
readonly __wbg_get_remoteattachmentinfo_url: (a: number) => [number, number];
|
|
1400
|
+
readonly __wbg_get_transactionmetadata_amount: (a: number) => number;
|
|
1401
|
+
readonly __wbg_get_transactionmetadata_currency: (a: number) => [number, number];
|
|
1402
|
+
readonly __wbg_get_transactionmetadata_decimals: (a: number) => number;
|
|
1403
|
+
readonly __wbg_get_transactionmetadata_fromAddress: (a: number) => [number, number];
|
|
1404
|
+
readonly __wbg_get_transactionmetadata_toAddress: (a: number) => [number, number];
|
|
1405
|
+
readonly __wbg_get_transactionmetadata_transactionType: (a: number) => [number, number];
|
|
1406
|
+
readonly __wbg_get_transactionreference_metadata: (a: number) => number;
|
|
1407
|
+
readonly __wbg_get_transactionreference_namespace: (a: number) => [number, number];
|
|
1408
|
+
readonly __wbg_get_transactionreference_networkId: (a: number) => [number, number];
|
|
1409
|
+
readonly __wbg_get_transactionreference_reference: (a: number) => [number, number];
|
|
1410
|
+
readonly __wbg_groupsyncsummary_free: (a: number, b: number) => void;
|
|
1411
|
+
readonly __wbg_groupupdated_free: (a: number, b: number) => void;
|
|
1412
|
+
readonly __wbg_inbox_free: (a: number, b: number) => void;
|
|
1413
|
+
readonly __wbg_inboxstate_free: (a: number, b: number) => void;
|
|
1414
|
+
readonly __wbg_installation_free: (a: number, b: number) => void;
|
|
1415
|
+
readonly __wbg_keypackagestatus_free: (a: number, b: number) => void;
|
|
1416
|
+
readonly __wbg_lifetime_free: (a: number, b: number) => void;
|
|
1417
|
+
readonly __wbg_logoptions_free: (a: number, b: number) => void;
|
|
1418
|
+
readonly __wbg_metadatafieldchange_free: (a: number, b: number) => void;
|
|
1419
|
+
readonly __wbg_multiremoteattachment_free: (a: number, b: number) => void;
|
|
1420
|
+
readonly __wbg_passkeysignature_free: (a: number, b: number) => void;
|
|
1421
|
+
readonly __wbg_remoteattachment_free: (a: number, b: number) => void;
|
|
1422
|
+
readonly __wbg_remoteattachmentinfo_free: (a: number, b: number) => void;
|
|
1423
|
+
readonly __wbg_set_action_expiresAtNs: (a: number, b: number, c: bigint) => void;
|
|
1424
|
+
readonly __wbg_set_action_id: (a: number, b: number, c: number) => void;
|
|
1425
|
+
readonly __wbg_set_action_imageUrl: (a: number, b: number, c: number) => void;
|
|
1426
|
+
readonly __wbg_set_action_label: (a: number, b: number, c: number) => void;
|
|
1427
|
+
readonly __wbg_set_action_style: (a: number, b: number) => void;
|
|
1428
|
+
readonly __wbg_set_consent_entity: (a: number, b: number, c: number) => void;
|
|
1429
|
+
readonly __wbg_set_consent_entityType: (a: number, b: number) => void;
|
|
1430
|
+
readonly __wbg_set_consent_state: (a: number, b: number) => void;
|
|
1431
|
+
readonly __wbg_set_groupsyncsummary_numEligible: (a: number, b: number) => void;
|
|
1432
|
+
readonly __wbg_set_groupsyncsummary_numSynced: (a: number, b: number) => void;
|
|
1433
|
+
readonly __wbg_set_groupupdated_addedAdminInboxes: (a: number, b: number, c: number) => void;
|
|
1434
|
+
readonly __wbg_set_groupupdated_addedInboxes: (a: number, b: number, c: number) => void;
|
|
1435
|
+
readonly __wbg_set_groupupdated_addedSuperAdminInboxes: (a: number, b: number, c: number) => void;
|
|
1436
|
+
readonly __wbg_set_groupupdated_leftInboxes: (a: number, b: number, c: number) => void;
|
|
1437
|
+
readonly __wbg_set_groupupdated_metadataFieldChanges: (a: number, b: number, c: number) => void;
|
|
1438
|
+
readonly __wbg_set_groupupdated_removedAdminInboxes: (a: number, b: number, c: number) => void;
|
|
1439
|
+
readonly __wbg_set_groupupdated_removedInboxes: (a: number, b: number, c: number) => void;
|
|
1440
|
+
readonly __wbg_set_groupupdated_removedSuperAdminInboxes: (a: number, b: number, c: number) => void;
|
|
1441
|
+
readonly __wbg_set_inboxstate_accountIdentifiers: (a: number, b: number, c: number) => void;
|
|
1442
|
+
readonly __wbg_set_inboxstate_installations: (a: number, b: number, c: number) => void;
|
|
1443
|
+
readonly __wbg_set_inboxstate_recoveryIdentifier: (a: number, b: any) => void;
|
|
1444
|
+
readonly __wbg_set_installation_bytes: (a: number, b: any) => void;
|
|
1445
|
+
readonly __wbg_set_keypackagestatus_lifetime: (a: number, b: number) => void;
|
|
1446
|
+
readonly __wbg_set_keypackagestatus_validationError: (a: number, b: number, c: number) => void;
|
|
1447
|
+
readonly __wbg_set_lifetime_not_after: (a: number, b: bigint) => void;
|
|
1448
|
+
readonly __wbg_set_lifetime_not_before: (a: number, b: bigint) => void;
|
|
1449
|
+
readonly __wbg_set_logoptions_level: (a: number, b: number) => void;
|
|
1450
|
+
readonly __wbg_set_logoptions_performance: (a: number, b: number) => void;
|
|
1451
|
+
readonly __wbg_set_logoptions_structured: (a: number, b: number) => void;
|
|
1452
|
+
readonly __wbg_set_metadatafieldchange_newValue: (a: number, b: number, c: number) => void;
|
|
1453
|
+
readonly __wbg_set_metadatafieldchange_oldValue: (a: number, b: number, c: number) => void;
|
|
1454
|
+
readonly __wbg_set_multiremoteattachment_attachments: (a: number, b: number, c: number) => void;
|
|
1455
|
+
readonly __wbg_set_remoteattachment_contentDigest: (a: number, b: number, c: number) => void;
|
|
1456
|
+
readonly __wbg_set_remoteattachment_contentLength: (a: number, b: number) => void;
|
|
1457
|
+
readonly __wbg_set_remoteattachment_filename: (a: number, b: number, c: number) => void;
|
|
1458
|
+
readonly __wbg_set_remoteattachment_nonce: (a: number, b: number, c: number) => void;
|
|
1459
|
+
readonly __wbg_set_remoteattachment_salt: (a: number, b: number, c: number) => void;
|
|
1460
|
+
readonly __wbg_set_remoteattachment_scheme: (a: number, b: number, c: number) => void;
|
|
1461
|
+
readonly __wbg_set_remoteattachment_secret: (a: number, b: number, c: number) => void;
|
|
1118
1462
|
readonly __wbg_set_remoteattachmentinfo_contentDigest: (a: number, b: number, c: number) => void;
|
|
1119
1463
|
readonly __wbg_set_remoteattachmentinfo_contentLength: (a: number, b: number) => void;
|
|
1120
1464
|
readonly __wbg_set_remoteattachmentinfo_filename: (a: number, b: number, c: number) => void;
|
|
1121
1465
|
readonly __wbg_set_remoteattachmentinfo_nonce: (a: number, b: any) => void;
|
|
1122
1466
|
readonly __wbg_set_remoteattachmentinfo_salt: (a: number, b: any) => void;
|
|
1123
1467
|
readonly __wbg_set_remoteattachmentinfo_scheme: (a: number, b: number, c: number) => void;
|
|
1124
|
-
readonly
|
|
1468
|
+
readonly __wbg_set_remoteattachmentinfo_secret: (a: number, b: any) => void;
|
|
1125
1469
|
readonly __wbg_set_transactionmetadata_amount: (a: number, b: number) => void;
|
|
1126
1470
|
readonly __wbg_set_transactionmetadata_decimals: (a: number, b: number) => void;
|
|
1127
1471
|
readonly __wbg_set_transactionmetadata_fromAddress: (a: number, b: number, c: number) => void;
|
|
1128
|
-
readonly __wbg_set_transactionmetadata_toAddress: (a: number, b: number, c: number) => void;
|
|
1129
1472
|
readonly __wbg_set_transactionmetadata_transactionType: (a: number, b: number, c: number) => void;
|
|
1130
1473
|
readonly __wbg_set_transactionreference_metadata: (a: number, b: number) => void;
|
|
1131
1474
|
readonly __wbg_set_transactionreference_namespace: (a: number, b: number, c: number) => void;
|
|
@@ -1134,6 +1477,11 @@ export interface InitOutput {
|
|
|
1134
1477
|
readonly __wbg_signaturerequesthandle_free: (a: number, b: number) => void;
|
|
1135
1478
|
readonly __wbg_transactionmetadata_free: (a: number, b: number) => void;
|
|
1136
1479
|
readonly __wbg_transactionreference_free: (a: number, b: number) => void;
|
|
1480
|
+
readonly action_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: bigint) => number;
|
|
1481
|
+
readonly actions_addAction: (a: number, b: number) => void;
|
|
1482
|
+
readonly actions_getActions: (a: number) => [number, number];
|
|
1483
|
+
readonly actions_new: (a: number, b: number, c: number, d: number, e: number, f: bigint) => number;
|
|
1484
|
+
readonly actions_setActions: (a: number, b: number, c: number) => void;
|
|
1137
1485
|
readonly applySignatureRequest: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
1138
1486
|
readonly client_accountIdentifier: (a: number) => any;
|
|
1139
1487
|
readonly client_addWalletSignatureRequest: (a: number, b: any) => any;
|
|
@@ -1150,7 +1498,10 @@ export interface InitOutput {
|
|
|
1150
1498
|
readonly client_deleteMessage: (a: number, b: number, c: number) => [number, number, number];
|
|
1151
1499
|
readonly client_findInboxIdByIdentifier: (a: number, b: any) => any;
|
|
1152
1500
|
readonly client_getConsentState: (a: number, b: number, c: number, d: number) => any;
|
|
1501
|
+
readonly client_getKeyPackageStatusesForInstallationIds: (a: number, b: number, c: number) => any;
|
|
1502
|
+
readonly client_getLatestInboxState: (a: number, b: number, c: number) => any;
|
|
1153
1503
|
readonly client_inboxId: (a: number) => [number, number];
|
|
1504
|
+
readonly client_inboxState: (a: number, b: number) => any;
|
|
1154
1505
|
readonly client_inboxStateFromInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
1155
1506
|
readonly client_installationId: (a: number) => [number, number];
|
|
1156
1507
|
readonly client_installationIdBytes: (a: number) => any;
|
|
@@ -1168,36 +1519,26 @@ export interface InitOutput {
|
|
|
1168
1519
|
readonly client_uploadDebugArchive: (a: number, b: number, c: number) => any;
|
|
1169
1520
|
readonly client_verifySignedWithInstallationKey: (a: number, b: number, c: number, d: any) => [number, number];
|
|
1170
1521
|
readonly consent_new: (a: number, b: number, c: number, d: number) => number;
|
|
1171
|
-
readonly contenttypeid_new: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
1172
1522
|
readonly conversation_consentState: (a: number) => [number, number, number];
|
|
1173
1523
|
readonly conversation_updateConsentState: (a: number, b: number) => [number, number];
|
|
1174
|
-
readonly createClient: (a: number, b: number, c: number, d: number, e: any, f: number, g: number, h: number, i: number, j: number, k: number, l: number, m: number, n: number, o: number, p: number, q: number, r: number) => any;
|
|
1524
|
+
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;
|
|
1525
|
+
readonly decodeActions: (a: any) => [number, number, number];
|
|
1526
|
+
readonly decodeGroupUpdated: (a: any) => [number, number, number];
|
|
1175
1527
|
readonly decodeMultiRemoteAttachment: (a: any) => [number, number, number];
|
|
1176
|
-
readonly
|
|
1528
|
+
readonly decodeRemoteAttachment: (a: any) => [number, number, number];
|
|
1529
|
+
readonly decodeTransactionReference: (a: any) => [number, number, number];
|
|
1530
|
+
readonly encodeActions: (a: number) => [number, number, number];
|
|
1177
1531
|
readonly encodeMultiRemoteAttachment: (a: number) => [number, number, number];
|
|
1178
|
-
readonly
|
|
1179
|
-
readonly
|
|
1180
|
-
readonly
|
|
1181
|
-
readonly
|
|
1532
|
+
readonly encodeRemoteAttachment: (a: number) => [number, number, number];
|
|
1533
|
+
readonly encodeTransactionReference: (a: number) => [number, number, number];
|
|
1534
|
+
readonly generateInboxId: (a: any, b: number, c: bigint) => [number, number, number, number];
|
|
1535
|
+
readonly getInboxIdForIdentifier: (a: number, b: number, c: number, d: number, e: any) => any;
|
|
1182
1536
|
readonly groupsyncsummary_new: (a: number, b: number) => number;
|
|
1183
|
-
readonly
|
|
1537
|
+
readonly inboxStateFromInboxIds: (a: number, b: number, c: number, d: number, e: number, f: number) => any;
|
|
1538
|
+
readonly inboxstate_new: (a: number, b: number, c: any, d: number, e: number, f: number, g: number) => number;
|
|
1539
|
+
readonly installation_new: (a: any, b: number, c: number, d: number, e: bigint) => number;
|
|
1184
1540
|
readonly logoptions_new: (a: number, b: number, c: number) => number;
|
|
1185
|
-
readonly message_new: (a: number, b: number, c: bigint, d: number, e: number, f: number, g: number, h: number, i: number, j: number) => number;
|
|
1186
1541
|
readonly multiremoteattachment_new: (a: number, b: number) => number;
|
|
1187
|
-
readonly opfs_addCapacity: (a: number) => any;
|
|
1188
|
-
readonly opfs_error: () => [number, number];
|
|
1189
|
-
readonly opfs_exists: () => number;
|
|
1190
|
-
readonly opfs_exportFile: (a: number, b: number) => [number, number, number, number];
|
|
1191
|
-
readonly opfs_getCapacity: () => number;
|
|
1192
|
-
readonly opfs_getFileCount: () => number;
|
|
1193
|
-
readonly opfs_getFileNames: () => [number, number];
|
|
1194
|
-
readonly opfs_importDb: (a: number, b: number, c: number, d: number) => [number, number];
|
|
1195
|
-
readonly opfs_init_sqlite_opfs: () => any;
|
|
1196
|
-
readonly opfs_reduceCapacity: (a: number) => any;
|
|
1197
|
-
readonly opfs_rm: (a: number, b: number) => [number, number, number];
|
|
1198
|
-
readonly opfs_wipeFiles: () => any;
|
|
1199
|
-
readonly permissionpolicyset_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
1200
|
-
readonly reaction_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
1201
1542
|
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;
|
|
1202
1543
|
readonly revokeInstallationsSignatureRequest: (a: number, b: number, c: number, d: number, e: any, f: number, g: number, h: number, i: number) => [number, number, number];
|
|
1203
1544
|
readonly signaturerequesthandle_addEcdsaSignature: (a: number, b: any) => any;
|
|
@@ -1205,202 +1546,54 @@ export interface InitOutput {
|
|
|
1205
1546
|
readonly signaturerequesthandle_addScwSignature: (a: number, b: any, c: any, d: bigint, e: number, f: bigint) => any;
|
|
1206
1547
|
readonly signaturerequesthandle_signatureText: (a: number) => any;
|
|
1207
1548
|
readonly verifySignedWithPublicKey: (a: number, b: number, c: any, d: any) => [number, number];
|
|
1208
|
-
readonly
|
|
1209
|
-
readonly
|
|
1210
|
-
readonly __wbg_set_contenttypeid_authorityId: (a: number, b: number, c: number) => void;
|
|
1211
|
-
readonly __wbg_set_reaction_reference: (a: number, b: number, c: number) => void;
|
|
1212
|
-
readonly __wbg_set_reaction_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
1213
|
-
readonly __wbg_set_reactionpayload_content: (a: number, b: number, c: number) => void;
|
|
1214
|
-
readonly __wbg_set_reactionpayload_reference: (a: number, b: number, c: number) => void;
|
|
1215
|
-
readonly __wbg_set_reactionpayload_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
1216
|
-
readonly __wbg_set_transactionmetadata_currency: (a: number, b: number, c: number) => void;
|
|
1217
|
-
readonly __wbg_get_remoteattachmentinfo_secret: (a: number) => any;
|
|
1218
|
-
readonly __wbg_set_identitystats_get_identity_updates_v2: (a: number, b: bigint) => void;
|
|
1219
|
-
readonly __wbg_set_identitystats_get_inbox_ids: (a: number, b: bigint) => void;
|
|
1220
|
-
readonly __wbg_set_identitystats_publish_identity_update: (a: number, b: bigint) => void;
|
|
1221
|
-
readonly __wbg_set_identitystats_verify_smart_contract_wallet_signature: (a: number, b: bigint) => void;
|
|
1222
|
-
readonly __wbg_set_message_sentAtNs: (a: number, b: bigint) => void;
|
|
1223
|
-
readonly __wbg_set_reactionpayload_action: (a: number, b: number) => void;
|
|
1224
|
-
readonly __wbg_set_reactionpayload_schema: (a: number, b: number) => void;
|
|
1225
|
-
readonly __wbg_set_remoteattachmentinfo_secret: (a: number, b: any) => void;
|
|
1226
|
-
readonly __wbg_get_identitystats_get_identity_updates_v2: (a: number) => bigint;
|
|
1227
|
-
readonly __wbg_get_identitystats_get_inbox_ids: (a: number) => bigint;
|
|
1228
|
-
readonly __wbg_get_identitystats_publish_identity_update: (a: number) => bigint;
|
|
1229
|
-
readonly __wbg_get_identitystats_verify_smart_contract_wallet_signature: (a: number) => bigint;
|
|
1230
|
-
readonly __wbg_get_message_sentAtNs: (a: number) => bigint;
|
|
1231
|
-
readonly __wbg_streamcloser_free: (a: number, b: number) => void;
|
|
1232
|
-
readonly streamcloser_end: (a: number) => void;
|
|
1233
|
-
readonly streamcloser_endAndWait: (a: number) => any;
|
|
1234
|
-
readonly streamcloser_isClosed: (a: number) => number;
|
|
1235
|
-
readonly streamcloser_waitForReady: (a: number) => any;
|
|
1236
|
-
readonly __wbg_conversation_free: (a: number, b: number) => void;
|
|
1237
|
-
readonly __wbg_get_groupmember_accountIdentifiers: (a: number) => [number, number];
|
|
1238
|
-
readonly __wbg_get_groupmember_consentState: (a: number) => number;
|
|
1239
|
-
readonly __wbg_get_groupmember_inboxId: (a: number) => [number, number];
|
|
1240
|
-
readonly __wbg_get_groupmember_installationIds: (a: number) => [number, number];
|
|
1241
|
-
readonly __wbg_get_groupmember_permissionLevel: (a: number) => number;
|
|
1242
|
-
readonly __wbg_get_groupupdated_addedInboxes: (a: number) => [number, number];
|
|
1243
|
-
readonly __wbg_get_groupupdated_initiatedByInboxId: (a: number) => [number, number];
|
|
1244
|
-
readonly __wbg_get_groupupdated_metadataFieldChanges: (a: number) => [number, number];
|
|
1245
|
-
readonly __wbg_get_groupupdated_removedInboxes: (a: number) => [number, number];
|
|
1246
|
-
readonly __wbg_get_inbox_inboxId: (a: number) => [number, number];
|
|
1247
|
-
readonly __wbg_get_inboxstate_accountIdentifiers: (a: number) => [number, number];
|
|
1248
|
-
readonly __wbg_get_inboxstate_inboxId: (a: number) => [number, number];
|
|
1249
|
-
readonly __wbg_get_inboxstate_installations: (a: number) => [number, number];
|
|
1250
|
-
readonly __wbg_get_inboxstate_recoveryIdentifier: (a: number) => any;
|
|
1251
|
-
readonly __wbg_get_installation_bytes: (a: number) => any;
|
|
1252
|
-
readonly __wbg_get_installation_clientTimestampNs: (a: number) => [number, bigint];
|
|
1253
|
-
readonly __wbg_get_installation_id: (a: number) => [number, number];
|
|
1254
|
-
readonly __wbg_get_keypackagestatus_lifetime: (a: number) => number;
|
|
1255
|
-
readonly __wbg_get_keypackagestatus_validationError: (a: number) => [number, number];
|
|
1256
|
-
readonly __wbg_get_lifetime_not_after: (a: number) => bigint;
|
|
1257
|
-
readonly __wbg_get_lifetime_not_before: (a: number) => bigint;
|
|
1258
|
-
readonly __wbg_get_metadatafieldchange_fieldName: (a: number) => [number, number];
|
|
1259
|
-
readonly __wbg_get_metadatafieldchange_newValue: (a: number) => [number, number];
|
|
1260
|
-
readonly __wbg_get_metadatafieldchange_oldValue: (a: number) => [number, number];
|
|
1261
|
-
readonly __wbg_get_sendmessageopts_shouldPush: (a: number) => number;
|
|
1262
|
-
readonly __wbg_groupmember_free: (a: number, b: number) => void;
|
|
1263
|
-
readonly __wbg_groupmetadata_free: (a: number, b: number) => void;
|
|
1264
|
-
readonly __wbg_groupupdated_free: (a: number, b: number) => void;
|
|
1265
|
-
readonly __wbg_inbox_free: (a: number, b: number) => void;
|
|
1266
|
-
readonly __wbg_inboxstate_free: (a: number, b: number) => void;
|
|
1267
|
-
readonly __wbg_installation_free: (a: number, b: number) => void;
|
|
1268
|
-
readonly __wbg_keypackagestatus_free: (a: number, b: number) => void;
|
|
1269
|
-
readonly __wbg_lifetime_free: (a: number, b: number) => void;
|
|
1270
|
-
readonly __wbg_metadatafieldchange_free: (a: number, b: number) => void;
|
|
1271
|
-
readonly __wbg_readreceipt_free: (a: number, b: number) => void;
|
|
1272
|
-
readonly __wbg_sendmessageopts_free: (a: number, b: number) => void;
|
|
1273
|
-
readonly __wbg_set_groupmember_accountIdentifiers: (a: number, b: number, c: number) => void;
|
|
1274
|
-
readonly __wbg_set_groupmember_consentState: (a: number, b: number) => void;
|
|
1275
|
-
readonly __wbg_set_groupmember_inboxId: (a: number, b: number, c: number) => void;
|
|
1276
|
-
readonly __wbg_set_groupmember_installationIds: (a: number, b: number, c: number) => void;
|
|
1277
|
-
readonly __wbg_set_groupmember_permissionLevel: (a: number, b: number) => void;
|
|
1278
|
-
readonly __wbg_set_groupupdated_addedInboxes: (a: number, b: number, c: number) => void;
|
|
1279
|
-
readonly __wbg_set_groupupdated_metadataFieldChanges: (a: number, b: number, c: number) => void;
|
|
1280
|
-
readonly __wbg_set_groupupdated_removedInboxes: (a: number, b: number, c: number) => void;
|
|
1281
|
-
readonly __wbg_set_inboxstate_accountIdentifiers: (a: number, b: number, c: number) => void;
|
|
1282
|
-
readonly __wbg_set_inboxstate_installations: (a: number, b: number, c: number) => void;
|
|
1283
|
-
readonly __wbg_set_inboxstate_recoveryIdentifier: (a: number, b: any) => void;
|
|
1284
|
-
readonly __wbg_set_installation_bytes: (a: number, b: any) => void;
|
|
1285
|
-
readonly __wbg_set_installation_clientTimestampNs: (a: number, b: number, c: bigint) => void;
|
|
1286
|
-
readonly __wbg_set_installation_id: (a: number, b: number, c: number) => void;
|
|
1287
|
-
readonly __wbg_set_keypackagestatus_lifetime: (a: number, b: number) => void;
|
|
1288
|
-
readonly __wbg_set_keypackagestatus_validationError: (a: number, b: number, c: number) => void;
|
|
1289
|
-
readonly __wbg_set_lifetime_not_after: (a: number, b: bigint) => void;
|
|
1290
|
-
readonly __wbg_set_lifetime_not_before: (a: number, b: bigint) => void;
|
|
1291
|
-
readonly __wbg_set_metadatafieldchange_newValue: (a: number, b: number, c: number) => void;
|
|
1292
|
-
readonly __wbg_set_metadatafieldchange_oldValue: (a: number, b: number, c: number) => void;
|
|
1293
|
-
readonly __wbg_set_sendmessageopts_shouldPush: (a: number, b: number) => void;
|
|
1294
|
-
readonly client_getKeyPackageStatusesForInstallationIds: (a: number, b: number, c: number) => any;
|
|
1295
|
-
readonly client_getLatestInboxState: (a: number, b: number, c: number) => any;
|
|
1296
|
-
readonly client_inboxState: (a: number, b: number) => any;
|
|
1297
|
-
readonly conversation_addAdmin: (a: number, b: number, c: number) => any;
|
|
1298
|
-
readonly conversation_addMembers: (a: number, b: number, c: number) => any;
|
|
1299
|
-
readonly conversation_addMembersByInboxId: (a: number, b: number, c: number) => any;
|
|
1300
|
-
readonly conversation_addSuperAdmin: (a: number, b: number, c: number) => any;
|
|
1301
|
-
readonly conversation_addedByInboxId: (a: number) => [number, number, number, number];
|
|
1302
|
-
readonly conversation_adminList: (a: number) => [number, number, number, number];
|
|
1303
|
-
readonly conversation_countMessages: (a: number, b: number) => any;
|
|
1304
|
-
readonly conversation_createdAtNs: (a: number) => bigint;
|
|
1305
|
-
readonly conversation_dmPeerInboxId: (a: number) => [number, number, number, number];
|
|
1306
|
-
readonly conversation_findDuplicateDms: (a: number) => any;
|
|
1307
|
-
readonly conversation_findMessages: (a: number, b: number) => any;
|
|
1308
|
-
readonly conversation_findMessagesV2: (a: number, b: number) => any;
|
|
1309
|
-
readonly conversation_findMessagesWithReactions: (a: number, b: number) => any;
|
|
1310
|
-
readonly conversation_getDebugInfo: (a: number) => any;
|
|
1311
|
-
readonly conversation_getHmacKeys: (a: number) => [number, number, number];
|
|
1312
|
-
readonly conversation_getLastReadTimes: (a: number) => any;
|
|
1313
|
-
readonly conversation_groupDescription: (a: number) => [number, number, number, number];
|
|
1314
|
-
readonly conversation_groupImageUrlSquare: (a: number) => [number, number, number, number];
|
|
1315
|
-
readonly conversation_groupMetadata: (a: number) => any;
|
|
1316
|
-
readonly conversation_groupName: (a: number) => [number, number, number, number];
|
|
1317
|
-
readonly conversation_groupPermissions: (a: number) => [number, number, number];
|
|
1318
|
-
readonly conversation_id: (a: number) => [number, number];
|
|
1319
|
-
readonly conversation_isActive: (a: number) => [number, number, number];
|
|
1320
|
-
readonly conversation_isAdmin: (a: number, b: number, c: number) => [number, number, number];
|
|
1321
|
-
readonly conversation_isMessageDisappearingEnabled: (a: number) => [number, number, number];
|
|
1322
|
-
readonly conversation_isSuperAdmin: (a: number, b: number, c: number) => [number, number, number];
|
|
1323
|
-
readonly conversation_listMembers: (a: number) => any;
|
|
1324
|
-
readonly conversation_messageDisappearingSettings: (a: number) => [number, number, number];
|
|
1325
|
-
readonly conversation_pausedForVersion: (a: number) => [number, number, number, number];
|
|
1326
|
-
readonly conversation_publishMessages: (a: number) => any;
|
|
1327
|
-
readonly conversation_removeAdmin: (a: number, b: number, c: number) => any;
|
|
1328
|
-
readonly conversation_removeMembers: (a: number, b: number, c: number) => any;
|
|
1329
|
-
readonly conversation_removeMembersByInboxId: (a: number, b: number, c: number) => any;
|
|
1330
|
-
readonly conversation_removeMessageDisappearingSettings: (a: number) => any;
|
|
1331
|
-
readonly conversation_removeSuperAdmin: (a: number, b: number, c: number) => any;
|
|
1332
|
-
readonly conversation_send: (a: number, b: number, c: number) => any;
|
|
1333
|
-
readonly conversation_sendOptimistic: (a: number, b: number, c: number) => [number, number, number, number];
|
|
1334
|
-
readonly conversation_stream: (a: number, b: any) => [number, number, number];
|
|
1335
|
-
readonly conversation_superAdminList: (a: number) => [number, number, number, number];
|
|
1336
|
-
readonly conversation_sync: (a: number) => any;
|
|
1337
|
-
readonly conversation_updateGroupDescription: (a: number, b: number, c: number) => any;
|
|
1338
|
-
readonly conversation_updateGroupImageUrlSquare: (a: number, b: number, c: number) => any;
|
|
1339
|
-
readonly conversation_updateGroupName: (a: number, b: number, c: number) => any;
|
|
1340
|
-
readonly conversation_updateMessageDisappearingSettings: (a: number, b: number) => any;
|
|
1341
|
-
readonly conversation_updatePermissionPolicy: (a: number, b: number, c: number, d: number) => any;
|
|
1342
|
-
readonly generateInboxId: (a: any) => [number, number, number, number];
|
|
1343
|
-
readonly getInboxIdForIdentifier: (a: number, b: number, c: number, d: number, e: any) => any;
|
|
1344
|
-
readonly groupmember_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
1345
|
-
readonly groupmetadata_conversationType: (a: number) => [number, number];
|
|
1346
|
-
readonly groupmetadata_creatorInboxId: (a: number) => [number, number];
|
|
1347
|
-
readonly inboxStateFromInboxIds: (a: number, b: number, c: number, d: number, e: number, f: number) => any;
|
|
1348
|
-
readonly inboxstate_new: (a: number, b: number, c: any, d: number, e: number, f: number, g: number) => number;
|
|
1349
|
-
readonly installation_new: (a: any, b: number, c: number, d: number, e: bigint) => number;
|
|
1350
|
-
readonly sendmessageopts_new: (a: number) => number;
|
|
1549
|
+
readonly __wbg_set_actions_description: (a: number, b: number, c: number) => void;
|
|
1550
|
+
readonly __wbg_set_actions_id: (a: number, b: number, c: number) => void;
|
|
1351
1551
|
readonly __wbg_set_groupupdated_initiatedByInboxId: (a: number, b: number, c: number) => void;
|
|
1352
1552
|
readonly __wbg_set_inbox_inboxId: (a: number, b: number, c: number) => void;
|
|
1353
1553
|
readonly __wbg_set_inboxstate_inboxId: (a: number, b: number, c: number) => void;
|
|
1554
|
+
readonly __wbg_set_installation_id: (a: number, b: number, c: number) => void;
|
|
1354
1555
|
readonly __wbg_set_metadatafieldchange_fieldName: (a: number, b: number, c: number) => void;
|
|
1556
|
+
readonly __wbg_set_remoteattachment_url: (a: number, b: number, c: number) => void;
|
|
1557
|
+
readonly __wbg_set_remoteattachmentinfo_url: (a: number, b: number, c: number) => void;
|
|
1558
|
+
readonly __wbg_set_transactionmetadata_currency: (a: number, b: number, c: number) => void;
|
|
1559
|
+
readonly __wbg_set_transactionmetadata_toAddress: (a: number, b: number, c: number) => void;
|
|
1560
|
+
readonly __wbg_get_actions_expiresAtNs: (a: number) => [number, bigint];
|
|
1561
|
+
readonly __wbg_get_installation_clientTimestampNs: (a: number) => [number, bigint];
|
|
1562
|
+
readonly __wbg_get_remoteattachmentinfo_filename: (a: number) => [number, number];
|
|
1563
|
+
readonly __wbg_set_actions_expiresAtNs: (a: number, b: number, c: bigint) => void;
|
|
1564
|
+
readonly __wbg_set_installation_clientTimestampNs: (a: number, b: number, c: bigint) => void;
|
|
1355
1565
|
readonly __wbg_attachment_free: (a: number, b: number) => void;
|
|
1356
|
-
readonly __wbg_decodedmessage_free: (a: number, b: number) => void;
|
|
1357
|
-
readonly __wbg_decodedmessagecontent_free: (a: number, b: number) => void;
|
|
1358
|
-
readonly __wbg_enrichedreply_free: (a: number, b: number) => void;
|
|
1359
1566
|
readonly __wbg_get_attachment_content: (a: number) => [number, number];
|
|
1360
1567
|
readonly __wbg_get_attachment_filename: (a: number) => [number, number];
|
|
1361
1568
|
readonly __wbg_get_attachment_mimeType: (a: number) => [number, number];
|
|
1362
|
-
readonly
|
|
1363
|
-
readonly
|
|
1364
|
-
readonly
|
|
1365
|
-
readonly
|
|
1366
|
-
readonly
|
|
1367
|
-
readonly __wbg_get_decodedmessage_id: (a: number) => [number, number];
|
|
1368
|
-
readonly __wbg_get_decodedmessage_kind: (a: number) => number;
|
|
1369
|
-
readonly __wbg_get_decodedmessage_num_replies: (a: number) => bigint;
|
|
1370
|
-
readonly __wbg_get_decodedmessage_reactions: (a: number) => [number, number];
|
|
1371
|
-
readonly __wbg_get_decodedmessage_sender_inbox_id: (a: number) => [number, number];
|
|
1372
|
-
readonly __wbg_get_decodedmessage_sender_installation_id: (a: number) => [number, number];
|
|
1373
|
-
readonly __wbg_get_decodedmessage_sent_at_ns: (a: number) => bigint;
|
|
1569
|
+
readonly __wbg_get_intent_actionId: (a: number) => [number, number];
|
|
1570
|
+
readonly __wbg_get_intent_id: (a: number) => [number, number];
|
|
1571
|
+
readonly __wbg_get_intent_metadata: (a: number) => any;
|
|
1572
|
+
readonly __wbg_intent_free: (a: number, b: number) => void;
|
|
1573
|
+
readonly __wbg_opfs_free: (a: number, b: number) => void;
|
|
1374
1574
|
readonly __wbg_set_attachment_content: (a: number, b: number, c: number) => void;
|
|
1375
1575
|
readonly __wbg_set_attachment_filename: (a: number, b: number, c: number) => void;
|
|
1376
1576
|
readonly __wbg_set_attachment_mimeType: (a: number, b: number, c: number) => void;
|
|
1377
|
-
readonly
|
|
1378
|
-
readonly
|
|
1379
|
-
readonly
|
|
1380
|
-
readonly
|
|
1381
|
-
readonly
|
|
1382
|
-
readonly
|
|
1383
|
-
readonly
|
|
1384
|
-
readonly
|
|
1385
|
-
readonly
|
|
1386
|
-
readonly
|
|
1387
|
-
readonly
|
|
1388
|
-
readonly
|
|
1389
|
-
readonly
|
|
1390
|
-
readonly
|
|
1391
|
-
readonly
|
|
1392
|
-
readonly
|
|
1393
|
-
readonly
|
|
1394
|
-
readonly
|
|
1395
|
-
readonly
|
|
1396
|
-
readonly
|
|
1397
|
-
readonly decodedmessagecontent_asText: (a: number) => number;
|
|
1398
|
-
readonly decodedmessagecontent_asTransactionReference: (a: number) => number;
|
|
1399
|
-
readonly decodedmessagecontent_asWalletSendCalls: (a: number) => [number, number, number];
|
|
1400
|
-
readonly decodedmessagecontent_payloadType: (a: number) => number;
|
|
1401
|
-
readonly enrichedreply_content: (a: number) => number;
|
|
1402
|
-
readonly enrichedreply_inReplyTo: (a: number) => number;
|
|
1403
|
-
readonly enrichedreply_referenceId: (a: number) => [number, number];
|
|
1577
|
+
readonly __wbg_set_intent_metadata: (a: number, b: any) => void;
|
|
1578
|
+
readonly decodeAttachment: (a: any) => [number, number, number];
|
|
1579
|
+
readonly decodeIntent: (a: any) => [number, number, number];
|
|
1580
|
+
readonly encodeAttachment: (a: number) => [number, number, number];
|
|
1581
|
+
readonly encodeIntent: (a: number) => [number, number, number];
|
|
1582
|
+
readonly intent_new: (a: number, b: number, c: number, d: number, e: any) => number;
|
|
1583
|
+
readonly opfs_addCapacity: (a: number) => any;
|
|
1584
|
+
readonly opfs_error: () => [number, number];
|
|
1585
|
+
readonly opfs_exists: () => number;
|
|
1586
|
+
readonly opfs_exportFile: (a: number, b: number) => [number, number, number, number];
|
|
1587
|
+
readonly opfs_getCapacity: () => number;
|
|
1588
|
+
readonly opfs_getFileCount: () => number;
|
|
1589
|
+
readonly opfs_getFileNames: () => [number, number];
|
|
1590
|
+
readonly opfs_importDb: (a: number, b: number, c: number, d: number) => [number, number];
|
|
1591
|
+
readonly opfs_init_sqlite_opfs: () => any;
|
|
1592
|
+
readonly opfs_reduceCapacity: (a: number) => any;
|
|
1593
|
+
readonly opfs_rm: (a: number, b: number) => [number, number, number];
|
|
1594
|
+
readonly opfs_wipeFiles: () => any;
|
|
1595
|
+
readonly __wbg_set_intent_actionId: (a: number, b: number, c: number) => void;
|
|
1596
|
+
readonly __wbg_set_intent_id: (a: number, b: number, c: number) => void;
|
|
1404
1597
|
readonly rust_zstd_wasm_shim_calloc: (a: number, b: number) => number;
|
|
1405
1598
|
readonly rust_zstd_wasm_shim_free: (a: number) => void;
|
|
1406
1599
|
readonly rust_zstd_wasm_shim_malloc: (a: number) => number;
|
|
@@ -1409,45 +1602,47 @@ export interface InitOutput {
|
|
|
1409
1602
|
readonly rust_zstd_wasm_shim_memmove: (a: number, b: number, c: number) => number;
|
|
1410
1603
|
readonly rust_zstd_wasm_shim_memset: (a: number, b: number, c: number) => number;
|
|
1411
1604
|
readonly rust_zstd_wasm_shim_qsort: (a: number, b: number, c: number, d: number) => void;
|
|
1412
|
-
readonly
|
|
1413
|
-
readonly
|
|
1414
|
-
readonly
|
|
1415
|
-
readonly
|
|
1416
|
-
readonly
|
|
1417
|
-
readonly
|
|
1418
|
-
readonly
|
|
1419
|
-
readonly
|
|
1420
|
-
readonly
|
|
1421
|
-
readonly rust_sqlite_wasm_shim_wasi_random_get: (a: number, b: number) => number;
|
|
1605
|
+
readonly rust_sqlite_wasm_abort: () => void;
|
|
1606
|
+
readonly rust_sqlite_wasm_assert_fail: (a: number, b: number, c: number, d: number) => void;
|
|
1607
|
+
readonly rust_sqlite_wasm_calloc: (a: number, b: number) => number;
|
|
1608
|
+
readonly rust_sqlite_wasm_malloc: (a: number) => number;
|
|
1609
|
+
readonly rust_sqlite_wasm_free: (a: number) => void;
|
|
1610
|
+
readonly rust_sqlite_wasm_getentropy: (a: number, b: number) => number;
|
|
1611
|
+
readonly rust_sqlite_wasm_localtime: (a: number) => number;
|
|
1612
|
+
readonly rust_sqlite_wasm_realloc: (a: number, b: number) => number;
|
|
1613
|
+
readonly sqlite3_os_end: () => number;
|
|
1422
1614
|
readonly sqlite3_os_init: () => number;
|
|
1423
|
-
readonly
|
|
1424
|
-
readonly __wbg_intounderlyingsource_free: (a: number, b: number) => void;
|
|
1425
|
-
readonly intounderlyingsink_abort: (a: number, b: any) => any;
|
|
1426
|
-
readonly intounderlyingsink_close: (a: number) => any;
|
|
1427
|
-
readonly intounderlyingsink_write: (a: number, b: any) => any;
|
|
1428
|
-
readonly intounderlyingsource_cancel: (a: number) => void;
|
|
1429
|
-
readonly intounderlyingsource_pull: (a: number, b: any) => any;
|
|
1615
|
+
readonly task_worker_entry_point: (a: number) => [number, number];
|
|
1430
1616
|
readonly __wbg_intounderlyingbytesource_free: (a: number, b: number) => void;
|
|
1617
|
+
readonly __wbg_intounderlyingsource_free: (a: number, b: number) => void;
|
|
1431
1618
|
readonly intounderlyingbytesource_autoAllocateChunkSize: (a: number) => number;
|
|
1432
1619
|
readonly intounderlyingbytesource_cancel: (a: number) => void;
|
|
1433
1620
|
readonly intounderlyingbytesource_pull: (a: number, b: any) => any;
|
|
1434
1621
|
readonly intounderlyingbytesource_start: (a: number, b: any) => void;
|
|
1435
1622
|
readonly intounderlyingbytesource_type: (a: number) => number;
|
|
1436
|
-
readonly
|
|
1623
|
+
readonly intounderlyingsource_cancel: (a: number) => void;
|
|
1624
|
+
readonly intounderlyingsource_pull: (a: number, b: any) => any;
|
|
1625
|
+
readonly __wbg_intounderlyingsink_free: (a: number, b: number) => void;
|
|
1626
|
+
readonly intounderlyingsink_abort: (a: number, b: any) => any;
|
|
1627
|
+
readonly intounderlyingsink_close: (a: number) => any;
|
|
1628
|
+
readonly intounderlyingsink_write: (a: number, b: any) => any;
|
|
1629
|
+
readonly wasm_bindgen__convert__closures_____invoke__h753a3e053785270d: (a: number, b: number) => void;
|
|
1630
|
+
readonly wasm_bindgen__closure__destroy__h8a0c80adf0f210e5: (a: number, b: number) => void;
|
|
1631
|
+
readonly wasm_bindgen__convert__closures_____invoke__h9011598bdd38acb2: (a: number, b: number) => void;
|
|
1632
|
+
readonly wasm_bindgen__closure__destroy__h5e0a3136249b832f: (a: number, b: number) => void;
|
|
1633
|
+
readonly wasm_bindgen__convert__closures_____invoke__h34df32c886f66f02: (a: number, b: number, c: any) => void;
|
|
1634
|
+
readonly wasm_bindgen__closure__destroy__h5faecc40242ea0ca: (a: number, b: number) => void;
|
|
1635
|
+
readonly wasm_bindgen__convert__closures_____invoke__hafab8b28acda63ce: (a: number, b: number) => void;
|
|
1636
|
+
readonly wasm_bindgen__closure__destroy__h83869f5b20c236a6: (a: number, b: number) => void;
|
|
1637
|
+
readonly wasm_bindgen__convert__closures_____invoke__h18a484e2affd7fe5: (a: number, b: number, c: any, d: any) => void;
|
|
1437
1638
|
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
1438
1639
|
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
1439
1640
|
readonly __wbindgen_exn_store: (a: number) => void;
|
|
1440
1641
|
readonly __externref_table_alloc: () => number;
|
|
1441
|
-
readonly
|
|
1642
|
+
readonly __wbindgen_externrefs: WebAssembly.Table;
|
|
1442
1643
|
readonly __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
1443
1644
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
1444
|
-
readonly __wbindgen_export_7: WebAssembly.Table;
|
|
1445
1645
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
1446
|
-
readonly wasm_bindgen__convert__closures_____invoke__hb3fd7a1e3a7fa14d: (a: number, b: number) => void;
|
|
1447
|
-
readonly wasm_bindgen__convert__closures_____invoke__h135d62b0906d3413: (a: number, b: number) => void;
|
|
1448
|
-
readonly closure7227_externref_shim: (a: number, b: number, c: any) => void;
|
|
1449
|
-
readonly wasm_bindgen__convert__closures_____invoke__h849ef726e44c1bb5: (a: number, b: number) => void;
|
|
1450
|
-
readonly closure8188_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
1451
1646
|
readonly __wbindgen_start: () => void;
|
|
1452
1647
|
}
|
|
1453
1648
|
|