@dynamic-labs/wallet-connector-core 4.87.1 → 4.88.0

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/CHANGELOG.md CHANGED
@@ -1,4 +1,24 @@
1
1
 
2
+ ## [4.88.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.87.2...v4.88.0) (2026-06-04)
3
+
4
+
5
+ ### Features
6
+
7
+ * **waas:** log out on iframe 401 ([#11456](https://github.com/dynamic-labs/dynamic-auth/issues/11456)) ([81b0161](https://github.com/dynamic-labs/dynamic-auth/commit/81b01617810af8f7f996fdbf406e020b9f98272b))
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * **starknet:** zero-pad addresses returned by wallet connectors ([#11303](https://github.com/dynamic-labs/dynamic-auth/issues/11303)) ([ef5cda5](https://github.com/dynamic-labs/dynamic-auth/commit/ef5cda5a9933443195b3bd336db8947c2ec050b7))
13
+
14
+ ### [4.87.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.87.1...v4.87.2) (2026-06-03)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * allow for using v2 zerodev projects ([#11449](https://github.com/dynamic-labs/dynamic-auth/issues/11449)) ([9242698](https://github.com/dynamic-labs/dynamic-auth/commit/9242698670db92b03ad1afc776e674ec9a7e7e54))
20
+ * e2e: ensure MFA item is detached before logout ([#11452](https://github.com/dynamic-labs/dynamic-auth/issues/11452)) ([5a4c67e](https://github.com/dynamic-labs/dynamic-auth/commit/5a4c67e93b66a548346c1065fb373c675f0054a0))
21
+
2
22
  ### [4.87.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.87.0...v4.87.1) (2026-06-03)
3
23
 
4
24
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.87.1";
6
+ var version = "4.88.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.87.1";
2
+ var version = "4.88.0";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/wallet-connector-core",
3
- "version": "4.87.1",
3
+ "version": "4.88.0",
4
4
  "description": "Core package for utilities and types for handling multiple wallet/chain support Dynamic SDK",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -18,16 +18,16 @@
18
18
  },
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
- "@dynamic-labs-sdk/client": "1.5.0",
21
+ "@dynamic-labs-sdk/client": "1.7.0",
22
22
  "@dynamic-labs/sdk-api-core": "0.0.1015",
23
- "@dynamic-labs-wallet/browser-wallet-client": "1.0.13",
23
+ "@dynamic-labs-wallet/browser-wallet-client": "1.0.16",
24
24
  "@dynamic-labs-wallet/forward-mpc-client": "0.10.1",
25
- "@dynamic-labs/assert-package-version": "4.87.1",
26
- "@dynamic-labs/logger": "4.87.1",
27
- "@dynamic-labs/rpc-providers": "4.87.1",
28
- "@dynamic-labs/types": "4.87.1",
29
- "@dynamic-labs/utils": "4.87.1",
30
- "@dynamic-labs/wallet-book": "4.87.1",
25
+ "@dynamic-labs/assert-package-version": "4.88.0",
26
+ "@dynamic-labs/logger": "4.88.0",
27
+ "@dynamic-labs/rpc-providers": "4.88.0",
28
+ "@dynamic-labs/types": "4.88.0",
29
+ "@dynamic-labs/utils": "4.88.0",
30
+ "@dynamic-labs/wallet-book": "4.88.0",
31
31
  "eventemitter3": "5.0.1"
32
32
  },
33
33
  "peerDependencies": {}
@@ -49,6 +49,7 @@ export interface IDynamicWaasConnector extends WalletConnectorBase {
49
49
  setBaseClientKeysharesRelayApiUrl(baseClientKeysharesRelayApiUrl?: string): void;
50
50
  setGetAuthTokenFunction(getAuthToken: () => string): void;
51
51
  setGetSignedSessionIdFunction(getSignedSessionId: () => Promise<string>): void;
52
+ setOnUnauthorizedFunction(onUnauthorized: () => void | Promise<void>): void;
52
53
  setGetMfaTokenFunction(getMfaToken: GetMfaTokenFunction): void;
53
54
  setGetElevatedAccessTokenFunction(getElevatedAccessToken: GetElevatedAccessTokenFunction): void;
54
55
  setRelayUrl(relayUrl: string): void;
@@ -64,9 +65,10 @@ export interface IDynamicWaasConnector extends WalletConnectorBase {
64
65
  }): Promise<void>;
65
66
  hideICloudSignIn(): Promise<void>;
66
67
  isICloudAuthenticated(): Promise<boolean>;
67
- backupKeySharesToGoogleDrive({ accountAddress, password, }: {
68
+ backupKeySharesToGoogleDrive({ accountAddress, password, googleDriveAccessToken, }: {
68
69
  accountAddress: string;
69
70
  password?: string;
71
+ googleDriveAccessToken?: string;
70
72
  }): Promise<void>;
71
73
  exportClientKeysharesFromGoogleDrive({ accountAddress, password, }: {
72
74
  accountAddress: string;
@@ -1,4 +1,5 @@
1
1
  /// <reference types="node" />
2
+ /// <reference types="node" />
2
3
  export declare const addHexPrefix: (hex: string) => string;
3
4
  export declare const bufferToHex: (buf: Buffer, prefixed?: boolean) => string;
4
5
  export declare const utf8ToHex: (utf8: string, prefixed?: boolean) => string;