@dynamic-labs/sdk-api 0.0.321 → 0.0.322

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/sdk-api",
3
- "version": "0.0.321",
3
+ "version": "0.0.322",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -15,6 +15,7 @@ function TurnkeyWalletPropertiesFromJSONTyped(json, ignoreDiscriminator) {
15
15
  return {
16
16
  'turnkeySubOrganizationId': json['turnkeySubOrganizationId'],
17
17
  'turnkeyPrivateKeyId': !runtime.exists(json, 'turnkeyPrivateKeyId') ? undefined : json['turnkeyPrivateKeyId'],
18
+ 'turnkeyHDWalletId': !runtime.exists(json, 'turnkeyHDWalletId') ? undefined : json['turnkeyHDWalletId'],
18
19
  'isAuthenticatorAttached': json['isAuthenticatorAttached'],
19
20
  };
20
21
  }
@@ -28,6 +29,7 @@ function TurnkeyWalletPropertiesToJSON(value) {
28
29
  return {
29
30
  'turnkeySubOrganizationId': value.turnkeySubOrganizationId,
30
31
  'turnkeyPrivateKeyId': value.turnkeyPrivateKeyId,
32
+ 'turnkeyHDWalletId': value.turnkeyHDWalletId,
31
33
  'isAuthenticatorAttached': value.isAuthenticatorAttached,
32
34
  };
33
35
  }
@@ -27,6 +27,12 @@ export interface TurnkeyWalletProperties {
27
27
  * @memberof TurnkeyWalletProperties
28
28
  */
29
29
  turnkeyPrivateKeyId?: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof TurnkeyWalletProperties
34
+ */
35
+ turnkeyHDWalletId?: string;
30
36
  /**
31
37
  * Whether or not the wallet has an authenticator (passkey, api key, etc) attached to it. If false, the wallet cannot currently be accessed
32
38
  * @type {boolean}
@@ -11,6 +11,7 @@ function TurnkeyWalletPropertiesFromJSONTyped(json, ignoreDiscriminator) {
11
11
  return {
12
12
  'turnkeySubOrganizationId': json['turnkeySubOrganizationId'],
13
13
  'turnkeyPrivateKeyId': !exists(json, 'turnkeyPrivateKeyId') ? undefined : json['turnkeyPrivateKeyId'],
14
+ 'turnkeyHDWalletId': !exists(json, 'turnkeyHDWalletId') ? undefined : json['turnkeyHDWalletId'],
14
15
  'isAuthenticatorAttached': json['isAuthenticatorAttached'],
15
16
  };
16
17
  }
@@ -24,6 +25,7 @@ function TurnkeyWalletPropertiesToJSON(value) {
24
25
  return {
25
26
  'turnkeySubOrganizationId': value.turnkeySubOrganizationId,
26
27
  'turnkeyPrivateKeyId': value.turnkeyPrivateKeyId,
28
+ 'turnkeyHDWalletId': value.turnkeyHDWalletId,
27
29
  'isAuthenticatorAttached': value.isAuthenticatorAttached,
28
30
  };
29
31
  }