@dynamic-labs/sdk-api 0.0.606 → 0.0.607
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/index.cjs +8 -0
- package/src/index.js +2 -0
- package/src/models/WaasWalletProperties.cjs +34 -0
- package/src/models/WaasWalletProperties.d.ts +28 -0
- package/src/models/WaasWalletProperties.js +28 -0
- package/src/models/WalletKeyShareInfo.cjs +47 -0
- package/src/models/WalletKeyShareInfo.d.ts +39 -0
- package/src/models/WalletKeyShareInfo.js +41 -0
- package/src/models/WalletProperties.cjs +3 -0
- package/src/models/WalletProperties.d.ts +7 -0
- package/src/models/WalletProperties.js +3 -0
- package/src/models/index.d.ts +2 -0
package/package.json
CHANGED
package/src/index.cjs
CHANGED
|
@@ -433,9 +433,11 @@ var Visitor = require('./models/Visitor.cjs');
|
|
|
433
433
|
var VisitorFilterableFieldsEnum = require('./models/VisitorFilterableFieldsEnum.cjs');
|
|
434
434
|
var VisitorSearchFilterParams = require('./models/VisitorSearchFilterParams.cjs');
|
|
435
435
|
var VisitorsResponse = require('./models/VisitorsResponse.cjs');
|
|
436
|
+
var WaasWalletProperties = require('./models/WaasWalletProperties.cjs');
|
|
436
437
|
var Wallet = require('./models/Wallet.cjs');
|
|
437
438
|
var WalletAdditionalAddress = require('./models/WalletAdditionalAddress.cjs');
|
|
438
439
|
var WalletAddressType = require('./models/WalletAddressType.cjs');
|
|
440
|
+
var WalletKeyShareInfo = require('./models/WalletKeyShareInfo.cjs');
|
|
439
441
|
var WalletProperties = require('./models/WalletProperties.cjs');
|
|
440
442
|
var WalletProviderEnum = require('./models/WalletProviderEnum.cjs');
|
|
441
443
|
var Webhook = require('./models/Webhook.cjs');
|
|
@@ -1952,6 +1954,9 @@ exports.VisitorSearchFilterParamsToJSON = VisitorSearchFilterParams.VisitorSearc
|
|
|
1952
1954
|
exports.VisitorsResponseFromJSON = VisitorsResponse.VisitorsResponseFromJSON;
|
|
1953
1955
|
exports.VisitorsResponseFromJSONTyped = VisitorsResponse.VisitorsResponseFromJSONTyped;
|
|
1954
1956
|
exports.VisitorsResponseToJSON = VisitorsResponse.VisitorsResponseToJSON;
|
|
1957
|
+
exports.WaasWalletPropertiesFromJSON = WaasWalletProperties.WaasWalletPropertiesFromJSON;
|
|
1958
|
+
exports.WaasWalletPropertiesFromJSONTyped = WaasWalletProperties.WaasWalletPropertiesFromJSONTyped;
|
|
1959
|
+
exports.WaasWalletPropertiesToJSON = WaasWalletProperties.WaasWalletPropertiesToJSON;
|
|
1955
1960
|
exports.WalletFromJSON = Wallet.WalletFromJSON;
|
|
1956
1961
|
exports.WalletFromJSONTyped = Wallet.WalletFromJSONTyped;
|
|
1957
1962
|
exports.WalletToJSON = Wallet.WalletToJSON;
|
|
@@ -1965,6 +1970,9 @@ Object.defineProperty(exports, 'WalletAddressType', {
|
|
|
1965
1970
|
exports.WalletAddressTypeFromJSON = WalletAddressType.WalletAddressTypeFromJSON;
|
|
1966
1971
|
exports.WalletAddressTypeFromJSONTyped = WalletAddressType.WalletAddressTypeFromJSONTyped;
|
|
1967
1972
|
exports.WalletAddressTypeToJSON = WalletAddressType.WalletAddressTypeToJSON;
|
|
1973
|
+
exports.WalletKeyShareInfoFromJSON = WalletKeyShareInfo.WalletKeyShareInfoFromJSON;
|
|
1974
|
+
exports.WalletKeyShareInfoFromJSONTyped = WalletKeyShareInfo.WalletKeyShareInfoFromJSONTyped;
|
|
1975
|
+
exports.WalletKeyShareInfoToJSON = WalletKeyShareInfo.WalletKeyShareInfoToJSON;
|
|
1968
1976
|
exports.WalletPropertiesFromJSON = WalletProperties.WalletPropertiesFromJSON;
|
|
1969
1977
|
exports.WalletPropertiesFromJSONTyped = WalletProperties.WalletPropertiesFromJSONTyped;
|
|
1970
1978
|
exports.WalletPropertiesToJSON = WalletProperties.WalletPropertiesToJSON;
|
package/src/index.js
CHANGED
|
@@ -429,9 +429,11 @@ export { VisitorFromJSON, VisitorFromJSONTyped, VisitorToJSON } from './models/V
|
|
|
429
429
|
export { VisitorFilterableFieldsEnum, VisitorFilterableFieldsEnumFromJSON, VisitorFilterableFieldsEnumFromJSONTyped, VisitorFilterableFieldsEnumToJSON } from './models/VisitorFilterableFieldsEnum.js';
|
|
430
430
|
export { VisitorSearchFilterParamsFromJSON, VisitorSearchFilterParamsFromJSONTyped, VisitorSearchFilterParamsToJSON } from './models/VisitorSearchFilterParams.js';
|
|
431
431
|
export { VisitorsResponseFromJSON, VisitorsResponseFromJSONTyped, VisitorsResponseToJSON } from './models/VisitorsResponse.js';
|
|
432
|
+
export { WaasWalletPropertiesFromJSON, WaasWalletPropertiesFromJSONTyped, WaasWalletPropertiesToJSON } from './models/WaasWalletProperties.js';
|
|
432
433
|
export { WalletFromJSON, WalletFromJSONTyped, WalletToJSON } from './models/Wallet.js';
|
|
433
434
|
export { WalletAdditionalAddressFromJSON, WalletAdditionalAddressFromJSONTyped, WalletAdditionalAddressToJSON } from './models/WalletAdditionalAddress.js';
|
|
434
435
|
export { WalletAddressType, WalletAddressTypeFromJSON, WalletAddressTypeFromJSONTyped, WalletAddressTypeToJSON } from './models/WalletAddressType.js';
|
|
436
|
+
export { WalletKeyShareInfoFromJSON, WalletKeyShareInfoFromJSONTyped, WalletKeyShareInfoToJSON } from './models/WalletKeyShareInfo.js';
|
|
435
437
|
export { WalletPropertiesFromJSON, WalletPropertiesFromJSONTyped, WalletPropertiesToJSON } from './models/WalletProperties.js';
|
|
436
438
|
export { WalletProviderEnum, WalletProviderEnumFromJSON, WalletProviderEnumFromJSONTyped, WalletProviderEnumToJSON } from './models/WalletProviderEnum.js';
|
|
437
439
|
export { WebhookFromJSON, WebhookFromJSONTyped, WebhookToJSON } from './models/Webhook.js';
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var runtime = require('../runtime.cjs');
|
|
6
|
+
var WalletKeyShareInfo = require('./WalletKeyShareInfo.cjs');
|
|
7
|
+
|
|
8
|
+
/* tslint:disable */
|
|
9
|
+
function WaasWalletPropertiesFromJSON(json) {
|
|
10
|
+
return WaasWalletPropertiesFromJSONTyped(json);
|
|
11
|
+
}
|
|
12
|
+
function WaasWalletPropertiesFromJSONTyped(json, ignoreDiscriminator) {
|
|
13
|
+
if ((json === undefined) || (json === null)) {
|
|
14
|
+
return json;
|
|
15
|
+
}
|
|
16
|
+
return {
|
|
17
|
+
'keyShares': !runtime.exists(json, 'keyShares') ? undefined : (json['keyShares'].map(WalletKeyShareInfo.WalletKeyShareInfoFromJSON)),
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
function WaasWalletPropertiesToJSON(value) {
|
|
21
|
+
if (value === undefined) {
|
|
22
|
+
return undefined;
|
|
23
|
+
}
|
|
24
|
+
if (value === null) {
|
|
25
|
+
return null;
|
|
26
|
+
}
|
|
27
|
+
return {
|
|
28
|
+
'keyShares': value.keyShares === undefined ? undefined : (value.keyShares.map(WalletKeyShareInfo.WalletKeyShareInfoToJSON)),
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
exports.WaasWalletPropertiesFromJSON = WaasWalletPropertiesFromJSON;
|
|
33
|
+
exports.WaasWalletPropertiesFromJSONTyped = WaasWalletPropertiesFromJSONTyped;
|
|
34
|
+
exports.WaasWalletPropertiesToJSON = WaasWalletPropertiesToJSON;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dashboard API
|
|
3
|
+
* Dashboard API documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { WalletKeyShareInfo } from './WalletKeyShareInfo';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface WaasWalletProperties
|
|
17
|
+
*/
|
|
18
|
+
export interface WaasWalletProperties {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<WalletKeyShareInfo>}
|
|
22
|
+
* @memberof WaasWalletProperties
|
|
23
|
+
*/
|
|
24
|
+
keyShares?: Array<WalletKeyShareInfo>;
|
|
25
|
+
}
|
|
26
|
+
export declare function WaasWalletPropertiesFromJSON(json: any): WaasWalletProperties;
|
|
27
|
+
export declare function WaasWalletPropertiesFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaasWalletProperties;
|
|
28
|
+
export declare function WaasWalletPropertiesToJSON(value?: WaasWalletProperties | null): any;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { exists } from '../runtime.js';
|
|
2
|
+
import { WalletKeyShareInfoFromJSON, WalletKeyShareInfoToJSON } from './WalletKeyShareInfo.js';
|
|
3
|
+
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
function WaasWalletPropertiesFromJSON(json) {
|
|
6
|
+
return WaasWalletPropertiesFromJSONTyped(json);
|
|
7
|
+
}
|
|
8
|
+
function WaasWalletPropertiesFromJSONTyped(json, ignoreDiscriminator) {
|
|
9
|
+
if ((json === undefined) || (json === null)) {
|
|
10
|
+
return json;
|
|
11
|
+
}
|
|
12
|
+
return {
|
|
13
|
+
'keyShares': !exists(json, 'keyShares') ? undefined : (json['keyShares'].map(WalletKeyShareInfoFromJSON)),
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
function WaasWalletPropertiesToJSON(value) {
|
|
17
|
+
if (value === undefined) {
|
|
18
|
+
return undefined;
|
|
19
|
+
}
|
|
20
|
+
if (value === null) {
|
|
21
|
+
return null;
|
|
22
|
+
}
|
|
23
|
+
return {
|
|
24
|
+
'keyShares': value.keyShares === undefined ? undefined : (value.keyShares.map(WalletKeyShareInfoToJSON)),
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export { WaasWalletPropertiesFromJSON, WaasWalletPropertiesFromJSONTyped, WaasWalletPropertiesToJSON };
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
/* 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
|
+
function WalletKeyShareInfoFromJSON(json) {
|
|
19
|
+
return WalletKeyShareInfoFromJSONTyped(json);
|
|
20
|
+
}
|
|
21
|
+
function WalletKeyShareInfoFromJSONTyped(json, ignoreDiscriminator) {
|
|
22
|
+
if ((json === undefined) || (json === null)) {
|
|
23
|
+
return json;
|
|
24
|
+
}
|
|
25
|
+
return {
|
|
26
|
+
'id': json['id'],
|
|
27
|
+
'backupLocation': json['backupLocation'],
|
|
28
|
+
'passwordEncrypted': json['passwordEncrypted'],
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
function WalletKeyShareInfoToJSON(value) {
|
|
32
|
+
if (value === undefined) {
|
|
33
|
+
return undefined;
|
|
34
|
+
}
|
|
35
|
+
if (value === null) {
|
|
36
|
+
return null;
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
'id': value.id,
|
|
40
|
+
'backupLocation': value.backupLocation,
|
|
41
|
+
'passwordEncrypted': value.passwordEncrypted,
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
exports.WalletKeyShareInfoFromJSON = WalletKeyShareInfoFromJSON;
|
|
46
|
+
exports.WalletKeyShareInfoFromJSONTyped = WalletKeyShareInfoFromJSONTyped;
|
|
47
|
+
exports.WalletKeyShareInfoToJSON = WalletKeyShareInfoToJSON;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dashboard API
|
|
3
|
+
* Dashboard API documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface WalletKeyShareInfo
|
|
16
|
+
*/
|
|
17
|
+
export interface WalletKeyShareInfo {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof WalletKeyShareInfo
|
|
22
|
+
*/
|
|
23
|
+
id: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof WalletKeyShareInfo
|
|
28
|
+
*/
|
|
29
|
+
backupLocation: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {boolean}
|
|
33
|
+
* @memberof WalletKeyShareInfo
|
|
34
|
+
*/
|
|
35
|
+
passwordEncrypted: boolean;
|
|
36
|
+
}
|
|
37
|
+
export declare function WalletKeyShareInfoFromJSON(json: any): WalletKeyShareInfo;
|
|
38
|
+
export declare function WalletKeyShareInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): WalletKeyShareInfo;
|
|
39
|
+
export declare function WalletKeyShareInfoToJSON(value?: WalletKeyShareInfo | null): any;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/* 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
|
+
function WalletKeyShareInfoFromJSON(json) {
|
|
15
|
+
return WalletKeyShareInfoFromJSONTyped(json);
|
|
16
|
+
}
|
|
17
|
+
function WalletKeyShareInfoFromJSONTyped(json, ignoreDiscriminator) {
|
|
18
|
+
if ((json === undefined) || (json === null)) {
|
|
19
|
+
return json;
|
|
20
|
+
}
|
|
21
|
+
return {
|
|
22
|
+
'id': json['id'],
|
|
23
|
+
'backupLocation': json['backupLocation'],
|
|
24
|
+
'passwordEncrypted': json['passwordEncrypted'],
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
function WalletKeyShareInfoToJSON(value) {
|
|
28
|
+
if (value === undefined) {
|
|
29
|
+
return undefined;
|
|
30
|
+
}
|
|
31
|
+
if (value === null) {
|
|
32
|
+
return null;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'id': value.id,
|
|
36
|
+
'backupLocation': value.backupLocation,
|
|
37
|
+
'passwordEncrypted': value.passwordEncrypted,
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export { WalletKeyShareInfoFromJSON, WalletKeyShareInfoFromJSONTyped, WalletKeyShareInfoToJSON };
|
|
@@ -9,6 +9,7 @@ var HardwareWalletEnum = require('./HardwareWalletEnum.cjs');
|
|
|
9
9
|
var PasswordSourceTypeEnum = require('./PasswordSourceTypeEnum.cjs');
|
|
10
10
|
var ProviderEntryPointVersionEnum = require('./ProviderEntryPointVersionEnum.cjs');
|
|
11
11
|
var ProviderKernelVersionEnum = require('./ProviderKernelVersionEnum.cjs');
|
|
12
|
+
var WalletKeyShareInfo = require('./WalletKeyShareInfo.cjs');
|
|
12
13
|
|
|
13
14
|
/* tslint:disable */
|
|
14
15
|
function WalletPropertiesFromJSON(json) {
|
|
@@ -32,6 +33,7 @@ function WalletPropertiesFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
32
33
|
'entryPointVersion': !runtime.exists(json, 'entryPointVersion') ? undefined : ProviderEntryPointVersionEnum.ProviderEntryPointVersionEnumFromJSON(json['entryPointVersion']),
|
|
33
34
|
'kernelVersion': !runtime.exists(json, 'kernelVersion') ? undefined : ProviderKernelVersionEnum.ProviderKernelVersionEnumFromJSON(json['kernelVersion']),
|
|
34
35
|
'ecdsaProviderType': !runtime.exists(json, 'ecdsaProviderType') ? undefined : EcdsaValidatorOptions.EcdsaValidatorOptionsFromJSON(json['ecdsaProviderType']),
|
|
36
|
+
'keyShares': !runtime.exists(json, 'keyShares') ? undefined : (json['keyShares'].map(WalletKeyShareInfo.WalletKeyShareInfoFromJSON)),
|
|
35
37
|
};
|
|
36
38
|
}
|
|
37
39
|
function WalletPropertiesToJSON(value) {
|
|
@@ -55,6 +57,7 @@ function WalletPropertiesToJSON(value) {
|
|
|
55
57
|
'entryPointVersion': ProviderEntryPointVersionEnum.ProviderEntryPointVersionEnumToJSON(value.entryPointVersion),
|
|
56
58
|
'kernelVersion': ProviderKernelVersionEnum.ProviderKernelVersionEnumToJSON(value.kernelVersion),
|
|
57
59
|
'ecdsaProviderType': EcdsaValidatorOptions.EcdsaValidatorOptionsToJSON(value.ecdsaProviderType),
|
|
60
|
+
'keyShares': value.keyShares === undefined ? undefined : (value.keyShares.map(WalletKeyShareInfo.WalletKeyShareInfoToJSON)),
|
|
58
61
|
};
|
|
59
62
|
}
|
|
60
63
|
|
|
@@ -15,6 +15,7 @@ import { HardwareWalletEnum } from './HardwareWalletEnum';
|
|
|
15
15
|
import { PasswordSourceTypeEnum } from './PasswordSourceTypeEnum';
|
|
16
16
|
import { ProviderEntryPointVersionEnum } from './ProviderEntryPointVersionEnum';
|
|
17
17
|
import { ProviderKernelVersionEnum } from './ProviderKernelVersionEnum';
|
|
18
|
+
import { WalletKeyShareInfo } from './WalletKeyShareInfo';
|
|
18
19
|
/**
|
|
19
20
|
*
|
|
20
21
|
* @export
|
|
@@ -99,6 +100,12 @@ export interface WalletProperties {
|
|
|
99
100
|
* @memberof WalletProperties
|
|
100
101
|
*/
|
|
101
102
|
ecdsaProviderType?: EcdsaValidatorOptions;
|
|
103
|
+
/**
|
|
104
|
+
*
|
|
105
|
+
* @type {Array<WalletKeyShareInfo>}
|
|
106
|
+
* @memberof WalletProperties
|
|
107
|
+
*/
|
|
108
|
+
keyShares?: Array<WalletKeyShareInfo>;
|
|
102
109
|
}
|
|
103
110
|
export declare function WalletPropertiesFromJSON(json: any): WalletProperties;
|
|
104
111
|
export declare function WalletPropertiesFromJSONTyped(json: any, ignoreDiscriminator: boolean): WalletProperties;
|
|
@@ -5,6 +5,7 @@ import { HardwareWalletEnumFromJSON, HardwareWalletEnumToJSON } from './Hardware
|
|
|
5
5
|
import { PasswordSourceTypeEnumFromJSON, PasswordSourceTypeEnumToJSON } from './PasswordSourceTypeEnum.js';
|
|
6
6
|
import { ProviderEntryPointVersionEnumFromJSON, ProviderEntryPointVersionEnumToJSON } from './ProviderEntryPointVersionEnum.js';
|
|
7
7
|
import { ProviderKernelVersionEnumFromJSON, ProviderKernelVersionEnumToJSON } from './ProviderKernelVersionEnum.js';
|
|
8
|
+
import { WalletKeyShareInfoFromJSON, WalletKeyShareInfoToJSON } from './WalletKeyShareInfo.js';
|
|
8
9
|
|
|
9
10
|
/* tslint:disable */
|
|
10
11
|
function WalletPropertiesFromJSON(json) {
|
|
@@ -28,6 +29,7 @@ function WalletPropertiesFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
28
29
|
'entryPointVersion': !exists(json, 'entryPointVersion') ? undefined : ProviderEntryPointVersionEnumFromJSON(json['entryPointVersion']),
|
|
29
30
|
'kernelVersion': !exists(json, 'kernelVersion') ? undefined : ProviderKernelVersionEnumFromJSON(json['kernelVersion']),
|
|
30
31
|
'ecdsaProviderType': !exists(json, 'ecdsaProviderType') ? undefined : EcdsaValidatorOptionsFromJSON(json['ecdsaProviderType']),
|
|
32
|
+
'keyShares': !exists(json, 'keyShares') ? undefined : (json['keyShares'].map(WalletKeyShareInfoFromJSON)),
|
|
31
33
|
};
|
|
32
34
|
}
|
|
33
35
|
function WalletPropertiesToJSON(value) {
|
|
@@ -51,6 +53,7 @@ function WalletPropertiesToJSON(value) {
|
|
|
51
53
|
'entryPointVersion': ProviderEntryPointVersionEnumToJSON(value.entryPointVersion),
|
|
52
54
|
'kernelVersion': ProviderKernelVersionEnumToJSON(value.kernelVersion),
|
|
53
55
|
'ecdsaProviderType': EcdsaValidatorOptionsToJSON(value.ecdsaProviderType),
|
|
56
|
+
'keyShares': value.keyShares === undefined ? undefined : (value.keyShares.map(WalletKeyShareInfoToJSON)),
|
|
54
57
|
};
|
|
55
58
|
}
|
|
56
59
|
|
package/src/models/index.d.ts
CHANGED
|
@@ -396,9 +396,11 @@ export * from './Visitor';
|
|
|
396
396
|
export * from './VisitorFilterableFieldsEnum';
|
|
397
397
|
export * from './VisitorSearchFilterParams';
|
|
398
398
|
export * from './VisitorsResponse';
|
|
399
|
+
export * from './WaasWalletProperties';
|
|
399
400
|
export * from './Wallet';
|
|
400
401
|
export * from './WalletAdditionalAddress';
|
|
401
402
|
export * from './WalletAddressType';
|
|
403
|
+
export * from './WalletKeyShareInfo';
|
|
402
404
|
export * from './WalletProperties';
|
|
403
405
|
export * from './WalletProviderEnum';
|
|
404
406
|
export * from './Webhook';
|