@dynamic-labs/client 4.46.3 → 4.47.1

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,25 @@
1
1
 
2
+ ### [4.47.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.47.0...v4.47.1) (2025-11-24)
3
+
4
+
5
+ ### Features
6
+
7
+ * add aptos non-native coins to sendBalance ([#9914](https://github.com/dynamic-labs/dynamic-auth/issues/9914)) ([0f0f855](https://github.com/dynamic-labs/dynamic-auth/commit/0f0f855229a052eb280831c81d235b0164f26ff3))
8
+ * add aptos non-native token sending to dynamic widget ([#9915](https://github.com/dynamic-labs/dynamic-auth/issues/9915)) ([c91c117](https://github.com/dynamic-labs/dynamic-auth/commit/c91c1172d5185c151f9b4cac1a0757f6d72304ca))
9
+ * **react-native:** add waas wallet upgrade to react-native ([#9936](https://github.com/dynamic-labs/dynamic-auth/issues/9936)) ([024366e](https://github.com/dynamic-labs/dynamic-auth/commit/024366e179b284353d0b05667e916a01520b2874))
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * remove noise from wallet connect when it is disabled ([#9945](https://github.com/dynamic-labs/dynamic-auth/issues/9945)) ([ada6511](https://github.com/dynamic-labs/dynamic-auth/commit/ada6511e2d25351f1b63312eb4810752f6d95ad6))
15
+
16
+ ## [4.47.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.46.3...v4.47.0) (2025-11-21)
17
+
18
+
19
+ ### Features
20
+
21
+ * add Google Drive backup functionality to widget ([#9899](https://github.com/dynamic-labs/dynamic-auth/issues/9899)) ([c787c5b](https://github.com/dynamic-labs/dynamic-auth/commit/c787c5baa7cf4ec4522418fdbe915923b1481312))
22
+
2
23
  ### [4.46.3](https://github.com/dynamic-labs/dynamic-auth/compare/v4.46.2...v4.46.3) (2025-11-20)
3
24
 
4
25
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.46.3";
6
+ var version = "4.47.1";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.46.3";
2
+ var version = "4.47.1";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/client",
3
- "version": "4.46.3",
3
+ "version": "4.47.1",
4
4
  "description": "Core package for utilizing Dynamic's sdk",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -20,12 +20,12 @@
20
20
  "dependencies": {
21
21
  "@vue/reactivity": "^3.4.21",
22
22
  "@dynamic-labs/sdk-api-core": "0.0.821",
23
- "@dynamic-labs/assert-package-version": "4.46.3",
24
- "@dynamic-labs/locale": "4.46.3",
25
- "@dynamic-labs/logger": "4.46.3",
26
- "@dynamic-labs/message-transport": "4.46.3",
27
- "@dynamic-labs/types": "4.46.3",
28
- "@dynamic-labs/webview-messages": "4.46.3",
23
+ "@dynamic-labs/assert-package-version": "4.47.1",
24
+ "@dynamic-labs/locale": "4.47.1",
25
+ "@dynamic-labs/logger": "4.47.1",
26
+ "@dynamic-labs/message-transport": "4.47.1",
27
+ "@dynamic-labs/types": "4.47.1",
28
+ "@dynamic-labs/webview-messages": "4.47.1",
29
29
  "eventemitter3": "5.0.1"
30
30
  },
31
31
  "peerDependencies": {}
@@ -57,6 +57,7 @@ const createUserInterfaceModule = (core) => {
57
57
  show: () => userInterfaceRequestChannel.emit('openUserProfile'),
58
58
  },
59
59
  wallets: {
60
+ promptUpgradeToDynamicWaasFlow: () => userInterfaceRequestChannel.emit('promptUpgradeToDynamicWaasFlow'),
60
61
  revealEmbeddedWalletKey: (params) => userInterfaceRequestChannel.emit('revealEmbeddedWalletKey', params),
61
62
  },
62
63
  });
@@ -37,6 +37,13 @@ type UserInterfaceModuleMethods = {
37
37
  };
38
38
  wallets: {
39
39
  revealEmbeddedWalletKey: UserInterfaceModuleMessages['revealEmbeddedWalletKey'];
40
+ /**
41
+ * Opens a view that allows the user to upgrade to MPC v3 wallets.
42
+ *
43
+ * Resolves when our SDK receives the request.
44
+ * Rejects if the request is not received.
45
+ */
46
+ promptUpgradeToDynamicWaasFlow: () => Promise<void>;
40
47
  };
41
48
  fundingOptions: {
42
49
  /**
@@ -53,6 +53,7 @@ const createUserInterfaceModule = (core) => {
53
53
  show: () => userInterfaceRequestChannel.emit('openUserProfile'),
54
54
  },
55
55
  wallets: {
56
+ promptUpgradeToDynamicWaasFlow: () => userInterfaceRequestChannel.emit('promptUpgradeToDynamicWaasFlow'),
56
57
  revealEmbeddedWalletKey: (params) => userInterfaceRequestChannel.emit('revealEmbeddedWalletKey', params),
57
58
  },
58
59
  });