@dynamic-labs/waas 4.87.1 → 4.87.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 +8 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +10 -10
- package/src/DynamicWaasMixin.cjs +2 -1
- package/src/DynamicWaasMixin.d.ts +2 -1
- package/src/DynamicWaasMixin.js +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.87.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.87.1...v4.87.2) (2026-06-03)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* allow for using v2 zerodev projects ([#11449](https://github.com/dynamic-labs/dynamic-auth/issues/11449)) ([9242698](https://github.com/dynamic-labs/dynamic-auth/commit/9242698670db92b03ad1afc776e674ec9a7e7e54))
|
|
8
|
+
* e2e: ensure MFA item is detached before logout ([#11452](https://github.com/dynamic-labs/dynamic-auth/issues/11452)) ([5a4c67e](https://github.com/dynamic-labs/dynamic-auth/commit/5a4c67e93b66a548346c1065fb373c675f0054a0))
|
|
9
|
+
|
|
2
10
|
### [4.87.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.87.0...v4.87.1) (2026-06-03)
|
|
3
11
|
|
|
4
12
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/waas",
|
|
3
|
-
"version": "4.87.
|
|
3
|
+
"version": "4.87.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"author": "Dynamic Labs, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -16,18 +16,18 @@
|
|
|
16
16
|
"./package.json": "./package.json"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@dynamic-labs-sdk/client": "1.
|
|
20
|
-
"@dynamic-labs/assert-package-version": "4.87.
|
|
19
|
+
"@dynamic-labs-sdk/client": "1.6.0",
|
|
20
|
+
"@dynamic-labs/assert-package-version": "4.87.2",
|
|
21
21
|
"@dynamic-labs/sdk-api-core": "0.0.1015",
|
|
22
22
|
"@dynamic-labs-wallet/browser-wallet-client": "1.0.13",
|
|
23
23
|
"@dynamic-labs-wallet/forward-mpc-client": "0.10.1",
|
|
24
|
-
"@dynamic-labs/ethereum-core": "4.87.
|
|
25
|
-
"@dynamic-labs/logger": "4.87.
|
|
26
|
-
"@dynamic-labs/solana-core": "4.87.
|
|
27
|
-
"@dynamic-labs/sui-core": "4.87.
|
|
28
|
-
"@dynamic-labs/utils": "4.87.
|
|
29
|
-
"@dynamic-labs/wallet-book": "4.87.
|
|
30
|
-
"@dynamic-labs/wallet-connector-core": "4.87.
|
|
24
|
+
"@dynamic-labs/ethereum-core": "4.87.2",
|
|
25
|
+
"@dynamic-labs/logger": "4.87.2",
|
|
26
|
+
"@dynamic-labs/solana-core": "4.87.2",
|
|
27
|
+
"@dynamic-labs/sui-core": "4.87.2",
|
|
28
|
+
"@dynamic-labs/utils": "4.87.2",
|
|
29
|
+
"@dynamic-labs/wallet-book": "4.87.2",
|
|
30
|
+
"@dynamic-labs/wallet-connector-core": "4.87.2"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {}
|
|
33
33
|
}
|
package/src/DynamicWaasMixin.cjs
CHANGED
|
@@ -311,7 +311,7 @@ const withDynamicWaas = (BaseClass) => {
|
|
|
311
311
|
});
|
|
312
312
|
}
|
|
313
313
|
backupKeySharesToGoogleDrive(_a) {
|
|
314
|
-
return _tslib.__awaiter(this, arguments, void 0, function* ({ accountAddress, password, }) {
|
|
314
|
+
return _tslib.__awaiter(this, arguments, void 0, function* ({ accountAddress, password, googleDriveAccessToken, }) {
|
|
315
315
|
var _b, _c;
|
|
316
316
|
if (!accountAddress) {
|
|
317
317
|
throw new utils.DynamicError('Account address is required');
|
|
@@ -325,6 +325,7 @@ const withDynamicWaas = (BaseClass) => {
|
|
|
325
325
|
return walletClient.backupKeySharesToGoogleDrive({
|
|
326
326
|
accountAddress,
|
|
327
327
|
authToken: (_c = this.getAuthToken) === null || _c === void 0 ? void 0 : _c.call(this),
|
|
328
|
+
googleDriveAccessToken,
|
|
328
329
|
password: resolvedPassword,
|
|
329
330
|
signedSessionId,
|
|
330
331
|
});
|
|
@@ -105,9 +105,10 @@ export declare const withDynamicWaas: <T extends abstract new (...args: any[]) =
|
|
|
105
105
|
accountAddress: string;
|
|
106
106
|
password?: string;
|
|
107
107
|
}): Promise<void>;
|
|
108
|
-
backupKeySharesToGoogleDrive({ accountAddress, password, }: {
|
|
108
|
+
backupKeySharesToGoogleDrive({ accountAddress, password, googleDriveAccessToken, }: {
|
|
109
109
|
accountAddress: string;
|
|
110
110
|
password?: string;
|
|
111
|
+
googleDriveAccessToken?: string;
|
|
111
112
|
}): Promise<void>;
|
|
112
113
|
exportClientKeysharesFromGoogleDrive({ accountAddress, password, }: {
|
|
113
114
|
accountAddress: string;
|
package/src/DynamicWaasMixin.js
CHANGED
|
@@ -307,7 +307,7 @@ const withDynamicWaas = (BaseClass) => {
|
|
|
307
307
|
});
|
|
308
308
|
}
|
|
309
309
|
backupKeySharesToGoogleDrive(_a) {
|
|
310
|
-
return __awaiter(this, arguments, void 0, function* ({ accountAddress, password, }) {
|
|
310
|
+
return __awaiter(this, arguments, void 0, function* ({ accountAddress, password, googleDriveAccessToken, }) {
|
|
311
311
|
var _b, _c;
|
|
312
312
|
if (!accountAddress) {
|
|
313
313
|
throw new DynamicError('Account address is required');
|
|
@@ -321,6 +321,7 @@ const withDynamicWaas = (BaseClass) => {
|
|
|
321
321
|
return walletClient.backupKeySharesToGoogleDrive({
|
|
322
322
|
accountAddress,
|
|
323
323
|
authToken: (_c = this.getAuthToken) === null || _c === void 0 ? void 0 : _c.call(this),
|
|
324
|
+
googleDriveAccessToken,
|
|
324
325
|
password: resolvedPassword,
|
|
325
326
|
signedSessionId,
|
|
326
327
|
});
|