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