@xmtp/wasm-bindings 1.6.1-rc1 → 1.6.1-rc3
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 +642 -631
- package/dist/bindings_wasm.js +1129 -1081
- package/dist/bindings_wasm_bg.wasm +0 -0
- package/dist/bindings_wasm_bg.wasm.d.ts +514 -510
- package/dist/version.json +2 -2
- 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
|
|
3
|
+
export function encodeMultiRemoteAttachment(multiRemoteAttachment: MultiRemoteAttachment): Uint8Array;
|
|
4
|
+
export function decodeMultiRemoteAttachment(bytes: Uint8Array): MultiRemoteAttachment;
|
|
4
5
|
export function decodeReaction(bytes: Uint8Array): Reaction;
|
|
5
|
-
export function
|
|
6
|
-
export function generateInboxId(accountIdentifier: Identifier): string;
|
|
7
|
-
export function verifySignedWithPublicKey(signature_text: string, signature_bytes: Uint8Array, public_key: Uint8Array): void;
|
|
6
|
+
export function encodeReaction(reaction: Reaction): Uint8Array;
|
|
8
7
|
export function revokeInstallationsSignatureRequest(v3_host: string, gateway_host: string | null | undefined, recovery_identifier: Identifier, inbox_id: string, installation_ids: Uint8Array[]): SignatureRequestHandle;
|
|
8
|
+
export function verifySignedWithPublicKey(signature_text: string, signature_bytes: Uint8Array, public_key: Uint8Array): void;
|
|
9
9
|
export function applySignatureRequest(v3_host: string, gateway_host: string | null | undefined, signature_request: SignatureRequestHandle): Promise<void>;
|
|
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 encodeMultiRemoteAttachment(multiRemoteAttachment: MultiRemoteAttachment): Uint8Array;
|
|
12
|
-
export function decodeMultiRemoteAttachment(bytes: Uint8Array): MultiRemoteAttachment;
|
|
13
10
|
export function inboxStateFromInboxIds(v3_host: string, gateway_host: string | null | undefined, inbox_ids: string[]): Promise<InboxState[]>;
|
|
11
|
+
export function createClient(host: string, inbox_id: string, account_identifier: Identifier, db_path?: string | null, encryption_key?: Uint8Array | null, device_sync_server_url?: string | null, device_sync_worker_mode?: DeviceSyncWorkerMode | null, log_options?: LogOptions | null, allow_offline?: boolean | null, disable_events?: boolean | null, app_version?: string | null, gateway_host?: string | null): Promise<Client>;
|
|
12
|
+
export function getInboxIdForIdentifier(v3_host: string, gateway_host: string | null | undefined, accountIdentifier: Identifier): Promise<string | undefined>;
|
|
13
|
+
export function generateInboxId(accountIdentifier: Identifier): string;
|
|
14
14
|
/**
|
|
15
15
|
* Entry point invoked by JavaScript in a worker.
|
|
16
16
|
*/
|
|
@@ -63,6 +63,10 @@ export enum GroupPermissionsOptions {
|
|
|
63
63
|
AdminOnly = 1,
|
|
64
64
|
CustomPolicy = 2,
|
|
65
65
|
}
|
|
66
|
+
export enum ListConversationsOrderBy {
|
|
67
|
+
CreatedAt = 0,
|
|
68
|
+
LastActivity = 1,
|
|
69
|
+
}
|
|
66
70
|
export enum MetadataField {
|
|
67
71
|
GroupName = 0,
|
|
68
72
|
Description = 1,
|
|
@@ -172,34 +176,18 @@ export class Client {
|
|
|
172
176
|
private constructor();
|
|
173
177
|
free(): void;
|
|
174
178
|
[Symbol.dispose](): void;
|
|
179
|
+
getConsentState(entity_type: ConsentEntityType, entity: string): Promise<ConsentState>;
|
|
180
|
+
setConsentStates(records: Consent[]): Promise<void>;
|
|
181
|
+
registerIdentity(signature_request: SignatureRequestHandle): Promise<void>;
|
|
182
|
+
applySignatureRequest(signature_request: SignatureRequestHandle): Promise<void>;
|
|
183
|
+
signWithInstallationKey(signature_text: string): Uint8Array;
|
|
175
184
|
createInboxSignatureRequest(): SignatureRequestHandle | undefined;
|
|
176
185
|
addWalletSignatureRequest(new_identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
177
186
|
revokeWalletSignatureRequest(identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
178
|
-
|
|
187
|
+
verifySignedWithInstallationKey(signature_text: string, signature_bytes: Uint8Array): void;
|
|
179
188
|
revokeInstallationsSignatureRequest(installation_ids: Uint8Array[]): Promise<SignatureRequestHandle>;
|
|
180
189
|
changeRecoveryIdentifierSignatureRequest(new_recovery_identifier: Identifier): Promise<SignatureRequestHandle>;
|
|
181
|
-
|
|
182
|
-
registerIdentity(signature_request: SignatureRequestHandle): Promise<void>;
|
|
183
|
-
signWithInstallationKey(signature_text: string): Uint8Array;
|
|
184
|
-
verifySignedWithInstallationKey(signature_text: string, signature_bytes: Uint8Array): void;
|
|
185
|
-
setConsentStates(records: Consent[]): Promise<void>;
|
|
186
|
-
getConsentState(entity_type: ConsentEntityType, entity: string): Promise<ConsentState>;
|
|
187
|
-
/**
|
|
188
|
-
* Output booleans should be zipped with the index of input identifiers
|
|
189
|
-
*/
|
|
190
|
-
canMessage(account_identifiers: Identifier[]): Promise<any>;
|
|
191
|
-
sendSyncRequest(): Promise<void>;
|
|
192
|
-
findInboxIdByIdentifier(identifier: Identifier): Promise<string | undefined>;
|
|
193
|
-
inboxStateFromInboxIds(inbox_ids: string[], refresh_from_network: boolean): Promise<InboxState[]>;
|
|
194
|
-
conversations(): Conversations;
|
|
195
|
-
syncPreferences(): Promise<GroupSyncSummary>;
|
|
196
|
-
apiStatistics(): ApiStats;
|
|
197
|
-
apiIdentityStatistics(): IdentityStats;
|
|
198
|
-
apiAggregateStatistics(): string;
|
|
199
|
-
clearAllStatistics(): void;
|
|
200
|
-
uploadDebugArchive(server_url: string): Promise<string>;
|
|
201
|
-
deleteMessage(message_id: Uint8Array): number;
|
|
202
|
-
messageV2(message_id: Uint8Array): Promise<DecodedMessage>;
|
|
190
|
+
revokeAllOtherInstallationsSignatureRequest(): Promise<SignatureRequestHandle>;
|
|
203
191
|
/**
|
|
204
192
|
*
|
|
205
193
|
* * Get the client's inbox state.
|
|
@@ -218,13 +206,29 @@ export class Client {
|
|
|
218
206
|
*
|
|
219
207
|
*/
|
|
220
208
|
getKeyPackageStatusesForInstallationIds(installation_ids: string[]): Promise<any>;
|
|
221
|
-
|
|
222
|
-
|
|
209
|
+
/**
|
|
210
|
+
* Output booleans should be zipped with the index of input identifiers
|
|
211
|
+
*/
|
|
212
|
+
canMessage(account_identifiers: Identifier[]): Promise<any>;
|
|
213
|
+
conversations(): Conversations;
|
|
214
|
+
apiStatistics(): ApiStats;
|
|
215
|
+
deleteMessage(message_id: Uint8Array): number;
|
|
216
|
+
messageV2(message_id: Uint8Array): Promise<DecodedMessage>;
|
|
217
|
+
syncPreferences(): Promise<GroupSyncSummary>;
|
|
218
|
+
sendSyncRequest(): Promise<void>;
|
|
219
|
+
clearAllStatistics(): void;
|
|
220
|
+
uploadDebugArchive(server_url: string): Promise<string>;
|
|
221
|
+
apiIdentityStatistics(): IdentityStats;
|
|
222
|
+
apiAggregateStatistics(): string;
|
|
223
|
+
inboxStateFromInboxIds(inbox_ids: string[], refresh_from_network: boolean): Promise<InboxState[]>;
|
|
224
|
+
findInboxIdByIdentifier(identifier: Identifier): Promise<string | undefined>;
|
|
225
|
+
readonly appVersion: string;
|
|
223
226
|
readonly isRegistered: boolean;
|
|
224
227
|
readonly installationId: string;
|
|
225
|
-
readonly installationIdBytes: Uint8Array;
|
|
226
|
-
readonly appVersion: string;
|
|
227
228
|
readonly libxmtpVersion: string;
|
|
229
|
+
readonly accountIdentifier: Identifier;
|
|
230
|
+
readonly installationIdBytes: Uint8Array;
|
|
231
|
+
readonly inboxId: string;
|
|
228
232
|
}
|
|
229
233
|
export class Consent {
|
|
230
234
|
free(): void;
|
|
@@ -249,57 +253,57 @@ export class Conversation {
|
|
|
249
253
|
[Symbol.dispose](): void;
|
|
250
254
|
consentState(): ConsentState;
|
|
251
255
|
updateConsentState(state: ConsentState): void;
|
|
252
|
-
|
|
253
|
-
|
|
256
|
+
adminList(): string[];
|
|
257
|
+
getDebugInfo(): Promise<any>;
|
|
258
|
+
groupName(): string;
|
|
259
|
+
addMembers(account_identifiers: Identifier[]): Promise<void>;
|
|
260
|
+
listMembers(): Promise<any>;
|
|
261
|
+
removeAdmin(inbox_id: string): Promise<void>;
|
|
262
|
+
createdAtNs(): bigint;
|
|
263
|
+
findMessages(opts?: ListMessagesOptions | null): Promise<Message[]>;
|
|
264
|
+
getHmacKeys(): any;
|
|
265
|
+
countMessages(opts?: ListMessagesOptions | null): Promise<bigint>;
|
|
266
|
+
groupMetadata(): Promise<GroupMetadata>;
|
|
267
|
+
isSuperAdmin(inbox_id: string): boolean;
|
|
268
|
+
removeMembers(account_identifiers: Identifier[]): Promise<void>;
|
|
269
|
+
addSuperAdmin(inbox_id: string): Promise<void>;
|
|
254
270
|
/**
|
|
255
271
|
* send a message without immediately publishing to the delivery service.
|
|
256
272
|
*/
|
|
257
273
|
sendOptimistic(encoded_content: EncodedContent, opts: SendMessageOpts): string;
|
|
274
|
+
dmPeerInboxId(): string;
|
|
258
275
|
/**
|
|
259
276
|
* Publish all unpublished messages
|
|
260
277
|
*/
|
|
261
278
|
publishMessages(): Promise<void>;
|
|
262
|
-
sync(): Promise<void>;
|
|
263
|
-
findMessages(opts?: ListMessagesOptions | null): Promise<Message[]>;
|
|
264
|
-
countMessages(opts?: ListMessagesOptions | null): Promise<bigint>;
|
|
265
|
-
findMessagesWithReactions(opts?: ListMessagesOptions | null): Promise<MessageWithReactions[]>;
|
|
266
|
-
listMembers(): Promise<any>;
|
|
267
|
-
adminList(): string[];
|
|
268
279
|
superAdminList(): string[];
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
addAdmin(inbox_id: string): Promise<void>;
|
|
273
|
-
removeAdmin(inbox_id: string): Promise<void>;
|
|
274
|
-
addSuperAdmin(inbox_id: string): Promise<void>;
|
|
275
|
-
removeSuperAdmin(inbox_id: string): Promise<void>;
|
|
280
|
+
addedByInboxId(): string;
|
|
281
|
+
findMessagesV2(opts?: ListMessagesOptions | null): Promise<DecodedMessage[]>;
|
|
282
|
+
groupDescription(): string;
|
|
276
283
|
groupPermissions(): GroupPermissions;
|
|
277
|
-
addMembersByInboxId(inbox_ids: string[]): Promise<void>;
|
|
278
|
-
removeMembers(account_identifiers: Identifier[]): Promise<void>;
|
|
279
|
-
removeMembersByInboxId(inbox_ids: string[]): Promise<void>;
|
|
280
284
|
updateGroupName(group_name: string): Promise<void>;
|
|
281
|
-
|
|
282
|
-
|
|
285
|
+
findDuplicateDms(): Promise<Conversation[]>;
|
|
286
|
+
pausedForVersion(): string | undefined;
|
|
287
|
+
removeSuperAdmin(inbox_id: string): Promise<void>;
|
|
288
|
+
getLastReadTimes(): Promise<any>;
|
|
283
289
|
groupImageUrlSquare(): string;
|
|
290
|
+
addMembersByInboxId(inbox_ids: string[]): Promise<void>;
|
|
284
291
|
updateGroupDescription(group_description: string): Promise<void>;
|
|
285
|
-
groupDescription(): string;
|
|
286
|
-
stream(callback: any): StreamCloser;
|
|
287
|
-
createdAtNs(): bigint;
|
|
288
|
-
isActive(): boolean;
|
|
289
|
-
pausedForVersion(): string | undefined;
|
|
290
|
-
addedByInboxId(): string;
|
|
291
|
-
groupMetadata(): Promise<GroupMetadata>;
|
|
292
|
-
dmPeerInboxId(): string;
|
|
293
292
|
updatePermissionPolicy(permission_update_type: PermissionUpdateType, permission_policy_option: PermissionPolicy, metadata_field?: MetadataField | null): Promise<void>;
|
|
294
|
-
|
|
295
|
-
|
|
293
|
+
removeMembersByInboxId(inbox_ids: string[]): Promise<void>;
|
|
294
|
+
findMessagesWithReactions(opts?: ListMessagesOptions | null): Promise<MessageWithReactions[]>;
|
|
296
295
|
messageDisappearingSettings(): MessageDisappearingSettings | undefined;
|
|
296
|
+
updateGroupImageUrlSquare(group_image_url_square: string): Promise<void>;
|
|
297
|
+
id(): string;
|
|
297
298
|
isMessageDisappearingEnabled(): boolean;
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
299
|
+
removeMessageDisappearingSettings(): Promise<void>;
|
|
300
|
+
updateMessageDisappearingSettings(settings: MessageDisappearingSettings): Promise<void>;
|
|
301
|
+
send(encoded_content: EncodedContent, opts: SendMessageOpts): Promise<string>;
|
|
302
|
+
sync(): Promise<void>;
|
|
303
|
+
stream(callback: any): StreamCloser;
|
|
304
|
+
isAdmin(inbox_id: string): boolean;
|
|
305
|
+
addAdmin(inbox_id: string): Promise<void>;
|
|
306
|
+
isActive(): boolean;
|
|
303
307
|
}
|
|
304
308
|
export class ConversationDebugInfo {
|
|
305
309
|
private constructor();
|
|
@@ -328,26 +332,27 @@ export class Conversations {
|
|
|
328
332
|
private constructor();
|
|
329
333
|
free(): void;
|
|
330
334
|
[Symbol.dispose](): void;
|
|
331
|
-
createGroupOptimistic(options?: CreateGroupOptions | null): Conversation;
|
|
332
335
|
createGroup(account_identifiers: Identifier[], options?: CreateGroupOptions | null): Promise<Conversation>;
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
createDmByInboxId(inbox_id: string, options?: CreateDMOptions | null): Promise<Conversation>;
|
|
336
|
+
getHmacKeys(): any;
|
|
337
|
+
streamConsent(callback: any): StreamCloser;
|
|
336
338
|
findGroupById(group_id: string): Conversation;
|
|
337
|
-
|
|
339
|
+
createDm(account_identifier: Identifier, options?: CreateDMOptions | null): Promise<Conversation>;
|
|
338
340
|
findMessageById(message_id: string): Message;
|
|
339
|
-
|
|
341
|
+
streamPreferences(callback: any): StreamCloser;
|
|
342
|
+
streamAllMessages(callback: any, conversation_type?: ConversationType | null, consent_states?: any[] | null): StreamCloser;
|
|
340
343
|
syncAllConversations(consent_states?: any[] | null): Promise<GroupSyncSummary>;
|
|
341
|
-
|
|
342
|
-
|
|
344
|
+
createGroupOptimistic(options?: CreateGroupOptions | null): Conversation;
|
|
345
|
+
streamMessageDeletions(callback: any): StreamCloser;
|
|
346
|
+
createGroupByInboxIds(inbox_ids: string[], options?: CreateGroupOptions | null): Promise<Conversation>;
|
|
347
|
+
findDmByTargetInboxId(target_inbox_id: string): Conversation;
|
|
343
348
|
/**
|
|
344
349
|
* Returns a 'ReadableStream' of Conversations
|
|
345
350
|
*/
|
|
346
351
|
streamLocal(conversation_type?: ConversationType | null): Promise<ReadableStream>;
|
|
352
|
+
createDmByInboxId(inbox_id: string, options?: CreateDMOptions | null): Promise<Conversation>;
|
|
353
|
+
list(opts?: ListConversationsOptions | null): Array<any>;
|
|
354
|
+
sync(): Promise<void>;
|
|
347
355
|
stream(callback: any, conversation_type?: ConversationType | null): StreamCloser;
|
|
348
|
-
streamAllMessages(callback: any, conversation_type?: ConversationType | null, consent_states?: any[] | null): StreamCloser;
|
|
349
|
-
streamConsent(callback: any): StreamCloser;
|
|
350
|
-
streamPreferences(callback: any): StreamCloser;
|
|
351
356
|
}
|
|
352
357
|
export class CreateDMOptions {
|
|
353
358
|
free(): void;
|
|
@@ -395,16 +400,16 @@ export class DecodedMessageContent {
|
|
|
395
400
|
private constructor();
|
|
396
401
|
free(): void;
|
|
397
402
|
[Symbol.dispose](): void;
|
|
398
|
-
asText(): TextContent | undefined;
|
|
399
|
-
asReply(): EnrichedReply | undefined;
|
|
400
403
|
asReaction(): ReactionPayload | undefined;
|
|
401
404
|
asAttachment(): Attachment | undefined;
|
|
402
|
-
asRemoteAttachment(): RemoteAttachment | undefined;
|
|
403
|
-
asMultiRemoteAttachment(): MultiRemoteAttachment | undefined;
|
|
404
|
-
asTransactionReference(): TransactionReference | undefined;
|
|
405
|
-
asGroupUpdated(): GroupUpdated | undefined;
|
|
406
405
|
asReadReceipt(): ReadReceipt | undefined;
|
|
406
|
+
asGroupUpdated(): GroupUpdated | undefined;
|
|
407
|
+
asRemoteAttachment(): RemoteAttachment | undefined;
|
|
407
408
|
asWalletSendCalls(): any;
|
|
409
|
+
asTransactionReference(): TransactionReference | undefined;
|
|
410
|
+
asMultiRemoteAttachment(): MultiRemoteAttachment | undefined;
|
|
411
|
+
asText(): TextContent | undefined;
|
|
412
|
+
asReply(): EnrichedReply | undefined;
|
|
408
413
|
asCustom(): EncodedContent | undefined;
|
|
409
414
|
readonly payloadType: PayloadType;
|
|
410
415
|
}
|
|
@@ -425,9 +430,9 @@ export class EnrichedReply {
|
|
|
425
430
|
private constructor();
|
|
426
431
|
free(): void;
|
|
427
432
|
[Symbol.dispose](): void;
|
|
433
|
+
readonly inReplyTo: DecodedMessage | undefined;
|
|
428
434
|
readonly referenceId: string;
|
|
429
435
|
readonly content: DecodedMessageContent;
|
|
430
|
-
readonly inReplyTo: DecodedMessage | undefined;
|
|
431
436
|
}
|
|
432
437
|
export class GroupMember {
|
|
433
438
|
free(): void;
|
|
@@ -450,8 +455,8 @@ export class GroupPermissions {
|
|
|
450
455
|
private constructor();
|
|
451
456
|
free(): void;
|
|
452
457
|
[Symbol.dispose](): void;
|
|
453
|
-
policyType(): GroupPermissionsOptions;
|
|
454
458
|
policySet(): PermissionPolicySet;
|
|
459
|
+
policyType(): GroupPermissionsOptions;
|
|
455
460
|
}
|
|
456
461
|
export class GroupSyncSummary {
|
|
457
462
|
free(): void;
|
|
@@ -513,19 +518,19 @@ export class IntoUnderlyingByteSource {
|
|
|
513
518
|
private constructor();
|
|
514
519
|
free(): void;
|
|
515
520
|
[Symbol.dispose](): void;
|
|
516
|
-
start(controller: ReadableByteStreamController): void;
|
|
517
521
|
pull(controller: ReadableByteStreamController): Promise<any>;
|
|
522
|
+
start(controller: ReadableByteStreamController): void;
|
|
518
523
|
cancel(): void;
|
|
519
|
-
readonly type: ReadableStreamType;
|
|
520
524
|
readonly autoAllocateChunkSize: number;
|
|
525
|
+
readonly type: ReadableStreamType;
|
|
521
526
|
}
|
|
522
527
|
export class IntoUnderlyingSink {
|
|
523
528
|
private constructor();
|
|
524
529
|
free(): void;
|
|
525
530
|
[Symbol.dispose](): void;
|
|
526
|
-
write(chunk: any): Promise<any>;
|
|
527
|
-
close(): Promise<any>;
|
|
528
531
|
abort(reason: any): Promise<any>;
|
|
532
|
+
close(): Promise<any>;
|
|
533
|
+
write(chunk: any): Promise<any>;
|
|
529
534
|
}
|
|
530
535
|
export class IntoUnderlyingSource {
|
|
531
536
|
private constructor();
|
|
@@ -553,7 +558,7 @@ export class Lifetime {
|
|
|
553
558
|
export class ListConversationsOptions {
|
|
554
559
|
free(): void;
|
|
555
560
|
[Symbol.dispose](): void;
|
|
556
|
-
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);
|
|
561
|
+
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, order_by?: ListConversationsOrderBy | null);
|
|
557
562
|
get consentStates(): any[] | undefined;
|
|
558
563
|
set consentStates(value: any[] | null | undefined);
|
|
559
564
|
get conversationType(): ConversationType | undefined;
|
|
@@ -564,6 +569,8 @@ export class ListConversationsOptions {
|
|
|
564
569
|
set createdBeforeNs(value: bigint | null | undefined);
|
|
565
570
|
get includeDuplicateDms(): boolean | undefined;
|
|
566
571
|
set includeDuplicateDms(value: boolean | null | undefined);
|
|
572
|
+
get orderBy(): ListConversationsOrderBy | undefined;
|
|
573
|
+
set orderBy(value: ListConversationsOrderBy | null | undefined);
|
|
567
574
|
get limit(): bigint | undefined;
|
|
568
575
|
set limit(value: bigint | null | undefined);
|
|
569
576
|
}
|
|
@@ -660,45 +667,45 @@ export class Opfs {
|
|
|
660
667
|
private constructor();
|
|
661
668
|
free(): void;
|
|
662
669
|
[Symbol.dispose](): void;
|
|
663
|
-
static
|
|
670
|
+
static wipeFiles(): Promise<void>;
|
|
664
671
|
/**
|
|
665
|
-
*
|
|
672
|
+
* export db file with 'name'
|
|
666
673
|
*/
|
|
667
|
-
static
|
|
674
|
+
static exportFile(name: string): Uint8Array;
|
|
668
675
|
/**
|
|
669
|
-
*
|
|
676
|
+
* Adds n entries to the current pool.
|
|
670
677
|
*/
|
|
671
|
-
static
|
|
672
|
-
static
|
|
678
|
+
static addCapacity(n: number): Promise<number>;
|
|
679
|
+
static getCapacity(): number;
|
|
673
680
|
/**
|
|
674
|
-
*
|
|
681
|
+
* get number of files in pool
|
|
675
682
|
*/
|
|
676
|
-
static
|
|
683
|
+
static getFileCount(): number;
|
|
677
684
|
/**
|
|
678
|
-
*
|
|
685
|
+
* Removes up to n entries from the pool, with the caveat that it can only remove currently-unused entries.
|
|
679
686
|
*/
|
|
680
|
-
static
|
|
687
|
+
static reduceCapacity(n: number): Promise<number>;
|
|
688
|
+
static init_sqlite_opfs(): Promise<void>;
|
|
681
689
|
/**
|
|
682
|
-
*
|
|
690
|
+
* list files in current pool
|
|
683
691
|
*/
|
|
684
|
-
static
|
|
692
|
+
static getFileNames(): string[];
|
|
685
693
|
/**
|
|
686
|
-
*
|
|
694
|
+
* If a virtual file exists with the given name, disassociates it from the pool and returns true, else returns false without side effects.
|
|
687
695
|
*/
|
|
688
|
-
static
|
|
696
|
+
static rm(name: string): boolean;
|
|
689
697
|
/**
|
|
690
|
-
*
|
|
698
|
+
* gets the error from Opfs, if any.
|
|
691
699
|
*/
|
|
692
|
-
static
|
|
693
|
-
static getCapacity(): number;
|
|
700
|
+
static error(): string | undefined;
|
|
694
701
|
/**
|
|
695
|
-
*
|
|
702
|
+
* Check if the global OPFS object has been initialized
|
|
696
703
|
*/
|
|
697
|
-
static
|
|
704
|
+
static exists(): boolean;
|
|
698
705
|
/**
|
|
699
|
-
*
|
|
706
|
+
* import a db file at 'path'
|
|
700
707
|
*/
|
|
701
|
-
static
|
|
708
|
+
static importDb(path: string, bytes: Uint8Array): void;
|
|
702
709
|
}
|
|
703
710
|
export class PasskeySignature {
|
|
704
711
|
private constructor();
|
|
@@ -773,9 +780,9 @@ export class RemoteAttachmentInfo {
|
|
|
773
780
|
set filename(value: string | null | undefined);
|
|
774
781
|
}
|
|
775
782
|
export class SendMessageOpts {
|
|
776
|
-
private constructor();
|
|
777
783
|
free(): void;
|
|
778
784
|
[Symbol.dispose](): void;
|
|
785
|
+
constructor(should_push: boolean);
|
|
779
786
|
shouldPush: boolean;
|
|
780
787
|
}
|
|
781
788
|
export class SignatureRequestHandle {
|
|
@@ -783,19 +790,14 @@ export class SignatureRequestHandle {
|
|
|
783
790
|
free(): void;
|
|
784
791
|
[Symbol.dispose](): void;
|
|
785
792
|
signatureText(): Promise<string>;
|
|
793
|
+
addScwSignature(account_identifier: Identifier, signature_bytes: Uint8Array, chain_id: bigint, block_number?: bigint | null): Promise<void>;
|
|
786
794
|
addEcdsaSignature(signature_bytes: Uint8Array): Promise<void>;
|
|
787
795
|
addPasskeySignature(signature: PasskeySignature): Promise<void>;
|
|
788
|
-
addScwSignature(account_identifier: Identifier, signature_bytes: Uint8Array, chain_id: bigint, block_number?: bigint | null): Promise<void>;
|
|
789
796
|
}
|
|
790
797
|
export class StreamCloser {
|
|
791
798
|
private constructor();
|
|
792
799
|
free(): void;
|
|
793
800
|
[Symbol.dispose](): void;
|
|
794
|
-
/**
|
|
795
|
-
* Signal the stream to end
|
|
796
|
-
* Does not wait for the stream to end.
|
|
797
|
-
*/
|
|
798
|
-
end(): void;
|
|
799
801
|
/**
|
|
800
802
|
* End the stream and `await` for it to shutdown
|
|
801
803
|
* Returns the `Result` of the task.
|
|
@@ -803,6 +805,11 @@ export class StreamCloser {
|
|
|
803
805
|
*/
|
|
804
806
|
endAndWait(): Promise<void>;
|
|
805
807
|
waitForReady(): Promise<void>;
|
|
808
|
+
/**
|
|
809
|
+
* Signal the stream to end
|
|
810
|
+
* Does not wait for the stream to end.
|
|
811
|
+
*/
|
|
812
|
+
end(): void;
|
|
806
813
|
/**
|
|
807
814
|
* Checks if this stream is closed
|
|
808
815
|
*/
|
|
@@ -848,580 +855,584 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
848
855
|
|
|
849
856
|
export interface InitOutput {
|
|
850
857
|
readonly memory: WebAssembly.Memory;
|
|
851
|
-
readonly
|
|
852
|
-
readonly __wbg_get_reaction_reference: (a: number) => [number, number];
|
|
853
|
-
readonly __wbg_set_reaction_reference: (a: number, b: number, c: number) => void;
|
|
854
|
-
readonly __wbg_get_reaction_referenceInboxId: (a: number) => [number, number];
|
|
855
|
-
readonly __wbg_set_reaction_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
856
|
-
readonly __wbg_get_reaction_action: (a: number) => number;
|
|
857
|
-
readonly __wbg_set_reaction_action: (a: number, b: number) => void;
|
|
858
|
-
readonly __wbg_get_reaction_content: (a: number) => [number, number];
|
|
859
|
-
readonly __wbg_set_reaction_content: (a: number, b: number, c: number) => void;
|
|
860
|
-
readonly __wbg_get_reaction_schema: (a: number) => number;
|
|
861
|
-
readonly __wbg_set_reaction_schema: (a: number, b: number) => void;
|
|
862
|
-
readonly reaction_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
863
|
-
readonly encodeReaction: (a: number) => [number, number, number];
|
|
864
|
-
readonly decodeReaction: (a: any) => [number, number, number];
|
|
865
|
-
readonly __wbg_reactionpayload_free: (a: number, b: number) => void;
|
|
866
|
-
readonly __wbg_get_reactionpayload_reference: (a: number) => [number, number];
|
|
867
|
-
readonly __wbg_get_reactionpayload_referenceInboxId: (a: number) => [number, number];
|
|
868
|
-
readonly __wbg_get_reactionpayload_content: (a: number) => [number, number];
|
|
869
|
-
readonly getInboxIdForIdentifier: (a: number, b: number, c: number, d: number, e: any) => any;
|
|
870
|
-
readonly generateInboxId: (a: any) => [number, number, number, number];
|
|
871
|
-
readonly __wbg_signaturerequesthandle_free: (a: number, b: number) => void;
|
|
872
|
-
readonly verifySignedWithPublicKey: (a: number, b: number, c: any, d: any) => [number, number];
|
|
873
|
-
readonly revokeInstallationsSignatureRequest: (a: number, b: number, c: number, d: number, e: any, f: number, g: number, h: number, i: number) => [number, number, number];
|
|
874
|
-
readonly applySignatureRequest: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
875
|
-
readonly __wbg_passkeysignature_free: (a: number, b: number) => void;
|
|
876
|
-
readonly signaturerequesthandle_signatureText: (a: number) => any;
|
|
877
|
-
readonly signaturerequesthandle_addEcdsaSignature: (a: number, b: any) => any;
|
|
878
|
-
readonly signaturerequesthandle_addPasskeySignature: (a: number, b: number) => any;
|
|
879
|
-
readonly signaturerequesthandle_addScwSignature: (a: number, b: any, c: any, d: bigint, e: number, f: bigint) => any;
|
|
880
|
-
readonly client_createInboxSignatureRequest: (a: number) => [number, number, number];
|
|
881
|
-
readonly client_addWalletSignatureRequest: (a: number, b: any) => any;
|
|
882
|
-
readonly client_revokeWalletSignatureRequest: (a: number, b: any) => any;
|
|
883
|
-
readonly client_revokeAllOtherInstallationsSignatureRequest: (a: number) => any;
|
|
884
|
-
readonly client_revokeInstallationsSignatureRequest: (a: number, b: number, c: number) => any;
|
|
885
|
-
readonly client_changeRecoveryIdentifierSignatureRequest: (a: number, b: any) => any;
|
|
886
|
-
readonly client_applySignatureRequest: (a: number, b: number) => any;
|
|
887
|
-
readonly client_registerIdentity: (a: number, b: number) => any;
|
|
888
|
-
readonly client_signWithInstallationKey: (a: number, b: number, c: number) => [number, number, number];
|
|
889
|
-
readonly client_verifySignedWithInstallationKey: (a: number, b: number, c: number, d: any) => [number, number];
|
|
890
|
-
readonly __wbg_streamcloser_free: (a: number, b: number) => void;
|
|
891
|
-
readonly streamcloser_end: (a: number) => void;
|
|
892
|
-
readonly streamcloser_endAndWait: (a: number) => any;
|
|
893
|
-
readonly streamcloser_waitForReady: (a: number) => any;
|
|
894
|
-
readonly streamcloser_isClosed: (a: number) => number;
|
|
895
|
-
readonly __wbg_set_reactionpayload_reference: (a: number, b: number, c: number) => void;
|
|
896
|
-
readonly __wbg_set_reactionpayload_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
897
|
-
readonly __wbg_set_reactionpayload_content: (a: number, b: number, c: number) => void;
|
|
898
|
-
readonly __wbg_set_reactionpayload_action: (a: number, b: number) => void;
|
|
899
|
-
readonly __wbg_set_reactionpayload_schema: (a: number, b: number) => void;
|
|
900
|
-
readonly __wbg_get_reactionpayload_action: (a: number) => number;
|
|
901
|
-
readonly __wbg_get_reactionpayload_schema: (a: number) => number;
|
|
902
|
-
readonly __wbg_decodedmessagecontent_free: (a: number, b: number) => void;
|
|
903
|
-
readonly decodedmessagecontent_payloadType: (a: number) => number;
|
|
904
|
-
readonly decodedmessagecontent_asText: (a: number) => number;
|
|
905
|
-
readonly decodedmessagecontent_asReply: (a: number) => number;
|
|
906
|
-
readonly decodedmessagecontent_asReaction: (a: number) => number;
|
|
907
|
-
readonly decodedmessagecontent_asAttachment: (a: number) => number;
|
|
908
|
-
readonly decodedmessagecontent_asRemoteAttachment: (a: number) => number;
|
|
909
|
-
readonly decodedmessagecontent_asMultiRemoteAttachment: (a: number) => number;
|
|
910
|
-
readonly decodedmessagecontent_asTransactionReference: (a: number) => number;
|
|
911
|
-
readonly decodedmessagecontent_asGroupUpdated: (a: number) => number;
|
|
912
|
-
readonly decodedmessagecontent_asReadReceipt: (a: number) => number;
|
|
913
|
-
readonly decodedmessagecontent_asWalletSendCalls: (a: number) => [number, number, number];
|
|
914
|
-
readonly decodedmessagecontent_asCustom: (a: number) => number;
|
|
915
|
-
readonly __wbg_enrichedreply_free: (a: number, b: number) => void;
|
|
916
|
-
readonly enrichedreply_referenceId: (a: number) => [number, number];
|
|
917
|
-
readonly enrichedreply_content: (a: number) => number;
|
|
918
|
-
readonly enrichedreply_inReplyTo: (a: number) => number;
|
|
858
|
+
readonly __wbg_attachment_free: (a: number, b: number) => void;
|
|
919
859
|
readonly __wbg_decodedmessage_free: (a: number, b: number) => void;
|
|
860
|
+
readonly __wbg_enrichedreply_free: (a: number, b: number) => void;
|
|
861
|
+
readonly __wbg_get_attachment_content: (a: number) => [number, number];
|
|
862
|
+
readonly __wbg_get_attachment_filename: (a: number) => [number, number];
|
|
863
|
+
readonly __wbg_get_attachment_mimeType: (a: number) => [number, number];
|
|
864
|
+
readonly __wbg_get_decodedmessage_content: (a: number) => number;
|
|
865
|
+
readonly __wbg_get_decodedmessage_content_type: (a: number) => number;
|
|
866
|
+
readonly __wbg_get_decodedmessage_conversation_id: (a: number) => [number, number];
|
|
867
|
+
readonly __wbg_get_decodedmessage_delivery_status: (a: number) => number;
|
|
868
|
+
readonly __wbg_get_decodedmessage_fallback_text: (a: number) => [number, number];
|
|
920
869
|
readonly __wbg_get_decodedmessage_id: (a: number) => [number, number];
|
|
921
|
-
readonly __wbg_set_decodedmessage_id: (a: number, b: number, c: number) => void;
|
|
922
|
-
readonly __wbg_get_decodedmessage_sent_at_ns: (a: number) => bigint;
|
|
923
|
-
readonly __wbg_set_decodedmessage_sent_at_ns: (a: number, b: bigint) => void;
|
|
924
870
|
readonly __wbg_get_decodedmessage_kind: (a: number) => number;
|
|
925
|
-
readonly
|
|
926
|
-
readonly
|
|
927
|
-
readonly __wbg_set_decodedmessage_sender_installation_id: (a: number, b: number, c: number) => void;
|
|
871
|
+
readonly __wbg_get_decodedmessage_num_replies: (a: number) => bigint;
|
|
872
|
+
readonly __wbg_get_decodedmessage_reactions: (a: number) => [number, number];
|
|
928
873
|
readonly __wbg_get_decodedmessage_sender_inbox_id: (a: number) => [number, number];
|
|
929
|
-
readonly
|
|
930
|
-
readonly
|
|
874
|
+
readonly __wbg_get_decodedmessage_sender_installation_id: (a: number) => [number, number];
|
|
875
|
+
readonly __wbg_get_decodedmessage_sent_at_ns: (a: number) => bigint;
|
|
876
|
+
readonly __wbg_get_transactionmetadata_amount: (a: number) => number;
|
|
877
|
+
readonly __wbg_get_transactionmetadata_currency: (a: number) => [number, number];
|
|
878
|
+
readonly __wbg_get_transactionmetadata_decimals: (a: number) => number;
|
|
879
|
+
readonly __wbg_get_transactionmetadata_fromAddress: (a: number) => [number, number];
|
|
880
|
+
readonly __wbg_get_transactionmetadata_toAddress: (a: number) => [number, number];
|
|
881
|
+
readonly __wbg_get_transactionmetadata_transactionType: (a: number) => [number, number];
|
|
882
|
+
readonly __wbg_get_transactionreference_metadata: (a: number) => number;
|
|
883
|
+
readonly __wbg_get_transactionreference_namespace: (a: number) => [number, number];
|
|
884
|
+
readonly __wbg_get_transactionreference_networkId: (a: number) => [number, number];
|
|
885
|
+
readonly __wbg_get_transactionreference_reference: (a: number) => [number, number];
|
|
886
|
+
readonly __wbg_set_attachment_content: (a: number, b: number, c: number) => void;
|
|
887
|
+
readonly __wbg_set_attachment_filename: (a: number, b: number, c: number) => void;
|
|
888
|
+
readonly __wbg_set_attachment_mimeType: (a: number, b: number, c: number) => void;
|
|
889
|
+
readonly __wbg_set_decodedmessage_content: (a: number, b: number) => void;
|
|
931
890
|
readonly __wbg_set_decodedmessage_content_type: (a: number, b: number) => void;
|
|
932
|
-
readonly __wbg_get_decodedmessage_conversation_id: (a: number) => [number, number];
|
|
933
891
|
readonly __wbg_set_decodedmessage_conversation_id: (a: number, b: number, c: number) => void;
|
|
934
|
-
readonly __wbg_get_decodedmessage_content: (a: number) => number;
|
|
935
|
-
readonly __wbg_set_decodedmessage_content: (a: number, b: number) => void;
|
|
936
|
-
readonly __wbg_get_decodedmessage_fallback_text: (a: number) => [number, number];
|
|
937
|
-
readonly __wbg_set_decodedmessage_fallback_text: (a: number, b: number, c: number) => void;
|
|
938
|
-
readonly __wbg_get_decodedmessage_reactions: (a: number) => [number, number];
|
|
939
|
-
readonly __wbg_set_decodedmessage_reactions: (a: number, b: number, c: number) => void;
|
|
940
|
-
readonly __wbg_get_decodedmessage_delivery_status: (a: number) => number;
|
|
941
892
|
readonly __wbg_set_decodedmessage_delivery_status: (a: number, b: number) => void;
|
|
942
|
-
readonly
|
|
893
|
+
readonly __wbg_set_decodedmessage_fallback_text: (a: number, b: number, c: number) => void;
|
|
894
|
+
readonly __wbg_set_decodedmessage_id: (a: number, b: number, c: number) => void;
|
|
895
|
+
readonly __wbg_set_decodedmessage_kind: (a: number, b: number) => void;
|
|
943
896
|
readonly __wbg_set_decodedmessage_num_replies: (a: number, b: bigint) => void;
|
|
944
|
-
readonly
|
|
945
|
-
readonly
|
|
946
|
-
readonly
|
|
947
|
-
readonly
|
|
948
|
-
readonly
|
|
949
|
-
readonly
|
|
950
|
-
readonly
|
|
951
|
-
readonly
|
|
952
|
-
readonly
|
|
953
|
-
readonly
|
|
897
|
+
readonly __wbg_set_decodedmessage_reactions: (a: number, b: number, c: number) => void;
|
|
898
|
+
readonly __wbg_set_decodedmessage_sender_inbox_id: (a: number, b: number, c: number) => void;
|
|
899
|
+
readonly __wbg_set_decodedmessage_sender_installation_id: (a: number, b: number, c: number) => void;
|
|
900
|
+
readonly __wbg_set_decodedmessage_sent_at_ns: (a: number, b: bigint) => void;
|
|
901
|
+
readonly __wbg_set_transactionmetadata_amount: (a: number, b: number) => void;
|
|
902
|
+
readonly __wbg_set_transactionmetadata_currency: (a: number, b: number, c: number) => void;
|
|
903
|
+
readonly __wbg_set_transactionmetadata_decimals: (a: number, b: number) => void;
|
|
904
|
+
readonly __wbg_set_transactionmetadata_fromAddress: (a: number, b: number, c: number) => void;
|
|
905
|
+
readonly __wbg_set_transactionmetadata_toAddress: (a: number, b: number, c: number) => void;
|
|
906
|
+
readonly __wbg_set_transactionmetadata_transactionType: (a: number, b: number, c: number) => void;
|
|
907
|
+
readonly __wbg_set_transactionreference_metadata: (a: number, b: number) => void;
|
|
908
|
+
readonly __wbg_set_transactionreference_namespace: (a: number, b: number, c: number) => void;
|
|
909
|
+
readonly __wbg_set_transactionreference_networkId: (a: number, b: number, c: number) => void;
|
|
910
|
+
readonly __wbg_set_transactionreference_reference: (a: number, b: number, c: number) => void;
|
|
911
|
+
readonly __wbg_transactionmetadata_free: (a: number, b: number) => void;
|
|
912
|
+
readonly __wbg_transactionreference_free: (a: number, b: number) => void;
|
|
913
|
+
readonly enrichedreply_content: (a: number) => number;
|
|
914
|
+
readonly enrichedreply_inReplyTo: (a: number) => number;
|
|
915
|
+
readonly enrichedreply_referenceId: (a: number) => [number, number];
|
|
916
|
+
readonly __wbg_apistats_free: (a: number, b: number) => void;
|
|
954
917
|
readonly __wbg_consent_free: (a: number, b: number) => void;
|
|
918
|
+
readonly __wbg_get_apistats_fetch_key_package: (a: number) => bigint;
|
|
919
|
+
readonly __wbg_get_apistats_query_group_messages: (a: number) => bigint;
|
|
920
|
+
readonly __wbg_get_apistats_query_welcome_messages: (a: number) => bigint;
|
|
921
|
+
readonly __wbg_get_apistats_send_group_messages: (a: number) => bigint;
|
|
922
|
+
readonly __wbg_get_apistats_send_welcome_messages: (a: number) => bigint;
|
|
923
|
+
readonly __wbg_get_apistats_subscribe_messages: (a: number) => bigint;
|
|
924
|
+
readonly __wbg_get_apistats_subscribe_welcomes: (a: number) => bigint;
|
|
925
|
+
readonly __wbg_get_apistats_upload_key_package: (a: number) => bigint;
|
|
926
|
+
readonly __wbg_get_consent_entity: (a: number) => [number, number];
|
|
955
927
|
readonly __wbg_get_consent_entityType: (a: number) => number;
|
|
956
|
-
readonly __wbg_set_consent_entityType: (a: number, b: number) => void;
|
|
957
928
|
readonly __wbg_get_consent_state: (a: number) => number;
|
|
958
|
-
readonly
|
|
959
|
-
readonly
|
|
929
|
+
readonly __wbg_identitystats_free: (a: number, b: number) => void;
|
|
930
|
+
readonly __wbg_opfs_free: (a: number, b: number) => void;
|
|
931
|
+
readonly __wbg_set_apistats_fetch_key_package: (a: number, b: bigint) => void;
|
|
932
|
+
readonly __wbg_set_apistats_query_group_messages: (a: number, b: bigint) => void;
|
|
933
|
+
readonly __wbg_set_apistats_query_welcome_messages: (a: number, b: bigint) => void;
|
|
934
|
+
readonly __wbg_set_apistats_send_group_messages: (a: number, b: bigint) => void;
|
|
935
|
+
readonly __wbg_set_apistats_send_welcome_messages: (a: number, b: bigint) => void;
|
|
936
|
+
readonly __wbg_set_apistats_subscribe_messages: (a: number, b: bigint) => void;
|
|
937
|
+
readonly __wbg_set_apistats_subscribe_welcomes: (a: number, b: bigint) => void;
|
|
938
|
+
readonly __wbg_set_apistats_upload_key_package: (a: number, b: bigint) => void;
|
|
960
939
|
readonly __wbg_set_consent_entity: (a: number, b: number, c: number) => void;
|
|
961
|
-
readonly
|
|
962
|
-
readonly
|
|
940
|
+
readonly __wbg_set_consent_entityType: (a: number, b: number) => void;
|
|
941
|
+
readonly __wbg_set_consent_state: (a: number, b: number) => void;
|
|
942
|
+
readonly __wbg_streamcloser_free: (a: number, b: number) => void;
|
|
963
943
|
readonly client_getConsentState: (a: number, b: number, c: number, d: number) => any;
|
|
944
|
+
readonly client_setConsentStates: (a: number, b: number, c: number) => any;
|
|
945
|
+
readonly consent_new: (a: number, b: number, c: number, d: number) => number;
|
|
964
946
|
readonly conversation_consentState: (a: number) => [number, number, number];
|
|
965
947
|
readonly conversation_updateConsentState: (a: number, b: number) => [number, number];
|
|
966
|
-
readonly
|
|
967
|
-
readonly __wbg_get_sendmessageopts_shouldPush: (a: number) => number;
|
|
968
|
-
readonly __wbg_set_sendmessageopts_shouldPush: (a: number, b: number) => void;
|
|
969
|
-
readonly __wbg_groupmetadata_free: (a: number, b: number) => void;
|
|
970
|
-
readonly groupmetadata_creatorInboxId: (a: number) => [number, number];
|
|
971
|
-
readonly groupmetadata_conversationType: (a: number) => [number, number];
|
|
972
|
-
readonly __wbg_groupmember_free: (a: number, b: number) => void;
|
|
973
|
-
readonly __wbg_get_groupmember_inboxId: (a: number) => [number, number];
|
|
974
|
-
readonly __wbg_get_groupmember_accountIdentifiers: (a: number) => [number, number];
|
|
975
|
-
readonly __wbg_set_groupmember_accountIdentifiers: (a: number, b: number, c: number) => void;
|
|
976
|
-
readonly __wbg_get_groupmember_installationIds: (a: number) => [number, number];
|
|
977
|
-
readonly __wbg_set_groupmember_installationIds: (a: number, b: number, c: number) => void;
|
|
978
|
-
readonly __wbg_get_groupmember_permissionLevel: (a: number) => number;
|
|
979
|
-
readonly __wbg_set_groupmember_permissionLevel: (a: number, b: number) => void;
|
|
980
|
-
readonly __wbg_get_groupmember_consentState: (a: number) => number;
|
|
981
|
-
readonly __wbg_set_groupmember_consentState: (a: number, b: number) => void;
|
|
982
|
-
readonly groupmember_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
983
|
-
readonly __wbg_conversation_free: (a: number, b: number) => void;
|
|
984
|
-
readonly conversation_id: (a: number) => [number, number];
|
|
985
|
-
readonly conversation_send: (a: number, b: number, c: number) => any;
|
|
986
|
-
readonly conversation_sendOptimistic: (a: number, b: number, c: number) => [number, number, number, number];
|
|
987
|
-
readonly conversation_publishMessages: (a: number) => any;
|
|
988
|
-
readonly conversation_sync: (a: number) => any;
|
|
989
|
-
readonly conversation_findMessages: (a: number, b: number) => any;
|
|
990
|
-
readonly conversation_countMessages: (a: number, b: number) => any;
|
|
991
|
-
readonly conversation_findMessagesWithReactions: (a: number, b: number) => any;
|
|
992
|
-
readonly conversation_listMembers: (a: number) => any;
|
|
993
|
-
readonly conversation_adminList: (a: number) => [number, number, number, number];
|
|
994
|
-
readonly conversation_superAdminList: (a: number) => [number, number, number, number];
|
|
995
|
-
readonly conversation_isAdmin: (a: number, b: number, c: number) => [number, number, number];
|
|
996
|
-
readonly conversation_isSuperAdmin: (a: number, b: number, c: number) => [number, number, number];
|
|
997
|
-
readonly conversation_addMembers: (a: number, b: number, c: number) => any;
|
|
998
|
-
readonly conversation_addAdmin: (a: number, b: number, c: number) => any;
|
|
999
|
-
readonly conversation_removeAdmin: (a: number, b: number, c: number) => any;
|
|
1000
|
-
readonly conversation_addSuperAdmin: (a: number, b: number, c: number) => any;
|
|
1001
|
-
readonly conversation_removeSuperAdmin: (a: number, b: number, c: number) => any;
|
|
1002
|
-
readonly conversation_groupPermissions: (a: number) => [number, number, number];
|
|
1003
|
-
readonly conversation_addMembersByInboxId: (a: number, b: number, c: number) => any;
|
|
1004
|
-
readonly conversation_removeMembers: (a: number, b: number, c: number) => any;
|
|
1005
|
-
readonly conversation_removeMembersByInboxId: (a: number, b: number, c: number) => any;
|
|
1006
|
-
readonly conversation_updateGroupName: (a: number, b: number, c: number) => any;
|
|
1007
|
-
readonly conversation_groupName: (a: number) => [number, number, number, number];
|
|
1008
|
-
readonly conversation_updateGroupImageUrlSquare: (a: number, b: number, c: number) => any;
|
|
1009
|
-
readonly conversation_groupImageUrlSquare: (a: number) => [number, number, number, number];
|
|
1010
|
-
readonly conversation_updateGroupDescription: (a: number, b: number, c: number) => any;
|
|
1011
|
-
readonly conversation_groupDescription: (a: number) => [number, number, number, number];
|
|
1012
|
-
readonly conversation_stream: (a: number, b: any) => [number, number, number];
|
|
1013
|
-
readonly conversation_createdAtNs: (a: number) => bigint;
|
|
1014
|
-
readonly conversation_isActive: (a: number) => [number, number, number];
|
|
1015
|
-
readonly conversation_pausedForVersion: (a: number) => [number, number, number, number];
|
|
1016
|
-
readonly conversation_addedByInboxId: (a: number) => [number, number, number, number];
|
|
1017
|
-
readonly conversation_groupMetadata: (a: number) => any;
|
|
1018
|
-
readonly conversation_dmPeerInboxId: (a: number) => [number, number, number, number];
|
|
1019
|
-
readonly conversation_updatePermissionPolicy: (a: number, b: number, c: number, d: number) => any;
|
|
1020
|
-
readonly conversation_updateMessageDisappearingSettings: (a: number, b: number) => any;
|
|
1021
|
-
readonly conversation_removeMessageDisappearingSettings: (a: number) => any;
|
|
1022
|
-
readonly conversation_messageDisappearingSettings: (a: number) => [number, number, number];
|
|
1023
|
-
readonly conversation_isMessageDisappearingEnabled: (a: number) => [number, number, number];
|
|
1024
|
-
readonly conversation_getHmacKeys: (a: number) => [number, number, number];
|
|
1025
|
-
readonly conversation_getDebugInfo: (a: number) => any;
|
|
1026
|
-
readonly conversation_findDuplicateDms: (a: number) => any;
|
|
1027
|
-
readonly conversation_findMessagesV2: (a: number, b: number) => any;
|
|
1028
|
-
readonly conversation_getLastReadTimes: (a: number) => any;
|
|
1029
|
-
readonly __wbg_listmessagesoptions_free: (a: number, b: number) => void;
|
|
1030
|
-
readonly __wbg_get_listmessagesoptions_contentTypes: (a: number) => [number, number];
|
|
1031
|
-
readonly __wbg_set_listmessagesoptions_contentTypes: (a: number, b: number, c: number) => void;
|
|
1032
|
-
readonly __wbg_get_listmessagesoptions_excludeContentTypes: (a: number) => [number, number];
|
|
1033
|
-
readonly __wbg_set_listmessagesoptions_excludeContentTypes: (a: number, b: number, c: number) => void;
|
|
1034
|
-
readonly __wbg_get_listmessagesoptions_sentBeforeNs: (a: number) => [number, bigint];
|
|
1035
|
-
readonly __wbg_set_listmessagesoptions_sentBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
1036
|
-
readonly __wbg_get_listmessagesoptions_sentAfterNs: (a: number) => [number, bigint];
|
|
1037
|
-
readonly __wbg_set_listmessagesoptions_sentAfterNs: (a: number, b: number, c: bigint) => void;
|
|
1038
|
-
readonly __wbg_get_listmessagesoptions_limit: (a: number) => [number, bigint];
|
|
1039
|
-
readonly __wbg_set_listmessagesoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
1040
|
-
readonly __wbg_get_listmessagesoptions_deliveryStatus: (a: number) => number;
|
|
1041
|
-
readonly __wbg_set_listmessagesoptions_deliveryStatus: (a: number, b: number) => void;
|
|
1042
|
-
readonly __wbg_get_listmessagesoptions_direction: (a: number) => number;
|
|
1043
|
-
readonly __wbg_set_listmessagesoptions_direction: (a: number, b: number) => void;
|
|
1044
|
-
readonly __wbg_get_listmessagesoptions_kind: (a: number) => number;
|
|
1045
|
-
readonly __wbg_set_listmessagesoptions_kind: (a: number, b: number) => void;
|
|
1046
|
-
readonly __wbg_get_listmessagesoptions_excludeSenderInboxIds: (a: number) => [number, number];
|
|
1047
|
-
readonly __wbg_set_listmessagesoptions_excludeSenderInboxIds: (a: number, b: number, c: number) => void;
|
|
1048
|
-
readonly listmessagesoptions_new: (a: number, b: bigint, c: number, d: bigint, e: number, f: bigint, g: number, h: number, i: number, j: number, k: number, l: number, m: number, n: number, o: number) => number;
|
|
1049
|
-
readonly __wbg_message_free: (a: number, b: number) => void;
|
|
1050
|
-
readonly __wbg_get_message_id: (a: number) => [number, number];
|
|
1051
|
-
readonly __wbg_set_message_id: (a: number, b: number, c: number) => void;
|
|
1052
|
-
readonly __wbg_get_message_sentAtNs: (a: number) => bigint;
|
|
1053
|
-
readonly __wbg_set_message_sentAtNs: (a: number, b: bigint) => void;
|
|
1054
|
-
readonly __wbg_get_message_convoId: (a: number) => [number, number];
|
|
1055
|
-
readonly __wbg_set_message_convoId: (a: number, b: number, c: number) => void;
|
|
1056
|
-
readonly __wbg_get_message_senderInboxId: (a: number) => [number, number];
|
|
1057
|
-
readonly __wbg_set_message_senderInboxId: (a: number, b: number, c: number) => void;
|
|
1058
|
-
readonly __wbg_get_message_content: (a: number) => number;
|
|
1059
|
-
readonly __wbg_set_message_content: (a: number, b: number) => void;
|
|
1060
|
-
readonly __wbg_get_message_kind: (a: number) => number;
|
|
1061
|
-
readonly __wbg_set_message_kind: (a: number, b: number) => void;
|
|
1062
|
-
readonly __wbg_get_message_deliveryStatus: (a: number) => number;
|
|
1063
|
-
readonly __wbg_set_message_deliveryStatus: (a: number, b: number) => void;
|
|
1064
|
-
readonly message_new: (a: number, b: number, c: bigint, d: number, e: number, f: number, g: number, h: number, i: number, j: number) => number;
|
|
1065
|
-
readonly __wbg_messagewithreactions_free: (a: number, b: number) => void;
|
|
1066
|
-
readonly __wbg_get_messagewithreactions_message: (a: number) => number;
|
|
1067
|
-
readonly __wbg_set_messagewithreactions_message: (a: number, b: number) => void;
|
|
1068
|
-
readonly __wbg_get_messagewithreactions_reactions: (a: number) => [number, number];
|
|
1069
|
-
readonly __wbg_set_messagewithreactions_reactions: (a: number, b: number, c: number) => void;
|
|
1070
|
-
readonly __wbg_opfs_free: (a: number, b: number) => void;
|
|
1071
|
-
readonly opfs_init_sqlite_opfs: () => any;
|
|
1072
|
-
readonly opfs_exists: () => number;
|
|
948
|
+
readonly opfs_addCapacity: (a: number) => any;
|
|
1073
949
|
readonly opfs_error: () => [number, number];
|
|
1074
|
-
readonly
|
|
1075
|
-
readonly opfs_rm: (a: number, b: number) => [number, number, number];
|
|
1076
|
-
readonly opfs_getFileNames: () => [number, number];
|
|
1077
|
-
readonly opfs_importDb: (a: number, b: number, c: number, d: number) => [number, number];
|
|
950
|
+
readonly opfs_exists: () => number;
|
|
1078
951
|
readonly opfs_exportFile: (a: number, b: number) => [number, number, number, number];
|
|
1079
|
-
readonly opfs_getFileCount: () => number;
|
|
1080
952
|
readonly opfs_getCapacity: () => number;
|
|
1081
|
-
readonly
|
|
953
|
+
readonly opfs_getFileCount: () => number;
|
|
954
|
+
readonly opfs_getFileNames: () => [number, number];
|
|
955
|
+
readonly opfs_importDb: (a: number, b: number, c: number, d: number) => [number, number];
|
|
956
|
+
readonly opfs_init_sqlite_opfs: () => any;
|
|
1082
957
|
readonly opfs_reduceCapacity: (a: number) => any;
|
|
1083
|
-
readonly
|
|
1084
|
-
readonly
|
|
1085
|
-
readonly
|
|
1086
|
-
readonly
|
|
1087
|
-
readonly
|
|
1088
|
-
readonly
|
|
1089
|
-
readonly __wbg_get_permissionpolicyset_addAdminPolicy: (a: number) => number;
|
|
1090
|
-
readonly __wbg_set_permissionpolicyset_addAdminPolicy: (a: number, b: number) => void;
|
|
1091
|
-
readonly __wbg_get_permissionpolicyset_removeAdminPolicy: (a: number) => number;
|
|
1092
|
-
readonly __wbg_set_permissionpolicyset_removeAdminPolicy: (a: number, b: number) => void;
|
|
1093
|
-
readonly __wbg_get_permissionpolicyset_updateGroupNamePolicy: (a: number) => number;
|
|
1094
|
-
readonly __wbg_set_permissionpolicyset_updateGroupNamePolicy: (a: number, b: number) => void;
|
|
1095
|
-
readonly __wbg_get_permissionpolicyset_updateGroupDescriptionPolicy: (a: number) => number;
|
|
1096
|
-
readonly __wbg_set_permissionpolicyset_updateGroupDescriptionPolicy: (a: number, b: number) => void;
|
|
1097
|
-
readonly __wbg_get_permissionpolicyset_updateGroupImageUrlSquarePolicy: (a: number) => number;
|
|
1098
|
-
readonly __wbg_set_permissionpolicyset_updateGroupImageUrlSquarePolicy: (a: number, b: number) => void;
|
|
1099
|
-
readonly __wbg_get_permissionpolicyset_updateMessageDisappearingPolicy: (a: number) => number;
|
|
1100
|
-
readonly __wbg_set_permissionpolicyset_updateMessageDisappearingPolicy: (a: number, b: number) => void;
|
|
1101
|
-
readonly permissionpolicyset_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
1102
|
-
readonly __wbg_grouppermissions_free: (a: number, b: number) => void;
|
|
1103
|
-
readonly grouppermissions_policyType: (a: number) => [number, number, number];
|
|
1104
|
-
readonly grouppermissions_policySet: (a: number) => [number, number, number];
|
|
1105
|
-
readonly __wbg_client_free: (a: number, b: number) => void;
|
|
1106
|
-
readonly __wbg_logoptions_free: (a: number, b: number) => void;
|
|
1107
|
-
readonly __wbg_get_logoptions_structured: (a: number) => number;
|
|
1108
|
-
readonly __wbg_set_logoptions_structured: (a: number, b: number) => void;
|
|
1109
|
-
readonly __wbg_get_logoptions_performance: (a: number) => number;
|
|
1110
|
-
readonly __wbg_set_logoptions_performance: (a: number, b: number) => void;
|
|
1111
|
-
readonly __wbg_get_logoptions_level: (a: number) => number;
|
|
1112
|
-
readonly __wbg_set_logoptions_level: (a: number, b: number) => void;
|
|
1113
|
-
readonly logoptions_new: (a: number, b: number, c: number) => number;
|
|
1114
|
-
readonly __wbg_groupsyncsummary_free: (a: number, b: number) => void;
|
|
1115
|
-
readonly __wbg_get_groupsyncsummary_numEligible: (a: number) => number;
|
|
1116
|
-
readonly __wbg_set_groupsyncsummary_numEligible: (a: number, b: number) => void;
|
|
1117
|
-
readonly __wbg_get_groupsyncsummary_numSynced: (a: number) => number;
|
|
1118
|
-
readonly __wbg_set_groupsyncsummary_numSynced: (a: number, b: number) => void;
|
|
1119
|
-
readonly groupsyncsummary_new: (a: number, b: number) => number;
|
|
1120
|
-
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;
|
|
1121
|
-
readonly client_accountIdentifier: (a: number) => any;
|
|
1122
|
-
readonly client_inboxId: (a: number) => [number, number];
|
|
1123
|
-
readonly client_isRegistered: (a: number) => number;
|
|
1124
|
-
readonly client_installationId: (a: number) => [number, number];
|
|
1125
|
-
readonly client_installationIdBytes: (a: number) => any;
|
|
1126
|
-
readonly client_appVersion: (a: number) => [number, number];
|
|
1127
|
-
readonly client_libxmtpVersion: (a: number) => [number, number];
|
|
1128
|
-
readonly client_canMessage: (a: number, b: number, c: number) => any;
|
|
1129
|
-
readonly client_sendSyncRequest: (a: number) => any;
|
|
1130
|
-
readonly client_findInboxIdByIdentifier: (a: number, b: any) => any;
|
|
1131
|
-
readonly client_inboxStateFromInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
1132
|
-
readonly client_conversations: (a: number) => number;
|
|
1133
|
-
readonly client_syncPreferences: (a: number) => any;
|
|
1134
|
-
readonly client_apiStatistics: (a: number) => number;
|
|
1135
|
-
readonly client_apiIdentityStatistics: (a: number) => number;
|
|
1136
|
-
readonly client_apiAggregateStatistics: (a: number) => [number, number];
|
|
1137
|
-
readonly client_clearAllStatistics: (a: number) => void;
|
|
1138
|
-
readonly client_uploadDebugArchive: (a: number, b: number, c: number) => any;
|
|
1139
|
-
readonly client_deleteMessage: (a: number, b: number, c: number) => [number, number, number];
|
|
1140
|
-
readonly client_messageV2: (a: number, b: number, c: number) => any;
|
|
1141
|
-
readonly __wbg_remoteattachmentinfo_free: (a: number, b: number) => void;
|
|
1142
|
-
readonly __wbg_get_remoteattachmentinfo_secret: (a: number) => any;
|
|
1143
|
-
readonly __wbg_set_remoteattachmentinfo_secret: (a: number, b: any) => void;
|
|
1144
|
-
readonly __wbg_get_remoteattachmentinfo_contentDigest: (a: number) => [number, number];
|
|
1145
|
-
readonly __wbg_set_remoteattachmentinfo_contentDigest: (a: number, b: number, c: number) => void;
|
|
1146
|
-
readonly __wbg_get_remoteattachmentinfo_nonce: (a: number) => any;
|
|
1147
|
-
readonly __wbg_set_remoteattachmentinfo_nonce: (a: number, b: any) => void;
|
|
1148
|
-
readonly __wbg_get_remoteattachmentinfo_scheme: (a: number) => [number, number];
|
|
1149
|
-
readonly __wbg_set_remoteattachmentinfo_scheme: (a: number, b: number, c: number) => void;
|
|
1150
|
-
readonly __wbg_get_remoteattachmentinfo_url: (a: number) => [number, number];
|
|
1151
|
-
readonly __wbg_set_remoteattachmentinfo_url: (a: number, b: number, c: number) => void;
|
|
1152
|
-
readonly __wbg_get_remoteattachmentinfo_salt: (a: number) => any;
|
|
1153
|
-
readonly __wbg_set_remoteattachmentinfo_salt: (a: number, b: any) => void;
|
|
1154
|
-
readonly __wbg_get_remoteattachmentinfo_contentLength: (a: number) => number;
|
|
1155
|
-
readonly __wbg_set_remoteattachmentinfo_contentLength: (a: number, b: number) => void;
|
|
1156
|
-
readonly __wbg_get_remoteattachmentinfo_filename: (a: number) => [number, number];
|
|
1157
|
-
readonly __wbg_set_remoteattachmentinfo_filename: (a: number, b: number, c: number) => void;
|
|
1158
|
-
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;
|
|
1159
|
-
readonly __wbg_multiremoteattachment_free: (a: number, b: number) => void;
|
|
1160
|
-
readonly __wbg_get_multiremoteattachment_attachments: (a: number) => [number, number];
|
|
1161
|
-
readonly __wbg_set_multiremoteattachment_attachments: (a: number, b: number, c: number) => void;
|
|
1162
|
-
readonly multiremoteattachment_new: (a: number, b: number) => number;
|
|
1163
|
-
readonly encodeMultiRemoteAttachment: (a: number) => [number, number, number];
|
|
1164
|
-
readonly decodeMultiRemoteAttachment: (a: any) => [number, number, number];
|
|
1165
|
-
readonly __wbg_apistats_free: (a: number, b: number) => void;
|
|
1166
|
-
readonly __wbg_get_apistats_upload_key_package: (a: number) => bigint;
|
|
1167
|
-
readonly __wbg_set_apistats_upload_key_package: (a: number, b: bigint) => void;
|
|
1168
|
-
readonly __wbg_get_apistats_fetch_key_package: (a: number) => bigint;
|
|
1169
|
-
readonly __wbg_set_apistats_fetch_key_package: (a: number, b: bigint) => void;
|
|
1170
|
-
readonly __wbg_get_apistats_send_group_messages: (a: number) => bigint;
|
|
1171
|
-
readonly __wbg_set_apistats_send_group_messages: (a: number, b: bigint) => void;
|
|
1172
|
-
readonly __wbg_get_apistats_send_welcome_messages: (a: number) => bigint;
|
|
1173
|
-
readonly __wbg_set_apistats_send_welcome_messages: (a: number, b: bigint) => void;
|
|
1174
|
-
readonly __wbg_get_apistats_query_group_messages: (a: number) => bigint;
|
|
1175
|
-
readonly __wbg_set_apistats_query_group_messages: (a: number, b: bigint) => void;
|
|
1176
|
-
readonly __wbg_get_apistats_query_welcome_messages: (a: number) => bigint;
|
|
1177
|
-
readonly __wbg_set_apistats_query_welcome_messages: (a: number, b: bigint) => void;
|
|
1178
|
-
readonly __wbg_get_apistats_subscribe_messages: (a: number) => bigint;
|
|
1179
|
-
readonly __wbg_set_apistats_subscribe_messages: (a: number, b: bigint) => void;
|
|
1180
|
-
readonly __wbg_get_apistats_subscribe_welcomes: (a: number) => bigint;
|
|
1181
|
-
readonly __wbg_set_apistats_subscribe_welcomes: (a: number, b: bigint) => void;
|
|
1182
|
-
readonly __wbg_identitystats_free: (a: number, b: number) => void;
|
|
1183
|
-
readonly __wbg_set_identitystats_publish_identity_update: (a: number, b: bigint) => void;
|
|
958
|
+
readonly opfs_rm: (a: number, b: number) => [number, number, number];
|
|
959
|
+
readonly opfs_wipeFiles: () => any;
|
|
960
|
+
readonly streamcloser_end: (a: number) => void;
|
|
961
|
+
readonly streamcloser_endAndWait: (a: number) => any;
|
|
962
|
+
readonly streamcloser_isClosed: (a: number) => number;
|
|
963
|
+
readonly streamcloser_waitForReady: (a: number) => any;
|
|
1184
964
|
readonly __wbg_set_identitystats_get_identity_updates_v2: (a: number, b: bigint) => void;
|
|
1185
965
|
readonly __wbg_set_identitystats_get_inbox_ids: (a: number, b: bigint) => void;
|
|
966
|
+
readonly __wbg_set_identitystats_publish_identity_update: (a: number, b: bigint) => void;
|
|
1186
967
|
readonly __wbg_set_identitystats_verify_smart_contract_wallet_signature: (a: number, b: bigint) => void;
|
|
1187
|
-
readonly __wbg_get_identitystats_publish_identity_update: (a: number) => bigint;
|
|
1188
968
|
readonly __wbg_get_identitystats_get_identity_updates_v2: (a: number) => bigint;
|
|
1189
969
|
readonly __wbg_get_identitystats_get_inbox_ids: (a: number) => bigint;
|
|
970
|
+
readonly __wbg_get_identitystats_publish_identity_update: (a: number) => bigint;
|
|
1190
971
|
readonly __wbg_get_identitystats_verify_smart_contract_wallet_signature: (a: number) => bigint;
|
|
1191
|
-
readonly
|
|
1192
|
-
readonly
|
|
1193
|
-
readonly
|
|
1194
|
-
readonly
|
|
1195
|
-
readonly
|
|
1196
|
-
readonly
|
|
1197
|
-
readonly
|
|
1198
|
-
readonly
|
|
1199
|
-
readonly
|
|
1200
|
-
readonly
|
|
1201
|
-
readonly
|
|
1202
|
-
readonly
|
|
1203
|
-
readonly
|
|
1204
|
-
readonly
|
|
1205
|
-
readonly
|
|
1206
|
-
readonly
|
|
1207
|
-
readonly
|
|
1208
|
-
readonly
|
|
1209
|
-
readonly
|
|
1210
|
-
readonly
|
|
1211
|
-
readonly
|
|
1212
|
-
readonly
|
|
1213
|
-
readonly
|
|
1214
|
-
readonly
|
|
1215
|
-
readonly
|
|
1216
|
-
readonly
|
|
1217
|
-
readonly
|
|
1218
|
-
readonly
|
|
1219
|
-
readonly
|
|
1220
|
-
readonly
|
|
1221
|
-
readonly
|
|
1222
|
-
readonly
|
|
1223
|
-
readonly
|
|
1224
|
-
readonly __wbg_set_transactionreference_networkId: (a: number, b: number, c: number) => void;
|
|
1225
|
-
readonly __wbg_get_transactionreference_reference: (a: number) => [number, number];
|
|
1226
|
-
readonly __wbg_set_transactionreference_reference: (a: number, b: number, c: number) => void;
|
|
1227
|
-
readonly __wbg_get_transactionreference_metadata: (a: number) => number;
|
|
1228
|
-
readonly __wbg_set_transactionreference_metadata: (a: number, b: number) => void;
|
|
1229
|
-
readonly __wbg_transactionmetadata_free: (a: number, b: number) => void;
|
|
1230
|
-
readonly __wbg_get_transactionmetadata_transactionType: (a: number) => [number, number];
|
|
1231
|
-
readonly __wbg_get_transactionmetadata_currency: (a: number) => [number, number];
|
|
1232
|
-
readonly __wbg_get_transactionmetadata_amount: (a: number) => number;
|
|
1233
|
-
readonly __wbg_set_transactionmetadata_amount: (a: number, b: number) => void;
|
|
1234
|
-
readonly __wbg_get_transactionmetadata_decimals: (a: number) => number;
|
|
1235
|
-
readonly __wbg_set_transactionmetadata_decimals: (a: number, b: number) => void;
|
|
1236
|
-
readonly __wbg_get_transactionmetadata_fromAddress: (a: number) => [number, number];
|
|
1237
|
-
readonly __wbg_get_transactionmetadata_toAddress: (a: number) => [number, number];
|
|
1238
|
-
readonly __wbg_listconversationsoptions_free: (a: number, b: number) => void;
|
|
972
|
+
readonly __wbg_contenttypeid_free: (a: number, b: number) => void;
|
|
973
|
+
readonly __wbg_conversationdebuginfo_free: (a: number, b: number) => void;
|
|
974
|
+
readonly __wbg_conversationlistitem_free: (a: number, b: number) => void;
|
|
975
|
+
readonly __wbg_conversations_free: (a: number, b: number) => void;
|
|
976
|
+
readonly __wbg_createdmoptions_free: (a: number, b: number) => void;
|
|
977
|
+
readonly __wbg_creategroupoptions_free: (a: number, b: number) => void;
|
|
978
|
+
readonly __wbg_encodedcontent_free: (a: number, b: number) => void;
|
|
979
|
+
readonly __wbg_get_contenttypeid_authorityId: (a: number) => [number, number];
|
|
980
|
+
readonly __wbg_get_contenttypeid_typeId: (a: number) => [number, number];
|
|
981
|
+
readonly __wbg_get_contenttypeid_versionMajor: (a: number) => number;
|
|
982
|
+
readonly __wbg_get_contenttypeid_versionMinor: (a: number) => number;
|
|
983
|
+
readonly __wbg_get_conversationdebuginfo_cursor: (a: number) => [number, number];
|
|
984
|
+
readonly __wbg_get_conversationdebuginfo_epoch: (a: number) => bigint;
|
|
985
|
+
readonly __wbg_get_conversationdebuginfo_forkDetails: (a: number) => [number, number];
|
|
986
|
+
readonly __wbg_get_conversationdebuginfo_isCommitLogForked: (a: number) => number;
|
|
987
|
+
readonly __wbg_get_conversationdebuginfo_localCommitLog: (a: number) => [number, number];
|
|
988
|
+
readonly __wbg_get_conversationdebuginfo_maybeForked: (a: number) => number;
|
|
989
|
+
readonly __wbg_get_conversationdebuginfo_remoteCommitLog: (a: number) => [number, number];
|
|
990
|
+
readonly __wbg_get_conversationlistitem_conversation: (a: number) => number;
|
|
991
|
+
readonly __wbg_get_conversationlistitem_isCommitLogForked: (a: number) => number;
|
|
992
|
+
readonly __wbg_get_conversationlistitem_lastMessage: (a: number) => number;
|
|
993
|
+
readonly __wbg_get_createdmoptions_messageDisappearingSettings: (a: number) => number;
|
|
994
|
+
readonly __wbg_get_creategroupoptions_customPermissionPolicySet: (a: number) => number;
|
|
995
|
+
readonly __wbg_get_creategroupoptions_groupDescription: (a: number) => [number, number];
|
|
996
|
+
readonly __wbg_get_creategroupoptions_groupImageUrlSquare: (a: number) => [number, number];
|
|
997
|
+
readonly __wbg_get_creategroupoptions_groupName: (a: number) => [number, number];
|
|
998
|
+
readonly __wbg_get_creategroupoptions_permissions: (a: number) => number;
|
|
999
|
+
readonly __wbg_get_encodedcontent_compression: (a: number) => number;
|
|
1000
|
+
readonly __wbg_get_encodedcontent_content: (a: number) => any;
|
|
1001
|
+
readonly __wbg_get_encodedcontent_fallback: (a: number) => [number, number];
|
|
1002
|
+
readonly __wbg_get_encodedcontent_parameters: (a: number) => any;
|
|
1003
|
+
readonly __wbg_get_encodedcontent_type: (a: number) => number;
|
|
1004
|
+
readonly __wbg_get_hmackey_key: (a: number) => [number, number];
|
|
1239
1005
|
readonly __wbg_get_listconversationsoptions_consentStates: (a: number) => [number, number];
|
|
1240
|
-
readonly __wbg_set_listconversationsoptions_consentStates: (a: number, b: number, c: number) => void;
|
|
1241
1006
|
readonly __wbg_get_listconversationsoptions_conversationType: (a: number) => number;
|
|
1242
|
-
readonly
|
|
1007
|
+
readonly __wbg_get_listconversationsoptions_createdAfterNs: (a: number) => [number, bigint];
|
|
1243
1008
|
readonly __wbg_get_listconversationsoptions_createdBeforeNs: (a: number) => [number, bigint];
|
|
1244
|
-
readonly __wbg_set_listconversationsoptions_createdBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
1245
1009
|
readonly __wbg_get_listconversationsoptions_includeDuplicateDms: (a: number) => number;
|
|
1246
|
-
readonly __wbg_set_listconversationsoptions_includeDuplicateDms: (a: number, b: number) => void;
|
|
1247
1010
|
readonly __wbg_get_listconversationsoptions_limit: (a: number) => [number, bigint];
|
|
1248
|
-
readonly
|
|
1249
|
-
readonly
|
|
1250
|
-
readonly
|
|
1251
|
-
readonly
|
|
1011
|
+
readonly __wbg_get_listconversationsoptions_orderBy: (a: number) => number;
|
|
1012
|
+
readonly __wbg_get_listmessagesoptions_contentTypes: (a: number) => [number, number];
|
|
1013
|
+
readonly __wbg_get_listmessagesoptions_deliveryStatus: (a: number) => number;
|
|
1014
|
+
readonly __wbg_get_listmessagesoptions_direction: (a: number) => number;
|
|
1015
|
+
readonly __wbg_get_listmessagesoptions_excludeContentTypes: (a: number) => [number, number];
|
|
1016
|
+
readonly __wbg_get_listmessagesoptions_excludeSenderInboxIds: (a: number) => [number, number];
|
|
1017
|
+
readonly __wbg_get_listmessagesoptions_kind: (a: number) => number;
|
|
1018
|
+
readonly __wbg_get_message_content: (a: number) => number;
|
|
1019
|
+
readonly __wbg_get_message_convoId: (a: number) => [number, number];
|
|
1020
|
+
readonly __wbg_get_message_deliveryStatus: (a: number) => number;
|
|
1021
|
+
readonly __wbg_get_message_id: (a: number) => [number, number];
|
|
1022
|
+
readonly __wbg_get_message_kind: (a: number) => number;
|
|
1023
|
+
readonly __wbg_get_message_senderInboxId: (a: number) => [number, number];
|
|
1024
|
+
readonly __wbg_get_messagedisappearingsettings_inNs: (a: number) => bigint;
|
|
1025
|
+
readonly __wbg_get_messagewithreactions_message: (a: number) => number;
|
|
1026
|
+
readonly __wbg_get_messagewithreactions_reactions: (a: number) => [number, number];
|
|
1027
|
+
readonly __wbg_get_multiremoteattachment_attachments: (a: number) => [number, number];
|
|
1028
|
+
readonly __wbg_get_reaction_action: (a: number) => number;
|
|
1029
|
+
readonly __wbg_get_reaction_content: (a: number) => [number, number];
|
|
1030
|
+
readonly __wbg_get_reaction_reference: (a: number) => [number, number];
|
|
1031
|
+
readonly __wbg_get_reaction_referenceInboxId: (a: number) => [number, number];
|
|
1032
|
+
readonly __wbg_get_reaction_schema: (a: number) => number;
|
|
1033
|
+
readonly __wbg_get_reactionpayload_content: (a: number) => [number, number];
|
|
1034
|
+
readonly __wbg_get_reactionpayload_reference: (a: number) => [number, number];
|
|
1035
|
+
readonly __wbg_get_reactionpayload_referenceInboxId: (a: number) => [number, number];
|
|
1036
|
+
readonly __wbg_get_remoteattachmentinfo_contentDigest: (a: number) => [number, number];
|
|
1037
|
+
readonly __wbg_get_remoteattachmentinfo_contentLength: (a: number) => number;
|
|
1038
|
+
readonly __wbg_get_remoteattachmentinfo_filename: (a: number) => [number, number];
|
|
1039
|
+
readonly __wbg_get_remoteattachmentinfo_nonce: (a: number) => any;
|
|
1040
|
+
readonly __wbg_get_remoteattachmentinfo_salt: (a: number) => any;
|
|
1041
|
+
readonly __wbg_get_remoteattachmentinfo_scheme: (a: number) => [number, number];
|
|
1042
|
+
readonly __wbg_get_remoteattachmentinfo_url: (a: number) => [number, number];
|
|
1252
1043
|
readonly __wbg_get_xmtpcursor_originator_id: (a: number) => number;
|
|
1253
|
-
readonly
|
|
1254
|
-
readonly
|
|
1255
|
-
readonly
|
|
1044
|
+
readonly __wbg_hmackey_free: (a: number, b: number) => void;
|
|
1045
|
+
readonly __wbg_listconversationsoptions_free: (a: number, b: number) => void;
|
|
1046
|
+
readonly __wbg_listmessagesoptions_free: (a: number, b: number) => void;
|
|
1047
|
+
readonly __wbg_message_free: (a: number, b: number) => void;
|
|
1048
|
+
readonly __wbg_messagedisappearingsettings_free: (a: number, b: number) => void;
|
|
1049
|
+
readonly __wbg_messagewithreactions_free: (a: number, b: number) => void;
|
|
1050
|
+
readonly __wbg_multiremoteattachment_free: (a: number, b: number) => void;
|
|
1051
|
+
readonly __wbg_reaction_free: (a: number, b: number) => void;
|
|
1052
|
+
readonly __wbg_reactionpayload_free: (a: number, b: number) => void;
|
|
1053
|
+
readonly __wbg_remoteattachmentinfo_free: (a: number, b: number) => void;
|
|
1054
|
+
readonly __wbg_set_contenttypeid_authorityId: (a: number, b: number, c: number) => void;
|
|
1055
|
+
readonly __wbg_set_contenttypeid_typeId: (a: number, b: number, c: number) => void;
|
|
1056
|
+
readonly __wbg_set_contenttypeid_versionMajor: (a: number, b: number) => void;
|
|
1057
|
+
readonly __wbg_set_contenttypeid_versionMinor: (a: number, b: number) => void;
|
|
1058
|
+
readonly __wbg_set_conversationdebuginfo_cursor: (a: number, b: number, c: number) => void;
|
|
1256
1059
|
readonly __wbg_set_conversationdebuginfo_epoch: (a: number, b: bigint) => void;
|
|
1257
|
-
readonly __wbg_get_conversationdebuginfo_maybeForked: (a: number) => number;
|
|
1258
|
-
readonly __wbg_set_conversationdebuginfo_maybeForked: (a: number, b: number) => void;
|
|
1259
|
-
readonly __wbg_get_conversationdebuginfo_forkDetails: (a: number) => [number, number];
|
|
1260
1060
|
readonly __wbg_set_conversationdebuginfo_forkDetails: (a: number, b: number, c: number) => void;
|
|
1261
|
-
readonly __wbg_get_conversationdebuginfo_isCommitLogForked: (a: number) => number;
|
|
1262
1061
|
readonly __wbg_set_conversationdebuginfo_isCommitLogForked: (a: number, b: number) => void;
|
|
1263
|
-
readonly __wbg_get_conversationdebuginfo_localCommitLog: (a: number) => [number, number];
|
|
1264
1062
|
readonly __wbg_set_conversationdebuginfo_localCommitLog: (a: number, b: number, c: number) => void;
|
|
1265
|
-
readonly
|
|
1063
|
+
readonly __wbg_set_conversationdebuginfo_maybeForked: (a: number, b: number) => void;
|
|
1266
1064
|
readonly __wbg_set_conversationdebuginfo_remoteCommitLog: (a: number, b: number, c: number) => void;
|
|
1267
|
-
readonly __wbg_get_conversationdebuginfo_cursor: (a: number) => [number, number];
|
|
1268
|
-
readonly __wbg_set_conversationdebuginfo_cursor: (a: number, b: number, c: number) => void;
|
|
1269
|
-
readonly __wbg_creategroupoptions_free: (a: number, b: number) => void;
|
|
1270
|
-
readonly __wbg_get_creategroupoptions_permissions: (a: number) => number;
|
|
1271
|
-
readonly __wbg_set_creategroupoptions_permissions: (a: number, b: number) => void;
|
|
1272
|
-
readonly __wbg_get_creategroupoptions_groupName: (a: number) => [number, number];
|
|
1273
|
-
readonly __wbg_set_creategroupoptions_groupName: (a: number, b: number, c: number) => void;
|
|
1274
|
-
readonly __wbg_get_creategroupoptions_groupImageUrlSquare: (a: number) => [number, number];
|
|
1275
|
-
readonly __wbg_set_creategroupoptions_groupImageUrlSquare: (a: number, b: number, c: number) => void;
|
|
1276
|
-
readonly __wbg_get_creategroupoptions_groupDescription: (a: number) => [number, number];
|
|
1277
|
-
readonly __wbg_set_creategroupoptions_groupDescription: (a: number, b: number, c: number) => void;
|
|
1278
|
-
readonly __wbg_get_creategroupoptions_customPermissionPolicySet: (a: number) => number;
|
|
1279
|
-
readonly __wbg_set_creategroupoptions_customPermissionPolicySet: (a: number, b: number) => void;
|
|
1280
|
-
readonly creategroupoptions_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => number;
|
|
1281
|
-
readonly __wbg_createdmoptions_free: (a: number, b: number) => void;
|
|
1282
|
-
readonly __wbg_get_createdmoptions_messageDisappearingSettings: (a: number) => number;
|
|
1283
|
-
readonly __wbg_set_createdmoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
1284
|
-
readonly createdmoptions_new: (a: number) => number;
|
|
1285
|
-
readonly __wbg_hmackey_free: (a: number, b: number) => void;
|
|
1286
|
-
readonly __wbg_get_hmackey_key: (a: number) => [number, number];
|
|
1287
|
-
readonly __wbg_conversationlistitem_free: (a: number, b: number) => void;
|
|
1288
|
-
readonly __wbg_get_conversationlistitem_conversation: (a: number) => number;
|
|
1289
1065
|
readonly __wbg_set_conversationlistitem_conversation: (a: number, b: number) => void;
|
|
1290
|
-
readonly __wbg_get_conversationlistitem_lastMessage: (a: number) => number;
|
|
1291
|
-
readonly __wbg_set_conversationlistitem_lastMessage: (a: number, b: number) => void;
|
|
1292
|
-
readonly __wbg_get_conversationlistitem_isCommitLogForked: (a: number) => number;
|
|
1293
1066
|
readonly __wbg_set_conversationlistitem_isCommitLogForked: (a: number, b: number) => void;
|
|
1067
|
+
readonly __wbg_set_conversationlistitem_lastMessage: (a: number, b: number) => void;
|
|
1068
|
+
readonly __wbg_set_createdmoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
1069
|
+
readonly __wbg_set_creategroupoptions_customPermissionPolicySet: (a: number, b: number) => void;
|
|
1070
|
+
readonly __wbg_set_creategroupoptions_groupDescription: (a: number, b: number, c: number) => void;
|
|
1071
|
+
readonly __wbg_set_creategroupoptions_groupImageUrlSquare: (a: number, b: number, c: number) => void;
|
|
1072
|
+
readonly __wbg_set_creategroupoptions_groupName: (a: number, b: number, c: number) => void;
|
|
1073
|
+
readonly __wbg_set_creategroupoptions_permissions: (a: number, b: number) => void;
|
|
1074
|
+
readonly __wbg_set_encodedcontent_compression: (a: number, b: number) => void;
|
|
1075
|
+
readonly __wbg_set_encodedcontent_content: (a: number, b: any) => void;
|
|
1076
|
+
readonly __wbg_set_encodedcontent_fallback: (a: number, b: number, c: number) => void;
|
|
1077
|
+
readonly __wbg_set_encodedcontent_parameters: (a: number, b: any) => void;
|
|
1078
|
+
readonly __wbg_set_encodedcontent_type: (a: number, b: number) => void;
|
|
1079
|
+
readonly __wbg_set_listconversationsoptions_consentStates: (a: number, b: number, c: number) => void;
|
|
1080
|
+
readonly __wbg_set_listconversationsoptions_conversationType: (a: number, b: number) => void;
|
|
1081
|
+
readonly __wbg_set_listconversationsoptions_createdAfterNs: (a: number, b: number, c: bigint) => void;
|
|
1082
|
+
readonly __wbg_set_listconversationsoptions_createdBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
1083
|
+
readonly __wbg_set_listconversationsoptions_includeDuplicateDms: (a: number, b: number) => void;
|
|
1084
|
+
readonly __wbg_set_listconversationsoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
1085
|
+
readonly __wbg_set_listconversationsoptions_orderBy: (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_message_content: (a: number, b: number) => void;
|
|
1093
|
+
readonly __wbg_set_message_convoId: (a: number, b: number, c: number) => void;
|
|
1094
|
+
readonly __wbg_set_message_deliveryStatus: (a: number, b: number) => void;
|
|
1095
|
+
readonly __wbg_set_message_id: (a: number, b: number, c: number) => void;
|
|
1096
|
+
readonly __wbg_set_message_kind: (a: number, b: number) => void;
|
|
1097
|
+
readonly __wbg_set_message_senderInboxId: (a: number, b: number, c: number) => void;
|
|
1098
|
+
readonly __wbg_set_messagedisappearingsettings_inNs: (a: number, b: bigint) => void;
|
|
1099
|
+
readonly __wbg_set_messagewithreactions_message: (a: number, b: number) => void;
|
|
1100
|
+
readonly __wbg_set_messagewithreactions_reactions: (a: number, b: number, c: number) => void;
|
|
1101
|
+
readonly __wbg_set_multiremoteattachment_attachments: (a: number, b: number, c: number) => void;
|
|
1102
|
+
readonly __wbg_set_reaction_action: (a: number, b: number) => void;
|
|
1103
|
+
readonly __wbg_set_reaction_schema: (a: number, b: number) => void;
|
|
1104
|
+
readonly __wbg_set_remoteattachmentinfo_contentDigest: (a: number, b: number, c: number) => void;
|
|
1105
|
+
readonly __wbg_set_remoteattachmentinfo_contentLength: (a: number, b: number) => void;
|
|
1106
|
+
readonly __wbg_set_remoteattachmentinfo_filename: (a: number, b: number, c: number) => void;
|
|
1107
|
+
readonly __wbg_set_remoteattachmentinfo_nonce: (a: number, b: any) => void;
|
|
1108
|
+
readonly __wbg_set_remoteattachmentinfo_salt: (a: number, b: any) => void;
|
|
1109
|
+
readonly __wbg_set_remoteattachmentinfo_scheme: (a: number, b: number, c: number) => void;
|
|
1110
|
+
readonly __wbg_set_remoteattachmentinfo_url: (a: number, b: number, c: number) => void;
|
|
1111
|
+
readonly __wbg_set_xmtpcursor_originator_id: (a: number, b: number) => void;
|
|
1112
|
+
readonly __wbg_xmtpcursor_free: (a: number, b: number) => void;
|
|
1113
|
+
readonly contenttypeid_new: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
1294
1114
|
readonly conversationlistitem_new: (a: number, b: number, c: number) => number;
|
|
1295
|
-
readonly __wbg_conversations_free: (a: number, b: number) => void;
|
|
1296
|
-
readonly conversations_createGroupOptimistic: (a: number, b: number) => [number, number, number];
|
|
1297
|
-
readonly conversations_createGroup: (a: number, b: number, c: number, d: number) => any;
|
|
1298
|
-
readonly conversations_createGroupByInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
1299
1115
|
readonly conversations_createDm: (a: number, b: any, c: number) => any;
|
|
1300
1116
|
readonly conversations_createDmByInboxId: (a: number, b: number, c: number, d: number) => any;
|
|
1301
|
-
readonly
|
|
1117
|
+
readonly conversations_createGroup: (a: number, b: number, c: number, d: number) => any;
|
|
1118
|
+
readonly conversations_createGroupByInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
1119
|
+
readonly conversations_createGroupOptimistic: (a: number, b: number) => [number, number, number];
|
|
1302
1120
|
readonly conversations_findDmByTargetInboxId: (a: number, b: number, c: number) => [number, number, number];
|
|
1121
|
+
readonly conversations_findGroupById: (a: number, b: number, c: number) => [number, number, number];
|
|
1303
1122
|
readonly conversations_findMessageById: (a: number, b: number, c: number) => [number, number, number];
|
|
1304
|
-
readonly conversations_sync: (a: number) => any;
|
|
1305
|
-
readonly conversations_syncAllConversations: (a: number, b: number, c: number) => any;
|
|
1306
|
-
readonly conversations_list: (a: number, b: number) => [number, number, number];
|
|
1307
1123
|
readonly conversations_getHmacKeys: (a: number) => [number, number, number];
|
|
1308
|
-
readonly
|
|
1124
|
+
readonly conversations_list: (a: number, b: number) => [number, number, number];
|
|
1309
1125
|
readonly conversations_stream: (a: number, b: any, c: number) => [number, number, number];
|
|
1310
1126
|
readonly conversations_streamAllMessages: (a: number, b: any, c: number, d: number, e: number) => [number, number, number];
|
|
1311
1127
|
readonly conversations_streamConsent: (a: number, b: any) => [number, number, number];
|
|
1128
|
+
readonly conversations_streamLocal: (a: number, b: number) => any;
|
|
1129
|
+
readonly conversations_streamMessageDeletions: (a: number, b: any) => [number, number, number];
|
|
1312
1130
|
readonly conversations_streamPreferences: (a: number, b: any) => [number, number, number];
|
|
1313
|
-
readonly
|
|
1314
|
-
readonly
|
|
1315
|
-
readonly
|
|
1316
|
-
readonly
|
|
1317
|
-
readonly
|
|
1318
|
-
readonly
|
|
1319
|
-
readonly
|
|
1320
|
-
readonly
|
|
1321
|
-
readonly __wbg_set_contenttypeid_versionMinor: (a: number, b: number) => void;
|
|
1322
|
-
readonly contenttypeid_new: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
1323
|
-
readonly __wbg_encodedcontent_free: (a: number, b: number) => void;
|
|
1324
|
-
readonly __wbg_get_encodedcontent_type: (a: number) => number;
|
|
1325
|
-
readonly __wbg_set_encodedcontent_type: (a: number, b: number) => void;
|
|
1326
|
-
readonly __wbg_get_encodedcontent_parameters: (a: number) => any;
|
|
1327
|
-
readonly __wbg_set_encodedcontent_parameters: (a: number, b: any) => void;
|
|
1328
|
-
readonly __wbg_get_encodedcontent_fallback: (a: number) => [number, number];
|
|
1329
|
-
readonly __wbg_set_encodedcontent_fallback: (a: number, b: number, c: number) => void;
|
|
1330
|
-
readonly __wbg_get_encodedcontent_compression: (a: number) => number;
|
|
1331
|
-
readonly __wbg_set_encodedcontent_compression: (a: number, b: number) => void;
|
|
1332
|
-
readonly __wbg_get_encodedcontent_content: (a: number) => any;
|
|
1333
|
-
readonly __wbg_set_encodedcontent_content: (a: number, b: any) => void;
|
|
1131
|
+
readonly conversations_sync: (a: number) => any;
|
|
1132
|
+
readonly conversations_syncAllConversations: (a: number, b: number, c: number) => any;
|
|
1133
|
+
readonly createdmoptions_new: (a: number) => number;
|
|
1134
|
+
readonly creategroupoptions_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => number;
|
|
1135
|
+
readonly decodeMultiRemoteAttachment: (a: any) => [number, number, number];
|
|
1136
|
+
readonly decodeReaction: (a: any) => [number, number, number];
|
|
1137
|
+
readonly encodeMultiRemoteAttachment: (a: number) => [number, number, number];
|
|
1138
|
+
readonly encodeReaction: (a: number) => [number, number, number];
|
|
1334
1139
|
readonly encodedcontent_new: (a: number, b: any, c: number, d: number, e: number, f: any) => number;
|
|
1335
|
-
readonly
|
|
1140
|
+
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;
|
|
1141
|
+
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;
|
|
1142
|
+
readonly message_new: (a: number, b: number, c: bigint, d: number, e: number, f: number, g: number, h: number, i: number, j: number) => number;
|
|
1143
|
+
readonly messagedisappearingsettings_new: (a: bigint, b: bigint) => number;
|
|
1144
|
+
readonly multiremoteattachment_new: (a: number, b: number) => number;
|
|
1145
|
+
readonly reaction_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
1146
|
+
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;
|
|
1147
|
+
readonly __wbg_set_hmackey_key: (a: number, b: number, c: number) => void;
|
|
1148
|
+
readonly __wbg_set_reaction_content: (a: number, b: number, c: number) => void;
|
|
1149
|
+
readonly __wbg_set_reaction_reference: (a: number, b: number, c: number) => void;
|
|
1150
|
+
readonly __wbg_set_reaction_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
1151
|
+
readonly __wbg_set_reactionpayload_content: (a: number, b: number, c: number) => void;
|
|
1152
|
+
readonly __wbg_set_reactionpayload_reference: (a: number, b: number, c: number) => void;
|
|
1153
|
+
readonly __wbg_set_reactionpayload_referenceInboxId: (a: number, b: number, c: number) => void;
|
|
1154
|
+
readonly __wbg_set_reactionpayload_action: (a: number, b: number) => void;
|
|
1155
|
+
readonly __wbg_set_reactionpayload_schema: (a: number, b: number) => void;
|
|
1156
|
+
readonly __wbg_get_reactionpayload_action: (a: number) => number;
|
|
1157
|
+
readonly __wbg_get_reactionpayload_schema: (a: number) => number;
|
|
1158
|
+
readonly __wbg_set_hmackey_epoch: (a: number, b: bigint) => void;
|
|
1159
|
+
readonly __wbg_set_message_sentAtNs: (a: number, b: bigint) => void;
|
|
1160
|
+
readonly __wbg_set_messagedisappearingsettings_fromNs: (a: number, b: bigint) => void;
|
|
1161
|
+
readonly __wbg_set_xmtpcursor_sequence_id: (a: number, b: bigint) => void;
|
|
1162
|
+
readonly __wbg_get_listmessagesoptions_limit: (a: number) => [number, bigint];
|
|
1163
|
+
readonly __wbg_get_listmessagesoptions_sentAfterNs: (a: number) => [number, bigint];
|
|
1164
|
+
readonly __wbg_get_listmessagesoptions_sentBeforeNs: (a: number) => [number, bigint];
|
|
1165
|
+
readonly __wbg_get_remoteattachmentinfo_secret: (a: number) => any;
|
|
1166
|
+
readonly __wbg_get_creategroupoptions_messageDisappearingSettings: (a: number) => number;
|
|
1167
|
+
readonly __wbg_set_listmessagesoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
1168
|
+
readonly __wbg_set_listmessagesoptions_sentAfterNs: (a: number, b: number, c: bigint) => void;
|
|
1169
|
+
readonly __wbg_set_listmessagesoptions_sentBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
1170
|
+
readonly __wbg_set_remoteattachmentinfo_secret: (a: number, b: any) => void;
|
|
1171
|
+
readonly __wbg_get_hmackey_epoch: (a: number) => bigint;
|
|
1172
|
+
readonly __wbg_get_message_sentAtNs: (a: number) => bigint;
|
|
1173
|
+
readonly __wbg_get_messagedisappearingsettings_fromNs: (a: number) => bigint;
|
|
1174
|
+
readonly __wbg_get_xmtpcursor_sequence_id: (a: number) => bigint;
|
|
1175
|
+
readonly __wbg_set_creategroupoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
1176
|
+
readonly __wbg_conversation_free: (a: number, b: number) => void;
|
|
1177
|
+
readonly __wbg_get_groupmember_accountIdentifiers: (a: number) => [number, number];
|
|
1178
|
+
readonly __wbg_get_groupmember_consentState: (a: number) => number;
|
|
1179
|
+
readonly __wbg_get_groupmember_inboxId: (a: number) => [number, number];
|
|
1180
|
+
readonly __wbg_get_groupmember_installationIds: (a: number) => [number, number];
|
|
1181
|
+
readonly __wbg_get_groupmember_permissionLevel: (a: number) => number;
|
|
1182
|
+
readonly __wbg_get_groupupdated_addedInboxes: (a: number) => [number, number];
|
|
1183
|
+
readonly __wbg_get_groupupdated_initiatedByInboxId: (a: number) => [number, number];
|
|
1184
|
+
readonly __wbg_get_groupupdated_metadataFieldChanges: (a: number) => [number, number];
|
|
1185
|
+
readonly __wbg_get_groupupdated_removedInboxes: (a: number) => [number, number];
|
|
1186
|
+
readonly __wbg_get_inbox_inboxId: (a: number) => [number, number];
|
|
1187
|
+
readonly __wbg_get_metadatafieldchange_fieldName: (a: number) => [number, number];
|
|
1188
|
+
readonly __wbg_get_metadatafieldchange_newValue: (a: number) => [number, number];
|
|
1189
|
+
readonly __wbg_get_metadatafieldchange_oldValue: (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_sendmessageopts_shouldPush: (a: number) => number;
|
|
1199
|
+
readonly __wbg_get_textcontent_content: (a: number) => [number, number];
|
|
1200
|
+
readonly __wbg_groupmember_free: (a: number, b: number) => void;
|
|
1201
|
+
readonly __wbg_groupmetadata_free: (a: number, b: number) => void;
|
|
1202
|
+
readonly __wbg_groupupdated_free: (a: number, b: number) => void;
|
|
1203
|
+
readonly __wbg_inbox_free: (a: number, b: number) => void;
|
|
1204
|
+
readonly __wbg_metadatafieldchange_free: (a: number, b: number) => void;
|
|
1205
|
+
readonly __wbg_readreceipt_free: (a: number, b: number) => void;
|
|
1206
|
+
readonly __wbg_remoteattachment_free: (a: number, b: number) => void;
|
|
1207
|
+
readonly __wbg_sendmessageopts_free: (a: number, b: number) => void;
|
|
1208
|
+
readonly __wbg_set_groupmember_accountIdentifiers: (a: number, b: number, c: number) => void;
|
|
1209
|
+
readonly __wbg_set_groupmember_consentState: (a: number, b: number) => void;
|
|
1210
|
+
readonly __wbg_set_groupmember_inboxId: (a: number, b: number, c: number) => void;
|
|
1211
|
+
readonly __wbg_set_groupmember_installationIds: (a: number, b: number, c: number) => void;
|
|
1212
|
+
readonly __wbg_set_groupmember_permissionLevel: (a: number, b: number) => void;
|
|
1213
|
+
readonly __wbg_set_groupupdated_addedInboxes: (a: number, b: number, c: number) => void;
|
|
1214
|
+
readonly __wbg_set_groupupdated_metadataFieldChanges: (a: number, b: number, c: number) => void;
|
|
1215
|
+
readonly __wbg_set_groupupdated_removedInboxes: (a: number, b: number, c: number) => void;
|
|
1216
|
+
readonly __wbg_set_metadatafieldchange_newValue: (a: number, b: number, c: number) => void;
|
|
1217
|
+
readonly __wbg_set_metadatafieldchange_oldValue: (a: number, b: number, c: number) => void;
|
|
1218
|
+
readonly __wbg_set_remoteattachment_contentDigest: (a: number, b: number, c: number) => void;
|
|
1219
|
+
readonly __wbg_set_remoteattachment_contentLength: (a: number, b: bigint) => void;
|
|
1220
|
+
readonly __wbg_set_remoteattachment_filename: (a: number, b: number, c: number) => void;
|
|
1221
|
+
readonly __wbg_set_remoteattachment_nonce: (a: number, b: number, c: number) => void;
|
|
1222
|
+
readonly __wbg_set_remoteattachment_salt: (a: number, b: number, c: number) => void;
|
|
1223
|
+
readonly __wbg_set_remoteattachment_scheme: (a: number, b: number, c: number) => void;
|
|
1224
|
+
readonly __wbg_set_remoteattachment_secret: (a: number, b: number, c: number) => void;
|
|
1225
|
+
readonly __wbg_set_remoteattachment_url: (a: number, b: number, c: number) => void;
|
|
1226
|
+
readonly __wbg_set_sendmessageopts_shouldPush: (a: number, b: number) => void;
|
|
1227
|
+
readonly conversation_addAdmin: (a: number, b: number, c: number) => any;
|
|
1228
|
+
readonly conversation_addMembers: (a: number, b: number, c: number) => any;
|
|
1229
|
+
readonly conversation_addMembersByInboxId: (a: number, b: number, c: number) => any;
|
|
1230
|
+
readonly conversation_addSuperAdmin: (a: number, b: number, c: number) => any;
|
|
1231
|
+
readonly conversation_addedByInboxId: (a: number) => [number, number, number, number];
|
|
1232
|
+
readonly conversation_adminList: (a: number) => [number, number, number, number];
|
|
1233
|
+
readonly conversation_countMessages: (a: number, b: number) => any;
|
|
1234
|
+
readonly conversation_createdAtNs: (a: number) => bigint;
|
|
1235
|
+
readonly conversation_dmPeerInboxId: (a: number) => [number, number, number, number];
|
|
1236
|
+
readonly conversation_findDuplicateDms: (a: number) => any;
|
|
1237
|
+
readonly conversation_findMessages: (a: number, b: number) => any;
|
|
1238
|
+
readonly conversation_findMessagesV2: (a: number, b: number) => any;
|
|
1239
|
+
readonly conversation_findMessagesWithReactions: (a: number, b: number) => any;
|
|
1240
|
+
readonly conversation_getDebugInfo: (a: number) => any;
|
|
1241
|
+
readonly conversation_getHmacKeys: (a: number) => [number, number, number];
|
|
1242
|
+
readonly conversation_getLastReadTimes: (a: number) => any;
|
|
1243
|
+
readonly conversation_groupDescription: (a: number) => [number, number, number, number];
|
|
1244
|
+
readonly conversation_groupImageUrlSquare: (a: number) => [number, number, number, number];
|
|
1245
|
+
readonly conversation_groupMetadata: (a: number) => any;
|
|
1246
|
+
readonly conversation_groupName: (a: number) => [number, number, number, number];
|
|
1247
|
+
readonly conversation_groupPermissions: (a: number) => [number, number, number];
|
|
1248
|
+
readonly conversation_id: (a: number) => [number, number];
|
|
1249
|
+
readonly conversation_isActive: (a: number) => [number, number, number];
|
|
1250
|
+
readonly conversation_isAdmin: (a: number, b: number, c: number) => [number, number, number];
|
|
1251
|
+
readonly conversation_isMessageDisappearingEnabled: (a: number) => [number, number, number];
|
|
1252
|
+
readonly conversation_isSuperAdmin: (a: number, b: number, c: number) => [number, number, number];
|
|
1253
|
+
readonly conversation_listMembers: (a: number) => any;
|
|
1254
|
+
readonly conversation_messageDisappearingSettings: (a: number) => [number, number, number];
|
|
1255
|
+
readonly conversation_pausedForVersion: (a: number) => [number, number, number, number];
|
|
1256
|
+
readonly conversation_publishMessages: (a: number) => any;
|
|
1257
|
+
readonly conversation_removeAdmin: (a: number, b: number, c: number) => any;
|
|
1258
|
+
readonly conversation_removeMembers: (a: number, b: number, c: number) => any;
|
|
1259
|
+
readonly conversation_removeMembersByInboxId: (a: number, b: number, c: number) => any;
|
|
1260
|
+
readonly conversation_removeMessageDisappearingSettings: (a: number) => any;
|
|
1261
|
+
readonly conversation_removeSuperAdmin: (a: number, b: number, c: number) => any;
|
|
1262
|
+
readonly conversation_send: (a: number, b: number, c: number) => any;
|
|
1263
|
+
readonly conversation_sendOptimistic: (a: number, b: number, c: number) => [number, number, number, number];
|
|
1264
|
+
readonly conversation_stream: (a: number, b: any) => [number, number, number];
|
|
1265
|
+
readonly conversation_superAdminList: (a: number) => [number, number, number, number];
|
|
1266
|
+
readonly conversation_sync: (a: number) => any;
|
|
1267
|
+
readonly conversation_updateGroupDescription: (a: number, b: number, c: number) => any;
|
|
1268
|
+
readonly conversation_updateGroupImageUrlSquare: (a: number, b: number, c: number) => any;
|
|
1269
|
+
readonly conversation_updateGroupName: (a: number, b: number, c: number) => any;
|
|
1270
|
+
readonly conversation_updateMessageDisappearingSettings: (a: number, b: number) => any;
|
|
1271
|
+
readonly conversation_updatePermissionPolicy: (a: number, b: number, c: number, d: number) => any;
|
|
1272
|
+
readonly groupmember_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
1273
|
+
readonly groupmetadata_conversationType: (a: number) => [number, number];
|
|
1274
|
+
readonly groupmetadata_creatorInboxId: (a: number) => [number, number];
|
|
1275
|
+
readonly sendmessageopts_new: (a: number) => number;
|
|
1276
|
+
readonly __wbg_set_groupupdated_initiatedByInboxId: (a: number, b: number, c: number) => void;
|
|
1277
|
+
readonly __wbg_set_inbox_inboxId: (a: number, b: number, c: number) => void;
|
|
1278
|
+
readonly __wbg_set_metadatafieldchange_fieldName: (a: number, b: number, c: number) => void;
|
|
1279
|
+
readonly __wbg_set_textcontent_content: (a: number, b: number, c: number) => void;
|
|
1280
|
+
readonly __wbg_textcontent_free: (a: number, b: number) => void;
|
|
1281
|
+
readonly __wbg_get_permissionpolicyset_addAdminPolicy: (a: number) => number;
|
|
1282
|
+
readonly __wbg_get_permissionpolicyset_addMemberPolicy: (a: number) => number;
|
|
1283
|
+
readonly __wbg_get_permissionpolicyset_removeAdminPolicy: (a: number) => number;
|
|
1284
|
+
readonly __wbg_get_permissionpolicyset_removeMemberPolicy: (a: number) => number;
|
|
1285
|
+
readonly __wbg_get_permissionpolicyset_updateGroupDescriptionPolicy: (a: number) => number;
|
|
1286
|
+
readonly __wbg_get_permissionpolicyset_updateGroupImageUrlSquarePolicy: (a: number) => number;
|
|
1287
|
+
readonly __wbg_get_permissionpolicyset_updateGroupNamePolicy: (a: number) => number;
|
|
1288
|
+
readonly __wbg_get_permissionpolicyset_updateMessageDisappearingPolicy: (a: number) => number;
|
|
1289
|
+
readonly __wbg_grouppermissions_free: (a: number, b: number) => void;
|
|
1290
|
+
readonly __wbg_permissionpolicyset_free: (a: number, b: number) => void;
|
|
1291
|
+
readonly __wbg_set_permissionpolicyset_addAdminPolicy: (a: number, b: number) => void;
|
|
1292
|
+
readonly __wbg_set_permissionpolicyset_addMemberPolicy: (a: number, b: number) => void;
|
|
1293
|
+
readonly __wbg_set_permissionpolicyset_removeAdminPolicy: (a: number, b: number) => void;
|
|
1294
|
+
readonly __wbg_set_permissionpolicyset_removeMemberPolicy: (a: number, b: number) => void;
|
|
1295
|
+
readonly __wbg_set_permissionpolicyset_updateGroupDescriptionPolicy: (a: number, b: number) => void;
|
|
1296
|
+
readonly __wbg_set_permissionpolicyset_updateGroupImageUrlSquarePolicy: (a: number, b: number) => void;
|
|
1297
|
+
readonly __wbg_set_permissionpolicyset_updateGroupNamePolicy: (a: number, b: number) => void;
|
|
1298
|
+
readonly __wbg_set_permissionpolicyset_updateMessageDisappearingPolicy: (a: number, b: number) => void;
|
|
1299
|
+
readonly grouppermissions_policySet: (a: number) => [number, number, number];
|
|
1300
|
+
readonly grouppermissions_policyType: (a: number) => [number, number, number];
|
|
1301
|
+
readonly permissionpolicyset_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
1302
|
+
readonly __wbg_decodedmessagecontent_free: (a: number, b: number) => void;
|
|
1303
|
+
readonly decodedmessagecontent_asAttachment: (a: number) => number;
|
|
1304
|
+
readonly decodedmessagecontent_asCustom: (a: number) => number;
|
|
1305
|
+
readonly decodedmessagecontent_asGroupUpdated: (a: number) => number;
|
|
1306
|
+
readonly decodedmessagecontent_asMultiRemoteAttachment: (a: number) => number;
|
|
1307
|
+
readonly decodedmessagecontent_asReaction: (a: number) => number;
|
|
1308
|
+
readonly decodedmessagecontent_asReadReceipt: (a: number) => number;
|
|
1309
|
+
readonly decodedmessagecontent_asRemoteAttachment: (a: number) => number;
|
|
1310
|
+
readonly decodedmessagecontent_asReply: (a: number) => number;
|
|
1311
|
+
readonly decodedmessagecontent_asText: (a: number) => number;
|
|
1312
|
+
readonly decodedmessagecontent_asTransactionReference: (a: number) => number;
|
|
1313
|
+
readonly decodedmessagecontent_asWalletSendCalls: (a: number) => [number, number, number];
|
|
1314
|
+
readonly decodedmessagecontent_payloadType: (a: number) => number;
|
|
1315
|
+
readonly __wbg_client_free: (a: number, b: number) => void;
|
|
1316
|
+
readonly __wbg_get_groupsyncsummary_numEligible: (a: number) => number;
|
|
1317
|
+
readonly __wbg_get_groupsyncsummary_numSynced: (a: number) => number;
|
|
1318
|
+
readonly __wbg_get_inboxstate_accountIdentifiers: (a: number) => [number, number];
|
|
1319
|
+
readonly __wbg_get_inboxstate_inboxId: (a: number) => [number, number];
|
|
1320
|
+
readonly __wbg_get_inboxstate_installations: (a: number) => [number, number];
|
|
1321
|
+
readonly __wbg_get_inboxstate_recoveryIdentifier: (a: number) => any;
|
|
1336
1322
|
readonly __wbg_get_installation_bytes: (a: number) => any;
|
|
1337
|
-
readonly __wbg_set_installation_bytes: (a: number, b: any) => void;
|
|
1338
|
-
readonly __wbg_get_installation_id: (a: number) => [number, number];
|
|
1339
|
-
readonly __wbg_set_installation_id: (a: number, b: number, c: number) => void;
|
|
1340
1323
|
readonly __wbg_get_installation_clientTimestampNs: (a: number) => [number, bigint];
|
|
1341
|
-
readonly
|
|
1342
|
-
readonly
|
|
1324
|
+
readonly __wbg_get_installation_id: (a: number) => [number, number];
|
|
1325
|
+
readonly __wbg_get_keypackagestatus_lifetime: (a: number) => number;
|
|
1326
|
+
readonly __wbg_get_keypackagestatus_validationError: (a: number) => [number, number];
|
|
1327
|
+
readonly __wbg_get_lifetime_not_after: (a: number) => bigint;
|
|
1328
|
+
readonly __wbg_get_lifetime_not_before: (a: number) => bigint;
|
|
1329
|
+
readonly __wbg_get_logoptions_level: (a: number) => number;
|
|
1330
|
+
readonly __wbg_get_logoptions_performance: (a: number) => number;
|
|
1331
|
+
readonly __wbg_get_logoptions_structured: (a: number) => number;
|
|
1332
|
+
readonly __wbg_groupsyncsummary_free: (a: number, b: number) => void;
|
|
1343
1333
|
readonly __wbg_inboxstate_free: (a: number, b: number) => void;
|
|
1344
|
-
readonly
|
|
1345
|
-
readonly __wbg_get_inboxstate_recoveryIdentifier: (a: number) => any;
|
|
1346
|
-
readonly __wbg_set_inboxstate_recoveryIdentifier: (a: number, b: any) => void;
|
|
1347
|
-
readonly __wbg_get_inboxstate_installations: (a: number) => [number, number];
|
|
1348
|
-
readonly __wbg_set_inboxstate_installations: (a: number, b: number, c: number) => void;
|
|
1349
|
-
readonly __wbg_get_inboxstate_accountIdentifiers: (a: number) => [number, number];
|
|
1350
|
-
readonly __wbg_set_inboxstate_accountIdentifiers: (a: number, b: number, c: number) => void;
|
|
1351
|
-
readonly inboxstate_new: (a: number, b: number, c: any, d: number, e: number, f: number, g: number) => number;
|
|
1334
|
+
readonly __wbg_installation_free: (a: number, b: number) => void;
|
|
1352
1335
|
readonly __wbg_keypackagestatus_free: (a: number, b: number) => void;
|
|
1353
|
-
readonly __wbg_get_keypackagestatus_validationError: (a: number) => [number, number];
|
|
1354
|
-
readonly __wbg_set_keypackagestatus_validationError: (a: number, b: number, c: number) => void;
|
|
1355
1336
|
readonly __wbg_lifetime_free: (a: number, b: number) => void;
|
|
1356
|
-
readonly
|
|
1357
|
-
readonly
|
|
1358
|
-
readonly
|
|
1359
|
-
readonly
|
|
1360
|
-
readonly
|
|
1361
|
-
readonly client_getKeyPackageStatusesForInstallationIds: (a: number, b: number, c: number) => any;
|
|
1362
|
-
readonly __wbg_get_creategroupoptions_messageDisappearingSettings: (a: number) => number;
|
|
1363
|
-
readonly __wbg_set_inbox_inboxId: (a: number, b: number, c: number) => void;
|
|
1364
|
-
readonly __wbg_set_metadatafieldchange_fieldName: (a: number, b: number, c: number) => void;
|
|
1365
|
-
readonly __wbg_set_transactionmetadata_transactionType: (a: number, b: number, c: number) => void;
|
|
1366
|
-
readonly __wbg_set_transactionmetadata_currency: (a: number, b: number, c: number) => void;
|
|
1367
|
-
readonly __wbg_set_transactionmetadata_fromAddress: (a: number, b: number, c: number) => void;
|
|
1368
|
-
readonly __wbg_set_transactionmetadata_toAddress: (a: number, b: number, c: number) => void;
|
|
1369
|
-
readonly __wbg_set_remoteattachment_url: (a: number, b: number, c: number) => void;
|
|
1370
|
-
readonly __wbg_set_remoteattachment_contentDigest: (a: number, b: number, c: number) => void;
|
|
1371
|
-
readonly __wbg_set_remoteattachment_secret: (a: number, b: number, c: number) => void;
|
|
1372
|
-
readonly __wbg_set_hmackey_key: (a: number, b: number, c: number) => void;
|
|
1373
|
-
readonly __wbg_set_groupupdated_initiatedByInboxId: (a: number, b: number, c: number) => void;
|
|
1337
|
+
readonly __wbg_logoptions_free: (a: number, b: number) => void;
|
|
1338
|
+
readonly __wbg_passkeysignature_free: (a: number, b: number) => void;
|
|
1339
|
+
readonly __wbg_set_groupsyncsummary_numEligible: (a: number, b: number) => void;
|
|
1340
|
+
readonly __wbg_set_groupsyncsummary_numSynced: (a: number, b: number) => void;
|
|
1341
|
+
readonly __wbg_set_inboxstate_accountIdentifiers: (a: number, b: number, c: number) => void;
|
|
1374
1342
|
readonly __wbg_set_inboxstate_inboxId: (a: number, b: number, c: number) => void;
|
|
1375
|
-
readonly
|
|
1376
|
-
readonly
|
|
1377
|
-
readonly
|
|
1378
|
-
readonly
|
|
1379
|
-
readonly
|
|
1380
|
-
readonly __wbg_set_messagedisappearingsettings_inNs: (a: number, b: bigint) => void;
|
|
1381
|
-
readonly __wbg_set_creategroupoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
1382
|
-
readonly __wbg_get_listconversationsoptions_createdAfterNs: (a: number) => [number, bigint];
|
|
1383
|
-
readonly __wbg_get_remoteattachment_contentLength: (a: number) => bigint;
|
|
1384
|
-
readonly __wbg_get_xmtpcursor_sequence_id: (a: number) => bigint;
|
|
1385
|
-
readonly __wbg_get_messagedisappearingsettings_fromNs: (a: number) => bigint;
|
|
1386
|
-
readonly __wbg_get_hmackey_epoch: (a: number) => bigint;
|
|
1387
|
-
readonly __wbg_get_lifetime_not_before: (a: number) => bigint;
|
|
1388
|
-
readonly __wbg_get_messagedisappearingsettings_inNs: (a: number) => bigint;
|
|
1389
|
-
readonly __wbg_set_listconversationsoptions_createdAfterNs: (a: number, b: number, c: bigint) => void;
|
|
1343
|
+
readonly __wbg_set_inboxstate_installations: (a: number, b: number, c: number) => void;
|
|
1344
|
+
readonly __wbg_set_inboxstate_recoveryIdentifier: (a: number, b: any) => void;
|
|
1345
|
+
readonly __wbg_set_installation_bytes: (a: number, b: any) => void;
|
|
1346
|
+
readonly __wbg_set_installation_clientTimestampNs: (a: number, b: number, c: bigint) => void;
|
|
1347
|
+
readonly __wbg_set_installation_id: (a: number, b: number, c: number) => void;
|
|
1390
1348
|
readonly __wbg_set_keypackagestatus_lifetime: (a: number, b: number) => void;
|
|
1391
|
-
readonly
|
|
1392
|
-
readonly
|
|
1393
|
-
readonly
|
|
1394
|
-
readonly
|
|
1395
|
-
readonly
|
|
1349
|
+
readonly __wbg_set_keypackagestatus_validationError: (a: number, b: number, c: number) => void;
|
|
1350
|
+
readonly __wbg_set_lifetime_not_after: (a: number, b: bigint) => void;
|
|
1351
|
+
readonly __wbg_set_lifetime_not_before: (a: number, b: bigint) => void;
|
|
1352
|
+
readonly __wbg_set_logoptions_level: (a: number, b: number) => void;
|
|
1353
|
+
readonly __wbg_set_logoptions_performance: (a: number, b: number) => void;
|
|
1354
|
+
readonly __wbg_set_logoptions_structured: (a: number, b: number) => void;
|
|
1355
|
+
readonly __wbg_signaturerequesthandle_free: (a: number, b: number) => void;
|
|
1356
|
+
readonly applySignatureRequest: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
1357
|
+
readonly client_accountIdentifier: (a: number) => any;
|
|
1358
|
+
readonly client_addWalletSignatureRequest: (a: number, b: any) => any;
|
|
1359
|
+
readonly client_apiAggregateStatistics: (a: number) => [number, number];
|
|
1360
|
+
readonly client_apiIdentityStatistics: (a: number) => number;
|
|
1361
|
+
readonly client_apiStatistics: (a: number) => number;
|
|
1362
|
+
readonly client_appVersion: (a: number) => [number, number];
|
|
1363
|
+
readonly client_applySignatureRequest: (a: number, b: number) => any;
|
|
1364
|
+
readonly client_canMessage: (a: number, b: number, c: number) => any;
|
|
1365
|
+
readonly client_changeRecoveryIdentifierSignatureRequest: (a: number, b: any) => any;
|
|
1366
|
+
readonly client_clearAllStatistics: (a: number) => void;
|
|
1367
|
+
readonly client_conversations: (a: number) => number;
|
|
1368
|
+
readonly client_createInboxSignatureRequest: (a: number) => [number, number, number];
|
|
1369
|
+
readonly client_deleteMessage: (a: number, b: number, c: number) => [number, number, number];
|
|
1370
|
+
readonly client_findInboxIdByIdentifier: (a: number, b: any) => any;
|
|
1371
|
+
readonly client_getKeyPackageStatusesForInstallationIds: (a: number, b: number, c: number) => any;
|
|
1372
|
+
readonly client_getLatestInboxState: (a: number, b: number, c: number) => any;
|
|
1373
|
+
readonly client_inboxId: (a: number) => [number, number];
|
|
1374
|
+
readonly client_inboxState: (a: number, b: number) => any;
|
|
1375
|
+
readonly client_inboxStateFromInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
1376
|
+
readonly client_installationId: (a: number) => [number, number];
|
|
1377
|
+
readonly client_installationIdBytes: (a: number) => any;
|
|
1378
|
+
readonly client_isRegistered: (a: number) => number;
|
|
1379
|
+
readonly client_libxmtpVersion: (a: number) => [number, number];
|
|
1380
|
+
readonly client_messageV2: (a: number, b: number, c: number) => any;
|
|
1381
|
+
readonly client_registerIdentity: (a: number, b: number) => any;
|
|
1382
|
+
readonly client_revokeAllOtherInstallationsSignatureRequest: (a: number) => any;
|
|
1383
|
+
readonly client_revokeInstallationsSignatureRequest: (a: number, b: number, c: number) => any;
|
|
1384
|
+
readonly client_revokeWalletSignatureRequest: (a: number, b: any) => any;
|
|
1385
|
+
readonly client_sendSyncRequest: (a: number) => any;
|
|
1386
|
+
readonly client_signWithInstallationKey: (a: number, b: number, c: number) => [number, number, number];
|
|
1387
|
+
readonly client_syncPreferences: (a: number) => any;
|
|
1388
|
+
readonly client_uploadDebugArchive: (a: number, b: number, c: number) => any;
|
|
1389
|
+
readonly client_verifySignedWithInstallationKey: (a: number, b: number, c: number, d: any) => [number, number];
|
|
1390
|
+
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;
|
|
1391
|
+
readonly generateInboxId: (a: any) => [number, number, number, number];
|
|
1392
|
+
readonly getInboxIdForIdentifier: (a: number, b: number, c: number, d: number, e: any) => any;
|
|
1393
|
+
readonly groupsyncsummary_new: (a: number, b: number) => number;
|
|
1394
|
+
readonly inboxStateFromInboxIds: (a: number, b: number, c: number, d: number, e: number, f: number) => any;
|
|
1395
|
+
readonly inboxstate_new: (a: number, b: number, c: any, d: number, e: number, f: number, g: number) => number;
|
|
1396
|
+
readonly installation_new: (a: any, b: number, c: number, d: number, e: bigint) => number;
|
|
1397
|
+
readonly logoptions_new: (a: number, b: number, c: number) => number;
|
|
1398
|
+
readonly revokeInstallationsSignatureRequest: (a: number, b: number, c: number, d: number, e: any, f: number, g: number, h: number, i: number) => [number, number, number];
|
|
1399
|
+
readonly signaturerequesthandle_addEcdsaSignature: (a: number, b: any) => any;
|
|
1400
|
+
readonly signaturerequesthandle_addPasskeySignature: (a: number, b: number) => any;
|
|
1401
|
+
readonly signaturerequesthandle_addScwSignature: (a: number, b: any, c: any, d: bigint, e: number, f: bigint) => any;
|
|
1402
|
+
readonly signaturerequesthandle_signatureText: (a: number) => any;
|
|
1403
|
+
readonly verifySignedWithPublicKey: (a: number, b: number, c: any, d: any) => [number, number];
|
|
1396
1404
|
readonly rust_zstd_wasm_shim_calloc: (a: number, b: number) => number;
|
|
1397
1405
|
readonly rust_zstd_wasm_shim_free: (a: number) => void;
|
|
1406
|
+
readonly rust_zstd_wasm_shim_malloc: (a: number) => number;
|
|
1407
|
+
readonly rust_zstd_wasm_shim_memcmp: (a: number, b: number, c: number) => number;
|
|
1398
1408
|
readonly rust_zstd_wasm_shim_memcpy: (a: number, b: number, c: number) => number;
|
|
1399
1409
|
readonly rust_zstd_wasm_shim_memmove: (a: number, b: number, c: number) => number;
|
|
1400
1410
|
readonly rust_zstd_wasm_shim_memset: (a: number, b: number, c: number) => number;
|
|
1401
|
-
readonly
|
|
1402
|
-
readonly rust_sqlite_wasm_shim_tzset_js: (a: number, b: number, c: number, d: number) => void;
|
|
1403
|
-
readonly rust_sqlite_wasm_shim_emscripten_get_now: () => number;
|
|
1404
|
-
readonly rust_sqlite_wasm_shim_wasi_random_get: (a: number, b: number) => number;
|
|
1405
|
-
readonly rust_sqlite_wasm_shim_exit: (a: number) => void;
|
|
1411
|
+
readonly rust_zstd_wasm_shim_qsort: (a: number, b: number, c: number, d: number) => void;
|
|
1406
1412
|
readonly rust_sqlite_wasm_shim_abort_js: () => void;
|
|
1413
|
+
readonly rust_sqlite_wasm_shim_calloc: (a: number, b: number) => number;
|
|
1407
1414
|
readonly rust_sqlite_wasm_shim_malloc: (a: number) => number;
|
|
1415
|
+
readonly rust_sqlite_wasm_shim_emscripten_get_now: () => number;
|
|
1416
|
+
readonly rust_sqlite_wasm_shim_exit: (a: number) => void;
|
|
1408
1417
|
readonly rust_sqlite_wasm_shim_free: (a: number) => void;
|
|
1418
|
+
readonly rust_sqlite_wasm_shim_localtime_js: (a: bigint, b: number) => void;
|
|
1409
1419
|
readonly rust_sqlite_wasm_shim_realloc: (a: number, b: number) => number;
|
|
1410
|
-
readonly
|
|
1420
|
+
readonly rust_sqlite_wasm_shim_tzset_js: (a: number, b: number, c: number, d: number) => void;
|
|
1421
|
+
readonly rust_sqlite_wasm_shim_wasi_random_get: (a: number, b: number) => number;
|
|
1411
1422
|
readonly sqlite3_os_init: () => number;
|
|
1423
|
+
readonly __wbg_intounderlyingsink_free: (a: number, b: number) => void;
|
|
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;
|
|
1412
1430
|
readonly __wbg_intounderlyingbytesource_free: (a: number, b: number) => void;
|
|
1413
|
-
readonly intounderlyingbytesource_type: (a: number) => number;
|
|
1414
1431
|
readonly intounderlyingbytesource_autoAllocateChunkSize: (a: number) => number;
|
|
1415
|
-
readonly intounderlyingbytesource_start: (a: number, b: any) => void;
|
|
1416
|
-
readonly intounderlyingbytesource_pull: (a: number, b: any) => any;
|
|
1417
1432
|
readonly intounderlyingbytesource_cancel: (a: number) => void;
|
|
1418
|
-
readonly
|
|
1419
|
-
readonly
|
|
1420
|
-
readonly
|
|
1421
|
-
readonly __wbg_intounderlyingsink_free: (a: number, b: number) => void;
|
|
1422
|
-
readonly intounderlyingsink_write: (a: number, b: any) => any;
|
|
1423
|
-
readonly intounderlyingsink_close: (a: number) => any;
|
|
1424
|
-
readonly intounderlyingsink_abort: (a: number, b: any) => any;
|
|
1433
|
+
readonly intounderlyingbytesource_pull: (a: number, b: any) => any;
|
|
1434
|
+
readonly intounderlyingbytesource_start: (a: number, b: any) => void;
|
|
1435
|
+
readonly intounderlyingbytesource_type: (a: number) => number;
|
|
1425
1436
|
readonly task_worker_entry_point: (a: number) => [number, number];
|
|
1426
1437
|
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
1427
1438
|
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
@@ -1432,11 +1443,11 @@ export interface InitOutput {
|
|
|
1432
1443
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
1433
1444
|
readonly __wbindgen_export_7: WebAssembly.Table;
|
|
1434
1445
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
1435
|
-
readonly
|
|
1436
|
-
readonly
|
|
1437
|
-
readonly
|
|
1438
|
-
readonly
|
|
1439
|
-
readonly
|
|
1446
|
+
readonly closure7273_externref_shim: (a: number, b: number, c: any) => void;
|
|
1447
|
+
readonly wasm_bindgen__convert__closures_____invoke__h1b0aee6a11857ece: (a: number, b: number) => void;
|
|
1448
|
+
readonly wasm_bindgen__convert__closures_____invoke__h02b2793523eb74f0: (a: number, b: number) => void;
|
|
1449
|
+
readonly wasm_bindgen__convert__closures_____invoke__h8d77716d6e2e4cde: (a: number, b: number) => void;
|
|
1450
|
+
readonly closure8230_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
1440
1451
|
readonly __wbindgen_start: () => void;
|
|
1441
1452
|
}
|
|
1442
1453
|
|