@dynamic-labs/tempo 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
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "5.5.0";
6
+ var version = "5.6.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "5.5.0";
2
+ var version = "5.6.0";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/tempo",
3
- "version": "5.5.0",
3
+ "version": "5.6.0",
4
4
  "description": "A React SDK for implementing Tempo wallet web3 authentication and authorization to your website.",
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
  "@dynamic-labs/sdk-api-core": "0.12.0",
22
- "@dynamic-labs/wallet-connector-core": "5.5.0",
23
- "@dynamic-labs/ethereum-core": "5.5.0",
24
- "@dynamic-labs/waas": "5.5.0",
25
- "@dynamic-labs/assert-package-version": "5.5.0",
26
- "@dynamic-labs/logger": "5.5.0",
27
- "@dynamic-labs/types": "5.5.0",
28
- "@dynamic-labs/utils": "5.5.0",
22
+ "@dynamic-labs/wallet-connector-core": "5.6.0",
23
+ "@dynamic-labs/ethereum-core": "5.6.0",
24
+ "@dynamic-labs/waas": "5.6.0",
25
+ "@dynamic-labs/assert-package-version": "5.6.0",
26
+ "@dynamic-labs/logger": "5.6.0",
27
+ "@dynamic-labs/types": "5.6.0",
28
+ "@dynamic-labs/utils": "5.6.0",
29
29
  "viem": "^2.45.3"
30
30
  }
31
31
  }
@@ -75,7 +75,7 @@ declare const DynamicWaasTempoConnector_base: (abstract new (...args: any[]) =>
75
75
  publicKeyHex: string;
76
76
  rawPublicKey: string | Uint8Array | undefined;
77
77
  }>;
78
- addSignerViaReshare({ accountAddress, walletId, businessAccountId, targetSignerIdentity, signerType, password, }: {
78
+ addSignerViaReshare({ accountAddress, walletId, businessAccountId, targetSignerIdentity, signerType, password, targetSignerPassword, }: {
79
79
  accountAddress: string;
80
80
  walletId?: string | undefined;
81
81
  businessAccountId: string;
@@ -86,6 +86,7 @@ declare const DynamicWaasTempoConnector_base: (abstract new (...args: any[]) =>
86
86
  };
87
87
  signerType?: "endUser" | "server" | undefined;
88
88
  password?: string | undefined;
89
+ targetSignerPassword?: string | undefined;
89
90
  }): Promise<{
90
91
  shareSetId: string;
91
92
  }>;