@dynamic-labs/webview-messages 5.8.1 → 5.9.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,24 @@
1
1
 
2
+ ### [5.9.1](https://github.com/dynamic-labs/dynamic-auth/compare/v5.9.0...v5.9.1) (2026-09-18)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * **sdk-react-core:** sanitize interpolated values in theme stylesheet builder ([#12416](https://github.com/dynamic-labs/dynamic-auth/issues/12416)) ([f256c08](https://github.com/dynamic-labs/dynamic-auth/commit/f256c08209b7818292a7d4d76793c592bd0ca2a0))
8
+ * **webview-controller:** route MetaMask connector storage through native secure storage ([#12304](https://github.com/dynamic-labs/dynamic-auth/issues/12304)) ([627a483](https://github.com/dynamic-labs/dynamic-auth/commit/627a4839a8071d2b2eed1ef6536cd3ecfc833000)), closes [dynamic-labs-oss/public-wallet-connectors#189](https://github.com/dynamic-labs-oss/public-wallet-connectors/issues/189)
9
+
10
+ ## [5.9.0](https://github.com/dynamic-labs/dynamic-auth/compare/v5.8.1...v5.9.0) (2026-09-16)
11
+
12
+
13
+ ### Features
14
+
15
+ * **sdk-react-core:** gate business account mutations behind step-up auth ([#12410](https://github.com/dynamic-labs/dynamic-auth/issues/12410)) ([d394719](https://github.com/dynamic-labs/dynamic-auth/commit/d3947198f9f84debccdd3ae4a4321f56b24467fb))
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * prefer dashboard-saved RPC urls when mapping viem chains ([#12404](https://github.com/dynamic-labs/dynamic-auth/issues/12404)) ([dfe75b4](https://github.com/dynamic-labs/dynamic-auth/commit/dfe75b4193cff46b0fa0ef014f8b040587a0667e))
21
+
2
22
  ### [5.8.1](https://github.com/dynamic-labs/dynamic-auth/compare/v5.8.0...v5.8.1) (2026-09-15)
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 = "5.8.1";
6
+ var version = "5.9.1";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "5.8.1";
2
+ var version = "5.9.1";
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.8.1",
3
+ "version": "5.9.1",
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,17 @@
18
18
  "./package.json": "./package.json"
19
19
  },
20
20
  "dependencies": {
21
- "@dynamic-labs/ethereum-gasless-core": "5.8.1",
22
- "@dynamic-labs/sdk-api-core": "0.32.0",
23
- "@dynamic-labs-sdk/client": "1.31.2",
24
- "@dynamic-labs/assert-package-version": "5.8.1",
25
- "@dynamic-labs/locale": "5.8.1",
26
- "@dynamic-labs/logger": "5.8.1",
27
- "@dynamic-labs/message-transport": "5.8.1",
28
- "@dynamic-labs/types": "5.8.1",
29
- "@dynamic-labs/wallet-connector-core": "5.8.1",
30
- "@dynamic-labs/webauthn": "5.8.1"
21
+ "@dynamic-labs/ethereum-gasless-core": "5.9.1",
22
+ "@dynamic-labs/sdk-api-core": "0.40.0",
23
+ "@dynamic-labs-sdk/client": "1.33.3",
24
+ "@dynamic-labs-wallet/core": "1.1.10",
25
+ "@dynamic-labs/assert-package-version": "5.9.1",
26
+ "@dynamic-labs/locale": "5.9.1",
27
+ "@dynamic-labs/logger": "5.9.1",
28
+ "@dynamic-labs/message-transport": "5.9.1",
29
+ "@dynamic-labs/types": "5.9.1",
30
+ "@dynamic-labs/wallet-connector-core": "5.9.1",
31
+ "@dynamic-labs/webauthn": "5.9.1"
31
32
  },
32
33
  "peerDependencies": {}
33
34
  }
@@ -1,4 +1,5 @@
1
- import type { BusinessAccount, BusinessAccountDetail, BusinessAccountList, BusinessAccountMember, BusinessAccountSigner, BusinessAccountSignerIdentifierType, TargetIdentity } from '@dynamic-labs-sdk/client/waas';
1
+ import type { BusinessAccount, BusinessAccountActionRequired, BusinessAccountDetail, BusinessAccountList, BusinessAccountMember, BusinessAccountSigner, BusinessAccountSignerIdentifierType, TargetIdentity } from '@dynamic-labs-sdk/client/waas';
2
+ import type { BusinessAccountActionRequired as WalletClientBusinessAccountActionRequired } from '@dynamic-labs-wallet/core';
2
3
  export type BusinessAccountMemberRole = 'owner' | 'admin' | 'viewer';
3
4
  export type BusinessAccountSignerType = 'endUser' | 'server';
4
5
  export type CreateBusinessAccountParams = {
@@ -66,13 +67,13 @@ export type BusinessAccountsMessages = {
66
67
  businessAccount_create: (params: CreateBusinessAccountParams) => Promise<BusinessAccount>;
67
68
  businessAccount_list: (params?: ListBusinessAccountsParams) => Promise<BusinessAccountList>;
68
69
  businessAccount_get: (params: GetBusinessAccountParams) => Promise<BusinessAccountDetail>;
69
- businessAccount_addWallet: (params: AddWalletToBusinessAccountParams) => Promise<BusinessAccountDetail>;
70
- businessAccount_addSigner: (params: AddSignerToBusinessAccountParams) => Promise<AddBusinessAccountSignerResponse>;
71
- businessAccount_addMember: (params: AddMemberToBusinessAccountParams) => Promise<BusinessAccountMember>;
72
- businessAccount_removeSigner: (params: RemoveSignerFromBusinessAccountParams) => Promise<BusinessAccountSigner>;
73
- businessAccount_removeMember: (params: RemoveMemberFromBusinessAccountParams) => Promise<BusinessAccountMember>;
74
- businessAccount_updateMemberRole: (params: UpdateMemberRoleParams) => Promise<BusinessAccountMember>;
75
- businessAccount_transferOwnership: (params: TransferOwnershipParams) => Promise<BusinessAccountDetail>;
76
- businessAccount_removeWallet: (params: RemoveWalletFromBusinessAccountParams) => Promise<BusinessAccountDetail>;
70
+ businessAccount_addWallet: (params: AddWalletToBusinessAccountParams) => Promise<BusinessAccountDetail | BusinessAccountActionRequired>;
71
+ businessAccount_addSigner: (params: AddSignerToBusinessAccountParams) => Promise<AddBusinessAccountSignerResponse | WalletClientBusinessAccountActionRequired>;
72
+ businessAccount_addMember: (params: AddMemberToBusinessAccountParams) => Promise<BusinessAccountMember | BusinessAccountActionRequired>;
73
+ businessAccount_removeSigner: (params: RemoveSignerFromBusinessAccountParams) => Promise<BusinessAccountSigner | BusinessAccountActionRequired>;
74
+ businessAccount_removeMember: (params: RemoveMemberFromBusinessAccountParams) => Promise<BusinessAccountMember | BusinessAccountActionRequired>;
75
+ businessAccount_updateMemberRole: (params: UpdateMemberRoleParams) => Promise<BusinessAccountMember | BusinessAccountActionRequired>;
76
+ businessAccount_transferOwnership: (params: TransferOwnershipParams) => Promise<BusinessAccountDetail | BusinessAccountActionRequired>;
77
+ businessAccount_removeWallet: (params: RemoveWalletFromBusinessAccountParams) => Promise<BusinessAccountDetail | BusinessAccountActionRequired>;
77
78
  businessAccount_update: (params: UpdateBusinessAccountParams) => Promise<BusinessAccount>;
78
79
  };