@dynamic-labs/sdk-api-core 0.0.516 → 0.0.518
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 +213 -0
- package/src/apis/SDKApi.d.ts +69 -1
- package/src/apis/SDKApi.js +213 -0
- package/src/index.cjs +108 -0
- package/src/index.js +22 -0
- package/src/models/AttestationConveyancePreference.cjs +42 -0
- package/src/models/AttestationConveyancePreference.d.ts +25 -0
- package/src/models/AttestationConveyancePreference.js +36 -0
- package/src/models/AuthenticationExtensionsClientInputs.cjs +37 -0
- package/src/models/AuthenticationExtensionsClientInputs.d.ts +39 -0
- package/src/models/AuthenticationExtensionsClientInputs.js +31 -0
- package/src/models/AuthenticationExtensionsClientOutputs.cjs +37 -0
- package/src/models/AuthenticationExtensionsClientOutputs.d.ts +39 -0
- package/src/models/AuthenticationExtensionsClientOutputs.js +31 -0
- package/src/models/AuthenticatorAssertionResponse.cjs +39 -0
- package/src/models/AuthenticatorAssertionResponse.d.ts +45 -0
- package/src/models/AuthenticatorAssertionResponse.js +33 -0
- package/src/models/AuthenticatorAttachment.cjs +40 -0
- package/src/models/AuthenticatorAttachment.d.ts +23 -0
- package/src/models/AuthenticatorAttachment.js +34 -0
- package/src/models/AuthenticatorAttestationResponse.cjs +41 -0
- package/src/models/AuthenticatorAttestationResponse.d.ts +51 -0
- package/src/models/AuthenticatorAttestationResponse.js +35 -0
- package/src/models/AuthenticatorSelectionCriteria.cjs +42 -0
- package/src/models/AuthenticatorSelectionCriteria.d.ts +48 -0
- package/src/models/AuthenticatorSelectionCriteria.js +36 -0
- package/src/models/MFAAuthPasskeyDeviceGetResponse.cjs +38 -0
- package/src/models/MFAAuthPasskeyDeviceGetResponse.d.ts +41 -0
- package/src/models/MFAAuthPasskeyDeviceGetResponse.js +32 -0
- package/src/models/MFAAuthPasskeyDeviceGetResponseAttestation.cjs +46 -0
- package/src/models/MFAAuthPasskeyDeviceGetResponseAttestation.d.ts +60 -0
- package/src/models/MFAAuthPasskeyDeviceGetResponseAttestation.js +40 -0
- package/src/models/MFAAuthPasskeyDevicePostRequest.cjs +35 -0
- package/src/models/MFAAuthPasskeyDevicePostRequest.d.ts +34 -0
- package/src/models/MFAAuthPasskeyDevicePostRequest.js +29 -0
- package/src/models/MFADeviceType.cjs +1 -0
- package/src/models/MFADeviceType.d.ts +2 -1
- package/src/models/MFADeviceType.js +1 -0
- package/src/models/MFARegisterPasskeyDeviceGetResponse.cjs +38 -0
- package/src/models/MFARegisterPasskeyDeviceGetResponse.d.ts +41 -0
- package/src/models/MFARegisterPasskeyDeviceGetResponse.js +32 -0
- package/src/models/MFARegisterPasskeyDeviceGetResponseRegistration.cjs +56 -0
- package/src/models/MFARegisterPasskeyDeviceGetResponseRegistration.d.ts +82 -0
- package/src/models/MFARegisterPasskeyDeviceGetResponseRegistration.js +50 -0
- package/src/models/MFARegisterPasskeyDevicePostRequest.cjs +35 -0
- package/src/models/MFARegisterPasskeyDevicePostRequest.d.ts +34 -0
- package/src/models/MFARegisterPasskeyDevicePostRequest.js +29 -0
- package/src/models/PasskeyRegisterVerifyRequest.cjs +47 -0
- package/src/models/PasskeyRegisterVerifyRequest.d.ts +61 -0
- package/src/models/PasskeyRegisterVerifyRequest.js +41 -0
- package/src/models/PasskeyVerifyRequest.cjs +47 -0
- package/src/models/PasskeyVerifyRequest.d.ts +61 -0
- package/src/models/PasskeyVerifyRequest.js +41 -0
- package/src/models/PublicKeyCredentialDescriptor.cjs +35 -0
- package/src/models/PublicKeyCredentialDescriptor.d.ts +34 -0
- package/src/models/PublicKeyCredentialDescriptor.js +29 -0
- package/src/models/PublicKeyCredentialParameters.cjs +35 -0
- package/src/models/PublicKeyCredentialParameters.d.ts +34 -0
- package/src/models/PublicKeyCredentialParameters.js +29 -0
- package/src/models/PublicKeyCredentialRpEntity.cjs +35 -0
- package/src/models/PublicKeyCredentialRpEntity.d.ts +33 -0
- package/src/models/PublicKeyCredentialRpEntity.js +29 -0
- package/src/models/PublicKeyCredentialType.cjs +39 -0
- package/src/models/PublicKeyCredentialType.d.ts +22 -0
- package/src/models/PublicKeyCredentialType.js +33 -0
- package/src/models/PublicKeyCredentialUserEntity.cjs +47 -0
- package/src/models/PublicKeyCredentialUserEntity.d.ts +39 -0
- package/src/models/PublicKeyCredentialUserEntity.js +41 -0
- package/src/models/ResidentKeyRequirement.cjs +41 -0
- package/src/models/ResidentKeyRequirement.d.ts +24 -0
- package/src/models/ResidentKeyRequirement.js +35 -0
- package/src/models/UserVerificationRequirement.cjs +41 -0
- package/src/models/UserVerificationRequirement.d.ts +24 -0
- package/src/models/UserVerificationRequirement.js +35 -0
- package/src/models/index.d.ts +22 -0
|
@@ -0,0 +1,33 @@
|
|
|
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 PublicKeyCredentialType;
|
|
20
|
+
(function (PublicKeyCredentialType) {
|
|
21
|
+
PublicKeyCredentialType["PublicKey"] = "public-key";
|
|
22
|
+
})(PublicKeyCredentialType || (PublicKeyCredentialType = {}));
|
|
23
|
+
function PublicKeyCredentialTypeFromJSON(json) {
|
|
24
|
+
return PublicKeyCredentialTypeFromJSONTyped(json);
|
|
25
|
+
}
|
|
26
|
+
function PublicKeyCredentialTypeFromJSONTyped(json, ignoreDiscriminator) {
|
|
27
|
+
return json;
|
|
28
|
+
}
|
|
29
|
+
function PublicKeyCredentialTypeToJSON(value) {
|
|
30
|
+
return value;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export { PublicKeyCredentialType, PublicKeyCredentialTypeFromJSON, PublicKeyCredentialTypeFromJSONTyped, PublicKeyCredentialTypeToJSON };
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
/* tslint:disable */
|
|
6
|
+
/* eslint-disable */
|
|
7
|
+
/**
|
|
8
|
+
* Dashboard API
|
|
9
|
+
* Dashboard API documentation
|
|
10
|
+
*
|
|
11
|
+
* The version of the OpenAPI document: 1.0.0
|
|
12
|
+
*
|
|
13
|
+
*
|
|
14
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
15
|
+
* https://openapi-generator.tech
|
|
16
|
+
* Do not edit the class manually.
|
|
17
|
+
*/
|
|
18
|
+
function PublicKeyCredentialUserEntityFromJSON(json) {
|
|
19
|
+
return PublicKeyCredentialUserEntityFromJSONTyped(json);
|
|
20
|
+
}
|
|
21
|
+
function PublicKeyCredentialUserEntityFromJSONTyped(json, ignoreDiscriminator) {
|
|
22
|
+
if ((json === undefined) || (json === null)) {
|
|
23
|
+
return json;
|
|
24
|
+
}
|
|
25
|
+
return {
|
|
26
|
+
'id': json['id'],
|
|
27
|
+
'name': json['name'],
|
|
28
|
+
'displayName': json['displayName'],
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
function PublicKeyCredentialUserEntityToJSON(value) {
|
|
32
|
+
if (value === undefined) {
|
|
33
|
+
return undefined;
|
|
34
|
+
}
|
|
35
|
+
if (value === null) {
|
|
36
|
+
return null;
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
'id': value.id,
|
|
40
|
+
'name': value.name,
|
|
41
|
+
'displayName': value.displayName,
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
exports.PublicKeyCredentialUserEntityFromJSON = PublicKeyCredentialUserEntityFromJSON;
|
|
46
|
+
exports.PublicKeyCredentialUserEntityFromJSONTyped = PublicKeyCredentialUserEntityFromJSONTyped;
|
|
47
|
+
exports.PublicKeyCredentialUserEntityToJSON = PublicKeyCredentialUserEntityToJSON;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dashboard API
|
|
3
|
+
* Dashboard API documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface PublicKeyCredentialUserEntity
|
|
16
|
+
*/
|
|
17
|
+
export interface PublicKeyCredentialUserEntity {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof PublicKeyCredentialUserEntity
|
|
22
|
+
*/
|
|
23
|
+
id: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PublicKeyCredentialUserEntity
|
|
28
|
+
*/
|
|
29
|
+
name: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PublicKeyCredentialUserEntity
|
|
34
|
+
*/
|
|
35
|
+
displayName: string;
|
|
36
|
+
}
|
|
37
|
+
export declare function PublicKeyCredentialUserEntityFromJSON(json: any): PublicKeyCredentialUserEntity;
|
|
38
|
+
export declare function PublicKeyCredentialUserEntityFromJSONTyped(json: any, ignoreDiscriminator: boolean): PublicKeyCredentialUserEntity;
|
|
39
|
+
export declare function PublicKeyCredentialUserEntityToJSON(value?: PublicKeyCredentialUserEntity | null): any;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Dashboard API
|
|
5
|
+
* Dashboard API documentation
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
function PublicKeyCredentialUserEntityFromJSON(json) {
|
|
15
|
+
return PublicKeyCredentialUserEntityFromJSONTyped(json);
|
|
16
|
+
}
|
|
17
|
+
function PublicKeyCredentialUserEntityFromJSONTyped(json, ignoreDiscriminator) {
|
|
18
|
+
if ((json === undefined) || (json === null)) {
|
|
19
|
+
return json;
|
|
20
|
+
}
|
|
21
|
+
return {
|
|
22
|
+
'id': json['id'],
|
|
23
|
+
'name': json['name'],
|
|
24
|
+
'displayName': json['displayName'],
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
function PublicKeyCredentialUserEntityToJSON(value) {
|
|
28
|
+
if (value === undefined) {
|
|
29
|
+
return undefined;
|
|
30
|
+
}
|
|
31
|
+
if (value === null) {
|
|
32
|
+
return null;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'id': value.id,
|
|
36
|
+
'name': value.name,
|
|
37
|
+
'displayName': value.displayName,
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export { PublicKeyCredentialUserEntityFromJSON, PublicKeyCredentialUserEntityFromJSONTyped, PublicKeyCredentialUserEntityToJSON };
|
|
@@ -0,0 +1,41 @@
|
|
|
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.ResidentKeyRequirement = void 0;
|
|
24
|
+
(function (ResidentKeyRequirement) {
|
|
25
|
+
ResidentKeyRequirement["Discouraged"] = "discouraged";
|
|
26
|
+
ResidentKeyRequirement["Preferred"] = "preferred";
|
|
27
|
+
ResidentKeyRequirement["Required"] = "required";
|
|
28
|
+
})(exports.ResidentKeyRequirement || (exports.ResidentKeyRequirement = {}));
|
|
29
|
+
function ResidentKeyRequirementFromJSON(json) {
|
|
30
|
+
return ResidentKeyRequirementFromJSONTyped(json);
|
|
31
|
+
}
|
|
32
|
+
function ResidentKeyRequirementFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
+
return json;
|
|
34
|
+
}
|
|
35
|
+
function ResidentKeyRequirementToJSON(value) {
|
|
36
|
+
return value;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
exports.ResidentKeyRequirementFromJSON = ResidentKeyRequirementFromJSON;
|
|
40
|
+
exports.ResidentKeyRequirementFromJSONTyped = ResidentKeyRequirementFromJSONTyped;
|
|
41
|
+
exports.ResidentKeyRequirementToJSON = ResidentKeyRequirementToJSON;
|
|
@@ -0,0 +1,24 @@
|
|
|
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 ResidentKeyRequirement {
|
|
18
|
+
Discouraged = "discouraged",
|
|
19
|
+
Preferred = "preferred",
|
|
20
|
+
Required = "required"
|
|
21
|
+
}
|
|
22
|
+
export declare function ResidentKeyRequirementFromJSON(json: any): ResidentKeyRequirement;
|
|
23
|
+
export declare function ResidentKeyRequirementFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResidentKeyRequirement;
|
|
24
|
+
export declare function ResidentKeyRequirementToJSON(value?: ResidentKeyRequirement | null): any;
|
|
@@ -0,0 +1,35 @@
|
|
|
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 ResidentKeyRequirement;
|
|
20
|
+
(function (ResidentKeyRequirement) {
|
|
21
|
+
ResidentKeyRequirement["Discouraged"] = "discouraged";
|
|
22
|
+
ResidentKeyRequirement["Preferred"] = "preferred";
|
|
23
|
+
ResidentKeyRequirement["Required"] = "required";
|
|
24
|
+
})(ResidentKeyRequirement || (ResidentKeyRequirement = {}));
|
|
25
|
+
function ResidentKeyRequirementFromJSON(json) {
|
|
26
|
+
return ResidentKeyRequirementFromJSONTyped(json);
|
|
27
|
+
}
|
|
28
|
+
function ResidentKeyRequirementFromJSONTyped(json, ignoreDiscriminator) {
|
|
29
|
+
return json;
|
|
30
|
+
}
|
|
31
|
+
function ResidentKeyRequirementToJSON(value) {
|
|
32
|
+
return value;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export { ResidentKeyRequirement, ResidentKeyRequirementFromJSON, ResidentKeyRequirementFromJSONTyped, ResidentKeyRequirementToJSON };
|
|
@@ -0,0 +1,41 @@
|
|
|
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.UserVerificationRequirement = void 0;
|
|
24
|
+
(function (UserVerificationRequirement) {
|
|
25
|
+
UserVerificationRequirement["Discouraged"] = "discouraged";
|
|
26
|
+
UserVerificationRequirement["Preferred"] = "preferred";
|
|
27
|
+
UserVerificationRequirement["Required"] = "required";
|
|
28
|
+
})(exports.UserVerificationRequirement || (exports.UserVerificationRequirement = {}));
|
|
29
|
+
function UserVerificationRequirementFromJSON(json) {
|
|
30
|
+
return UserVerificationRequirementFromJSONTyped(json);
|
|
31
|
+
}
|
|
32
|
+
function UserVerificationRequirementFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
+
return json;
|
|
34
|
+
}
|
|
35
|
+
function UserVerificationRequirementToJSON(value) {
|
|
36
|
+
return value;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
exports.UserVerificationRequirementFromJSON = UserVerificationRequirementFromJSON;
|
|
40
|
+
exports.UserVerificationRequirementFromJSONTyped = UserVerificationRequirementFromJSONTyped;
|
|
41
|
+
exports.UserVerificationRequirementToJSON = UserVerificationRequirementToJSON;
|
|
@@ -0,0 +1,24 @@
|
|
|
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 UserVerificationRequirement {
|
|
18
|
+
Discouraged = "discouraged",
|
|
19
|
+
Preferred = "preferred",
|
|
20
|
+
Required = "required"
|
|
21
|
+
}
|
|
22
|
+
export declare function UserVerificationRequirementFromJSON(json: any): UserVerificationRequirement;
|
|
23
|
+
export declare function UserVerificationRequirementFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserVerificationRequirement;
|
|
24
|
+
export declare function UserVerificationRequirementToJSON(value?: UserVerificationRequirement | null): any;
|
|
@@ -0,0 +1,35 @@
|
|
|
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 UserVerificationRequirement;
|
|
20
|
+
(function (UserVerificationRequirement) {
|
|
21
|
+
UserVerificationRequirement["Discouraged"] = "discouraged";
|
|
22
|
+
UserVerificationRequirement["Preferred"] = "preferred";
|
|
23
|
+
UserVerificationRequirement["Required"] = "required";
|
|
24
|
+
})(UserVerificationRequirement || (UserVerificationRequirement = {}));
|
|
25
|
+
function UserVerificationRequirementFromJSON(json) {
|
|
26
|
+
return UserVerificationRequirementFromJSONTyped(json);
|
|
27
|
+
}
|
|
28
|
+
function UserVerificationRequirementFromJSONTyped(json, ignoreDiscriminator) {
|
|
29
|
+
return json;
|
|
30
|
+
}
|
|
31
|
+
function UserVerificationRequirementToJSON(value) {
|
|
32
|
+
return value;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export { UserVerificationRequirement, UserVerificationRequirementFromJSON, UserVerificationRequirementFromJSONTyped, UserVerificationRequirementToJSON };
|
package/src/models/index.d.ts
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
|
+
export * from './AttestationConveyancePreference';
|
|
1
2
|
export * from './AuthModeEnum';
|
|
2
3
|
export * from './AuthSettings';
|
|
3
4
|
export * from './AuthStorageEnum';
|
|
5
|
+
export * from './AuthenticationExtensionsClientInputs';
|
|
6
|
+
export * from './AuthenticationExtensionsClientOutputs';
|
|
7
|
+
export * from './AuthenticatorAssertionResponse';
|
|
8
|
+
export * from './AuthenticatorAttachment';
|
|
9
|
+
export * from './AuthenticatorAttestationResponse';
|
|
10
|
+
export * from './AuthenticatorSelectionCriteria';
|
|
4
11
|
export * from './AuthenticatorTransportProtocol';
|
|
5
12
|
export * from './BadRequest';
|
|
6
13
|
export * from './BaseUser';
|
|
@@ -69,6 +76,9 @@ export * from './JwtPayloadDeprecatedInfo';
|
|
|
69
76
|
export * from './JwtVerifiedCredential';
|
|
70
77
|
export * from './JwtVerifiedCredentialFormatEnum';
|
|
71
78
|
export * from './KycFieldType';
|
|
79
|
+
export * from './MFAAuthPasskeyDeviceGetResponse';
|
|
80
|
+
export * from './MFAAuthPasskeyDeviceGetResponseAttestation';
|
|
81
|
+
export * from './MFAAuthPasskeyDevicePostRequest';
|
|
72
82
|
export * from './MFAAuthRecoveryDevicePostRequest';
|
|
73
83
|
export * from './MFAAuthTotpDevicePostRequest';
|
|
74
84
|
export * from './MFADevice';
|
|
@@ -76,6 +86,9 @@ export * from './MFADeviceType';
|
|
|
76
86
|
export * from './MFAGetRecoveryCodesResponse';
|
|
77
87
|
export * from './MFAListDevicesResponse';
|
|
78
88
|
export * from './MFARegenRecoveryCodesResponse';
|
|
89
|
+
export * from './MFARegisterPasskeyDeviceGetResponse';
|
|
90
|
+
export * from './MFARegisterPasskeyDeviceGetResponseRegistration';
|
|
91
|
+
export * from './MFARegisterPasskeyDevicePostRequest';
|
|
79
92
|
export * from './MFARegisterTotpDeviceGetResponse';
|
|
80
93
|
export * from './MFARegisterTotpDevicePostRequest';
|
|
81
94
|
export * from './MFASettings';
|
|
@@ -108,8 +121,10 @@ export * from './OauthResultRequest';
|
|
|
108
121
|
export * from './OauthResultResponse';
|
|
109
122
|
export * from './OauthResultStatus';
|
|
110
123
|
export * from './OnrampConfiguration';
|
|
124
|
+
export * from './PasskeyRegisterVerifyRequest';
|
|
111
125
|
export * from './PasskeyRegistrationCredential';
|
|
112
126
|
export * from './PasskeyStorage';
|
|
127
|
+
export * from './PasskeyVerifyRequest';
|
|
113
128
|
export * from './PasswordSourceTypeEnum';
|
|
114
129
|
export * from './PrefetchRequest';
|
|
115
130
|
export * from './ProjectSettings';
|
|
@@ -131,10 +146,16 @@ export * from './ProjectSettingsSecurity';
|
|
|
131
146
|
export * from './Provider';
|
|
132
147
|
export * from './ProviderAgreement';
|
|
133
148
|
export * from './ProviderEnum';
|
|
149
|
+
export * from './PublicKeyCredentialDescriptor';
|
|
150
|
+
export * from './PublicKeyCredentialParameters';
|
|
151
|
+
export * from './PublicKeyCredentialRpEntity';
|
|
152
|
+
export * from './PublicKeyCredentialType';
|
|
153
|
+
export * from './PublicKeyCredentialUserEntity';
|
|
134
154
|
export * from './PublishEvents';
|
|
135
155
|
export * from './PublishEventsEvents';
|
|
136
156
|
export * from './ReactSettings';
|
|
137
157
|
export * from './RegisterSessionKeyRequest';
|
|
158
|
+
export * from './ResidentKeyRequirement';
|
|
138
159
|
export * from './SdkSettingsRequest';
|
|
139
160
|
export * from './SdkUser';
|
|
140
161
|
export * from './SdkView';
|
|
@@ -180,6 +201,7 @@ export * from './UserFields';
|
|
|
180
201
|
export * from './UserIdentifierTypeEnum';
|
|
181
202
|
export * from './UserOauthAccessTokenResponse';
|
|
182
203
|
export * from './UserPasskey';
|
|
204
|
+
export * from './UserVerificationRequirement';
|
|
183
205
|
export * from './UserWalletSelectionRequest';
|
|
184
206
|
export * from './VerifyRequest';
|
|
185
207
|
export * from './VerifyResponse';
|