@dynamic-labs/client 4.50.5 → 4.51.2

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,34 @@
1
1
 
2
+ ### [4.51.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.51.1...v4.51.2) (2025-12-19)
3
+
4
+
5
+ ### Features
6
+
7
+ * add updateUserEmail method ([#10133](https://github.com/dynamic-labs/dynamic-auth/issues/10133)) ([78ba809](https://github.com/dynamic-labs/dynamic-auth/commit/78ba809b8226d00d7c69a55424dc9c9471060ae7))
8
+
9
+ ### [4.51.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.51.0...v4.51.1) (2025-12-19)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * emit mfaCompletionSuccess event when registering a passkey ([#10135](https://github.com/dynamic-labs/dynamic-auth/issues/10135)) ([1e1a19a](https://github.com/dynamic-labs/dynamic-auth/commit/1e1a19ac19002183b3041c733b2fd98e51b77fa6))
15
+
16
+ ## [4.51.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.50.5...v4.51.0) (2025-12-18)
17
+
18
+
19
+ ### Features
20
+
21
+ * **react-native:** add connectOnly option as a client prop ([#10112](https://github.com/dynamic-labs/dynamic-auth/issues/10112)) ([8cdee00](https://github.com/dynamic-labs/dynamic-auth/commit/8cdee00b249252aee74723f66b8875d6e3d70410))
22
+ * **react-native:** add support for metamask ([#10004](https://github.com/dynamic-labs/dynamic-auth/issues/10004)) ([dcdb52c](https://github.com/dynamic-labs/dynamic-auth/commit/dcdb52c4fd70f1b691c2235be3464e3c25f1ea8b))
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * add useExchangeAccounts export ([#10101](https://github.com/dynamic-labs/dynamic-auth/issues/10101)) ([d9051fa](https://github.com/dynamic-labs/dynamic-auth/commit/d9051fa2769f37989e7a38c5035d6a39a6fc38fd))
28
+ * ensure the flutter SDK will not get wallet version field with V3 ([#10115](https://github.com/dynamic-labs/dynamic-auth/issues/10115)) ([f3b80cc](https://github.com/dynamic-labs/dynamic-auth/commit/f3b80ccf070cc1f615c43e60c0681fe28c92e96e))
29
+ * **react-native:** show captcha screen when enabled during signature prompt ([#10113](https://github.com/dynamic-labs/dynamic-auth/issues/10113)) ([12edd1c](https://github.com/dynamic-labs/dynamic-auth/commit/12edd1ca9c7abe3f249930f27a2e3043a7cd3723))
30
+ * solana swap issue with outdated jup api ([#10119](https://github.com/dynamic-labs/dynamic-auth/issues/10119)) ([172a074](https://github.com/dynamic-labs/dynamic-auth/commit/172a074b607c8e25c3d4141e0caedff943aeec15))
31
+
2
32
  ### [4.50.5](https://github.com/dynamic-labs/dynamic-auth/compare/v4.50.4...v4.50.5) (2025-12-16)
3
33
 
4
34
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.50.5";
6
+ var version = "4.51.2";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.50.5";
2
+ var version = "4.51.2";
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.50.5",
3
+ "version": "4.51.2",
4
4
  "description": "Core package for utilizing Dynamic's sdk",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -19,13 +19,13 @@
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
21
  "@vue/reactivity": "^3.4.21",
22
- "@dynamic-labs/sdk-api-core": "0.0.831",
23
- "@dynamic-labs/assert-package-version": "4.50.5",
24
- "@dynamic-labs/locale": "4.50.5",
25
- "@dynamic-labs/logger": "4.50.5",
26
- "@dynamic-labs/message-transport": "4.50.5",
27
- "@dynamic-labs/types": "4.50.5",
28
- "@dynamic-labs/webview-messages": "4.50.5",
22
+ "@dynamic-labs/sdk-api-core": "0.0.843",
23
+ "@dynamic-labs/assert-package-version": "4.51.2",
24
+ "@dynamic-labs/locale": "4.51.2",
25
+ "@dynamic-labs/logger": "4.51.2",
26
+ "@dynamic-labs/message-transport": "4.51.2",
27
+ "@dynamic-labs/types": "4.51.2",
28
+ "@dynamic-labs/webview-messages": "4.51.2",
29
29
  "eventemitter3": "5.0.1"
30
30
  },
31
31
  "peerDependencies": {}
@@ -13,6 +13,12 @@ export type ClientProps = {
13
13
  debug?: ClientManifest['debug'];
14
14
  globalWallets?: ClientManifest['globalWallets'];
15
15
  locale?: ClientManifest['locale'];
16
+ /**
17
+ * If true, enables connect-only mode where users can connect wallets
18
+ * without signing a message. This is useful for React Native apps where
19
+ * you want to allow wallet connections without full authentication.
20
+ */
21
+ connectOnly?: boolean;
16
22
  };
17
23
  /**
18
24
  * Generates a basic client that allows interacting with Dynamic's SDK, which
@@ -5,11 +5,12 @@ Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
6
  var _package = require('../../../../../../package.cjs');
7
7
 
8
- const createPartialManifest = ({ apiBaseUrl, environmentId, appLogoUrl, appName, cssOverrides, evmNetworks, debug, globalWallets, locale, }) => ({
8
+ const createPartialManifest = ({ apiBaseUrl, environmentId, appLogoUrl, appName, cssOverrides, evmNetworks, debug, globalWallets, locale, connectOnly, }) => ({
9
9
  apiBaseUrl,
10
10
  appLogoUrl,
11
11
  appName,
12
12
  clientVersion: _package.version,
13
+ connectOnly,
13
14
  cssOverrides,
14
15
  debug,
15
16
  environmentId,
@@ -1,3 +1,3 @@
1
1
  import type { ClientManifest } from '@dynamic-labs/webview-messages';
2
2
  import { ClientProps } from '../../../../client';
3
- export declare const createPartialManifest: ({ apiBaseUrl, environmentId, appLogoUrl, appName, cssOverrides, evmNetworks, debug, globalWallets, locale, }: ClientProps) => Partial<ClientManifest>;
3
+ export declare const createPartialManifest: ({ apiBaseUrl, environmentId, appLogoUrl, appName, cssOverrides, evmNetworks, debug, globalWallets, locale, connectOnly, }: ClientProps) => Partial<ClientManifest>;
@@ -1,11 +1,12 @@
1
1
  'use client'
2
2
  import { version } from '../../../../../../package.js';
3
3
 
4
- const createPartialManifest = ({ apiBaseUrl, environmentId, appLogoUrl, appName, cssOverrides, evmNetworks, debug, globalWallets, locale, }) => ({
4
+ const createPartialManifest = ({ apiBaseUrl, environmentId, appLogoUrl, appName, cssOverrides, evmNetworks, debug, globalWallets, locale, connectOnly, }) => ({
5
5
  apiBaseUrl,
6
6
  appLogoUrl,
7
7
  appName,
8
8
  clientVersion: version,
9
+ connectOnly,
9
10
  cssOverrides,
10
11
  debug,
11
12
  environmentId,