@dynamic-labs/tempo 4.92.4 → 5.0.0-rc.2
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,19 @@
|
|
|
1
1
|
|
|
2
|
+
## [5.0.0-rc.2](https://github.com/dynamic-labs/dynamic-auth/compare/v5.0.0-rc.1...v5.0.0-rc.2) (2026-07-17)
|
|
3
|
+
|
|
4
|
+
## [5.0.0-rc.1](https://github.com/dynamic-labs/dynamic-auth/compare/v5.0.0-rc.0...v5.0.0-rc.1) (2026-07-17)
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
### ⚠ BREAKING CHANGES
|
|
8
|
+
|
|
9
|
+
* move legacy embedded wallet to waas upgrade flow to new legacy-embedded-wallet-migration package (#11841)
|
|
10
|
+
* drop default injection of legacy embedded wallet connectors (#11833)
|
|
11
|
+
* remove legacy embedded wallet support (#11979)
|
|
12
|
+
* throw when legacy embedded wallet is detected without migration provider (#11855)
|
|
13
|
+
* remove deprecated eclipse package (#11831)
|
|
14
|
+
* remove deprecated functions and props (#11832)
|
|
15
|
+
|
|
16
|
+
|
|
2
17
|
### [4.92.4](https://github.com/dynamic-labs/dynamic-auth/compare/v4.92.3...v4.92.4) (2026-07-16)
|
|
3
18
|
|
|
4
19
|
|
|
@@ -57,6 +72,7 @@
|
|
|
57
72
|
* improve social OAuth error messages ([#11837](https://github.com/dynamic-labs/dynamic-auth/issues/11837)) ([8e57c06](https://github.com/dynamic-labs/dynamic-auth/commit/8e57c067c5a89111a32a12fb82e190cf6c46ad67))
|
|
58
73
|
* **react-native-extension:** reject path traversal in downloadFile fileName ([#11816](https://github.com/dynamic-labs/dynamic-auth/issues/11816)) ([9367a56](https://github.com/dynamic-labs/dynamic-auth/commit/9367a56b6daa853d7f7e7f5534261bc68825b239))
|
|
59
74
|
* **sdk-react-core:** display exactly the bytes signed in personal_sign preview ([#11818](https://github.com/dynamic-labs/dynamic-auth/issues/11818)) ([30b9382](https://github.com/dynamic-labs/dynamic-auth/commit/30b93829122f00060cb484aef09a03294c03f651))
|
|
75
|
+
|
|
60
76
|
|
|
61
77
|
### [4.91.6](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.5...v4.91.6) (2026-07-03)
|
|
62
78
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/tempo",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0-rc.2",
|
|
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",
|
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
},
|
|
19
19
|
"homepage": "https://www.dynamic.xyz/",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@dynamic-labs/sdk-api-core": "0.0.
|
|
22
|
-
"@dynamic-labs/wallet-connector-core": "
|
|
23
|
-
"@dynamic-labs/ethereum-core": "
|
|
24
|
-
"@dynamic-labs/waas": "
|
|
25
|
-
"@dynamic-labs/assert-package-version": "
|
|
26
|
-
"@dynamic-labs/logger": "
|
|
27
|
-
"@dynamic-labs/types": "
|
|
28
|
-
"@dynamic-labs/utils": "
|
|
21
|
+
"@dynamic-labs/sdk-api-core": "0.0.1082",
|
|
22
|
+
"@dynamic-labs/wallet-connector-core": "5.0.0-rc.2",
|
|
23
|
+
"@dynamic-labs/ethereum-core": "5.0.0-rc.2",
|
|
24
|
+
"@dynamic-labs/waas": "5.0.0-rc.2",
|
|
25
|
+
"@dynamic-labs/assert-package-version": "5.0.0-rc.2",
|
|
26
|
+
"@dynamic-labs/logger": "5.0.0-rc.2",
|
|
27
|
+
"@dynamic-labs/types": "5.0.0-rc.2",
|
|
28
|
+
"@dynamic-labs/utils": "5.0.0-rc.2",
|
|
29
29
|
"viem": "^2.45.3"
|
|
30
30
|
}
|
|
31
31
|
}
|
|
@@ -29,7 +29,7 @@ declare const DynamicWaasTempoConnector_base: (abstract new (...args: any[]) =>
|
|
|
29
29
|
relayUrl?: string | undefined;
|
|
30
30
|
baseClientKeysharesRelayApiUrl?: string | undefined;
|
|
31
31
|
dynamicWaasClient: import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient | undefined;
|
|
32
|
-
revokeSignedSession: (() => void) | undefined;
|
|
32
|
+
revokeSignedSession: ((reason?: string | undefined) => void) | undefined;
|
|
33
33
|
chainName: string;
|
|
34
34
|
authMode: "cookie" | "header";
|
|
35
35
|
logger: Logger;
|
|
@@ -122,6 +122,21 @@ declare const DynamicWaasTempoConnector_base: (abstract new (...args: any[]) =>
|
|
|
122
122
|
accountAddress: string;
|
|
123
123
|
password?: string | undefined;
|
|
124
124
|
}): Promise<void>;
|
|
125
|
+
runBackupLifecycle({ provider, accountAddress, password, performBackup, }: {
|
|
126
|
+
provider: string;
|
|
127
|
+
accountAddress: string;
|
|
128
|
+
password?: string | undefined;
|
|
129
|
+
performBackup: (prerequisites: {
|
|
130
|
+
walletClient: import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient;
|
|
131
|
+
resolvedPassword: string | undefined;
|
|
132
|
+
signedSessionId: string;
|
|
133
|
+
sessionPublicKey: string | undefined;
|
|
134
|
+
traceContext: {
|
|
135
|
+
traceId: string;
|
|
136
|
+
startTime: number;
|
|
137
|
+
};
|
|
138
|
+
}) => Promise<void>;
|
|
139
|
+
}): Promise<void>;
|
|
125
140
|
backupKeySharesToGoogleDrive({ accountAddress, password, googleDriveAccessToken, }: {
|
|
126
141
|
accountAddress: string;
|
|
127
142
|
password?: string | undefined;
|