@xmtp/wasm-bindings 1.6.1-rc4 → 1.6.2
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 +650 -498
- package/dist/bindings_wasm.js +1383 -617
- package/dist/bindings_wasm_bg.wasm +0 -0
- package/dist/bindings_wasm_bg.wasm.d.ts +525 -460
- 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,35 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
export function
|
|
4
|
-
export function
|
|
5
|
-
export function
|
|
3
|
+
export function inboxStateFromInboxIds(v3_host: string, gateway_host: string | null | undefined, inbox_ids: string[]): Promise<InboxState[]>;
|
|
4
|
+
export function decodeReply(bytes: Uint8Array): Reply;
|
|
5
|
+
export function encodeReply(reply: Reply): Uint8Array;
|
|
6
|
+
export function encodeActions(actions: Actions): Uint8Array;
|
|
7
|
+
export function decodeActions(bytes: Uint8Array): Actions;
|
|
6
8
|
export function encodeMultiRemoteAttachment(multiRemoteAttachment: MultiRemoteAttachment): Uint8Array;
|
|
7
9
|
export function decodeMultiRemoteAttachment(bytes: Uint8Array): MultiRemoteAttachment;
|
|
10
|
+
export function generateInboxId(accountIdentifier: Identifier, nonce?: bigint | null): string;
|
|
11
|
+
export function getInboxIdForIdentifier(host: string, gatewayHost: string | null | undefined, accountIdentifier: Identifier): Promise<string | undefined>;
|
|
12
|
+
export function applySignatureRequest(v3_host: string, gateway_host: string | null | undefined, signature_request: SignatureRequestHandle): Promise<void>;
|
|
13
|
+
export function revokeInstallationsSignatureRequest(v3_host: string, gateway_host: string | null | undefined, recovery_identifier: Identifier, inbox_id: string, installation_ids: Uint8Array[]): SignatureRequestHandle;
|
|
14
|
+
export function verifySignedWithPublicKey(signature_text: string, signature_bytes: Uint8Array, public_key: Uint8Array): void;
|
|
15
|
+
export function encodeIntent(intent: Intent): Uint8Array;
|
|
16
|
+
export function decodeIntent(bytes: Uint8Array): Intent;
|
|
8
17
|
export function encodeReaction(reaction: Reaction): Uint8Array;
|
|
9
18
|
export function decodeReaction(bytes: Uint8Array): Reaction;
|
|
10
|
-
export function createClient(host: string, inbox_id: string, account_identifier: Identifier, db_path?: string | null, encryption_key?: Uint8Array | null, device_sync_server_url?: string | null, device_sync_worker_mode?: DeviceSyncWorkerMode | null, log_options?: LogOptions | null, allow_offline?: boolean | null, disable_events?: boolean | null, app_version?: string | null, gateway_host?: string | null): Promise<Client>;
|
|
11
|
-
export function inboxStateFromInboxIds(v3_host: string, gateway_host: string | null | undefined, inbox_ids: string[]): Promise<InboxState[]>;
|
|
12
|
-
export function getInboxIdForIdentifier(v3_host: string, gateway_host: string | null | undefined, accountIdentifier: Identifier): Promise<string | undefined>;
|
|
13
|
-
export function generateInboxId(accountIdentifier: Identifier): string;
|
|
19
|
+
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>;
|
|
14
20
|
/**
|
|
15
21
|
* Entry point invoked by JavaScript in a worker.
|
|
16
22
|
*/
|
|
17
23
|
export function task_worker_entry_point(ptr: number): void;
|
|
24
|
+
export enum ActionStyle {
|
|
25
|
+
Primary = 0,
|
|
26
|
+
Secondary = 1,
|
|
27
|
+
Danger = 2,
|
|
28
|
+
}
|
|
29
|
+
export enum ClientMode {
|
|
30
|
+
Default = 0,
|
|
31
|
+
Notification = 1,
|
|
32
|
+
}
|
|
18
33
|
export enum ConsentEntityType {
|
|
19
34
|
GroupId = 0,
|
|
20
35
|
InboxId = 1,
|
|
@@ -67,6 +82,10 @@ export enum ListConversationsOrderBy {
|
|
|
67
82
|
CreatedAt = 0,
|
|
68
83
|
LastActivity = 1,
|
|
69
84
|
}
|
|
85
|
+
export enum MessageSortBy {
|
|
86
|
+
SentAt = 0,
|
|
87
|
+
InsertedAt = 1,
|
|
88
|
+
}
|
|
70
89
|
export enum MetadataField {
|
|
71
90
|
GroupName = 0,
|
|
72
91
|
Description = 1,
|
|
@@ -85,7 +104,9 @@ export enum PayloadType {
|
|
|
85
104
|
GroupUpdated = 7,
|
|
86
105
|
ReadReceipt = 8,
|
|
87
106
|
WalletSendCalls = 9,
|
|
88
|
-
|
|
107
|
+
Intent = 10,
|
|
108
|
+
Actions = 11,
|
|
109
|
+
Custom = 12,
|
|
89
110
|
}
|
|
90
111
|
export enum PermissionLevel {
|
|
91
112
|
Member = 0,
|
|
@@ -143,13 +164,38 @@ type LogLevel = "off" | "error" | "warn" | "info" | "debug" | "trace";
|
|
|
143
164
|
type ReadableStreamType = "bytes";
|
|
144
165
|
export type UserPreference = { type: "Consent"; consent: Consent } | { type: "HmacKeyUpdate"; key: number[] };
|
|
145
166
|
|
|
167
|
+
export type IdentifierKind = "Ethereum" | "Passkey";
|
|
168
|
+
|
|
146
169
|
export interface Identifier {
|
|
147
170
|
identifier: string;
|
|
148
171
|
identifierKind: IdentifierKind;
|
|
149
172
|
}
|
|
150
173
|
|
|
151
|
-
export
|
|
152
|
-
|
|
174
|
+
export class Action {
|
|
175
|
+
free(): void;
|
|
176
|
+
[Symbol.dispose](): void;
|
|
177
|
+
constructor(id: string, label: string, image_url?: string | null, style?: ActionStyle | null, expires_at_ns?: bigint | null);
|
|
178
|
+
id: string;
|
|
179
|
+
label: string;
|
|
180
|
+
get imageUrl(): string | undefined;
|
|
181
|
+
set imageUrl(value: string | null | undefined);
|
|
182
|
+
get style(): ActionStyle | undefined;
|
|
183
|
+
set style(value: ActionStyle | null | undefined);
|
|
184
|
+
get expiresAtNs(): bigint | undefined;
|
|
185
|
+
set expiresAtNs(value: bigint | null | undefined);
|
|
186
|
+
}
|
|
187
|
+
export class Actions {
|
|
188
|
+
free(): void;
|
|
189
|
+
[Symbol.dispose](): void;
|
|
190
|
+
addAction(action: Action): void;
|
|
191
|
+
getActions(): Action[];
|
|
192
|
+
setActions(actions: Action[]): void;
|
|
193
|
+
constructor(id: string, description: string, expires_at_ns?: bigint | null);
|
|
194
|
+
id: string;
|
|
195
|
+
description: string;
|
|
196
|
+
get expiresAtNs(): bigint | undefined;
|
|
197
|
+
set expiresAtNs(value: bigint | null | undefined);
|
|
198
|
+
}
|
|
153
199
|
export class ApiStats {
|
|
154
200
|
private constructor();
|
|
155
201
|
free(): void;
|
|
@@ -172,10 +218,35 @@ export class Attachment {
|
|
|
172
218
|
mimeType: string;
|
|
173
219
|
content: Uint8Array;
|
|
174
220
|
}
|
|
221
|
+
export class AuthHandle {
|
|
222
|
+
free(): void;
|
|
223
|
+
[Symbol.dispose](): void;
|
|
224
|
+
id(): number;
|
|
225
|
+
constructor();
|
|
226
|
+
set(credential: Credential): Promise<void>;
|
|
227
|
+
}
|
|
175
228
|
export class Client {
|
|
176
229
|
private constructor();
|
|
177
230
|
free(): void;
|
|
178
231
|
[Symbol.dispose](): void;
|
|
232
|
+
/**
|
|
233
|
+
*
|
|
234
|
+
* * Get the client's inbox state.
|
|
235
|
+
* *
|
|
236
|
+
* * If `refresh_from_network` is true, the client will go to the network first to refresh the state.
|
|
237
|
+
* * Otherwise, the state will be read from the local database.
|
|
238
|
+
*
|
|
239
|
+
*/
|
|
240
|
+
inboxState(refresh_from_network: boolean): Promise<InboxState>;
|
|
241
|
+
getLatestInboxState(inbox_id: string): Promise<InboxState>;
|
|
242
|
+
/**
|
|
243
|
+
*
|
|
244
|
+
* * Get key package statuses for a list of installation IDs.
|
|
245
|
+
* *
|
|
246
|
+
* * Returns a JavaScript object mapping installation ID strings to KeyPackageStatus objects.
|
|
247
|
+
*
|
|
248
|
+
*/
|
|
249
|
+
getKeyPackageStatusesForInstallationIds(installation_ids: string[]): Promise<any>;
|
|
179
250
|
registerIdentity(signature_request: SignatureRequestHandle): Promise<void>;
|
|
180
251
|
applySignatureRequest(signature_request: SignatureRequestHandle): Promise<void>;
|
|
181
252
|
signWithInstallationKey(signature_text: string): Uint8Array;
|
|
@@ -185,7 +256,7 @@ export class Client {
|
|
|
185
256
|
verifySignedWithInstallationKey(signature_text: string, signature_bytes: Uint8Array): void;
|
|
186
257
|
revokeInstallationsSignatureRequest(installation_ids: Uint8Array[]): Promise<SignatureRequestHandle>;
|
|
187
258
|
changeRecoveryIdentifierSignatureRequest(new_recovery_identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
188
|
-
revokeAllOtherInstallationsSignatureRequest(): Promise<SignatureRequestHandle>;
|
|
259
|
+
revokeAllOtherInstallationsSignatureRequest(): Promise<SignatureRequestHandle | undefined>;
|
|
189
260
|
getConsentState(entity_type: ConsentEntityType, entity: string): Promise<ConsentState>;
|
|
190
261
|
setConsentStates(records: Consent[]): Promise<void>;
|
|
191
262
|
/**
|
|
@@ -204,24 +275,6 @@ export class Client {
|
|
|
204
275
|
apiAggregateStatistics(): string;
|
|
205
276
|
inboxStateFromInboxIds(inbox_ids: string[], refresh_from_network: boolean): Promise<InboxState[]>;
|
|
206
277
|
findInboxIdByIdentifier(identifier: Identifier): Promise<string | undefined>;
|
|
207
|
-
/**
|
|
208
|
-
*
|
|
209
|
-
* * Get the client's inbox state.
|
|
210
|
-
* *
|
|
211
|
-
* * If `refresh_from_network` is true, the client will go to the network first to refresh the state.
|
|
212
|
-
* * Otherwise, the state will be read from the local database.
|
|
213
|
-
*
|
|
214
|
-
*/
|
|
215
|
-
inboxState(refresh_from_network: boolean): Promise<InboxState>;
|
|
216
|
-
getLatestInboxState(inbox_id: string): Promise<InboxState>;
|
|
217
|
-
/**
|
|
218
|
-
*
|
|
219
|
-
* * Get key package statuses for a list of installation IDs.
|
|
220
|
-
* *
|
|
221
|
-
* * Returns a JavaScript object mapping installation ID strings to KeyPackageStatus objects.
|
|
222
|
-
*
|
|
223
|
-
*/
|
|
224
|
-
getKeyPackageStatusesForInstallationIds(installation_ids: string[]): Promise<any>;
|
|
225
278
|
readonly appVersion: string;
|
|
226
279
|
readonly isRegistered: boolean;
|
|
227
280
|
readonly installationId: string;
|
|
@@ -251,8 +304,6 @@ export class Conversation {
|
|
|
251
304
|
private constructor();
|
|
252
305
|
free(): void;
|
|
253
306
|
[Symbol.dispose](): void;
|
|
254
|
-
consentState(): ConsentState;
|
|
255
|
-
updateConsentState(state: ConsentState): void;
|
|
256
307
|
adminList(): string[];
|
|
257
308
|
getDebugInfo(): Promise<any>;
|
|
258
309
|
groupName(): string;
|
|
@@ -271,6 +322,7 @@ export class Conversation {
|
|
|
271
322
|
* send a message without immediately publishing to the delivery service.
|
|
272
323
|
*/
|
|
273
324
|
sendOptimistic(encoded_content: EncodedContent, opts: SendMessageOpts): string;
|
|
325
|
+
updateAppData(app_data: string): Promise<void>;
|
|
274
326
|
dmPeerInboxId(): string;
|
|
275
327
|
/**
|
|
276
328
|
* Publish all unpublished messages
|
|
@@ -301,9 +353,12 @@ export class Conversation {
|
|
|
301
353
|
send(encoded_content: EncodedContent, opts: SendMessageOpts): Promise<string>;
|
|
302
354
|
sync(): Promise<void>;
|
|
303
355
|
stream(callback: any): StreamCloser;
|
|
356
|
+
appData(): string;
|
|
304
357
|
isAdmin(inbox_id: string): boolean;
|
|
305
358
|
addAdmin(inbox_id: string): Promise<void>;
|
|
306
359
|
isActive(): boolean;
|
|
360
|
+
consentState(): ConsentState;
|
|
361
|
+
updateConsentState(state: ConsentState): void;
|
|
307
362
|
}
|
|
308
363
|
export class ConversationDebugInfo {
|
|
309
364
|
private constructor();
|
|
@@ -364,7 +419,7 @@ export class CreateDMOptions {
|
|
|
364
419
|
export class CreateGroupOptions {
|
|
365
420
|
free(): void;
|
|
366
421
|
[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);
|
|
422
|
+
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
423
|
get permissions(): GroupPermissionsOptions | undefined;
|
|
369
424
|
set permissions(value: GroupPermissionsOptions | null | undefined);
|
|
370
425
|
get groupName(): string | undefined;
|
|
@@ -377,6 +432,13 @@ export class CreateGroupOptions {
|
|
|
377
432
|
set customPermissionPolicySet(value: PermissionPolicySet | null | undefined);
|
|
378
433
|
get messageDisappearingSettings(): MessageDisappearingSettings | undefined;
|
|
379
434
|
set messageDisappearingSettings(value: MessageDisappearingSettings | null | undefined);
|
|
435
|
+
get appData(): string | undefined;
|
|
436
|
+
set appData(value: string | null | undefined);
|
|
437
|
+
}
|
|
438
|
+
export class Credential {
|
|
439
|
+
free(): void;
|
|
440
|
+
[Symbol.dispose](): void;
|
|
441
|
+
constructor(name: string | null | undefined, value: string, expires_at_seconds: bigint);
|
|
380
442
|
}
|
|
381
443
|
export class DecodedMessage {
|
|
382
444
|
private constructor();
|
|
@@ -400,6 +462,7 @@ export class DecodedMessageContent {
|
|
|
400
462
|
private constructor();
|
|
401
463
|
free(): void;
|
|
402
464
|
[Symbol.dispose](): void;
|
|
465
|
+
asActions(): Actions | undefined;
|
|
403
466
|
asReaction(): ReactionPayload | undefined;
|
|
404
467
|
asAttachment(): Attachment | undefined;
|
|
405
468
|
asReadReceipt(): ReadReceipt | undefined;
|
|
@@ -411,6 +474,7 @@ export class DecodedMessageContent {
|
|
|
411
474
|
asText(): TextContent | undefined;
|
|
412
475
|
asReply(): EnrichedReply | undefined;
|
|
413
476
|
asCustom(): EncodedContent | undefined;
|
|
477
|
+
asIntent(): Intent | undefined;
|
|
414
478
|
readonly payloadType: PayloadType;
|
|
415
479
|
}
|
|
416
480
|
export class EncodedContent {
|
|
@@ -514,6 +578,14 @@ export class Installation {
|
|
|
514
578
|
get clientTimestampNs(): bigint | undefined;
|
|
515
579
|
set clientTimestampNs(value: bigint | null | undefined);
|
|
516
580
|
}
|
|
581
|
+
export class Intent {
|
|
582
|
+
free(): void;
|
|
583
|
+
[Symbol.dispose](): void;
|
|
584
|
+
constructor(id: string, action_id: string, metadata: any);
|
|
585
|
+
id: string;
|
|
586
|
+
actionId: string;
|
|
587
|
+
metadata: any;
|
|
588
|
+
}
|
|
517
589
|
export class IntoUnderlyingByteSource {
|
|
518
590
|
private constructor();
|
|
519
591
|
free(): void;
|
|
@@ -577,7 +649,7 @@ export class ListConversationsOptions {
|
|
|
577
649
|
export class ListMessagesOptions {
|
|
578
650
|
free(): void;
|
|
579
651
|
[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);
|
|
652
|
+
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
653
|
get contentTypes(): any[] | undefined;
|
|
582
654
|
set contentTypes(value: any[] | null | undefined);
|
|
583
655
|
get excludeContentTypes(): any[] | undefined;
|
|
@@ -596,6 +668,12 @@ export class ListMessagesOptions {
|
|
|
596
668
|
set kind(value: GroupMessageKind | null | undefined);
|
|
597
669
|
get excludeSenderInboxIds(): string[] | undefined;
|
|
598
670
|
set excludeSenderInboxIds(value: string[] | null | undefined);
|
|
671
|
+
get sortBy(): MessageSortBy | undefined;
|
|
672
|
+
set sortBy(value: MessageSortBy | null | undefined);
|
|
673
|
+
get insertedAfterNs(): bigint | undefined;
|
|
674
|
+
set insertedAfterNs(value: bigint | null | undefined);
|
|
675
|
+
get insertedBeforeNs(): bigint | undefined;
|
|
676
|
+
set insertedBeforeNs(value: bigint | null | undefined);
|
|
599
677
|
}
|
|
600
678
|
/**
|
|
601
679
|
* Specify options for the logger
|
|
@@ -779,6 +857,15 @@ export class RemoteAttachmentInfo {
|
|
|
779
857
|
get filename(): string | undefined;
|
|
780
858
|
set filename(value: string | null | undefined);
|
|
781
859
|
}
|
|
860
|
+
export class Reply {
|
|
861
|
+
free(): void;
|
|
862
|
+
[Symbol.dispose](): void;
|
|
863
|
+
constructor(content: EncodedContent, reference: string, referenceInboxId?: string | null);
|
|
864
|
+
content: EncodedContent;
|
|
865
|
+
reference: string;
|
|
866
|
+
get referenceInboxId(): string | undefined;
|
|
867
|
+
set referenceInboxId(value: string | null | undefined);
|
|
868
|
+
}
|
|
782
869
|
export class SendMessageOpts {
|
|
783
870
|
free(): void;
|
|
784
871
|
[Symbol.dispose](): void;
|
|
@@ -855,385 +942,41 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
855
942
|
|
|
856
943
|
export interface InitOutput {
|
|
857
944
|
readonly memory: WebAssembly.Memory;
|
|
858
|
-
readonly
|
|
859
|
-
readonly
|
|
860
|
-
readonly
|
|
861
|
-
readonly
|
|
862
|
-
readonly
|
|
863
|
-
readonly
|
|
864
|
-
readonly
|
|
865
|
-
readonly
|
|
866
|
-
readonly
|
|
867
|
-
readonly __wbg_get_conversationdebuginfo_localCommitLog: (a: number) => [number, number];
|
|
868
|
-
readonly __wbg_get_conversationdebuginfo_maybeForked: (a: number) => number;
|
|
869
|
-
readonly __wbg_get_conversationdebuginfo_remoteCommitLog: (a: number) => [number, number];
|
|
870
|
-
readonly __wbg_get_conversationlistitem_conversation: (a: number) => number;
|
|
871
|
-
readonly __wbg_get_conversationlistitem_isCommitLogForked: (a: number) => number;
|
|
872
|
-
readonly __wbg_get_conversationlistitem_lastMessage: (a: number) => number;
|
|
873
|
-
readonly __wbg_get_createdmoptions_messageDisappearingSettings: (a: number) => number;
|
|
874
|
-
readonly __wbg_get_creategroupoptions_customPermissionPolicySet: (a: number) => number;
|
|
875
|
-
readonly __wbg_get_creategroupoptions_groupDescription: (a: number) => [number, number];
|
|
876
|
-
readonly __wbg_get_creategroupoptions_groupImageUrlSquare: (a: number) => [number, number];
|
|
877
|
-
readonly __wbg_get_creategroupoptions_groupName: (a: number) => [number, number];
|
|
878
|
-
readonly __wbg_get_creategroupoptions_permissions: (a: number) => number;
|
|
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;
|
|
970
|
-
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
|
-
readonly __wbg_get_apistats_fetch_key_package: (a: number) => bigint;
|
|
976
|
-
readonly __wbg_get_apistats_query_group_messages: (a: number) => bigint;
|
|
977
|
-
readonly __wbg_get_apistats_query_welcome_messages: (a: number) => bigint;
|
|
978
|
-
readonly __wbg_get_apistats_send_group_messages: (a: number) => bigint;
|
|
979
|
-
readonly __wbg_get_apistats_send_welcome_messages: (a: number) => bigint;
|
|
980
|
-
readonly __wbg_get_apistats_subscribe_messages: (a: number) => bigint;
|
|
981
|
-
readonly __wbg_get_apistats_subscribe_welcomes: (a: number) => bigint;
|
|
982
|
-
readonly __wbg_get_apistats_upload_key_package: (a: number) => bigint;
|
|
983
|
-
readonly __wbg_get_consent_entity: (a: number) => [number, number];
|
|
984
|
-
readonly __wbg_get_consent_entityType: (a: number) => number;
|
|
985
|
-
readonly __wbg_get_consent_state: (a: number) => number;
|
|
986
|
-
readonly __wbg_get_contenttypeid_authorityId: (a: number) => [number, number];
|
|
987
|
-
readonly __wbg_get_contenttypeid_typeId: (a: number) => [number, number];
|
|
988
|
-
readonly __wbg_get_contenttypeid_versionMajor: (a: number) => number;
|
|
989
|
-
readonly __wbg_get_contenttypeid_versionMinor: (a: number) => number;
|
|
990
|
-
readonly __wbg_get_encodedcontent_compression: (a: number) => number;
|
|
991
|
-
readonly __wbg_get_encodedcontent_content: (a: number) => any;
|
|
992
|
-
readonly __wbg_get_encodedcontent_fallback: (a: number) => [number, number];
|
|
993
|
-
readonly __wbg_get_encodedcontent_parameters: (a: number) => any;
|
|
994
|
-
readonly __wbg_get_encodedcontent_type: (a: number) => number;
|
|
995
|
-
readonly __wbg_get_groupsyncsummary_numEligible: (a: number) => number;
|
|
996
|
-
readonly __wbg_get_groupsyncsummary_numSynced: (a: number) => number;
|
|
997
|
-
readonly __wbg_get_listmessagesoptions_contentTypes: (a: number) => [number, number];
|
|
998
|
-
readonly __wbg_get_listmessagesoptions_deliveryStatus: (a: number) => number;
|
|
999
|
-
readonly __wbg_get_listmessagesoptions_direction: (a: number) => number;
|
|
1000
|
-
readonly __wbg_get_listmessagesoptions_excludeContentTypes: (a: number) => [number, number];
|
|
1001
|
-
readonly __wbg_get_listmessagesoptions_excludeSenderInboxIds: (a: number) => [number, number];
|
|
1002
|
-
readonly __wbg_get_listmessagesoptions_kind: (a: number) => number;
|
|
1003
|
-
readonly __wbg_get_listmessagesoptions_limit: (a: number) => [number, bigint];
|
|
1004
|
-
readonly __wbg_get_listmessagesoptions_sentAfterNs: (a: number) => [number, bigint];
|
|
1005
|
-
readonly __wbg_get_listmessagesoptions_sentBeforeNs: (a: number) => [number, bigint];
|
|
1006
|
-
readonly __wbg_get_logoptions_level: (a: number) => number;
|
|
1007
|
-
readonly __wbg_get_logoptions_performance: (a: number) => number;
|
|
1008
|
-
readonly __wbg_get_logoptions_structured: (a: number) => number;
|
|
1009
|
-
readonly __wbg_get_message_content: (a: number) => number;
|
|
1010
|
-
readonly __wbg_get_message_convoId: (a: number) => [number, number];
|
|
1011
|
-
readonly __wbg_get_message_deliveryStatus: (a: number) => number;
|
|
1012
|
-
readonly __wbg_get_message_id: (a: number) => [number, number];
|
|
1013
|
-
readonly __wbg_get_message_kind: (a: number) => number;
|
|
1014
|
-
readonly __wbg_get_message_senderInboxId: (a: number) => [number, number];
|
|
1015
|
-
readonly __wbg_get_messagewithreactions_message: (a: number) => number;
|
|
1016
|
-
readonly __wbg_get_messagewithreactions_reactions: (a: number) => [number, number];
|
|
1017
|
-
readonly __wbg_get_multiremoteattachment_attachments: (a: number) => [number, number];
|
|
1018
|
-
readonly __wbg_get_permissionpolicyset_addAdminPolicy: (a: number) => number;
|
|
1019
|
-
readonly __wbg_get_permissionpolicyset_addMemberPolicy: (a: number) => number;
|
|
1020
|
-
readonly __wbg_get_permissionpolicyset_removeAdminPolicy: (a: number) => number;
|
|
1021
|
-
readonly __wbg_get_permissionpolicyset_removeMemberPolicy: (a: number) => number;
|
|
1022
|
-
readonly __wbg_get_permissionpolicyset_updateGroupDescriptionPolicy: (a: number) => number;
|
|
1023
|
-
readonly __wbg_get_permissionpolicyset_updateGroupImageUrlSquarePolicy: (a: number) => number;
|
|
1024
|
-
readonly __wbg_get_permissionpolicyset_updateGroupNamePolicy: (a: number) => number;
|
|
1025
|
-
readonly __wbg_get_permissionpolicyset_updateMessageDisappearingPolicy: (a: number) => number;
|
|
1026
|
-
readonly __wbg_get_reaction_action: (a: number) => number;
|
|
1027
|
-
readonly __wbg_get_reaction_content: (a: number) => [number, number];
|
|
1028
|
-
readonly __wbg_get_reaction_reference: (a: number) => [number, number];
|
|
1029
|
-
readonly __wbg_get_reaction_referenceInboxId: (a: number) => [number, number];
|
|
1030
|
-
readonly __wbg_get_reaction_schema: (a: number) => number;
|
|
1031
|
-
readonly __wbg_get_reactionpayload_content: (a: number) => [number, number];
|
|
1032
|
-
readonly __wbg_get_reactionpayload_reference: (a: number) => [number, number];
|
|
1033
|
-
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
|
-
readonly __wbg_listmessagesoptions_free: (a: number, b: number) => void;
|
|
1055
|
-
readonly __wbg_logoptions_free: (a: number, b: number) => void;
|
|
1056
|
-
readonly __wbg_message_free: (a: number, b: number) => void;
|
|
1057
|
-
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
|
-
readonly __wbg_reaction_free: (a: number, b: number) => void;
|
|
1063
|
-
readonly __wbg_reactionpayload_free: (a: number, b: number) => void;
|
|
1064
|
-
readonly __wbg_remoteattachmentinfo_free: (a: number, b: number) => void;
|
|
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;
|
|
1076
|
-
readonly __wbg_set_contenttypeid_typeId: (a: number, b: number, c: number) => void;
|
|
1077
|
-
readonly __wbg_set_contenttypeid_versionMajor: (a: number, b: number) => void;
|
|
1078
|
-
readonly __wbg_set_contenttypeid_versionMinor: (a: number, b: number) => void;
|
|
1079
|
-
readonly __wbg_set_encodedcontent_compression: (a: number, b: number) => void;
|
|
1080
|
-
readonly __wbg_set_encodedcontent_content: (a: number, b: any) => void;
|
|
1081
|
-
readonly __wbg_set_encodedcontent_fallback: (a: number, b: number, c: number) => void;
|
|
1082
|
-
readonly __wbg_set_encodedcontent_parameters: (a: number, b: any) => void;
|
|
1083
|
-
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
|
-
readonly __wbg_set_listmessagesoptions_contentTypes: (a: number, b: number, c: number) => void;
|
|
1087
|
-
readonly __wbg_set_listmessagesoptions_deliveryStatus: (a: number, b: number) => void;
|
|
1088
|
-
readonly __wbg_set_listmessagesoptions_direction: (a: number, b: number) => void;
|
|
1089
|
-
readonly __wbg_set_listmessagesoptions_excludeContentTypes: (a: number, b: number, c: number) => void;
|
|
1090
|
-
readonly __wbg_set_listmessagesoptions_excludeSenderInboxIds: (a: number, b: number, c: number) => void;
|
|
1091
|
-
readonly __wbg_set_listmessagesoptions_kind: (a: number, b: number) => void;
|
|
1092
|
-
readonly __wbg_set_listmessagesoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
1093
|
-
readonly __wbg_set_listmessagesoptions_sentAfterNs: (a: number, b: number, c: bigint) => void;
|
|
1094
|
-
readonly __wbg_set_listmessagesoptions_sentBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
1095
|
-
readonly __wbg_set_logoptions_level: (a: number, b: number) => void;
|
|
1096
|
-
readonly __wbg_set_logoptions_performance: (a: number, b: number) => void;
|
|
1097
|
-
readonly __wbg_set_logoptions_structured: (a: number, b: number) => void;
|
|
1098
|
-
readonly __wbg_set_message_content: (a: number, b: number) => void;
|
|
1099
|
-
readonly __wbg_set_message_convoId: (a: number, b: number, c: number) => void;
|
|
1100
|
-
readonly __wbg_set_message_deliveryStatus: (a: number, b: number) => void;
|
|
1101
|
-
readonly __wbg_set_message_id: (a: number, b: number, c: number) => void;
|
|
1102
|
-
readonly __wbg_set_message_kind: (a: number, b: number) => void;
|
|
1103
|
-
readonly __wbg_set_message_senderInboxId: (a: number, b: number, c: number) => void;
|
|
1104
|
-
readonly __wbg_set_messagewithreactions_message: (a: number, b: number) => void;
|
|
1105
|
-
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
|
-
readonly __wbg_set_reaction_action: (a: number, b: number) => void;
|
|
1116
|
-
readonly __wbg_set_reaction_content: (a: number, b: number, c: number) => void;
|
|
1117
|
-
readonly __wbg_set_reaction_schema: (a: number, b: number) => void;
|
|
1118
|
-
readonly __wbg_set_remoteattachmentinfo_contentDigest: (a: number, b: number, c: number) => void;
|
|
1119
|
-
readonly __wbg_set_remoteattachmentinfo_contentLength: (a: number, b: number) => void;
|
|
1120
|
-
readonly __wbg_set_remoteattachmentinfo_filename: (a: number, b: number, c: number) => void;
|
|
1121
|
-
readonly __wbg_set_remoteattachmentinfo_nonce: (a: number, b: any) => void;
|
|
1122
|
-
readonly __wbg_set_remoteattachmentinfo_salt: (a: number, b: any) => void;
|
|
1123
|
-
readonly __wbg_set_remoteattachmentinfo_scheme: (a: number, b: number, c: number) => void;
|
|
1124
|
-
readonly __wbg_set_remoteattachmentinfo_url: (a: number, b: number, c: number) => void;
|
|
1125
|
-
readonly __wbg_set_transactionmetadata_amount: (a: number, b: number) => void;
|
|
1126
|
-
readonly __wbg_set_transactionmetadata_decimals: (a: number, b: number) => void;
|
|
1127
|
-
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
|
-
readonly __wbg_set_transactionmetadata_transactionType: (a: number, b: number, c: number) => void;
|
|
1130
|
-
readonly __wbg_set_transactionreference_metadata: (a: number, b: number) => void;
|
|
1131
|
-
readonly __wbg_set_transactionreference_namespace: (a: number, b: number, c: number) => void;
|
|
1132
|
-
readonly __wbg_set_transactionreference_networkId: (a: number, b: number, c: number) => void;
|
|
1133
|
-
readonly __wbg_set_transactionreference_reference: (a: number, b: number, c: number) => void;
|
|
1134
|
-
readonly __wbg_signaturerequesthandle_free: (a: number, b: number) => void;
|
|
1135
|
-
readonly __wbg_transactionmetadata_free: (a: number, b: number) => void;
|
|
1136
|
-
readonly __wbg_transactionreference_free: (a: number, b: number) => void;
|
|
1137
|
-
readonly applySignatureRequest: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
1138
|
-
readonly client_accountIdentifier: (a: number) => any;
|
|
1139
|
-
readonly client_addWalletSignatureRequest: (a: number, b: any) => any;
|
|
1140
|
-
readonly client_apiAggregateStatistics: (a: number) => [number, number];
|
|
1141
|
-
readonly client_apiIdentityStatistics: (a: number) => number;
|
|
1142
|
-
readonly client_apiStatistics: (a: number) => number;
|
|
1143
|
-
readonly client_appVersion: (a: number) => [number, number];
|
|
1144
|
-
readonly client_applySignatureRequest: (a: number, b: number) => any;
|
|
1145
|
-
readonly client_canMessage: (a: number, b: number, c: number) => any;
|
|
1146
|
-
readonly client_changeRecoveryIdentifierSignatureRequest: (a: number, b: any) => any;
|
|
1147
|
-
readonly client_clearAllStatistics: (a: number) => void;
|
|
1148
|
-
readonly client_conversations: (a: number) => number;
|
|
1149
|
-
readonly client_createInboxSignatureRequest: (a: number) => [number, number, number];
|
|
1150
|
-
readonly client_deleteMessage: (a: number, b: number, c: number) => [number, number, number];
|
|
1151
|
-
readonly client_findInboxIdByIdentifier: (a: number, b: any) => any;
|
|
1152
|
-
readonly client_getConsentState: (a: number, b: number, c: number, d: number) => any;
|
|
1153
|
-
readonly client_inboxId: (a: number) => [number, number];
|
|
1154
|
-
readonly client_inboxStateFromInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
1155
|
-
readonly client_installationId: (a: number) => [number, number];
|
|
1156
|
-
readonly client_installationIdBytes: (a: number) => any;
|
|
1157
|
-
readonly client_isRegistered: (a: number) => number;
|
|
1158
|
-
readonly client_libxmtpVersion: (a: number) => [number, number];
|
|
1159
|
-
readonly client_messageV2: (a: number, b: number, c: number) => any;
|
|
1160
|
-
readonly client_registerIdentity: (a: number, b: number) => any;
|
|
1161
|
-
readonly client_revokeAllOtherInstallationsSignatureRequest: (a: number) => any;
|
|
1162
|
-
readonly client_revokeInstallationsSignatureRequest: (a: number, b: number, c: number) => any;
|
|
1163
|
-
readonly client_revokeWalletSignatureRequest: (a: number, b: any) => any;
|
|
1164
|
-
readonly client_sendSyncRequest: (a: number) => any;
|
|
1165
|
-
readonly client_setConsentStates: (a: number, b: number, c: number) => any;
|
|
1166
|
-
readonly client_signWithInstallationKey: (a: number, b: number, c: number) => [number, number, number];
|
|
1167
|
-
readonly client_syncPreferences: (a: number) => any;
|
|
1168
|
-
readonly client_uploadDebugArchive: (a: number, b: number, c: number) => any;
|
|
1169
|
-
readonly client_verifySignedWithInstallationKey: (a: number, b: number, c: number, d: any) => [number, number];
|
|
1170
|
-
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
|
-
readonly conversation_consentState: (a: number) => [number, number, number];
|
|
1173
|
-
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;
|
|
1175
|
-
readonly decodeMultiRemoteAttachment: (a: any) => [number, number, number];
|
|
1176
|
-
readonly decodeReaction: (a: any) => [number, number, number];
|
|
1177
|
-
readonly encodeMultiRemoteAttachment: (a: number) => [number, number, number];
|
|
1178
|
-
readonly encodeReaction: (a: number) => [number, number, number];
|
|
1179
|
-
readonly encodedcontent_new: (a: number, b: any, c: number, d: number, e: number, f: any) => number;
|
|
1180
|
-
readonly grouppermissions_policySet: (a: number) => [number, number, number];
|
|
1181
|
-
readonly grouppermissions_policyType: (a: number) => [number, number, number];
|
|
1182
|
-
readonly groupsyncsummary_new: (a: number, b: number) => number;
|
|
1183
|
-
readonly listmessagesoptions_new: (a: number, b: bigint, c: number, d: bigint, e: number, f: bigint, g: number, h: number, i: number, j: number, k: number, l: number, m: number, n: number, o: number) => number;
|
|
1184
|
-
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
|
-
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
|
-
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
|
-
readonly revokeInstallationsSignatureRequest: (a: number, b: number, c: number, d: number, e: any, f: number, g: number, h: number, i: number) => [number, number, number];
|
|
1203
|
-
readonly signaturerequesthandle_addEcdsaSignature: (a: number, b: any) => any;
|
|
1204
|
-
readonly signaturerequesthandle_addPasskeySignature: (a: number, b: number) => any;
|
|
1205
|
-
readonly signaturerequesthandle_addScwSignature: (a: number, b: any, c: any, d: bigint, e: number, f: bigint) => any;
|
|
1206
|
-
readonly signaturerequesthandle_signatureText: (a: number) => any;
|
|
1207
|
-
readonly verifySignedWithPublicKey: (a: number, b: number, c: any, d: any) => [number, number];
|
|
1208
|
-
readonly __wbg_get_reactionpayload_action: (a: number) => number;
|
|
1209
|
-
readonly __wbg_get_reactionpayload_schema: (a: number) => number;
|
|
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;
|
|
945
|
+
readonly __wbg_authhandle_free: (a: number, b: number) => void;
|
|
946
|
+
readonly __wbg_credential_free: (a: number, b: number) => void;
|
|
947
|
+
readonly authhandle_id: (a: number) => number;
|
|
948
|
+
readonly authhandle_new: () => number;
|
|
949
|
+
readonly authhandle_set: (a: number, b: number) => any;
|
|
950
|
+
readonly credential_new: (a: number, b: number, c: number, d: number, e: bigint) => number;
|
|
951
|
+
readonly __wbg_action_free: (a: number, b: number) => void;
|
|
952
|
+
readonly __wbg_actions_free: (a: number, b: number) => void;
|
|
953
|
+
readonly __wbg_attachment_free: (a: number, b: number) => void;
|
|
1236
954
|
readonly __wbg_conversation_free: (a: number, b: number) => void;
|
|
955
|
+
readonly __wbg_decodedmessage_free: (a: number, b: number) => void;
|
|
956
|
+
readonly __wbg_decodedmessagecontent_free: (a: number, b: number) => void;
|
|
957
|
+
readonly __wbg_enrichedreply_free: (a: number, b: number) => void;
|
|
958
|
+
readonly __wbg_get_action_expiresAtNs: (a: number) => [number, bigint];
|
|
959
|
+
readonly __wbg_get_action_id: (a: number) => [number, number];
|
|
960
|
+
readonly __wbg_get_action_imageUrl: (a: number) => [number, number];
|
|
961
|
+
readonly __wbg_get_action_label: (a: number) => [number, number];
|
|
962
|
+
readonly __wbg_get_action_style: (a: number) => number;
|
|
963
|
+
readonly __wbg_get_actions_description: (a: number) => [number, number];
|
|
964
|
+
readonly __wbg_get_actions_id: (a: number) => [number, number];
|
|
965
|
+
readonly __wbg_get_attachment_content: (a: number) => [number, number];
|
|
966
|
+
readonly __wbg_get_attachment_filename: (a: number) => [number, number];
|
|
967
|
+
readonly __wbg_get_attachment_mimeType: (a: number) => [number, number];
|
|
968
|
+
readonly __wbg_get_decodedmessage_content: (a: number) => number;
|
|
969
|
+
readonly __wbg_get_decodedmessage_content_type: (a: number) => number;
|
|
970
|
+
readonly __wbg_get_decodedmessage_conversation_id: (a: number) => [number, number];
|
|
971
|
+
readonly __wbg_get_decodedmessage_delivery_status: (a: number) => number;
|
|
972
|
+
readonly __wbg_get_decodedmessage_fallback_text: (a: number) => [number, number];
|
|
973
|
+
readonly __wbg_get_decodedmessage_id: (a: number) => [number, number];
|
|
974
|
+
readonly __wbg_get_decodedmessage_kind: (a: number) => number;
|
|
975
|
+
readonly __wbg_get_decodedmessage_num_replies: (a: number) => bigint;
|
|
976
|
+
readonly __wbg_get_decodedmessage_reactions: (a: number) => [number, number];
|
|
977
|
+
readonly __wbg_get_decodedmessage_sender_inbox_id: (a: number) => [number, number];
|
|
978
|
+
readonly __wbg_get_decodedmessage_sender_installation_id: (a: number) => [number, number];
|
|
979
|
+
readonly __wbg_get_decodedmessage_sent_at_ns: (a: number) => bigint;
|
|
1237
980
|
readonly __wbg_get_groupmember_accountIdentifiers: (a: number) => [number, number];
|
|
1238
981
|
readonly __wbg_get_groupmember_consentState: (a: number) => number;
|
|
1239
982
|
readonly __wbg_get_groupmember_inboxId: (a: number) => [number, number];
|
|
@@ -1249,16 +992,27 @@ export interface InitOutput {
|
|
|
1249
992
|
readonly __wbg_get_inboxstate_installations: (a: number) => [number, number];
|
|
1250
993
|
readonly __wbg_get_inboxstate_recoveryIdentifier: (a: number) => any;
|
|
1251
994
|
readonly __wbg_get_installation_bytes: (a: number) => any;
|
|
1252
|
-
readonly __wbg_get_installation_clientTimestampNs: (a: number) => [number, bigint];
|
|
1253
995
|
readonly __wbg_get_installation_id: (a: number) => [number, number];
|
|
1254
996
|
readonly __wbg_get_keypackagestatus_lifetime: (a: number) => number;
|
|
1255
997
|
readonly __wbg_get_keypackagestatus_validationError: (a: number) => [number, number];
|
|
1256
998
|
readonly __wbg_get_lifetime_not_after: (a: number) => bigint;
|
|
1257
999
|
readonly __wbg_get_lifetime_not_before: (a: number) => bigint;
|
|
1258
1000
|
readonly __wbg_get_metadatafieldchange_fieldName: (a: number) => [number, number];
|
|
1259
|
-
readonly __wbg_get_metadatafieldchange_newValue: (a: number) => [number, number];
|
|
1260
1001
|
readonly __wbg_get_metadatafieldchange_oldValue: (a: number) => [number, number];
|
|
1002
|
+
readonly __wbg_get_reply_content: (a: number) => number;
|
|
1003
|
+
readonly __wbg_get_reply_reference: (a: number) => [number, number];
|
|
1004
|
+
readonly __wbg_get_reply_referenceInboxId: (a: number) => [number, number];
|
|
1261
1005
|
readonly __wbg_get_sendmessageopts_shouldPush: (a: number) => number;
|
|
1006
|
+
readonly __wbg_get_transactionmetadata_amount: (a: number) => number;
|
|
1007
|
+
readonly __wbg_get_transactionmetadata_currency: (a: number) => [number, number];
|
|
1008
|
+
readonly __wbg_get_transactionmetadata_decimals: (a: number) => number;
|
|
1009
|
+
readonly __wbg_get_transactionmetadata_fromAddress: (a: number) => [number, number];
|
|
1010
|
+
readonly __wbg_get_transactionmetadata_toAddress: (a: number) => [number, number];
|
|
1011
|
+
readonly __wbg_get_transactionmetadata_transactionType: (a: number) => [number, number];
|
|
1012
|
+
readonly __wbg_get_transactionreference_metadata: (a: number) => number;
|
|
1013
|
+
readonly __wbg_get_transactionreference_namespace: (a: number) => [number, number];
|
|
1014
|
+
readonly __wbg_get_transactionreference_networkId: (a: number) => [number, number];
|
|
1015
|
+
readonly __wbg_get_transactionreference_reference: (a: number) => [number, number];
|
|
1262
1016
|
readonly __wbg_groupmember_free: (a: number, b: number) => void;
|
|
1263
1017
|
readonly __wbg_groupmetadata_free: (a: number, b: number) => void;
|
|
1264
1018
|
readonly __wbg_groupupdated_free: (a: number, b: number) => void;
|
|
@@ -1269,10 +1023,30 @@ export interface InitOutput {
|
|
|
1269
1023
|
readonly __wbg_lifetime_free: (a: number, b: number) => void;
|
|
1270
1024
|
readonly __wbg_metadatafieldchange_free: (a: number, b: number) => void;
|
|
1271
1025
|
readonly __wbg_readreceipt_free: (a: number, b: number) => void;
|
|
1026
|
+
readonly __wbg_reply_free: (a: number, b: number) => void;
|
|
1272
1027
|
readonly __wbg_sendmessageopts_free: (a: number, b: number) => void;
|
|
1028
|
+
readonly __wbg_set_action_expiresAtNs: (a: number, b: number, c: bigint) => void;
|
|
1029
|
+
readonly __wbg_set_action_id: (a: number, b: number, c: number) => void;
|
|
1030
|
+
readonly __wbg_set_action_imageUrl: (a: number, b: number, c: number) => void;
|
|
1031
|
+
readonly __wbg_set_action_label: (a: number, b: number, c: number) => void;
|
|
1032
|
+
readonly __wbg_set_action_style: (a: number, b: number) => void;
|
|
1033
|
+
readonly __wbg_set_attachment_content: (a: number, b: number, c: number) => void;
|
|
1034
|
+
readonly __wbg_set_attachment_filename: (a: number, b: number, c: number) => void;
|
|
1035
|
+
readonly __wbg_set_attachment_mimeType: (a: number, b: number, c: number) => void;
|
|
1036
|
+
readonly __wbg_set_decodedmessage_content: (a: number, b: number) => void;
|
|
1037
|
+
readonly __wbg_set_decodedmessage_content_type: (a: number, b: number) => void;
|
|
1038
|
+
readonly __wbg_set_decodedmessage_conversation_id: (a: number, b: number, c: number) => void;
|
|
1039
|
+
readonly __wbg_set_decodedmessage_delivery_status: (a: number, b: number) => void;
|
|
1040
|
+
readonly __wbg_set_decodedmessage_fallback_text: (a: number, b: number, c: number) => void;
|
|
1041
|
+
readonly __wbg_set_decodedmessage_id: (a: number, b: number, c: number) => void;
|
|
1042
|
+
readonly __wbg_set_decodedmessage_kind: (a: number, b: number) => void;
|
|
1043
|
+
readonly __wbg_set_decodedmessage_num_replies: (a: number, b: bigint) => void;
|
|
1044
|
+
readonly __wbg_set_decodedmessage_reactions: (a: number, b: number, c: number) => void;
|
|
1045
|
+
readonly __wbg_set_decodedmessage_sender_inbox_id: (a: number, b: number, c: number) => void;
|
|
1046
|
+
readonly __wbg_set_decodedmessage_sender_installation_id: (a: number, b: number, c: number) => void;
|
|
1047
|
+
readonly __wbg_set_decodedmessage_sent_at_ns: (a: number, b: bigint) => void;
|
|
1273
1048
|
readonly __wbg_set_groupmember_accountIdentifiers: (a: number, b: number, c: number) => void;
|
|
1274
1049
|
readonly __wbg_set_groupmember_consentState: (a: number, b: number) => void;
|
|
1275
|
-
readonly __wbg_set_groupmember_inboxId: (a: number, b: number, c: number) => void;
|
|
1276
1050
|
readonly __wbg_set_groupmember_installationIds: (a: number, b: number, c: number) => void;
|
|
1277
1051
|
readonly __wbg_set_groupmember_permissionLevel: (a: number, b: number) => void;
|
|
1278
1052
|
readonly __wbg_set_groupupdated_addedInboxes: (a: number, b: number, c: number) => void;
|
|
@@ -1282,24 +1056,42 @@ export interface InitOutput {
|
|
|
1282
1056
|
readonly __wbg_set_inboxstate_installations: (a: number, b: number, c: number) => void;
|
|
1283
1057
|
readonly __wbg_set_inboxstate_recoveryIdentifier: (a: number, b: any) => void;
|
|
1284
1058
|
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
1059
|
readonly __wbg_set_keypackagestatus_lifetime: (a: number, b: number) => void;
|
|
1288
1060
|
readonly __wbg_set_keypackagestatus_validationError: (a: number, b: number, c: number) => void;
|
|
1289
1061
|
readonly __wbg_set_lifetime_not_after: (a: number, b: bigint) => void;
|
|
1290
1062
|
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
1063
|
readonly __wbg_set_metadatafieldchange_oldValue: (a: number, b: number, c: number) => void;
|
|
1064
|
+
readonly __wbg_set_reply_content: (a: number, b: number) => void;
|
|
1065
|
+
readonly __wbg_set_reply_reference: (a: number, b: number, c: number) => void;
|
|
1066
|
+
readonly __wbg_set_reply_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
1293
1067
|
readonly __wbg_set_sendmessageopts_shouldPush: (a: number, b: number) => void;
|
|
1294
|
-
readonly
|
|
1295
|
-
readonly
|
|
1296
|
-
readonly
|
|
1297
|
-
readonly
|
|
1298
|
-
readonly
|
|
1299
|
-
readonly
|
|
1300
|
-
readonly
|
|
1301
|
-
readonly
|
|
1302
|
-
readonly
|
|
1068
|
+
readonly __wbg_set_transactionmetadata_amount: (a: number, b: number) => void;
|
|
1069
|
+
readonly __wbg_set_transactionmetadata_currency: (a: number, b: number, c: number) => void;
|
|
1070
|
+
readonly __wbg_set_transactionmetadata_decimals: (a: number, b: number) => void;
|
|
1071
|
+
readonly __wbg_set_transactionmetadata_fromAddress: (a: number, b: number, c: number) => void;
|
|
1072
|
+
readonly __wbg_set_transactionmetadata_toAddress: (a: number, b: number, c: number) => void;
|
|
1073
|
+
readonly __wbg_set_transactionmetadata_transactionType: (a: number, b: number, c: number) => void;
|
|
1074
|
+
readonly __wbg_set_transactionreference_metadata: (a: number, b: number) => void;
|
|
1075
|
+
readonly __wbg_set_transactionreference_namespace: (a: number, b: number, c: number) => void;
|
|
1076
|
+
readonly __wbg_set_transactionreference_networkId: (a: number, b: number, c: number) => void;
|
|
1077
|
+
readonly __wbg_set_transactionreference_reference: (a: number, b: number, c: number) => void;
|
|
1078
|
+
readonly __wbg_transactionmetadata_free: (a: number, b: number) => void;
|
|
1079
|
+
readonly __wbg_transactionreference_free: (a: number, b: number) => void;
|
|
1080
|
+
readonly action_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: bigint) => number;
|
|
1081
|
+
readonly actions_addAction: (a: number, b: number) => void;
|
|
1082
|
+
readonly actions_getActions: (a: number) => [number, number];
|
|
1083
|
+
readonly actions_new: (a: number, b: number, c: number, d: number, e: number, f: bigint) => number;
|
|
1084
|
+
readonly actions_setActions: (a: number, b: number, c: number) => void;
|
|
1085
|
+
readonly client_getKeyPackageStatusesForInstallationIds: (a: number, b: number, c: number) => any;
|
|
1086
|
+
readonly client_getLatestInboxState: (a: number, b: number, c: number) => any;
|
|
1087
|
+
readonly client_inboxState: (a: number, b: number) => any;
|
|
1088
|
+
readonly conversation_addAdmin: (a: number, b: number, c: number) => any;
|
|
1089
|
+
readonly conversation_addMembers: (a: number, b: number, c: number) => any;
|
|
1090
|
+
readonly conversation_addMembersByInboxId: (a: number, b: number, c: number) => any;
|
|
1091
|
+
readonly conversation_addSuperAdmin: (a: number, b: number, c: number) => any;
|
|
1092
|
+
readonly conversation_addedByInboxId: (a: number) => [number, number, number, number];
|
|
1093
|
+
readonly conversation_adminList: (a: number) => [number, number, number, number];
|
|
1094
|
+
readonly conversation_appData: (a: number) => [number, number, number, number];
|
|
1303
1095
|
readonly conversation_countMessages: (a: number, b: number) => any;
|
|
1304
1096
|
readonly conversation_createdAtNs: (a: number) => bigint;
|
|
1305
1097
|
readonly conversation_dmPeerInboxId: (a: number) => [number, number, number, number];
|
|
@@ -1334,61 +1126,19 @@ export interface InitOutput {
|
|
|
1334
1126
|
readonly conversation_stream: (a: number, b: any) => [number, number, number];
|
|
1335
1127
|
readonly conversation_superAdminList: (a: number) => [number, number, number, number];
|
|
1336
1128
|
readonly conversation_sync: (a: number) => any;
|
|
1129
|
+
readonly conversation_updateAppData: (a: number, b: number, c: number) => any;
|
|
1337
1130
|
readonly conversation_updateGroupDescription: (a: number, b: number, c: number) => any;
|
|
1338
1131
|
readonly conversation_updateGroupImageUrlSquare: (a: number, b: number, c: number) => any;
|
|
1339
1132
|
readonly conversation_updateGroupName: (a: number, b: number, c: number) => any;
|
|
1340
1133
|
readonly conversation_updateMessageDisappearingSettings: (a: number, b: number) => any;
|
|
1341
1134
|
readonly conversation_updatePermissionPolicy: (a: number, b: number, c: number, d: number) => any;
|
|
1342
|
-
readonly
|
|
1343
|
-
readonly
|
|
1344
|
-
readonly
|
|
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;
|
|
1351
|
-
readonly __wbg_set_groupupdated_initiatedByInboxId: (a: number, b: number, c: number) => void;
|
|
1352
|
-
readonly __wbg_set_inbox_inboxId: (a: number, b: number, c: number) => void;
|
|
1353
|
-
readonly __wbg_set_inboxstate_inboxId: (a: number, b: number, c: number) => void;
|
|
1354
|
-
readonly __wbg_set_metadatafieldchange_fieldName: (a: number, b: number, c: number) => void;
|
|
1355
|
-
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
|
-
readonly __wbg_get_attachment_content: (a: number) => [number, number];
|
|
1360
|
-
readonly __wbg_get_attachment_filename: (a: number) => [number, number];
|
|
1361
|
-
readonly __wbg_get_attachment_mimeType: (a: number) => [number, number];
|
|
1362
|
-
readonly __wbg_get_decodedmessage_content: (a: number) => number;
|
|
1363
|
-
readonly __wbg_get_decodedmessage_content_type: (a: number) => number;
|
|
1364
|
-
readonly __wbg_get_decodedmessage_conversation_id: (a: number) => [number, number];
|
|
1365
|
-
readonly __wbg_get_decodedmessage_delivery_status: (a: number) => number;
|
|
1366
|
-
readonly __wbg_get_decodedmessage_fallback_text: (a: number) => [number, number];
|
|
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;
|
|
1374
|
-
readonly __wbg_set_attachment_content: (a: number, b: number, c: number) => void;
|
|
1375
|
-
readonly __wbg_set_attachment_filename: (a: number, b: number, c: number) => void;
|
|
1376
|
-
readonly __wbg_set_attachment_mimeType: (a: number, b: number, c: number) => void;
|
|
1377
|
-
readonly __wbg_set_decodedmessage_content: (a: number, b: number) => void;
|
|
1378
|
-
readonly __wbg_set_decodedmessage_content_type: (a: number, b: number) => void;
|
|
1379
|
-
readonly __wbg_set_decodedmessage_conversation_id: (a: number, b: number, c: number) => void;
|
|
1380
|
-
readonly __wbg_set_decodedmessage_delivery_status: (a: number, b: number) => void;
|
|
1381
|
-
readonly __wbg_set_decodedmessage_fallback_text: (a: number, b: number, c: number) => void;
|
|
1382
|
-
readonly __wbg_set_decodedmessage_id: (a: number, b: number, c: number) => void;
|
|
1383
|
-
readonly __wbg_set_decodedmessage_kind: (a: number, b: number) => void;
|
|
1384
|
-
readonly __wbg_set_decodedmessage_num_replies: (a: number, b: bigint) => void;
|
|
1385
|
-
readonly __wbg_set_decodedmessage_reactions: (a: number, b: number, c: number) => void;
|
|
1386
|
-
readonly __wbg_set_decodedmessage_sender_inbox_id: (a: number, b: number, c: number) => void;
|
|
1387
|
-
readonly __wbg_set_decodedmessage_sender_installation_id: (a: number, b: number, c: number) => void;
|
|
1388
|
-
readonly __wbg_set_decodedmessage_sent_at_ns: (a: number, b: bigint) => void;
|
|
1135
|
+
readonly decodeActions: (a: any) => [number, number, number];
|
|
1136
|
+
readonly decodeReply: (a: any) => [number, number, number];
|
|
1137
|
+
readonly decodedmessagecontent_asActions: (a: number) => [number, number, number];
|
|
1389
1138
|
readonly decodedmessagecontent_asAttachment: (a: number) => number;
|
|
1390
1139
|
readonly decodedmessagecontent_asCustom: (a: number) => number;
|
|
1391
1140
|
readonly decodedmessagecontent_asGroupUpdated: (a: number) => number;
|
|
1141
|
+
readonly decodedmessagecontent_asIntent: (a: number) => [number, number, number];
|
|
1392
1142
|
readonly decodedmessagecontent_asMultiRemoteAttachment: (a: number) => number;
|
|
1393
1143
|
readonly decodedmessagecontent_asReaction: (a: number) => number;
|
|
1394
1144
|
readonly decodedmessagecontent_asReadReceipt: (a: number) => number;
|
|
@@ -1398,9 +1148,409 @@ export interface InitOutput {
|
|
|
1398
1148
|
readonly decodedmessagecontent_asTransactionReference: (a: number) => number;
|
|
1399
1149
|
readonly decodedmessagecontent_asWalletSendCalls: (a: number) => [number, number, number];
|
|
1400
1150
|
readonly decodedmessagecontent_payloadType: (a: number) => number;
|
|
1151
|
+
readonly encodeActions: (a: number) => [number, number, number];
|
|
1152
|
+
readonly encodeReply: (a: number) => [number, number, number];
|
|
1401
1153
|
readonly enrichedreply_content: (a: number) => number;
|
|
1402
1154
|
readonly enrichedreply_inReplyTo: (a: number) => number;
|
|
1403
1155
|
readonly enrichedreply_referenceId: (a: number) => [number, number];
|
|
1156
|
+
readonly groupmember_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
1157
|
+
readonly groupmetadata_conversationType: (a: number) => [number, number];
|
|
1158
|
+
readonly groupmetadata_creatorInboxId: (a: number) => [number, number];
|
|
1159
|
+
readonly inboxStateFromInboxIds: (a: number, b: number, c: number, d: number, e: number, f: number) => any;
|
|
1160
|
+
readonly inboxstate_new: (a: number, b: number, c: any, d: number, e: number, f: number, g: number) => number;
|
|
1161
|
+
readonly installation_new: (a: any, b: number, c: number, d: number, e: bigint) => number;
|
|
1162
|
+
readonly reply_new: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
1163
|
+
readonly sendmessageopts_new: (a: number) => number;
|
|
1164
|
+
readonly __wbg_set_actions_description: (a: number, b: number, c: number) => void;
|
|
1165
|
+
readonly __wbg_set_actions_id: (a: number, b: number, c: number) => void;
|
|
1166
|
+
readonly __wbg_set_groupmember_inboxId: (a: number, b: number, c: number) => void;
|
|
1167
|
+
readonly __wbg_set_groupupdated_initiatedByInboxId: (a: number, b: number, c: number) => void;
|
|
1168
|
+
readonly __wbg_set_inbox_inboxId: (a: number, b: number, c: number) => void;
|
|
1169
|
+
readonly __wbg_set_inboxstate_inboxId: (a: number, b: number, c: number) => void;
|
|
1170
|
+
readonly __wbg_set_installation_id: (a: number, b: number, c: number) => void;
|
|
1171
|
+
readonly __wbg_set_metadatafieldchange_fieldName: (a: number, b: number, c: number) => void;
|
|
1172
|
+
readonly __wbg_set_metadatafieldchange_newValue: (a: number, b: number, c: number) => void;
|
|
1173
|
+
readonly __wbg_get_actions_expiresAtNs: (a: number) => [number, bigint];
|
|
1174
|
+
readonly __wbg_get_installation_clientTimestampNs: (a: number) => [number, bigint];
|
|
1175
|
+
readonly __wbg_get_metadatafieldchange_newValue: (a: number) => [number, number];
|
|
1176
|
+
readonly __wbg_set_actions_expiresAtNs: (a: number, b: number, c: bigint) => void;
|
|
1177
|
+
readonly __wbg_set_installation_clientTimestampNs: (a: number, b: number, c: bigint) => void;
|
|
1178
|
+
readonly __wbg_contenttypeid_free: (a: number, b: number) => void;
|
|
1179
|
+
readonly __wbg_encodedcontent_free: (a: number, b: number) => void;
|
|
1180
|
+
readonly __wbg_get_contenttypeid_authorityId: (a: number) => [number, number];
|
|
1181
|
+
readonly __wbg_get_contenttypeid_typeId: (a: number) => [number, number];
|
|
1182
|
+
readonly __wbg_get_contenttypeid_versionMajor: (a: number) => number;
|
|
1183
|
+
readonly __wbg_get_contenttypeid_versionMinor: (a: number) => number;
|
|
1184
|
+
readonly __wbg_get_encodedcontent_compression: (a: number) => number;
|
|
1185
|
+
readonly __wbg_get_encodedcontent_content: (a: number) => any;
|
|
1186
|
+
readonly __wbg_get_encodedcontent_fallback: (a: number) => [number, number];
|
|
1187
|
+
readonly __wbg_get_encodedcontent_parameters: (a: number) => any;
|
|
1188
|
+
readonly __wbg_get_encodedcontent_type: (a: number) => number;
|
|
1189
|
+
readonly __wbg_get_multiremoteattachment_attachments: (a: number) => [number, number];
|
|
1190
|
+
readonly __wbg_get_remoteattachment_contentDigest: (a: number) => [number, number];
|
|
1191
|
+
readonly __wbg_get_remoteattachment_contentLength: (a: number) => bigint;
|
|
1192
|
+
readonly __wbg_get_remoteattachment_filename: (a: number) => [number, number];
|
|
1193
|
+
readonly __wbg_get_remoteattachment_nonce: (a: number) => [number, number];
|
|
1194
|
+
readonly __wbg_get_remoteattachment_salt: (a: number) => [number, number];
|
|
1195
|
+
readonly __wbg_get_remoteattachment_scheme: (a: number) => [number, number];
|
|
1196
|
+
readonly __wbg_get_remoteattachment_secret: (a: number) => [number, number];
|
|
1197
|
+
readonly __wbg_get_remoteattachment_url: (a: number) => [number, number];
|
|
1198
|
+
readonly __wbg_get_remoteattachmentinfo_contentDigest: (a: number) => [number, number];
|
|
1199
|
+
readonly __wbg_get_remoteattachmentinfo_contentLength: (a: number) => number;
|
|
1200
|
+
readonly __wbg_get_remoteattachmentinfo_filename: (a: number) => [number, number];
|
|
1201
|
+
readonly __wbg_get_remoteattachmentinfo_nonce: (a: number) => any;
|
|
1202
|
+
readonly __wbg_get_remoteattachmentinfo_salt: (a: number) => any;
|
|
1203
|
+
readonly __wbg_get_remoteattachmentinfo_scheme: (a: number) => [number, number];
|
|
1204
|
+
readonly __wbg_get_remoteattachmentinfo_url: (a: number) => [number, number];
|
|
1205
|
+
readonly __wbg_get_textcontent_content: (a: number) => [number, number];
|
|
1206
|
+
readonly __wbg_multiremoteattachment_free: (a: number, b: number) => void;
|
|
1207
|
+
readonly __wbg_opfs_free: (a: number, b: number) => void;
|
|
1208
|
+
readonly __wbg_remoteattachment_free: (a: number, b: number) => void;
|
|
1209
|
+
readonly __wbg_remoteattachmentinfo_free: (a: number, b: number) => void;
|
|
1210
|
+
readonly __wbg_set_contenttypeid_authorityId: (a: number, b: number, c: number) => void;
|
|
1211
|
+
readonly __wbg_set_contenttypeid_typeId: (a: number, b: number, c: number) => void;
|
|
1212
|
+
readonly __wbg_set_contenttypeid_versionMajor: (a: number, b: number) => void;
|
|
1213
|
+
readonly __wbg_set_contenttypeid_versionMinor: (a: number, b: number) => void;
|
|
1214
|
+
readonly __wbg_set_encodedcontent_compression: (a: number, b: number) => void;
|
|
1215
|
+
readonly __wbg_set_encodedcontent_content: (a: number, b: any) => void;
|
|
1216
|
+
readonly __wbg_set_encodedcontent_fallback: (a: number, b: number, c: number) => void;
|
|
1217
|
+
readonly __wbg_set_encodedcontent_parameters: (a: number, b: any) => void;
|
|
1218
|
+
readonly __wbg_set_encodedcontent_type: (a: number, b: number) => void;
|
|
1219
|
+
readonly __wbg_set_multiremoteattachment_attachments: (a: number, b: number, c: number) => void;
|
|
1220
|
+
readonly __wbg_set_remoteattachment_contentDigest: (a: number, b: number, c: number) => void;
|
|
1221
|
+
readonly __wbg_set_remoteattachment_contentLength: (a: number, b: bigint) => void;
|
|
1222
|
+
readonly __wbg_set_remoteattachment_filename: (a: number, b: number, c: number) => void;
|
|
1223
|
+
readonly __wbg_set_remoteattachment_nonce: (a: number, b: number, c: number) => void;
|
|
1224
|
+
readonly __wbg_set_remoteattachment_salt: (a: number, b: number, c: number) => void;
|
|
1225
|
+
readonly __wbg_set_remoteattachment_scheme: (a: number, b: number, c: number) => void;
|
|
1226
|
+
readonly __wbg_set_remoteattachment_secret: (a: number, b: number, c: number) => void;
|
|
1227
|
+
readonly __wbg_set_remoteattachment_url: (a: number, b: number, c: number) => void;
|
|
1228
|
+
readonly __wbg_set_remoteattachmentinfo_contentDigest: (a: number, b: number, c: number) => void;
|
|
1229
|
+
readonly __wbg_set_remoteattachmentinfo_contentLength: (a: number, b: number) => void;
|
|
1230
|
+
readonly __wbg_set_remoteattachmentinfo_filename: (a: number, b: number, c: number) => void;
|
|
1231
|
+
readonly __wbg_set_remoteattachmentinfo_nonce: (a: number, b: any) => void;
|
|
1232
|
+
readonly __wbg_set_remoteattachmentinfo_salt: (a: number, b: any) => void;
|
|
1233
|
+
readonly __wbg_set_remoteattachmentinfo_scheme: (a: number, b: number, c: number) => void;
|
|
1234
|
+
readonly __wbg_set_remoteattachmentinfo_url: (a: number, b: number, c: number) => void;
|
|
1235
|
+
readonly __wbg_streamcloser_free: (a: number, b: number) => void;
|
|
1236
|
+
readonly __wbg_textcontent_free: (a: number, b: number) => void;
|
|
1237
|
+
readonly contenttypeid_new: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
1238
|
+
readonly decodeMultiRemoteAttachment: (a: any) => [number, number, number];
|
|
1239
|
+
readonly encodeMultiRemoteAttachment: (a: number) => [number, number, number];
|
|
1240
|
+
readonly encodedcontent_new: (a: number, b: any, c: number, d: number, e: number, f: any) => number;
|
|
1241
|
+
readonly generateInboxId: (a: any, b: number, c: bigint) => [number, number, number, number];
|
|
1242
|
+
readonly getInboxIdForIdentifier: (a: number, b: number, c: number, d: number, e: any) => any;
|
|
1243
|
+
readonly multiremoteattachment_new: (a: number, b: number) => number;
|
|
1244
|
+
readonly opfs_addCapacity: (a: number) => any;
|
|
1245
|
+
readonly opfs_error: () => [number, number];
|
|
1246
|
+
readonly opfs_exists: () => number;
|
|
1247
|
+
readonly opfs_exportFile: (a: number, b: number) => [number, number, number, number];
|
|
1248
|
+
readonly opfs_getCapacity: () => number;
|
|
1249
|
+
readonly opfs_getFileCount: () => number;
|
|
1250
|
+
readonly opfs_getFileNames: () => [number, number];
|
|
1251
|
+
readonly opfs_importDb: (a: number, b: number, c: number, d: number) => [number, number];
|
|
1252
|
+
readonly opfs_init_sqlite_opfs: () => any;
|
|
1253
|
+
readonly opfs_reduceCapacity: (a: number) => any;
|
|
1254
|
+
readonly opfs_rm: (a: number, b: number) => [number, number, number];
|
|
1255
|
+
readonly opfs_wipeFiles: () => any;
|
|
1256
|
+
readonly remoteattachmentinfo_new: (a: any, b: number, c: number, d: any, e: number, f: number, g: number, h: number, i: any, j: number, k: number, l: number) => number;
|
|
1257
|
+
readonly streamcloser_end: (a: number) => void;
|
|
1258
|
+
readonly streamcloser_endAndWait: (a: number) => any;
|
|
1259
|
+
readonly streamcloser_isClosed: (a: number) => number;
|
|
1260
|
+
readonly streamcloser_waitForReady: (a: number) => any;
|
|
1261
|
+
readonly __wbg_set_textcontent_content: (a: number, b: number, c: number) => void;
|
|
1262
|
+
readonly __wbg_get_remoteattachmentinfo_secret: (a: number) => any;
|
|
1263
|
+
readonly __wbg_set_remoteattachmentinfo_secret: (a: number, b: any) => void;
|
|
1264
|
+
readonly __wbg_apistats_free: (a: number, b: number) => void;
|
|
1265
|
+
readonly __wbg_client_free: (a: number, b: number) => void;
|
|
1266
|
+
readonly __wbg_consent_free: (a: number, b: number) => void;
|
|
1267
|
+
readonly __wbg_get_apistats_fetch_key_package: (a: number) => bigint;
|
|
1268
|
+
readonly __wbg_get_apistats_query_group_messages: (a: number) => bigint;
|
|
1269
|
+
readonly __wbg_get_apistats_query_welcome_messages: (a: number) => bigint;
|
|
1270
|
+
readonly __wbg_get_apistats_send_group_messages: (a: number) => bigint;
|
|
1271
|
+
readonly __wbg_get_apistats_send_welcome_messages: (a: number) => bigint;
|
|
1272
|
+
readonly __wbg_get_apistats_subscribe_messages: (a: number) => bigint;
|
|
1273
|
+
readonly __wbg_get_apistats_subscribe_welcomes: (a: number) => bigint;
|
|
1274
|
+
readonly __wbg_get_apistats_upload_key_package: (a: number) => bigint;
|
|
1275
|
+
readonly __wbg_get_consent_entity: (a: number) => [number, number];
|
|
1276
|
+
readonly __wbg_get_consent_entityType: (a: number) => number;
|
|
1277
|
+
readonly __wbg_get_consent_state: (a: number) => number;
|
|
1278
|
+
readonly __wbg_get_groupsyncsummary_numEligible: (a: number) => number;
|
|
1279
|
+
readonly __wbg_get_groupsyncsummary_numSynced: (a: number) => number;
|
|
1280
|
+
readonly __wbg_get_intent_actionId: (a: number) => [number, number];
|
|
1281
|
+
readonly __wbg_get_intent_id: (a: number) => [number, number];
|
|
1282
|
+
readonly __wbg_get_intent_metadata: (a: number) => any;
|
|
1283
|
+
readonly __wbg_get_logoptions_level: (a: number) => number;
|
|
1284
|
+
readonly __wbg_get_logoptions_performance: (a: number) => number;
|
|
1285
|
+
readonly __wbg_get_logoptions_structured: (a: number) => number;
|
|
1286
|
+
readonly __wbg_get_reaction_action: (a: number) => number;
|
|
1287
|
+
readonly __wbg_get_reaction_content: (a: number) => [number, number];
|
|
1288
|
+
readonly __wbg_get_reaction_reference: (a: number) => [number, number];
|
|
1289
|
+
readonly __wbg_get_reaction_referenceInboxId: (a: number) => [number, number];
|
|
1290
|
+
readonly __wbg_get_reaction_schema: (a: number) => number;
|
|
1291
|
+
readonly __wbg_get_reactionpayload_content: (a: number) => [number, number];
|
|
1292
|
+
readonly __wbg_get_reactionpayload_reference: (a: number) => [number, number];
|
|
1293
|
+
readonly __wbg_get_reactionpayload_referenceInboxId: (a: number) => [number, number];
|
|
1294
|
+
readonly __wbg_groupsyncsummary_free: (a: number, b: number) => void;
|
|
1295
|
+
readonly __wbg_identitystats_free: (a: number, b: number) => void;
|
|
1296
|
+
readonly __wbg_intent_free: (a: number, b: number) => void;
|
|
1297
|
+
readonly __wbg_logoptions_free: (a: number, b: number) => void;
|
|
1298
|
+
readonly __wbg_passkeysignature_free: (a: number, b: number) => void;
|
|
1299
|
+
readonly __wbg_reaction_free: (a: number, b: number) => void;
|
|
1300
|
+
readonly __wbg_reactionpayload_free: (a: number, b: number) => void;
|
|
1301
|
+
readonly __wbg_set_apistats_fetch_key_package: (a: number, b: bigint) => void;
|
|
1302
|
+
readonly __wbg_set_apistats_query_group_messages: (a: number, b: bigint) => void;
|
|
1303
|
+
readonly __wbg_set_apistats_query_welcome_messages: (a: number, b: bigint) => void;
|
|
1304
|
+
readonly __wbg_set_apistats_send_group_messages: (a: number, b: bigint) => void;
|
|
1305
|
+
readonly __wbg_set_apistats_send_welcome_messages: (a: number, b: bigint) => void;
|
|
1306
|
+
readonly __wbg_set_apistats_subscribe_messages: (a: number, b: bigint) => void;
|
|
1307
|
+
readonly __wbg_set_apistats_subscribe_welcomes: (a: number, b: bigint) => void;
|
|
1308
|
+
readonly __wbg_set_apistats_upload_key_package: (a: number, b: bigint) => void;
|
|
1309
|
+
readonly __wbg_set_consent_entity: (a: number, b: number, c: number) => void;
|
|
1310
|
+
readonly __wbg_set_consent_entityType: (a: number, b: number) => void;
|
|
1311
|
+
readonly __wbg_set_consent_state: (a: number, b: number) => void;
|
|
1312
|
+
readonly __wbg_set_groupsyncsummary_numEligible: (a: number, b: number) => void;
|
|
1313
|
+
readonly __wbg_set_groupsyncsummary_numSynced: (a: number, b: number) => void;
|
|
1314
|
+
readonly __wbg_set_intent_actionId: (a: number, b: number, c: number) => void;
|
|
1315
|
+
readonly __wbg_set_intent_metadata: (a: number, b: any) => void;
|
|
1316
|
+
readonly __wbg_set_logoptions_level: (a: number, b: number) => void;
|
|
1317
|
+
readonly __wbg_set_logoptions_performance: (a: number, b: number) => void;
|
|
1318
|
+
readonly __wbg_set_logoptions_structured: (a: number, b: number) => void;
|
|
1319
|
+
readonly __wbg_set_reaction_action: (a: number, b: number) => void;
|
|
1320
|
+
readonly __wbg_set_reaction_content: (a: number, b: number, c: number) => void;
|
|
1321
|
+
readonly __wbg_set_reaction_schema: (a: number, b: number) => void;
|
|
1322
|
+
readonly __wbg_signaturerequesthandle_free: (a: number, b: number) => void;
|
|
1323
|
+
readonly applySignatureRequest: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
1324
|
+
readonly client_accountIdentifier: (a: number) => any;
|
|
1325
|
+
readonly client_addWalletSignatureRequest: (a: number, b: any) => any;
|
|
1326
|
+
readonly client_apiAggregateStatistics: (a: number) => [number, number];
|
|
1327
|
+
readonly client_apiIdentityStatistics: (a: number) => number;
|
|
1328
|
+
readonly client_apiStatistics: (a: number) => number;
|
|
1329
|
+
readonly client_appVersion: (a: number) => [number, number];
|
|
1330
|
+
readonly client_applySignatureRequest: (a: number, b: number) => any;
|
|
1331
|
+
readonly client_canMessage: (a: number, b: number, c: number) => any;
|
|
1332
|
+
readonly client_changeRecoveryIdentifierSignatureRequest: (a: number, b: any) => any;
|
|
1333
|
+
readonly client_clearAllStatistics: (a: number) => void;
|
|
1334
|
+
readonly client_conversations: (a: number) => number;
|
|
1335
|
+
readonly client_createInboxSignatureRequest: (a: number) => [number, number, number];
|
|
1336
|
+
readonly client_deleteMessage: (a: number, b: number, c: number) => [number, number, number];
|
|
1337
|
+
readonly client_findInboxIdByIdentifier: (a: number, b: any) => any;
|
|
1338
|
+
readonly client_getConsentState: (a: number, b: number, c: number, d: number) => any;
|
|
1339
|
+
readonly client_inboxId: (a: number) => [number, number];
|
|
1340
|
+
readonly client_inboxStateFromInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
1341
|
+
readonly client_installationId: (a: number) => [number, number];
|
|
1342
|
+
readonly client_installationIdBytes: (a: number) => any;
|
|
1343
|
+
readonly client_isRegistered: (a: number) => number;
|
|
1344
|
+
readonly client_libxmtpVersion: (a: number) => [number, number];
|
|
1345
|
+
readonly client_messageV2: (a: number, b: number, c: number) => any;
|
|
1346
|
+
readonly client_registerIdentity: (a: number, b: number) => any;
|
|
1347
|
+
readonly client_revokeAllOtherInstallationsSignatureRequest: (a: number) => any;
|
|
1348
|
+
readonly client_revokeInstallationsSignatureRequest: (a: number, b: number, c: number) => any;
|
|
1349
|
+
readonly client_revokeWalletSignatureRequest: (a: number, b: any) => any;
|
|
1350
|
+
readonly client_sendSyncRequest: (a: number) => any;
|
|
1351
|
+
readonly client_setConsentStates: (a: number, b: number, c: number) => any;
|
|
1352
|
+
readonly client_signWithInstallationKey: (a: number, b: number, c: number) => [number, number, number];
|
|
1353
|
+
readonly client_syncPreferences: (a: number) => any;
|
|
1354
|
+
readonly client_uploadDebugArchive: (a: number, b: number, c: number) => any;
|
|
1355
|
+
readonly client_verifySignedWithInstallationKey: (a: number, b: number, c: number, d: any) => [number, number];
|
|
1356
|
+
readonly consent_new: (a: number, b: number, c: number, d: number) => number;
|
|
1357
|
+
readonly conversation_consentState: (a: number) => [number, number, number];
|
|
1358
|
+
readonly conversation_updateConsentState: (a: number, b: number) => [number, number];
|
|
1359
|
+
readonly createClient: (a: number, b: number, c: number, d: number, e: any, f: number, g: number, h: number, i: number, j: number, k: number, l: number, m: number, n: number, o: number, p: number, q: number, r: number, s: number, t: bigint, u: number, v: number, w: number) => any;
|
|
1360
|
+
readonly decodeIntent: (a: any) => [number, number, number];
|
|
1361
|
+
readonly decodeReaction: (a: any) => [number, number, number];
|
|
1362
|
+
readonly encodeIntent: (a: number) => [number, number, number];
|
|
1363
|
+
readonly encodeReaction: (a: number) => [number, number, number];
|
|
1364
|
+
readonly groupsyncsummary_new: (a: number, b: number) => number;
|
|
1365
|
+
readonly intent_new: (a: number, b: number, c: number, d: number, e: any) => number;
|
|
1366
|
+
readonly logoptions_new: (a: number, b: number, c: number) => number;
|
|
1367
|
+
readonly reaction_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
1368
|
+
readonly revokeInstallationsSignatureRequest: (a: number, b: number, c: number, d: number, e: any, f: number, g: number, h: number, i: number) => [number, number, number];
|
|
1369
|
+
readonly signaturerequesthandle_addEcdsaSignature: (a: number, b: any) => any;
|
|
1370
|
+
readonly signaturerequesthandle_addPasskeySignature: (a: number, b: number) => any;
|
|
1371
|
+
readonly signaturerequesthandle_addScwSignature: (a: number, b: any, c: any, d: bigint, e: number, f: bigint) => any;
|
|
1372
|
+
readonly signaturerequesthandle_signatureText: (a: number) => any;
|
|
1373
|
+
readonly verifySignedWithPublicKey: (a: number, b: number, c: any, d: any) => [number, number];
|
|
1374
|
+
readonly __wbg_set_intent_id: (a: number, b: number, c: number) => void;
|
|
1375
|
+
readonly __wbg_set_reaction_reference: (a: number, b: number, c: number) => void;
|
|
1376
|
+
readonly __wbg_set_reaction_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
1377
|
+
readonly __wbg_set_reactionpayload_content: (a: number, b: number, c: number) => void;
|
|
1378
|
+
readonly __wbg_set_reactionpayload_reference: (a: number, b: number, c: number) => void;
|
|
1379
|
+
readonly __wbg_set_reactionpayload_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
1380
|
+
readonly __wbg_set_reactionpayload_action: (a: number, b: number) => void;
|
|
1381
|
+
readonly __wbg_set_reactionpayload_schema: (a: number, b: number) => void;
|
|
1382
|
+
readonly __wbg_get_reactionpayload_action: (a: number) => number;
|
|
1383
|
+
readonly __wbg_get_reactionpayload_schema: (a: number) => number;
|
|
1384
|
+
readonly __wbg_set_identitystats_get_identity_updates_v2: (a: number, b: bigint) => void;
|
|
1385
|
+
readonly __wbg_set_identitystats_get_inbox_ids: (a: number, b: bigint) => void;
|
|
1386
|
+
readonly __wbg_set_identitystats_publish_identity_update: (a: number, b: bigint) => void;
|
|
1387
|
+
readonly __wbg_set_identitystats_verify_smart_contract_wallet_signature: (a: number, b: bigint) => void;
|
|
1388
|
+
readonly __wbg_get_identitystats_get_identity_updates_v2: (a: number) => bigint;
|
|
1389
|
+
readonly __wbg_get_identitystats_get_inbox_ids: (a: number) => bigint;
|
|
1390
|
+
readonly __wbg_get_identitystats_publish_identity_update: (a: number) => bigint;
|
|
1391
|
+
readonly __wbg_get_identitystats_verify_smart_contract_wallet_signature: (a: number) => bigint;
|
|
1392
|
+
readonly __wbg_conversationdebuginfo_free: (a: number, b: number) => void;
|
|
1393
|
+
readonly __wbg_conversationlistitem_free: (a: number, b: number) => void;
|
|
1394
|
+
readonly __wbg_conversations_free: (a: number, b: number) => void;
|
|
1395
|
+
readonly __wbg_createdmoptions_free: (a: number, b: number) => void;
|
|
1396
|
+
readonly __wbg_creategroupoptions_free: (a: number, b: number) => void;
|
|
1397
|
+
readonly __wbg_get_conversationdebuginfo_cursor: (a: number) => [number, number];
|
|
1398
|
+
readonly __wbg_get_conversationdebuginfo_epoch: (a: number) => bigint;
|
|
1399
|
+
readonly __wbg_get_conversationdebuginfo_forkDetails: (a: number) => [number, number];
|
|
1400
|
+
readonly __wbg_get_conversationdebuginfo_isCommitLogForked: (a: number) => number;
|
|
1401
|
+
readonly __wbg_get_conversationdebuginfo_localCommitLog: (a: number) => [number, number];
|
|
1402
|
+
readonly __wbg_get_conversationdebuginfo_maybeForked: (a: number) => number;
|
|
1403
|
+
readonly __wbg_get_conversationdebuginfo_remoteCommitLog: (a: number) => [number, number];
|
|
1404
|
+
readonly __wbg_get_conversationlistitem_conversation: (a: number) => number;
|
|
1405
|
+
readonly __wbg_get_conversationlistitem_isCommitLogForked: (a: number) => number;
|
|
1406
|
+
readonly __wbg_get_conversationlistitem_lastMessage: (a: number) => number;
|
|
1407
|
+
readonly __wbg_get_createdmoptions_messageDisappearingSettings: (a: number) => number;
|
|
1408
|
+
readonly __wbg_get_creategroupoptions_appData: (a: number) => [number, number];
|
|
1409
|
+
readonly __wbg_get_creategroupoptions_customPermissionPolicySet: (a: number) => number;
|
|
1410
|
+
readonly __wbg_get_creategroupoptions_groupDescription: (a: number) => [number, number];
|
|
1411
|
+
readonly __wbg_get_creategroupoptions_groupImageUrlSquare: (a: number) => [number, number];
|
|
1412
|
+
readonly __wbg_get_creategroupoptions_groupName: (a: number) => [number, number];
|
|
1413
|
+
readonly __wbg_get_creategroupoptions_permissions: (a: number) => number;
|
|
1414
|
+
readonly __wbg_get_hmackey_key: (a: number) => [number, number];
|
|
1415
|
+
readonly __wbg_get_listconversationsoptions_consentStates: (a: number) => [number, number];
|
|
1416
|
+
readonly __wbg_get_listconversationsoptions_conversationType: (a: number) => number;
|
|
1417
|
+
readonly __wbg_get_listconversationsoptions_createdAfterNs: (a: number) => [number, bigint];
|
|
1418
|
+
readonly __wbg_get_listconversationsoptions_createdBeforeNs: (a: number) => [number, bigint];
|
|
1419
|
+
readonly __wbg_get_listconversationsoptions_includeDuplicateDms: (a: number) => number;
|
|
1420
|
+
readonly __wbg_get_listconversationsoptions_limit: (a: number) => [number, bigint];
|
|
1421
|
+
readonly __wbg_get_listconversationsoptions_orderBy: (a: number) => number;
|
|
1422
|
+
readonly __wbg_get_listmessagesoptions_contentTypes: (a: number) => [number, number];
|
|
1423
|
+
readonly __wbg_get_listmessagesoptions_deliveryStatus: (a: number) => number;
|
|
1424
|
+
readonly __wbg_get_listmessagesoptions_direction: (a: number) => number;
|
|
1425
|
+
readonly __wbg_get_listmessagesoptions_excludeContentTypes: (a: number) => [number, number];
|
|
1426
|
+
readonly __wbg_get_listmessagesoptions_excludeSenderInboxIds: (a: number) => [number, number];
|
|
1427
|
+
readonly __wbg_get_listmessagesoptions_insertedAfterNs: (a: number) => [number, bigint];
|
|
1428
|
+
readonly __wbg_get_listmessagesoptions_insertedBeforeNs: (a: number) => [number, bigint];
|
|
1429
|
+
readonly __wbg_get_listmessagesoptions_kind: (a: number) => number;
|
|
1430
|
+
readonly __wbg_get_listmessagesoptions_sortBy: (a: number) => number;
|
|
1431
|
+
readonly __wbg_get_message_content: (a: number) => number;
|
|
1432
|
+
readonly __wbg_get_message_convoId: (a: number) => [number, number];
|
|
1433
|
+
readonly __wbg_get_message_deliveryStatus: (a: number) => number;
|
|
1434
|
+
readonly __wbg_get_message_id: (a: number) => [number, number];
|
|
1435
|
+
readonly __wbg_get_message_kind: (a: number) => number;
|
|
1436
|
+
readonly __wbg_get_message_senderInboxId: (a: number) => [number, number];
|
|
1437
|
+
readonly __wbg_get_messagedisappearingsettings_inNs: (a: number) => bigint;
|
|
1438
|
+
readonly __wbg_get_messagewithreactions_message: (a: number) => number;
|
|
1439
|
+
readonly __wbg_get_messagewithreactions_reactions: (a: number) => [number, number];
|
|
1440
|
+
readonly __wbg_get_permissionpolicyset_addAdminPolicy: (a: number) => number;
|
|
1441
|
+
readonly __wbg_get_permissionpolicyset_addMemberPolicy: (a: number) => number;
|
|
1442
|
+
readonly __wbg_get_permissionpolicyset_removeAdminPolicy: (a: number) => number;
|
|
1443
|
+
readonly __wbg_get_permissionpolicyset_removeMemberPolicy: (a: number) => number;
|
|
1444
|
+
readonly __wbg_get_permissionpolicyset_updateGroupDescriptionPolicy: (a: number) => number;
|
|
1445
|
+
readonly __wbg_get_permissionpolicyset_updateGroupImageUrlSquarePolicy: (a: number) => number;
|
|
1446
|
+
readonly __wbg_get_permissionpolicyset_updateGroupNamePolicy: (a: number) => number;
|
|
1447
|
+
readonly __wbg_get_permissionpolicyset_updateMessageDisappearingPolicy: (a: number) => number;
|
|
1448
|
+
readonly __wbg_get_xmtpcursor_originator_id: (a: number) => number;
|
|
1449
|
+
readonly __wbg_grouppermissions_free: (a: number, b: number) => void;
|
|
1450
|
+
readonly __wbg_hmackey_free: (a: number, b: number) => void;
|
|
1451
|
+
readonly __wbg_listconversationsoptions_free: (a: number, b: number) => void;
|
|
1452
|
+
readonly __wbg_listmessagesoptions_free: (a: number, b: number) => void;
|
|
1453
|
+
readonly __wbg_message_free: (a: number, b: number) => void;
|
|
1454
|
+
readonly __wbg_messagedisappearingsettings_free: (a: number, b: number) => void;
|
|
1455
|
+
readonly __wbg_messagewithreactions_free: (a: number, b: number) => void;
|
|
1456
|
+
readonly __wbg_permissionpolicyset_free: (a: number, b: number) => void;
|
|
1457
|
+
readonly __wbg_set_conversationdebuginfo_cursor: (a: number, b: number, c: number) => void;
|
|
1458
|
+
readonly __wbg_set_conversationdebuginfo_epoch: (a: number, b: bigint) => void;
|
|
1459
|
+
readonly __wbg_set_conversationdebuginfo_forkDetails: (a: number, b: number, c: number) => void;
|
|
1460
|
+
readonly __wbg_set_conversationdebuginfo_isCommitLogForked: (a: number, b: number) => void;
|
|
1461
|
+
readonly __wbg_set_conversationdebuginfo_localCommitLog: (a: number, b: number, c: number) => void;
|
|
1462
|
+
readonly __wbg_set_conversationdebuginfo_maybeForked: (a: number, b: number) => void;
|
|
1463
|
+
readonly __wbg_set_conversationdebuginfo_remoteCommitLog: (a: number, b: number, c: number) => void;
|
|
1464
|
+
readonly __wbg_set_conversationlistitem_conversation: (a: number, b: number) => void;
|
|
1465
|
+
readonly __wbg_set_conversationlistitem_isCommitLogForked: (a: number, b: number) => void;
|
|
1466
|
+
readonly __wbg_set_conversationlistitem_lastMessage: (a: number, b: number) => void;
|
|
1467
|
+
readonly __wbg_set_createdmoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
1468
|
+
readonly __wbg_set_creategroupoptions_appData: (a: number, b: number, c: number) => void;
|
|
1469
|
+
readonly __wbg_set_creategroupoptions_customPermissionPolicySet: (a: number, b: number) => void;
|
|
1470
|
+
readonly __wbg_set_creategroupoptions_groupDescription: (a: number, b: number, c: number) => void;
|
|
1471
|
+
readonly __wbg_set_creategroupoptions_groupImageUrlSquare: (a: number, b: number, c: number) => void;
|
|
1472
|
+
readonly __wbg_set_creategroupoptions_groupName: (a: number, b: number, c: number) => void;
|
|
1473
|
+
readonly __wbg_set_creategroupoptions_permissions: (a: number, b: number) => void;
|
|
1474
|
+
readonly __wbg_set_listconversationsoptions_consentStates: (a: number, b: number, c: number) => void;
|
|
1475
|
+
readonly __wbg_set_listconversationsoptions_conversationType: (a: number, b: number) => void;
|
|
1476
|
+
readonly __wbg_set_listconversationsoptions_createdAfterNs: (a: number, b: number, c: bigint) => void;
|
|
1477
|
+
readonly __wbg_set_listconversationsoptions_createdBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
1478
|
+
readonly __wbg_set_listconversationsoptions_includeDuplicateDms: (a: number, b: number) => void;
|
|
1479
|
+
readonly __wbg_set_listconversationsoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
1480
|
+
readonly __wbg_set_listconversationsoptions_orderBy: (a: number, b: number) => void;
|
|
1481
|
+
readonly __wbg_set_listmessagesoptions_contentTypes: (a: number, b: number, c: number) => void;
|
|
1482
|
+
readonly __wbg_set_listmessagesoptions_deliveryStatus: (a: number, b: number) => void;
|
|
1483
|
+
readonly __wbg_set_listmessagesoptions_direction: (a: number, b: number) => void;
|
|
1484
|
+
readonly __wbg_set_listmessagesoptions_excludeContentTypes: (a: number, b: number, c: number) => void;
|
|
1485
|
+
readonly __wbg_set_listmessagesoptions_excludeSenderInboxIds: (a: number, b: number, c: number) => void;
|
|
1486
|
+
readonly __wbg_set_listmessagesoptions_insertedAfterNs: (a: number, b: number, c: bigint) => void;
|
|
1487
|
+
readonly __wbg_set_listmessagesoptions_insertedBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
1488
|
+
readonly __wbg_set_listmessagesoptions_kind: (a: number, b: number) => void;
|
|
1489
|
+
readonly __wbg_set_listmessagesoptions_sortBy: (a: number, b: number) => void;
|
|
1490
|
+
readonly __wbg_set_message_content: (a: number, b: number) => void;
|
|
1491
|
+
readonly __wbg_set_message_convoId: (a: number, b: number, c: number) => void;
|
|
1492
|
+
readonly __wbg_set_message_deliveryStatus: (a: number, b: number) => void;
|
|
1493
|
+
readonly __wbg_set_message_id: (a: number, b: number, c: number) => void;
|
|
1494
|
+
readonly __wbg_set_message_kind: (a: number, b: number) => void;
|
|
1495
|
+
readonly __wbg_set_message_senderInboxId: (a: number, b: number, c: number) => void;
|
|
1496
|
+
readonly __wbg_set_messagedisappearingsettings_inNs: (a: number, b: bigint) => void;
|
|
1497
|
+
readonly __wbg_set_messagewithreactions_message: (a: number, b: number) => void;
|
|
1498
|
+
readonly __wbg_set_messagewithreactions_reactions: (a: number, b: number, c: number) => void;
|
|
1499
|
+
readonly __wbg_set_permissionpolicyset_addAdminPolicy: (a: number, b: number) => void;
|
|
1500
|
+
readonly __wbg_set_permissionpolicyset_addMemberPolicy: (a: number, b: number) => void;
|
|
1501
|
+
readonly __wbg_set_permissionpolicyset_removeAdminPolicy: (a: number, b: number) => void;
|
|
1502
|
+
readonly __wbg_set_permissionpolicyset_removeMemberPolicy: (a: number, b: number) => void;
|
|
1503
|
+
readonly __wbg_set_permissionpolicyset_updateGroupDescriptionPolicy: (a: number, b: number) => void;
|
|
1504
|
+
readonly __wbg_set_permissionpolicyset_updateGroupImageUrlSquarePolicy: (a: number, b: number) => void;
|
|
1505
|
+
readonly __wbg_set_permissionpolicyset_updateGroupNamePolicy: (a: number, b: number) => void;
|
|
1506
|
+
readonly __wbg_set_permissionpolicyset_updateMessageDisappearingPolicy: (a: number, b: number) => void;
|
|
1507
|
+
readonly __wbg_set_xmtpcursor_originator_id: (a: number, b: number) => void;
|
|
1508
|
+
readonly __wbg_xmtpcursor_free: (a: number, b: number) => void;
|
|
1509
|
+
readonly conversationlistitem_new: (a: number, b: number, c: number) => number;
|
|
1510
|
+
readonly conversations_createDm: (a: number, b: any, c: number) => any;
|
|
1511
|
+
readonly conversations_createDmByInboxId: (a: number, b: number, c: number, d: number) => any;
|
|
1512
|
+
readonly conversations_createGroup: (a: number, b: number, c: number, d: number) => any;
|
|
1513
|
+
readonly conversations_createGroupByInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
1514
|
+
readonly conversations_createGroupOptimistic: (a: number, b: number) => [number, number, number];
|
|
1515
|
+
readonly conversations_findDmByTargetInboxId: (a: number, b: number, c: number) => [number, number, number];
|
|
1516
|
+
readonly conversations_findGroupById: (a: number, b: number, c: number) => [number, number, number];
|
|
1517
|
+
readonly conversations_findMessageById: (a: number, b: number, c: number) => [number, number, number];
|
|
1518
|
+
readonly conversations_getHmacKeys: (a: number) => [number, number, number];
|
|
1519
|
+
readonly conversations_list: (a: number, b: number) => [number, number, number];
|
|
1520
|
+
readonly conversations_stream: (a: number, b: any, c: number) => [number, number, number];
|
|
1521
|
+
readonly conversations_streamAllMessages: (a: number, b: any, c: number, d: number, e: number) => [number, number, number];
|
|
1522
|
+
readonly conversations_streamConsent: (a: number, b: any) => [number, number, number];
|
|
1523
|
+
readonly conversations_streamLocal: (a: number, b: number) => any;
|
|
1524
|
+
readonly conversations_streamMessageDeletions: (a: number, b: any) => [number, number, number];
|
|
1525
|
+
readonly conversations_streamPreferences: (a: number, b: any) => [number, number, number];
|
|
1526
|
+
readonly conversations_sync: (a: number) => any;
|
|
1527
|
+
readonly conversations_syncAllConversations: (a: number, b: number, c: number) => any;
|
|
1528
|
+
readonly createdmoptions_new: (a: number) => number;
|
|
1529
|
+
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;
|
|
1530
|
+
readonly grouppermissions_policySet: (a: number) => [number, number, number];
|
|
1531
|
+
readonly grouppermissions_policyType: (a: number) => [number, number, number];
|
|
1532
|
+
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;
|
|
1533
|
+
readonly listmessagesoptions_new: (a: number, b: bigint, c: number, d: bigint, e: number, f: bigint, g: number, h: number, i: number, j: number, k: number, l: number, m: number, n: number, o: number, p: number, q: number, r: bigint, s: number, t: bigint) => number;
|
|
1534
|
+
readonly message_new: (a: number, b: number, c: bigint, d: number, e: number, f: number, g: number, h: number, i: number, j: number) => number;
|
|
1535
|
+
readonly messagedisappearingsettings_new: (a: bigint, b: bigint) => number;
|
|
1536
|
+
readonly permissionpolicyset_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
1537
|
+
readonly __wbg_set_hmackey_key: (a: number, b: number, c: number) => void;
|
|
1538
|
+
readonly __wbg_set_hmackey_epoch: (a: number, b: bigint) => void;
|
|
1539
|
+
readonly __wbg_set_message_sentAtNs: (a: number, b: bigint) => void;
|
|
1540
|
+
readonly __wbg_set_messagedisappearingsettings_fromNs: (a: number, b: bigint) => void;
|
|
1541
|
+
readonly __wbg_set_xmtpcursor_sequence_id: (a: number, b: bigint) => void;
|
|
1542
|
+
readonly __wbg_get_listmessagesoptions_limit: (a: number) => [number, bigint];
|
|
1543
|
+
readonly __wbg_get_listmessagesoptions_sentAfterNs: (a: number) => [number, bigint];
|
|
1544
|
+
readonly __wbg_get_listmessagesoptions_sentBeforeNs: (a: number) => [number, bigint];
|
|
1545
|
+
readonly __wbg_get_creategroupoptions_messageDisappearingSettings: (a: number) => number;
|
|
1546
|
+
readonly __wbg_set_listmessagesoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
1547
|
+
readonly __wbg_set_listmessagesoptions_sentAfterNs: (a: number, b: number, c: bigint) => void;
|
|
1548
|
+
readonly __wbg_set_listmessagesoptions_sentBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
1549
|
+
readonly __wbg_get_hmackey_epoch: (a: number) => bigint;
|
|
1550
|
+
readonly __wbg_get_message_sentAtNs: (a: number) => bigint;
|
|
1551
|
+
readonly __wbg_get_messagedisappearingsettings_fromNs: (a: number) => bigint;
|
|
1552
|
+
readonly __wbg_get_xmtpcursor_sequence_id: (a: number) => bigint;
|
|
1553
|
+
readonly __wbg_set_creategroupoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
1404
1554
|
readonly rust_zstd_wasm_shim_calloc: (a: number, b: number) => number;
|
|
1405
1555
|
readonly rust_zstd_wasm_shim_free: (a: number) => void;
|
|
1406
1556
|
readonly rust_zstd_wasm_shim_malloc: (a: number) => number;
|
|
@@ -1409,45 +1559,47 @@ export interface InitOutput {
|
|
|
1409
1559
|
readonly rust_zstd_wasm_shim_memmove: (a: number, b: number, c: number) => number;
|
|
1410
1560
|
readonly rust_zstd_wasm_shim_memset: (a: number, b: number, c: number) => number;
|
|
1411
1561
|
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;
|
|
1562
|
+
readonly rust_sqlite_wasm_abort: () => void;
|
|
1563
|
+
readonly rust_sqlite_wasm_assert_fail: (a: number, b: number, c: number, d: number) => void;
|
|
1564
|
+
readonly rust_sqlite_wasm_calloc: (a: number, b: number) => number;
|
|
1565
|
+
readonly rust_sqlite_wasm_malloc: (a: number) => number;
|
|
1566
|
+
readonly rust_sqlite_wasm_free: (a: number) => void;
|
|
1567
|
+
readonly rust_sqlite_wasm_getentropy: (a: number, b: number) => number;
|
|
1568
|
+
readonly rust_sqlite_wasm_localtime: (a: number) => number;
|
|
1569
|
+
readonly rust_sqlite_wasm_realloc: (a: number, b: number) => number;
|
|
1570
|
+
readonly sqlite3_os_end: () => number;
|
|
1422
1571
|
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;
|
|
1572
|
+
readonly task_worker_entry_point: (a: number) => [number, number];
|
|
1430
1573
|
readonly __wbg_intounderlyingbytesource_free: (a: number, b: number) => void;
|
|
1574
|
+
readonly __wbg_intounderlyingsource_free: (a: number, b: number) => void;
|
|
1431
1575
|
readonly intounderlyingbytesource_autoAllocateChunkSize: (a: number) => number;
|
|
1432
1576
|
readonly intounderlyingbytesource_cancel: (a: number) => void;
|
|
1433
1577
|
readonly intounderlyingbytesource_pull: (a: number, b: any) => any;
|
|
1434
1578
|
readonly intounderlyingbytesource_start: (a: number, b: any) => void;
|
|
1435
1579
|
readonly intounderlyingbytesource_type: (a: number) => number;
|
|
1436
|
-
readonly
|
|
1580
|
+
readonly intounderlyingsource_cancel: (a: number) => void;
|
|
1581
|
+
readonly intounderlyingsource_pull: (a: number, b: any) => any;
|
|
1582
|
+
readonly __wbg_intounderlyingsink_free: (a: number, b: number) => void;
|
|
1583
|
+
readonly intounderlyingsink_abort: (a: number, b: any) => any;
|
|
1584
|
+
readonly intounderlyingsink_close: (a: number) => any;
|
|
1585
|
+
readonly intounderlyingsink_write: (a: number, b: any) => any;
|
|
1586
|
+
readonly wasm_bindgen__convert__closures_____invoke__hafab8b28acda63ce: (a: number, b: number) => void;
|
|
1587
|
+
readonly wasm_bindgen__closure__destroy__h83869f5b20c236a6: (a: number, b: number) => void;
|
|
1588
|
+
readonly wasm_bindgen__convert__closures_____invoke__h34df32c886f66f02: (a: number, b: number, c: any) => void;
|
|
1589
|
+
readonly wasm_bindgen__closure__destroy__h5faecc40242ea0ca: (a: number, b: number) => void;
|
|
1590
|
+
readonly wasm_bindgen__convert__closures_____invoke__h753a3e053785270d: (a: number, b: number) => void;
|
|
1591
|
+
readonly wasm_bindgen__closure__destroy__h8a0c80adf0f210e5: (a: number, b: number) => void;
|
|
1592
|
+
readonly wasm_bindgen__convert__closures_____invoke__h9011598bdd38acb2: (a: number, b: number) => void;
|
|
1593
|
+
readonly wasm_bindgen__closure__destroy__h5e0a3136249b832f: (a: number, b: number) => void;
|
|
1594
|
+
readonly wasm_bindgen__convert__closures_____invoke__h18a484e2affd7fe5: (a: number, b: number, c: any, d: any) => void;
|
|
1437
1595
|
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
1438
1596
|
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
1439
1597
|
readonly __wbindgen_exn_store: (a: number) => void;
|
|
1440
1598
|
readonly __externref_table_alloc: () => number;
|
|
1441
|
-
readonly
|
|
1599
|
+
readonly __wbindgen_externrefs: WebAssembly.Table;
|
|
1442
1600
|
readonly __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
1443
1601
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
1444
|
-
readonly __wbindgen_export_7: WebAssembly.Table;
|
|
1445
1602
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
1446
|
-
readonly wasm_bindgen__convert__closures_____invoke__h135d62b0906d3413: (a: number, b: number) => void;
|
|
1447
|
-
readonly wasm_bindgen__convert__closures_____invoke__hb3fd7a1e3a7fa14d: (a: number, b: number) => void;
|
|
1448
|
-
readonly wasm_bindgen__convert__closures_____invoke__h849ef726e44c1bb5: (a: number, b: number) => void;
|
|
1449
|
-
readonly closure7228_externref_shim: (a: number, b: number, c: any) => void;
|
|
1450
|
-
readonly closure8189_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
1451
1603
|
readonly __wbindgen_start: () => void;
|
|
1452
1604
|
}
|
|
1453
1605
|
|