@dynamic-labs/waas-svm 4.52.0 → 4.52.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,23 @@
1
1
 
2
+ ### [4.52.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.52.1...v4.52.2) (2025-12-27)
3
+
4
+
5
+ ### Features
6
+
7
+ * expose usemetamasksdk in react native ([#10161](https://github.com/dynamic-labs/dynamic-auth/issues/10161)) ([f4dcfe7](https://github.com/dynamic-labs/dynamic-auth/commit/f4dcfe7bcf8c502990b2c2db17a44de1d58498a7))
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * Handle Google consent during authentication flow when it’s required ([#10162](https://github.com/dynamic-labs/dynamic-auth/issues/10162)) ([138f7ff](https://github.com/dynamic-labs/dynamic-auth/commit/138f7ffd1b8660ce27d7e5faac7bd01d56817ff3))
13
+
14
+ ### [4.52.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.52.0...v4.52.1) (2025-12-23)
15
+
16
+
17
+ ### Features
18
+
19
+ * add getConnectedAccounts to waas mixin ([#10157](https://github.com/dynamic-labs/dynamic-auth/issues/10157)) ([959f216](https://github.com/dynamic-labs/dynamic-auth/commit/959f216a981a8008d1d051eb9813793d634049e0))
20
+
2
21
  ## [4.52.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.51.2...v4.52.0) (2025-12-22)
3
22
 
4
23
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.52.0";
6
+ var version = "4.52.2";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.52.0";
2
+ var version = "4.52.2";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/waas-svm",
3
- "version": "4.52.0",
3
+ "version": "4.52.2",
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",
@@ -22,14 +22,14 @@
22
22
  "@solana/web3.js": "1.98.1",
23
23
  "eventemitter3": "5.0.1",
24
24
  "bs58": "5.0.0",
25
- "@dynamic-labs/assert-package-version": "4.52.0",
26
- "@dynamic-labs/logger": "4.52.0",
27
- "@dynamic-labs/rpc-providers": "4.52.0",
28
- "@dynamic-labs/solana-core": "4.52.0",
29
- "@dynamic-labs/types": "4.52.0",
30
- "@dynamic-labs/utils": "4.52.0",
31
- "@dynamic-labs/waas": "4.52.0",
32
- "@dynamic-labs/wallet-connector-core": "4.52.0"
25
+ "@dynamic-labs/assert-package-version": "4.52.2",
26
+ "@dynamic-labs/logger": "4.52.2",
27
+ "@dynamic-labs/rpc-providers": "4.52.2",
28
+ "@dynamic-labs/solana-core": "4.52.2",
29
+ "@dynamic-labs/types": "4.52.2",
30
+ "@dynamic-labs/utils": "4.52.2",
31
+ "@dynamic-labs/waas": "4.52.2",
32
+ "@dynamic-labs/wallet-connector-core": "4.52.2"
33
33
  },
34
34
  "peerDependencies": {}
35
35
  }
@@ -102,6 +102,7 @@ declare const DynamicWaasSVMConnector_base: (abstract new (...args: any[]) => {
102
102
  }): Promise<string>;
103
103
  endSession(): Promise<void>;
104
104
  getActiveAccountAddress(): Promise<string | undefined>;
105
+ getConnectedAccounts(): Promise<string[]>;
105
106
  generateTraceId(): string;
106
107
  instrument(message: string, context: import("dist/packages/logger/src").InstrumentOptions & import("dist/packages/waas/utils/instrumentation").InstrumentContext & Record<string, any>): void;
107
108
  instrumentAsync<T_1>({ operation, resource, fn, context, }: {