@dynamic-labs/sdk-api 0.0.370 → 0.0.371
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 +4 -0
- package/src/index.js +1 -0
- package/src/models/CoinbaseMpcWalletProperties.cjs +0 -4
- package/src/models/CoinbaseMpcWalletProperties.d.ts +0 -12
- package/src/models/CoinbaseMpcWalletProperties.js +0 -4
- package/src/models/EmbeddedWalletSecret.cjs +7 -0
- package/src/models/EmbeddedWalletSecret.d.ts +19 -0
- package/src/models/EmbeddedWalletSecret.js +7 -0
- package/src/models/EmbeddedWalletSecretAllOf.cjs +38 -0
- package/src/models/EmbeddedWalletSecretAllOf.d.ts +40 -0
- package/src/models/EmbeddedWalletSecretAllOf.js +32 -0
- package/src/models/WalletProperties.cjs +0 -4
- package/src/models/WalletProperties.d.ts +0 -12
- package/src/models/WalletProperties.js +0 -4
- package/src/models/index.d.ts +1 -0
package/package.json
CHANGED
package/src/index.cjs
CHANGED
|
@@ -71,6 +71,7 @@ var EmbeddedWalletAuthType = require('./models/EmbeddedWalletAuthType.cjs');
|
|
|
71
71
|
var EmbeddedWalletPasscodeUpdateRequest = require('./models/EmbeddedWalletPasscodeUpdateRequest.cjs');
|
|
72
72
|
var EmbeddedWalletProviderEnum = require('./models/EmbeddedWalletProviderEnum.cjs');
|
|
73
73
|
var EmbeddedWalletSecret = require('./models/EmbeddedWalletSecret.cjs');
|
|
74
|
+
var EmbeddedWalletSecretAllOf = require('./models/EmbeddedWalletSecretAllOf.cjs');
|
|
74
75
|
var EmbeddedWalletSecurityMethod = require('./models/EmbeddedWalletSecurityMethod.cjs');
|
|
75
76
|
var EnvironmentEnum = require('./models/EnvironmentEnum.cjs');
|
|
76
77
|
var EnvironmentVisitorsResponse = require('./models/EnvironmentVisitorsResponse.cjs');
|
|
@@ -477,6 +478,9 @@ exports.EmbeddedWalletProviderEnumToJSON = EmbeddedWalletProviderEnum.EmbeddedWa
|
|
|
477
478
|
exports.EmbeddedWalletSecretFromJSON = EmbeddedWalletSecret.EmbeddedWalletSecretFromJSON;
|
|
478
479
|
exports.EmbeddedWalletSecretFromJSONTyped = EmbeddedWalletSecret.EmbeddedWalletSecretFromJSONTyped;
|
|
479
480
|
exports.EmbeddedWalletSecretToJSON = EmbeddedWalletSecret.EmbeddedWalletSecretToJSON;
|
|
481
|
+
exports.EmbeddedWalletSecretAllOfFromJSON = EmbeddedWalletSecretAllOf.EmbeddedWalletSecretAllOfFromJSON;
|
|
482
|
+
exports.EmbeddedWalletSecretAllOfFromJSONTyped = EmbeddedWalletSecretAllOf.EmbeddedWalletSecretAllOfFromJSONTyped;
|
|
483
|
+
exports.EmbeddedWalletSecretAllOfToJSON = EmbeddedWalletSecretAllOf.EmbeddedWalletSecretAllOfToJSON;
|
|
480
484
|
Object.defineProperty(exports, 'EmbeddedWalletSecurityMethod', {
|
|
481
485
|
enumerable: true,
|
|
482
486
|
get: function () { return EmbeddedWalletSecurityMethod.EmbeddedWalletSecurityMethod; }
|
package/src/index.js
CHANGED
|
@@ -67,6 +67,7 @@ export { EmbeddedWalletAuthType, EmbeddedWalletAuthTypeFromJSON, EmbeddedWalletA
|
|
|
67
67
|
export { EmbeddedWalletPasscodeUpdateRequestFromJSON, EmbeddedWalletPasscodeUpdateRequestFromJSONTyped, EmbeddedWalletPasscodeUpdateRequestToJSON } from './models/EmbeddedWalletPasscodeUpdateRequest.js';
|
|
68
68
|
export { EmbeddedWalletProviderEnum, EmbeddedWalletProviderEnumFromJSON, EmbeddedWalletProviderEnumFromJSONTyped, EmbeddedWalletProviderEnumToJSON } from './models/EmbeddedWalletProviderEnum.js';
|
|
69
69
|
export { EmbeddedWalletSecretFromJSON, EmbeddedWalletSecretFromJSONTyped, EmbeddedWalletSecretToJSON } from './models/EmbeddedWalletSecret.js';
|
|
70
|
+
export { EmbeddedWalletSecretAllOfFromJSON, EmbeddedWalletSecretAllOfFromJSONTyped, EmbeddedWalletSecretAllOfToJSON } from './models/EmbeddedWalletSecretAllOf.js';
|
|
70
71
|
export { EmbeddedWalletSecurityMethod, EmbeddedWalletSecurityMethodFromJSON, EmbeddedWalletSecurityMethodFromJSONTyped, EmbeddedWalletSecurityMethodToJSON } from './models/EmbeddedWalletSecurityMethod.js';
|
|
71
72
|
export { EnvironmentEnum, EnvironmentEnumFromJSON, EnvironmentEnumFromJSONTyped, EnvironmentEnumToJSON } from './models/EnvironmentEnum.js';
|
|
72
73
|
export { EnvironmentVisitorsResponseFromJSON, EnvironmentVisitorsResponseFromJSONTyped, EnvironmentVisitorsResponseToJSON } from './models/EnvironmentVisitorsResponse.js';
|
|
@@ -14,8 +14,6 @@ function CoinbaseMpcWalletPropertiesFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
14
14
|
return json;
|
|
15
15
|
}
|
|
16
16
|
return {
|
|
17
|
-
'backup': !runtime.exists(json, 'backup') ? undefined : json['backup'],
|
|
18
|
-
'password': !runtime.exists(json, 'password') ? undefined : json['password'],
|
|
19
17
|
'claimed': !runtime.exists(json, 'claimed') ? undefined : json['claimed'],
|
|
20
18
|
'source': !runtime.exists(json, 'source') ? undefined : PasswordSourceTypeEnum.PasswordSourceTypeEnumFromJSON(json['source']),
|
|
21
19
|
};
|
|
@@ -28,8 +26,6 @@ function CoinbaseMpcWalletPropertiesToJSON(value) {
|
|
|
28
26
|
return null;
|
|
29
27
|
}
|
|
30
28
|
return {
|
|
31
|
-
'backup': value.backup,
|
|
32
|
-
'password': value.password,
|
|
33
29
|
'claimed': value.claimed,
|
|
34
30
|
'source': PasswordSourceTypeEnum.PasswordSourceTypeEnumToJSON(value.source),
|
|
35
31
|
};
|
|
@@ -16,18 +16,6 @@ import { PasswordSourceTypeEnum } from './PasswordSourceTypeEnum';
|
|
|
16
16
|
* @interface CoinbaseMpcWalletProperties
|
|
17
17
|
*/
|
|
18
18
|
export interface CoinbaseMpcWalletProperties {
|
|
19
|
-
/**
|
|
20
|
-
* Contains the backup string used for MPC wallet retrieval
|
|
21
|
-
* @type {string}
|
|
22
|
-
* @memberof CoinbaseMpcWalletProperties
|
|
23
|
-
*/
|
|
24
|
-
backup?: string;
|
|
25
|
-
/**
|
|
26
|
-
* Pasword for coinbase embedded wallet
|
|
27
|
-
* @type {string}
|
|
28
|
-
* @memberof CoinbaseMpcWalletProperties
|
|
29
|
-
*/
|
|
30
|
-
password?: string;
|
|
31
19
|
/**
|
|
32
20
|
* Dynamic pregenerated this wallet and stored the passcode
|
|
33
21
|
* @type {boolean}
|
|
@@ -10,8 +10,6 @@ function CoinbaseMpcWalletPropertiesFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
10
10
|
return json;
|
|
11
11
|
}
|
|
12
12
|
return {
|
|
13
|
-
'backup': !exists(json, 'backup') ? undefined : json['backup'],
|
|
14
|
-
'password': !exists(json, 'password') ? undefined : json['password'],
|
|
15
13
|
'claimed': !exists(json, 'claimed') ? undefined : json['claimed'],
|
|
16
14
|
'source': !exists(json, 'source') ? undefined : PasswordSourceTypeEnumFromJSON(json['source']),
|
|
17
15
|
};
|
|
@@ -24,8 +22,6 @@ function CoinbaseMpcWalletPropertiesToJSON(value) {
|
|
|
24
22
|
return null;
|
|
25
23
|
}
|
|
26
24
|
return {
|
|
27
|
-
'backup': value.backup,
|
|
28
|
-
'password': value.password,
|
|
29
25
|
'claimed': value.claimed,
|
|
30
26
|
'source': PasswordSourceTypeEnumToJSON(value.source),
|
|
31
27
|
};
|
|
@@ -4,6 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var runtime = require('../runtime.cjs');
|
|
6
6
|
var PasswordSourceTypeEnum = require('./PasswordSourceTypeEnum.cjs');
|
|
7
|
+
var SdkUser = require('./SdkUser.cjs');
|
|
7
8
|
|
|
8
9
|
/* tslint:disable */
|
|
9
10
|
function EmbeddedWalletSecretFromJSON(json) {
|
|
@@ -14,6 +15,9 @@ function EmbeddedWalletSecretFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
14
15
|
return json;
|
|
15
16
|
}
|
|
16
17
|
return {
|
|
18
|
+
'jwt': json['jwt'],
|
|
19
|
+
'user': SdkUser.SdkUserFromJSON(json['user']),
|
|
20
|
+
'minifiedJwt': json['minifiedJwt'],
|
|
17
21
|
'walletId': json['walletId'],
|
|
18
22
|
'secret': json['secret'],
|
|
19
23
|
'source': !runtime.exists(json, 'source') ? undefined : PasswordSourceTypeEnum.PasswordSourceTypeEnumFromJSON(json['source']),
|
|
@@ -27,6 +31,9 @@ function EmbeddedWalletSecretToJSON(value) {
|
|
|
27
31
|
return null;
|
|
28
32
|
}
|
|
29
33
|
return {
|
|
34
|
+
'jwt': value.jwt,
|
|
35
|
+
'user': SdkUser.SdkUserToJSON(value.user),
|
|
36
|
+
'minifiedJwt': value.minifiedJwt,
|
|
30
37
|
'walletId': value.walletId,
|
|
31
38
|
'secret': value.secret,
|
|
32
39
|
'source': PasswordSourceTypeEnum.PasswordSourceTypeEnumToJSON(value.source),
|
|
@@ -10,12 +10,31 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { PasswordSourceTypeEnum } from './PasswordSourceTypeEnum';
|
|
13
|
+
import { SdkUser } from './SdkUser';
|
|
13
14
|
/**
|
|
14
15
|
*
|
|
15
16
|
* @export
|
|
16
17
|
* @interface EmbeddedWalletSecret
|
|
17
18
|
*/
|
|
18
19
|
export interface EmbeddedWalletSecret {
|
|
20
|
+
/**
|
|
21
|
+
* Encoded JWT token
|
|
22
|
+
* @type {string}
|
|
23
|
+
* @memberof EmbeddedWalletSecret
|
|
24
|
+
*/
|
|
25
|
+
jwt: string;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {SdkUser}
|
|
29
|
+
* @memberof EmbeddedWalletSecret
|
|
30
|
+
*/
|
|
31
|
+
user: SdkUser;
|
|
32
|
+
/**
|
|
33
|
+
* Encoded JWT token
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof EmbeddedWalletSecret
|
|
36
|
+
*/
|
|
37
|
+
minifiedJwt: string;
|
|
19
38
|
/**
|
|
20
39
|
*
|
|
21
40
|
* @type {string}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { exists } from '../runtime.js';
|
|
2
2
|
import { PasswordSourceTypeEnumFromJSON, PasswordSourceTypeEnumToJSON } from './PasswordSourceTypeEnum.js';
|
|
3
|
+
import { SdkUserFromJSON, SdkUserToJSON } from './SdkUser.js';
|
|
3
4
|
|
|
4
5
|
/* tslint:disable */
|
|
5
6
|
function EmbeddedWalletSecretFromJSON(json) {
|
|
@@ -10,6 +11,9 @@ function EmbeddedWalletSecretFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
10
11
|
return json;
|
|
11
12
|
}
|
|
12
13
|
return {
|
|
14
|
+
'jwt': json['jwt'],
|
|
15
|
+
'user': SdkUserFromJSON(json['user']),
|
|
16
|
+
'minifiedJwt': json['minifiedJwt'],
|
|
13
17
|
'walletId': json['walletId'],
|
|
14
18
|
'secret': json['secret'],
|
|
15
19
|
'source': !exists(json, 'source') ? undefined : PasswordSourceTypeEnumFromJSON(json['source']),
|
|
@@ -23,6 +27,9 @@ function EmbeddedWalletSecretToJSON(value) {
|
|
|
23
27
|
return null;
|
|
24
28
|
}
|
|
25
29
|
return {
|
|
30
|
+
'jwt': value.jwt,
|
|
31
|
+
'user': SdkUserToJSON(value.user),
|
|
32
|
+
'minifiedJwt': value.minifiedJwt,
|
|
26
33
|
'walletId': value.walletId,
|
|
27
34
|
'secret': value.secret,
|
|
28
35
|
'source': PasswordSourceTypeEnumToJSON(value.source),
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var runtime = require('../runtime.cjs');
|
|
6
|
+
var PasswordSourceTypeEnum = require('./PasswordSourceTypeEnum.cjs');
|
|
7
|
+
|
|
8
|
+
/* tslint:disable */
|
|
9
|
+
function EmbeddedWalletSecretAllOfFromJSON(json) {
|
|
10
|
+
return EmbeddedWalletSecretAllOfFromJSONTyped(json);
|
|
11
|
+
}
|
|
12
|
+
function EmbeddedWalletSecretAllOfFromJSONTyped(json, ignoreDiscriminator) {
|
|
13
|
+
if ((json === undefined) || (json === null)) {
|
|
14
|
+
return json;
|
|
15
|
+
}
|
|
16
|
+
return {
|
|
17
|
+
'walletId': json['walletId'],
|
|
18
|
+
'secret': json['secret'],
|
|
19
|
+
'source': !runtime.exists(json, 'source') ? undefined : PasswordSourceTypeEnum.PasswordSourceTypeEnumFromJSON(json['source']),
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
function EmbeddedWalletSecretAllOfToJSON(value) {
|
|
23
|
+
if (value === undefined) {
|
|
24
|
+
return undefined;
|
|
25
|
+
}
|
|
26
|
+
if (value === null) {
|
|
27
|
+
return null;
|
|
28
|
+
}
|
|
29
|
+
return {
|
|
30
|
+
'walletId': value.walletId,
|
|
31
|
+
'secret': value.secret,
|
|
32
|
+
'source': PasswordSourceTypeEnum.PasswordSourceTypeEnumToJSON(value.source),
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
exports.EmbeddedWalletSecretAllOfFromJSON = EmbeddedWalletSecretAllOfFromJSON;
|
|
37
|
+
exports.EmbeddedWalletSecretAllOfFromJSONTyped = EmbeddedWalletSecretAllOfFromJSONTyped;
|
|
38
|
+
exports.EmbeddedWalletSecretAllOfToJSON = EmbeddedWalletSecretAllOfToJSON;
|
|
@@ -0,0 +1,40 @@
|
|
|
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 { PasswordSourceTypeEnum } from './PasswordSourceTypeEnum';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface EmbeddedWalletSecretAllOf
|
|
17
|
+
*/
|
|
18
|
+
export interface EmbeddedWalletSecretAllOf {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof EmbeddedWalletSecretAllOf
|
|
23
|
+
*/
|
|
24
|
+
walletId: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof EmbeddedWalletSecretAllOf
|
|
29
|
+
*/
|
|
30
|
+
secret: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {PasswordSourceTypeEnum}
|
|
34
|
+
* @memberof EmbeddedWalletSecretAllOf
|
|
35
|
+
*/
|
|
36
|
+
source?: PasswordSourceTypeEnum;
|
|
37
|
+
}
|
|
38
|
+
export declare function EmbeddedWalletSecretAllOfFromJSON(json: any): EmbeddedWalletSecretAllOf;
|
|
39
|
+
export declare function EmbeddedWalletSecretAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmbeddedWalletSecretAllOf;
|
|
40
|
+
export declare function EmbeddedWalletSecretAllOfToJSON(value?: EmbeddedWalletSecretAllOf | null): any;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { exists } from '../runtime.js';
|
|
2
|
+
import { PasswordSourceTypeEnumFromJSON, PasswordSourceTypeEnumToJSON } from './PasswordSourceTypeEnum.js';
|
|
3
|
+
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
function EmbeddedWalletSecretAllOfFromJSON(json) {
|
|
6
|
+
return EmbeddedWalletSecretAllOfFromJSONTyped(json);
|
|
7
|
+
}
|
|
8
|
+
function EmbeddedWalletSecretAllOfFromJSONTyped(json, ignoreDiscriminator) {
|
|
9
|
+
if ((json === undefined) || (json === null)) {
|
|
10
|
+
return json;
|
|
11
|
+
}
|
|
12
|
+
return {
|
|
13
|
+
'walletId': json['walletId'],
|
|
14
|
+
'secret': json['secret'],
|
|
15
|
+
'source': !exists(json, 'source') ? undefined : PasswordSourceTypeEnumFromJSON(json['source']),
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
function EmbeddedWalletSecretAllOfToJSON(value) {
|
|
19
|
+
if (value === undefined) {
|
|
20
|
+
return undefined;
|
|
21
|
+
}
|
|
22
|
+
if (value === null) {
|
|
23
|
+
return null;
|
|
24
|
+
}
|
|
25
|
+
return {
|
|
26
|
+
'walletId': value.walletId,
|
|
27
|
+
'secret': value.secret,
|
|
28
|
+
'source': PasswordSourceTypeEnumToJSON(value.source),
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export { EmbeddedWalletSecretAllOfFromJSON, EmbeddedWalletSecretAllOfFromJSONTyped, EmbeddedWalletSecretAllOfToJSON };
|
|
@@ -20,8 +20,6 @@ function WalletPropertiesFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
20
20
|
'turnkeyHDWalletId': !runtime.exists(json, 'turnkeyHDWalletId') ? undefined : json['turnkeyHDWalletId'],
|
|
21
21
|
'isAuthenticatorAttached': !runtime.exists(json, 'isAuthenticatorAttached') ? undefined : json['isAuthenticatorAttached'],
|
|
22
22
|
'hardwareWallet': !runtime.exists(json, 'hardwareWallet') ? undefined : HardwareWalletEnum.HardwareWalletEnumFromJSON(json['hardwareWallet']),
|
|
23
|
-
'backup': !runtime.exists(json, 'backup') ? undefined : json['backup'],
|
|
24
|
-
'password': !runtime.exists(json, 'password') ? undefined : json['password'],
|
|
25
23
|
'claimed': !runtime.exists(json, 'claimed') ? undefined : json['claimed'],
|
|
26
24
|
'source': !runtime.exists(json, 'source') ? undefined : PasswordSourceTypeEnum.PasswordSourceTypeEnumFromJSON(json['source']),
|
|
27
25
|
};
|
|
@@ -39,8 +37,6 @@ function WalletPropertiesToJSON(value) {
|
|
|
39
37
|
'turnkeyHDWalletId': value.turnkeyHDWalletId,
|
|
40
38
|
'isAuthenticatorAttached': value.isAuthenticatorAttached,
|
|
41
39
|
'hardwareWallet': HardwareWalletEnum.HardwareWalletEnumToJSON(value.hardwareWallet),
|
|
42
|
-
'backup': value.backup,
|
|
43
|
-
'password': value.password,
|
|
44
40
|
'claimed': value.claimed,
|
|
45
41
|
'source': PasswordSourceTypeEnum.PasswordSourceTypeEnumToJSON(value.source),
|
|
46
42
|
};
|
|
@@ -47,18 +47,6 @@ export interface WalletProperties {
|
|
|
47
47
|
* @memberof WalletProperties
|
|
48
48
|
*/
|
|
49
49
|
hardwareWallet?: HardwareWalletEnum;
|
|
50
|
-
/**
|
|
51
|
-
* Contains the backup string used for MPC wallet retrieval
|
|
52
|
-
* @type {string}
|
|
53
|
-
* @memberof WalletProperties
|
|
54
|
-
*/
|
|
55
|
-
backup?: string;
|
|
56
|
-
/**
|
|
57
|
-
* Pasword for coinbase embedded wallet
|
|
58
|
-
* @type {string}
|
|
59
|
-
* @memberof WalletProperties
|
|
60
|
-
*/
|
|
61
|
-
password?: string;
|
|
62
50
|
/**
|
|
63
51
|
* Dynamic pregenerated this wallet and stored the passcode
|
|
64
52
|
* @type {boolean}
|
|
@@ -16,8 +16,6 @@ function WalletPropertiesFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
16
16
|
'turnkeyHDWalletId': !exists(json, 'turnkeyHDWalletId') ? undefined : json['turnkeyHDWalletId'],
|
|
17
17
|
'isAuthenticatorAttached': !exists(json, 'isAuthenticatorAttached') ? undefined : json['isAuthenticatorAttached'],
|
|
18
18
|
'hardwareWallet': !exists(json, 'hardwareWallet') ? undefined : HardwareWalletEnumFromJSON(json['hardwareWallet']),
|
|
19
|
-
'backup': !exists(json, 'backup') ? undefined : json['backup'],
|
|
20
|
-
'password': !exists(json, 'password') ? undefined : json['password'],
|
|
21
19
|
'claimed': !exists(json, 'claimed') ? undefined : json['claimed'],
|
|
22
20
|
'source': !exists(json, 'source') ? undefined : PasswordSourceTypeEnumFromJSON(json['source']),
|
|
23
21
|
};
|
|
@@ -35,8 +33,6 @@ function WalletPropertiesToJSON(value) {
|
|
|
35
33
|
'turnkeyHDWalletId': value.turnkeyHDWalletId,
|
|
36
34
|
'isAuthenticatorAttached': value.isAuthenticatorAttached,
|
|
37
35
|
'hardwareWallet': HardwareWalletEnumToJSON(value.hardwareWallet),
|
|
38
|
-
'backup': value.backup,
|
|
39
|
-
'password': value.password,
|
|
40
36
|
'claimed': value.claimed,
|
|
41
37
|
'source': PasswordSourceTypeEnumToJSON(value.source),
|
|
42
38
|
};
|
package/src/models/index.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ export * from './EmbeddedWalletAuthType';
|
|
|
44
44
|
export * from './EmbeddedWalletPasscodeUpdateRequest';
|
|
45
45
|
export * from './EmbeddedWalletProviderEnum';
|
|
46
46
|
export * from './EmbeddedWalletSecret';
|
|
47
|
+
export * from './EmbeddedWalletSecretAllOf';
|
|
47
48
|
export * from './EmbeddedWalletSecurityMethod';
|
|
48
49
|
export * from './EnvironmentEnum';
|
|
49
50
|
export * from './EnvironmentVisitorsResponse';
|