@dynamic-labs/sdk-api-core 0.0.579 → 0.0.580
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
|
@@ -18,6 +18,7 @@ function ProjectSettingsSdkEmbeddedWalletsFromJSONTyped(json, ignoreDiscriminato
|
|
|
18
18
|
}
|
|
19
19
|
return {
|
|
20
20
|
'automaticEmbeddedWalletCreation': !runtime.exists(json, 'automaticEmbeddedWalletCreation') ? undefined : json['automaticEmbeddedWalletCreation'],
|
|
21
|
+
'automaticEmbeddedWalletCreationForExternal': !runtime.exists(json, 'automaticEmbeddedWalletCreationForExternal') ? undefined : json['automaticEmbeddedWalletCreationForExternal'],
|
|
21
22
|
'showEmbeddedWalletActionsUI': !runtime.exists(json, 'showEmbeddedWalletActionsUI') ? undefined : json['showEmbeddedWalletActionsUI'],
|
|
22
23
|
'emailRecoveryEnabled': !runtime.exists(json, 'emailRecoveryEnabled') ? undefined : json['emailRecoveryEnabled'],
|
|
23
24
|
'forceAuthenticatorAtSignup': !runtime.exists(json, 'forceAuthenticatorAtSignup') ? undefined : json['forceAuthenticatorAtSignup'],
|
|
@@ -39,6 +40,7 @@ function ProjectSettingsSdkEmbeddedWalletsToJSON(value) {
|
|
|
39
40
|
}
|
|
40
41
|
return {
|
|
41
42
|
'automaticEmbeddedWalletCreation': value.automaticEmbeddedWalletCreation,
|
|
43
|
+
'automaticEmbeddedWalletCreationForExternal': value.automaticEmbeddedWalletCreationForExternal,
|
|
42
44
|
'showEmbeddedWalletActionsUI': value.showEmbeddedWalletActionsUI,
|
|
43
45
|
'emailRecoveryEnabled': value.emailRecoveryEnabled,
|
|
44
46
|
'forceAuthenticatorAtSignup': value.forceAuthenticatorAtSignup,
|
|
@@ -25,6 +25,12 @@ export interface ProjectSettingsSdkEmbeddedWallets {
|
|
|
25
25
|
* @memberof ProjectSettingsSdkEmbeddedWallets
|
|
26
26
|
*/
|
|
27
27
|
automaticEmbeddedWalletCreation?: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* When true embedded wallets will be created for external wallets during sign in. When false embedded wallets are not generated for external wallets during sign in.
|
|
30
|
+
* @type {boolean}
|
|
31
|
+
* @memberof ProjectSettingsSdkEmbeddedWallets
|
|
32
|
+
*/
|
|
33
|
+
automaticEmbeddedWalletCreationForExternal?: boolean;
|
|
28
34
|
/**
|
|
29
35
|
* When true users will see embedded wallets action confirmation views.
|
|
30
36
|
* @type {boolean}
|
|
@@ -14,6 +14,7 @@ function ProjectSettingsSdkEmbeddedWalletsFromJSONTyped(json, ignoreDiscriminato
|
|
|
14
14
|
}
|
|
15
15
|
return {
|
|
16
16
|
'automaticEmbeddedWalletCreation': !exists(json, 'automaticEmbeddedWalletCreation') ? undefined : json['automaticEmbeddedWalletCreation'],
|
|
17
|
+
'automaticEmbeddedWalletCreationForExternal': !exists(json, 'automaticEmbeddedWalletCreationForExternal') ? undefined : json['automaticEmbeddedWalletCreationForExternal'],
|
|
17
18
|
'showEmbeddedWalletActionsUI': !exists(json, 'showEmbeddedWalletActionsUI') ? undefined : json['showEmbeddedWalletActionsUI'],
|
|
18
19
|
'emailRecoveryEnabled': !exists(json, 'emailRecoveryEnabled') ? undefined : json['emailRecoveryEnabled'],
|
|
19
20
|
'forceAuthenticatorAtSignup': !exists(json, 'forceAuthenticatorAtSignup') ? undefined : json['forceAuthenticatorAtSignup'],
|
|
@@ -35,6 +36,7 @@ function ProjectSettingsSdkEmbeddedWalletsToJSON(value) {
|
|
|
35
36
|
}
|
|
36
37
|
return {
|
|
37
38
|
'automaticEmbeddedWalletCreation': value.automaticEmbeddedWalletCreation,
|
|
39
|
+
'automaticEmbeddedWalletCreationForExternal': value.automaticEmbeddedWalletCreationForExternal,
|
|
38
40
|
'showEmbeddedWalletActionsUI': value.showEmbeddedWalletActionsUI,
|
|
39
41
|
'emailRecoveryEnabled': value.emailRecoveryEnabled,
|
|
40
42
|
'forceAuthenticatorAtSignup': value.forceAuthenticatorAtSignup,
|