@dynamic-labs-sdk/sui 0.1.0-alpha.0 → 0.1.0-alpha.10

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,3 +1,70 @@
1
+ ## 0.1.0-alpha.10 (2025-09-22)
2
+
3
+ ### 🩹 Fixes
4
+
5
+ - ensure server side rendering will not trigger any api call ([#445](https://github.com/dynamic-labs/dynamic-sdk/pull/445))
6
+ - handle 401 when initializing the SDK ([#446](https://github.com/dynamic-labs/dynamic-sdk/pull/446))
7
+
8
+ ## 0.1.0-alpha.9 (2025-09-19)
9
+
10
+ ### 🚀 Features
11
+
12
+ - refresh user when cookies are enabled ([#430](https://github.com/dynamic-labs/dynamic-sdk/pull/430))
13
+ - introduce waitForClientInitialized ([#436](https://github.com/dynamic-labs/dynamic-sdk/pull/436))
14
+ - introduce isMobile helper utility ([#441](https://github.com/dynamic-labs/dynamic-sdk/pull/441))
15
+
16
+ ### 🩹 Fixes
17
+
18
+ - logout user when any api call fails with 401 ([#432](https://github.com/dynamic-labs/dynamic-sdk/pull/432))
19
+ - logout for connected only wallets ([#437](https://github.com/dynamic-labs/dynamic-sdk/pull/437))
20
+
21
+ ### 🔧 Refactors
22
+
23
+ - linter rule for addExtension functions ([#433](https://github.com/dynamic-labs/dynamic-sdk/pull/433))
24
+ - improve demo ui and organization ([#434](https://github.com/dynamic-labs/dynamic-sdk/pull/434))
25
+ - misc improvements ([#438](https://github.com/dynamic-labs/dynamic-sdk/pull/438))
26
+ - add linter rule for unpinned dependencies ([#439](https://github.com/dynamic-labs/dynamic-sdk/pull/439))
27
+
28
+ ## 0.1.0-alpha.8 (2025-09-15)
29
+
30
+ This was a version bump only, there were no code changes.
31
+
32
+ ## 0.1.0-alpha.7 (2025-09-12)
33
+
34
+ ### 🩹 Fixes
35
+
36
+ - logout with wallet standard sol wallets ([#423](https://github.com/dynamic-labs/dynamic-sdk/pull/423))
37
+
38
+ ## 0.1.0-alpha.6 (2025-09-11)
39
+
40
+ ### 🚀 Features
41
+
42
+ - add captcha support
43
+
44
+ ## 0.1.0-alpha.5 (2025-09-11)
45
+
46
+ ### 🚀 Features
47
+
48
+ - expose the session expires at date ([#420](https://github.com/dynamic-labs/dynamic-sdk/pull/420))
49
+
50
+ ## 0.1.0-alpha.4 (2025-09-10)
51
+
52
+ ### 🩹 Fixes
53
+
54
+ - set client version to project settings api call ([#414](https://github.com/dynamic-labs/dynamic-sdk/pull/414))
55
+
56
+ ## 0.1.0-alpha.3 (2025-09-09)
57
+
58
+ This was a version bump only, there were no code changes.
59
+
60
+ ## 0.1.0-alpha.2 (2025-09-08)
61
+
62
+ This was a version bump only, there were no code changes.
63
+
64
+ ## 0.1.0-alpha.1 (2025-09-02)
65
+
66
+ This was a version bump only, there were no code changes.
67
+
1
68
  ## 0.1.0-alpha.0 (2025-09-02)
2
69
 
3
70
  ### 🚀 Features
package/index.cjs.js CHANGED
@@ -6,7 +6,7 @@ var client = require('@dynamic-labs-sdk/client');
6
6
  var core = require('@dynamic-labs-sdk/client/core');
7
7
 
8
8
  var name = "@dynamic-labs-sdk/sui";
9
- var version = "0.1.0-alpha.0";
9
+ var version = "0.1.0-alpha.10";
10
10
 
11
11
  class NotSuiProviderError extends client.BaseError {
12
12
  constructor(params){
package/index.esm.js CHANGED
@@ -4,7 +4,7 @@ import { BaseError } from '@dynamic-labs-sdk/client';
4
4
  import { getDefaultClient, getWalletProviderFromWalletAccount } from '@dynamic-labs-sdk/client/core';
5
5
 
6
6
  var name = "@dynamic-labs-sdk/sui";
7
- var version = "0.1.0-alpha.0";
7
+ var version = "0.1.0-alpha.10";
8
8
 
9
9
  class NotSuiProviderError extends BaseError {
10
10
  constructor(params){
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs-sdk/sui",
3
- "version": "0.1.0-alpha.0",
3
+ "version": "0.1.0-alpha.10",
4
4
  "type": "module",
5
5
  "main": "./index.cjs.js",
6
6
  "module": "./index.esm.js",
@@ -19,10 +19,10 @@
19
19
  }
20
20
  },
21
21
  "dependencies": {
22
- "@dynamic-labs-sdk/client": "0.1.0-alpha.0",
23
- "@dynamic-labs-sdk/assert-package-version": "0.1.0-alpha.0",
22
+ "@dynamic-labs-sdk/client": "0.1.0-alpha.10",
23
+ "@dynamic-labs-sdk/assert-package-version": "0.1.0-alpha.10",
24
24
  "@dynamic-labs/sdk-api-core": "0.0.762",
25
25
  "@mysten/wallet-standard": "0.16.4",
26
- "eventemitter3": "^5.0.1"
26
+ "eventemitter3": "5.0.1"
27
27
  }
28
28
  }