@dynamic-labs/sdk-api-core 0.0.535 → 0.0.536
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/apis/SDKApi.cjs +1 -262
- package/src/apis/SDKApi.d.ts +1 -91
- package/src/apis/SDKApi.js +1 -262
- package/src/index.cjs +0 -40
- package/src/index.js +0 -8
- package/src/models/UnprocessableEntityErrorCode.cjs +0 -1
- package/src/models/UnprocessableEntityErrorCode.d.ts +0 -1
- package/src/models/UnprocessableEntityErrorCode.js +0 -1
- package/src/models/VerifyRequest.cjs +0 -3
- package/src/models/VerifyRequest.d.ts +0 -7
- package/src/models/VerifyRequest.js +0 -3
- package/src/models/WalletProperties.cjs +0 -5
- package/src/models/WalletProperties.d.ts +0 -13
- package/src/models/WalletProperties.js +0 -5
- package/src/models/index.d.ts +0 -8
- package/src/models/CoinbaseMpcWalletProperties.cjs +0 -36
- package/src/models/CoinbaseMpcWalletProperties.d.ts +0 -34
- package/src/models/CoinbaseMpcWalletProperties.js +0 -30
- package/src/models/EmbeddedWalletAuthToken.cjs +0 -43
- package/src/models/EmbeddedWalletAuthToken.d.ts +0 -27
- package/src/models/EmbeddedWalletAuthToken.js +0 -37
- package/src/models/EmbeddedWalletAuthType.cjs +0 -39
- package/src/models/EmbeddedWalletAuthType.d.ts +0 -22
- package/src/models/EmbeddedWalletAuthType.js +0 -33
- package/src/models/EmbeddedWalletPasscodeClaimRequest.cjs +0 -43
- package/src/models/EmbeddedWalletPasscodeClaimRequest.d.ts +0 -27
- package/src/models/EmbeddedWalletPasscodeClaimRequest.js +0 -37
- package/src/models/EmbeddedWalletSecret.cjs +0 -38
- package/src/models/EmbeddedWalletSecret.d.ts +0 -40
- package/src/models/EmbeddedWalletSecret.js +0 -32
- package/src/models/EmbeddedWalletSecretWithUpdatedJwt.cjs +0 -49
- package/src/models/EmbeddedWalletSecretWithUpdatedJwt.d.ts +0 -71
- package/src/models/EmbeddedWalletSecretWithUpdatedJwt.js +0 -43
- package/src/models/EmbeddedWalletSecretWithUpdatedJwtAllOf.cjs +0 -38
- package/src/models/EmbeddedWalletSecretWithUpdatedJwtAllOf.d.ts +0 -40
- package/src/models/EmbeddedWalletSecretWithUpdatedJwtAllOf.js +0 -32
- package/src/models/PasswordSourceTypeEnum.cjs +0 -40
- package/src/models/PasswordSourceTypeEnum.d.ts +0 -23
- package/src/models/PasswordSourceTypeEnum.js +0 -34
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import { exists } from '../runtime.js';
|
|
2
|
-
import { PasswordSourceTypeEnumFromJSON, PasswordSourceTypeEnumToJSON } from './PasswordSourceTypeEnum.js';
|
|
3
|
-
import { SdkUserFromJSON, SdkUserToJSON } from './SdkUser.js';
|
|
4
|
-
|
|
5
|
-
/* tslint:disable */
|
|
6
|
-
function EmbeddedWalletSecretWithUpdatedJwtFromJSON(json) {
|
|
7
|
-
return EmbeddedWalletSecretWithUpdatedJwtFromJSONTyped(json);
|
|
8
|
-
}
|
|
9
|
-
function EmbeddedWalletSecretWithUpdatedJwtFromJSONTyped(json, ignoreDiscriminator) {
|
|
10
|
-
if ((json === undefined) || (json === null)) {
|
|
11
|
-
return json;
|
|
12
|
-
}
|
|
13
|
-
return {
|
|
14
|
-
'mfaToken': !exists(json, 'mfaToken') ? undefined : json['mfaToken'],
|
|
15
|
-
'jwt': !exists(json, 'jwt') ? undefined : json['jwt'],
|
|
16
|
-
'user': SdkUserFromJSON(json['user']),
|
|
17
|
-
'minifiedJwt': !exists(json, 'minifiedJwt') ? undefined : json['minifiedJwt'],
|
|
18
|
-
'expiresAt': json['expiresAt'],
|
|
19
|
-
'walletId': json['walletId'],
|
|
20
|
-
'secret': !exists(json, 'secret') ? undefined : json['secret'],
|
|
21
|
-
'source': !exists(json, 'source') ? undefined : PasswordSourceTypeEnumFromJSON(json['source']),
|
|
22
|
-
};
|
|
23
|
-
}
|
|
24
|
-
function EmbeddedWalletSecretWithUpdatedJwtToJSON(value) {
|
|
25
|
-
if (value === undefined) {
|
|
26
|
-
return undefined;
|
|
27
|
-
}
|
|
28
|
-
if (value === null) {
|
|
29
|
-
return null;
|
|
30
|
-
}
|
|
31
|
-
return {
|
|
32
|
-
'mfaToken': value.mfaToken,
|
|
33
|
-
'jwt': value.jwt,
|
|
34
|
-
'user': SdkUserToJSON(value.user),
|
|
35
|
-
'minifiedJwt': value.minifiedJwt,
|
|
36
|
-
'expiresAt': value.expiresAt,
|
|
37
|
-
'walletId': value.walletId,
|
|
38
|
-
'secret': value.secret,
|
|
39
|
-
'source': PasswordSourceTypeEnumToJSON(value.source),
|
|
40
|
-
};
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export { EmbeddedWalletSecretWithUpdatedJwtFromJSON, EmbeddedWalletSecretWithUpdatedJwtFromJSONTyped, EmbeddedWalletSecretWithUpdatedJwtToJSON };
|
|
@@ -1,38 +0,0 @@
|
|
|
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 EmbeddedWalletSecretWithUpdatedJwtAllOfFromJSON(json) {
|
|
10
|
-
return EmbeddedWalletSecretWithUpdatedJwtAllOfFromJSONTyped(json);
|
|
11
|
-
}
|
|
12
|
-
function EmbeddedWalletSecretWithUpdatedJwtAllOfFromJSONTyped(json, ignoreDiscriminator) {
|
|
13
|
-
if ((json === undefined) || (json === null)) {
|
|
14
|
-
return json;
|
|
15
|
-
}
|
|
16
|
-
return {
|
|
17
|
-
'walletId': json['walletId'],
|
|
18
|
-
'secret': !runtime.exists(json, 'secret') ? undefined : json['secret'],
|
|
19
|
-
'source': !runtime.exists(json, 'source') ? undefined : PasswordSourceTypeEnum.PasswordSourceTypeEnumFromJSON(json['source']),
|
|
20
|
-
};
|
|
21
|
-
}
|
|
22
|
-
function EmbeddedWalletSecretWithUpdatedJwtAllOfToJSON(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.EmbeddedWalletSecretWithUpdatedJwtAllOfFromJSON = EmbeddedWalletSecretWithUpdatedJwtAllOfFromJSON;
|
|
37
|
-
exports.EmbeddedWalletSecretWithUpdatedJwtAllOfFromJSONTyped = EmbeddedWalletSecretWithUpdatedJwtAllOfFromJSONTyped;
|
|
38
|
-
exports.EmbeddedWalletSecretWithUpdatedJwtAllOfToJSON = EmbeddedWalletSecretWithUpdatedJwtAllOfToJSON;
|
|
@@ -1,40 +0,0 @@
|
|
|
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 EmbeddedWalletSecretWithUpdatedJwtAllOf
|
|
17
|
-
*/
|
|
18
|
-
export interface EmbeddedWalletSecretWithUpdatedJwtAllOf {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @type {string}
|
|
22
|
-
* @memberof EmbeddedWalletSecretWithUpdatedJwtAllOf
|
|
23
|
-
*/
|
|
24
|
-
walletId: string;
|
|
25
|
-
/**
|
|
26
|
-
*
|
|
27
|
-
* @type {string}
|
|
28
|
-
* @memberof EmbeddedWalletSecretWithUpdatedJwtAllOf
|
|
29
|
-
*/
|
|
30
|
-
secret?: string;
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
33
|
-
* @type {PasswordSourceTypeEnum}
|
|
34
|
-
* @memberof EmbeddedWalletSecretWithUpdatedJwtAllOf
|
|
35
|
-
*/
|
|
36
|
-
source?: PasswordSourceTypeEnum;
|
|
37
|
-
}
|
|
38
|
-
export declare function EmbeddedWalletSecretWithUpdatedJwtAllOfFromJSON(json: any): EmbeddedWalletSecretWithUpdatedJwtAllOf;
|
|
39
|
-
export declare function EmbeddedWalletSecretWithUpdatedJwtAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmbeddedWalletSecretWithUpdatedJwtAllOf;
|
|
40
|
-
export declare function EmbeddedWalletSecretWithUpdatedJwtAllOfToJSON(value?: EmbeddedWalletSecretWithUpdatedJwtAllOf | null): any;
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { exists } from '../runtime.js';
|
|
2
|
-
import { PasswordSourceTypeEnumFromJSON, PasswordSourceTypeEnumToJSON } from './PasswordSourceTypeEnum.js';
|
|
3
|
-
|
|
4
|
-
/* tslint:disable */
|
|
5
|
-
function EmbeddedWalletSecretWithUpdatedJwtAllOfFromJSON(json) {
|
|
6
|
-
return EmbeddedWalletSecretWithUpdatedJwtAllOfFromJSONTyped(json);
|
|
7
|
-
}
|
|
8
|
-
function EmbeddedWalletSecretWithUpdatedJwtAllOfFromJSONTyped(json, ignoreDiscriminator) {
|
|
9
|
-
if ((json === undefined) || (json === null)) {
|
|
10
|
-
return json;
|
|
11
|
-
}
|
|
12
|
-
return {
|
|
13
|
-
'walletId': json['walletId'],
|
|
14
|
-
'secret': !exists(json, 'secret') ? undefined : json['secret'],
|
|
15
|
-
'source': !exists(json, 'source') ? undefined : PasswordSourceTypeEnumFromJSON(json['source']),
|
|
16
|
-
};
|
|
17
|
-
}
|
|
18
|
-
function EmbeddedWalletSecretWithUpdatedJwtAllOfToJSON(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 { EmbeddedWalletSecretWithUpdatedJwtAllOfFromJSON, EmbeddedWalletSecretWithUpdatedJwtAllOfFromJSONTyped, EmbeddedWalletSecretWithUpdatedJwtAllOfToJSON };
|
|
@@ -1,40 +0,0 @@
|
|
|
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
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @export
|
|
21
|
-
* @enum {string}
|
|
22
|
-
*/
|
|
23
|
-
exports.PasswordSourceTypeEnum = void 0;
|
|
24
|
-
(function (PasswordSourceTypeEnum) {
|
|
25
|
-
PasswordSourceTypeEnum["Dynamic"] = "dynamic";
|
|
26
|
-
PasswordSourceTypeEnum["User"] = "user";
|
|
27
|
-
})(exports.PasswordSourceTypeEnum || (exports.PasswordSourceTypeEnum = {}));
|
|
28
|
-
function PasswordSourceTypeEnumFromJSON(json) {
|
|
29
|
-
return PasswordSourceTypeEnumFromJSONTyped(json);
|
|
30
|
-
}
|
|
31
|
-
function PasswordSourceTypeEnumFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
-
return json;
|
|
33
|
-
}
|
|
34
|
-
function PasswordSourceTypeEnumToJSON(value) {
|
|
35
|
-
return value;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
exports.PasswordSourceTypeEnumFromJSON = PasswordSourceTypeEnumFromJSON;
|
|
39
|
-
exports.PasswordSourceTypeEnumFromJSONTyped = PasswordSourceTypeEnumFromJSONTyped;
|
|
40
|
-
exports.PasswordSourceTypeEnumToJSON = PasswordSourceTypeEnumToJSON;
|
|
@@ -1,23 +0,0 @@
|
|
|
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
|
-
* @enum {string}
|
|
16
|
-
*/
|
|
17
|
-
export declare enum PasswordSourceTypeEnum {
|
|
18
|
-
Dynamic = "dynamic",
|
|
19
|
-
User = "user"
|
|
20
|
-
}
|
|
21
|
-
export declare function PasswordSourceTypeEnumFromJSON(json: any): PasswordSourceTypeEnum;
|
|
22
|
-
export declare function PasswordSourceTypeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): PasswordSourceTypeEnum;
|
|
23
|
-
export declare function PasswordSourceTypeEnumToJSON(value?: PasswordSourceTypeEnum | null): any;
|
|
@@ -1,34 +0,0 @@
|
|
|
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
|
-
/**
|
|
15
|
-
*
|
|
16
|
-
* @export
|
|
17
|
-
* @enum {string}
|
|
18
|
-
*/
|
|
19
|
-
var PasswordSourceTypeEnum;
|
|
20
|
-
(function (PasswordSourceTypeEnum) {
|
|
21
|
-
PasswordSourceTypeEnum["Dynamic"] = "dynamic";
|
|
22
|
-
PasswordSourceTypeEnum["User"] = "user";
|
|
23
|
-
})(PasswordSourceTypeEnum || (PasswordSourceTypeEnum = {}));
|
|
24
|
-
function PasswordSourceTypeEnumFromJSON(json) {
|
|
25
|
-
return PasswordSourceTypeEnumFromJSONTyped(json);
|
|
26
|
-
}
|
|
27
|
-
function PasswordSourceTypeEnumFromJSONTyped(json, ignoreDiscriminator) {
|
|
28
|
-
return json;
|
|
29
|
-
}
|
|
30
|
-
function PasswordSourceTypeEnumToJSON(value) {
|
|
31
|
-
return value;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export { PasswordSourceTypeEnum, PasswordSourceTypeEnumFromJSON, PasswordSourceTypeEnumFromJSONTyped, PasswordSourceTypeEnumToJSON };
|