@dynamic-labs/sdk-api 0.0.1117 → 0.0.1119
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 +1 -1
- package/src/models/FeatureFlags.cjs +4 -12
- package/src/models/FeatureFlags.d.ts +6 -0
- package/src/models/FeatureFlags.js +4 -12
- package/src/models/WaasBackupOptionsEnum.cjs +1 -0
- package/src/models/WaasBackupOptionsEnum.d.ts +2 -1
- package/src/models/WaasBackupOptionsEnum.js +1 -0
- package/src/models/WaasWalletShareSetType.cjs +1 -0
- package/src/models/WaasWalletShareSetType.d.ts +2 -1
- package/src/models/WaasWalletShareSetType.js +1 -0
package/package.json
CHANGED
|
@@ -2,19 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
+
var runtime = require('../runtime.cjs');
|
|
6
|
+
|
|
5
7
|
/* tslint:disable */
|
|
6
|
-
/* eslint-disable */
|
|
7
|
-
/**
|
|
8
|
-
* Dashboard API
|
|
9
|
-
* Dashboard API documentation
|
|
10
|
-
*
|
|
11
|
-
* The version of the OpenAPI document: 1.0.0
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
15
|
-
* https://openapi-generator.tech
|
|
16
|
-
* Do not edit the class manually.
|
|
17
|
-
*/
|
|
18
8
|
function FeatureFlagsFromJSON(json) {
|
|
19
9
|
return FeatureFlagsFromJSONTyped(json);
|
|
20
10
|
}
|
|
@@ -25,6 +15,7 @@ function FeatureFlagsFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
25
15
|
return {
|
|
26
16
|
'connectOnlyMultiAsset': json['connectOnlyMultiAsset'],
|
|
27
17
|
'enableExchanges': json['enableExchanges'],
|
|
18
|
+
'enableExternalWalletOnTransactionSanctions': !runtime.exists(json, 'enableExternalWalletOnTransactionSanctions') ? undefined : json['enableExternalWalletOnTransactionSanctions'],
|
|
28
19
|
};
|
|
29
20
|
}
|
|
30
21
|
function FeatureFlagsToJSON(value) {
|
|
@@ -37,6 +28,7 @@ function FeatureFlagsToJSON(value) {
|
|
|
37
28
|
return {
|
|
38
29
|
'connectOnlyMultiAsset': value.connectOnlyMultiAsset,
|
|
39
30
|
'enableExchanges': value.enableExchanges,
|
|
31
|
+
'enableExternalWalletOnTransactionSanctions': value.enableExternalWalletOnTransactionSanctions,
|
|
40
32
|
};
|
|
41
33
|
}
|
|
42
34
|
|
|
@@ -27,6 +27,12 @@ export interface FeatureFlags {
|
|
|
27
27
|
* @memberof FeatureFlags
|
|
28
28
|
*/
|
|
29
29
|
enableExchanges: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* Whether on-transaction sanction screening is enabled for connected wallets
|
|
32
|
+
* @type {boolean}
|
|
33
|
+
* @memberof FeatureFlags
|
|
34
|
+
*/
|
|
35
|
+
enableExternalWalletOnTransactionSanctions?: boolean;
|
|
30
36
|
}
|
|
31
37
|
export declare function FeatureFlagsFromJSON(json: any): FeatureFlags;
|
|
32
38
|
export declare function FeatureFlagsFromJSONTyped(json: any, ignoreDiscriminator: boolean): FeatureFlags;
|
|
@@ -1,16 +1,6 @@
|
|
|
1
|
+
import { exists } from '../runtime.js';
|
|
2
|
+
|
|
1
3
|
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Dashboard API
|
|
5
|
-
* Dashboard API documentation
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
4
|
function FeatureFlagsFromJSON(json) {
|
|
15
5
|
return FeatureFlagsFromJSONTyped(json);
|
|
16
6
|
}
|
|
@@ -21,6 +11,7 @@ function FeatureFlagsFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
21
11
|
return {
|
|
22
12
|
'connectOnlyMultiAsset': json['connectOnlyMultiAsset'],
|
|
23
13
|
'enableExchanges': json['enableExchanges'],
|
|
14
|
+
'enableExternalWalletOnTransactionSanctions': !exists(json, 'enableExternalWalletOnTransactionSanctions') ? undefined : json['enableExternalWalletOnTransactionSanctions'],
|
|
24
15
|
};
|
|
25
16
|
}
|
|
26
17
|
function FeatureFlagsToJSON(value) {
|
|
@@ -33,6 +24,7 @@ function FeatureFlagsToJSON(value) {
|
|
|
33
24
|
return {
|
|
34
25
|
'connectOnlyMultiAsset': value.connectOnlyMultiAsset,
|
|
35
26
|
'enableExchanges': value.enableExchanges,
|
|
27
|
+
'enableExternalWalletOnTransactionSanctions': value.enableExternalWalletOnTransactionSanctions,
|
|
36
28
|
};
|
|
37
29
|
}
|
|
38
30
|
|
|
@@ -27,6 +27,7 @@ exports.WaasBackupOptionsEnum = void 0;
|
|
|
27
27
|
WaasBackupOptionsEnum["Dynamic"] = "dynamic";
|
|
28
28
|
WaasBackupOptionsEnum["External"] = "external";
|
|
29
29
|
WaasBackupOptionsEnum["Delegated"] = "delegated";
|
|
30
|
+
WaasBackupOptionsEnum["OfflineRecovery"] = "offlineRecovery";
|
|
30
31
|
})(exports.WaasBackupOptionsEnum || (exports.WaasBackupOptionsEnum = {}));
|
|
31
32
|
function WaasBackupOptionsEnumFromJSON(json) {
|
|
32
33
|
return WaasBackupOptionsEnumFromJSONTyped(json);
|
|
@@ -19,7 +19,8 @@ export declare enum WaasBackupOptionsEnum {
|
|
|
19
19
|
ICloud = "iCloud",
|
|
20
20
|
Dynamic = "dynamic",
|
|
21
21
|
External = "external",
|
|
22
|
-
Delegated = "delegated"
|
|
22
|
+
Delegated = "delegated",
|
|
23
|
+
OfflineRecovery = "offlineRecovery"
|
|
23
24
|
}
|
|
24
25
|
export declare function WaasBackupOptionsEnumFromJSON(json: any): WaasBackupOptionsEnum;
|
|
25
26
|
export declare function WaasBackupOptionsEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaasBackupOptionsEnum;
|
|
@@ -23,6 +23,7 @@ var WaasBackupOptionsEnum;
|
|
|
23
23
|
WaasBackupOptionsEnum["Dynamic"] = "dynamic";
|
|
24
24
|
WaasBackupOptionsEnum["External"] = "external";
|
|
25
25
|
WaasBackupOptionsEnum["Delegated"] = "delegated";
|
|
26
|
+
WaasBackupOptionsEnum["OfflineRecovery"] = "offlineRecovery";
|
|
26
27
|
})(WaasBackupOptionsEnum || (WaasBackupOptionsEnum = {}));
|
|
27
28
|
function WaasBackupOptionsEnumFromJSON(json) {
|
|
28
29
|
return WaasBackupOptionsEnumFromJSONTyped(json);
|
|
@@ -26,6 +26,7 @@ exports.WaasWalletShareSetType = void 0;
|
|
|
26
26
|
WaasWalletShareSetType["RootUser"] = "rootUser";
|
|
27
27
|
WaasWalletShareSetType["Server"] = "server";
|
|
28
28
|
WaasWalletShareSetType["BusinessAccountUser"] = "businessAccountUser";
|
|
29
|
+
WaasWalletShareSetType["OfflineRecovery"] = "offlineRecovery";
|
|
29
30
|
})(exports.WaasWalletShareSetType || (exports.WaasWalletShareSetType = {}));
|
|
30
31
|
function WaasWalletShareSetTypeFromJSON(json) {
|
|
31
32
|
return WaasWalletShareSetTypeFromJSONTyped(json);
|
|
@@ -18,7 +18,8 @@ export declare enum WaasWalletShareSetType {
|
|
|
18
18
|
Delegated = "delegated",
|
|
19
19
|
RootUser = "rootUser",
|
|
20
20
|
Server = "server",
|
|
21
|
-
BusinessAccountUser = "businessAccountUser"
|
|
21
|
+
BusinessAccountUser = "businessAccountUser",
|
|
22
|
+
OfflineRecovery = "offlineRecovery"
|
|
22
23
|
}
|
|
23
24
|
export declare function WaasWalletShareSetTypeFromJSON(json: any): WaasWalletShareSetType;
|
|
24
25
|
export declare function WaasWalletShareSetTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaasWalletShareSetType;
|
|
@@ -22,6 +22,7 @@ var WaasWalletShareSetType;
|
|
|
22
22
|
WaasWalletShareSetType["RootUser"] = "rootUser";
|
|
23
23
|
WaasWalletShareSetType["Server"] = "server";
|
|
24
24
|
WaasWalletShareSetType["BusinessAccountUser"] = "businessAccountUser";
|
|
25
|
+
WaasWalletShareSetType["OfflineRecovery"] = "offlineRecovery";
|
|
25
26
|
})(WaasWalletShareSetType || (WaasWalletShareSetType = {}));
|
|
26
27
|
function WaasWalletShareSetTypeFromJSON(json) {
|
|
27
28
|
return WaasWalletShareSetTypeFromJSONTyped(json);
|