@dynamic-labs/waas-evm 4.91.6 → 4.92.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,20 @@
1
1
 
2
+ ## [4.92.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.6...v4.92.0) (2026-07-08)
3
+
4
+
5
+ ### Features
6
+
7
+ * **captcha:** add Cloudflare Turnstile provider support alongside hCaptcha (v4) ([#11798](https://github.com/dynamic-labs/dynamic-auth/issues/11798)) ([114c770](https://github.com/dynamic-labs/dynamic-auth/commit/114c7702e900d8dedeebe7be867de35d11a93f31))
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * **ethereum-aa:** resolve kernel client config per wallet (v4) ([#11870](https://github.com/dynamic-labs/dynamic-auth/issues/11870)) ([1b66d79](https://github.com/dynamic-labs/dynamic-auth/commit/1b66d79b4a32b4b6de433b7536bc46e6719224c6))
13
+ * **iframe-setup:** block dangerous URL schemes and verify sender in OPEN_URL ([#11819](https://github.com/dynamic-labs/dynamic-auth/issues/11819)) ([329b27e](https://github.com/dynamic-labs/dynamic-auth/commit/329b27e9fac825916ab227ec8cf93dc343898923))
14
+ * improve social OAuth error messages ([#11837](https://github.com/dynamic-labs/dynamic-auth/issues/11837)) ([8e57c06](https://github.com/dynamic-labs/dynamic-auth/commit/8e57c067c5a89111a32a12fb82e190cf6c46ad67))
15
+ * **react-native-extension:** reject path traversal in downloadFile fileName ([#11816](https://github.com/dynamic-labs/dynamic-auth/issues/11816)) ([9367a56](https://github.com/dynamic-labs/dynamic-auth/commit/9367a56b6daa853d7f7e7f5534261bc68825b239))
16
+ * **sdk-react-core:** display exactly the bytes signed in personal_sign preview ([#11818](https://github.com/dynamic-labs/dynamic-auth/issues/11818)) ([30b9382](https://github.com/dynamic-labs/dynamic-auth/commit/30b93829122f00060cb484aef09a03294c03f651))
17
+
2
18
  ### [4.91.6](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.5...v4.91.6) (2026-07-03)
3
19
 
4
20
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.91.6";
6
+ var version = "4.92.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.91.6";
2
+ var version = "4.92.0";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/waas-evm",
3
- "version": "4.91.6",
3
+ "version": "4.92.0",
4
4
  "description": "A React SDK for implementing wallet web3 authentication and authorization to your website.",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -18,15 +18,15 @@
18
18
  },
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
- "@dynamic-labs/sdk-api-core": "0.0.1046",
21
+ "@dynamic-labs/sdk-api-core": "0.0.1067",
22
22
  "viem": "^2.45.3",
23
- "@dynamic-labs/assert-package-version": "4.91.6",
24
- "@dynamic-labs/ethereum-core": "4.91.6",
25
- "@dynamic-labs/logger": "4.91.6",
26
- "@dynamic-labs/types": "4.91.6",
27
- "@dynamic-labs/utils": "4.91.6",
28
- "@dynamic-labs/waas": "4.91.6",
29
- "@dynamic-labs/wallet-connector-core": "4.91.6"
23
+ "@dynamic-labs/assert-package-version": "4.92.0",
24
+ "@dynamic-labs/ethereum-core": "4.92.0",
25
+ "@dynamic-labs/logger": "4.92.0",
26
+ "@dynamic-labs/types": "4.92.0",
27
+ "@dynamic-labs/utils": "4.92.0",
28
+ "@dynamic-labs/waas": "4.92.0",
29
+ "@dynamic-labs/wallet-connector-core": "4.92.0"
30
30
  },
31
31
  "peerDependencies": {}
32
32
  }
@@ -75,16 +75,31 @@ declare const DynamicWaasEVMConnector_base: (abstract new (...args: any[]) => {
75
75
  getWaasWalletClient(traceContext?: import("dist/packages/waas/utils/instrumentation").TraceContext | undefined, { forceRebuild }?: {
76
76
  forceRebuild?: boolean | undefined;
77
77
  } | undefined): Promise<import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient>;
78
- createWalletAccount({ thresholdSignatureScheme, password, bitcoinConfig, }?: {
78
+ createWalletAccount({ thresholdSignatureScheme, password, bitcoinConfig, businessAccountId, }?: {
79
79
  thresholdSignatureScheme?: string | undefined;
80
80
  password?: string | undefined;
81
81
  bitcoinConfig?: import("@dynamic-labs-wallet/browser-wallet-client").BitcoinConfig | undefined;
82
+ businessAccountId?: string | undefined;
82
83
  } | undefined): Promise<{
83
84
  chainName: string;
84
85
  accountAddress: string;
85
86
  publicKeyHex: string;
86
87
  rawPublicKey: string | Uint8Array | undefined;
87
88
  }>;
89
+ addSignerViaReshare({ accountAddress, walletId, businessAccountId, targetSignerIdentity, signerType, password, }: {
90
+ accountAddress: string;
91
+ walletId?: string | undefined;
92
+ businessAccountId: string;
93
+ targetSignerIdentity: {
94
+ userId?: string | undefined;
95
+ identifier?: string | undefined;
96
+ identifierType?: string | undefined;
97
+ };
98
+ signerType?: "endUser" | "server" | undefined;
99
+ password?: string | undefined;
100
+ }): Promise<{
101
+ shareSetId: string;
102
+ }>;
88
103
  importPrivateKey({ privateKey, thresholdSignatureScheme, publicAddressCheck, addressType, legacyWalletId, password, }: {
89
104
  privateKey: string;
90
105
  thresholdSignatureScheme?: string | undefined;
@@ -101,7 +116,7 @@ declare const DynamicWaasEVMConnector_base: (abstract new (...args: any[]) => {
101
116
  expectedAddresses: Record<string, string>;
102
117
  coinTypes?: Record<string, number> | undefined;
103
118
  password?: string | undefined;
104
- }): Promise<import("@dynamic-labs-wallet/browser-wallet-client").MigrateFromFireblocksResponse>;
119
+ }): Promise<Record<string, unknown>>;
105
120
  exportPrivateKey({ accountAddress, displayContainer, password, }?: {
106
121
  accountAddress?: string | undefined;
107
122
  displayContainer?: HTMLIFrameElement | undefined;