@dynamic-labs/sdk-api 0.0.805 → 0.0.806
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 CreateWaasAccountRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
18
18
|
'chain': WaasChainEnum.WaasChainEnumFromJSON(json['chain']),
|
|
19
19
|
'clientKeygenIds': json['clientKeygenIds'],
|
|
20
20
|
'thresholdSignatureScheme': !runtime.exists(json, 'thresholdSignatureScheme') ? undefined : ThresholdSignatureScheme.ThresholdSignatureSchemeFromJSON(json['thresholdSignatureScheme']),
|
|
21
|
+
'skipLock': !runtime.exists(json, 'skipLock') ? undefined : json['skipLock'],
|
|
21
22
|
};
|
|
22
23
|
}
|
|
23
24
|
function CreateWaasAccountRequestToJSON(value) {
|
|
@@ -31,6 +32,7 @@ function CreateWaasAccountRequestToJSON(value) {
|
|
|
31
32
|
'chain': WaasChainEnum.WaasChainEnumToJSON(value.chain),
|
|
32
33
|
'clientKeygenIds': value.clientKeygenIds,
|
|
33
34
|
'thresholdSignatureScheme': ThresholdSignatureScheme.ThresholdSignatureSchemeToJSON(value.thresholdSignatureScheme),
|
|
35
|
+
'skipLock': value.skipLock,
|
|
34
36
|
};
|
|
35
37
|
}
|
|
36
38
|
|
|
@@ -35,6 +35,12 @@ export interface CreateWaasAccountRequest {
|
|
|
35
35
|
* @memberof CreateWaasAccountRequest
|
|
36
36
|
*/
|
|
37
37
|
thresholdSignatureScheme?: ThresholdSignatureScheme;
|
|
38
|
+
/**
|
|
39
|
+
* When true, bypasses server-side lock during wallet creation.
|
|
40
|
+
* @type {boolean}
|
|
41
|
+
* @memberof CreateWaasAccountRequest
|
|
42
|
+
*/
|
|
43
|
+
skipLock?: boolean;
|
|
38
44
|
}
|
|
39
45
|
export declare function CreateWaasAccountRequestFromJSON(json: any): CreateWaasAccountRequest;
|
|
40
46
|
export declare function CreateWaasAccountRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateWaasAccountRequest;
|
|
@@ -14,6 +14,7 @@ function CreateWaasAccountRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
14
14
|
'chain': WaasChainEnumFromJSON(json['chain']),
|
|
15
15
|
'clientKeygenIds': json['clientKeygenIds'],
|
|
16
16
|
'thresholdSignatureScheme': !exists(json, 'thresholdSignatureScheme') ? undefined : ThresholdSignatureSchemeFromJSON(json['thresholdSignatureScheme']),
|
|
17
|
+
'skipLock': !exists(json, 'skipLock') ? undefined : json['skipLock'],
|
|
17
18
|
};
|
|
18
19
|
}
|
|
19
20
|
function CreateWaasAccountRequestToJSON(value) {
|
|
@@ -27,6 +28,7 @@ function CreateWaasAccountRequestToJSON(value) {
|
|
|
27
28
|
'chain': WaasChainEnumToJSON(value.chain),
|
|
28
29
|
'clientKeygenIds': value.clientKeygenIds,
|
|
29
30
|
'thresholdSignatureScheme': ThresholdSignatureSchemeToJSON(value.thresholdSignatureScheme),
|
|
31
|
+
'skipLock': value.skipLock,
|
|
30
32
|
};
|
|
31
33
|
}
|
|
32
34
|
|