@xmtp/node-sdk 0.0.38 → 0.0.39

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/package.json +9 -9
package/dist/index.d.ts CHANGED
@@ -192,7 +192,7 @@ declare class Client {
192
192
  get accountAddress(): string;
193
193
  get inboxId(): string;
194
194
  get installationId(): string;
195
- get installationIdBytes(): Uint8Array;
195
+ get installationIdBytes(): Uint8Array<ArrayBufferLike>;
196
196
  get isRegistered(): boolean;
197
197
  register(): Promise<void>;
198
198
  addAccount(newAccountSigner: Signer): Promise<void>;
@@ -212,7 +212,7 @@ declare class Client {
212
212
  inboxStateFromInboxIds(inboxIds: string[], refreshFromNetwork?: boolean): Promise<_xmtp_node_bindings.InboxState[]>;
213
213
  setConsentStates(consentStates: Consent[]): Promise<void>;
214
214
  getConsentState(entityType: ConsentEntityType, entity: string): Promise<_xmtp_node_bindings.ConsentState>;
215
- signWithInstallationKey(signatureText: string): Uint8Array;
215
+ signWithInstallationKey(signatureText: string): Uint8Array<ArrayBufferLike>;
216
216
  verifySignedWithInstallationKey(signatureText: string, signatureBytes: Uint8Array): boolean;
217
217
  static verifySignedWithPublicKey(signatureText: string, signatureBytes: Uint8Array, publicKey: Uint8Array): boolean;
218
218
  static isAddressAuthorized(inboxId: string, address: string, options?: NetworkOptions): Promise<boolean>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xmtp/node-sdk",
3
- "version": "0.0.38",
3
+ "version": "0.0.39",
4
4
  "description": "XMTP Node client SDK for interacting with XMTP networks",
5
5
  "keywords": [
6
6
  "xmtp",
@@ -51,27 +51,27 @@
51
51
  "@xmtp/content-type-group-updated": "^2.0.0",
52
52
  "@xmtp/content-type-primitives": "^2.0.0",
53
53
  "@xmtp/content-type-text": "^2.0.0",
54
- "@xmtp/node-bindings": "^0.0.33",
54
+ "@xmtp/node-bindings": "^0.0.34",
55
55
  "@xmtp/proto": "^3.72.3"
56
56
  },
57
57
  "devDependencies": {
58
58
  "@rollup/plugin-json": "^6.1.0",
59
- "@rollup/plugin-typescript": "^12.1.1",
60
- "@types/node": "^20.17.6",
59
+ "@rollup/plugin-typescript": "^12.1.2",
60
+ "@types/node": "^22.10.6",
61
61
  "@vitest/coverage-v8": "^2.1.3",
62
62
  "@xmtp/xmtp-js": "workspace:^",
63
- "fast-glob": "^3.3.2",
63
+ "fast-glob": "^3.3.3",
64
64
  "rimraf": "^6.0.1",
65
- "rollup": "^4.27.3",
65
+ "rollup": "^4.30.1",
66
66
  "rollup-plugin-dts": "^6.1.1",
67
67
  "rollup-plugin-filesize": "^10.0.0",
68
68
  "rollup-plugin-tsconfig-paths": "^1.5.2",
69
- "typescript": "^5.6.3",
69
+ "typescript": "^5.7.3",
70
70
  "uint8array-extras": "^1.4.0",
71
71
  "uuid": "^11.0.3",
72
72
  "viem": "^2.13.6",
73
- "vite": "^5.4.11",
74
- "vite-tsconfig-paths": "^5.1.2",
73
+ "vite": "^6.0.7",
74
+ "vite-tsconfig-paths": "^5.1.4",
75
75
  "vitest": "^2.1.3"
76
76
  },
77
77
  "packageManager": "yarn@4.5.0",