@xmtp/node-bindings 1.2.0 → 1.2.2
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_node.darwin-arm64.node +0 -0
- package/dist/bindings_node.darwin-x64.node +0 -0
- package/dist/bindings_node.linux-arm64-gnu.node +0 -0
- package/dist/bindings_node.linux-arm64-musl.node +0 -0
- package/dist/bindings_node.linux-x64-gnu.node +0 -0
- package/dist/bindings_node.linux-x64-musl.node +0 -0
- package/dist/bindings_node.win32-x64-msvc.node +0 -0
- package/dist/index.d.ts +2 -1
- package/dist/version.json +2 -2
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export declare class Client {
|
|
|
17
17
|
apiStatistics(): ApiStats
|
|
18
18
|
apiIdentityStatistics(): IdentityStats
|
|
19
19
|
apiAggregateStatistics(): string
|
|
20
|
+
clearAllStatistics(): void
|
|
20
21
|
uploadDebugArchive(serverUrl: string): Promise<string>
|
|
21
22
|
setConsentStates(records: Array<Consent>): Promise<void>
|
|
22
23
|
getConsentState(entityType: ConsentEntityType, entity: string): Promise<ConsentState>
|
|
@@ -223,7 +224,7 @@ export declare const enum ConversationType {
|
|
|
223
224
|
* It can be one of: `debug`, `info`, `warn`, `error` or 'off'.
|
|
224
225
|
* By default, logging is disabled.
|
|
225
226
|
*/
|
|
226
|
-
export declare export declare function createClient(host: string, isSecure: boolean, dbPath: string | undefined | null, inboxId: string, accountIdentifier: Identifier, encryptionKey?: Uint8Array | undefined | null, deviceSyncServerUrl?: string | undefined | null, deviceSyncWorkerMode?: SyncWorkerMode | undefined | null, logOptions?: LogOptions | undefined | null): Promise<Client>
|
|
227
|
+
export declare export declare function createClient(host: string, isSecure: boolean, dbPath: string | undefined | null, inboxId: string, accountIdentifier: Identifier, encryptionKey?: Uint8Array | undefined | null, deviceSyncServerUrl?: string | undefined | null, deviceSyncWorkerMode?: SyncWorkerMode | undefined | null, logOptions?: LogOptions | undefined | null, allowOffline?: boolean | undefined | null): Promise<Client>
|
|
227
228
|
|
|
228
229
|
export interface CreateDmOptions {
|
|
229
230
|
messageDisappearingSettings?: MessageDisappearingSettings
|
package/dist/version.json
CHANGED