@dynamic-labs/sdk-api-core 0.0.453 → 0.0.455

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-core",
3
- "version": "0.0.453",
3
+ "version": "0.0.455",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -17,6 +17,7 @@ function ProjectSettingsSdkEmbeddedWalletsFromJSONTyped(json, ignoreDiscriminato
17
17
  }
18
18
  return {
19
19
  'automaticEmbeddedWalletCreation': !runtime.exists(json, 'automaticEmbeddedWalletCreation') ? undefined : json['automaticEmbeddedWalletCreation'],
20
+ 'showEmbeddedWalletActionsUI': !runtime.exists(json, 'showEmbeddedWalletActionsUI') ? undefined : json['showEmbeddedWalletActionsUI'],
20
21
  'emailRecoveryEnabled': !runtime.exists(json, 'emailRecoveryEnabled') ? undefined : json['emailRecoveryEnabled'],
21
22
  'forceAuthenticatorAtSignup': !runtime.exists(json, 'forceAuthenticatorAtSignup') ? undefined : json['forceAuthenticatorAtSignup'],
22
23
  'allowSkippingAuthenticatorAtSignup': !runtime.exists(json, 'allowSkippingAuthenticatorAtSignup') ? undefined : json['allowSkippingAuthenticatorAtSignup'],
@@ -35,6 +36,7 @@ function ProjectSettingsSdkEmbeddedWalletsToJSON(value) {
35
36
  }
36
37
  return {
37
38
  'automaticEmbeddedWalletCreation': value.automaticEmbeddedWalletCreation,
39
+ 'showEmbeddedWalletActionsUI': value.showEmbeddedWalletActionsUI,
38
40
  'emailRecoveryEnabled': value.emailRecoveryEnabled,
39
41
  'forceAuthenticatorAtSignup': value.forceAuthenticatorAtSignup,
40
42
  'allowSkippingAuthenticatorAtSignup': value.allowSkippingAuthenticatorAtSignup,
@@ -24,6 +24,12 @@ export interface ProjectSettingsSdkEmbeddedWallets {
24
24
  * @memberof ProjectSettingsSdkEmbeddedWallets
25
25
  */
26
26
  automaticEmbeddedWalletCreation?: boolean;
27
+ /**
28
+ * When true users will see embedded wallets action confirmation views.
29
+ * @type {boolean}
30
+ * @memberof ProjectSettingsSdkEmbeddedWallets
31
+ */
32
+ showEmbeddedWalletActionsUI?: boolean;
27
33
  /**
28
34
  * When true users will be able to start recovery for their accounts.
29
35
  * @type {boolean}
@@ -13,6 +13,7 @@ function ProjectSettingsSdkEmbeddedWalletsFromJSONTyped(json, ignoreDiscriminato
13
13
  }
14
14
  return {
15
15
  'automaticEmbeddedWalletCreation': !exists(json, 'automaticEmbeddedWalletCreation') ? undefined : json['automaticEmbeddedWalletCreation'],
16
+ 'showEmbeddedWalletActionsUI': !exists(json, 'showEmbeddedWalletActionsUI') ? undefined : json['showEmbeddedWalletActionsUI'],
16
17
  'emailRecoveryEnabled': !exists(json, 'emailRecoveryEnabled') ? undefined : json['emailRecoveryEnabled'],
17
18
  'forceAuthenticatorAtSignup': !exists(json, 'forceAuthenticatorAtSignup') ? undefined : json['forceAuthenticatorAtSignup'],
18
19
  'allowSkippingAuthenticatorAtSignup': !exists(json, 'allowSkippingAuthenticatorAtSignup') ? undefined : json['allowSkippingAuthenticatorAtSignup'],
@@ -31,6 +32,7 @@ function ProjectSettingsSdkEmbeddedWalletsToJSON(value) {
31
32
  }
32
33
  return {
33
34
  'automaticEmbeddedWalletCreation': value.automaticEmbeddedWalletCreation,
35
+ 'showEmbeddedWalletActionsUI': value.showEmbeddedWalletActionsUI,
34
36
  'emailRecoveryEnabled': value.emailRecoveryEnabled,
35
37
  'forceAuthenticatorAtSignup': value.forceAuthenticatorAtSignup,
36
38
  'allowSkippingAuthenticatorAtSignup': value.allowSkippingAuthenticatorAtSignup,
@@ -97,6 +97,7 @@ exports.UnprocessableEntityErrorCode = void 0;
97
97
  UnprocessableEntityErrorCode["CannotSwitchToUnique"] = "cannot_switch_to_unique";
98
98
  UnprocessableEntityErrorCode["CustomFieldDataNotUnique"] = "custom_field_data_not_unique";
99
99
  UnprocessableEntityErrorCode["MetadataSizeExceeded"] = "metadata_size_exceeded";
100
+ UnprocessableEntityErrorCode["InvalidCustomHostname"] = "invalid_custom_hostname";
100
101
  })(exports.UnprocessableEntityErrorCode || (exports.UnprocessableEntityErrorCode = {}));
101
102
  function UnprocessableEntityErrorCodeFromJSON(json) {
102
103
  return UnprocessableEntityErrorCodeFromJSONTyped(json);
@@ -89,7 +89,8 @@ export declare enum UnprocessableEntityErrorCode {
89
89
  UnableToFetchBalances = "unable_to_fetch_balances",
90
90
  CannotSwitchToUnique = "cannot_switch_to_unique",
91
91
  CustomFieldDataNotUnique = "custom_field_data_not_unique",
92
- MetadataSizeExceeded = "metadata_size_exceeded"
92
+ MetadataSizeExceeded = "metadata_size_exceeded",
93
+ InvalidCustomHostname = "invalid_custom_hostname"
93
94
  }
94
95
  export declare function UnprocessableEntityErrorCodeFromJSON(json: any): UnprocessableEntityErrorCode;
95
96
  export declare function UnprocessableEntityErrorCodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnprocessableEntityErrorCode;
@@ -93,6 +93,7 @@ var UnprocessableEntityErrorCode;
93
93
  UnprocessableEntityErrorCode["CannotSwitchToUnique"] = "cannot_switch_to_unique";
94
94
  UnprocessableEntityErrorCode["CustomFieldDataNotUnique"] = "custom_field_data_not_unique";
95
95
  UnprocessableEntityErrorCode["MetadataSizeExceeded"] = "metadata_size_exceeded";
96
+ UnprocessableEntityErrorCode["InvalidCustomHostname"] = "invalid_custom_hostname";
96
97
  })(UnprocessableEntityErrorCode || (UnprocessableEntityErrorCode = {}));
97
98
  function UnprocessableEntityErrorCodeFromJSON(json) {
98
99
  return UnprocessableEntityErrorCodeFromJSONTyped(json);