@dynamic-labs/sdk-api 0.0.1022 → 0.0.1024
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/UnprocessableEntityErrorCode.cjs +1 -1
- package/src/models/UnprocessableEntityErrorCode.d.ts +2 -2
- package/src/models/UnprocessableEntityErrorCode.js +1 -1
- package/src/models/UserSessionAndCredentials.cjs +44 -0
- package/src/models/UserSessionAndCredentials.d.ts +61 -0
- package/src/models/UserSessionAndCredentials.js +38 -0
- package/src/models/UserSessionAndCredentialsAllOf.cjs +33 -0
- package/src/models/UserSessionAndCredentialsAllOf.d.ts +29 -0
- package/src/models/UserSessionAndCredentialsAllOf.js +27 -0
- package/src/models/index.d.ts +2 -0
package/package.json
CHANGED
package/src/index.cjs
CHANGED
|
@@ -697,6 +697,8 @@ var UserOauthAccessTokenResponse = require('./models/UserOauthAccessTokenRespons
|
|
|
697
697
|
var UserPasskey = require('./models/UserPasskey.cjs');
|
|
698
698
|
var UserResponse = require('./models/UserResponse.cjs');
|
|
699
699
|
var UserSearchFilterParams = require('./models/UserSearchFilterParams.cjs');
|
|
700
|
+
var UserSessionAndCredentials = require('./models/UserSessionAndCredentials.cjs');
|
|
701
|
+
var UserSessionAndCredentialsAllOf = require('./models/UserSessionAndCredentialsAllOf.cjs');
|
|
700
702
|
var UserVerificationRequirement = require('./models/UserVerificationRequirement.cjs');
|
|
701
703
|
var UserWalletSelectionRequest = require('./models/UserWalletSelectionRequest.cjs');
|
|
702
704
|
var UserWalletsResponse = require('./models/UserWalletsResponse.cjs');
|
|
@@ -3252,6 +3254,12 @@ exports.UserResponseToJSON = UserResponse.UserResponseToJSON;
|
|
|
3252
3254
|
exports.UserSearchFilterParamsFromJSON = UserSearchFilterParams.UserSearchFilterParamsFromJSON;
|
|
3253
3255
|
exports.UserSearchFilterParamsFromJSONTyped = UserSearchFilterParams.UserSearchFilterParamsFromJSONTyped;
|
|
3254
3256
|
exports.UserSearchFilterParamsToJSON = UserSearchFilterParams.UserSearchFilterParamsToJSON;
|
|
3257
|
+
exports.UserSessionAndCredentialsFromJSON = UserSessionAndCredentials.UserSessionAndCredentialsFromJSON;
|
|
3258
|
+
exports.UserSessionAndCredentialsFromJSONTyped = UserSessionAndCredentials.UserSessionAndCredentialsFromJSONTyped;
|
|
3259
|
+
exports.UserSessionAndCredentialsToJSON = UserSessionAndCredentials.UserSessionAndCredentialsToJSON;
|
|
3260
|
+
exports.UserSessionAndCredentialsAllOfFromJSON = UserSessionAndCredentialsAllOf.UserSessionAndCredentialsAllOfFromJSON;
|
|
3261
|
+
exports.UserSessionAndCredentialsAllOfFromJSONTyped = UserSessionAndCredentialsAllOf.UserSessionAndCredentialsAllOfFromJSONTyped;
|
|
3262
|
+
exports.UserSessionAndCredentialsAllOfToJSON = UserSessionAndCredentialsAllOf.UserSessionAndCredentialsAllOfToJSON;
|
|
3255
3263
|
Object.defineProperty(exports, 'UserVerificationRequirement', {
|
|
3256
3264
|
enumerable: true,
|
|
3257
3265
|
get: function () { return UserVerificationRequirement.UserVerificationRequirement; }
|
package/src/index.js
CHANGED
|
@@ -693,6 +693,8 @@ export { UserOauthAccessTokenResponseFromJSON, UserOauthAccessTokenResponseFromJ
|
|
|
693
693
|
export { UserPasskeyFromJSON, UserPasskeyFromJSONTyped, UserPasskeyToJSON } from './models/UserPasskey.js';
|
|
694
694
|
export { UserResponseFromJSON, UserResponseFromJSONTyped, UserResponseToJSON } from './models/UserResponse.js';
|
|
695
695
|
export { UserSearchFilterParamsFromJSON, UserSearchFilterParamsFromJSONTyped, UserSearchFilterParamsToJSON } from './models/UserSearchFilterParams.js';
|
|
696
|
+
export { UserSessionAndCredentialsFromJSON, UserSessionAndCredentialsFromJSONTyped, UserSessionAndCredentialsToJSON } from './models/UserSessionAndCredentials.js';
|
|
697
|
+
export { UserSessionAndCredentialsAllOfFromJSON, UserSessionAndCredentialsAllOfFromJSONTyped, UserSessionAndCredentialsAllOfToJSON } from './models/UserSessionAndCredentialsAllOf.js';
|
|
696
698
|
export { UserVerificationRequirement, UserVerificationRequirementFromJSON, UserVerificationRequirementFromJSONTyped, UserVerificationRequirementToJSON } from './models/UserVerificationRequirement.js';
|
|
697
699
|
export { UserWalletSelectionRequestFromJSON, UserWalletSelectionRequestFromJSONTyped, UserWalletSelectionRequestToJSON } from './models/UserWalletSelectionRequest.js';
|
|
698
700
|
export { UserWalletsResponseFromJSON, UserWalletsResponseFromJSONTyped, UserWalletsResponseToJSON } from './models/UserWalletsResponse.js';
|
|
@@ -143,8 +143,8 @@ exports.UnprocessableEntityErrorCode = void 0;
|
|
|
143
143
|
UnprocessableEntityErrorCode["CannotDeletePasskeyLinkedToEmbeddedWallet"] = "cannot_delete_passkey_linked_to_embedded_wallet";
|
|
144
144
|
UnprocessableEntityErrorCode["CannotDeleteLastSignInVerifiedCredential"] = "cannot_delete_last_sign_in_verified_credential";
|
|
145
145
|
UnprocessableEntityErrorCode["CredentialNotEnabledForSignIn"] = "credential_not_enabled_for_sign_in";
|
|
146
|
-
UnprocessableEntityErrorCode["ShareSetIdRequired"] = "share_set_id_required";
|
|
147
146
|
UnprocessableEntityErrorCode["UnsupportedChain"] = "unsupported_chain";
|
|
147
|
+
UnprocessableEntityErrorCode["ShareSetIdRequired"] = "share_set_id_required";
|
|
148
148
|
})(exports.UnprocessableEntityErrorCode || (exports.UnprocessableEntityErrorCode = {}));
|
|
149
149
|
function UnprocessableEntityErrorCodeFromJSON(json) {
|
|
150
150
|
return UnprocessableEntityErrorCodeFromJSONTyped(json);
|
|
@@ -136,8 +136,8 @@ export declare enum UnprocessableEntityErrorCode {
|
|
|
136
136
|
CannotDeletePasskeyLinkedToEmbeddedWallet = "cannot_delete_passkey_linked_to_embedded_wallet",
|
|
137
137
|
CannotDeleteLastSignInVerifiedCredential = "cannot_delete_last_sign_in_verified_credential",
|
|
138
138
|
CredentialNotEnabledForSignIn = "credential_not_enabled_for_sign_in",
|
|
139
|
-
|
|
140
|
-
|
|
139
|
+
UnsupportedChain = "unsupported_chain",
|
|
140
|
+
ShareSetIdRequired = "share_set_id_required"
|
|
141
141
|
}
|
|
142
142
|
export declare function UnprocessableEntityErrorCodeFromJSON(json: any): UnprocessableEntityErrorCode;
|
|
143
143
|
export declare function UnprocessableEntityErrorCodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnprocessableEntityErrorCode;
|
|
@@ -139,8 +139,8 @@ var UnprocessableEntityErrorCode;
|
|
|
139
139
|
UnprocessableEntityErrorCode["CannotDeletePasskeyLinkedToEmbeddedWallet"] = "cannot_delete_passkey_linked_to_embedded_wallet";
|
|
140
140
|
UnprocessableEntityErrorCode["CannotDeleteLastSignInVerifiedCredential"] = "cannot_delete_last_sign_in_verified_credential";
|
|
141
141
|
UnprocessableEntityErrorCode["CredentialNotEnabledForSignIn"] = "credential_not_enabled_for_sign_in";
|
|
142
|
-
UnprocessableEntityErrorCode["ShareSetIdRequired"] = "share_set_id_required";
|
|
143
142
|
UnprocessableEntityErrorCode["UnsupportedChain"] = "unsupported_chain";
|
|
143
|
+
UnprocessableEntityErrorCode["ShareSetIdRequired"] = "share_set_id_required";
|
|
144
144
|
})(UnprocessableEntityErrorCode || (UnprocessableEntityErrorCode = {}));
|
|
145
145
|
function UnprocessableEntityErrorCodeFromJSON(json) {
|
|
146
146
|
return UnprocessableEntityErrorCodeFromJSONTyped(json);
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var runtime = require('../runtime.cjs');
|
|
6
|
+
var JwtVerifiedCredential = require('./JwtVerifiedCredential.cjs');
|
|
7
|
+
|
|
8
|
+
/* tslint:disable */
|
|
9
|
+
function UserSessionAndCredentialsFromJSON(json) {
|
|
10
|
+
return UserSessionAndCredentialsFromJSONTyped(json);
|
|
11
|
+
}
|
|
12
|
+
function UserSessionAndCredentialsFromJSONTyped(json, ignoreDiscriminator) {
|
|
13
|
+
if ((json === undefined) || (json === null)) {
|
|
14
|
+
return json;
|
|
15
|
+
}
|
|
16
|
+
return {
|
|
17
|
+
'id': !runtime.exists(json, 'id') ? undefined : json['id'],
|
|
18
|
+
'createdAt': !runtime.exists(json, 'createdAt') ? undefined : (new Date(json['createdAt'])),
|
|
19
|
+
'ipAddress': !runtime.exists(json, 'ipAddress') ? undefined : json['ipAddress'],
|
|
20
|
+
'userAgent': !runtime.exists(json, 'userAgent') ? undefined : json['userAgent'],
|
|
21
|
+
'revokedAt': !runtime.exists(json, 'revokedAt') ? undefined : (json['revokedAt'] === null ? null : new Date(json['revokedAt'])),
|
|
22
|
+
'verifiedCredentials': (json['verifiedCredentials'].map(JwtVerifiedCredential.JwtVerifiedCredentialFromJSON)),
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
function UserSessionAndCredentialsToJSON(value) {
|
|
26
|
+
if (value === undefined) {
|
|
27
|
+
return undefined;
|
|
28
|
+
}
|
|
29
|
+
if (value === null) {
|
|
30
|
+
return null;
|
|
31
|
+
}
|
|
32
|
+
return {
|
|
33
|
+
'id': value.id,
|
|
34
|
+
'createdAt': value.createdAt === undefined ? undefined : (value.createdAt.toISOString()),
|
|
35
|
+
'ipAddress': value.ipAddress,
|
|
36
|
+
'userAgent': value.userAgent,
|
|
37
|
+
'revokedAt': value.revokedAt === undefined ? undefined : (value.revokedAt === null ? null : value.revokedAt.toISOString()),
|
|
38
|
+
'verifiedCredentials': (value.verifiedCredentials.map(JwtVerifiedCredential.JwtVerifiedCredentialToJSON)),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
exports.UserSessionAndCredentialsFromJSON = UserSessionAndCredentialsFromJSON;
|
|
43
|
+
exports.UserSessionAndCredentialsFromJSONTyped = UserSessionAndCredentialsFromJSONTyped;
|
|
44
|
+
exports.UserSessionAndCredentialsToJSON = UserSessionAndCredentialsToJSON;
|
|
@@ -0,0 +1,61 @@
|
|
|
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 { JwtVerifiedCredential } from './JwtVerifiedCredential';
|
|
13
|
+
/**
|
|
14
|
+
* Payload of the `user.session.created` webhook event. Extends `Session`
|
|
15
|
+
* with the user's verified credentials at session-create time so consumers
|
|
16
|
+
* can attribute the login without a follow-up API call.
|
|
17
|
+
* @export
|
|
18
|
+
* @interface UserSessionAndCredentials
|
|
19
|
+
*/
|
|
20
|
+
export interface UserSessionAndCredentials {
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof UserSessionAndCredentials
|
|
25
|
+
*/
|
|
26
|
+
id?: string;
|
|
27
|
+
/**
|
|
28
|
+
* ISO 8601 timestamp of when the session was created
|
|
29
|
+
* @type {Date}
|
|
30
|
+
* @memberof UserSessionAndCredentials
|
|
31
|
+
*/
|
|
32
|
+
createdAt?: Date;
|
|
33
|
+
/**
|
|
34
|
+
* IP address of the client that initiated the session
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof UserSessionAndCredentials
|
|
37
|
+
*/
|
|
38
|
+
ipAddress?: string | null;
|
|
39
|
+
/**
|
|
40
|
+
* User-Agent string of the client that initiated the session
|
|
41
|
+
* @type {string}
|
|
42
|
+
* @memberof UserSessionAndCredentials
|
|
43
|
+
*/
|
|
44
|
+
userAgent?: string | null;
|
|
45
|
+
/**
|
|
46
|
+
* ISO 8601 timestamp of when the session was revoked, or null if still active
|
|
47
|
+
* @type {Date}
|
|
48
|
+
* @memberof UserSessionAndCredentials
|
|
49
|
+
*/
|
|
50
|
+
revokedAt?: Date | null;
|
|
51
|
+
/**
|
|
52
|
+
* All verified credentials (wallets, emails, phone numbers, social
|
|
53
|
+
* accounts) linked to the user at the time the session was created.
|
|
54
|
+
* @type {Array<JwtVerifiedCredential>}
|
|
55
|
+
* @memberof UserSessionAndCredentials
|
|
56
|
+
*/
|
|
57
|
+
verifiedCredentials: Array<JwtVerifiedCredential>;
|
|
58
|
+
}
|
|
59
|
+
export declare function UserSessionAndCredentialsFromJSON(json: any): UserSessionAndCredentials;
|
|
60
|
+
export declare function UserSessionAndCredentialsFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserSessionAndCredentials;
|
|
61
|
+
export declare function UserSessionAndCredentialsToJSON(value?: UserSessionAndCredentials | null): any;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { exists } from '../runtime.js';
|
|
2
|
+
import { JwtVerifiedCredentialFromJSON, JwtVerifiedCredentialToJSON } from './JwtVerifiedCredential.js';
|
|
3
|
+
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
function UserSessionAndCredentialsFromJSON(json) {
|
|
6
|
+
return UserSessionAndCredentialsFromJSONTyped(json);
|
|
7
|
+
}
|
|
8
|
+
function UserSessionAndCredentialsFromJSONTyped(json, ignoreDiscriminator) {
|
|
9
|
+
if ((json === undefined) || (json === null)) {
|
|
10
|
+
return json;
|
|
11
|
+
}
|
|
12
|
+
return {
|
|
13
|
+
'id': !exists(json, 'id') ? undefined : json['id'],
|
|
14
|
+
'createdAt': !exists(json, 'createdAt') ? undefined : (new Date(json['createdAt'])),
|
|
15
|
+
'ipAddress': !exists(json, 'ipAddress') ? undefined : json['ipAddress'],
|
|
16
|
+
'userAgent': !exists(json, 'userAgent') ? undefined : json['userAgent'],
|
|
17
|
+
'revokedAt': !exists(json, 'revokedAt') ? undefined : (json['revokedAt'] === null ? null : new Date(json['revokedAt'])),
|
|
18
|
+
'verifiedCredentials': (json['verifiedCredentials'].map(JwtVerifiedCredentialFromJSON)),
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
function UserSessionAndCredentialsToJSON(value) {
|
|
22
|
+
if (value === undefined) {
|
|
23
|
+
return undefined;
|
|
24
|
+
}
|
|
25
|
+
if (value === null) {
|
|
26
|
+
return null;
|
|
27
|
+
}
|
|
28
|
+
return {
|
|
29
|
+
'id': value.id,
|
|
30
|
+
'createdAt': value.createdAt === undefined ? undefined : (value.createdAt.toISOString()),
|
|
31
|
+
'ipAddress': value.ipAddress,
|
|
32
|
+
'userAgent': value.userAgent,
|
|
33
|
+
'revokedAt': value.revokedAt === undefined ? undefined : (value.revokedAt === null ? null : value.revokedAt.toISOString()),
|
|
34
|
+
'verifiedCredentials': (value.verifiedCredentials.map(JwtVerifiedCredentialToJSON)),
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export { UserSessionAndCredentialsFromJSON, UserSessionAndCredentialsFromJSONTyped, UserSessionAndCredentialsToJSON };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var JwtVerifiedCredential = require('./JwtVerifiedCredential.cjs');
|
|
6
|
+
|
|
7
|
+
/* tslint:disable */
|
|
8
|
+
function UserSessionAndCredentialsAllOfFromJSON(json) {
|
|
9
|
+
return UserSessionAndCredentialsAllOfFromJSONTyped(json);
|
|
10
|
+
}
|
|
11
|
+
function UserSessionAndCredentialsAllOfFromJSONTyped(json, ignoreDiscriminator) {
|
|
12
|
+
if ((json === undefined) || (json === null)) {
|
|
13
|
+
return json;
|
|
14
|
+
}
|
|
15
|
+
return {
|
|
16
|
+
'verifiedCredentials': (json['verifiedCredentials'].map(JwtVerifiedCredential.JwtVerifiedCredentialFromJSON)),
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
function UserSessionAndCredentialsAllOfToJSON(value) {
|
|
20
|
+
if (value === undefined) {
|
|
21
|
+
return undefined;
|
|
22
|
+
}
|
|
23
|
+
if (value === null) {
|
|
24
|
+
return null;
|
|
25
|
+
}
|
|
26
|
+
return {
|
|
27
|
+
'verifiedCredentials': (value.verifiedCredentials.map(JwtVerifiedCredential.JwtVerifiedCredentialToJSON)),
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
exports.UserSessionAndCredentialsAllOfFromJSON = UserSessionAndCredentialsAllOfFromJSON;
|
|
32
|
+
exports.UserSessionAndCredentialsAllOfFromJSONTyped = UserSessionAndCredentialsAllOfFromJSONTyped;
|
|
33
|
+
exports.UserSessionAndCredentialsAllOfToJSON = UserSessionAndCredentialsAllOfToJSON;
|
|
@@ -0,0 +1,29 @@
|
|
|
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 { JwtVerifiedCredential } from './JwtVerifiedCredential';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface UserSessionAndCredentialsAllOf
|
|
17
|
+
*/
|
|
18
|
+
export interface UserSessionAndCredentialsAllOf {
|
|
19
|
+
/**
|
|
20
|
+
* All verified credentials (wallets, emails, phone numbers, social
|
|
21
|
+
* accounts) linked to the user at the time the session was created.
|
|
22
|
+
* @type {Array<JwtVerifiedCredential>}
|
|
23
|
+
* @memberof UserSessionAndCredentialsAllOf
|
|
24
|
+
*/
|
|
25
|
+
verifiedCredentials: Array<JwtVerifiedCredential>;
|
|
26
|
+
}
|
|
27
|
+
export declare function UserSessionAndCredentialsAllOfFromJSON(json: any): UserSessionAndCredentialsAllOf;
|
|
28
|
+
export declare function UserSessionAndCredentialsAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserSessionAndCredentialsAllOf;
|
|
29
|
+
export declare function UserSessionAndCredentialsAllOfToJSON(value?: UserSessionAndCredentialsAllOf | null): any;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { JwtVerifiedCredentialFromJSON, JwtVerifiedCredentialToJSON } from './JwtVerifiedCredential.js';
|
|
2
|
+
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
function UserSessionAndCredentialsAllOfFromJSON(json) {
|
|
5
|
+
return UserSessionAndCredentialsAllOfFromJSONTyped(json);
|
|
6
|
+
}
|
|
7
|
+
function UserSessionAndCredentialsAllOfFromJSONTyped(json, ignoreDiscriminator) {
|
|
8
|
+
if ((json === undefined) || (json === null)) {
|
|
9
|
+
return json;
|
|
10
|
+
}
|
|
11
|
+
return {
|
|
12
|
+
'verifiedCredentials': (json['verifiedCredentials'].map(JwtVerifiedCredentialFromJSON)),
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
function UserSessionAndCredentialsAllOfToJSON(value) {
|
|
16
|
+
if (value === undefined) {
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
if (value === null) {
|
|
20
|
+
return null;
|
|
21
|
+
}
|
|
22
|
+
return {
|
|
23
|
+
'verifiedCredentials': (value.verifiedCredentials.map(JwtVerifiedCredentialToJSON)),
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export { UserSessionAndCredentialsAllOfFromJSON, UserSessionAndCredentialsAllOfFromJSONTyped, UserSessionAndCredentialsAllOfToJSON };
|
package/src/models/index.d.ts
CHANGED
|
@@ -649,6 +649,8 @@ export * from './UserOauthAccessTokenResponse';
|
|
|
649
649
|
export * from './UserPasskey';
|
|
650
650
|
export * from './UserResponse';
|
|
651
651
|
export * from './UserSearchFilterParams';
|
|
652
|
+
export * from './UserSessionAndCredentials';
|
|
653
|
+
export * from './UserSessionAndCredentialsAllOf';
|
|
652
654
|
export * from './UserVerificationRequirement';
|
|
653
655
|
export * from './UserWalletSelectionRequest';
|
|
654
656
|
export * from './UserWalletsResponse';
|