@dynamic-labs/sdk-api-core 0.0.551 → 0.0.552
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
|
@@ -15,6 +15,7 @@ function ProjectSettingsSdkAccountAbstractionFromJSONTyped(json, ignoreDiscrimin
|
|
|
15
15
|
return {
|
|
16
16
|
'allWallets': !runtime.exists(json, 'allWallets') ? undefined : json['allWallets'],
|
|
17
17
|
'allUsers': !runtime.exists(json, 'allUsers') ? undefined : json['allUsers'],
|
|
18
|
+
'separateSmartWalletAndSigner': !runtime.exists(json, 'separateSmartWalletAndSigner') ? undefined : json['separateSmartWalletAndSigner'],
|
|
18
19
|
};
|
|
19
20
|
}
|
|
20
21
|
function ProjectSettingsSdkAccountAbstractionToJSON(value) {
|
|
@@ -27,6 +28,7 @@ function ProjectSettingsSdkAccountAbstractionToJSON(value) {
|
|
|
27
28
|
return {
|
|
28
29
|
'allWallets': value.allWallets,
|
|
29
30
|
'allUsers': value.allUsers,
|
|
31
|
+
'separateSmartWalletAndSigner': value.separateSmartWalletAndSigner,
|
|
30
32
|
};
|
|
31
33
|
}
|
|
32
34
|
|
|
@@ -27,6 +27,12 @@ export interface ProjectSettingsSdkAccountAbstraction {
|
|
|
27
27
|
* @memberof ProjectSettingsSdkAccountAbstraction
|
|
28
28
|
*/
|
|
29
29
|
allUsers?: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* if set to false, only smart wallet will be in user wallets list.
|
|
32
|
+
* @type {boolean}
|
|
33
|
+
* @memberof ProjectSettingsSdkAccountAbstraction
|
|
34
|
+
*/
|
|
35
|
+
separateSmartWalletAndSigner?: boolean;
|
|
30
36
|
}
|
|
31
37
|
export declare function ProjectSettingsSdkAccountAbstractionFromJSON(json: any): ProjectSettingsSdkAccountAbstraction;
|
|
32
38
|
export declare function ProjectSettingsSdkAccountAbstractionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectSettingsSdkAccountAbstraction;
|
|
@@ -11,6 +11,7 @@ function ProjectSettingsSdkAccountAbstractionFromJSONTyped(json, ignoreDiscrimin
|
|
|
11
11
|
return {
|
|
12
12
|
'allWallets': !exists(json, 'allWallets') ? undefined : json['allWallets'],
|
|
13
13
|
'allUsers': !exists(json, 'allUsers') ? undefined : json['allUsers'],
|
|
14
|
+
'separateSmartWalletAndSigner': !exists(json, 'separateSmartWalletAndSigner') ? undefined : json['separateSmartWalletAndSigner'],
|
|
14
15
|
};
|
|
15
16
|
}
|
|
16
17
|
function ProjectSettingsSdkAccountAbstractionToJSON(value) {
|
|
@@ -23,6 +24,7 @@ function ProjectSettingsSdkAccountAbstractionToJSON(value) {
|
|
|
23
24
|
return {
|
|
24
25
|
'allWallets': value.allWallets,
|
|
25
26
|
'allUsers': value.allUsers,
|
|
27
|
+
'separateSmartWalletAndSigner': value.separateSmartWalletAndSigner,
|
|
26
28
|
};
|
|
27
29
|
}
|
|
28
30
|
|