@dynamic-labs/webview-messages 5.4.1 → 5.6.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,26 @@
1
1
 
2
+ ## [5.6.0](https://github.com/dynamic-labs/dynamic-auth/compare/v5.5.0...v5.6.0) (2026-09-01)
3
+
4
+
5
+ ### Features
6
+
7
+ * forward target signer passwords ([#12300](https://github.com/dynamic-labs/dynamic-auth/issues/12300)) ([39b142b](https://github.com/dynamic-labs/dynamic-auth/commit/39b142b51767ad54ae57196a381bec19a892c06f))
8
+
9
+ ## [5.5.0](https://github.com/dynamic-labs/dynamic-auth/compare/v5.4.1...v5.5.0) (2026-08-31)
10
+
11
+
12
+ ### Features
13
+
14
+ * **waas-evm:** route embedded EVM sends through gas sponsorship when enabled ([#12306](https://github.com/dynamic-labs/dynamic-auth/issues/12306)) ([6046ff3](https://github.com/dynamic-labs/dynamic-auth/commit/6046ff362d8de9402793bdaa7319fda645ff4c04))
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **bitcoin:** resolve the active BTC wallet and network correctly across the widget ([#12308](https://github.com/dynamic-labs/dynamic-auth/issues/12308)) ([13e9eae](https://github.com/dynamic-labs/dynamic-auth/commit/13e9eaec19b3925db507c878988cfd82da5a6de6))
20
+ * **btc:** unbreak BTC transaction confirmation, testnet balances and taproot testnet switching ([#12305](https://github.com/dynamic-labs/dynamic-auth/issues/12305)) ([5fd999c](https://github.com/dynamic-labs/dynamic-auth/commit/5fd999c4c819d3a74e967c0cfa77c5877a74906b))
21
+ * **react-native-extension:** stop leaking expo-secure-store into consumer autolinking ([#12296](https://github.com/dynamic-labs/dynamic-auth/issues/12296)) ([1e0396a](https://github.com/dynamic-labs/dynamic-auth/commit/1e0396ab00c79aa0b2f45b6d7b1d339c1dac1203)), closes [#12254](https://github.com/dynamic-labs/dynamic-auth/issues/12254)
22
+ * **screening:** wire connected-wallet screening into the Send Balance UI (DYNT-1663) ([#12303](https://github.com/dynamic-labs/dynamic-auth/issues/12303)) ([5d26ff3](https://github.com/dynamic-labs/dynamic-auth/commit/5d26ff375118302522c39bd2f1fa9e04f7378eaf))
23
+
2
24
  ### [5.4.1](https://github.com/dynamic-labs/dynamic-auth/compare/v5.4.0...v5.4.1) (2026-08-26)
3
25
 
4
26
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "5.4.1";
6
+ var version = "5.6.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "5.4.1";
2
+ var version = "5.6.0";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/webview-messages",
3
- "version": "5.4.1",
3
+ "version": "5.6.0",
4
4
  "description": "A package to define messages for the webview-controller",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -18,16 +18,16 @@
18
18
  "./package.json": "./package.json"
19
19
  },
20
20
  "dependencies": {
21
- "@dynamic-labs/ethereum-gasless-core": "5.4.1",
21
+ "@dynamic-labs/ethereum-gasless-core": "5.6.0",
22
22
  "@dynamic-labs/sdk-api-core": "0.12.0",
23
- "@dynamic-labs-sdk/client": "1.29.0",
24
- "@dynamic-labs/assert-package-version": "5.4.1",
25
- "@dynamic-labs/locale": "5.4.1",
26
- "@dynamic-labs/logger": "5.4.1",
27
- "@dynamic-labs/message-transport": "5.4.1",
28
- "@dynamic-labs/types": "5.4.1",
29
- "@dynamic-labs/wallet-connector-core": "5.4.1",
30
- "@dynamic-labs/webauthn": "5.4.1"
23
+ "@dynamic-labs-sdk/client": "1.31.0",
24
+ "@dynamic-labs/assert-package-version": "5.6.0",
25
+ "@dynamic-labs/locale": "5.6.0",
26
+ "@dynamic-labs/logger": "5.6.0",
27
+ "@dynamic-labs/message-transport": "5.6.0",
28
+ "@dynamic-labs/types": "5.6.0",
29
+ "@dynamic-labs/wallet-connector-core": "5.6.0",
30
+ "@dynamic-labs/webauthn": "5.6.0"
31
31
  },
32
32
  "peerDependencies": {}
33
33
  }
@@ -35,6 +35,7 @@ export type AddSignerToBusinessAccountParams = {
35
35
  targetSignerIdentity: TargetIdentity;
36
36
  signerType?: BusinessAccountSignerType;
37
37
  password?: string;
38
+ targetSignerPassword?: string;
38
39
  };
39
40
  export type AddBusinessAccountSignerResponse = {
40
41
  shareSetId: string;