@dynamic-labs/client 4.60.1 → 4.61.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 +15 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +8 -8
- package/src/modules/walletsModule/waasModule/waasModule.cjs +2 -0
- package/src/modules/walletsModule/waasModule/waasModule.d.ts +2 -0
- package/src/modules/walletsModule/waasModule/waasModule.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
|
|
2
|
+
## [4.61.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.60.1...v4.61.0) (2026-02-10)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add unlockWallet and getWalletRecoveryState to WaaS ([#10407](https://github.com/dynamic-labs/dynamic-auth/issues/10407)) ([e0d1a28](https://github.com/dynamic-labs/dynamic-auth/commit/e0d1a2830f36eee6c6e84737011e8cf59966122d))
|
|
8
|
+
* add useWalletPassword hook for waas wallet password management ([#10399](https://github.com/dynamic-labs/dynamic-auth/issues/10399)) ([508835f](https://github.com/dynamic-labs/dynamic-auth/commit/508835fb0f4f17b7353a4378f4c254e02f0a46ff))
|
|
9
|
+
* add WaaS unlock and recovery UI to mobile demo ([#10408](https://github.com/dynamic-labs/dynamic-auth/issues/10408)) ([94cdb88](https://github.com/dynamic-labs/dynamic-auth/commit/94cdb882fca3c34d157b42d5208f56812008c43b))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* bump axios to fix high vulnerability ([#10406](https://github.com/dynamic-labs/dynamic-auth/issues/10406)) ([303e2dc](https://github.com/dynamic-labs/dynamic-auth/commit/303e2dcf1e7e8ecad4caf2d74e805ee427c1d00e))
|
|
15
|
+
* patch node-forge CVE-2025-12816 in global-wallet ([#10401](https://github.com/dynamic-labs/dynamic-auth/issues/10401)) ([46e6eb2](https://github.com/dynamic-labs/dynamic-auth/commit/46e6eb28a0add0052299eaa4ac2dcbe8b1faa98c))
|
|
16
|
+
|
|
2
17
|
### [4.60.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.60.0...v4.60.1) (2026-02-09)
|
|
3
18
|
|
|
4
19
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.61.0",
|
|
4
4
|
"description": "Core package for utilizing Dynamic's sdk",
|
|
5
5
|
"author": "Dynamic Labs, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,13 +20,13 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@vue/reactivity": "^3.4.21",
|
|
22
22
|
"@dynamic-labs/sdk-api-core": "0.0.864",
|
|
23
|
-
"@dynamic-labs/assert-package-version": "4.
|
|
24
|
-
"@dynamic-labs/locale": "4.
|
|
25
|
-
"@dynamic-labs/logger": "4.
|
|
26
|
-
"@dynamic-labs/message-transport": "4.
|
|
27
|
-
"@dynamic-labs/types": "4.
|
|
28
|
-
"@dynamic-labs/wallet-connector-core": "4.
|
|
29
|
-
"@dynamic-labs/webview-messages": "4.
|
|
23
|
+
"@dynamic-labs/assert-package-version": "4.61.0",
|
|
24
|
+
"@dynamic-labs/locale": "4.61.0",
|
|
25
|
+
"@dynamic-labs/logger": "4.61.0",
|
|
26
|
+
"@dynamic-labs/message-transport": "4.61.0",
|
|
27
|
+
"@dynamic-labs/types": "4.61.0",
|
|
28
|
+
"@dynamic-labs/wallet-connector-core": "4.61.0",
|
|
29
|
+
"@dynamic-labs/webview-messages": "4.61.0",
|
|
30
30
|
"eventemitter3": "5.0.1"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {}
|
|
@@ -11,10 +11,12 @@ const createWaasModule = (core) => {
|
|
|
11
11
|
backupKeySharesToGoogleDrive: (walletId, args) => requestChannel.request('waas_backupKeySharesToGoogleDrive', walletId, args),
|
|
12
12
|
delegateKeyShares: (walletId, args) => requestChannel.request('waas_delegateKeyShares', walletId, args),
|
|
13
13
|
exportClientKeyshares: (walletId, args) => requestChannel.request('waas_exportClientKeyshares', walletId, args),
|
|
14
|
+
getWalletRecoveryState: (walletId, args) => requestChannel.request('waas_getWalletRecoveryState', walletId, args),
|
|
14
15
|
importPrivateKey: (walletId, args) => requestChannel.request('waas_importPrivateKey', walletId, args),
|
|
15
16
|
refreshWalletAccountShares: (walletId, args) => requestChannel.request('waas_refreshWalletAccountShares', walletId, args),
|
|
16
17
|
revokeDelegation: (walletId, args) => requestChannel.request('waas_revokeDelegation', walletId, args),
|
|
17
18
|
signRawMessage: (walletId, args) => requestChannel.request('waas_signRawMessage', walletId, args),
|
|
19
|
+
unlockWallet: (walletId, args) => requestChannel.request('waas_unlockWallet', walletId, args),
|
|
18
20
|
updatePassword: (walletId, args) => requestChannel.request('waas_updatePassword', walletId, args),
|
|
19
21
|
};
|
|
20
22
|
};
|
|
@@ -9,5 +9,7 @@ export type WaasModule = {
|
|
|
9
9
|
refreshWalletAccountShares: WaasMessages['waas_refreshWalletAccountShares'];
|
|
10
10
|
updatePassword: WaasMessages['waas_updatePassword'];
|
|
11
11
|
signRawMessage: WaasMessages['waas_signRawMessage'];
|
|
12
|
+
unlockWallet: WaasMessages['waas_unlockWallet'];
|
|
13
|
+
getWalletRecoveryState: WaasMessages['waas_getWalletRecoveryState'];
|
|
12
14
|
};
|
|
13
15
|
export declare const createWaasModule: (core: Core) => WaasModule;
|
|
@@ -7,10 +7,12 @@ const createWaasModule = (core) => {
|
|
|
7
7
|
backupKeySharesToGoogleDrive: (walletId, args) => requestChannel.request('waas_backupKeySharesToGoogleDrive', walletId, args),
|
|
8
8
|
delegateKeyShares: (walletId, args) => requestChannel.request('waas_delegateKeyShares', walletId, args),
|
|
9
9
|
exportClientKeyshares: (walletId, args) => requestChannel.request('waas_exportClientKeyshares', walletId, args),
|
|
10
|
+
getWalletRecoveryState: (walletId, args) => requestChannel.request('waas_getWalletRecoveryState', walletId, args),
|
|
10
11
|
importPrivateKey: (walletId, args) => requestChannel.request('waas_importPrivateKey', walletId, args),
|
|
11
12
|
refreshWalletAccountShares: (walletId, args) => requestChannel.request('waas_refreshWalletAccountShares', walletId, args),
|
|
12
13
|
revokeDelegation: (walletId, args) => requestChannel.request('waas_revokeDelegation', walletId, args),
|
|
13
14
|
signRawMessage: (walletId, args) => requestChannel.request('waas_signRawMessage', walletId, args),
|
|
15
|
+
unlockWallet: (walletId, args) => requestChannel.request('waas_unlockWallet', walletId, args),
|
|
14
16
|
updatePassword: (walletId, args) => requestChannel.request('waas_updatePassword', walletId, args),
|
|
15
17
|
};
|
|
16
18
|
};
|