-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinterfaces.ts
More file actions
113 lines (99 loc) · 3.21 KB
/
interfaces.ts
File metadata and controls
113 lines (99 loc) · 3.21 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
/*
* @forgerock/ping-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 '../callbacks/hidden-value-callback.js';
import type { MetadataCallback } from '../callbacks/metadata-callback.js';
import type { TextOutputCallback } from '../callbacks/text-output-callback.js';
export enum AttestationType {
Direct = 'direct',
Indirect = 'indirect',
None = 'none',
}
export interface DeviceStepState extends StepState {
value1: number;
value2: number;
}
export enum UserVerificationType {
Discouraged = 'discouraged',
Preferred = 'preferred',
Required = 'required',
}
export interface RelyingParty {
name: string;
id?: string;
}
export interface ResponseCredential {
response: { clientDataJSON: ArrayBuffer };
}
export interface Step<TData, TState> {
data?: TData;
state: TState;
type: StepType;
}
export interface StepState {
authId: string;
}
export enum StepType {
DeviceAuthentication = 'DeviceAuthentication',
DeviceRegistration = 'DeviceRegistration',
DeviceRegistrationChoice = 'DeviceRegistrationChoice',
LoginFailure = 'LoginFailure',
LoginSuccess = 'LoginSuccess',
OneTimePassword = 'OneTimePassword',
SecondFactorChoice = 'SecondFactorChoice',
Username = 'Username',
UsernamePassword = 'UsernamePassword',
UserPassword = 'UserPassword',
}
export 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;
}
export interface WebAuthnAuthenticationMetadata {
acceptableCredentials?: string;
allowCredentials?: string;
challenge: string;
mediation?: CredentialMediationRequirement;
relyingPartyId: string;
timeout: number;
userVerification: UserVerificationType;
supportsJsonResponse?: boolean;
}
export interface WebAuthnCallbacks {
hiddenCallback?: HiddenValueCallback;
metadataCallback?: MetadataCallback;
textOutputCallback?: TextOutputCallback;
}
export type WebAuthnTextOutputRegistration = string;
export interface ParsedCredential {
/**
* The WebAuthn API (specifically `PublicKeyCredentialDescriptor['id']`) expects a `BufferSource` type.
* In current TypeScript environments, `SharedArrayBuffer` is not directly assignable to `BufferSource`
* due to missing properties like `resizable`, `resize`, etc.
* Although `SharedArrayBuffer` might have been implicitly compatible in older environments,
* explicitly using `ArrayBuffer` ensures strict type compatibility with the WebAuthn API.
* The `script-parser.ts` already converts the ID to an `ArrayBuffer` before use.
*
* See:
* - W3C WebAuthn Level 3: https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialdescriptor
* - MDN BufferSource: https://developer.mozilla.org/en-US/docs/Web/API/BufferSource
*/
id: ArrayBuffer;
type: 'public-key';
}