@dynamic-labs/aleo 5.5.0 → 5.6.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,11 @@
|
|
|
1
1
|
|
|
2
|
+
## [5.6.0](https://github.com/dynamic-labs/dynamic-auth/compare/v5.5.0...v5.6.0) (2026-09-01)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* forward target signer passwords ([#12300](https://github.com/dynamic-labs/dynamic-auth/issues/12300)) ([39b142b](https://github.com/dynamic-labs/dynamic-auth/commit/39b142b51767ad54ae57196a381bec19a892c06f))
|
|
8
|
+
|
|
2
9
|
## [5.5.0](https://github.com/dynamic-labs/dynamic-auth/compare/v5.4.1...v5.5.0) (2026-08-31)
|
|
3
10
|
|
|
4
11
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/aleo",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.6.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,19 +18,19 @@
|
|
|
18
18
|
},
|
|
19
19
|
"homepage": "https://www.dynamic.xyz/",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@dynamic-labs/assert-package-version": "5.
|
|
22
|
-
"@dynamic-labs-sdk/client": "1.
|
|
21
|
+
"@dynamic-labs/assert-package-version": "5.6.0",
|
|
22
|
+
"@dynamic-labs-sdk/client": "1.31.0",
|
|
23
23
|
"@dynamic-labs/sdk-api-core": "0.12.0",
|
|
24
24
|
"@provablehq/aleo-wallet-adaptor-core": "0.3.0-alpha.3",
|
|
25
25
|
"@provablehq/aleo-wallet-adaptor-shield": "0.3.0-alpha.3",
|
|
26
26
|
"@provablehq/aleo-wallet-standard": "0.3.0-alpha.3",
|
|
27
27
|
"@provablehq/aleo-types": "0.3.0-alpha.3",
|
|
28
|
-
"@dynamic-labs/logger": "5.
|
|
29
|
-
"@dynamic-labs/types": "5.
|
|
30
|
-
"@dynamic-labs/utils": "5.
|
|
31
|
-
"@dynamic-labs/waas": "5.
|
|
32
|
-
"@dynamic-labs/wallet-book": "5.
|
|
33
|
-
"@dynamic-labs/wallet-connector-core": "5.
|
|
28
|
+
"@dynamic-labs/logger": "5.6.0",
|
|
29
|
+
"@dynamic-labs/types": "5.6.0",
|
|
30
|
+
"@dynamic-labs/utils": "5.6.0",
|
|
31
|
+
"@dynamic-labs/waas": "5.6.0",
|
|
32
|
+
"@dynamic-labs/wallet-book": "5.6.0",
|
|
33
|
+
"@dynamic-labs/wallet-connector-core": "5.6.0"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {}
|
|
36
36
|
}
|
|
@@ -85,7 +85,7 @@ declare const DynamicWaasAleoConnector_base: (abstract new (...args: any[]) => {
|
|
|
85
85
|
publicKeyHex: string;
|
|
86
86
|
rawPublicKey: string | Uint8Array | undefined;
|
|
87
87
|
}>;
|
|
88
|
-
addSignerViaReshare({ accountAddress, walletId, businessAccountId, targetSignerIdentity, signerType, password, }: {
|
|
88
|
+
addSignerViaReshare({ accountAddress, walletId, businessAccountId, targetSignerIdentity, signerType, password, targetSignerPassword, }: {
|
|
89
89
|
accountAddress: string;
|
|
90
90
|
walletId?: string | undefined;
|
|
91
91
|
businessAccountId: string;
|
|
@@ -96,6 +96,7 @@ declare const DynamicWaasAleoConnector_base: (abstract new (...args: any[]) => {
|
|
|
96
96
|
};
|
|
97
97
|
signerType?: "endUser" | "server" | undefined;
|
|
98
98
|
password?: string | undefined;
|
|
99
|
+
targetSignerPassword?: string | undefined;
|
|
99
100
|
}): Promise<{
|
|
100
101
|
shareSetId: string;
|
|
101
102
|
}>;
|