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