@xmtp/wasm-bindings 1.6.0-dev.07065a7 → 1.6.0-dev.3656d63
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 +341 -404
- package/dist/bindings_wasm.js +493 -674
- package/dist/bindings_wasm_bg.wasm +0 -0
- package/dist/bindings_wasm_bg.wasm.d.ts +322 -327
- package/dist/version.json +3 -3
- package/package.json +1 -1
package/dist/bindings_wasm.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
export function createClient(host: string, inbox_id: string, account_identifier: Identifier, db_path?: string | null, encryption_key?: Uint8Array | null, device_sync_server_url?: string | null, device_sync_worker_mode?: DeviceSyncWorkerMode | null, log_options?: LogOptions | null, allow_offline?: boolean | null, disable_events?: boolean | null, app_version?: string | null
|
|
3
|
+
export function createClient(host: string, inbox_id: string, account_identifier: Identifier, db_path?: string | null, encryption_key?: Uint8Array | null, device_sync_server_url?: string | null, device_sync_worker_mode?: DeviceSyncWorkerMode | null, log_options?: LogOptions | null, allow_offline?: boolean | null, disable_events?: boolean | null, app_version?: string | null): Promise<Client>;
|
|
4
4
|
export function encodeMultiRemoteAttachment(multiRemoteAttachment: MultiRemoteAttachment): Uint8Array;
|
|
5
5
|
export function decodeMultiRemoteAttachment(bytes: Uint8Array): MultiRemoteAttachment;
|
|
6
6
|
export function encodeReaction(reaction: Reaction): Uint8Array;
|
|
7
7
|
export function decodeReaction(bytes: Uint8Array): Reaction;
|
|
8
|
-
export function getInboxIdForIdentifier(v3_host: string, gateway_host: string | null | undefined, accountIdentifier: Identifier): Promise<string | undefined>;
|
|
9
|
-
export function generateInboxId(accountIdentifier: Identifier): string;
|
|
10
|
-
export function inboxStateFromInboxIds(v3_host: string, gateway_host: string | null | undefined, inbox_ids: string[]): Promise<InboxState[]>;
|
|
11
8
|
export function verifySignedWithPublicKey(signature_text: string, signature_bytes: Uint8Array, public_key: Uint8Array): void;
|
|
12
|
-
export function revokeInstallationsSignatureRequest(
|
|
13
|
-
export function applySignatureRequest(
|
|
9
|
+
export function revokeInstallationsSignatureRequest(host: string, recovery_identifier: Identifier, inbox_id: string, installation_ids: Uint8Array[]): SignatureRequestHandle;
|
|
10
|
+
export function applySignatureRequest(host: string, signature_request: SignatureRequestHandle): Promise<void>;
|
|
11
|
+
export function getInboxIdForIdentifier(host: string, accountIdentifier: Identifier): Promise<string | undefined>;
|
|
12
|
+
export function generateInboxId(accountIdentifier: Identifier): string;
|
|
13
|
+
export function inboxStateFromInboxIds(host: string, inbox_ids: string[]): Promise<InboxState[]>;
|
|
14
14
|
/**
|
|
15
15
|
* Entry point invoked by JavaScript in a worker.
|
|
16
16
|
*/
|
|
@@ -148,7 +148,6 @@ export type UserPreference = { type: "Consent"; consent: Consent } | { type: "Hm
|
|
|
148
148
|
export class ApiStats {
|
|
149
149
|
private constructor();
|
|
150
150
|
free(): void;
|
|
151
|
-
[Symbol.dispose](): void;
|
|
152
151
|
upload_key_package: bigint;
|
|
153
152
|
fetch_key_package: bigint;
|
|
154
153
|
send_group_messages: bigint;
|
|
@@ -161,7 +160,6 @@ export class ApiStats {
|
|
|
161
160
|
export class Attachment {
|
|
162
161
|
private constructor();
|
|
163
162
|
free(): void;
|
|
164
|
-
[Symbol.dispose](): void;
|
|
165
163
|
get filename(): string | undefined;
|
|
166
164
|
set filename(value: string | null | undefined);
|
|
167
165
|
mimeType: string;
|
|
@@ -170,7 +168,6 @@ export class Attachment {
|
|
|
170
168
|
export class Client {
|
|
171
169
|
private constructor();
|
|
172
170
|
free(): void;
|
|
173
|
-
[Symbol.dispose](): void;
|
|
174
171
|
/**
|
|
175
172
|
* Output booleans should be zipped with the index of input identifiers
|
|
176
173
|
*/
|
|
@@ -187,6 +184,18 @@ export class Client {
|
|
|
187
184
|
uploadDebugArchive(server_url: string): Promise<string>;
|
|
188
185
|
deleteMessage(message_id: Uint8Array): number;
|
|
189
186
|
messageV2(message_id: Uint8Array): Promise<DecodedMessage>;
|
|
187
|
+
createInboxSignatureRequest(): SignatureRequestHandle | undefined;
|
|
188
|
+
addWalletSignatureRequest(new_identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
189
|
+
revokeWalletSignatureRequest(identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
190
|
+
revokeAllOtherInstallationsSignatureRequest(): Promise<SignatureRequestHandle>;
|
|
191
|
+
revokeInstallationsSignatureRequest(installation_ids: Uint8Array[]): Promise<SignatureRequestHandle>;
|
|
192
|
+
changeRecoveryIdentifierSignatureRequest(new_recovery_identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
193
|
+
applySignatureRequest(signature_request: SignatureRequestHandle): Promise<void>;
|
|
194
|
+
registerIdentity(signature_request: SignatureRequestHandle): Promise<void>;
|
|
195
|
+
signWithInstallationKey(signature_text: string): Uint8Array;
|
|
196
|
+
verifySignedWithInstallationKey(signature_text: string, signature_bytes: Uint8Array): void;
|
|
197
|
+
setConsentStates(records: Consent[]): Promise<void>;
|
|
198
|
+
getConsentState(entity_type: ConsentEntityType, entity: string): Promise<ConsentState>;
|
|
190
199
|
/**
|
|
191
200
|
*
|
|
192
201
|
* * Get the client's inbox state.
|
|
@@ -205,18 +214,6 @@ export class Client {
|
|
|
205
214
|
*
|
|
206
215
|
*/
|
|
207
216
|
getKeyPackageStatusesForInstallationIds(installation_ids: string[]): Promise<any>;
|
|
208
|
-
createInboxSignatureRequest(): SignatureRequestHandle | undefined;
|
|
209
|
-
addWalletSignatureRequest(new_identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
210
|
-
revokeWalletSignatureRequest(identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
211
|
-
revokeAllOtherInstallationsSignatureRequest(): Promise<SignatureRequestHandle>;
|
|
212
|
-
revokeInstallationsSignatureRequest(installation_ids: Uint8Array[]): Promise<SignatureRequestHandle>;
|
|
213
|
-
changeRecoveryIdentifierSignatureRequest(new_recovery_identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
214
|
-
applySignatureRequest(signature_request: SignatureRequestHandle): Promise<void>;
|
|
215
|
-
registerIdentity(signature_request: SignatureRequestHandle): Promise<void>;
|
|
216
|
-
signWithInstallationKey(signature_text: string): Uint8Array;
|
|
217
|
-
verifySignedWithInstallationKey(signature_text: string, signature_bytes: Uint8Array): void;
|
|
218
|
-
setConsentStates(records: Consent[]): Promise<void>;
|
|
219
|
-
getConsentState(entity_type: ConsentEntityType, entity: string): Promise<ConsentState>;
|
|
220
217
|
readonly accountIdentifier: Identifier;
|
|
221
218
|
readonly inboxId: string;
|
|
222
219
|
readonly isRegistered: boolean;
|
|
@@ -227,7 +224,6 @@ export class Client {
|
|
|
227
224
|
}
|
|
228
225
|
export class Consent {
|
|
229
226
|
free(): void;
|
|
230
|
-
[Symbol.dispose](): void;
|
|
231
227
|
constructor(entity_type: ConsentEntityType, state: ConsentState, entity: string);
|
|
232
228
|
entityType: ConsentEntityType;
|
|
233
229
|
state: ConsentState;
|
|
@@ -235,7 +231,6 @@ export class Consent {
|
|
|
235
231
|
}
|
|
236
232
|
export class ContentTypeId {
|
|
237
233
|
free(): void;
|
|
238
|
-
[Symbol.dispose](): void;
|
|
239
234
|
constructor(authority_id: string, type_id: string, version_major: number, version_minor: number);
|
|
240
235
|
authorityId: string;
|
|
241
236
|
typeId: string;
|
|
@@ -245,7 +240,6 @@ export class ContentTypeId {
|
|
|
245
240
|
export class Conversation {
|
|
246
241
|
private constructor();
|
|
247
242
|
free(): void;
|
|
248
|
-
[Symbol.dispose](): void;
|
|
249
243
|
consentState(): ConsentState;
|
|
250
244
|
updateConsentState(state: ConsentState): void;
|
|
251
245
|
id(): string;
|
|
@@ -303,7 +297,6 @@ export class Conversation {
|
|
|
303
297
|
export class ConversationDebugInfo {
|
|
304
298
|
private constructor();
|
|
305
299
|
free(): void;
|
|
306
|
-
[Symbol.dispose](): void;
|
|
307
300
|
epoch: bigint;
|
|
308
301
|
maybeForked: boolean;
|
|
309
302
|
forkDetails: string;
|
|
@@ -311,11 +304,10 @@ export class ConversationDebugInfo {
|
|
|
311
304
|
set isCommitLogForked(value: boolean | null | undefined);
|
|
312
305
|
localCommitLog: string;
|
|
313
306
|
remoteCommitLog: string;
|
|
314
|
-
cursor:
|
|
307
|
+
cursor: bigint;
|
|
315
308
|
}
|
|
316
309
|
export class ConversationListItem {
|
|
317
310
|
free(): void;
|
|
318
|
-
[Symbol.dispose](): void;
|
|
319
311
|
constructor(conversation: Conversation, last_message?: Message | null, is_commit_log_forked?: boolean | null);
|
|
320
312
|
conversation: Conversation;
|
|
321
313
|
get lastMessage(): Message | undefined;
|
|
@@ -326,7 +318,6 @@ export class ConversationListItem {
|
|
|
326
318
|
export class Conversations {
|
|
327
319
|
private constructor();
|
|
328
320
|
free(): void;
|
|
329
|
-
[Symbol.dispose](): void;
|
|
330
321
|
createGroupOptimistic(options?: CreateGroupOptions | null): Conversation;
|
|
331
322
|
createGroup(account_identifiers: Identifier[], options?: CreateGroupOptions | null): Promise<Conversation>;
|
|
332
323
|
createGroupByInboxIds(inbox_ids: string[], options?: CreateGroupOptions | null): Promise<Conversation>;
|
|
@@ -350,14 +341,12 @@ export class Conversations {
|
|
|
350
341
|
}
|
|
351
342
|
export class CreateDMOptions {
|
|
352
343
|
free(): void;
|
|
353
|
-
[Symbol.dispose](): void;
|
|
354
344
|
constructor(message_disappearing_settings?: MessageDisappearingSettings | null);
|
|
355
345
|
get messageDisappearingSettings(): MessageDisappearingSettings | undefined;
|
|
356
346
|
set messageDisappearingSettings(value: MessageDisappearingSettings | null | undefined);
|
|
357
347
|
}
|
|
358
348
|
export class CreateGroupOptions {
|
|
359
349
|
free(): void;
|
|
360
|
-
[Symbol.dispose](): void;
|
|
361
350
|
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);
|
|
362
351
|
get permissions(): GroupPermissionsOptions | undefined;
|
|
363
352
|
set permissions(value: GroupPermissionsOptions | null | undefined);
|
|
@@ -375,7 +364,6 @@ export class CreateGroupOptions {
|
|
|
375
364
|
export class DecodedMessage {
|
|
376
365
|
private constructor();
|
|
377
366
|
free(): void;
|
|
378
|
-
[Symbol.dispose](): void;
|
|
379
367
|
id: Uint8Array;
|
|
380
368
|
sent_at_ns: bigint;
|
|
381
369
|
kind: GroupMessageKind;
|
|
@@ -393,7 +381,6 @@ export class DecodedMessage {
|
|
|
393
381
|
export class DecodedMessageContent {
|
|
394
382
|
private constructor();
|
|
395
383
|
free(): void;
|
|
396
|
-
[Symbol.dispose](): void;
|
|
397
384
|
asText(): TextContent | undefined;
|
|
398
385
|
asReply(): EnrichedReply | undefined;
|
|
399
386
|
asReaction(): ReactionPayload | undefined;
|
|
@@ -409,7 +396,6 @@ export class DecodedMessageContent {
|
|
|
409
396
|
}
|
|
410
397
|
export class EncodedContent {
|
|
411
398
|
free(): void;
|
|
412
|
-
[Symbol.dispose](): void;
|
|
413
399
|
constructor(type: ContentTypeId | null | undefined, parameters: any, fallback: string | null | undefined, compression: number | null | undefined, content: Uint8Array);
|
|
414
400
|
get type(): ContentTypeId | undefined;
|
|
415
401
|
set type(value: ContentTypeId | null | undefined);
|
|
@@ -423,14 +409,12 @@ export class EncodedContent {
|
|
|
423
409
|
export class EnrichedReply {
|
|
424
410
|
private constructor();
|
|
425
411
|
free(): void;
|
|
426
|
-
[Symbol.dispose](): void;
|
|
427
412
|
readonly referenceId: string;
|
|
428
413
|
readonly content: DecodedMessageContent;
|
|
429
414
|
readonly inReplyTo: DecodedMessage | undefined;
|
|
430
415
|
}
|
|
431
416
|
export class GroupMember {
|
|
432
417
|
free(): void;
|
|
433
|
-
[Symbol.dispose](): void;
|
|
434
418
|
constructor(inboxId: string, accountIdentifiers: Identifier[], installationIds: string[], permissionLevel: PermissionLevel, consentState: ConsentState);
|
|
435
419
|
inboxId: string;
|
|
436
420
|
accountIdentifiers: Identifier[];
|
|
@@ -441,21 +425,18 @@ export class GroupMember {
|
|
|
441
425
|
export class GroupMetadata {
|
|
442
426
|
private constructor();
|
|
443
427
|
free(): void;
|
|
444
|
-
[Symbol.dispose](): void;
|
|
445
428
|
creatorInboxId(): string;
|
|
446
429
|
conversationType(): string;
|
|
447
430
|
}
|
|
448
431
|
export class GroupPermissions {
|
|
449
432
|
private constructor();
|
|
450
433
|
free(): void;
|
|
451
|
-
[Symbol.dispose](): void;
|
|
452
434
|
policyType(): GroupPermissionsOptions;
|
|
453
435
|
policySet(): PermissionPolicySet;
|
|
454
436
|
}
|
|
455
437
|
export class GroupUpdated {
|
|
456
438
|
private constructor();
|
|
457
439
|
free(): void;
|
|
458
|
-
[Symbol.dispose](): void;
|
|
459
440
|
initiatedByInboxId: string;
|
|
460
441
|
addedInboxes: Inbox[];
|
|
461
442
|
removedInboxes: Inbox[];
|
|
@@ -464,14 +445,12 @@ export class GroupUpdated {
|
|
|
464
445
|
export class HmacKey {
|
|
465
446
|
private constructor();
|
|
466
447
|
free(): void;
|
|
467
|
-
[Symbol.dispose](): void;
|
|
468
448
|
key: Uint8Array;
|
|
469
449
|
epoch: bigint;
|
|
470
450
|
}
|
|
471
451
|
export class IdentityStats {
|
|
472
452
|
private constructor();
|
|
473
453
|
free(): void;
|
|
474
|
-
[Symbol.dispose](): void;
|
|
475
454
|
publish_identity_update: bigint;
|
|
476
455
|
get_identity_updates_v2: bigint;
|
|
477
456
|
get_inbox_ids: bigint;
|
|
@@ -480,12 +459,10 @@ export class IdentityStats {
|
|
|
480
459
|
export class Inbox {
|
|
481
460
|
private constructor();
|
|
482
461
|
free(): void;
|
|
483
|
-
[Symbol.dispose](): void;
|
|
484
462
|
inboxId: string;
|
|
485
463
|
}
|
|
486
464
|
export class InboxState {
|
|
487
465
|
free(): void;
|
|
488
|
-
[Symbol.dispose](): void;
|
|
489
466
|
constructor(inbox_id: string, recovery_identifier: Identifier, installations: Installation[], account_identifiers: Identifier[]);
|
|
490
467
|
inboxId: string;
|
|
491
468
|
recoveryIdentifier: Identifier;
|
|
@@ -494,7 +471,6 @@ export class InboxState {
|
|
|
494
471
|
}
|
|
495
472
|
export class Installation {
|
|
496
473
|
free(): void;
|
|
497
|
-
[Symbol.dispose](): void;
|
|
498
474
|
constructor(bytes: Uint8Array, id: string, client_timestamp_ns?: bigint | null);
|
|
499
475
|
bytes: Uint8Array;
|
|
500
476
|
id: string;
|
|
@@ -504,7 +480,6 @@ export class Installation {
|
|
|
504
480
|
export class IntoUnderlyingByteSource {
|
|
505
481
|
private constructor();
|
|
506
482
|
free(): void;
|
|
507
|
-
[Symbol.dispose](): void;
|
|
508
483
|
start(controller: ReadableByteStreamController): void;
|
|
509
484
|
pull(controller: ReadableByteStreamController): Promise<any>;
|
|
510
485
|
cancel(): void;
|
|
@@ -514,7 +489,6 @@ export class IntoUnderlyingByteSource {
|
|
|
514
489
|
export class IntoUnderlyingSink {
|
|
515
490
|
private constructor();
|
|
516
491
|
free(): void;
|
|
517
|
-
[Symbol.dispose](): void;
|
|
518
492
|
write(chunk: any): Promise<any>;
|
|
519
493
|
close(): Promise<any>;
|
|
520
494
|
abort(reason: any): Promise<any>;
|
|
@@ -522,14 +496,12 @@ export class IntoUnderlyingSink {
|
|
|
522
496
|
export class IntoUnderlyingSource {
|
|
523
497
|
private constructor();
|
|
524
498
|
free(): void;
|
|
525
|
-
[Symbol.dispose](): void;
|
|
526
499
|
pull(controller: ReadableStreamDefaultController): Promise<any>;
|
|
527
500
|
cancel(): void;
|
|
528
501
|
}
|
|
529
502
|
export class KeyPackageStatus {
|
|
530
503
|
private constructor();
|
|
531
504
|
free(): void;
|
|
532
|
-
[Symbol.dispose](): void;
|
|
533
505
|
get lifetime(): Lifetime | undefined;
|
|
534
506
|
set lifetime(value: Lifetime | null | undefined);
|
|
535
507
|
get validationError(): string | undefined;
|
|
@@ -538,13 +510,11 @@ export class KeyPackageStatus {
|
|
|
538
510
|
export class Lifetime {
|
|
539
511
|
private constructor();
|
|
540
512
|
free(): void;
|
|
541
|
-
[Symbol.dispose](): void;
|
|
542
513
|
not_before: bigint;
|
|
543
514
|
not_after: bigint;
|
|
544
515
|
}
|
|
545
516
|
export class ListConversationsOptions {
|
|
546
517
|
free(): void;
|
|
547
|
-
[Symbol.dispose](): void;
|
|
548
518
|
constructor(consent_states?: any[] | null, conversation_type?: ConversationType | null, created_after_ns?: bigint | null, created_before_ns?: bigint | null, include_duplicate_dms?: boolean | null, limit?: bigint | null);
|
|
549
519
|
get consentStates(): any[] | undefined;
|
|
550
520
|
set consentStates(value: any[] | null | undefined);
|
|
@@ -561,7 +531,6 @@ export class ListConversationsOptions {
|
|
|
561
531
|
}
|
|
562
532
|
export class ListMessagesOptions {
|
|
563
533
|
free(): void;
|
|
564
|
-
[Symbol.dispose](): void;
|
|
565
534
|
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);
|
|
566
535
|
get contentTypes(): any[] | undefined;
|
|
567
536
|
set contentTypes(value: any[] | null | undefined);
|
|
@@ -587,7 +556,6 @@ export class ListMessagesOptions {
|
|
|
587
556
|
*/
|
|
588
557
|
export class LogOptions {
|
|
589
558
|
free(): void;
|
|
590
|
-
[Symbol.dispose](): void;
|
|
591
559
|
constructor(structured: boolean, performance: boolean, level?: LogLevel | null);
|
|
592
560
|
/**
|
|
593
561
|
* enable structured JSON logging to stdout.Useful for third-party log viewers
|
|
@@ -608,7 +576,6 @@ export class LogOptions {
|
|
|
608
576
|
}
|
|
609
577
|
export class Message {
|
|
610
578
|
free(): void;
|
|
611
|
-
[Symbol.dispose](): void;
|
|
612
579
|
constructor(id: string, sent_at_ns: bigint, convo_id: string, sender_inbox_id: string, content: EncodedContent, kind: GroupMessageKind, delivery_status: DeliveryStatus);
|
|
613
580
|
id: string;
|
|
614
581
|
sentAtNs: bigint;
|
|
@@ -620,7 +587,6 @@ export class Message {
|
|
|
620
587
|
}
|
|
621
588
|
export class MessageDisappearingSettings {
|
|
622
589
|
free(): void;
|
|
623
|
-
[Symbol.dispose](): void;
|
|
624
590
|
constructor(from_ns: bigint, in_ns: bigint);
|
|
625
591
|
fromNs: bigint;
|
|
626
592
|
inNs: bigint;
|
|
@@ -628,14 +594,12 @@ export class MessageDisappearingSettings {
|
|
|
628
594
|
export class MessageWithReactions {
|
|
629
595
|
private constructor();
|
|
630
596
|
free(): void;
|
|
631
|
-
[Symbol.dispose](): void;
|
|
632
597
|
message: Message;
|
|
633
598
|
reactions: Message[];
|
|
634
599
|
}
|
|
635
600
|
export class MetadataFieldChange {
|
|
636
601
|
private constructor();
|
|
637
602
|
free(): void;
|
|
638
|
-
[Symbol.dispose](): void;
|
|
639
603
|
fieldName: string;
|
|
640
604
|
get oldValue(): string | undefined;
|
|
641
605
|
set oldValue(value: string | null | undefined);
|
|
@@ -644,14 +608,12 @@ export class MetadataFieldChange {
|
|
|
644
608
|
}
|
|
645
609
|
export class MultiRemoteAttachment {
|
|
646
610
|
free(): void;
|
|
647
|
-
[Symbol.dispose](): void;
|
|
648
611
|
constructor(attachments: RemoteAttachmentInfo[]);
|
|
649
612
|
attachments: RemoteAttachmentInfo[];
|
|
650
613
|
}
|
|
651
614
|
export class Opfs {
|
|
652
615
|
private constructor();
|
|
653
616
|
free(): void;
|
|
654
|
-
[Symbol.dispose](): void;
|
|
655
617
|
static init_sqlite_opfs(): Promise<void>;
|
|
656
618
|
/**
|
|
657
619
|
* Check if the global OPFS object has been initialized
|
|
@@ -695,11 +657,9 @@ export class Opfs {
|
|
|
695
657
|
export class PasskeySignature {
|
|
696
658
|
private constructor();
|
|
697
659
|
free(): void;
|
|
698
|
-
[Symbol.dispose](): void;
|
|
699
660
|
}
|
|
700
661
|
export class PermissionPolicySet {
|
|
701
662
|
free(): void;
|
|
702
|
-
[Symbol.dispose](): void;
|
|
703
663
|
constructor(add_member_policy: PermissionPolicy, remove_member_policy: PermissionPolicy, add_admin_policy: PermissionPolicy, remove_admin_policy: PermissionPolicy, update_group_name_policy: PermissionPolicy, update_group_description_policy: PermissionPolicy, update_group_image_url_square_policy: PermissionPolicy, update_message_disappearing_policy: PermissionPolicy);
|
|
704
664
|
addMemberPolicy: PermissionPolicy;
|
|
705
665
|
removeMemberPolicy: PermissionPolicy;
|
|
@@ -712,7 +672,6 @@ export class PermissionPolicySet {
|
|
|
712
672
|
}
|
|
713
673
|
export class Reaction {
|
|
714
674
|
free(): void;
|
|
715
|
-
[Symbol.dispose](): void;
|
|
716
675
|
constructor(reference: string, referenceInboxId: string, action: ReactionAction, content: string, schema: ReactionSchema);
|
|
717
676
|
reference: string;
|
|
718
677
|
referenceInboxId: string;
|
|
@@ -723,7 +682,6 @@ export class Reaction {
|
|
|
723
682
|
export class ReactionPayload {
|
|
724
683
|
private constructor();
|
|
725
684
|
free(): void;
|
|
726
|
-
[Symbol.dispose](): void;
|
|
727
685
|
reference: string;
|
|
728
686
|
referenceInboxId: string;
|
|
729
687
|
action: ReactionActionPayload;
|
|
@@ -733,12 +691,10 @@ export class ReactionPayload {
|
|
|
733
691
|
export class ReadReceipt {
|
|
734
692
|
private constructor();
|
|
735
693
|
free(): void;
|
|
736
|
-
[Symbol.dispose](): void;
|
|
737
694
|
}
|
|
738
695
|
export class RemoteAttachment {
|
|
739
696
|
private constructor();
|
|
740
697
|
free(): void;
|
|
741
|
-
[Symbol.dispose](): void;
|
|
742
698
|
url: string;
|
|
743
699
|
contentDigest: string;
|
|
744
700
|
secret: Uint8Array;
|
|
@@ -751,7 +707,6 @@ export class RemoteAttachment {
|
|
|
751
707
|
}
|
|
752
708
|
export class RemoteAttachmentInfo {
|
|
753
709
|
free(): void;
|
|
754
|
-
[Symbol.dispose](): void;
|
|
755
710
|
constructor(secret: Uint8Array, contentDigest: string, nonce: Uint8Array, scheme: string, url: string, salt: Uint8Array, contentLength?: number | null, filename?: string | null);
|
|
756
711
|
secret: Uint8Array;
|
|
757
712
|
contentDigest: string;
|
|
@@ -767,13 +722,11 @@ export class RemoteAttachmentInfo {
|
|
|
767
722
|
export class SendMessageOpts {
|
|
768
723
|
private constructor();
|
|
769
724
|
free(): void;
|
|
770
|
-
[Symbol.dispose](): void;
|
|
771
725
|
shouldPush: boolean;
|
|
772
726
|
}
|
|
773
727
|
export class SignatureRequestHandle {
|
|
774
728
|
private constructor();
|
|
775
729
|
free(): void;
|
|
776
|
-
[Symbol.dispose](): void;
|
|
777
730
|
signatureText(): Promise<string>;
|
|
778
731
|
addEcdsaSignature(signature_bytes: Uint8Array): Promise<void>;
|
|
779
732
|
addPasskeySignature(signature: PasskeySignature): Promise<void>;
|
|
@@ -782,7 +735,6 @@ export class SignatureRequestHandle {
|
|
|
782
735
|
export class StreamCloser {
|
|
783
736
|
private constructor();
|
|
784
737
|
free(): void;
|
|
785
|
-
[Symbol.dispose](): void;
|
|
786
738
|
/**
|
|
787
739
|
* Signal the stream to end
|
|
788
740
|
* Does not wait for the stream to end.
|
|
@@ -803,13 +755,11 @@ export class StreamCloser {
|
|
|
803
755
|
export class TextContent {
|
|
804
756
|
private constructor();
|
|
805
757
|
free(): void;
|
|
806
|
-
[Symbol.dispose](): void;
|
|
807
758
|
content: string;
|
|
808
759
|
}
|
|
809
760
|
export class TransactionMetadata {
|
|
810
761
|
private constructor();
|
|
811
762
|
free(): void;
|
|
812
|
-
[Symbol.dispose](): void;
|
|
813
763
|
transactionType: string;
|
|
814
764
|
currency: string;
|
|
815
765
|
amount: number;
|
|
@@ -820,7 +770,6 @@ export class TransactionMetadata {
|
|
|
820
770
|
export class TransactionReference {
|
|
821
771
|
private constructor();
|
|
822
772
|
free(): void;
|
|
823
|
-
[Symbol.dispose](): void;
|
|
824
773
|
get namespace(): string | undefined;
|
|
825
774
|
set namespace(value: string | null | undefined);
|
|
826
775
|
networkId: string;
|
|
@@ -828,82 +777,17 @@ export class TransactionReference {
|
|
|
828
777
|
get metadata(): TransactionMetadata | undefined;
|
|
829
778
|
set metadata(value: TransactionMetadata | null | undefined);
|
|
830
779
|
}
|
|
831
|
-
export class XmtpCursor {
|
|
832
|
-
private constructor();
|
|
833
|
-
free(): void;
|
|
834
|
-
[Symbol.dispose](): void;
|
|
835
|
-
originator_id: number;
|
|
836
|
-
sequence_id: bigint;
|
|
837
|
-
}
|
|
838
780
|
|
|
839
781
|
export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
|
|
840
782
|
|
|
841
783
|
export interface InitOutput {
|
|
842
784
|
readonly memory: WebAssembly.Memory;
|
|
843
|
-
readonly
|
|
844
|
-
readonly
|
|
845
|
-
readonly
|
|
846
|
-
readonly
|
|
847
|
-
readonly
|
|
848
|
-
readonly
|
|
849
|
-
readonly decodedmessagecontent_asRemoteAttachment: (a: number) => number;
|
|
850
|
-
readonly decodedmessagecontent_asMultiRemoteAttachment: (a: number) => number;
|
|
851
|
-
readonly decodedmessagecontent_asTransactionReference: (a: number) => number;
|
|
852
|
-
readonly decodedmessagecontent_asGroupUpdated: (a: number) => number;
|
|
853
|
-
readonly decodedmessagecontent_asReadReceipt: (a: number) => number;
|
|
854
|
-
readonly decodedmessagecontent_asWalletSendCalls: (a: number) => [number, number, number];
|
|
855
|
-
readonly decodedmessagecontent_asCustom: (a: number) => number;
|
|
856
|
-
readonly __wbg_enrichedreply_free: (a: number, b: number) => void;
|
|
857
|
-
readonly enrichedreply_referenceId: (a: number) => [number, number];
|
|
858
|
-
readonly enrichedreply_content: (a: number) => number;
|
|
859
|
-
readonly enrichedreply_inReplyTo: (a: number) => number;
|
|
860
|
-
readonly __wbg_contenttypeid_free: (a: number, b: number) => void;
|
|
861
|
-
readonly __wbg_get_contenttypeid_authorityId: (a: number) => [number, number];
|
|
862
|
-
readonly __wbg_set_contenttypeid_authorityId: (a: number, b: number, c: number) => void;
|
|
863
|
-
readonly __wbg_get_contenttypeid_typeId: (a: number) => [number, number];
|
|
864
|
-
readonly __wbg_set_contenttypeid_typeId: (a: number, b: number, c: number) => void;
|
|
865
|
-
readonly __wbg_get_contenttypeid_versionMajor: (a: number) => number;
|
|
866
|
-
readonly __wbg_set_contenttypeid_versionMajor: (a: number, b: number) => void;
|
|
867
|
-
readonly __wbg_get_contenttypeid_versionMinor: (a: number) => number;
|
|
868
|
-
readonly __wbg_set_contenttypeid_versionMinor: (a: number, b: number) => void;
|
|
869
|
-
readonly contenttypeid_new: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
870
|
-
readonly __wbg_encodedcontent_free: (a: number, b: number) => void;
|
|
871
|
-
readonly __wbg_get_encodedcontent_type: (a: number) => number;
|
|
872
|
-
readonly __wbg_set_encodedcontent_type: (a: number, b: number) => void;
|
|
873
|
-
readonly __wbg_get_encodedcontent_parameters: (a: number) => any;
|
|
874
|
-
readonly __wbg_set_encodedcontent_parameters: (a: number, b: any) => void;
|
|
875
|
-
readonly __wbg_get_encodedcontent_fallback: (a: number) => [number, number];
|
|
876
|
-
readonly __wbg_set_encodedcontent_fallback: (a: number, b: number, c: number) => void;
|
|
877
|
-
readonly __wbg_get_encodedcontent_compression: (a: number) => number;
|
|
878
|
-
readonly __wbg_set_encodedcontent_compression: (a: number, b: number) => void;
|
|
879
|
-
readonly __wbg_get_encodedcontent_content: (a: number) => any;
|
|
880
|
-
readonly __wbg_set_encodedcontent_content: (a: number, b: any) => void;
|
|
881
|
-
readonly encodedcontent_new: (a: number, b: any, c: number, d: number, e: number, f: any) => number;
|
|
882
|
-
readonly __wbg_decodedmessage_free: (a: number, b: number) => void;
|
|
883
|
-
readonly __wbg_get_decodedmessage_id: (a: number) => [number, number];
|
|
884
|
-
readonly __wbg_set_decodedmessage_id: (a: number, b: number, c: number) => void;
|
|
885
|
-
readonly __wbg_get_decodedmessage_sent_at_ns: (a: number) => bigint;
|
|
886
|
-
readonly __wbg_set_decodedmessage_sent_at_ns: (a: number, b: bigint) => void;
|
|
887
|
-
readonly __wbg_get_decodedmessage_kind: (a: number) => number;
|
|
888
|
-
readonly __wbg_set_decodedmessage_kind: (a: number, b: number) => void;
|
|
889
|
-
readonly __wbg_get_decodedmessage_sender_installation_id: (a: number) => [number, number];
|
|
890
|
-
readonly __wbg_set_decodedmessage_sender_installation_id: (a: number, b: number, c: number) => void;
|
|
891
|
-
readonly __wbg_get_decodedmessage_sender_inbox_id: (a: number) => [number, number];
|
|
892
|
-
readonly __wbg_set_decodedmessage_sender_inbox_id: (a: number, b: number, c: number) => void;
|
|
893
|
-
readonly __wbg_get_decodedmessage_content_type: (a: number) => number;
|
|
894
|
-
readonly __wbg_set_decodedmessage_content_type: (a: number, b: number) => void;
|
|
895
|
-
readonly __wbg_get_decodedmessage_conversation_id: (a: number) => [number, number];
|
|
896
|
-
readonly __wbg_set_decodedmessage_conversation_id: (a: number, b: number, c: number) => void;
|
|
897
|
-
readonly __wbg_get_decodedmessage_content: (a: number) => number;
|
|
898
|
-
readonly __wbg_set_decodedmessage_content: (a: number, b: number) => void;
|
|
899
|
-
readonly __wbg_get_decodedmessage_fallback_text: (a: number) => [number, number];
|
|
900
|
-
readonly __wbg_set_decodedmessage_fallback_text: (a: number, b: number, c: number) => void;
|
|
901
|
-
readonly __wbg_get_decodedmessage_reactions: (a: number) => [number, number];
|
|
902
|
-
readonly __wbg_set_decodedmessage_reactions: (a: number, b: number, c: number) => void;
|
|
903
|
-
readonly __wbg_get_decodedmessage_delivery_status: (a: number) => number;
|
|
904
|
-
readonly __wbg_set_decodedmessage_delivery_status: (a: number, b: number) => void;
|
|
905
|
-
readonly __wbg_get_decodedmessage_num_replies: (a: number) => bigint;
|
|
906
|
-
readonly __wbg_set_decodedmessage_num_replies: (a: number, b: bigint) => void;
|
|
785
|
+
readonly __wbg_streamcloser_free: (a: number, b: number) => void;
|
|
786
|
+
readonly streamcloser_end: (a: number) => void;
|
|
787
|
+
readonly streamcloser_endAndWait: (a: number) => any;
|
|
788
|
+
readonly streamcloser_waitForReady: (a: number) => any;
|
|
789
|
+
readonly streamcloser_isClosed: (a: number) => number;
|
|
790
|
+
readonly __wbg_readreceipt_free: (a: number, b: number) => void;
|
|
907
791
|
readonly __wbg_permissionpolicyset_free: (a: number, b: number) => void;
|
|
908
792
|
readonly __wbg_get_permissionpolicyset_addMemberPolicy: (a: number) => number;
|
|
909
793
|
readonly __wbg_set_permissionpolicyset_addMemberPolicy: (a: number, b: number) => void;
|
|
@@ -934,7 +818,7 @@ export interface InitOutput {
|
|
|
934
818
|
readonly __wbg_get_logoptions_level: (a: number) => number;
|
|
935
819
|
readonly __wbg_set_logoptions_level: (a: number, b: number) => void;
|
|
936
820
|
readonly logoptions_new: (a: number, b: number, c: number) => number;
|
|
937
|
-
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
|
|
821
|
+
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) => any;
|
|
938
822
|
readonly client_accountIdentifier: (a: number) => any;
|
|
939
823
|
readonly client_inboxId: (a: number) => [number, number];
|
|
940
824
|
readonly client_isRegistered: (a: number) => number;
|
|
@@ -955,159 +839,6 @@ export interface InitOutput {
|
|
|
955
839
|
readonly client_uploadDebugArchive: (a: number, b: number, c: number) => any;
|
|
956
840
|
readonly client_deleteMessage: (a: number, b: number, c: number) => [number, number, number];
|
|
957
841
|
readonly client_messageV2: (a: number, b: number, c: number) => any;
|
|
958
|
-
readonly __wbg_readreceipt_free: (a: number, b: number) => void;
|
|
959
|
-
readonly __wbg_remoteattachment_free: (a: number, b: number) => void;
|
|
960
|
-
readonly __wbg_get_remoteattachment_url: (a: number) => [number, number];
|
|
961
|
-
readonly __wbg_get_remoteattachment_contentDigest: (a: number) => [number, number];
|
|
962
|
-
readonly __wbg_get_remoteattachment_secret: (a: number) => [number, number];
|
|
963
|
-
readonly __wbg_get_remoteattachment_salt: (a: number) => [number, number];
|
|
964
|
-
readonly __wbg_set_remoteattachment_salt: (a: number, b: number, c: number) => void;
|
|
965
|
-
readonly __wbg_get_remoteattachment_nonce: (a: number) => [number, number];
|
|
966
|
-
readonly __wbg_set_remoteattachment_nonce: (a: number, b: number, c: number) => void;
|
|
967
|
-
readonly __wbg_get_remoteattachment_scheme: (a: number) => [number, number];
|
|
968
|
-
readonly __wbg_get_remoteattachment_filename: (a: number) => [number, number];
|
|
969
|
-
readonly __wbg_set_remoteattachment_filename: (a: number, b: number, c: number) => void;
|
|
970
|
-
readonly __wbg_listconversationsoptions_free: (a: number, b: number) => void;
|
|
971
|
-
readonly __wbg_get_listconversationsoptions_consentStates: (a: number) => [number, number];
|
|
972
|
-
readonly __wbg_set_listconversationsoptions_consentStates: (a: number, b: number, c: number) => void;
|
|
973
|
-
readonly __wbg_get_listconversationsoptions_conversationType: (a: number) => number;
|
|
974
|
-
readonly __wbg_set_listconversationsoptions_conversationType: (a: number, b: number) => void;
|
|
975
|
-
readonly __wbg_get_listconversationsoptions_createdAfterNs: (a: number) => [number, bigint];
|
|
976
|
-
readonly __wbg_set_listconversationsoptions_createdAfterNs: (a: number, b: number, c: bigint) => void;
|
|
977
|
-
readonly __wbg_get_listconversationsoptions_createdBeforeNs: (a: number) => [number, bigint];
|
|
978
|
-
readonly __wbg_set_listconversationsoptions_createdBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
979
|
-
readonly __wbg_get_listconversationsoptions_includeDuplicateDms: (a: number) => number;
|
|
980
|
-
readonly __wbg_set_listconversationsoptions_includeDuplicateDms: (a: number, b: number) => void;
|
|
981
|
-
readonly __wbg_get_listconversationsoptions_limit: (a: number) => [number, bigint];
|
|
982
|
-
readonly __wbg_set_listconversationsoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
983
|
-
readonly listconversationsoptions_new: (a: number, b: number, c: number, d: number, e: bigint, f: number, g: bigint, h: number, i: number, j: bigint) => number;
|
|
984
|
-
readonly __wbg_messagedisappearingsettings_free: (a: number, b: number) => void;
|
|
985
|
-
readonly __wbg_get_messagedisappearingsettings_inNs: (a: number) => bigint;
|
|
986
|
-
readonly __wbg_set_messagedisappearingsettings_inNs: (a: number, b: bigint) => void;
|
|
987
|
-
readonly messagedisappearingsettings_new: (a: bigint, b: bigint) => number;
|
|
988
|
-
readonly __wbg_xmtpcursor_free: (a: number, b: number) => void;
|
|
989
|
-
readonly __wbg_get_xmtpcursor_originator_id: (a: number) => number;
|
|
990
|
-
readonly __wbg_set_xmtpcursor_originator_id: (a: number, b: number) => void;
|
|
991
|
-
readonly __wbg_conversationdebuginfo_free: (a: number, b: number) => void;
|
|
992
|
-
readonly __wbg_get_conversationdebuginfo_epoch: (a: number) => bigint;
|
|
993
|
-
readonly __wbg_set_conversationdebuginfo_epoch: (a: number, b: bigint) => void;
|
|
994
|
-
readonly __wbg_get_conversationdebuginfo_maybeForked: (a: number) => number;
|
|
995
|
-
readonly __wbg_set_conversationdebuginfo_maybeForked: (a: number, b: number) => void;
|
|
996
|
-
readonly __wbg_get_conversationdebuginfo_forkDetails: (a: number) => [number, number];
|
|
997
|
-
readonly __wbg_set_conversationdebuginfo_forkDetails: (a: number, b: number, c: number) => void;
|
|
998
|
-
readonly __wbg_get_conversationdebuginfo_isCommitLogForked: (a: number) => number;
|
|
999
|
-
readonly __wbg_set_conversationdebuginfo_isCommitLogForked: (a: number, b: number) => void;
|
|
1000
|
-
readonly __wbg_get_conversationdebuginfo_localCommitLog: (a: number) => [number, number];
|
|
1001
|
-
readonly __wbg_set_conversationdebuginfo_localCommitLog: (a: number, b: number, c: number) => void;
|
|
1002
|
-
readonly __wbg_get_conversationdebuginfo_remoteCommitLog: (a: number) => [number, number];
|
|
1003
|
-
readonly __wbg_set_conversationdebuginfo_remoteCommitLog: (a: number, b: number, c: number) => void;
|
|
1004
|
-
readonly __wbg_get_conversationdebuginfo_cursor: (a: number) => [number, number];
|
|
1005
|
-
readonly __wbg_set_conversationdebuginfo_cursor: (a: number, b: number, c: number) => void;
|
|
1006
|
-
readonly __wbg_creategroupoptions_free: (a: number, b: number) => void;
|
|
1007
|
-
readonly __wbg_get_creategroupoptions_permissions: (a: number) => number;
|
|
1008
|
-
readonly __wbg_set_creategroupoptions_permissions: (a: number, b: number) => void;
|
|
1009
|
-
readonly __wbg_get_creategroupoptions_groupName: (a: number) => [number, number];
|
|
1010
|
-
readonly __wbg_set_creategroupoptions_groupName: (a: number, b: number, c: number) => void;
|
|
1011
|
-
readonly __wbg_get_creategroupoptions_groupImageUrlSquare: (a: number) => [number, number];
|
|
1012
|
-
readonly __wbg_set_creategroupoptions_groupImageUrlSquare: (a: number, b: number, c: number) => void;
|
|
1013
|
-
readonly __wbg_get_creategroupoptions_groupDescription: (a: number) => [number, number];
|
|
1014
|
-
readonly __wbg_set_creategroupoptions_groupDescription: (a: number, b: number, c: number) => void;
|
|
1015
|
-
readonly __wbg_get_creategroupoptions_customPermissionPolicySet: (a: number) => number;
|
|
1016
|
-
readonly __wbg_set_creategroupoptions_customPermissionPolicySet: (a: number, b: number) => void;
|
|
1017
|
-
readonly creategroupoptions_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => number;
|
|
1018
|
-
readonly __wbg_createdmoptions_free: (a: number, b: number) => void;
|
|
1019
|
-
readonly __wbg_get_createdmoptions_messageDisappearingSettings: (a: number) => number;
|
|
1020
|
-
readonly __wbg_set_createdmoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
1021
|
-
readonly createdmoptions_new: (a: number) => number;
|
|
1022
|
-
readonly __wbg_hmackey_free: (a: number, b: number) => void;
|
|
1023
|
-
readonly __wbg_get_hmackey_key: (a: number) => [number, number];
|
|
1024
|
-
readonly __wbg_conversationlistitem_free: (a: number, b: number) => void;
|
|
1025
|
-
readonly __wbg_get_conversationlistitem_conversation: (a: number) => number;
|
|
1026
|
-
readonly __wbg_set_conversationlistitem_conversation: (a: number, b: number) => void;
|
|
1027
|
-
readonly __wbg_get_conversationlistitem_lastMessage: (a: number) => number;
|
|
1028
|
-
readonly __wbg_set_conversationlistitem_lastMessage: (a: number, b: number) => void;
|
|
1029
|
-
readonly __wbg_get_conversationlistitem_isCommitLogForked: (a: number) => number;
|
|
1030
|
-
readonly __wbg_set_conversationlistitem_isCommitLogForked: (a: number, b: number) => void;
|
|
1031
|
-
readonly conversationlistitem_new: (a: number, b: number, c: number) => number;
|
|
1032
|
-
readonly __wbg_conversations_free: (a: number, b: number) => void;
|
|
1033
|
-
readonly conversations_createGroupOptimistic: (a: number, b: number) => [number, number, number];
|
|
1034
|
-
readonly conversations_createGroup: (a: number, b: number, c: number, d: number) => any;
|
|
1035
|
-
readonly conversations_createGroupByInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
1036
|
-
readonly conversations_createDm: (a: number, b: any, c: number) => any;
|
|
1037
|
-
readonly conversations_createDmByInboxId: (a: number, b: number, c: number, d: number) => any;
|
|
1038
|
-
readonly conversations_findGroupById: (a: number, b: number, c: number) => [number, number, number];
|
|
1039
|
-
readonly conversations_findDmByTargetInboxId: (a: number, b: number, c: number) => [number, number, number];
|
|
1040
|
-
readonly conversations_findMessageById: (a: number, b: number, c: number) => [number, number, number];
|
|
1041
|
-
readonly conversations_sync: (a: number) => any;
|
|
1042
|
-
readonly conversations_syncAllConversations: (a: number, b: number, c: number) => any;
|
|
1043
|
-
readonly conversations_list: (a: number, b: number) => [number, number, number];
|
|
1044
|
-
readonly conversations_getHmacKeys: (a: number) => [number, number, number];
|
|
1045
|
-
readonly conversations_streamLocal: (a: number, b: number) => any;
|
|
1046
|
-
readonly conversations_stream: (a: number, b: any, c: number) => [number, number, number];
|
|
1047
|
-
readonly conversations_streamAllMessages: (a: number, b: any, c: number, d: number, e: number) => [number, number, number];
|
|
1048
|
-
readonly conversations_streamConsent: (a: number, b: any) => [number, number, number];
|
|
1049
|
-
readonly conversations_streamPreferences: (a: number, b: any) => [number, number, number];
|
|
1050
|
-
readonly __wbg_listmessagesoptions_free: (a: number, b: number) => void;
|
|
1051
|
-
readonly __wbg_get_listmessagesoptions_contentTypes: (a: number) => [number, number];
|
|
1052
|
-
readonly __wbg_set_listmessagesoptions_contentTypes: (a: number, b: number, c: number) => void;
|
|
1053
|
-
readonly __wbg_get_listmessagesoptions_excludeContentTypes: (a: number) => [number, number];
|
|
1054
|
-
readonly __wbg_set_listmessagesoptions_excludeContentTypes: (a: number, b: number, c: number) => void;
|
|
1055
|
-
readonly __wbg_get_listmessagesoptions_deliveryStatus: (a: number) => number;
|
|
1056
|
-
readonly __wbg_set_listmessagesoptions_deliveryStatus: (a: number, b: number) => void;
|
|
1057
|
-
readonly __wbg_get_listmessagesoptions_direction: (a: number) => number;
|
|
1058
|
-
readonly __wbg_set_listmessagesoptions_direction: (a: number, b: number) => void;
|
|
1059
|
-
readonly __wbg_get_listmessagesoptions_kind: (a: number) => number;
|
|
1060
|
-
readonly __wbg_set_listmessagesoptions_kind: (a: number, b: number) => void;
|
|
1061
|
-
readonly __wbg_get_listmessagesoptions_excludeSenderInboxIds: (a: number) => [number, number];
|
|
1062
|
-
readonly __wbg_set_listmessagesoptions_excludeSenderInboxIds: (a: number, b: number, c: number) => void;
|
|
1063
|
-
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;
|
|
1064
|
-
readonly __wbg_message_free: (a: number, b: number) => void;
|
|
1065
|
-
readonly __wbg_get_message_id: (a: number) => [number, number];
|
|
1066
|
-
readonly __wbg_set_message_id: (a: number, b: number, c: number) => void;
|
|
1067
|
-
readonly __wbg_get_message_convoId: (a: number) => [number, number];
|
|
1068
|
-
readonly __wbg_set_message_convoId: (a: number, b: number, c: number) => void;
|
|
1069
|
-
readonly __wbg_get_message_senderInboxId: (a: number) => [number, number];
|
|
1070
|
-
readonly __wbg_set_message_senderInboxId: (a: number, b: number, c: number) => void;
|
|
1071
|
-
readonly __wbg_get_message_content: (a: number) => number;
|
|
1072
|
-
readonly __wbg_set_message_content: (a: number, b: number) => void;
|
|
1073
|
-
readonly __wbg_get_message_kind: (a: number) => number;
|
|
1074
|
-
readonly __wbg_set_message_kind: (a: number, b: number) => void;
|
|
1075
|
-
readonly __wbg_get_message_deliveryStatus: (a: number) => number;
|
|
1076
|
-
readonly __wbg_set_message_deliveryStatus: (a: number, b: number) => void;
|
|
1077
|
-
readonly message_new: (a: number, b: number, c: bigint, d: number, e: number, f: number, g: number, h: number, i: number, j: number) => number;
|
|
1078
|
-
readonly __wbg_messagewithreactions_free: (a: number, b: number) => void;
|
|
1079
|
-
readonly __wbg_get_messagewithreactions_message: (a: number) => number;
|
|
1080
|
-
readonly __wbg_set_messagewithreactions_message: (a: number, b: number) => void;
|
|
1081
|
-
readonly __wbg_get_messagewithreactions_reactions: (a: number) => [number, number];
|
|
1082
|
-
readonly __wbg_set_messagewithreactions_reactions: (a: number, b: number, c: number) => void;
|
|
1083
|
-
readonly __wbg_get_creategroupoptions_messageDisappearingSettings: (a: number) => number;
|
|
1084
|
-
readonly __wbg_set_remoteattachment_url: (a: number, b: number, c: number) => void;
|
|
1085
|
-
readonly __wbg_set_remoteattachment_contentDigest: (a: number, b: number, c: number) => void;
|
|
1086
|
-
readonly __wbg_set_remoteattachment_secret: (a: number, b: number, c: number) => void;
|
|
1087
|
-
readonly __wbg_set_hmackey_key: (a: number, b: number, c: number) => void;
|
|
1088
|
-
readonly __wbg_set_remoteattachment_scheme: (a: number, b: number, c: number) => void;
|
|
1089
|
-
readonly __wbg_set_remoteattachment_contentLength: (a: number, b: bigint) => void;
|
|
1090
|
-
readonly __wbg_set_xmtpcursor_sequence_id: (a: number, b: bigint) => void;
|
|
1091
|
-
readonly __wbg_set_messagedisappearingsettings_fromNs: (a: number, b: bigint) => void;
|
|
1092
|
-
readonly __wbg_set_hmackey_epoch: (a: number, b: bigint) => void;
|
|
1093
|
-
readonly __wbg_set_message_sentAtNs: (a: number, b: bigint) => void;
|
|
1094
|
-
readonly __wbg_set_creategroupoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
1095
|
-
readonly __wbg_get_listmessagesoptions_sentBeforeNs: (a: number) => [number, bigint];
|
|
1096
|
-
readonly __wbg_get_listmessagesoptions_sentAfterNs: (a: number) => [number, bigint];
|
|
1097
|
-
readonly __wbg_get_listmessagesoptions_limit: (a: number) => [number, bigint];
|
|
1098
|
-
readonly __wbg_get_remoteattachment_contentLength: (a: number) => bigint;
|
|
1099
|
-
readonly __wbg_get_xmtpcursor_sequence_id: (a: number) => bigint;
|
|
1100
|
-
readonly __wbg_get_messagedisappearingsettings_fromNs: (a: number) => bigint;
|
|
1101
|
-
readonly __wbg_get_hmackey_epoch: (a: number) => bigint;
|
|
1102
|
-
readonly __wbg_get_message_sentAtNs: (a: number) => bigint;
|
|
1103
|
-
readonly __wbg_set_listmessagesoptions_sentBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
1104
|
-
readonly __wbg_set_listmessagesoptions_sentAfterNs: (a: number, b: number, c: bigint) => void;
|
|
1105
|
-
readonly __wbg_set_listmessagesoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
1106
|
-
readonly __wbg_streamcloser_free: (a: number, b: number) => void;
|
|
1107
|
-
readonly streamcloser_end: (a: number) => void;
|
|
1108
|
-
readonly streamcloser_endAndWait: (a: number) => any;
|
|
1109
|
-
readonly streamcloser_waitForReady: (a: number) => any;
|
|
1110
|
-
readonly streamcloser_isClosed: (a: number) => number;
|
|
1111
842
|
readonly __wbg_remoteattachmentinfo_free: (a: number, b: number) => void;
|
|
1112
843
|
readonly __wbg_get_remoteattachmentinfo_secret: (a: number) => any;
|
|
1113
844
|
readonly __wbg_set_remoteattachmentinfo_secret: (a: number, b: any) => void;
|
|
@@ -1134,6 +865,7 @@ export interface InitOutput {
|
|
|
1134
865
|
readonly decodeMultiRemoteAttachment: (a: any) => [number, number, number];
|
|
1135
866
|
readonly __wbg_reaction_free: (a: number, b: number) => void;
|
|
1136
867
|
readonly __wbg_get_reaction_reference: (a: number) => [number, number];
|
|
868
|
+
readonly __wbg_set_reaction_reference: (a: number, b: number, c: number) => void;
|
|
1137
869
|
readonly __wbg_get_reaction_referenceInboxId: (a: number) => [number, number];
|
|
1138
870
|
readonly __wbg_set_reaction_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
1139
871
|
readonly __wbg_get_reaction_action: (a: number) => number;
|
|
@@ -1167,59 +899,9 @@ export interface InitOutput {
|
|
|
1167
899
|
readonly __wbg_get_apistats_subscribe_welcomes: (a: number) => bigint;
|
|
1168
900
|
readonly __wbg_set_apistats_subscribe_welcomes: (a: number, b: bigint) => void;
|
|
1169
901
|
readonly __wbg_identitystats_free: (a: number, b: number) => void;
|
|
1170
|
-
readonly getInboxIdForIdentifier: (a: number, b: number, c: number, d: number, e: any) => any;
|
|
1171
|
-
readonly generateInboxId: (a: any) => [number, number, number, number];
|
|
1172
|
-
readonly __wbg_installation_free: (a: number, b: number) => void;
|
|
1173
|
-
readonly __wbg_get_installation_bytes: (a: number) => any;
|
|
1174
|
-
readonly __wbg_set_installation_bytes: (a: number, b: any) => void;
|
|
1175
|
-
readonly __wbg_get_installation_id: (a: number) => [number, number];
|
|
1176
|
-
readonly __wbg_set_installation_id: (a: number, b: number, c: number) => void;
|
|
1177
|
-
readonly __wbg_get_installation_clientTimestampNs: (a: number) => [number, bigint];
|
|
1178
|
-
readonly __wbg_set_installation_clientTimestampNs: (a: number, b: number, c: bigint) => void;
|
|
1179
|
-
readonly installation_new: (a: any, b: number, c: number, d: number, e: bigint) => number;
|
|
1180
|
-
readonly __wbg_inboxstate_free: (a: number, b: number) => void;
|
|
1181
|
-
readonly __wbg_get_inboxstate_inboxId: (a: number) => [number, number];
|
|
1182
|
-
readonly __wbg_set_inboxstate_inboxId: (a: number, b: number, c: number) => void;
|
|
1183
|
-
readonly __wbg_get_inboxstate_recoveryIdentifier: (a: number) => any;
|
|
1184
|
-
readonly __wbg_set_inboxstate_recoveryIdentifier: (a: number, b: any) => void;
|
|
1185
|
-
readonly __wbg_get_inboxstate_installations: (a: number) => [number, number];
|
|
1186
|
-
readonly __wbg_set_inboxstate_installations: (a: number, b: number, c: number) => void;
|
|
1187
|
-
readonly __wbg_get_inboxstate_accountIdentifiers: (a: number) => [number, number];
|
|
1188
|
-
readonly __wbg_set_inboxstate_accountIdentifiers: (a: number, b: number, c: number) => void;
|
|
1189
|
-
readonly inboxstate_new: (a: number, b: number, c: any, d: number, e: number, f: number, g: number) => number;
|
|
1190
|
-
readonly __wbg_keypackagestatus_free: (a: number, b: number) => void;
|
|
1191
|
-
readonly __wbg_get_keypackagestatus_lifetime: (a: number) => number;
|
|
1192
|
-
readonly __wbg_set_keypackagestatus_lifetime: (a: number, b: number) => void;
|
|
1193
|
-
readonly __wbg_get_keypackagestatus_validationError: (a: number) => [number, number];
|
|
1194
|
-
readonly __wbg_set_keypackagestatus_validationError: (a: number, b: number, c: number) => void;
|
|
1195
|
-
readonly __wbg_lifetime_free: (a: number, b: number) => void;
|
|
1196
|
-
readonly inboxStateFromInboxIds: (a: number, b: number, c: number, d: number, e: number, f: number) => any;
|
|
1197
|
-
readonly client_inboxState: (a: number, b: number) => any;
|
|
1198
|
-
readonly client_getLatestInboxState: (a: number, b: number, c: number) => any;
|
|
1199
|
-
readonly client_getKeyPackageStatusesForInstallationIds: (a: number, b: number, c: number) => any;
|
|
1200
|
-
readonly __wbg_signaturerequesthandle_free: (a: number, b: number) => void;
|
|
1201
|
-
readonly verifySignedWithPublicKey: (a: number, b: number, c: any, d: any) => [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 applySignatureRequest: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
1204
|
-
readonly __wbg_passkeysignature_free: (a: number, b: number) => void;
|
|
1205
|
-
readonly signaturerequesthandle_signatureText: (a: number) => any;
|
|
1206
|
-
readonly signaturerequesthandle_addEcdsaSignature: (a: number, b: any) => any;
|
|
1207
|
-
readonly signaturerequesthandle_addPasskeySignature: (a: number, b: number) => any;
|
|
1208
|
-
readonly signaturerequesthandle_addScwSignature: (a: number, b: any, c: any, d: bigint, e: number, f: bigint) => any;
|
|
1209
|
-
readonly client_createInboxSignatureRequest: (a: number) => [number, number, number];
|
|
1210
|
-
readonly client_addWalletSignatureRequest: (a: number, b: any) => any;
|
|
1211
|
-
readonly client_revokeWalletSignatureRequest: (a: number, b: any) => any;
|
|
1212
|
-
readonly client_revokeAllOtherInstallationsSignatureRequest: (a: number) => any;
|
|
1213
|
-
readonly client_revokeInstallationsSignatureRequest: (a: number, b: number, c: number) => any;
|
|
1214
|
-
readonly client_changeRecoveryIdentifierSignatureRequest: (a: number, b: any) => any;
|
|
1215
|
-
readonly client_applySignatureRequest: (a: number, b: number) => any;
|
|
1216
|
-
readonly client_registerIdentity: (a: number, b: number) => any;
|
|
1217
|
-
readonly client_signWithInstallationKey: (a: number, b: number, c: number) => [number, number, number];
|
|
1218
|
-
readonly client_verifySignedWithInstallationKey: (a: number, b: number, c: number, d: any) => [number, number];
|
|
1219
902
|
readonly __wbg_set_reactionpayload_reference: (a: number, b: number, c: number) => void;
|
|
1220
903
|
readonly __wbg_set_reactionpayload_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
1221
904
|
readonly __wbg_set_reactionpayload_content: (a: number, b: number, c: number) => void;
|
|
1222
|
-
readonly __wbg_set_reaction_reference: (a: number, b: number, c: number) => void;
|
|
1223
905
|
readonly __wbg_set_reactionpayload_action: (a: number, b: number) => void;
|
|
1224
906
|
readonly __wbg_set_reactionpayload_schema: (a: number, b: number) => void;
|
|
1225
907
|
readonly __wbg_get_reactionpayload_action: (a: number) => number;
|
|
@@ -1228,28 +910,13 @@ export interface InitOutput {
|
|
|
1228
910
|
readonly __wbg_set_identitystats_get_identity_updates_v2: (a: number, b: bigint) => void;
|
|
1229
911
|
readonly __wbg_set_identitystats_get_inbox_ids: (a: number, b: bigint) => void;
|
|
1230
912
|
readonly __wbg_set_identitystats_verify_smart_contract_wallet_signature: (a: number, b: bigint) => void;
|
|
1231
|
-
readonly __wbg_set_lifetime_not_before: (a: number, b: bigint) => void;
|
|
1232
|
-
readonly __wbg_set_lifetime_not_after: (a: number, b: bigint) => void;
|
|
1233
913
|
readonly __wbg_get_identitystats_publish_identity_update: (a: number) => bigint;
|
|
1234
914
|
readonly __wbg_get_identitystats_get_identity_updates_v2: (a: number) => bigint;
|
|
1235
915
|
readonly __wbg_get_identitystats_get_inbox_ids: (a: number) => bigint;
|
|
1236
916
|
readonly __wbg_get_identitystats_verify_smart_contract_wallet_signature: (a: number) => bigint;
|
|
1237
|
-
readonly __wbg_get_lifetime_not_before: (a: number) => bigint;
|
|
1238
|
-
readonly __wbg_get_lifetime_not_after: (a: number) => bigint;
|
|
1239
|
-
readonly __wbg_consent_free: (a: number, b: number) => void;
|
|
1240
|
-
readonly __wbg_get_consent_entityType: (a: number) => number;
|
|
1241
|
-
readonly __wbg_set_consent_entityType: (a: number, b: number) => void;
|
|
1242
|
-
readonly __wbg_get_consent_state: (a: number) => number;
|
|
1243
|
-
readonly __wbg_set_consent_state: (a: number, b: number) => void;
|
|
1244
|
-
readonly __wbg_get_consent_entity: (a: number) => [number, number];
|
|
1245
|
-
readonly __wbg_set_consent_entity: (a: number, b: number, c: number) => void;
|
|
1246
|
-
readonly consent_new: (a: number, b: number, c: number, d: number) => number;
|
|
1247
|
-
readonly client_setConsentStates: (a: number, b: number, c: number) => any;
|
|
1248
|
-
readonly client_getConsentState: (a: number, b: number, c: number, d: number) => any;
|
|
1249
|
-
readonly conversation_consentState: (a: number) => [number, number, number];
|
|
1250
|
-
readonly conversation_updateConsentState: (a: number, b: number) => [number, number];
|
|
1251
917
|
readonly __wbg_groupupdated_free: (a: number, b: number) => void;
|
|
1252
918
|
readonly __wbg_get_groupupdated_initiatedByInboxId: (a: number) => [number, number];
|
|
919
|
+
readonly __wbg_set_groupupdated_initiatedByInboxId: (a: number, b: number, c: number) => void;
|
|
1253
920
|
readonly __wbg_get_groupupdated_addedInboxes: (a: number) => [number, number];
|
|
1254
921
|
readonly __wbg_set_groupupdated_addedInboxes: (a: number, b: number, c: number) => void;
|
|
1255
922
|
readonly __wbg_get_groupupdated_removedInboxes: (a: number) => [number, number];
|
|
@@ -1264,7 +931,95 @@ export interface InitOutput {
|
|
|
1264
931
|
readonly __wbg_set_metadatafieldchange_oldValue: (a: number, b: number, c: number) => void;
|
|
1265
932
|
readonly __wbg_get_metadatafieldchange_newValue: (a: number) => [number, number];
|
|
1266
933
|
readonly __wbg_set_metadatafieldchange_newValue: (a: number, b: number, c: number) => void;
|
|
934
|
+
readonly __wbg_signaturerequesthandle_free: (a: number, b: number) => void;
|
|
935
|
+
readonly verifySignedWithPublicKey: (a: number, b: number, c: any, d: any) => [number, number];
|
|
936
|
+
readonly revokeInstallationsSignatureRequest: (a: number, b: number, c: any, d: number, e: number, f: number, g: number) => [number, number, number];
|
|
937
|
+
readonly applySignatureRequest: (a: number, b: number, c: number) => any;
|
|
938
|
+
readonly __wbg_passkeysignature_free: (a: number, b: number) => void;
|
|
939
|
+
readonly signaturerequesthandle_signatureText: (a: number) => any;
|
|
940
|
+
readonly signaturerequesthandle_addEcdsaSignature: (a: number, b: any) => any;
|
|
941
|
+
readonly signaturerequesthandle_addPasskeySignature: (a: number, b: number) => any;
|
|
942
|
+
readonly signaturerequesthandle_addScwSignature: (a: number, b: any, c: any, d: bigint, e: number, f: bigint) => any;
|
|
943
|
+
readonly client_createInboxSignatureRequest: (a: number) => [number, number, number];
|
|
944
|
+
readonly client_addWalletSignatureRequest: (a: number, b: any) => any;
|
|
945
|
+
readonly client_revokeWalletSignatureRequest: (a: number, b: any) => any;
|
|
946
|
+
readonly client_revokeAllOtherInstallationsSignatureRequest: (a: number) => any;
|
|
947
|
+
readonly client_revokeInstallationsSignatureRequest: (a: number, b: number, c: number) => any;
|
|
948
|
+
readonly client_changeRecoveryIdentifierSignatureRequest: (a: number, b: any) => any;
|
|
949
|
+
readonly client_applySignatureRequest: (a: number, b: number) => any;
|
|
950
|
+
readonly client_registerIdentity: (a: number, b: number) => any;
|
|
951
|
+
readonly client_signWithInstallationKey: (a: number, b: number, c: number) => [number, number, number];
|
|
952
|
+
readonly client_verifySignedWithInstallationKey: (a: number, b: number, c: number, d: any) => [number, number];
|
|
953
|
+
readonly __wbg_set_inbox_inboxId: (a: number, b: number, c: number) => void;
|
|
954
|
+
readonly __wbg_set_metadatafieldchange_fieldName: (a: number, b: number, c: number) => void;
|
|
955
|
+
readonly __wbg_consent_free: (a: number, b: number) => void;
|
|
956
|
+
readonly __wbg_get_consent_entityType: (a: number) => number;
|
|
957
|
+
readonly __wbg_set_consent_entityType: (a: number, b: number) => void;
|
|
958
|
+
readonly __wbg_get_consent_state: (a: number) => number;
|
|
959
|
+
readonly __wbg_set_consent_state: (a: number, b: number) => void;
|
|
960
|
+
readonly __wbg_get_consent_entity: (a: number) => [number, number];
|
|
961
|
+
readonly consent_new: (a: number, b: number, c: number, d: number) => number;
|
|
962
|
+
readonly client_setConsentStates: (a: number, b: number, c: number) => any;
|
|
963
|
+
readonly client_getConsentState: (a: number, b: number, c: number, d: number) => any;
|
|
964
|
+
readonly conversation_consentState: (a: number) => [number, number, number];
|
|
965
|
+
readonly conversation_updateConsentState: (a: number, b: number) => [number, number];
|
|
966
|
+
readonly __wbg_attachment_free: (a: number, b: number) => void;
|
|
967
|
+
readonly __wbg_get_attachment_filename: (a: number) => [number, number];
|
|
968
|
+
readonly __wbg_set_attachment_filename: (a: number, b: number, c: number) => void;
|
|
969
|
+
readonly __wbg_get_attachment_mimeType: (a: number) => [number, number];
|
|
970
|
+
readonly __wbg_set_attachment_mimeType: (a: number, b: number, c: number) => void;
|
|
971
|
+
readonly __wbg_get_attachment_content: (a: number) => [number, number];
|
|
972
|
+
readonly __wbg_set_attachment_content: (a: number, b: number, c: number) => void;
|
|
973
|
+
readonly __wbg_decodedmessagecontent_free: (a: number, b: number) => void;
|
|
974
|
+
readonly decodedmessagecontent_payloadType: (a: number) => number;
|
|
975
|
+
readonly decodedmessagecontent_asText: (a: number) => number;
|
|
976
|
+
readonly decodedmessagecontent_asReply: (a: number) => number;
|
|
977
|
+
readonly decodedmessagecontent_asReaction: (a: number) => number;
|
|
978
|
+
readonly decodedmessagecontent_asAttachment: (a: number) => number;
|
|
979
|
+
readonly decodedmessagecontent_asRemoteAttachment: (a: number) => number;
|
|
980
|
+
readonly decodedmessagecontent_asMultiRemoteAttachment: (a: number) => number;
|
|
981
|
+
readonly decodedmessagecontent_asTransactionReference: (a: number) => number;
|
|
982
|
+
readonly decodedmessagecontent_asGroupUpdated: (a: number) => number;
|
|
983
|
+
readonly decodedmessagecontent_asReadReceipt: (a: number) => number;
|
|
984
|
+
readonly decodedmessagecontent_asWalletSendCalls: (a: number) => [number, number, number];
|
|
985
|
+
readonly decodedmessagecontent_asCustom: (a: number) => number;
|
|
986
|
+
readonly __wbg_remoteattachment_free: (a: number, b: number) => void;
|
|
987
|
+
readonly __wbg_get_remoteattachment_url: (a: number) => [number, number];
|
|
988
|
+
readonly __wbg_get_remoteattachment_contentDigest: (a: number) => [number, number];
|
|
989
|
+
readonly __wbg_set_remoteattachment_contentDigest: (a: number, b: number, c: number) => void;
|
|
990
|
+
readonly __wbg_get_remoteattachment_secret: (a: number) => [number, number];
|
|
991
|
+
readonly __wbg_set_remoteattachment_secret: (a: number, b: number, c: number) => void;
|
|
992
|
+
readonly __wbg_get_remoteattachment_salt: (a: number) => [number, number];
|
|
993
|
+
readonly __wbg_set_remoteattachment_salt: (a: number, b: number, c: number) => void;
|
|
994
|
+
readonly __wbg_get_remoteattachment_nonce: (a: number) => [number, number];
|
|
995
|
+
readonly __wbg_set_remoteattachment_nonce: (a: number, b: number, c: number) => void;
|
|
996
|
+
readonly __wbg_get_remoteattachment_scheme: (a: number) => [number, number];
|
|
997
|
+
readonly __wbg_get_remoteattachment_filename: (a: number) => [number, number];
|
|
998
|
+
readonly __wbg_set_remoteattachment_filename: (a: number, b: number, c: number) => void;
|
|
999
|
+
readonly __wbg_enrichedreply_free: (a: number, b: number) => void;
|
|
1000
|
+
readonly enrichedreply_referenceId: (a: number) => [number, number];
|
|
1001
|
+
readonly enrichedreply_content: (a: number) => number;
|
|
1002
|
+
readonly enrichedreply_inReplyTo: (a: number) => number;
|
|
1003
|
+
readonly __wbg_textcontent_free: (a: number, b: number) => void;
|
|
1267
1004
|
readonly __wbg_get_textcontent_content: (a: number) => [number, number];
|
|
1005
|
+
readonly __wbg_transactionreference_free: (a: number, b: number) => void;
|
|
1006
|
+
readonly __wbg_get_transactionreference_namespace: (a: number) => [number, number];
|
|
1007
|
+
readonly __wbg_set_transactionreference_namespace: (a: number, b: number, c: number) => void;
|
|
1008
|
+
readonly __wbg_get_transactionreference_networkId: (a: number) => [number, number];
|
|
1009
|
+
readonly __wbg_set_transactionreference_networkId: (a: number, b: number, c: number) => void;
|
|
1010
|
+
readonly __wbg_get_transactionreference_reference: (a: number) => [number, number];
|
|
1011
|
+
readonly __wbg_set_transactionreference_reference: (a: number, b: number, c: number) => void;
|
|
1012
|
+
readonly __wbg_get_transactionreference_metadata: (a: number) => number;
|
|
1013
|
+
readonly __wbg_set_transactionreference_metadata: (a: number, b: number) => void;
|
|
1014
|
+
readonly __wbg_transactionmetadata_free: (a: number, b: number) => void;
|
|
1015
|
+
readonly __wbg_get_transactionmetadata_transactionType: (a: number) => [number, number];
|
|
1016
|
+
readonly __wbg_get_transactionmetadata_currency: (a: number) => [number, number];
|
|
1017
|
+
readonly __wbg_get_transactionmetadata_amount: (a: number) => number;
|
|
1018
|
+
readonly __wbg_set_transactionmetadata_amount: (a: number, b: number) => void;
|
|
1019
|
+
readonly __wbg_get_transactionmetadata_decimals: (a: number) => number;
|
|
1020
|
+
readonly __wbg_set_transactionmetadata_decimals: (a: number, b: number) => void;
|
|
1021
|
+
readonly __wbg_get_transactionmetadata_fromAddress: (a: number) => [number, number];
|
|
1022
|
+
readonly __wbg_get_transactionmetadata_toAddress: (a: number) => [number, number];
|
|
1268
1023
|
readonly __wbg_sendmessageopts_free: (a: number, b: number) => void;
|
|
1269
1024
|
readonly __wbg_get_sendmessageopts_shouldPush: (a: number) => number;
|
|
1270
1025
|
readonly __wbg_set_sendmessageopts_shouldPush: (a: number, b: number) => void;
|
|
@@ -1328,41 +1083,185 @@ export interface InitOutput {
|
|
|
1328
1083
|
readonly conversation_findDuplicateDms: (a: number) => any;
|
|
1329
1084
|
readonly conversation_findMessagesV2: (a: number, b: number) => any;
|
|
1330
1085
|
readonly conversation_getLastReadTimes: (a: number) => any;
|
|
1331
|
-
readonly
|
|
1332
|
-
readonly
|
|
1333
|
-
readonly
|
|
1334
|
-
readonly
|
|
1335
|
-
readonly
|
|
1336
|
-
readonly
|
|
1337
|
-
readonly
|
|
1338
|
-
readonly
|
|
1339
|
-
readonly
|
|
1340
|
-
readonly
|
|
1341
|
-
readonly
|
|
1342
|
-
readonly
|
|
1343
|
-
readonly
|
|
1344
|
-
readonly
|
|
1345
|
-
readonly
|
|
1346
|
-
readonly
|
|
1347
|
-
readonly
|
|
1348
|
-
readonly
|
|
1349
|
-
readonly
|
|
1350
|
-
readonly
|
|
1351
|
-
readonly
|
|
1352
|
-
readonly
|
|
1353
|
-
readonly
|
|
1354
|
-
readonly
|
|
1355
|
-
readonly
|
|
1356
|
-
readonly
|
|
1357
|
-
readonly
|
|
1358
|
-
readonly
|
|
1359
|
-
readonly
|
|
1360
|
-
readonly
|
|
1361
|
-
readonly
|
|
1362
|
-
readonly
|
|
1363
|
-
readonly
|
|
1364
|
-
readonly
|
|
1365
|
-
readonly
|
|
1086
|
+
readonly __wbg_listconversationsoptions_free: (a: number, b: number) => void;
|
|
1087
|
+
readonly __wbg_get_listconversationsoptions_consentStates: (a: number) => [number, number];
|
|
1088
|
+
readonly __wbg_set_listconversationsoptions_consentStates: (a: number, b: number, c: number) => void;
|
|
1089
|
+
readonly __wbg_get_listconversationsoptions_conversationType: (a: number) => number;
|
|
1090
|
+
readonly __wbg_set_listconversationsoptions_conversationType: (a: number, b: number) => void;
|
|
1091
|
+
readonly __wbg_get_listconversationsoptions_createdBeforeNs: (a: number) => [number, bigint];
|
|
1092
|
+
readonly __wbg_set_listconversationsoptions_createdBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
1093
|
+
readonly __wbg_get_listconversationsoptions_includeDuplicateDms: (a: number) => number;
|
|
1094
|
+
readonly __wbg_set_listconversationsoptions_includeDuplicateDms: (a: number, b: number) => void;
|
|
1095
|
+
readonly __wbg_get_listconversationsoptions_limit: (a: number) => [number, bigint];
|
|
1096
|
+
readonly __wbg_set_listconversationsoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
1097
|
+
readonly listconversationsoptions_new: (a: number, b: number, c: number, d: number, e: bigint, f: number, g: bigint, h: number, i: number, j: bigint) => number;
|
|
1098
|
+
readonly __wbg_messagedisappearingsettings_free: (a: number, b: number) => void;
|
|
1099
|
+
readonly messagedisappearingsettings_new: (a: bigint, b: bigint) => number;
|
|
1100
|
+
readonly __wbg_conversationdebuginfo_free: (a: number, b: number) => void;
|
|
1101
|
+
readonly __wbg_get_conversationdebuginfo_epoch: (a: number) => bigint;
|
|
1102
|
+
readonly __wbg_set_conversationdebuginfo_epoch: (a: number, b: bigint) => void;
|
|
1103
|
+
readonly __wbg_get_conversationdebuginfo_maybeForked: (a: number) => number;
|
|
1104
|
+
readonly __wbg_set_conversationdebuginfo_maybeForked: (a: number, b: number) => void;
|
|
1105
|
+
readonly __wbg_get_conversationdebuginfo_forkDetails: (a: number) => [number, number];
|
|
1106
|
+
readonly __wbg_set_conversationdebuginfo_forkDetails: (a: number, b: number, c: number) => void;
|
|
1107
|
+
readonly __wbg_get_conversationdebuginfo_isCommitLogForked: (a: number) => number;
|
|
1108
|
+
readonly __wbg_set_conversationdebuginfo_isCommitLogForked: (a: number, b: number) => void;
|
|
1109
|
+
readonly __wbg_get_conversationdebuginfo_localCommitLog: (a: number) => [number, number];
|
|
1110
|
+
readonly __wbg_set_conversationdebuginfo_localCommitLog: (a: number, b: number, c: number) => void;
|
|
1111
|
+
readonly __wbg_get_conversationdebuginfo_remoteCommitLog: (a: number) => [number, number];
|
|
1112
|
+
readonly __wbg_set_conversationdebuginfo_remoteCommitLog: (a: number, b: number, c: number) => void;
|
|
1113
|
+
readonly __wbg_get_conversationdebuginfo_cursor: (a: number) => bigint;
|
|
1114
|
+
readonly __wbg_set_conversationdebuginfo_cursor: (a: number, b: bigint) => void;
|
|
1115
|
+
readonly __wbg_creategroupoptions_free: (a: number, b: number) => void;
|
|
1116
|
+
readonly __wbg_get_creategroupoptions_permissions: (a: number) => number;
|
|
1117
|
+
readonly __wbg_set_creategroupoptions_permissions: (a: number, b: number) => void;
|
|
1118
|
+
readonly __wbg_get_creategroupoptions_groupName: (a: number) => [number, number];
|
|
1119
|
+
readonly __wbg_set_creategroupoptions_groupName: (a: number, b: number, c: number) => void;
|
|
1120
|
+
readonly __wbg_get_creategroupoptions_groupImageUrlSquare: (a: number) => [number, number];
|
|
1121
|
+
readonly __wbg_set_creategroupoptions_groupImageUrlSquare: (a: number, b: number, c: number) => void;
|
|
1122
|
+
readonly __wbg_get_creategroupoptions_groupDescription: (a: number) => [number, number];
|
|
1123
|
+
readonly __wbg_set_creategroupoptions_groupDescription: (a: number, b: number, c: number) => void;
|
|
1124
|
+
readonly __wbg_get_creategroupoptions_customPermissionPolicySet: (a: number) => number;
|
|
1125
|
+
readonly __wbg_set_creategroupoptions_customPermissionPolicySet: (a: number, b: number) => void;
|
|
1126
|
+
readonly creategroupoptions_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => number;
|
|
1127
|
+
readonly __wbg_createdmoptions_free: (a: number, b: number) => void;
|
|
1128
|
+
readonly __wbg_get_createdmoptions_messageDisappearingSettings: (a: number) => number;
|
|
1129
|
+
readonly __wbg_set_createdmoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
1130
|
+
readonly createdmoptions_new: (a: number) => number;
|
|
1131
|
+
readonly __wbg_hmackey_free: (a: number, b: number) => void;
|
|
1132
|
+
readonly __wbg_get_hmackey_key: (a: number) => [number, number];
|
|
1133
|
+
readonly __wbg_set_hmackey_key: (a: number, b: number, c: number) => void;
|
|
1134
|
+
readonly __wbg_conversationlistitem_free: (a: number, b: number) => void;
|
|
1135
|
+
readonly __wbg_get_conversationlistitem_conversation: (a: number) => number;
|
|
1136
|
+
readonly __wbg_set_conversationlistitem_conversation: (a: number, b: number) => void;
|
|
1137
|
+
readonly __wbg_get_conversationlistitem_lastMessage: (a: number) => number;
|
|
1138
|
+
readonly __wbg_set_conversationlistitem_lastMessage: (a: number, b: number) => void;
|
|
1139
|
+
readonly __wbg_get_conversationlistitem_isCommitLogForked: (a: number) => number;
|
|
1140
|
+
readonly __wbg_set_conversationlistitem_isCommitLogForked: (a: number, b: number) => void;
|
|
1141
|
+
readonly conversationlistitem_new: (a: number, b: number, c: number) => number;
|
|
1142
|
+
readonly __wbg_conversations_free: (a: number, b: number) => void;
|
|
1143
|
+
readonly conversations_createGroupOptimistic: (a: number, b: number) => [number, number, number];
|
|
1144
|
+
readonly conversations_createGroup: (a: number, b: number, c: number, d: number) => any;
|
|
1145
|
+
readonly conversations_createGroupByInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
1146
|
+
readonly conversations_createDm: (a: number, b: any, c: number) => any;
|
|
1147
|
+
readonly conversations_createDmByInboxId: (a: number, b: number, c: number, d: number) => any;
|
|
1148
|
+
readonly conversations_findGroupById: (a: number, b: number, c: number) => [number, number, number];
|
|
1149
|
+
readonly conversations_findDmByTargetInboxId: (a: number, b: number, c: number) => [number, number, number];
|
|
1150
|
+
readonly conversations_findMessageById: (a: number, b: number, c: number) => [number, number, number];
|
|
1151
|
+
readonly conversations_sync: (a: number) => any;
|
|
1152
|
+
readonly conversations_syncAllConversations: (a: number, b: number, c: number) => any;
|
|
1153
|
+
readonly conversations_list: (a: number, b: number) => [number, number, number];
|
|
1154
|
+
readonly conversations_getHmacKeys: (a: number) => [number, number, number];
|
|
1155
|
+
readonly conversations_streamLocal: (a: number, b: number) => any;
|
|
1156
|
+
readonly conversations_stream: (a: number, b: any, c: number) => [number, number, number];
|
|
1157
|
+
readonly conversations_streamAllMessages: (a: number, b: any, c: number, d: number, e: number) => [number, number, number];
|
|
1158
|
+
readonly conversations_streamConsent: (a: number, b: any) => [number, number, number];
|
|
1159
|
+
readonly conversations_streamPreferences: (a: number, b: any) => [number, number, number];
|
|
1160
|
+
readonly __wbg_contenttypeid_free: (a: number, b: number) => void;
|
|
1161
|
+
readonly __wbg_get_contenttypeid_authorityId: (a: number) => [number, number];
|
|
1162
|
+
readonly __wbg_get_contenttypeid_typeId: (a: number) => [number, number];
|
|
1163
|
+
readonly __wbg_get_contenttypeid_versionMajor: (a: number) => number;
|
|
1164
|
+
readonly __wbg_set_contenttypeid_versionMajor: (a: number, b: number) => void;
|
|
1165
|
+
readonly __wbg_get_contenttypeid_versionMinor: (a: number) => number;
|
|
1166
|
+
readonly __wbg_set_contenttypeid_versionMinor: (a: number, b: number) => void;
|
|
1167
|
+
readonly contenttypeid_new: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
1168
|
+
readonly __wbg_encodedcontent_free: (a: number, b: number) => void;
|
|
1169
|
+
readonly __wbg_get_encodedcontent_type: (a: number) => number;
|
|
1170
|
+
readonly __wbg_set_encodedcontent_type: (a: number, b: number) => void;
|
|
1171
|
+
readonly __wbg_get_encodedcontent_parameters: (a: number) => any;
|
|
1172
|
+
readonly __wbg_set_encodedcontent_parameters: (a: number, b: any) => void;
|
|
1173
|
+
readonly __wbg_get_encodedcontent_fallback: (a: number) => [number, number];
|
|
1174
|
+
readonly __wbg_set_encodedcontent_fallback: (a: number, b: number, c: number) => void;
|
|
1175
|
+
readonly __wbg_get_encodedcontent_compression: (a: number) => number;
|
|
1176
|
+
readonly __wbg_set_encodedcontent_compression: (a: number, b: number) => void;
|
|
1177
|
+
readonly __wbg_get_encodedcontent_content: (a: number) => any;
|
|
1178
|
+
readonly __wbg_set_encodedcontent_content: (a: number, b: any) => void;
|
|
1179
|
+
readonly encodedcontent_new: (a: number, b: any, c: number, d: number, e: number, f: any) => number;
|
|
1180
|
+
readonly __wbg_decodedmessage_free: (a: number, b: number) => void;
|
|
1181
|
+
readonly __wbg_get_decodedmessage_id: (a: number) => [number, number];
|
|
1182
|
+
readonly __wbg_set_decodedmessage_id: (a: number, b: number, c: number) => void;
|
|
1183
|
+
readonly __wbg_get_decodedmessage_sent_at_ns: (a: number) => bigint;
|
|
1184
|
+
readonly __wbg_set_decodedmessage_sent_at_ns: (a: number, b: bigint) => void;
|
|
1185
|
+
readonly __wbg_get_decodedmessage_kind: (a: number) => number;
|
|
1186
|
+
readonly __wbg_set_decodedmessage_kind: (a: number, b: number) => void;
|
|
1187
|
+
readonly __wbg_get_decodedmessage_sender_installation_id: (a: number) => [number, number];
|
|
1188
|
+
readonly __wbg_set_decodedmessage_sender_installation_id: (a: number, b: number, c: number) => void;
|
|
1189
|
+
readonly __wbg_get_decodedmessage_sender_inbox_id: (a: number) => [number, number];
|
|
1190
|
+
readonly __wbg_set_decodedmessage_sender_inbox_id: (a: number, b: number, c: number) => void;
|
|
1191
|
+
readonly __wbg_get_decodedmessage_content_type: (a: number) => number;
|
|
1192
|
+
readonly __wbg_set_decodedmessage_content_type: (a: number, b: number) => void;
|
|
1193
|
+
readonly __wbg_get_decodedmessage_conversation_id: (a: number) => [number, number];
|
|
1194
|
+
readonly __wbg_set_decodedmessage_conversation_id: (a: number, b: number, c: number) => void;
|
|
1195
|
+
readonly __wbg_get_decodedmessage_content: (a: number) => number;
|
|
1196
|
+
readonly __wbg_set_decodedmessage_content: (a: number, b: number) => void;
|
|
1197
|
+
readonly __wbg_get_decodedmessage_fallback_text: (a: number) => [number, number];
|
|
1198
|
+
readonly __wbg_set_decodedmessage_fallback_text: (a: number, b: number, c: number) => void;
|
|
1199
|
+
readonly __wbg_get_decodedmessage_reactions: (a: number) => [number, number];
|
|
1200
|
+
readonly __wbg_set_decodedmessage_reactions: (a: number, b: number, c: number) => void;
|
|
1201
|
+
readonly __wbg_get_decodedmessage_delivery_status: (a: number) => number;
|
|
1202
|
+
readonly __wbg_set_decodedmessage_delivery_status: (a: number, b: number) => void;
|
|
1203
|
+
readonly __wbg_get_decodedmessage_num_replies: (a: number) => bigint;
|
|
1204
|
+
readonly __wbg_set_decodedmessage_num_replies: (a: number, b: bigint) => void;
|
|
1205
|
+
readonly getInboxIdForIdentifier: (a: number, b: number, c: any) => any;
|
|
1206
|
+
readonly generateInboxId: (a: any) => [number, number, number, number];
|
|
1207
|
+
readonly __wbg_installation_free: (a: number, b: number) => void;
|
|
1208
|
+
readonly __wbg_get_installation_bytes: (a: number) => any;
|
|
1209
|
+
readonly __wbg_set_installation_bytes: (a: number, b: any) => void;
|
|
1210
|
+
readonly __wbg_get_installation_id: (a: number) => [number, number];
|
|
1211
|
+
readonly __wbg_get_installation_clientTimestampNs: (a: number) => [number, bigint];
|
|
1212
|
+
readonly __wbg_set_installation_clientTimestampNs: (a: number, b: number, c: bigint) => void;
|
|
1213
|
+
readonly installation_new: (a: any, b: number, c: number, d: number, e: bigint) => number;
|
|
1214
|
+
readonly __wbg_inboxstate_free: (a: number, b: number) => void;
|
|
1215
|
+
readonly __wbg_get_inboxstate_inboxId: (a: number) => [number, number];
|
|
1216
|
+
readonly __wbg_get_inboxstate_recoveryIdentifier: (a: number) => any;
|
|
1217
|
+
readonly __wbg_set_inboxstate_recoveryIdentifier: (a: number, b: any) => void;
|
|
1218
|
+
readonly __wbg_get_inboxstate_installations: (a: number) => [number, number];
|
|
1219
|
+
readonly __wbg_set_inboxstate_installations: (a: number, b: number, c: number) => void;
|
|
1220
|
+
readonly __wbg_get_inboxstate_accountIdentifiers: (a: number) => [number, number];
|
|
1221
|
+
readonly __wbg_set_inboxstate_accountIdentifiers: (a: number, b: number, c: number) => void;
|
|
1222
|
+
readonly inboxstate_new: (a: number, b: number, c: any, d: number, e: number, f: number, g: number) => number;
|
|
1223
|
+
readonly __wbg_keypackagestatus_free: (a: number, b: number) => void;
|
|
1224
|
+
readonly __wbg_get_keypackagestatus_lifetime: (a: number) => number;
|
|
1225
|
+
readonly __wbg_get_keypackagestatus_validationError: (a: number) => [number, number];
|
|
1226
|
+
readonly __wbg_set_keypackagestatus_validationError: (a: number, b: number, c: number) => void;
|
|
1227
|
+
readonly __wbg_lifetime_free: (a: number, b: number) => void;
|
|
1228
|
+
readonly inboxStateFromInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
1229
|
+
readonly client_inboxState: (a: number, b: number) => any;
|
|
1230
|
+
readonly client_getLatestInboxState: (a: number, b: number, c: number) => any;
|
|
1231
|
+
readonly client_getKeyPackageStatusesForInstallationIds: (a: number, b: number, c: number) => any;
|
|
1232
|
+
readonly __wbg_listmessagesoptions_free: (a: number, b: number) => void;
|
|
1233
|
+
readonly __wbg_get_listmessagesoptions_contentTypes: (a: number) => [number, number];
|
|
1234
|
+
readonly __wbg_set_listmessagesoptions_contentTypes: (a: number, b: number, c: number) => void;
|
|
1235
|
+
readonly __wbg_get_listmessagesoptions_excludeContentTypes: (a: number) => [number, number];
|
|
1236
|
+
readonly __wbg_set_listmessagesoptions_excludeContentTypes: (a: number, b: number, c: number) => void;
|
|
1237
|
+
readonly __wbg_get_listmessagesoptions_deliveryStatus: (a: number) => number;
|
|
1238
|
+
readonly __wbg_set_listmessagesoptions_deliveryStatus: (a: number, b: number) => void;
|
|
1239
|
+
readonly __wbg_get_listmessagesoptions_direction: (a: number) => number;
|
|
1240
|
+
readonly __wbg_set_listmessagesoptions_direction: (a: number, b: number) => void;
|
|
1241
|
+
readonly __wbg_get_listmessagesoptions_kind: (a: number) => number;
|
|
1242
|
+
readonly __wbg_set_listmessagesoptions_kind: (a: number, b: number) => void;
|
|
1243
|
+
readonly __wbg_get_listmessagesoptions_excludeSenderInboxIds: (a: number) => [number, number];
|
|
1244
|
+
readonly __wbg_set_listmessagesoptions_excludeSenderInboxIds: (a: number, b: number, c: number) => void;
|
|
1245
|
+
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;
|
|
1246
|
+
readonly __wbg_message_free: (a: number, b: number) => void;
|
|
1247
|
+
readonly __wbg_get_message_id: (a: number) => [number, number];
|
|
1248
|
+
readonly __wbg_set_message_id: (a: number, b: number, c: number) => void;
|
|
1249
|
+
readonly __wbg_get_message_convoId: (a: number) => [number, number];
|
|
1250
|
+
readonly __wbg_set_message_convoId: (a: number, b: number, c: number) => void;
|
|
1251
|
+
readonly __wbg_get_message_senderInboxId: (a: number) => [number, number];
|
|
1252
|
+
readonly __wbg_set_message_senderInboxId: (a: number, b: number, c: number) => void;
|
|
1253
|
+
readonly __wbg_get_message_content: (a: number) => number;
|
|
1254
|
+
readonly __wbg_set_message_content: (a: number, b: number) => void;
|
|
1255
|
+
readonly __wbg_get_message_kind: (a: number) => number;
|
|
1256
|
+
readonly __wbg_set_message_kind: (a: number, b: number) => void;
|
|
1257
|
+
readonly __wbg_get_message_deliveryStatus: (a: number) => number;
|
|
1258
|
+
readonly __wbg_set_message_deliveryStatus: (a: number, b: number) => void;
|
|
1259
|
+
readonly message_new: (a: number, b: number, c: bigint, d: number, e: number, f: number, g: number, h: number, i: number, j: number) => number;
|
|
1260
|
+
readonly __wbg_messagewithreactions_free: (a: number, b: number) => void;
|
|
1261
|
+
readonly __wbg_get_messagewithreactions_message: (a: number) => number;
|
|
1262
|
+
readonly __wbg_set_messagewithreactions_message: (a: number, b: number) => void;
|
|
1263
|
+
readonly __wbg_get_messagewithreactions_reactions: (a: number) => [number, number];
|
|
1264
|
+
readonly __wbg_set_messagewithreactions_reactions: (a: number, b: number, c: number) => void;
|
|
1366
1265
|
readonly __wbg_opfs_free: (a: number, b: number) => void;
|
|
1367
1266
|
readonly opfs_init_sqlite_opfs: () => any;
|
|
1368
1267
|
readonly opfs_exists: () => number;
|
|
@@ -1376,6 +1275,44 @@ export interface InitOutput {
|
|
|
1376
1275
|
readonly opfs_getCapacity: () => number;
|
|
1377
1276
|
readonly opfs_addCapacity: (a: number) => any;
|
|
1378
1277
|
readonly opfs_reduceCapacity: (a: number) => any;
|
|
1278
|
+
readonly __wbg_get_creategroupoptions_messageDisappearingSettings: (a: number) => number;
|
|
1279
|
+
readonly __wbg_set_consent_entity: (a: number, b: number, c: number) => void;
|
|
1280
|
+
readonly __wbg_set_textcontent_content: (a: number, b: number, c: number) => void;
|
|
1281
|
+
readonly __wbg_set_transactionmetadata_transactionType: (a: number, b: number, c: number) => void;
|
|
1282
|
+
readonly __wbg_set_transactionmetadata_currency: (a: number, b: number, c: number) => void;
|
|
1283
|
+
readonly __wbg_set_transactionmetadata_fromAddress: (a: number, b: number, c: number) => void;
|
|
1284
|
+
readonly __wbg_set_transactionmetadata_toAddress: (a: number, b: number, c: number) => void;
|
|
1285
|
+
readonly __wbg_set_groupmember_inboxId: (a: number, b: number, c: number) => void;
|
|
1286
|
+
readonly __wbg_set_remoteattachment_url: (a: number, b: number, c: number) => void;
|
|
1287
|
+
readonly __wbg_set_contenttypeid_authorityId: (a: number, b: number, c: number) => void;
|
|
1288
|
+
readonly __wbg_set_contenttypeid_typeId: (a: number, b: number, c: number) => void;
|
|
1289
|
+
readonly __wbg_set_installation_id: (a: number, b: number, c: number) => void;
|
|
1290
|
+
readonly __wbg_set_inboxstate_inboxId: (a: number, b: number, c: number) => void;
|
|
1291
|
+
readonly __wbg_set_remoteattachment_scheme: (a: number, b: number, c: number) => void;
|
|
1292
|
+
readonly __wbg_set_remoteattachment_contentLength: (a: number, b: bigint) => void;
|
|
1293
|
+
readonly __wbg_set_messagedisappearingsettings_fromNs: (a: number, b: bigint) => void;
|
|
1294
|
+
readonly __wbg_set_messagedisappearingsettings_inNs: (a: number, b: bigint) => void;
|
|
1295
|
+
readonly __wbg_set_hmackey_epoch: (a: number, b: bigint) => void;
|
|
1296
|
+
readonly __wbg_set_lifetime_not_before: (a: number, b: bigint) => void;
|
|
1297
|
+
readonly __wbg_set_lifetime_not_after: (a: number, b: bigint) => void;
|
|
1298
|
+
readonly __wbg_set_message_sentAtNs: (a: number, b: bigint) => void;
|
|
1299
|
+
readonly __wbg_set_creategroupoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
1300
|
+
readonly __wbg_get_listconversationsoptions_createdAfterNs: (a: number) => [number, bigint];
|
|
1301
|
+
readonly __wbg_get_listmessagesoptions_sentBeforeNs: (a: number) => [number, bigint];
|
|
1302
|
+
readonly __wbg_get_listmessagesoptions_sentAfterNs: (a: number) => [number, bigint];
|
|
1303
|
+
readonly __wbg_get_listmessagesoptions_limit: (a: number) => [number, bigint];
|
|
1304
|
+
readonly __wbg_get_remoteattachment_contentLength: (a: number) => bigint;
|
|
1305
|
+
readonly __wbg_get_messagedisappearingsettings_fromNs: (a: number) => bigint;
|
|
1306
|
+
readonly __wbg_get_messagedisappearingsettings_inNs: (a: number) => bigint;
|
|
1307
|
+
readonly __wbg_get_hmackey_epoch: (a: number) => bigint;
|
|
1308
|
+
readonly __wbg_get_lifetime_not_before: (a: number) => bigint;
|
|
1309
|
+
readonly __wbg_get_lifetime_not_after: (a: number) => bigint;
|
|
1310
|
+
readonly __wbg_get_message_sentAtNs: (a: number) => bigint;
|
|
1311
|
+
readonly __wbg_set_listconversationsoptions_createdAfterNs: (a: number, b: number, c: bigint) => void;
|
|
1312
|
+
readonly __wbg_set_listmessagesoptions_sentBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
1313
|
+
readonly __wbg_set_listmessagesoptions_sentAfterNs: (a: number, b: number, c: bigint) => void;
|
|
1314
|
+
readonly __wbg_set_listmessagesoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
1315
|
+
readonly __wbg_set_keypackagestatus_lifetime: (a: number, b: number) => void;
|
|
1379
1316
|
readonly rust_zstd_wasm_shim_qsort: (a: number, b: number, c: number, d: number) => void;
|
|
1380
1317
|
readonly rust_zstd_wasm_shim_malloc: (a: number) => number;
|
|
1381
1318
|
readonly rust_zstd_wasm_shim_memcmp: (a: number, b: number, c: number) => number;
|
|
@@ -1395,15 +1332,15 @@ export interface InitOutput {
|
|
|
1395
1332
|
readonly rust_sqlite_wasm_shim_realloc: (a: number, b: number) => number;
|
|
1396
1333
|
readonly rust_sqlite_wasm_shim_calloc: (a: number, b: number) => number;
|
|
1397
1334
|
readonly sqlite3_os_init: () => number;
|
|
1335
|
+
readonly __wbg_intounderlyingsource_free: (a: number, b: number) => void;
|
|
1336
|
+
readonly intounderlyingsource_pull: (a: number, b: any) => any;
|
|
1337
|
+
readonly intounderlyingsource_cancel: (a: number) => void;
|
|
1398
1338
|
readonly __wbg_intounderlyingbytesource_free: (a: number, b: number) => void;
|
|
1399
1339
|
readonly intounderlyingbytesource_type: (a: number) => number;
|
|
1400
1340
|
readonly intounderlyingbytesource_autoAllocateChunkSize: (a: number) => number;
|
|
1401
1341
|
readonly intounderlyingbytesource_start: (a: number, b: any) => void;
|
|
1402
1342
|
readonly intounderlyingbytesource_pull: (a: number, b: any) => any;
|
|
1403
1343
|
readonly intounderlyingbytesource_cancel: (a: number) => void;
|
|
1404
|
-
readonly __wbg_intounderlyingsource_free: (a: number, b: number) => void;
|
|
1405
|
-
readonly intounderlyingsource_pull: (a: number, b: any) => any;
|
|
1406
|
-
readonly intounderlyingsource_cancel: (a: number) => void;
|
|
1407
1344
|
readonly __wbg_intounderlyingsink_free: (a: number, b: number) => void;
|
|
1408
1345
|
readonly intounderlyingsink_write: (a: number, b: any) => any;
|
|
1409
1346
|
readonly intounderlyingsink_close: (a: number) => any;
|
|
@@ -1418,11 +1355,11 @@ export interface InitOutput {
|
|
|
1418
1355
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
1419
1356
|
readonly __wbindgen_export_7: WebAssembly.Table;
|
|
1420
1357
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
1421
|
-
readonly
|
|
1422
|
-
readonly
|
|
1423
|
-
readonly
|
|
1424
|
-
readonly
|
|
1425
|
-
readonly
|
|
1358
|
+
readonly wasm_bindgen__convert__closures_____invoke__hf1da1e5ad7398b09: (a: number, b: number) => void;
|
|
1359
|
+
readonly wasm_bindgen__convert__closures_____invoke__h7637509b4f7e8710: (a: number, b: number) => void;
|
|
1360
|
+
readonly wasm_bindgen__convert__closures_____invoke__hfa5440517c90e88d: (a: number, b: number) => void;
|
|
1361
|
+
readonly closure5613_externref_shim: (a: number, b: number, c: any) => void;
|
|
1362
|
+
readonly closure6580_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
1426
1363
|
readonly __wbindgen_start: () => void;
|
|
1427
1364
|
}
|
|
1428
1365
|
|