@dynamic-labs/waas 4.29.1 → 4.29.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,16 @@
1
1
 
2
+ ### [4.29.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.29.1...v4.29.2) (2025-08-25)
3
+
4
+
5
+ ### Features
6
+
7
+ * return wallet metadata in walletOption ([#9391](https://github.com/dynamic-labs/dynamic-auth/issues/9391)) ([4ddd7ea](https://github.com/dynamic-labs/dynamic-auth/commit/4ddd7eadc37d646ab5d39fab420e598e47f5741b))
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * export usePayWithDynamic ([#9395](https://github.com/dynamic-labs/dynamic-auth/issues/9395)) ([059999e](https://github.com/dynamic-labs/dynamic-auth/commit/059999e3b156510ce95c6bf413c0a0123a52b251))
13
+
2
14
  ### [4.29.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.29.0...v4.29.1) (2025-08-21)
3
15
 
4
16
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.29.1";
6
+ var version = "4.29.2";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.29.1";
2
+ var version = "4.29.2";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/waas",
3
- "version": "4.29.1",
3
+ "version": "4.29.2",
4
4
  "type": "module",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -16,14 +16,14 @@
16
16
  "./package.json": "./package.json"
17
17
  },
18
18
  "dependencies": {
19
- "@dynamic-labs/assert-package-version": "4.29.1",
20
- "@dynamic-labs/sdk-api-core": "0.0.753",
21
- "@dynamic-labs-wallet/browser-wallet-client": "0.0.137",
22
- "@dynamic-labs/ethereum-core": "4.29.1",
23
- "@dynamic-labs/solana-core": "4.29.1",
24
- "@dynamic-labs/sui-core": "4.29.1",
25
- "@dynamic-labs/utils": "4.29.1",
26
- "@dynamic-labs/wallet-book": "4.29.1"
19
+ "@dynamic-labs/assert-package-version": "4.29.2",
20
+ "@dynamic-labs/sdk-api-core": "0.0.758",
21
+ "@dynamic-labs-wallet/browser-wallet-client": "0.0.142",
22
+ "@dynamic-labs/ethereum-core": "4.29.2",
23
+ "@dynamic-labs/solana-core": "4.29.2",
24
+ "@dynamic-labs/sui-core": "4.29.2",
25
+ "@dynamic-labs/utils": "4.29.2",
26
+ "@dynamic-labs/wallet-book": "4.29.2"
27
27
  },
28
28
  "peerDependencies": {}
29
29
  }
@@ -126,7 +126,7 @@ const withDynamicWaas = (BaseClass) => {
126
126
  }
127
127
  // Common methods that are identical across all connectors
128
128
  createWalletAccount() {
129
- return _tslib.__awaiter(this, arguments, void 0, function* ({ thresholdSignatureScheme = 'TWO_OF_TWO', } = {}) {
129
+ return _tslib.__awaiter(this, arguments, void 0, function* ({ thresholdSignatureScheme = 'TWO_OF_TWO', password, } = {}) {
130
130
  var _a, _b;
131
131
  const walletClient = yield this.getWaasWalletClient();
132
132
  const signedSessionId = yield ((_a = this.getSignedSessionId) === null || _a === void 0 ? void 0 : _a.call(this));
@@ -135,6 +135,7 @@ const withDynamicWaas = (BaseClass) => {
135
135
  }
136
136
  const createdWallet = yield walletClient.createWalletAccount({
137
137
  authToken: (_b = this.getAuthToken) === null || _b === void 0 ? void 0 : _b.call(this),
138
+ password,
138
139
  signedSessionId,
139
140
  thresholdSignatureScheme: thresholdSignatureScheme,
140
141
  });
@@ -38,8 +38,9 @@ export declare const withDynamicWaas: <T extends abstract new (...args: any[]) =
38
38
  }): Promise<void>;
39
39
  createDynamicWaasClient(): Promise<DynamicWalletClient>;
40
40
  getWaasWalletClient(): Promise<DynamicWalletClient>;
41
- createWalletAccount({ thresholdSignatureScheme, }?: {
41
+ createWalletAccount({ thresholdSignatureScheme, password, }?: {
42
42
  thresholdSignatureScheme?: string;
43
+ password?: string;
43
44
  }): Promise<{
44
45
  chainName: string;
45
46
  accountAddress: string;
@@ -122,7 +122,7 @@ const withDynamicWaas = (BaseClass) => {
122
122
  }
123
123
  // Common methods that are identical across all connectors
124
124
  createWalletAccount() {
125
- return __awaiter(this, arguments, void 0, function* ({ thresholdSignatureScheme = 'TWO_OF_TWO', } = {}) {
125
+ return __awaiter(this, arguments, void 0, function* ({ thresholdSignatureScheme = 'TWO_OF_TWO', password, } = {}) {
126
126
  var _a, _b;
127
127
  const walletClient = yield this.getWaasWalletClient();
128
128
  const signedSessionId = yield ((_a = this.getSignedSessionId) === null || _a === void 0 ? void 0 : _a.call(this));
@@ -131,6 +131,7 @@ const withDynamicWaas = (BaseClass) => {
131
131
  }
132
132
  const createdWallet = yield walletClient.createWalletAccount({
133
133
  authToken: (_b = this.getAuthToken) === null || _b === void 0 ? void 0 : _b.call(this),
134
+ password,
134
135
  signedSessionId,
135
136
  thresholdSignatureScheme: thresholdSignatureScheme,
136
137
  });