@dynamic-labs/ton 4.60.0 → 4.60.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 +15 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +9 -9
- package/src/waas/connector/DynamicWaasTonConnector.d.ts +5 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.60.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.60.0...v4.60.1) (2026-02-09)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add WAAS password handlers to DynamicContextProvider settings ([#10360](https://github.com/dynamic-labs/dynamic-auth/issues/10360)) ([5fc3fa7](https://github.com/dynamic-labs/dynamic-auth/commit/5fc3fa7148c53b64d36672be2d1ae629cb9cdaf8))
|
|
8
|
+
* improve password handling and UI for wallet protection ([#10386](https://github.com/dynamic-labs/dynamic-auth/issues/10386)) ([d27936e](https://github.com/dynamic-labs/dynamic-auth/commit/d27936e5bea37facceefccc0f2507d25a775ad33))
|
|
9
|
+
* pass authToken to wallet recovery operations ([#10379](https://github.com/dynamic-labs/dynamic-auth/issues/10379)) ([294efc7](https://github.com/dynamic-labs/dynamic-auth/commit/294efc7ab5816f63b7e5cc49a150cf9d34d300af))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* override fast-xml-parser to 5.3.4 for CVE-2026-25128 ([#10381](https://github.com/dynamic-labs/dynamic-auth/issues/10381)) ([7fb4c22](https://github.com/dynamic-labs/dynamic-auth/commit/7fb4c221252b84bf38bbdab0b37b8f9a981ebe1a))
|
|
15
|
+
* unlock wallet view error handling and password error UI ([#10388](https://github.com/dynamic-labs/dynamic-auth/issues/10388)) ([5ffc8e1](https://github.com/dynamic-labs/dynamic-auth/commit/5ffc8e1e6dd0d7f32bb94c37ce3674be949f010b))
|
|
16
|
+
|
|
2
17
|
## [4.60.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.59.2...v4.60.0) (2026-02-05)
|
|
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/ton",
|
|
3
|
-
"version": "4.60.
|
|
3
|
+
"version": "4.60.1",
|
|
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,14 +18,14 @@
|
|
|
18
18
|
},
|
|
19
19
|
"homepage": "https://www.dynamic.xyz/",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@dynamic-labs/assert-package-version": "4.60.
|
|
22
|
-
"@dynamic-labs/logger": "4.60.
|
|
23
|
-
"@dynamic-labs/sdk-api-core": "0.0.
|
|
24
|
-
"@dynamic-labs/types": "4.60.
|
|
25
|
-
"@dynamic-labs/utils": "4.60.
|
|
26
|
-
"@dynamic-labs/waas": "4.60.
|
|
27
|
-
"@dynamic-labs/wallet-book": "4.60.
|
|
28
|
-
"@dynamic-labs/wallet-connector-core": "4.60.
|
|
21
|
+
"@dynamic-labs/assert-package-version": "4.60.1",
|
|
22
|
+
"@dynamic-labs/logger": "4.60.1",
|
|
23
|
+
"@dynamic-labs/sdk-api-core": "0.0.864",
|
|
24
|
+
"@dynamic-labs/types": "4.60.1",
|
|
25
|
+
"@dynamic-labs/utils": "4.60.1",
|
|
26
|
+
"@dynamic-labs/waas": "4.60.1",
|
|
27
|
+
"@dynamic-labs/wallet-book": "4.60.1",
|
|
28
|
+
"@dynamic-labs/wallet-connector-core": "4.60.1",
|
|
29
29
|
"@ton/core": "0.62.0",
|
|
30
30
|
"@ton/crypto": "3.3.0",
|
|
31
31
|
"@ton/ton": "16.0.0",
|
|
@@ -18,7 +18,7 @@ declare const DynamicWaasTonConnector_base: (abstract new (...args: any[]) => {
|
|
|
18
18
|
getMfaToken?: ((props?: {
|
|
19
19
|
mfaAction?: MFAAction | undefined;
|
|
20
20
|
} | undefined) => Promise<string | undefined>) | undefined;
|
|
21
|
-
|
|
21
|
+
getWalletPassword?: import("@dynamic-labs/wallet-connector-core").GetWalletPasswordFn | undefined;
|
|
22
22
|
getAuthToken?: (() => string) | undefined;
|
|
23
23
|
environmentId?: string | undefined;
|
|
24
24
|
baseApiUrl?: string | undefined;
|
|
@@ -35,7 +35,7 @@ declare const DynamicWaasTonConnector_base: (abstract new (...args: any[]) => {
|
|
|
35
35
|
setGetMfaTokenFunction(getMfaToken: (props?: {
|
|
36
36
|
mfaAction?: MFAAction | undefined;
|
|
37
37
|
} | undefined) => Promise<string | undefined>): void;
|
|
38
|
-
|
|
38
|
+
setGetWalletPasswordFunction(getWalletPassword: import("@dynamic-labs/wallet-connector-core").GetWalletPasswordFn): void;
|
|
39
39
|
getPasswordIfNeeded({ accountAddress, }: {
|
|
40
40
|
accountAddress: string;
|
|
41
41
|
}): Promise<string | undefined>;
|
|
@@ -45,9 +45,7 @@ declare const DynamicWaasTonConnector_base: (abstract new (...args: any[]) => {
|
|
|
45
45
|
setRelayUrl(relayUrl: string): void;
|
|
46
46
|
setGetSignedSessionIdFunction(getSignedSessionId: () => Promise<string>): void;
|
|
47
47
|
delegateKeyShares({ accountAddress, password, }: {
|
|
48
|
-
accountAddress: string;
|
|
49
|
-
* Override setEnvironmentId to ensure it's set on the global logger
|
|
50
|
-
*/
|
|
48
|
+
accountAddress: string;
|
|
51
49
|
password?: string | undefined;
|
|
52
50
|
}): Promise<void>;
|
|
53
51
|
createDynamicWaasClient(traceContext?: import("dist/packages/waas/utils/instrumentation").TraceContext | undefined): Promise<import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient>;
|
|
@@ -113,7 +111,7 @@ declare const DynamicWaasTonConnector_base: (abstract new (...args: any[]) => {
|
|
|
113
111
|
}): Promise<void>;
|
|
114
112
|
updatePassword({ accountAddress, existingPassword, newPassword, }: {
|
|
115
113
|
accountAddress: string;
|
|
116
|
-
existingPassword
|
|
114
|
+
existingPassword?: string | undefined;
|
|
117
115
|
newPassword: string;
|
|
118
116
|
}): Promise<void>;
|
|
119
117
|
signRawMessage({ accountAddress, message, password, }: {
|
|
@@ -123,7 +121,7 @@ declare const DynamicWaasTonConnector_base: (abstract new (...args: any[]) => {
|
|
|
123
121
|
}): Promise<string>;
|
|
124
122
|
unlockWallet({ accountAddress, password, }: {
|
|
125
123
|
accountAddress: string;
|
|
126
|
-
password
|
|
124
|
+
password?: string | undefined;
|
|
127
125
|
}): Promise<import("@dynamic-labs-wallet/core").GetWalletResponse>;
|
|
128
126
|
getWalletRecoveryState({ accountAddress, signedSessionId, }: {
|
|
129
127
|
accountAddress: string;
|