@dynamic-labs/waas-sui 4.19.4 → 4.19.5

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
+ ### [4.19.5](https://github.com/dynamic-labs/dynamic-auth/compare/v4.19.4...v4.19.5) (2025-06-02)
3
+
4
+
5
+ ### Features
6
+
7
+ * add cleanup for waas connectors ([#8849](https://github.com/dynamic-labs/dynamic-auth/issues/8849)) ([5899169](https://github.com/dynamic-labs/dynamic-auth/commit/5899169abaf7ce86add2b1393cfd9b967da5e388))
8
+
2
9
  ### [4.19.4](https://github.com/dynamic-labs/dynamic-auth/compare/v4.19.3...v4.19.4) (2025-05-31)
3
10
 
4
11
  ### [4.19.3](https://github.com/dynamic-labs/dynamic-auth/compare/v4.19.2...v4.19.3) (2025-05-28)
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.19.4";
6
+ var version = "4.19.5";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.19.4";
2
+ var version = "4.19.5";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/waas-sui",
3
- "version": "4.19.4",
3
+ "version": "4.19.5",
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,17 +18,17 @@
18
18
  },
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
- "@dynamic-labs-wallet/browser-wallet-client": "0.0.76",
21
+ "@dynamic-labs-wallet/browser-wallet-client": "0.0.80",
22
22
  "@mysten/sui": "1.24.0",
23
23
  "@mysten/wallet-standard": "0.13.29",
24
- "@dynamic-labs/sui": "4.19.4",
25
- "@dynamic-labs/assert-package-version": "4.19.4",
26
- "@dynamic-labs/logger": "4.19.4",
27
- "@dynamic-labs/rpc-providers": "4.19.4",
28
- "@dynamic-labs/types": "4.19.4",
29
- "@dynamic-labs/utils": "4.19.4",
30
- "@dynamic-labs/wallet-book": "4.19.4",
31
- "@dynamic-labs/wallet-connector-core": "4.19.4"
24
+ "@dynamic-labs/sui": "4.19.5",
25
+ "@dynamic-labs/assert-package-version": "4.19.5",
26
+ "@dynamic-labs/logger": "4.19.5",
27
+ "@dynamic-labs/rpc-providers": "4.19.5",
28
+ "@dynamic-labs/types": "4.19.5",
29
+ "@dynamic-labs/utils": "4.19.5",
30
+ "@dynamic-labs/wallet-book": "4.19.5",
31
+ "@dynamic-labs/wallet-connector-core": "4.19.5"
32
32
  },
33
33
  "peerDependencies": {}
34
34
  }
@@ -298,6 +298,11 @@ class DynamicWaasSuiConnector extends sui.SuiWalletConnector {
298
298
  }
299
299
  endSession() {
300
300
  return _tslib.__awaiter(this, void 0, void 0, function* () {
301
+ const waasSuiClient = this.getWaasWalletClient();
302
+ if (!waasSuiClient) {
303
+ return;
304
+ }
305
+ yield waasSuiClient.cleanup();
301
306
  this.activeAccountAddress = undefined;
302
307
  this.dynamicWaasClient = undefined;
303
308
  });
@@ -294,6 +294,11 @@ class DynamicWaasSuiConnector extends SuiWalletConnector {
294
294
  }
295
295
  endSession() {
296
296
  return __awaiter(this, void 0, void 0, function* () {
297
+ const waasSuiClient = this.getWaasWalletClient();
298
+ if (!waasSuiClient) {
299
+ return;
300
+ }
301
+ yield waasSuiClient.cleanup();
297
302
  this.activeAccountAddress = undefined;
298
303
  this.dynamicWaasClient = undefined;
299
304
  });