@xmtp/node-bindings 1.3.3 → 1.4.0-dev.256c8fc

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.
Binary file
package/dist/index.d.ts CHANGED
@@ -2,10 +2,13 @@
2
2
  /* eslint-disable */
3
3
  export declare class Client {
4
4
  accountIdentifier: Identifier
5
+ appVersion?: string
5
6
  inboxId(): string
6
7
  isRegistered(): boolean
7
8
  installationId(): string
8
9
  installationIdBytes(): Uint8Array
10
+ appVersion(): string
11
+ libxmtpVersion(): string
9
12
  /** The resulting vec will be the same length as the input and should be zipped for the results. */
10
13
  canMessage(accountIdentities: Array<Identifier>): Promise<Record<string, boolean>>
11
14
  registerIdentity(signatureRequest: SignatureRequestHandle): Promise<void>
@@ -232,7 +235,7 @@ export declare const enum ConversationType {
232
235
  * It can be one of: `debug`, `info`, `warn`, `error` or 'off'.
233
236
  * By default, logging is disabled.
234
237
  */
235
- 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, disableEvents?: boolean | undefined | null): Promise<Client>
238
+ 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, disableEvents?: boolean | undefined | null, appVersion?: string | undefined | null): Promise<Client>
236
239
 
237
240
  export interface CreateDmOptions {
238
241
  messageDisappearingSettings?: MessageDisappearingSettings
package/dist/version.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "branch": "release/v1.3",
3
- "version": "9532653",
4
- "date": "2025-07-25 23:19:55 +0000"
2
+ "branch": "main",
3
+ "version": "256c8fc",
4
+ "date": "2025-08-01 23:35:15 +0000"
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xmtp/node-bindings",
3
- "version": "1.3.3",
3
+ "version": "1.4.0-dev.256c8fc",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://git@github.com/xmtp/libxmtp.git",
@@ -39,7 +39,7 @@
39
39
  "test:clean": "rm -rf test/*.db3*"
40
40
  },
41
41
  "devDependencies": {
42
- "@ianvs/prettier-plugin-sort-imports": "^4.4.1",
42
+ "@ianvs/prettier-plugin-sort-imports": "^4.5.1",
43
43
  "@napi-rs/cli": "^3.0.0-alpha.64",
44
44
  "@types/node": "^24.0.1",
45
45
  "@types/uuid": "^10.0.0",
@@ -51,11 +51,11 @@
51
51
  "tsx": "^4.20.3",
52
52
  "typescript": "^5.8.2",
53
53
  "uuid": "^11.1.0",
54
- "viem": "^2.31.0",
55
- "vite": "^6.3.2",
54
+ "viem": "^2.33.0",
55
+ "vite": "^7.0.5",
56
56
  "vite-tsconfig-paths": "^5.1.4",
57
57
  "vitest": "^3.2.2",
58
- "zx": "^8.5.0"
58
+ "zx": "^8.7.1"
59
59
  },
60
60
  "packageManager": "yarn@4.6.0",
61
61
  "engines": {