@dynamic-labs/client 4.9.1-preview.0 → 4.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,11 +1,20 @@
1
1
 
2
- ### [4.9.1-preview.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.9.0...v4.9.1-preview.0) (2025-03-07)
2
+ ### [4.9.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.9.0...v4.9.1) (2025-03-11)
3
+
4
+
5
+ ### Features
6
+
7
+ * waas svm connector ([#8191](https://github.com/dynamic-labs/dynamic-auth/issues/8191)) ([049a360](https://github.com/dynamic-labs/dynamic-auth/commit/049a360642d6aa2122676c7a29d36a7baef9e49b))
3
8
 
4
9
 
5
10
  ### Bug Fixes
6
11
 
7
12
  * 7702 on sepolia ([#8242](https://github.com/dynamic-labs/dynamic-auth/issues/8242)) ([8e1c63f](https://github.com/dynamic-labs/dynamic-auth/commit/8e1c63f240024f419e12787636dd2ebaacf8da94))
8
- * embedded widget race condition that would show both embedded and non-embedded widgets at the same time ([8a52778](https://github.com/dynamic-labs/dynamic-auth/commit/8a5277888489e03871532331760c197aa6216495))
13
+ * close auth flow when promptExport enabled but createWallet is false ([#8239](https://github.com/dynamic-labs/dynamic-auth/issues/8239)) ([f82429f](https://github.com/dynamic-labs/dynamic-auth/commit/f82429f85e729a76c2516f0db112033fdd2a36d5))
14
+ * fix solana genesis hashes bug that was causing a breaking change ([#8250](https://github.com/dynamic-labs/dynamic-auth/issues/8250)) ([731c93b](https://github.com/dynamic-labs/dynamic-auth/commit/731c93bea4b8b95caa8cc665f2ecb53f9948ef8e))
15
+ * move setup-inside-iframe utility method to the utils package ([#8256](https://github.com/dynamic-labs/dynamic-auth/issues/8256)) ([d34eb6d](https://github.com/dynamic-labs/dynamic-auth/commit/d34eb6d211baecb496b84fefaee8179a5fb1b52a))
16
+ * **QNTM-2952:** support headless social sign in ([#8226](https://github.com/dynamic-labs/dynamic-auth/issues/8226)) ([0c3082d](https://github.com/dynamic-labs/dynamic-auth/commit/0c3082d593c633519c9eed20be15186f18f65c09))
17
+ * sign message with trust wallet on solana ([#8249](https://github.com/dynamic-labs/dynamic-auth/issues/8249)) ([99a7917](https://github.com/dynamic-labs/dynamic-auth/commit/99a791796f7d2c83b9f18e45367aa9689c67869d))
9
18
 
10
19
  ## [4.9.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.8.6...v4.9.0) (2025-03-07)
11
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.9.1-preview.0";
6
+ var version = "4.9.1";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.9.1-preview.0";
2
+ var version = "4.9.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.9.1-preview.0",
3
+ "version": "4.9.1",
4
4
  "description": "Core package for utilizing Dynamic's sdk",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -19,10 +19,10 @@
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
21
  "@vue/reactivity": "^3.4.21",
22
- "@dynamic-labs/assert-package-version": "4.9.1-preview.0",
23
- "@dynamic-labs/logger": "4.9.1-preview.0",
24
- "@dynamic-labs/message-transport": "4.9.1-preview.0",
25
- "@dynamic-labs/types": "4.9.1-preview.0",
22
+ "@dynamic-labs/assert-package-version": "4.9.1",
23
+ "@dynamic-labs/logger": "4.9.1",
24
+ "@dynamic-labs/message-transport": "4.9.1",
25
+ "@dynamic-labs/types": "4.9.1",
26
26
  "eventemitter3": "5.0.1"
27
27
  },
28
28
  "peerDependencies": {}
@@ -17,6 +17,10 @@ const createUserInterfaceModule = (core) => {
17
17
  hide: () => userInterfaceRequestChannel.emit('hideAuthFlow'),
18
18
  show: () => userInterfaceRequestChannel.emit('openAuthFlow'),
19
19
  },
20
+ fundingOptions: {
21
+ hide: () => userInterfaceRequestChannel.emit('hideFundingOptions'),
22
+ show: () => userInterfaceRequestChannel.emit('openFundingOptions'),
23
+ },
20
24
  userProfile: {
21
25
  hide: () => userInterfaceRequestChannel.emit('hideUserProfile'),
22
26
  show: () => userInterfaceRequestChannel.emit('openUserProfile'),
@@ -36,6 +36,22 @@ type UserInterfaceModuleMethods = {
36
36
  wallets: {
37
37
  revealEmbeddedWalletKey: UserInterfaceModuleMessages['revealEmbeddedWalletKey'];
38
38
  };
39
+ fundingOptions: {
40
+ /**
41
+ * Opens a screen with a list of funding options.
42
+ *
43
+ * Resolves when our SDK receives the request.
44
+ * Rejects if the request is not received.
45
+ */
46
+ show: () => Promise<void>;
47
+ /**
48
+ * Closes the funding options screen.
49
+ *
50
+ * Resolves when our SDK receives the request.
51
+ * Rejects if the request is not received.
52
+ */
53
+ hide: () => Promise<void>;
54
+ };
39
55
  };
40
56
  type PublicUserInterfaceModuleMessages = Pick<UserInterfaceModuleMessages, typeof userInterfaceEventNames[number]>;
41
57
  export type UserInterfaceModule = PickedEventListeners<PublicUserInterfaceModuleMessages> & UserInterfaceModuleMethods;
@@ -13,6 +13,10 @@ const createUserInterfaceModule = (core) => {
13
13
  hide: () => userInterfaceRequestChannel.emit('hideAuthFlow'),
14
14
  show: () => userInterfaceRequestChannel.emit('openAuthFlow'),
15
15
  },
16
+ fundingOptions: {
17
+ hide: () => userInterfaceRequestChannel.emit('hideFundingOptions'),
18
+ show: () => userInterfaceRequestChannel.emit('openFundingOptions'),
19
+ },
16
20
  userProfile: {
17
21
  hide: () => userInterfaceRequestChannel.emit('hideUserProfile'),
18
22
  show: () => userInterfaceRequestChannel.emit('openUserProfile'),