@dynamic-labs/sdk-api-core 0.0.444 → 0.0.446
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 -0
- package/src/apis/SDKApi.js +1 -0
- package/src/index.cjs +12 -4
- package/src/index.js +2 -1
- package/src/models/AuthSettings.cjs +33 -0
- package/src/models/AuthSettings.d.ts +28 -0
- package/src/models/AuthSettings.js +27 -0
- package/src/models/AuthStorageEnum.cjs +40 -0
- package/src/models/AuthStorageEnum.d.ts +23 -0
- package/src/models/AuthStorageEnum.js +34 -0
- package/src/models/BaseUser.cjs +3 -3
- package/src/models/BaseUser.d.ts +3 -3
- package/src/models/BaseUser.js +3 -3
- package/src/models/EmbeddedWalletSecretWithUpdatedJwt.cjs +2 -2
- package/src/models/EmbeddedWalletSecretWithUpdatedJwt.d.ts +4 -4
- package/src/models/EmbeddedWalletSecretWithUpdatedJwt.js +2 -2
- package/src/models/ProjectSettingsSecurity.cjs +3 -0
- package/src/models/ProjectSettingsSecurity.d.ts +7 -0
- package/src/models/ProjectSettingsSecurity.js +3 -0
- package/src/models/SdkUser.cjs +3 -3
- package/src/models/SdkUser.d.ts +3 -3
- package/src/models/SdkUser.js +3 -3
- package/src/models/UpdateSelfResponse.cjs +2 -2
- package/src/models/UpdateSelfResponse.d.ts +4 -4
- package/src/models/UpdateSelfResponse.js +2 -2
- package/src/models/VerifyResponse.cjs +3 -2
- package/src/models/VerifyResponse.d.ts +4 -4
- package/src/models/VerifyResponse.js +3 -2
- package/src/models/index.d.ts +2 -1
- package/src/models/BaseUserVerifiedCredential.cjs +0 -89
- package/src/models/BaseUserVerifiedCredential.d.ts +0 -183
- package/src/models/BaseUserVerifiedCredential.js +0 -83
package/package.json
CHANGED
package/src/apis/SDKApi.cjs
CHANGED
|
@@ -5,6 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var _tslib = require('../../_virtual/_tslib.cjs');
|
|
6
6
|
var runtime = require('../runtime.cjs');
|
|
7
7
|
require('../models/AuthModeEnum.cjs');
|
|
8
|
+
require('../models/AuthStorageEnum.cjs');
|
|
8
9
|
require('../models/AuthenticatorTransportProtocol.cjs');
|
|
9
10
|
require('../models/JwtVerifiedCredentialFormatEnum.cjs');
|
|
10
11
|
require('../models/ProviderEnum.cjs');
|
package/src/apis/SDKApi.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { __awaiter } from '../../_virtual/_tslib.js';
|
|
2
2
|
import { BaseAPI, RequiredError, JSONApiResponse, VoidApiResponse, TextApiResponse, canConsumeForm } from '../runtime.js';
|
|
3
3
|
import '../models/AuthModeEnum.js';
|
|
4
|
+
import '../models/AuthStorageEnum.js';
|
|
4
5
|
import '../models/AuthenticatorTransportProtocol.js';
|
|
5
6
|
import '../models/JwtVerifiedCredentialFormatEnum.js';
|
|
6
7
|
import '../models/ProviderEnum.js';
|
package/src/index.cjs
CHANGED
|
@@ -5,10 +5,11 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var runtime = require('./runtime.cjs');
|
|
6
6
|
var SDKApi = require('./apis/SDKApi.cjs');
|
|
7
7
|
var AuthModeEnum = require('./models/AuthModeEnum.cjs');
|
|
8
|
+
var AuthSettings = require('./models/AuthSettings.cjs');
|
|
9
|
+
var AuthStorageEnum = require('./models/AuthStorageEnum.cjs');
|
|
8
10
|
var AuthenticatorTransportProtocol = require('./models/AuthenticatorTransportProtocol.cjs');
|
|
9
11
|
var BadRequest = require('./models/BadRequest.cjs');
|
|
10
12
|
var BaseUser = require('./models/BaseUser.cjs');
|
|
11
|
-
var BaseUserVerifiedCredential = require('./models/BaseUserVerifiedCredential.cjs');
|
|
12
13
|
var ChainConfiguration = require('./models/ChainConfiguration.cjs');
|
|
13
14
|
var ChainEnum = require('./models/ChainEnum.cjs');
|
|
14
15
|
var CoinbaseMpcWalletProperties = require('./models/CoinbaseMpcWalletProperties.cjs');
|
|
@@ -211,6 +212,16 @@ Object.defineProperty(exports, 'AuthModeEnum', {
|
|
|
211
212
|
exports.AuthModeEnumFromJSON = AuthModeEnum.AuthModeEnumFromJSON;
|
|
212
213
|
exports.AuthModeEnumFromJSONTyped = AuthModeEnum.AuthModeEnumFromJSONTyped;
|
|
213
214
|
exports.AuthModeEnumToJSON = AuthModeEnum.AuthModeEnumToJSON;
|
|
215
|
+
exports.AuthSettingsFromJSON = AuthSettings.AuthSettingsFromJSON;
|
|
216
|
+
exports.AuthSettingsFromJSONTyped = AuthSettings.AuthSettingsFromJSONTyped;
|
|
217
|
+
exports.AuthSettingsToJSON = AuthSettings.AuthSettingsToJSON;
|
|
218
|
+
Object.defineProperty(exports, 'AuthStorageEnum', {
|
|
219
|
+
enumerable: true,
|
|
220
|
+
get: function () { return AuthStorageEnum.AuthStorageEnum; }
|
|
221
|
+
});
|
|
222
|
+
exports.AuthStorageEnumFromJSON = AuthStorageEnum.AuthStorageEnumFromJSON;
|
|
223
|
+
exports.AuthStorageEnumFromJSONTyped = AuthStorageEnum.AuthStorageEnumFromJSONTyped;
|
|
224
|
+
exports.AuthStorageEnumToJSON = AuthStorageEnum.AuthStorageEnumToJSON;
|
|
214
225
|
Object.defineProperty(exports, 'AuthenticatorTransportProtocol', {
|
|
215
226
|
enumerable: true,
|
|
216
227
|
get: function () { return AuthenticatorTransportProtocol.AuthenticatorTransportProtocol; }
|
|
@@ -224,9 +235,6 @@ exports.BadRequestToJSON = BadRequest.BadRequestToJSON;
|
|
|
224
235
|
exports.BaseUserFromJSON = BaseUser.BaseUserFromJSON;
|
|
225
236
|
exports.BaseUserFromJSONTyped = BaseUser.BaseUserFromJSONTyped;
|
|
226
237
|
exports.BaseUserToJSON = BaseUser.BaseUserToJSON;
|
|
227
|
-
exports.BaseUserVerifiedCredentialFromJSON = BaseUserVerifiedCredential.BaseUserVerifiedCredentialFromJSON;
|
|
228
|
-
exports.BaseUserVerifiedCredentialFromJSONTyped = BaseUserVerifiedCredential.BaseUserVerifiedCredentialFromJSONTyped;
|
|
229
|
-
exports.BaseUserVerifiedCredentialToJSON = BaseUserVerifiedCredential.BaseUserVerifiedCredentialToJSON;
|
|
230
238
|
exports.ChainConfigurationFromJSON = ChainConfiguration.ChainConfigurationFromJSON;
|
|
231
239
|
exports.ChainConfigurationFromJSONTyped = ChainConfiguration.ChainConfigurationFromJSONTyped;
|
|
232
240
|
exports.ChainConfigurationToJSON = ChainConfiguration.ChainConfigurationToJSON;
|
package/src/index.js
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
export { BASE_PATH, BaseAPI, BlobApiResponse, COLLECTION_FORMATS, Configuration, JSONApiResponse, RequiredError, TextApiResponse, VoidApiResponse, canConsumeForm, exists, mapValues, querystring } from './runtime.js';
|
|
2
2
|
export { GetAccountBalancesChainNameEnum, GetAccountBalancesNetworkIdEnum, GetAccountBalancesOptionsChainNameEnum, SDKApi } from './apis/SDKApi.js';
|
|
3
3
|
export { AuthModeEnum, AuthModeEnumFromJSON, AuthModeEnumFromJSONTyped, AuthModeEnumToJSON } from './models/AuthModeEnum.js';
|
|
4
|
+
export { AuthSettingsFromJSON, AuthSettingsFromJSONTyped, AuthSettingsToJSON } from './models/AuthSettings.js';
|
|
5
|
+
export { AuthStorageEnum, AuthStorageEnumFromJSON, AuthStorageEnumFromJSONTyped, AuthStorageEnumToJSON } from './models/AuthStorageEnum.js';
|
|
4
6
|
export { AuthenticatorTransportProtocol, AuthenticatorTransportProtocolFromJSON, AuthenticatorTransportProtocolFromJSONTyped, AuthenticatorTransportProtocolToJSON } from './models/AuthenticatorTransportProtocol.js';
|
|
5
7
|
export { BadRequestFromJSON, BadRequestFromJSONTyped, BadRequestToJSON } from './models/BadRequest.js';
|
|
6
8
|
export { BaseUserFromJSON, BaseUserFromJSONTyped, BaseUserToJSON } from './models/BaseUser.js';
|
|
7
|
-
export { BaseUserVerifiedCredentialFromJSON, BaseUserVerifiedCredentialFromJSONTyped, BaseUserVerifiedCredentialToJSON } from './models/BaseUserVerifiedCredential.js';
|
|
8
9
|
export { ChainConfigurationFromJSON, ChainConfigurationFromJSONTyped, ChainConfigurationToJSON } from './models/ChainConfiguration.js';
|
|
9
10
|
export { ChainEnum, ChainEnumFromJSON, ChainEnumFromJSONTyped, ChainEnumToJSON } from './models/ChainEnum.js';
|
|
10
11
|
export { CoinbaseMpcWalletPropertiesFromJSON, CoinbaseMpcWalletPropertiesFromJSONTyped, CoinbaseMpcWalletPropertiesToJSON } from './models/CoinbaseMpcWalletProperties.js';
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var AuthStorageEnum = require('./AuthStorageEnum.cjs');
|
|
6
|
+
|
|
7
|
+
/* tslint:disable */
|
|
8
|
+
function AuthSettingsFromJSON(json) {
|
|
9
|
+
return AuthSettingsFromJSONTyped(json);
|
|
10
|
+
}
|
|
11
|
+
function AuthSettingsFromJSONTyped(json, ignoreDiscriminator) {
|
|
12
|
+
if ((json === undefined) || (json === null)) {
|
|
13
|
+
return json;
|
|
14
|
+
}
|
|
15
|
+
return {
|
|
16
|
+
'storage': (json['storage'].map(AuthStorageEnum.AuthStorageEnumFromJSON)),
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
function AuthSettingsToJSON(value) {
|
|
20
|
+
if (value === undefined) {
|
|
21
|
+
return undefined;
|
|
22
|
+
}
|
|
23
|
+
if (value === null) {
|
|
24
|
+
return null;
|
|
25
|
+
}
|
|
26
|
+
return {
|
|
27
|
+
'storage': (value.storage.map(AuthStorageEnum.AuthStorageEnumToJSON)),
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
exports.AuthSettingsFromJSON = AuthSettingsFromJSON;
|
|
32
|
+
exports.AuthSettingsFromJSONTyped = AuthSettingsFromJSONTyped;
|
|
33
|
+
exports.AuthSettingsToJSON = AuthSettingsToJSON;
|
|
@@ -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 { AuthStorageEnum } from './AuthStorageEnum';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface AuthSettings
|
|
17
|
+
*/
|
|
18
|
+
export interface AuthSettings {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<AuthStorageEnum>}
|
|
22
|
+
* @memberof AuthSettings
|
|
23
|
+
*/
|
|
24
|
+
storage: Array<AuthStorageEnum>;
|
|
25
|
+
}
|
|
26
|
+
export declare function AuthSettingsFromJSON(json: any): AuthSettings;
|
|
27
|
+
export declare function AuthSettingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthSettings;
|
|
28
|
+
export declare function AuthSettingsToJSON(value?: AuthSettings | null): any;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { AuthStorageEnumFromJSON, AuthStorageEnumToJSON } from './AuthStorageEnum.js';
|
|
2
|
+
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
function AuthSettingsFromJSON(json) {
|
|
5
|
+
return AuthSettingsFromJSONTyped(json);
|
|
6
|
+
}
|
|
7
|
+
function AuthSettingsFromJSONTyped(json, ignoreDiscriminator) {
|
|
8
|
+
if ((json === undefined) || (json === null)) {
|
|
9
|
+
return json;
|
|
10
|
+
}
|
|
11
|
+
return {
|
|
12
|
+
'storage': (json['storage'].map(AuthStorageEnumFromJSON)),
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
function AuthSettingsToJSON(value) {
|
|
16
|
+
if (value === undefined) {
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
if (value === null) {
|
|
20
|
+
return null;
|
|
21
|
+
}
|
|
22
|
+
return {
|
|
23
|
+
'storage': (value.storage.map(AuthStorageEnumToJSON)),
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export { AuthSettingsFromJSON, AuthSettingsFromJSONTyped, AuthSettingsToJSON };
|
|
@@ -0,0 +1,40 @@
|
|
|
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
|
+
* Location in the browser where Dynamic will attempt to store the JWT token.
|
|
20
|
+
* @export
|
|
21
|
+
* @enum {string}
|
|
22
|
+
*/
|
|
23
|
+
exports.AuthStorageEnum = void 0;
|
|
24
|
+
(function (AuthStorageEnum) {
|
|
25
|
+
AuthStorageEnum["Localstorage"] = "localstorage";
|
|
26
|
+
AuthStorageEnum["Cookie"] = "cookie";
|
|
27
|
+
})(exports.AuthStorageEnum || (exports.AuthStorageEnum = {}));
|
|
28
|
+
function AuthStorageEnumFromJSON(json) {
|
|
29
|
+
return AuthStorageEnumFromJSONTyped(json);
|
|
30
|
+
}
|
|
31
|
+
function AuthStorageEnumFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
function AuthStorageEnumToJSON(value) {
|
|
35
|
+
return value;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
exports.AuthStorageEnumFromJSON = AuthStorageEnumFromJSON;
|
|
39
|
+
exports.AuthStorageEnumFromJSONTyped = AuthStorageEnumFromJSONTyped;
|
|
40
|
+
exports.AuthStorageEnumToJSON = AuthStorageEnumToJSON;
|
|
@@ -0,0 +1,23 @@
|
|
|
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
|
+
* Location in the browser where Dynamic will attempt to store the JWT token.
|
|
14
|
+
* @export
|
|
15
|
+
* @enum {string}
|
|
16
|
+
*/
|
|
17
|
+
export declare enum AuthStorageEnum {
|
|
18
|
+
Localstorage = "localstorage",
|
|
19
|
+
Cookie = "cookie"
|
|
20
|
+
}
|
|
21
|
+
export declare function AuthStorageEnumFromJSON(json: any): AuthStorageEnum;
|
|
22
|
+
export declare function AuthStorageEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthStorageEnum;
|
|
23
|
+
export declare function AuthStorageEnumToJSON(value?: AuthStorageEnum | null): any;
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
* Location in the browser where Dynamic will attempt to store the JWT token.
|
|
16
|
+
* @export
|
|
17
|
+
* @enum {string}
|
|
18
|
+
*/
|
|
19
|
+
var AuthStorageEnum;
|
|
20
|
+
(function (AuthStorageEnum) {
|
|
21
|
+
AuthStorageEnum["Localstorage"] = "localstorage";
|
|
22
|
+
AuthStorageEnum["Cookie"] = "cookie";
|
|
23
|
+
})(AuthStorageEnum || (AuthStorageEnum = {}));
|
|
24
|
+
function AuthStorageEnumFromJSON(json) {
|
|
25
|
+
return AuthStorageEnumFromJSONTyped(json);
|
|
26
|
+
}
|
|
27
|
+
function AuthStorageEnumFromJSONTyped(json, ignoreDiscriminator) {
|
|
28
|
+
return json;
|
|
29
|
+
}
|
|
30
|
+
function AuthStorageEnumToJSON(value) {
|
|
31
|
+
return value;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export { AuthStorageEnum, AuthStorageEnumFromJSON, AuthStorageEnumFromJSONTyped, AuthStorageEnumToJSON };
|
package/src/models/BaseUser.cjs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var runtime = require('../runtime.cjs');
|
|
6
|
-
var
|
|
6
|
+
var JwtVerifiedCredential = require('./JwtVerifiedCredential.cjs');
|
|
7
7
|
var ProjectSettingsKyc = require('./ProjectSettingsKyc.cjs');
|
|
8
8
|
|
|
9
9
|
/* tslint:disable */
|
|
@@ -17,7 +17,7 @@ function BaseUserFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
17
17
|
return {
|
|
18
18
|
'id': json['id'],
|
|
19
19
|
'projectEnvironmentId': json['projectEnvironmentId'],
|
|
20
|
-
'verifiedCredentials': !runtime.exists(json, 'verifiedCredentials') ? undefined : (json['verifiedCredentials'].map(
|
|
20
|
+
'verifiedCredentials': !runtime.exists(json, 'verifiedCredentials') ? undefined : (json['verifiedCredentials'].map(JwtVerifiedCredential.JwtVerifiedCredentialFromJSON)),
|
|
21
21
|
'lastVerifiedCredentialId': !runtime.exists(json, 'lastVerifiedCredentialId') ? undefined : json['lastVerifiedCredentialId'],
|
|
22
22
|
'sessionId': !runtime.exists(json, 'sessionId') ? undefined : json['sessionId'],
|
|
23
23
|
'alias': !runtime.exists(json, 'alias') ? undefined : json['alias'],
|
|
@@ -59,7 +59,7 @@ function BaseUserToJSON(value) {
|
|
|
59
59
|
return {
|
|
60
60
|
'id': value.id,
|
|
61
61
|
'projectEnvironmentId': value.projectEnvironmentId,
|
|
62
|
-
'verifiedCredentials': value.verifiedCredentials === undefined ? undefined : (value.verifiedCredentials.map(
|
|
62
|
+
'verifiedCredentials': value.verifiedCredentials === undefined ? undefined : (value.verifiedCredentials.map(JwtVerifiedCredential.JwtVerifiedCredentialToJSON)),
|
|
63
63
|
'lastVerifiedCredentialId': value.lastVerifiedCredentialId,
|
|
64
64
|
'sessionId': value.sessionId,
|
|
65
65
|
'alias': value.alias,
|
package/src/models/BaseUser.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { JwtVerifiedCredential } from './JwtVerifiedCredential';
|
|
13
13
|
import { ProjectSettingsKyc } from './ProjectSettingsKyc';
|
|
14
14
|
/**
|
|
15
15
|
*
|
|
@@ -31,10 +31,10 @@ export interface BaseUser {
|
|
|
31
31
|
projectEnvironmentId: string;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
|
-
* @type {Array<
|
|
34
|
+
* @type {Array<JwtVerifiedCredential>}
|
|
35
35
|
* @memberof BaseUser
|
|
36
36
|
*/
|
|
37
|
-
verifiedCredentials?: Array<
|
|
37
|
+
verifiedCredentials?: Array<JwtVerifiedCredential>;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
40
|
* @type {string}
|
package/src/models/BaseUser.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { exists } from '../runtime.js';
|
|
2
|
-
import {
|
|
2
|
+
import { JwtVerifiedCredentialFromJSON, JwtVerifiedCredentialToJSON } from './JwtVerifiedCredential.js';
|
|
3
3
|
import { ProjectSettingsKycFromJSON, ProjectSettingsKycToJSON } from './ProjectSettingsKyc.js';
|
|
4
4
|
|
|
5
5
|
/* tslint:disable */
|
|
@@ -13,7 +13,7 @@ function BaseUserFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
13
13
|
return {
|
|
14
14
|
'id': json['id'],
|
|
15
15
|
'projectEnvironmentId': json['projectEnvironmentId'],
|
|
16
|
-
'verifiedCredentials': !exists(json, 'verifiedCredentials') ? undefined : (json['verifiedCredentials'].map(
|
|
16
|
+
'verifiedCredentials': !exists(json, 'verifiedCredentials') ? undefined : (json['verifiedCredentials'].map(JwtVerifiedCredentialFromJSON)),
|
|
17
17
|
'lastVerifiedCredentialId': !exists(json, 'lastVerifiedCredentialId') ? undefined : json['lastVerifiedCredentialId'],
|
|
18
18
|
'sessionId': !exists(json, 'sessionId') ? undefined : json['sessionId'],
|
|
19
19
|
'alias': !exists(json, 'alias') ? undefined : json['alias'],
|
|
@@ -55,7 +55,7 @@ function BaseUserToJSON(value) {
|
|
|
55
55
|
return {
|
|
56
56
|
'id': value.id,
|
|
57
57
|
'projectEnvironmentId': value.projectEnvironmentId,
|
|
58
|
-
'verifiedCredentials': value.verifiedCredentials === undefined ? undefined : (value.verifiedCredentials.map(
|
|
58
|
+
'verifiedCredentials': value.verifiedCredentials === undefined ? undefined : (value.verifiedCredentials.map(JwtVerifiedCredentialToJSON)),
|
|
59
59
|
'lastVerifiedCredentialId': value.lastVerifiedCredentialId,
|
|
60
60
|
'sessionId': value.sessionId,
|
|
61
61
|
'alias': value.alias,
|
|
@@ -15,9 +15,9 @@ function EmbeddedWalletSecretWithUpdatedJwtFromJSONTyped(json, ignoreDiscriminat
|
|
|
15
15
|
return json;
|
|
16
16
|
}
|
|
17
17
|
return {
|
|
18
|
-
'jwt': json['jwt'],
|
|
18
|
+
'jwt': !runtime.exists(json, 'jwt') ? undefined : json['jwt'],
|
|
19
19
|
'user': SdkUser.SdkUserFromJSON(json['user']),
|
|
20
|
-
'minifiedJwt': json['minifiedJwt'],
|
|
20
|
+
'minifiedJwt': !runtime.exists(json, 'minifiedJwt') ? undefined : json['minifiedJwt'],
|
|
21
21
|
'expiresAt': json['expiresAt'],
|
|
22
22
|
'walletId': json['walletId'],
|
|
23
23
|
'secret': !runtime.exists(json, 'secret') ? undefined : json['secret'],
|
|
@@ -18,11 +18,11 @@ import { SdkUser } from './SdkUser';
|
|
|
18
18
|
*/
|
|
19
19
|
export interface EmbeddedWalletSecretWithUpdatedJwt {
|
|
20
20
|
/**
|
|
21
|
-
* Encoded JWT token
|
|
21
|
+
* Encoded JWT token. This will only be returned when cookie-based authentication is disabled in favor of standard Auth header based authentication.
|
|
22
22
|
* @type {string}
|
|
23
23
|
* @memberof EmbeddedWalletSecretWithUpdatedJwt
|
|
24
24
|
*/
|
|
25
|
-
jwt
|
|
25
|
+
jwt?: string;
|
|
26
26
|
/**
|
|
27
27
|
*
|
|
28
28
|
* @type {SdkUser}
|
|
@@ -30,11 +30,11 @@ export interface EmbeddedWalletSecretWithUpdatedJwt {
|
|
|
30
30
|
*/
|
|
31
31
|
user: SdkUser;
|
|
32
32
|
/**
|
|
33
|
-
* Encoded JWT token
|
|
33
|
+
* Encoded JWT token. This will only be returned when cookie-based authentication is disabled in favor of standard Auth header based authentication.
|
|
34
34
|
* @type {string}
|
|
35
35
|
* @memberof EmbeddedWalletSecretWithUpdatedJwt
|
|
36
36
|
*/
|
|
37
|
-
minifiedJwt
|
|
37
|
+
minifiedJwt?: string;
|
|
38
38
|
/**
|
|
39
39
|
* Format is a unix-based timestamp. When set, this will be the expiration timestamp on the JWT sent using either the `jwt` field or a response httpOnly cookie set by the server.
|
|
40
40
|
* @type {number}
|
|
@@ -11,9 +11,9 @@ function EmbeddedWalletSecretWithUpdatedJwtFromJSONTyped(json, ignoreDiscriminat
|
|
|
11
11
|
return json;
|
|
12
12
|
}
|
|
13
13
|
return {
|
|
14
|
-
'jwt': json['jwt'],
|
|
14
|
+
'jwt': !exists(json, 'jwt') ? undefined : json['jwt'],
|
|
15
15
|
'user': SdkUserFromJSON(json['user']),
|
|
16
|
-
'minifiedJwt': json['minifiedJwt'],
|
|
16
|
+
'minifiedJwt': !exists(json, 'minifiedJwt') ? undefined : json['minifiedJwt'],
|
|
17
17
|
'expiresAt': json['expiresAt'],
|
|
18
18
|
'walletId': json['walletId'],
|
|
19
19
|
'secret': !exists(json, 'secret') ? undefined : json['secret'],
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var runtime = require('../runtime.cjs');
|
|
6
|
+
var AuthSettings = require('./AuthSettings.cjs');
|
|
6
7
|
var Duration = require('./Duration.cjs');
|
|
7
8
|
var HCaptchaSettings = require('./HCaptchaSettings.cjs');
|
|
8
9
|
var MFASettings = require('./MFASettings.cjs');
|
|
@@ -19,6 +20,7 @@ function ProjectSettingsSecurityFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
19
20
|
'jwtDuration': !runtime.exists(json, 'jwtDuration') ? undefined : Duration.DurationFromJSON(json['jwtDuration']),
|
|
20
21
|
'hCaptcha': !runtime.exists(json, 'hCaptcha') ? undefined : HCaptchaSettings.HCaptchaSettingsFromJSON(json['hCaptcha']),
|
|
21
22
|
'mfa': !runtime.exists(json, 'mfa') ? undefined : MFASettings.MFASettingsFromJSON(json['mfa']),
|
|
23
|
+
'auth': !runtime.exists(json, 'auth') ? undefined : AuthSettings.AuthSettingsFromJSON(json['auth']),
|
|
22
24
|
};
|
|
23
25
|
}
|
|
24
26
|
function ProjectSettingsSecurityToJSON(value) {
|
|
@@ -32,6 +34,7 @@ function ProjectSettingsSecurityToJSON(value) {
|
|
|
32
34
|
'jwtDuration': Duration.DurationToJSON(value.jwtDuration),
|
|
33
35
|
'hCaptcha': HCaptchaSettings.HCaptchaSettingsToJSON(value.hCaptcha),
|
|
34
36
|
'mfa': MFASettings.MFASettingsToJSON(value.mfa),
|
|
37
|
+
'auth': AuthSettings.AuthSettingsToJSON(value.auth),
|
|
35
38
|
};
|
|
36
39
|
}
|
|
37
40
|
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { AuthSettings } from './AuthSettings';
|
|
12
13
|
import { Duration } from './Duration';
|
|
13
14
|
import { HCaptchaSettings } from './HCaptchaSettings';
|
|
14
15
|
import { MFASettings } from './MFASettings';
|
|
@@ -36,6 +37,12 @@ export interface ProjectSettingsSecurity {
|
|
|
36
37
|
* @memberof ProjectSettingsSecurity
|
|
37
38
|
*/
|
|
38
39
|
mfa?: MFASettings;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @type {AuthSettings}
|
|
43
|
+
* @memberof ProjectSettingsSecurity
|
|
44
|
+
*/
|
|
45
|
+
auth?: AuthSettings;
|
|
39
46
|
}
|
|
40
47
|
export declare function ProjectSettingsSecurityFromJSON(json: any): ProjectSettingsSecurity;
|
|
41
48
|
export declare function ProjectSettingsSecurityFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectSettingsSecurity;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { exists } from '../runtime.js';
|
|
2
|
+
import { AuthSettingsFromJSON, AuthSettingsToJSON } from './AuthSettings.js';
|
|
2
3
|
import { DurationFromJSON, DurationToJSON } from './Duration.js';
|
|
3
4
|
import { HCaptchaSettingsFromJSON, HCaptchaSettingsToJSON } from './HCaptchaSettings.js';
|
|
4
5
|
import { MFASettingsFromJSON, MFASettingsToJSON } from './MFASettings.js';
|
|
@@ -15,6 +16,7 @@ function ProjectSettingsSecurityFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
15
16
|
'jwtDuration': !exists(json, 'jwtDuration') ? undefined : DurationFromJSON(json['jwtDuration']),
|
|
16
17
|
'hCaptcha': !exists(json, 'hCaptcha') ? undefined : HCaptchaSettingsFromJSON(json['hCaptcha']),
|
|
17
18
|
'mfa': !exists(json, 'mfa') ? undefined : MFASettingsFromJSON(json['mfa']),
|
|
19
|
+
'auth': !exists(json, 'auth') ? undefined : AuthSettingsFromJSON(json['auth']),
|
|
18
20
|
};
|
|
19
21
|
}
|
|
20
22
|
function ProjectSettingsSecurityToJSON(value) {
|
|
@@ -28,6 +30,7 @@ function ProjectSettingsSecurityToJSON(value) {
|
|
|
28
30
|
'jwtDuration': DurationToJSON(value.jwtDuration),
|
|
29
31
|
'hCaptcha': HCaptchaSettingsToJSON(value.hCaptcha),
|
|
30
32
|
'mfa': MFASettingsToJSON(value.mfa),
|
|
33
|
+
'auth': AuthSettingsToJSON(value.auth),
|
|
31
34
|
};
|
|
32
35
|
}
|
|
33
36
|
|
package/src/models/SdkUser.cjs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var runtime = require('../runtime.cjs');
|
|
6
|
-
var
|
|
6
|
+
var JwtVerifiedCredential = require('./JwtVerifiedCredential.cjs');
|
|
7
7
|
var ProjectSettingsKyc = require('./ProjectSettingsKyc.cjs');
|
|
8
8
|
|
|
9
9
|
/* tslint:disable */
|
|
@@ -17,7 +17,7 @@ function SdkUserFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
17
17
|
return {
|
|
18
18
|
'id': json['id'],
|
|
19
19
|
'projectEnvironmentId': json['projectEnvironmentId'],
|
|
20
|
-
'verifiedCredentials': (json['verifiedCredentials'].map(
|
|
20
|
+
'verifiedCredentials': (json['verifiedCredentials'].map(JwtVerifiedCredential.JwtVerifiedCredentialFromJSON)),
|
|
21
21
|
'lastVerifiedCredentialId': !runtime.exists(json, 'lastVerifiedCredentialId') ? undefined : json['lastVerifiedCredentialId'],
|
|
22
22
|
'sessionId': !runtime.exists(json, 'sessionId') ? undefined : json['sessionId'],
|
|
23
23
|
'alias': !runtime.exists(json, 'alias') ? undefined : json['alias'],
|
|
@@ -59,7 +59,7 @@ function SdkUserToJSON(value) {
|
|
|
59
59
|
return {
|
|
60
60
|
'id': value.id,
|
|
61
61
|
'projectEnvironmentId': value.projectEnvironmentId,
|
|
62
|
-
'verifiedCredentials': (value.verifiedCredentials.map(
|
|
62
|
+
'verifiedCredentials': (value.verifiedCredentials.map(JwtVerifiedCredential.JwtVerifiedCredentialToJSON)),
|
|
63
63
|
'lastVerifiedCredentialId': value.lastVerifiedCredentialId,
|
|
64
64
|
'sessionId': value.sessionId,
|
|
65
65
|
'alias': value.alias,
|
package/src/models/SdkUser.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { JwtVerifiedCredential } from './JwtVerifiedCredential';
|
|
13
13
|
import { ProjectSettingsKyc } from './ProjectSettingsKyc';
|
|
14
14
|
/**
|
|
15
15
|
*
|
|
@@ -31,10 +31,10 @@ export interface SdkUser {
|
|
|
31
31
|
projectEnvironmentId: string;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
|
-
* @type {Array<
|
|
34
|
+
* @type {Array<JwtVerifiedCredential>}
|
|
35
35
|
* @memberof SdkUser
|
|
36
36
|
*/
|
|
37
|
-
verifiedCredentials: Array<
|
|
37
|
+
verifiedCredentials: Array<JwtVerifiedCredential>;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
40
|
* @type {string}
|
package/src/models/SdkUser.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { exists } from '../runtime.js';
|
|
2
|
-
import {
|
|
2
|
+
import { JwtVerifiedCredentialFromJSON, JwtVerifiedCredentialToJSON } from './JwtVerifiedCredential.js';
|
|
3
3
|
import { ProjectSettingsKycFromJSON, ProjectSettingsKycToJSON } from './ProjectSettingsKyc.js';
|
|
4
4
|
|
|
5
5
|
/* tslint:disable */
|
|
@@ -13,7 +13,7 @@ function SdkUserFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
13
13
|
return {
|
|
14
14
|
'id': json['id'],
|
|
15
15
|
'projectEnvironmentId': json['projectEnvironmentId'],
|
|
16
|
-
'verifiedCredentials': (json['verifiedCredentials'].map(
|
|
16
|
+
'verifiedCredentials': (json['verifiedCredentials'].map(JwtVerifiedCredentialFromJSON)),
|
|
17
17
|
'lastVerifiedCredentialId': !exists(json, 'lastVerifiedCredentialId') ? undefined : json['lastVerifiedCredentialId'],
|
|
18
18
|
'sessionId': !exists(json, 'sessionId') ? undefined : json['sessionId'],
|
|
19
19
|
'alias': !exists(json, 'alias') ? undefined : json['alias'],
|
|
@@ -55,7 +55,7 @@ function SdkUserToJSON(value) {
|
|
|
55
55
|
return {
|
|
56
56
|
'id': value.id,
|
|
57
57
|
'projectEnvironmentId': value.projectEnvironmentId,
|
|
58
|
-
'verifiedCredentials': (value.verifiedCredentials.map(
|
|
58
|
+
'verifiedCredentials': (value.verifiedCredentials.map(JwtVerifiedCredentialToJSON)),
|
|
59
59
|
'lastVerifiedCredentialId': value.lastVerifiedCredentialId,
|
|
60
60
|
'sessionId': value.sessionId,
|
|
61
61
|
'alias': value.alias,
|
|
@@ -17,9 +17,9 @@ function UpdateSelfResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
17
17
|
return json;
|
|
18
18
|
}
|
|
19
19
|
return {
|
|
20
|
-
'jwt': json['jwt'],
|
|
20
|
+
'jwt': !runtime.exists(json, 'jwt') ? undefined : json['jwt'],
|
|
21
21
|
'user': SdkUser.SdkUserFromJSON(json['user']),
|
|
22
|
-
'minifiedJwt': json['minifiedJwt'],
|
|
22
|
+
'minifiedJwt': !runtime.exists(json, 'minifiedJwt') ? undefined : json['minifiedJwt'],
|
|
23
23
|
'expiresAt': json['expiresAt'],
|
|
24
24
|
'nextView': NextViewEnum.NextViewEnumFromJSON(json['nextView']),
|
|
25
25
|
'emailVerification': !runtime.exists(json, 'emailVerification') ? undefined : EmailVerificationCreateResponse.EmailVerificationCreateResponseFromJSON(json['emailVerification']),
|
|
@@ -20,11 +20,11 @@ import { SmsVerificationCreateResponse } from './SmsVerificationCreateResponse';
|
|
|
20
20
|
*/
|
|
21
21
|
export interface UpdateSelfResponse {
|
|
22
22
|
/**
|
|
23
|
-
* Encoded JWT token
|
|
23
|
+
* Encoded JWT token. This will only be returned when cookie-based authentication is disabled in favor of standard Auth header based authentication.
|
|
24
24
|
* @type {string}
|
|
25
25
|
* @memberof UpdateSelfResponse
|
|
26
26
|
*/
|
|
27
|
-
jwt
|
|
27
|
+
jwt?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
30
|
* @type {SdkUser}
|
|
@@ -32,11 +32,11 @@ export interface UpdateSelfResponse {
|
|
|
32
32
|
*/
|
|
33
33
|
user: SdkUser;
|
|
34
34
|
/**
|
|
35
|
-
* Encoded JWT token
|
|
35
|
+
* Encoded JWT token. This will only be returned when cookie-based authentication is disabled in favor of standard Auth header based authentication.
|
|
36
36
|
* @type {string}
|
|
37
37
|
* @memberof UpdateSelfResponse
|
|
38
38
|
*/
|
|
39
|
-
minifiedJwt
|
|
39
|
+
minifiedJwt?: string;
|
|
40
40
|
/**
|
|
41
41
|
* Format is a unix-based timestamp. When set, this will be the expiration timestamp on the JWT sent using either the `jwt` field or a response httpOnly cookie set by the server.
|
|
42
42
|
* @type {number}
|
|
@@ -13,9 +13,9 @@ function UpdateSelfResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
13
13
|
return json;
|
|
14
14
|
}
|
|
15
15
|
return {
|
|
16
|
-
'jwt': json['jwt'],
|
|
16
|
+
'jwt': !exists(json, 'jwt') ? undefined : json['jwt'],
|
|
17
17
|
'user': SdkUserFromJSON(json['user']),
|
|
18
|
-
'minifiedJwt': json['minifiedJwt'],
|
|
18
|
+
'minifiedJwt': !exists(json, 'minifiedJwt') ? undefined : json['minifiedJwt'],
|
|
19
19
|
'expiresAt': json['expiresAt'],
|
|
20
20
|
'nextView': NextViewEnumFromJSON(json['nextView']),
|
|
21
21
|
'emailVerification': !exists(json, 'emailVerification') ? undefined : EmailVerificationCreateResponseFromJSON(json['emailVerification']),
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
+
var runtime = require('../runtime.cjs');
|
|
5
6
|
var SdkUser = require('./SdkUser.cjs');
|
|
6
7
|
|
|
7
8
|
/* tslint:disable */
|
|
@@ -13,9 +14,9 @@ function VerifyResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
13
14
|
return json;
|
|
14
15
|
}
|
|
15
16
|
return {
|
|
16
|
-
'jwt': json['jwt'],
|
|
17
|
+
'jwt': !runtime.exists(json, 'jwt') ? undefined : json['jwt'],
|
|
17
18
|
'user': SdkUser.SdkUserFromJSON(json['user']),
|
|
18
|
-
'minifiedJwt': json['minifiedJwt'],
|
|
19
|
+
'minifiedJwt': !runtime.exists(json, 'minifiedJwt') ? undefined : json['minifiedJwt'],
|
|
19
20
|
'expiresAt': json['expiresAt'],
|
|
20
21
|
};
|
|
21
22
|
}
|
|
@@ -17,11 +17,11 @@ import { SdkUser } from './SdkUser';
|
|
|
17
17
|
*/
|
|
18
18
|
export interface VerifyResponse {
|
|
19
19
|
/**
|
|
20
|
-
* Encoded JWT token
|
|
20
|
+
* Encoded JWT token. This will only be returned when cookie-based authentication is disabled in favor of standard Auth header based authentication.
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof VerifyResponse
|
|
23
23
|
*/
|
|
24
|
-
jwt
|
|
24
|
+
jwt?: string;
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
27
|
* @type {SdkUser}
|
|
@@ -29,11 +29,11 @@ export interface VerifyResponse {
|
|
|
29
29
|
*/
|
|
30
30
|
user: SdkUser;
|
|
31
31
|
/**
|
|
32
|
-
* Encoded JWT token
|
|
32
|
+
* Encoded JWT token. This will only be returned when cookie-based authentication is disabled in favor of standard Auth header based authentication.
|
|
33
33
|
* @type {string}
|
|
34
34
|
* @memberof VerifyResponse
|
|
35
35
|
*/
|
|
36
|
-
minifiedJwt
|
|
36
|
+
minifiedJwt?: string;
|
|
37
37
|
/**
|
|
38
38
|
* Format is a unix-based timestamp. When set, this will be the expiration timestamp on the JWT sent using either the `jwt` field or a response httpOnly cookie set by the server.
|
|
39
39
|
* @type {number}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { exists } from '../runtime.js';
|
|
1
2
|
import { SdkUserFromJSON, SdkUserToJSON } from './SdkUser.js';
|
|
2
3
|
|
|
3
4
|
/* tslint:disable */
|
|
@@ -9,9 +10,9 @@ function VerifyResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
9
10
|
return json;
|
|
10
11
|
}
|
|
11
12
|
return {
|
|
12
|
-
'jwt': json['jwt'],
|
|
13
|
+
'jwt': !exists(json, 'jwt') ? undefined : json['jwt'],
|
|
13
14
|
'user': SdkUserFromJSON(json['user']),
|
|
14
|
-
'minifiedJwt': json['minifiedJwt'],
|
|
15
|
+
'minifiedJwt': !exists(json, 'minifiedJwt') ? undefined : json['minifiedJwt'],
|
|
15
16
|
'expiresAt': json['expiresAt'],
|
|
16
17
|
};
|
|
17
18
|
}
|
package/src/models/index.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
export * from './AuthModeEnum';
|
|
2
|
+
export * from './AuthSettings';
|
|
3
|
+
export * from './AuthStorageEnum';
|
|
2
4
|
export * from './AuthenticatorTransportProtocol';
|
|
3
5
|
export * from './BadRequest';
|
|
4
6
|
export * from './BaseUser';
|
|
5
|
-
export * from './BaseUserVerifiedCredential';
|
|
6
7
|
export * from './ChainConfiguration';
|
|
7
8
|
export * from './ChainEnum';
|
|
8
9
|
export * from './CoinbaseMpcWalletProperties';
|
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
|
-
var runtime = require('../runtime.cjs');
|
|
6
|
-
var JwtVerifiedCredentialFormatEnum = require('./JwtVerifiedCredentialFormatEnum.cjs');
|
|
7
|
-
var NameServiceData = require('./NameServiceData.cjs');
|
|
8
|
-
var ProviderEnum = require('./ProviderEnum.cjs');
|
|
9
|
-
var WalletAdditionalAddress = require('./WalletAdditionalAddress.cjs');
|
|
10
|
-
var WalletProperties = require('./WalletProperties.cjs');
|
|
11
|
-
var WalletProviderEnum = require('./WalletProviderEnum.cjs');
|
|
12
|
-
|
|
13
|
-
/* tslint:disable */
|
|
14
|
-
function BaseUserVerifiedCredentialFromJSON(json) {
|
|
15
|
-
return BaseUserVerifiedCredentialFromJSONTyped(json);
|
|
16
|
-
}
|
|
17
|
-
function BaseUserVerifiedCredentialFromJSONTyped(json, ignoreDiscriminator) {
|
|
18
|
-
if ((json === undefined) || (json === null)) {
|
|
19
|
-
return json;
|
|
20
|
-
}
|
|
21
|
-
return {
|
|
22
|
-
'address': !runtime.exists(json, 'address') ? undefined : json['address'],
|
|
23
|
-
'chain': !runtime.exists(json, 'chain') ? undefined : json['chain'],
|
|
24
|
-
'refId': !runtime.exists(json, 'refId') ? undefined : json['refId'],
|
|
25
|
-
'signerRefId': !runtime.exists(json, 'signerRefId') ? undefined : json['signerRefId'],
|
|
26
|
-
'email': !runtime.exists(json, 'email') ? undefined : json['email'],
|
|
27
|
-
'id': json['id'],
|
|
28
|
-
'nameService': !runtime.exists(json, 'nameService') ? undefined : NameServiceData.NameServiceDataFromJSON(json['nameService']),
|
|
29
|
-
'publicIdentifier': !runtime.exists(json, 'publicIdentifier') ? undefined : json['publicIdentifier'],
|
|
30
|
-
'walletName': !runtime.exists(json, 'walletName') ? undefined : json['walletName'],
|
|
31
|
-
'walletProvider': !runtime.exists(json, 'walletProvider') ? undefined : WalletProviderEnum.WalletProviderEnumFromJSON(json['walletProvider']),
|
|
32
|
-
'walletProperties': !runtime.exists(json, 'walletProperties') ? undefined : WalletProperties.WalletPropertiesFromJSON(json['walletProperties']),
|
|
33
|
-
'format': JwtVerifiedCredentialFormatEnum.JwtVerifiedCredentialFormatEnumFromJSON(json['format']),
|
|
34
|
-
'oauthProvider': !runtime.exists(json, 'oauthProvider') ? undefined : ProviderEnum.ProviderEnumFromJSON(json['oauthProvider']),
|
|
35
|
-
'oauthUsername': !runtime.exists(json, 'oauthUsername') ? undefined : json['oauthUsername'],
|
|
36
|
-
'oauthDisplayName': !runtime.exists(json, 'oauthDisplayName') ? undefined : json['oauthDisplayName'],
|
|
37
|
-
'oauthAccountId': !runtime.exists(json, 'oauthAccountId') ? undefined : json['oauthAccountId'],
|
|
38
|
-
'phoneNumber': !runtime.exists(json, 'phoneNumber') ? undefined : json['phoneNumber'],
|
|
39
|
-
'phoneCountryCode': !runtime.exists(json, 'phoneCountryCode') ? undefined : json['phoneCountryCode'],
|
|
40
|
-
'isoCountryCode': !runtime.exists(json, 'isoCountryCode') ? undefined : json['isoCountryCode'],
|
|
41
|
-
'oauthAccountPhotos': !runtime.exists(json, 'oauthAccountPhotos') ? undefined : json['oauthAccountPhotos'],
|
|
42
|
-
'oauthEmails': !runtime.exists(json, 'oauthEmails') ? undefined : json['oauthEmails'],
|
|
43
|
-
'oauthMetadata': !runtime.exists(json, 'oauthMetadata') ? undefined : json['oauthMetadata'],
|
|
44
|
-
'previousUsers': !runtime.exists(json, 'previousUsers') ? undefined : json['previousUsers'],
|
|
45
|
-
'embeddedWalletId': !runtime.exists(json, 'embeddedWalletId') ? undefined : json['embeddedWalletId'],
|
|
46
|
-
'walletAdditionalAddresses': !runtime.exists(json, 'walletAdditionalAddresses') ? undefined : (json['walletAdditionalAddresses'].map(WalletAdditionalAddress.WalletAdditionalAddressFromJSON)),
|
|
47
|
-
'lastSelectedAt': !runtime.exists(json, 'lastSelectedAt') ? undefined : (new Date(json['lastSelectedAt'])),
|
|
48
|
-
};
|
|
49
|
-
}
|
|
50
|
-
function BaseUserVerifiedCredentialToJSON(value) {
|
|
51
|
-
if (value === undefined) {
|
|
52
|
-
return undefined;
|
|
53
|
-
}
|
|
54
|
-
if (value === null) {
|
|
55
|
-
return null;
|
|
56
|
-
}
|
|
57
|
-
return {
|
|
58
|
-
'address': value.address,
|
|
59
|
-
'chain': value.chain,
|
|
60
|
-
'refId': value.refId,
|
|
61
|
-
'signerRefId': value.signerRefId,
|
|
62
|
-
'email': value.email,
|
|
63
|
-
'id': value.id,
|
|
64
|
-
'nameService': NameServiceData.NameServiceDataToJSON(value.nameService),
|
|
65
|
-
'publicIdentifier': value.publicIdentifier,
|
|
66
|
-
'walletName': value.walletName,
|
|
67
|
-
'walletProvider': WalletProviderEnum.WalletProviderEnumToJSON(value.walletProvider),
|
|
68
|
-
'walletProperties': WalletProperties.WalletPropertiesToJSON(value.walletProperties),
|
|
69
|
-
'format': JwtVerifiedCredentialFormatEnum.JwtVerifiedCredentialFormatEnumToJSON(value.format),
|
|
70
|
-
'oauthProvider': ProviderEnum.ProviderEnumToJSON(value.oauthProvider),
|
|
71
|
-
'oauthUsername': value.oauthUsername,
|
|
72
|
-
'oauthDisplayName': value.oauthDisplayName,
|
|
73
|
-
'oauthAccountId': value.oauthAccountId,
|
|
74
|
-
'phoneNumber': value.phoneNumber,
|
|
75
|
-
'phoneCountryCode': value.phoneCountryCode,
|
|
76
|
-
'isoCountryCode': value.isoCountryCode,
|
|
77
|
-
'oauthAccountPhotos': value.oauthAccountPhotos,
|
|
78
|
-
'oauthEmails': value.oauthEmails,
|
|
79
|
-
'oauthMetadata': value.oauthMetadata,
|
|
80
|
-
'previousUsers': value.previousUsers,
|
|
81
|
-
'embeddedWalletId': value.embeddedWalletId,
|
|
82
|
-
'walletAdditionalAddresses': value.walletAdditionalAddresses === undefined ? undefined : (value.walletAdditionalAddresses.map(WalletAdditionalAddress.WalletAdditionalAddressToJSON)),
|
|
83
|
-
'lastSelectedAt': value.lastSelectedAt === undefined ? undefined : (value.lastSelectedAt.toISOString()),
|
|
84
|
-
};
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
exports.BaseUserVerifiedCredentialFromJSON = BaseUserVerifiedCredentialFromJSON;
|
|
88
|
-
exports.BaseUserVerifiedCredentialFromJSONTyped = BaseUserVerifiedCredentialFromJSONTyped;
|
|
89
|
-
exports.BaseUserVerifiedCredentialToJSON = BaseUserVerifiedCredentialToJSON;
|
|
@@ -1,183 +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 { JwtVerifiedCredentialFormatEnum } from './JwtVerifiedCredentialFormatEnum';
|
|
13
|
-
import { NameServiceData } from './NameServiceData';
|
|
14
|
-
import { ProviderEnum } from './ProviderEnum';
|
|
15
|
-
import { WalletAdditionalAddress } from './WalletAdditionalAddress';
|
|
16
|
-
import { WalletProperties } from './WalletProperties';
|
|
17
|
-
import { WalletProviderEnum } from './WalletProviderEnum';
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @export
|
|
21
|
-
* @interface BaseUserVerifiedCredential
|
|
22
|
-
*/
|
|
23
|
-
export interface BaseUserVerifiedCredential {
|
|
24
|
-
/**
|
|
25
|
-
* Valid blockchain wallet address, must be an alphanumeric string without any special characters
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof BaseUserVerifiedCredential
|
|
28
|
-
*/
|
|
29
|
-
address?: string;
|
|
30
|
-
/**
|
|
31
|
-
*
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof BaseUserVerifiedCredential
|
|
34
|
-
*/
|
|
35
|
-
chain?: string;
|
|
36
|
-
/**
|
|
37
|
-
*
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof BaseUserVerifiedCredential
|
|
40
|
-
*/
|
|
41
|
-
refId?: string;
|
|
42
|
-
/**
|
|
43
|
-
*
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @memberof BaseUserVerifiedCredential
|
|
46
|
-
*/
|
|
47
|
-
signerRefId?: string;
|
|
48
|
-
/**
|
|
49
|
-
*
|
|
50
|
-
* @type {string}
|
|
51
|
-
* @memberof BaseUserVerifiedCredential
|
|
52
|
-
*/
|
|
53
|
-
email?: string;
|
|
54
|
-
/**
|
|
55
|
-
*
|
|
56
|
-
* @type {string}
|
|
57
|
-
* @memberof BaseUserVerifiedCredential
|
|
58
|
-
*/
|
|
59
|
-
id: string;
|
|
60
|
-
/**
|
|
61
|
-
*
|
|
62
|
-
* @type {NameServiceData}
|
|
63
|
-
* @memberof BaseUserVerifiedCredential
|
|
64
|
-
*/
|
|
65
|
-
nameService?: NameServiceData;
|
|
66
|
-
/**
|
|
67
|
-
* This is used to publicly identify a verified credential in a human-friendly way. For example, this will be the email address if credential format=email.
|
|
68
|
-
* @type {string}
|
|
69
|
-
* @memberof BaseUserVerifiedCredential
|
|
70
|
-
*/
|
|
71
|
-
publicIdentifier?: string;
|
|
72
|
-
/**
|
|
73
|
-
*
|
|
74
|
-
* @type {string}
|
|
75
|
-
* @memberof BaseUserVerifiedCredential
|
|
76
|
-
*/
|
|
77
|
-
walletName?: string;
|
|
78
|
-
/**
|
|
79
|
-
*
|
|
80
|
-
* @type {WalletProviderEnum}
|
|
81
|
-
* @memberof BaseUserVerifiedCredential
|
|
82
|
-
*/
|
|
83
|
-
walletProvider?: WalletProviderEnum;
|
|
84
|
-
/**
|
|
85
|
-
*
|
|
86
|
-
* @type {WalletProperties}
|
|
87
|
-
* @memberof BaseUserVerifiedCredential
|
|
88
|
-
*/
|
|
89
|
-
walletProperties?: WalletProperties;
|
|
90
|
-
/**
|
|
91
|
-
*
|
|
92
|
-
* @type {JwtVerifiedCredentialFormatEnum}
|
|
93
|
-
* @memberof BaseUserVerifiedCredential
|
|
94
|
-
*/
|
|
95
|
-
format: JwtVerifiedCredentialFormatEnum;
|
|
96
|
-
/**
|
|
97
|
-
*
|
|
98
|
-
* @type {ProviderEnum}
|
|
99
|
-
* @memberof BaseUserVerifiedCredential
|
|
100
|
-
*/
|
|
101
|
-
oauthProvider?: ProviderEnum;
|
|
102
|
-
/**
|
|
103
|
-
*
|
|
104
|
-
* @type {string}
|
|
105
|
-
* @memberof BaseUserVerifiedCredential
|
|
106
|
-
*/
|
|
107
|
-
oauthUsername?: string;
|
|
108
|
-
/**
|
|
109
|
-
*
|
|
110
|
-
* @type {string}
|
|
111
|
-
* @memberof BaseUserVerifiedCredential
|
|
112
|
-
*/
|
|
113
|
-
oauthDisplayName?: string;
|
|
114
|
-
/**
|
|
115
|
-
*
|
|
116
|
-
* @type {string}
|
|
117
|
-
* @memberof BaseUserVerifiedCredential
|
|
118
|
-
*/
|
|
119
|
-
oauthAccountId?: string;
|
|
120
|
-
/**
|
|
121
|
-
* This field contains the phone number in the country. This could also contain the area code within a country.
|
|
122
|
-
* @type {string}
|
|
123
|
-
* @memberof BaseUserVerifiedCredential
|
|
124
|
-
*/
|
|
125
|
-
phoneNumber?: string;
|
|
126
|
-
/**
|
|
127
|
-
* This field contains the phone international country code. See https://countrycode.org/
|
|
128
|
-
* @type {string}
|
|
129
|
-
* @memberof BaseUserVerifiedCredential
|
|
130
|
-
*/
|
|
131
|
-
phoneCountryCode?: string;
|
|
132
|
-
/**
|
|
133
|
-
* ISO-3166 two-character country code. See https://en.wikipedia.org/wiki/List_of_ISO_3166_country_codes
|
|
134
|
-
* @type {string}
|
|
135
|
-
* @memberof BaseUserVerifiedCredential
|
|
136
|
-
*/
|
|
137
|
-
isoCountryCode?: string;
|
|
138
|
-
/**
|
|
139
|
-
*
|
|
140
|
-
* @type {Array<string>}
|
|
141
|
-
* @memberof BaseUserVerifiedCredential
|
|
142
|
-
*/
|
|
143
|
-
oauthAccountPhotos?: Array<string>;
|
|
144
|
-
/**
|
|
145
|
-
*
|
|
146
|
-
* @type {Array<string>}
|
|
147
|
-
* @memberof BaseUserVerifiedCredential
|
|
148
|
-
*/
|
|
149
|
-
oauthEmails?: Array<string>;
|
|
150
|
-
/**
|
|
151
|
-
* This object contains JSON metadata for a social-based verified credential. It may contain data about the user that does not fit into the other structured fields, and could include arbitrary fields about the user from the oauth provider's API.
|
|
152
|
-
* @type {object}
|
|
153
|
-
* @memberof BaseUserVerifiedCredential
|
|
154
|
-
*/
|
|
155
|
-
oauthMetadata?: object;
|
|
156
|
-
/**
|
|
157
|
-
* This will only be provided in the responses for GET /users/{userId}.Previous user IDs that owned this verified credential and was tranfered to the current user ID.
|
|
158
|
-
* @type {Array<string>}
|
|
159
|
-
* @memberof BaseUserVerifiedCredential
|
|
160
|
-
*/
|
|
161
|
-
previousUsers?: Array<string>;
|
|
162
|
-
/**
|
|
163
|
-
*
|
|
164
|
-
* @type {string}
|
|
165
|
-
* @memberof BaseUserVerifiedCredential
|
|
166
|
-
*/
|
|
167
|
-
embeddedWalletId?: string | null;
|
|
168
|
-
/**
|
|
169
|
-
*
|
|
170
|
-
* @type {Array<WalletAdditionalAddress>}
|
|
171
|
-
* @memberof BaseUserVerifiedCredential
|
|
172
|
-
*/
|
|
173
|
-
walletAdditionalAddresses?: Array<WalletAdditionalAddress>;
|
|
174
|
-
/**
|
|
175
|
-
* This timestamp indicates the last time this verified wallet was either connected to the user account or selected to become the primary wallet on the account.
|
|
176
|
-
* @type {Date}
|
|
177
|
-
* @memberof BaseUserVerifiedCredential
|
|
178
|
-
*/
|
|
179
|
-
lastSelectedAt?: Date;
|
|
180
|
-
}
|
|
181
|
-
export declare function BaseUserVerifiedCredentialFromJSON(json: any): BaseUserVerifiedCredential;
|
|
182
|
-
export declare function BaseUserVerifiedCredentialFromJSONTyped(json: any, ignoreDiscriminator: boolean): BaseUserVerifiedCredential;
|
|
183
|
-
export declare function BaseUserVerifiedCredentialToJSON(value?: BaseUserVerifiedCredential | null): any;
|
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
import { exists } from '../runtime.js';
|
|
2
|
-
import { JwtVerifiedCredentialFormatEnumFromJSON, JwtVerifiedCredentialFormatEnumToJSON } from './JwtVerifiedCredentialFormatEnum.js';
|
|
3
|
-
import { NameServiceDataFromJSON, NameServiceDataToJSON } from './NameServiceData.js';
|
|
4
|
-
import { ProviderEnumFromJSON, ProviderEnumToJSON } from './ProviderEnum.js';
|
|
5
|
-
import { WalletAdditionalAddressFromJSON, WalletAdditionalAddressToJSON } from './WalletAdditionalAddress.js';
|
|
6
|
-
import { WalletPropertiesFromJSON, WalletPropertiesToJSON } from './WalletProperties.js';
|
|
7
|
-
import { WalletProviderEnumFromJSON, WalletProviderEnumToJSON } from './WalletProviderEnum.js';
|
|
8
|
-
|
|
9
|
-
/* tslint:disable */
|
|
10
|
-
function BaseUserVerifiedCredentialFromJSON(json) {
|
|
11
|
-
return BaseUserVerifiedCredentialFromJSONTyped(json);
|
|
12
|
-
}
|
|
13
|
-
function BaseUserVerifiedCredentialFromJSONTyped(json, ignoreDiscriminator) {
|
|
14
|
-
if ((json === undefined) || (json === null)) {
|
|
15
|
-
return json;
|
|
16
|
-
}
|
|
17
|
-
return {
|
|
18
|
-
'address': !exists(json, 'address') ? undefined : json['address'],
|
|
19
|
-
'chain': !exists(json, 'chain') ? undefined : json['chain'],
|
|
20
|
-
'refId': !exists(json, 'refId') ? undefined : json['refId'],
|
|
21
|
-
'signerRefId': !exists(json, 'signerRefId') ? undefined : json['signerRefId'],
|
|
22
|
-
'email': !exists(json, 'email') ? undefined : json['email'],
|
|
23
|
-
'id': json['id'],
|
|
24
|
-
'nameService': !exists(json, 'nameService') ? undefined : NameServiceDataFromJSON(json['nameService']),
|
|
25
|
-
'publicIdentifier': !exists(json, 'publicIdentifier') ? undefined : json['publicIdentifier'],
|
|
26
|
-
'walletName': !exists(json, 'walletName') ? undefined : json['walletName'],
|
|
27
|
-
'walletProvider': !exists(json, 'walletProvider') ? undefined : WalletProviderEnumFromJSON(json['walletProvider']),
|
|
28
|
-
'walletProperties': !exists(json, 'walletProperties') ? undefined : WalletPropertiesFromJSON(json['walletProperties']),
|
|
29
|
-
'format': JwtVerifiedCredentialFormatEnumFromJSON(json['format']),
|
|
30
|
-
'oauthProvider': !exists(json, 'oauthProvider') ? undefined : ProviderEnumFromJSON(json['oauthProvider']),
|
|
31
|
-
'oauthUsername': !exists(json, 'oauthUsername') ? undefined : json['oauthUsername'],
|
|
32
|
-
'oauthDisplayName': !exists(json, 'oauthDisplayName') ? undefined : json['oauthDisplayName'],
|
|
33
|
-
'oauthAccountId': !exists(json, 'oauthAccountId') ? undefined : json['oauthAccountId'],
|
|
34
|
-
'phoneNumber': !exists(json, 'phoneNumber') ? undefined : json['phoneNumber'],
|
|
35
|
-
'phoneCountryCode': !exists(json, 'phoneCountryCode') ? undefined : json['phoneCountryCode'],
|
|
36
|
-
'isoCountryCode': !exists(json, 'isoCountryCode') ? undefined : json['isoCountryCode'],
|
|
37
|
-
'oauthAccountPhotos': !exists(json, 'oauthAccountPhotos') ? undefined : json['oauthAccountPhotos'],
|
|
38
|
-
'oauthEmails': !exists(json, 'oauthEmails') ? undefined : json['oauthEmails'],
|
|
39
|
-
'oauthMetadata': !exists(json, 'oauthMetadata') ? undefined : json['oauthMetadata'],
|
|
40
|
-
'previousUsers': !exists(json, 'previousUsers') ? undefined : json['previousUsers'],
|
|
41
|
-
'embeddedWalletId': !exists(json, 'embeddedWalletId') ? undefined : json['embeddedWalletId'],
|
|
42
|
-
'walletAdditionalAddresses': !exists(json, 'walletAdditionalAddresses') ? undefined : (json['walletAdditionalAddresses'].map(WalletAdditionalAddressFromJSON)),
|
|
43
|
-
'lastSelectedAt': !exists(json, 'lastSelectedAt') ? undefined : (new Date(json['lastSelectedAt'])),
|
|
44
|
-
};
|
|
45
|
-
}
|
|
46
|
-
function BaseUserVerifiedCredentialToJSON(value) {
|
|
47
|
-
if (value === undefined) {
|
|
48
|
-
return undefined;
|
|
49
|
-
}
|
|
50
|
-
if (value === null) {
|
|
51
|
-
return null;
|
|
52
|
-
}
|
|
53
|
-
return {
|
|
54
|
-
'address': value.address,
|
|
55
|
-
'chain': value.chain,
|
|
56
|
-
'refId': value.refId,
|
|
57
|
-
'signerRefId': value.signerRefId,
|
|
58
|
-
'email': value.email,
|
|
59
|
-
'id': value.id,
|
|
60
|
-
'nameService': NameServiceDataToJSON(value.nameService),
|
|
61
|
-
'publicIdentifier': value.publicIdentifier,
|
|
62
|
-
'walletName': value.walletName,
|
|
63
|
-
'walletProvider': WalletProviderEnumToJSON(value.walletProvider),
|
|
64
|
-
'walletProperties': WalletPropertiesToJSON(value.walletProperties),
|
|
65
|
-
'format': JwtVerifiedCredentialFormatEnumToJSON(value.format),
|
|
66
|
-
'oauthProvider': ProviderEnumToJSON(value.oauthProvider),
|
|
67
|
-
'oauthUsername': value.oauthUsername,
|
|
68
|
-
'oauthDisplayName': value.oauthDisplayName,
|
|
69
|
-
'oauthAccountId': value.oauthAccountId,
|
|
70
|
-
'phoneNumber': value.phoneNumber,
|
|
71
|
-
'phoneCountryCode': value.phoneCountryCode,
|
|
72
|
-
'isoCountryCode': value.isoCountryCode,
|
|
73
|
-
'oauthAccountPhotos': value.oauthAccountPhotos,
|
|
74
|
-
'oauthEmails': value.oauthEmails,
|
|
75
|
-
'oauthMetadata': value.oauthMetadata,
|
|
76
|
-
'previousUsers': value.previousUsers,
|
|
77
|
-
'embeddedWalletId': value.embeddedWalletId,
|
|
78
|
-
'walletAdditionalAddresses': value.walletAdditionalAddresses === undefined ? undefined : (value.walletAdditionalAddresses.map(WalletAdditionalAddressToJSON)),
|
|
79
|
-
'lastSelectedAt': value.lastSelectedAt === undefined ? undefined : (value.lastSelectedAt.toISOString()),
|
|
80
|
-
};
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
export { BaseUserVerifiedCredentialFromJSON, BaseUserVerifiedCredentialFromJSONTyped, BaseUserVerifiedCredentialToJSON };
|