forked from ForgeRock/forgerock-javascript-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterfaces.ts
More file actions
119 lines (104 loc) · 2.8 KB
/
interfaces.ts
File metadata and controls
119 lines (104 loc) · 2.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*
* @forgerock/javascript-sdk
*
* interfaces.ts
*
* Copyright (c) 2020 - 2025 Ping Identity Corporation. All rights reserved.
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
import type HiddenValueCallback from '../fr-auth/callbacks/hidden-value-callback';
import type MetadataCallback from '../fr-auth/callbacks/metadata-callback';
import type TextOutputCallback from '../fr-auth/callbacks/text-output-callback';
enum AttestationType {
Direct = 'direct',
Indirect = 'indirect',
None = 'none',
}
interface DeviceStepState extends StepState {
value1: number;
value2: number;
}
enum UserVerificationType {
Discouraged = 'discouraged',
Preferred = 'preferred',
Required = 'required',
}
interface RelyingParty {
name: string;
id?: string;
}
interface ResponseCredential {
response: { clientDataJSON: ArrayBuffer };
}
interface Step<TData, TState> {
data?: TData;
state: TState;
type: StepType;
}
interface StepState {
authId: string;
}
enum StepType {
DeviceAuthentication = 'DeviceAuthentication',
DeviceRegistration = 'DeviceRegistration',
DeviceRegistrationChoice = 'DeviceRegistrationChoice',
LoginFailure = 'LoginFailure',
LoginSuccess = 'LoginSuccess',
OneTimePassword = 'OneTimePassword',
SecondFactorChoice = 'SecondFactorChoice',
Username = 'Username',
UsernamePassword = 'UsernamePassword',
UserPassword = 'UserPassword',
}
interface WebAuthnRegistrationMetadata {
attestationPreference: 'none' | 'indirect' | 'direct';
authenticatorSelection: string;
challenge: string;
excludeCredentials: string;
pubKeyCredParams: string;
relyingPartyId: string;
relyingPartyName: string;
timeout: number;
userId: string;
userName: string;
displayName?: string;
supportsJsonResponse?: boolean;
}
interface WebAuthnAuthenticationMetadata {
_action?: 'webauthn_authentication';
acceptableCredentials?: string;
allowCredentials?: string;
_allowCredentials?: PublicKeyCredentialDescriptor[];
challenge: string;
relyingPartyId: string;
_relyingPartyId?: string;
timeout: number;
userVerification: UserVerificationType;
mediation?: string;
extensions?: Record<string, unknown>;
_type?: 'WebAuthn';
supportsJsonResponse?: boolean;
}
interface WebAuthnCallbacks {
hiddenCallback?: HiddenValueCallback;
metadataCallback?: MetadataCallback;
textOutputCallback?: TextOutputCallback;
}
type WebAuthnTextOutputRegistration = string;
interface ParsedCredential {
id: ArrayBuffer;
type: 'public-key';
}
export type {
DeviceStepState,
ParsedCredential,
RelyingParty,
ResponseCredential,
Step,
WebAuthnCallbacks,
WebAuthnAuthenticationMetadata,
WebAuthnRegistrationMetadata,
WebAuthnTextOutputRegistration,
};
export { AttestationType, StepType, UserVerificationType };