@dynamic-labs/sdk-api-core 0.0.453 → 0.0.454
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
|
@@ -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,
|