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