authhero 9.9.1 → 9.11.0
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/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +145 -145
- package/dist/authhero.d.ts +585 -190
- package/dist/authhero.mjs +15529 -14313
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/authorization-code.d.ts +2 -1
- package/dist/types/authentication-flows/client-credentials.d.ts +2 -1
- package/dist/types/authentication-flows/passwordless.d.ts +6 -5
- package/dist/types/authentication-flows/refresh-token.d.ts +2 -1
- package/dist/types/authentication-flows/token-exchange.d.ts +2 -1
- package/dist/types/helpers/client-assertion-replay.d.ts +21 -0
- package/dist/types/helpers/client-assertion.d.ts +24 -2
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/default-destinations.d.ts +7 -1
- package/dist/types/helpers/outbox-destinations/index.d.ts +1 -0
- package/dist/types/helpers/outbox-destinations/pipeline.d.ts +63 -0
- package/dist/types/helpers/outbox-relay.d.ts +3 -0
- package/dist/types/helpers/reserved-claims.d.ts +64 -0
- package/dist/types/helpers/run-outbox-relay.d.ts +8 -0
- package/dist/types/helpers/run-retention.d.ts +5 -0
- package/dist/types/helpers/users-import/map.d.ts +128 -0
- package/dist/types/helpers/users-import/process.d.ts +95 -0
- package/dist/types/helpers/users-import-cleanup.d.ts +26 -0
- package/dist/types/index.d.ts +321 -185
- package/dist/types/routes/auth-api/index.d.ts +44 -44
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/token.d.ts +24 -24
- package/dist/types/routes/management-api/action-triggers.d.ts +0 -2
- package/dist/types/routes/management-api/actions.d.ts +0 -7
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +1 -1
- package/dist/types/routes/management-api/client-grants.d.ts +9 -9
- package/dist/types/routes/management-api/clients.d.ts +8 -8
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +22 -2
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +216 -86
- package/dist/types/routes/management-api/jobs.d.ts +133 -0
- package/dist/types/routes/management-api/keys.d.ts +16 -16
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +2 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenant-operations.d.ts +33 -9
- package/dist/types/routes/management-api/tenants.d.ts +11 -11
- package/dist/types/routes/management-api/users.d.ts +24 -24
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/state-machines/login-session.d.ts +1 -1
- package/dist/types/types/AuthHeroConfig.d.ts +40 -0
- package/dist/types/types/Bindings.d.ts +14 -0
- package/dist/types/types/OutboxMetrics.d.ts +47 -0
- package/dist/types/types/auth0/UserImport.d.ts +317 -0
- package/dist/types/types/index.d.ts +1 -0
- package/package.json +6 -6
package/dist/types/index.d.ts
CHANGED
|
@@ -14,9 +14,14 @@ export { cleanupUserSessions, cleanupSessions, } from "./helpers/user-session-cl
|
|
|
14
14
|
export type { UserSessionCleanupParams } from "./helpers/user-session-cleanup";
|
|
15
15
|
export { drainOutbox } from "./helpers/outbox-relay";
|
|
16
16
|
export type { EventDestination } from "./helpers/outbox-relay";
|
|
17
|
+
export type { OutboxMetric, OutboxMetricName, OutboxMetricsSink, } from "./types/OutboxMetrics";
|
|
17
18
|
export { cleanupOutbox } from "./helpers/outbox-cleanup";
|
|
18
19
|
export { cleanupCodes } from "./helpers/codes-cleanup";
|
|
19
20
|
export { cleanupActionExecutions } from "./helpers/action-executions-cleanup";
|
|
21
|
+
export { cleanupUsersImports } from "./helpers/users-import-cleanup";
|
|
22
|
+
export type { UsersImportCleanupParams } from "./helpers/users-import-cleanup";
|
|
23
|
+
export { advanceUsersImport, resumeUsersImports, } from "./helpers/users-import/process";
|
|
24
|
+
export type { AdvanceOptions, AdvanceResult, ResumeUsersImportsOptions, ResumeUsersImportsResult, } from "./helpers/users-import/process";
|
|
20
25
|
export type { OutboxCleanupParams } from "./helpers/outbox-cleanup";
|
|
21
26
|
export type { CodesCleanupParams } from "./helpers/codes-cleanup";
|
|
22
27
|
export type { ActionExecutionsCleanupParams } from "./helpers/action-executions-cleanup";
|
|
@@ -33,6 +38,7 @@ export { WebhookDestination, type WebhookDestinationOptions, type GetServiceToke
|
|
|
33
38
|
export { CodeHookDestination } from "./helpers/outbox-destinations/code-hooks";
|
|
34
39
|
export { RegistrationFinalizerDestination } from "./helpers/outbox-destinations/registration-finalizer";
|
|
35
40
|
export { ControlPlaneSyncDestination, type ControlPlaneSyncDestinationOptions, } from "./helpers/outbox-destinations/control-plane-sync";
|
|
41
|
+
export { PipelineDestination, type PipelineDestinationOptions, type PipelineRecord, } from "./helpers/outbox-destinations/pipeline";
|
|
36
42
|
export { type SyncEvent, type SyncEntity, type SyncOp, CONTROL_PLANE_SYNC_EVENT_PREFIX, } from "./helpers/control-plane-sync-events";
|
|
37
43
|
export { createApplySyncEvents, type CreateApplySyncEventsOptions, } from "./routes/proxy-control-plane";
|
|
38
44
|
export { CONTROL_PLANE_SYNC_SCOPE, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, CONTROL_PLANE_TENANT_MEMBERS_SCOPE, } from "./routes/proxy-control-plane/scopes";
|
|
@@ -76,12 +82,131 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
76
82
|
Bindings: Bindings;
|
|
77
83
|
Variables: Variables;
|
|
78
84
|
}, import("hono/types").MergeSchemaPath<{
|
|
85
|
+
"/users-imports": {
|
|
86
|
+
$post: {
|
|
87
|
+
input: {
|
|
88
|
+
header: {
|
|
89
|
+
"tenant-id"?: string | undefined;
|
|
90
|
+
};
|
|
91
|
+
} & {
|
|
92
|
+
form: {
|
|
93
|
+
users: any;
|
|
94
|
+
connection_id: string;
|
|
95
|
+
upsert?: string | boolean | undefined;
|
|
96
|
+
external_id?: string | undefined;
|
|
97
|
+
send_completion_email?: string | boolean | undefined;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
output: {
|
|
101
|
+
id: string;
|
|
102
|
+
type: string;
|
|
103
|
+
status: "pending" | "failed" | "completed";
|
|
104
|
+
created_at?: string | undefined;
|
|
105
|
+
connection_id?: string | undefined;
|
|
106
|
+
external_id?: string | undefined;
|
|
107
|
+
percentage_done?: number | undefined;
|
|
108
|
+
time_left_seconds?: number | undefined;
|
|
109
|
+
status_details?: string | undefined;
|
|
110
|
+
summary?: {
|
|
111
|
+
failed: number;
|
|
112
|
+
updated: number;
|
|
113
|
+
inserted: number;
|
|
114
|
+
total: number;
|
|
115
|
+
} | undefined;
|
|
116
|
+
};
|
|
117
|
+
outputFormat: "json";
|
|
118
|
+
status: 202;
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
} & {
|
|
122
|
+
"/:id": {
|
|
123
|
+
$get: {
|
|
124
|
+
input: {
|
|
125
|
+
param: {
|
|
126
|
+
id: string;
|
|
127
|
+
};
|
|
128
|
+
} & {
|
|
129
|
+
header: {
|
|
130
|
+
"tenant-id"?: string | undefined;
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
output: {
|
|
134
|
+
id: string;
|
|
135
|
+
type: string;
|
|
136
|
+
status: "pending" | "failed" | "completed";
|
|
137
|
+
created_at?: string | undefined;
|
|
138
|
+
connection_id?: string | undefined;
|
|
139
|
+
external_id?: string | undefined;
|
|
140
|
+
percentage_done?: number | undefined;
|
|
141
|
+
time_left_seconds?: number | undefined;
|
|
142
|
+
status_details?: string | undefined;
|
|
143
|
+
summary?: {
|
|
144
|
+
failed: number;
|
|
145
|
+
updated: number;
|
|
146
|
+
inserted: number;
|
|
147
|
+
total: number;
|
|
148
|
+
} | undefined;
|
|
149
|
+
};
|
|
150
|
+
outputFormat: "json";
|
|
151
|
+
status: 200;
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
} & {
|
|
155
|
+
"/:id/errors": {
|
|
156
|
+
$get: {
|
|
157
|
+
input: {
|
|
158
|
+
param: {
|
|
159
|
+
id: string;
|
|
160
|
+
};
|
|
161
|
+
} & {
|
|
162
|
+
query: {
|
|
163
|
+
page?: unknown;
|
|
164
|
+
per_page?: unknown;
|
|
165
|
+
};
|
|
166
|
+
} & {
|
|
167
|
+
header: {
|
|
168
|
+
"tenant-id"?: string | undefined;
|
|
169
|
+
};
|
|
170
|
+
};
|
|
171
|
+
output: {};
|
|
172
|
+
outputFormat: string;
|
|
173
|
+
status: 204;
|
|
174
|
+
} | {
|
|
175
|
+
input: {
|
|
176
|
+
param: {
|
|
177
|
+
id: string;
|
|
178
|
+
};
|
|
179
|
+
} & {
|
|
180
|
+
query: {
|
|
181
|
+
page?: unknown;
|
|
182
|
+
per_page?: unknown;
|
|
183
|
+
};
|
|
184
|
+
} & {
|
|
185
|
+
header: {
|
|
186
|
+
"tenant-id"?: string | undefined;
|
|
187
|
+
};
|
|
188
|
+
};
|
|
189
|
+
output: {
|
|
190
|
+
user: {
|
|
191
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
192
|
+
};
|
|
193
|
+
errors: {
|
|
194
|
+
code: string;
|
|
195
|
+
message: string;
|
|
196
|
+
path?: string | undefined;
|
|
197
|
+
}[];
|
|
198
|
+
}[];
|
|
199
|
+
outputFormat: "json";
|
|
200
|
+
status: 200;
|
|
201
|
+
};
|
|
202
|
+
};
|
|
203
|
+
}, "/jobs"> & import("hono/types").MergeSchemaPath<{
|
|
79
204
|
"/export": {
|
|
80
205
|
$get: {
|
|
81
206
|
input: {
|
|
82
207
|
query: {
|
|
83
|
-
include_password_hashes?: "
|
|
84
|
-
gzip?: "
|
|
208
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
209
|
+
gzip?: "true" | "false" | undefined;
|
|
85
210
|
};
|
|
86
211
|
} & {
|
|
87
212
|
header: {
|
|
@@ -94,8 +219,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
94
219
|
} | {
|
|
95
220
|
input: {
|
|
96
221
|
query: {
|
|
97
|
-
include_password_hashes?: "
|
|
98
|
-
gzip?: "
|
|
222
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
223
|
+
gzip?: "true" | "false" | undefined;
|
|
99
224
|
};
|
|
100
225
|
} & {
|
|
101
226
|
header: {
|
|
@@ -114,7 +239,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
114
239
|
$post: {
|
|
115
240
|
input: {
|
|
116
241
|
query: {
|
|
117
|
-
include_password_hashes?: "
|
|
242
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
118
243
|
};
|
|
119
244
|
} & {
|
|
120
245
|
header: {
|
|
@@ -168,7 +293,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
168
293
|
};
|
|
169
294
|
} & {
|
|
170
295
|
json: {
|
|
171
|
-
type: "email" | "
|
|
296
|
+
type: "email" | "totp" | "phone" | "push" | "passkey" | "webauthn-roaming" | "webauthn-platform";
|
|
172
297
|
phone_number?: string | undefined;
|
|
173
298
|
totp_secret?: string | undefined;
|
|
174
299
|
credential_id?: string | undefined;
|
|
@@ -308,7 +433,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
308
433
|
};
|
|
309
434
|
};
|
|
310
435
|
output: {
|
|
311
|
-
name: "
|
|
436
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
312
437
|
enabled: boolean;
|
|
313
438
|
trial_expired?: boolean | undefined;
|
|
314
439
|
}[];
|
|
@@ -463,7 +588,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
463
588
|
$get: {
|
|
464
589
|
input: {
|
|
465
590
|
param: {
|
|
466
|
-
factor_name: "
|
|
591
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
467
592
|
};
|
|
468
593
|
} & {
|
|
469
594
|
header: {
|
|
@@ -471,7 +596,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
471
596
|
};
|
|
472
597
|
};
|
|
473
598
|
output: {
|
|
474
|
-
name: "
|
|
599
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
475
600
|
enabled: boolean;
|
|
476
601
|
trial_expired?: boolean | undefined;
|
|
477
602
|
};
|
|
@@ -484,7 +609,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
484
609
|
$put: {
|
|
485
610
|
input: {
|
|
486
611
|
param: {
|
|
487
|
-
factor_name: "
|
|
612
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
488
613
|
};
|
|
489
614
|
} & {
|
|
490
615
|
header: {
|
|
@@ -496,7 +621,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
496
621
|
};
|
|
497
622
|
};
|
|
498
623
|
output: {
|
|
499
|
-
name: "
|
|
624
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
500
625
|
enabled: boolean;
|
|
501
626
|
trial_expired?: boolean | undefined;
|
|
502
627
|
};
|
|
@@ -2035,9 +2160,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2035
2160
|
};
|
|
2036
2161
|
} & {
|
|
2037
2162
|
query: {
|
|
2038
|
-
from?: string | undefined;
|
|
2039
2163
|
page?: string | undefined;
|
|
2040
2164
|
include_totals?: string | undefined;
|
|
2165
|
+
from?: string | undefined;
|
|
2041
2166
|
per_page?: string | undefined;
|
|
2042
2167
|
take?: string | undefined;
|
|
2043
2168
|
};
|
|
@@ -2183,7 +2308,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2183
2308
|
type: "REDIRECT";
|
|
2184
2309
|
action: "REDIRECT_USER";
|
|
2185
2310
|
params: {
|
|
2186
|
-
target: "custom" | "
|
|
2311
|
+
target: "custom" | "change-email" | "account";
|
|
2187
2312
|
custom_url?: string | undefined;
|
|
2188
2313
|
};
|
|
2189
2314
|
alias?: string | undefined;
|
|
@@ -2236,7 +2361,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2236
2361
|
type: "REDIRECT";
|
|
2237
2362
|
action: "REDIRECT_USER";
|
|
2238
2363
|
params: {
|
|
2239
|
-
target: "custom" | "
|
|
2364
|
+
target: "custom" | "change-email" | "account";
|
|
2240
2365
|
custom_url?: string | undefined;
|
|
2241
2366
|
};
|
|
2242
2367
|
alias?: string | undefined;
|
|
@@ -2305,7 +2430,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2305
2430
|
type: "REDIRECT";
|
|
2306
2431
|
action: "REDIRECT_USER";
|
|
2307
2432
|
params: {
|
|
2308
|
-
target: "custom" | "
|
|
2433
|
+
target: "custom" | "change-email" | "account";
|
|
2309
2434
|
custom_url?: string | undefined;
|
|
2310
2435
|
};
|
|
2311
2436
|
alias?: string | undefined;
|
|
@@ -2386,7 +2511,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2386
2511
|
type: "REDIRECT";
|
|
2387
2512
|
action: "REDIRECT_USER";
|
|
2388
2513
|
params: {
|
|
2389
|
-
target: "custom" | "
|
|
2514
|
+
target: "custom" | "change-email" | "account";
|
|
2390
2515
|
custom_url?: string | undefined;
|
|
2391
2516
|
};
|
|
2392
2517
|
alias?: string | undefined;
|
|
@@ -2434,7 +2559,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2434
2559
|
type: "REDIRECT";
|
|
2435
2560
|
action: "REDIRECT_USER";
|
|
2436
2561
|
params: {
|
|
2437
|
-
target: "custom" | "
|
|
2562
|
+
target: "custom" | "change-email" | "account";
|
|
2438
2563
|
custom_url?: string | undefined;
|
|
2439
2564
|
};
|
|
2440
2565
|
alias?: string | undefined;
|
|
@@ -2494,7 +2619,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2494
2619
|
type: "REDIRECT";
|
|
2495
2620
|
action: "REDIRECT_USER";
|
|
2496
2621
|
params: {
|
|
2497
|
-
target: "custom" | "
|
|
2622
|
+
target: "custom" | "change-email" | "account";
|
|
2498
2623
|
custom_url?: string | undefined;
|
|
2499
2624
|
};
|
|
2500
2625
|
alias?: string | undefined;
|
|
@@ -2542,7 +2667,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2542
2667
|
type: "REDIRECT";
|
|
2543
2668
|
action: "REDIRECT_USER";
|
|
2544
2669
|
params: {
|
|
2545
|
-
target: "custom" | "
|
|
2670
|
+
target: "custom" | "change-email" | "account";
|
|
2546
2671
|
custom_url?: string | undefined;
|
|
2547
2672
|
};
|
|
2548
2673
|
alias?: string | undefined;
|
|
@@ -7107,7 +7232,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7107
7232
|
};
|
|
7108
7233
|
};
|
|
7109
7234
|
output: {
|
|
7110
|
-
prompt: "
|
|
7235
|
+
prompt: "status" | "signup" | "login" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7111
7236
|
language: string;
|
|
7112
7237
|
}[];
|
|
7113
7238
|
outputFormat: "json";
|
|
@@ -7145,7 +7270,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7145
7270
|
$get: {
|
|
7146
7271
|
input: {
|
|
7147
7272
|
param: {
|
|
7148
|
-
prompt: "
|
|
7273
|
+
prompt: "status" | "signup" | "login" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7149
7274
|
language: string;
|
|
7150
7275
|
};
|
|
7151
7276
|
} & {
|
|
@@ -7167,7 +7292,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7167
7292
|
$put: {
|
|
7168
7293
|
input: {
|
|
7169
7294
|
param: {
|
|
7170
|
-
prompt: "
|
|
7295
|
+
prompt: "status" | "signup" | "login" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7171
7296
|
language: string;
|
|
7172
7297
|
};
|
|
7173
7298
|
} & {
|
|
@@ -7191,7 +7316,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7191
7316
|
$delete: {
|
|
7192
7317
|
input: {
|
|
7193
7318
|
param: {
|
|
7194
|
-
prompt: "
|
|
7319
|
+
prompt: "status" | "signup" | "login" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7195
7320
|
language: string;
|
|
7196
7321
|
};
|
|
7197
7322
|
} & {
|
|
@@ -7334,7 +7459,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7334
7459
|
} | undefined;
|
|
7335
7460
|
} | undefined;
|
|
7336
7461
|
passkey_options?: {
|
|
7337
|
-
challenge_ui?: "
|
|
7462
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7338
7463
|
local_enrollment_enabled?: boolean | undefined;
|
|
7339
7464
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7340
7465
|
} | undefined;
|
|
@@ -7472,7 +7597,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7472
7597
|
} | undefined;
|
|
7473
7598
|
} | undefined;
|
|
7474
7599
|
passkey_options?: {
|
|
7475
|
-
challenge_ui?: "
|
|
7600
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7476
7601
|
local_enrollment_enabled?: boolean | undefined;
|
|
7477
7602
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7478
7603
|
} | undefined;
|
|
@@ -7626,7 +7751,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7626
7751
|
} | undefined;
|
|
7627
7752
|
} | undefined;
|
|
7628
7753
|
passkey_options?: {
|
|
7629
|
-
challenge_ui?: "
|
|
7754
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7630
7755
|
local_enrollment_enabled?: boolean | undefined;
|
|
7631
7756
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7632
7757
|
} | undefined;
|
|
@@ -7809,7 +7934,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7809
7934
|
} | undefined;
|
|
7810
7935
|
} | undefined;
|
|
7811
7936
|
passkey_options?: {
|
|
7812
|
-
challenge_ui?: "
|
|
7937
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7813
7938
|
local_enrollment_enabled?: boolean | undefined;
|
|
7814
7939
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7815
7940
|
} | undefined;
|
|
@@ -7971,7 +8096,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7971
8096
|
} | undefined;
|
|
7972
8097
|
} | undefined;
|
|
7973
8098
|
passkey_options?: {
|
|
7974
|
-
challenge_ui?: "
|
|
8099
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7975
8100
|
local_enrollment_enabled?: boolean | undefined;
|
|
7976
8101
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7977
8102
|
} | undefined;
|
|
@@ -8801,9 +8926,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8801
8926
|
tenant_id: string;
|
|
8802
8927
|
event_type: string;
|
|
8803
8928
|
log_type: string;
|
|
8804
|
-
category: "
|
|
8929
|
+
category: "system" | "user_action" | "admin_action" | "api";
|
|
8805
8930
|
actor: {
|
|
8806
|
-
type: "
|
|
8931
|
+
type: "user" | "system" | "client_credentials" | "admin" | "api_key";
|
|
8807
8932
|
id?: string | undefined;
|
|
8808
8933
|
email?: string | undefined;
|
|
8809
8934
|
org_id?: string | undefined;
|
|
@@ -8886,6 +9011,26 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8886
9011
|
status: 200;
|
|
8887
9012
|
};
|
|
8888
9013
|
};
|
|
9014
|
+
} & {
|
|
9015
|
+
"/bulk-retry": {
|
|
9016
|
+
$post: {
|
|
9017
|
+
input: {
|
|
9018
|
+
header: {
|
|
9019
|
+
"tenant-id"?: string | undefined;
|
|
9020
|
+
};
|
|
9021
|
+
} & {
|
|
9022
|
+
json: {
|
|
9023
|
+
ids: string[];
|
|
9024
|
+
};
|
|
9025
|
+
};
|
|
9026
|
+
output: {
|
|
9027
|
+
replayed: string[];
|
|
9028
|
+
not_found: string[];
|
|
9029
|
+
};
|
|
9030
|
+
outputFormat: "json";
|
|
9031
|
+
status: 200;
|
|
9032
|
+
};
|
|
9033
|
+
};
|
|
8889
9034
|
} & {
|
|
8890
9035
|
"/:id/retry": {
|
|
8891
9036
|
$post: {
|
|
@@ -9114,7 +9259,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9114
9259
|
created_at: string;
|
|
9115
9260
|
updated_at: string;
|
|
9116
9261
|
name: string;
|
|
9117
|
-
provider: "auth0" | "
|
|
9262
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9118
9263
|
connection: string;
|
|
9119
9264
|
enabled: boolean;
|
|
9120
9265
|
credentials: {
|
|
@@ -9146,7 +9291,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9146
9291
|
created_at: string;
|
|
9147
9292
|
updated_at: string;
|
|
9148
9293
|
name: string;
|
|
9149
|
-
provider: "auth0" | "
|
|
9294
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9150
9295
|
connection: string;
|
|
9151
9296
|
enabled: boolean;
|
|
9152
9297
|
credentials: {
|
|
@@ -9172,7 +9317,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9172
9317
|
} & {
|
|
9173
9318
|
json: {
|
|
9174
9319
|
name: string;
|
|
9175
|
-
provider: "auth0" | "
|
|
9320
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9176
9321
|
connection: string;
|
|
9177
9322
|
credentials: {
|
|
9178
9323
|
domain: string;
|
|
@@ -9189,7 +9334,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9189
9334
|
created_at: string;
|
|
9190
9335
|
updated_at: string;
|
|
9191
9336
|
name: string;
|
|
9192
|
-
provider: "auth0" | "
|
|
9337
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9193
9338
|
connection: string;
|
|
9194
9339
|
enabled: boolean;
|
|
9195
9340
|
credentials: {
|
|
@@ -9220,7 +9365,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9220
9365
|
json: {
|
|
9221
9366
|
id?: string | undefined;
|
|
9222
9367
|
name?: string | undefined;
|
|
9223
|
-
provider?: "auth0" | "
|
|
9368
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
9224
9369
|
connection?: string | undefined;
|
|
9225
9370
|
enabled?: boolean | undefined;
|
|
9226
9371
|
credentials?: {
|
|
@@ -9236,7 +9381,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9236
9381
|
created_at: string;
|
|
9237
9382
|
updated_at: string;
|
|
9238
9383
|
name: string;
|
|
9239
|
-
provider: "auth0" | "
|
|
9384
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9240
9385
|
connection: string;
|
|
9241
9386
|
enabled: boolean;
|
|
9242
9387
|
credentials: {
|
|
@@ -9454,7 +9599,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9454
9599
|
};
|
|
9455
9600
|
};
|
|
9456
9601
|
output: {
|
|
9457
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "
|
|
9602
|
+
type: "fn" | "i" | "sui" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9458
9603
|
date: string;
|
|
9459
9604
|
isMobile: boolean;
|
|
9460
9605
|
log_id: string;
|
|
@@ -9493,7 +9638,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9493
9638
|
limit: number;
|
|
9494
9639
|
length: number;
|
|
9495
9640
|
logs: {
|
|
9496
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "
|
|
9641
|
+
type: "fn" | "i" | "sui" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9497
9642
|
date: string;
|
|
9498
9643
|
isMobile: boolean;
|
|
9499
9644
|
log_id: string;
|
|
@@ -9532,7 +9677,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9532
9677
|
next?: string | undefined;
|
|
9533
9678
|
} | {
|
|
9534
9679
|
logs: {
|
|
9535
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "
|
|
9680
|
+
type: "fn" | "i" | "sui" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9536
9681
|
date: string;
|
|
9537
9682
|
isMobile: boolean;
|
|
9538
9683
|
log_id: string;
|
|
@@ -9586,7 +9731,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9586
9731
|
};
|
|
9587
9732
|
};
|
|
9588
9733
|
output: {
|
|
9589
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "
|
|
9734
|
+
type: "fn" | "i" | "sui" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9590
9735
|
date: string;
|
|
9591
9736
|
isMobile: boolean;
|
|
9592
9737
|
log_id: string;
|
|
@@ -9997,7 +10142,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9997
10142
|
addons?: {
|
|
9998
10143
|
[x: string]: any;
|
|
9999
10144
|
} | undefined;
|
|
10000
|
-
token_endpoint_auth_method?: "
|
|
10145
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10001
10146
|
client_metadata?: {
|
|
10002
10147
|
[x: string]: string;
|
|
10003
10148
|
} | undefined;
|
|
@@ -10099,7 +10244,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10099
10244
|
addons?: {
|
|
10100
10245
|
[x: string]: any;
|
|
10101
10246
|
} | undefined;
|
|
10102
|
-
token_endpoint_auth_method?: "
|
|
10247
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10103
10248
|
client_metadata?: {
|
|
10104
10249
|
[x: string]: string;
|
|
10105
10250
|
} | undefined;
|
|
@@ -10201,7 +10346,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10201
10346
|
addons?: {
|
|
10202
10347
|
[x: string]: any;
|
|
10203
10348
|
} | undefined;
|
|
10204
|
-
token_endpoint_auth_method?: "
|
|
10349
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10205
10350
|
client_metadata?: {
|
|
10206
10351
|
[x: string]: string;
|
|
10207
10352
|
} | undefined;
|
|
@@ -10318,7 +10463,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10318
10463
|
addons?: {
|
|
10319
10464
|
[x: string]: any;
|
|
10320
10465
|
} | undefined;
|
|
10321
|
-
token_endpoint_auth_method?: "
|
|
10466
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10322
10467
|
client_metadata?: {
|
|
10323
10468
|
[x: string]: string;
|
|
10324
10469
|
} | undefined;
|
|
@@ -10436,7 +10581,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10436
10581
|
custom_login_page_preview?: string | undefined;
|
|
10437
10582
|
form_template?: string | undefined;
|
|
10438
10583
|
addons?: Record<string, any> | undefined;
|
|
10439
|
-
token_endpoint_auth_method?: "
|
|
10584
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10440
10585
|
client_metadata?: Record<string, string> | undefined;
|
|
10441
10586
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10442
10587
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10522,7 +10667,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10522
10667
|
addons?: {
|
|
10523
10668
|
[x: string]: any;
|
|
10524
10669
|
} | undefined;
|
|
10525
|
-
token_endpoint_auth_method?: "
|
|
10670
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10526
10671
|
client_metadata?: {
|
|
10527
10672
|
[x: string]: string;
|
|
10528
10673
|
} | undefined;
|
|
@@ -10619,7 +10764,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10619
10764
|
custom_login_page_preview?: string | undefined;
|
|
10620
10765
|
form_template?: string | undefined;
|
|
10621
10766
|
addons?: Record<string, any> | undefined;
|
|
10622
|
-
token_endpoint_auth_method?: "
|
|
10767
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10623
10768
|
client_metadata?: Record<string, string> | undefined;
|
|
10624
10769
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10625
10770
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10705,7 +10850,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10705
10850
|
addons?: {
|
|
10706
10851
|
[x: string]: any;
|
|
10707
10852
|
} | undefined;
|
|
10708
|
-
token_endpoint_auth_method?: "
|
|
10853
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10709
10854
|
client_metadata?: {
|
|
10710
10855
|
[x: string]: string;
|
|
10711
10856
|
} | undefined;
|
|
@@ -10878,7 +11023,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10878
11023
|
} | undefined;
|
|
10879
11024
|
} | undefined;
|
|
10880
11025
|
passkey_options?: {
|
|
10881
|
-
challenge_ui?: "
|
|
11026
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
10882
11027
|
local_enrollment_enabled?: boolean | undefined;
|
|
10883
11028
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10884
11029
|
} | undefined;
|
|
@@ -11036,7 +11181,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11036
11181
|
} | undefined;
|
|
11037
11182
|
} | undefined;
|
|
11038
11183
|
passkey_options?: {
|
|
11039
|
-
challenge_ui?: "
|
|
11184
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
11040
11185
|
local_enrollment_enabled?: boolean | undefined;
|
|
11041
11186
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
11042
11187
|
} | undefined;
|
|
@@ -11172,13 +11317,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11172
11317
|
thumbprint: string;
|
|
11173
11318
|
connection?: string | undefined;
|
|
11174
11319
|
tenant_id?: string | undefined;
|
|
11175
|
-
current?: boolean | undefined;
|
|
11176
11320
|
next?: boolean | undefined;
|
|
11321
|
+
revoked_at?: string | undefined;
|
|
11322
|
+
current?: boolean | undefined;
|
|
11177
11323
|
previous?: boolean | undefined;
|
|
11178
11324
|
current_since?: string | undefined;
|
|
11179
11325
|
current_until?: string | undefined;
|
|
11180
11326
|
revoked?: boolean | undefined;
|
|
11181
|
-
revoked_at?: string | undefined;
|
|
11182
11327
|
expires_at?: string | undefined;
|
|
11183
11328
|
expired?: boolean | undefined;
|
|
11184
11329
|
inherited?: boolean | undefined;
|
|
@@ -11211,13 +11356,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11211
11356
|
thumbprint: string;
|
|
11212
11357
|
connection?: string | undefined;
|
|
11213
11358
|
tenant_id?: string | undefined;
|
|
11214
|
-
current?: boolean | undefined;
|
|
11215
11359
|
next?: boolean | undefined;
|
|
11360
|
+
revoked_at?: string | undefined;
|
|
11361
|
+
current?: boolean | undefined;
|
|
11216
11362
|
previous?: boolean | undefined;
|
|
11217
11363
|
current_since?: string | undefined;
|
|
11218
11364
|
current_until?: string | undefined;
|
|
11219
11365
|
revoked?: boolean | undefined;
|
|
11220
|
-
revoked_at?: string | undefined;
|
|
11221
11366
|
expires_at?: string | undefined;
|
|
11222
11367
|
expired?: boolean | undefined;
|
|
11223
11368
|
inherited?: boolean | undefined;
|
|
@@ -11249,13 +11394,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11249
11394
|
thumbprint: string;
|
|
11250
11395
|
connection?: string | undefined;
|
|
11251
11396
|
tenant_id?: string | undefined;
|
|
11252
|
-
current?: boolean | undefined;
|
|
11253
11397
|
next?: boolean | undefined;
|
|
11398
|
+
revoked_at?: string | undefined;
|
|
11399
|
+
current?: boolean | undefined;
|
|
11254
11400
|
previous?: boolean | undefined;
|
|
11255
11401
|
current_since?: string | undefined;
|
|
11256
11402
|
current_until?: string | undefined;
|
|
11257
11403
|
revoked?: boolean | undefined;
|
|
11258
|
-
revoked_at?: string | undefined;
|
|
11259
11404
|
expires_at?: string | undefined;
|
|
11260
11405
|
expired?: boolean | undefined;
|
|
11261
11406
|
inherited?: boolean | undefined;
|
|
@@ -11289,13 +11434,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11289
11434
|
thumbprint: string;
|
|
11290
11435
|
connection?: string | undefined;
|
|
11291
11436
|
tenant_id?: string | undefined;
|
|
11292
|
-
current?: boolean | undefined;
|
|
11293
11437
|
next?: boolean | undefined;
|
|
11438
|
+
revoked_at?: string | undefined;
|
|
11439
|
+
current?: boolean | undefined;
|
|
11294
11440
|
previous?: boolean | undefined;
|
|
11295
11441
|
current_since?: string | undefined;
|
|
11296
11442
|
current_until?: string | undefined;
|
|
11297
11443
|
revoked?: boolean | undefined;
|
|
11298
|
-
revoked_at?: string | undefined;
|
|
11299
11444
|
expires_at?: string | undefined;
|
|
11300
11445
|
expired?: boolean | undefined;
|
|
11301
11446
|
inherited?: boolean | undefined;
|
|
@@ -12140,12 +12285,11 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12140
12285
|
};
|
|
12141
12286
|
};
|
|
12142
12287
|
output: {
|
|
12143
|
-
client_id: string;
|
|
12144
|
-
created_at: string;
|
|
12145
|
-
rotating: boolean;
|
|
12146
12288
|
id: string;
|
|
12147
12289
|
user_id: string;
|
|
12148
|
-
|
|
12290
|
+
created_at: string;
|
|
12291
|
+
client_id: string;
|
|
12292
|
+
rotating: boolean;
|
|
12149
12293
|
device: {
|
|
12150
12294
|
initial_user_agent: string;
|
|
12151
12295
|
initial_ip: string;
|
|
@@ -12154,29 +12298,29 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12154
12298
|
last_ip: string;
|
|
12155
12299
|
last_asn: string;
|
|
12156
12300
|
};
|
|
12301
|
+
login_id: string;
|
|
12157
12302
|
resource_servers: {
|
|
12158
12303
|
audience: string;
|
|
12159
12304
|
scopes: string;
|
|
12160
12305
|
}[];
|
|
12161
|
-
|
|
12306
|
+
revoked_at?: string | undefined;
|
|
12162
12307
|
expires_at?: string | undefined;
|
|
12308
|
+
idle_expires_at?: string | undefined;
|
|
12163
12309
|
session_id?: string | undefined;
|
|
12310
|
+
organization?: string | undefined;
|
|
12164
12311
|
auth_connection?: string | undefined;
|
|
12165
12312
|
auth_strategy?: {
|
|
12166
12313
|
strategy: string;
|
|
12167
12314
|
strategy_type: string;
|
|
12168
12315
|
} | undefined;
|
|
12169
|
-
revoked_at?: string | undefined;
|
|
12170
|
-
idle_expires_at?: string | undefined;
|
|
12171
12316
|
last_exchanged_at?: string | undefined;
|
|
12172
12317
|
}[] | {
|
|
12173
12318
|
tokens: {
|
|
12174
|
-
client_id: string;
|
|
12175
|
-
created_at: string;
|
|
12176
|
-
rotating: boolean;
|
|
12177
12319
|
id: string;
|
|
12178
12320
|
user_id: string;
|
|
12179
|
-
|
|
12321
|
+
created_at: string;
|
|
12322
|
+
client_id: string;
|
|
12323
|
+
rotating: boolean;
|
|
12180
12324
|
device: {
|
|
12181
12325
|
initial_user_agent: string;
|
|
12182
12326
|
initial_ip: string;
|
|
@@ -12185,20 +12329,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12185
12329
|
last_ip: string;
|
|
12186
12330
|
last_asn: string;
|
|
12187
12331
|
};
|
|
12332
|
+
login_id: string;
|
|
12188
12333
|
resource_servers: {
|
|
12189
12334
|
audience: string;
|
|
12190
12335
|
scopes: string;
|
|
12191
12336
|
}[];
|
|
12192
|
-
|
|
12337
|
+
revoked_at?: string | undefined;
|
|
12193
12338
|
expires_at?: string | undefined;
|
|
12339
|
+
idle_expires_at?: string | undefined;
|
|
12194
12340
|
session_id?: string | undefined;
|
|
12341
|
+
organization?: string | undefined;
|
|
12195
12342
|
auth_connection?: string | undefined;
|
|
12196
12343
|
auth_strategy?: {
|
|
12197
12344
|
strategy: string;
|
|
12198
12345
|
strategy_type: string;
|
|
12199
12346
|
} | undefined;
|
|
12200
|
-
revoked_at?: string | undefined;
|
|
12201
|
-
idle_expires_at?: string | undefined;
|
|
12202
12347
|
last_exchanged_at?: string | undefined;
|
|
12203
12348
|
}[];
|
|
12204
12349
|
next?: string | undefined;
|
|
@@ -12207,12 +12352,11 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12207
12352
|
limit: number;
|
|
12208
12353
|
length: number;
|
|
12209
12354
|
tokens: {
|
|
12210
|
-
client_id: string;
|
|
12211
|
-
created_at: string;
|
|
12212
|
-
rotating: boolean;
|
|
12213
12355
|
id: string;
|
|
12214
12356
|
user_id: string;
|
|
12215
|
-
|
|
12357
|
+
created_at: string;
|
|
12358
|
+
client_id: string;
|
|
12359
|
+
rotating: boolean;
|
|
12216
12360
|
device: {
|
|
12217
12361
|
initial_user_agent: string;
|
|
12218
12362
|
initial_ip: string;
|
|
@@ -12221,20 +12365,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12221
12365
|
last_ip: string;
|
|
12222
12366
|
last_asn: string;
|
|
12223
12367
|
};
|
|
12368
|
+
login_id: string;
|
|
12224
12369
|
resource_servers: {
|
|
12225
12370
|
audience: string;
|
|
12226
12371
|
scopes: string;
|
|
12227
12372
|
}[];
|
|
12228
|
-
|
|
12373
|
+
revoked_at?: string | undefined;
|
|
12229
12374
|
expires_at?: string | undefined;
|
|
12375
|
+
idle_expires_at?: string | undefined;
|
|
12230
12376
|
session_id?: string | undefined;
|
|
12377
|
+
organization?: string | undefined;
|
|
12231
12378
|
auth_connection?: string | undefined;
|
|
12232
12379
|
auth_strategy?: {
|
|
12233
12380
|
strategy: string;
|
|
12234
12381
|
strategy_type: string;
|
|
12235
12382
|
} | undefined;
|
|
12236
|
-
revoked_at?: string | undefined;
|
|
12237
|
-
idle_expires_at?: string | undefined;
|
|
12238
12383
|
last_exchanged_at?: string | undefined;
|
|
12239
12384
|
}[];
|
|
12240
12385
|
total?: number | undefined;
|
|
@@ -12286,7 +12431,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12286
12431
|
};
|
|
12287
12432
|
};
|
|
12288
12433
|
output: {
|
|
12289
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "
|
|
12434
|
+
type: "fn" | "i" | "sui" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12290
12435
|
date: string;
|
|
12291
12436
|
isMobile: boolean;
|
|
12292
12437
|
log_id: string;
|
|
@@ -12325,7 +12470,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12325
12470
|
limit: number;
|
|
12326
12471
|
length: number;
|
|
12327
12472
|
logs: {
|
|
12328
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "
|
|
12473
|
+
type: "fn" | "i" | "sui" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12329
12474
|
date: string;
|
|
12330
12475
|
isMobile: boolean;
|
|
12331
12476
|
log_id: string;
|
|
@@ -12644,7 +12789,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12644
12789
|
};
|
|
12645
12790
|
} & {
|
|
12646
12791
|
json: {
|
|
12647
|
-
template: "
|
|
12792
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12648
12793
|
body: string;
|
|
12649
12794
|
from: string;
|
|
12650
12795
|
subject: string;
|
|
@@ -12665,7 +12810,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12665
12810
|
};
|
|
12666
12811
|
} & {
|
|
12667
12812
|
json: {
|
|
12668
|
-
template: "
|
|
12813
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12669
12814
|
body: string;
|
|
12670
12815
|
from: string;
|
|
12671
12816
|
subject: string;
|
|
@@ -12677,7 +12822,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12677
12822
|
};
|
|
12678
12823
|
};
|
|
12679
12824
|
output: {
|
|
12680
|
-
template: "
|
|
12825
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12681
12826
|
body: string;
|
|
12682
12827
|
from: string;
|
|
12683
12828
|
subject: string;
|
|
@@ -12700,7 +12845,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12700
12845
|
};
|
|
12701
12846
|
};
|
|
12702
12847
|
output: {
|
|
12703
|
-
name: "
|
|
12848
|
+
name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12704
12849
|
body: string;
|
|
12705
12850
|
subject: string;
|
|
12706
12851
|
}[];
|
|
@@ -12713,7 +12858,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12713
12858
|
$get: {
|
|
12714
12859
|
input: {
|
|
12715
12860
|
param: {
|
|
12716
|
-
templateName: "
|
|
12861
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12717
12862
|
};
|
|
12718
12863
|
} & {
|
|
12719
12864
|
header: {
|
|
@@ -12726,7 +12871,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12726
12871
|
} | {
|
|
12727
12872
|
input: {
|
|
12728
12873
|
param: {
|
|
12729
|
-
templateName: "
|
|
12874
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12730
12875
|
};
|
|
12731
12876
|
} & {
|
|
12732
12877
|
header: {
|
|
@@ -12734,7 +12879,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12734
12879
|
};
|
|
12735
12880
|
};
|
|
12736
12881
|
output: {
|
|
12737
|
-
template: "
|
|
12882
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12738
12883
|
body: string;
|
|
12739
12884
|
from: string;
|
|
12740
12885
|
subject: string;
|
|
@@ -12753,7 +12898,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12753
12898
|
$put: {
|
|
12754
12899
|
input: {
|
|
12755
12900
|
param: {
|
|
12756
|
-
templateName: "
|
|
12901
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12757
12902
|
};
|
|
12758
12903
|
} & {
|
|
12759
12904
|
header: {
|
|
@@ -12761,7 +12906,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12761
12906
|
};
|
|
12762
12907
|
} & {
|
|
12763
12908
|
json: {
|
|
12764
|
-
template: "
|
|
12909
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12765
12910
|
body: string;
|
|
12766
12911
|
subject: string;
|
|
12767
12912
|
syntax?: "liquid" | undefined;
|
|
@@ -12773,7 +12918,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12773
12918
|
};
|
|
12774
12919
|
};
|
|
12775
12920
|
output: {
|
|
12776
|
-
template: "
|
|
12921
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12777
12922
|
body: string;
|
|
12778
12923
|
from: string;
|
|
12779
12924
|
subject: string;
|
|
@@ -12792,7 +12937,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12792
12937
|
$patch: {
|
|
12793
12938
|
input: {
|
|
12794
12939
|
param: {
|
|
12795
|
-
templateName: "
|
|
12940
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12796
12941
|
};
|
|
12797
12942
|
} & {
|
|
12798
12943
|
header: {
|
|
@@ -12800,7 +12945,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12800
12945
|
};
|
|
12801
12946
|
} & {
|
|
12802
12947
|
json: {
|
|
12803
|
-
template?: "
|
|
12948
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12804
12949
|
body?: string | undefined;
|
|
12805
12950
|
from?: string | undefined;
|
|
12806
12951
|
subject?: string | undefined;
|
|
@@ -12817,7 +12962,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12817
12962
|
} | {
|
|
12818
12963
|
input: {
|
|
12819
12964
|
param: {
|
|
12820
|
-
templateName: "
|
|
12965
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12821
12966
|
};
|
|
12822
12967
|
} & {
|
|
12823
12968
|
header: {
|
|
@@ -12825,7 +12970,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12825
12970
|
};
|
|
12826
12971
|
} & {
|
|
12827
12972
|
json: {
|
|
12828
|
-
template?: "
|
|
12973
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12829
12974
|
body?: string | undefined;
|
|
12830
12975
|
from?: string | undefined;
|
|
12831
12976
|
subject?: string | undefined;
|
|
@@ -12837,7 +12982,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12837
12982
|
};
|
|
12838
12983
|
};
|
|
12839
12984
|
output: {
|
|
12840
|
-
template: "
|
|
12985
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12841
12986
|
body: string;
|
|
12842
12987
|
from: string;
|
|
12843
12988
|
subject: string;
|
|
@@ -12856,7 +13001,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12856
13001
|
$delete: {
|
|
12857
13002
|
input: {
|
|
12858
13003
|
param: {
|
|
12859
|
-
templateName: "
|
|
13004
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12860
13005
|
};
|
|
12861
13006
|
} & {
|
|
12862
13007
|
header: {
|
|
@@ -12869,7 +13014,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12869
13014
|
} | {
|
|
12870
13015
|
input: {
|
|
12871
13016
|
param: {
|
|
12872
|
-
templateName: "
|
|
13017
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12873
13018
|
};
|
|
12874
13019
|
} & {
|
|
12875
13020
|
header: {
|
|
@@ -12886,7 +13031,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12886
13031
|
$post: {
|
|
12887
13032
|
input: {
|
|
12888
13033
|
param: {
|
|
12889
|
-
templateName: "
|
|
13034
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12890
13035
|
};
|
|
12891
13036
|
} & {
|
|
12892
13037
|
header: {
|
|
@@ -13169,7 +13314,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13169
13314
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13170
13315
|
custom_domain_id: string;
|
|
13171
13316
|
primary: boolean;
|
|
13172
|
-
status: "pending" | "
|
|
13317
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
13173
13318
|
verification_method?: "txt" | undefined;
|
|
13174
13319
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13175
13320
|
domain_metadata?: {
|
|
@@ -13210,7 +13355,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13210
13355
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13211
13356
|
custom_domain_id: string;
|
|
13212
13357
|
primary: boolean;
|
|
13213
|
-
status: "pending" | "
|
|
13358
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
13214
13359
|
verification_method?: "txt" | undefined;
|
|
13215
13360
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13216
13361
|
domain_metadata?: {
|
|
@@ -13274,7 +13419,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13274
13419
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13275
13420
|
custom_domain_id: string;
|
|
13276
13421
|
primary: boolean;
|
|
13277
|
-
status: "pending" | "
|
|
13422
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
13278
13423
|
verification_method?: "txt" | undefined;
|
|
13279
13424
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13280
13425
|
domain_metadata?: {
|
|
@@ -13321,7 +13466,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13321
13466
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13322
13467
|
custom_domain_id: string;
|
|
13323
13468
|
primary: boolean;
|
|
13324
|
-
status: "pending" | "
|
|
13469
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
13325
13470
|
verification_method?: "txt" | undefined;
|
|
13326
13471
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13327
13472
|
domain_metadata?: {
|
|
@@ -13367,7 +13512,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13367
13512
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13368
13513
|
custom_domain_id: string;
|
|
13369
13514
|
primary: boolean;
|
|
13370
|
-
status: "pending" | "
|
|
13515
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
13371
13516
|
verification_method?: "txt" | undefined;
|
|
13372
13517
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13373
13518
|
domain_metadata?: {
|
|
@@ -13408,7 +13553,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13408
13553
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13409
13554
|
custom_domain_id: string;
|
|
13410
13555
|
primary: boolean;
|
|
13411
|
-
status: "pending" | "
|
|
13556
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
13412
13557
|
verification_method?: "txt" | undefined;
|
|
13413
13558
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13414
13559
|
domain_metadata?: {
|
|
@@ -13456,7 +13601,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13456
13601
|
base_focus_color: string;
|
|
13457
13602
|
base_hover_color: string;
|
|
13458
13603
|
body_text: string;
|
|
13459
|
-
captcha_widget_theme: "
|
|
13604
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
13460
13605
|
error: string;
|
|
13461
13606
|
header: string;
|
|
13462
13607
|
icons: string;
|
|
@@ -13546,7 +13691,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13546
13691
|
base_focus_color: string;
|
|
13547
13692
|
base_hover_color: string;
|
|
13548
13693
|
body_text: string;
|
|
13549
|
-
captcha_widget_theme: "
|
|
13694
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
13550
13695
|
error: string;
|
|
13551
13696
|
header: string;
|
|
13552
13697
|
icons: string;
|
|
@@ -13625,7 +13770,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13625
13770
|
base_focus_color: string;
|
|
13626
13771
|
base_hover_color: string;
|
|
13627
13772
|
body_text: string;
|
|
13628
|
-
captcha_widget_theme: "
|
|
13773
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
13629
13774
|
error: string;
|
|
13630
13775
|
header: string;
|
|
13631
13776
|
icons: string;
|
|
@@ -13715,7 +13860,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13715
13860
|
font?: {
|
|
13716
13861
|
url: string;
|
|
13717
13862
|
} | undefined;
|
|
13718
|
-
dark_mode?: "
|
|
13863
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
13719
13864
|
};
|
|
13720
13865
|
outputFormat: "json";
|
|
13721
13866
|
status: 200;
|
|
@@ -13745,7 +13890,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13745
13890
|
font?: {
|
|
13746
13891
|
url: string;
|
|
13747
13892
|
} | undefined;
|
|
13748
|
-
dark_mode?: "
|
|
13893
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
13749
13894
|
};
|
|
13750
13895
|
};
|
|
13751
13896
|
output: {
|
|
@@ -13764,7 +13909,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13764
13909
|
font?: {
|
|
13765
13910
|
url: string;
|
|
13766
13911
|
} | undefined;
|
|
13767
|
-
dark_mode?: "
|
|
13912
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
13768
13913
|
};
|
|
13769
13914
|
outputFormat: "json";
|
|
13770
13915
|
status: 200;
|
|
@@ -13838,7 +13983,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13838
13983
|
} & {
|
|
13839
13984
|
json: {
|
|
13840
13985
|
body?: string | undefined;
|
|
13841
|
-
screen?: "password" | "
|
|
13986
|
+
screen?: "password" | "identifier" | "signup" | "login" | undefined;
|
|
13842
13987
|
branding?: {
|
|
13843
13988
|
colors?: {
|
|
13844
13989
|
primary: string;
|
|
@@ -13855,7 +14000,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13855
14000
|
font?: {
|
|
13856
14001
|
url: string;
|
|
13857
14002
|
} | undefined;
|
|
13858
|
-
dark_mode?: "
|
|
14003
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
13859
14004
|
} | undefined;
|
|
13860
14005
|
theme?: {
|
|
13861
14006
|
borders?: {
|
|
@@ -13873,7 +14018,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13873
14018
|
base_focus_color: string;
|
|
13874
14019
|
base_hover_color: string;
|
|
13875
14020
|
body_text: string;
|
|
13876
|
-
captcha_widget_theme: "
|
|
14021
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
13877
14022
|
error: string;
|
|
13878
14023
|
header: string;
|
|
13879
14024
|
icons: string;
|
|
@@ -13981,7 +14126,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13981
14126
|
deployed_at?: string | undefined;
|
|
13982
14127
|
secrets?: {
|
|
13983
14128
|
name: string;
|
|
13984
|
-
value?: string | undefined;
|
|
13985
14129
|
}[] | undefined;
|
|
13986
14130
|
};
|
|
13987
14131
|
created_at: string;
|
|
@@ -14043,7 +14187,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14043
14187
|
deployed_at?: string | undefined;
|
|
14044
14188
|
secrets?: {
|
|
14045
14189
|
name: string;
|
|
14046
|
-
value?: string | undefined;
|
|
14047
14190
|
}[] | undefined;
|
|
14048
14191
|
};
|
|
14049
14192
|
created_at: string;
|
|
@@ -14180,7 +14323,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14180
14323
|
deployed_at?: string | undefined;
|
|
14181
14324
|
secrets?: {
|
|
14182
14325
|
name: string;
|
|
14183
|
-
value?: string | undefined;
|
|
14184
14326
|
}[] | undefined;
|
|
14185
14327
|
}[] | {
|
|
14186
14328
|
start: number;
|
|
@@ -14208,7 +14350,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14208
14350
|
deployed_at?: string | undefined;
|
|
14209
14351
|
secrets?: {
|
|
14210
14352
|
name: string;
|
|
14211
|
-
value?: string | undefined;
|
|
14212
14353
|
}[] | undefined;
|
|
14213
14354
|
}[];
|
|
14214
14355
|
total?: number | undefined;
|
|
@@ -14268,7 +14409,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14268
14409
|
deployed_at?: string | undefined;
|
|
14269
14410
|
secrets?: {
|
|
14270
14411
|
name: string;
|
|
14271
|
-
value?: string | undefined;
|
|
14272
14412
|
}[] | undefined;
|
|
14273
14413
|
};
|
|
14274
14414
|
outputFormat: "json";
|
|
@@ -14322,7 +14462,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14322
14462
|
deployed_at?: string | undefined;
|
|
14323
14463
|
secrets?: {
|
|
14324
14464
|
name: string;
|
|
14325
|
-
value?: string | undefined;
|
|
14326
14465
|
}[] | undefined;
|
|
14327
14466
|
};
|
|
14328
14467
|
outputFormat: "json";
|
|
@@ -14416,7 +14555,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14416
14555
|
deployed_at?: string | undefined;
|
|
14417
14556
|
secrets?: {
|
|
14418
14557
|
name: string;
|
|
14419
|
-
value?: string | undefined;
|
|
14420
14558
|
}[] | undefined;
|
|
14421
14559
|
};
|
|
14422
14560
|
outputFormat: "json";
|
|
@@ -14513,7 +14651,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14513
14651
|
deployed_at?: string | undefined;
|
|
14514
14652
|
secrets?: {
|
|
14515
14653
|
name: string;
|
|
14516
|
-
value?: string | undefined;
|
|
14517
14654
|
}[] | undefined;
|
|
14518
14655
|
};
|
|
14519
14656
|
outputFormat: "json";
|
|
@@ -14730,7 +14867,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14730
14867
|
deployed_at?: string | undefined;
|
|
14731
14868
|
secrets?: {
|
|
14732
14869
|
name: string;
|
|
14733
|
-
value?: string | undefined;
|
|
14734
14870
|
}[] | undefined;
|
|
14735
14871
|
};
|
|
14736
14872
|
outputFormat: "json";
|
|
@@ -14859,7 +14995,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14859
14995
|
message: string;
|
|
14860
14996
|
};
|
|
14861
14997
|
outputFormat: "json";
|
|
14862
|
-
status:
|
|
14998
|
+
status: 500;
|
|
14863
14999
|
} | {
|
|
14864
15000
|
input: {
|
|
14865
15001
|
query: {
|
|
@@ -14877,7 +15013,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14877
15013
|
message: string;
|
|
14878
15014
|
};
|
|
14879
15015
|
outputFormat: "json";
|
|
14880
|
-
status:
|
|
15016
|
+
status: 400;
|
|
14881
15017
|
};
|
|
14882
15018
|
};
|
|
14883
15019
|
} & {
|
|
@@ -14915,7 +15051,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14915
15051
|
message: string;
|
|
14916
15052
|
};
|
|
14917
15053
|
outputFormat: "json";
|
|
14918
|
-
status:
|
|
15054
|
+
status: 500;
|
|
14919
15055
|
} | {
|
|
14920
15056
|
input: {
|
|
14921
15057
|
form: {
|
|
@@ -14933,7 +15069,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14933
15069
|
message: string;
|
|
14934
15070
|
};
|
|
14935
15071
|
outputFormat: "json";
|
|
14936
|
-
status:
|
|
15072
|
+
status: 400;
|
|
14937
15073
|
};
|
|
14938
15074
|
};
|
|
14939
15075
|
}, "/login/callback"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -14971,7 +15107,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14971
15107
|
message: string;
|
|
14972
15108
|
};
|
|
14973
15109
|
outputFormat: "json";
|
|
14974
|
-
status:
|
|
15110
|
+
status: 500;
|
|
14975
15111
|
} | {
|
|
14976
15112
|
input: {
|
|
14977
15113
|
query: {
|
|
@@ -14989,7 +15125,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14989
15125
|
message: string;
|
|
14990
15126
|
};
|
|
14991
15127
|
outputFormat: "json";
|
|
14992
|
-
status:
|
|
15128
|
+
status: 400;
|
|
14993
15129
|
};
|
|
14994
15130
|
};
|
|
14995
15131
|
} & {
|
|
@@ -15027,7 +15163,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15027
15163
|
message: string;
|
|
15028
15164
|
};
|
|
15029
15165
|
outputFormat: "json";
|
|
15030
|
-
status:
|
|
15166
|
+
status: 500;
|
|
15031
15167
|
} | {
|
|
15032
15168
|
input: {
|
|
15033
15169
|
form: {
|
|
@@ -15045,7 +15181,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15045
15181
|
message: string;
|
|
15046
15182
|
};
|
|
15047
15183
|
outputFormat: "json";
|
|
15048
|
-
status:
|
|
15184
|
+
status: 400;
|
|
15049
15185
|
};
|
|
15050
15186
|
};
|
|
15051
15187
|
}, "/callback"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -15109,7 +15245,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15109
15245
|
scope?: string | undefined;
|
|
15110
15246
|
grant_types?: string[] | undefined;
|
|
15111
15247
|
response_types?: string[] | undefined;
|
|
15112
|
-
token_endpoint_auth_method?: "
|
|
15248
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
15113
15249
|
jwks_uri?: string | undefined;
|
|
15114
15250
|
jwks?: Record<string, unknown> | undefined;
|
|
15115
15251
|
software_id?: string | undefined;
|
|
@@ -15198,7 +15334,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15198
15334
|
scope?: string | undefined;
|
|
15199
15335
|
grant_types?: string[] | undefined;
|
|
15200
15336
|
response_types?: string[] | undefined;
|
|
15201
|
-
token_endpoint_auth_method?: "
|
|
15337
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
15202
15338
|
jwks_uri?: string | undefined;
|
|
15203
15339
|
jwks?: Record<string, unknown> | undefined;
|
|
15204
15340
|
software_id?: string | undefined;
|
|
@@ -15255,7 +15391,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15255
15391
|
client_id: string;
|
|
15256
15392
|
redirect_url?: string | undefined;
|
|
15257
15393
|
login_hint?: string | undefined;
|
|
15258
|
-
screen_hint?: "
|
|
15394
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
15259
15395
|
};
|
|
15260
15396
|
};
|
|
15261
15397
|
output: {};
|
|
@@ -15267,7 +15403,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15267
15403
|
client_id: string;
|
|
15268
15404
|
redirect_url?: string | undefined;
|
|
15269
15405
|
login_hint?: string | undefined;
|
|
15270
|
-
screen_hint?: "
|
|
15406
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
15271
15407
|
};
|
|
15272
15408
|
};
|
|
15273
15409
|
output: {
|
|
@@ -15544,19 +15680,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15544
15680
|
email: string;
|
|
15545
15681
|
send: "code" | "link";
|
|
15546
15682
|
authParams: {
|
|
15547
|
-
|
|
15548
|
-
state?: string | undefined;
|
|
15549
|
-
act_as?: string | undefined;
|
|
15683
|
+
username?: string | undefined;
|
|
15550
15684
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15551
15685
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15552
|
-
|
|
15686
|
+
scope?: string | undefined;
|
|
15553
15687
|
audience?: string | undefined;
|
|
15554
15688
|
organization?: string | undefined;
|
|
15555
|
-
|
|
15689
|
+
state?: string | undefined;
|
|
15690
|
+
redirect_uri?: string | undefined;
|
|
15556
15691
|
prompt?: string | undefined;
|
|
15692
|
+
act_as?: string | undefined;
|
|
15693
|
+
nonce?: string | undefined;
|
|
15557
15694
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15558
15695
|
code_challenge?: string | undefined;
|
|
15559
|
-
username?: string | undefined;
|
|
15560
15696
|
ui_locales?: string | undefined;
|
|
15561
15697
|
max_age?: number | undefined;
|
|
15562
15698
|
acr_values?: string | undefined;
|
|
@@ -15580,19 +15716,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15580
15716
|
phone_number: string;
|
|
15581
15717
|
send: "code" | "link";
|
|
15582
15718
|
authParams: {
|
|
15583
|
-
|
|
15584
|
-
state?: string | undefined;
|
|
15585
|
-
act_as?: string | undefined;
|
|
15719
|
+
username?: string | undefined;
|
|
15586
15720
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15587
15721
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15588
|
-
|
|
15722
|
+
scope?: string | undefined;
|
|
15589
15723
|
audience?: string | undefined;
|
|
15590
15724
|
organization?: string | undefined;
|
|
15591
|
-
|
|
15725
|
+
state?: string | undefined;
|
|
15726
|
+
redirect_uri?: string | undefined;
|
|
15592
15727
|
prompt?: string | undefined;
|
|
15728
|
+
act_as?: string | undefined;
|
|
15729
|
+
nonce?: string | undefined;
|
|
15593
15730
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15594
15731
|
code_challenge?: string | undefined;
|
|
15595
|
-
username?: string | undefined;
|
|
15596
15732
|
ui_locales?: string | undefined;
|
|
15597
15733
|
max_age?: number | undefined;
|
|
15598
15734
|
acr_values?: string | undefined;
|
|
@@ -15657,7 +15793,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15657
15793
|
error_description?: string | undefined;
|
|
15658
15794
|
};
|
|
15659
15795
|
outputFormat: "json";
|
|
15660
|
-
status:
|
|
15796
|
+
status: 500;
|
|
15661
15797
|
} | {
|
|
15662
15798
|
input: {
|
|
15663
15799
|
query: {
|
|
@@ -15678,7 +15814,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15678
15814
|
error_description?: string | undefined;
|
|
15679
15815
|
};
|
|
15680
15816
|
outputFormat: "json";
|
|
15681
|
-
status:
|
|
15817
|
+
status: 400;
|
|
15682
15818
|
};
|
|
15683
15819
|
};
|
|
15684
15820
|
}, "/passwordless"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -15822,7 +15958,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15822
15958
|
client_id: string;
|
|
15823
15959
|
username: string;
|
|
15824
15960
|
otp: string;
|
|
15825
|
-
realm: "
|
|
15961
|
+
realm: "email" | "sms";
|
|
15826
15962
|
scope?: string | undefined;
|
|
15827
15963
|
audience?: string | undefined;
|
|
15828
15964
|
} | {
|
|
@@ -15871,7 +16007,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15871
16007
|
client_id: string;
|
|
15872
16008
|
username: string;
|
|
15873
16009
|
otp: string;
|
|
15874
|
-
realm: "
|
|
16010
|
+
realm: "email" | "sms";
|
|
15875
16011
|
scope?: string | undefined;
|
|
15876
16012
|
audience?: string | undefined;
|
|
15877
16013
|
} | {
|
|
@@ -15887,17 +16023,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15887
16023
|
client_assertion_type?: string | undefined;
|
|
15888
16024
|
};
|
|
15889
16025
|
};
|
|
15890
|
-
output: {
|
|
15891
|
-
|
|
15892
|
-
|
|
15893
|
-
expires_in: number;
|
|
15894
|
-
id_token?: string | undefined;
|
|
15895
|
-
scope?: string | undefined;
|
|
15896
|
-
state?: string | undefined;
|
|
15897
|
-
refresh_token?: string | undefined;
|
|
15898
|
-
};
|
|
15899
|
-
outputFormat: "json";
|
|
15900
|
-
status: 200;
|
|
16026
|
+
output: {};
|
|
16027
|
+
outputFormat: string;
|
|
16028
|
+
status: 302;
|
|
15901
16029
|
} | {
|
|
15902
16030
|
input: {
|
|
15903
16031
|
form: {
|
|
@@ -15933,7 +16061,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15933
16061
|
client_id: string;
|
|
15934
16062
|
username: string;
|
|
15935
16063
|
otp: string;
|
|
15936
|
-
realm: "
|
|
16064
|
+
realm: "email" | "sms";
|
|
15937
16065
|
scope?: string | undefined;
|
|
15938
16066
|
audience?: string | undefined;
|
|
15939
16067
|
} | {
|
|
@@ -15982,7 +16110,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15982
16110
|
client_id: string;
|
|
15983
16111
|
username: string;
|
|
15984
16112
|
otp: string;
|
|
15985
|
-
realm: "
|
|
16113
|
+
realm: "email" | "sms";
|
|
15986
16114
|
scope?: string | undefined;
|
|
15987
16115
|
audience?: string | undefined;
|
|
15988
16116
|
} | {
|
|
@@ -15998,9 +16126,17 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15998
16126
|
client_assertion_type?: string | undefined;
|
|
15999
16127
|
};
|
|
16000
16128
|
};
|
|
16001
|
-
output: {
|
|
16002
|
-
|
|
16003
|
-
|
|
16129
|
+
output: {
|
|
16130
|
+
access_token: string;
|
|
16131
|
+
token_type: string;
|
|
16132
|
+
expires_in: number;
|
|
16133
|
+
id_token?: string | undefined;
|
|
16134
|
+
scope?: string | undefined;
|
|
16135
|
+
state?: string | undefined;
|
|
16136
|
+
refresh_token?: string | undefined;
|
|
16137
|
+
};
|
|
16138
|
+
outputFormat: "json";
|
|
16139
|
+
status: 200;
|
|
16004
16140
|
} | {
|
|
16005
16141
|
input: {
|
|
16006
16142
|
form: {
|
|
@@ -16036,7 +16172,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16036
16172
|
client_id: string;
|
|
16037
16173
|
username: string;
|
|
16038
16174
|
otp: string;
|
|
16039
|
-
realm: "
|
|
16175
|
+
realm: "email" | "sms";
|
|
16040
16176
|
scope?: string | undefined;
|
|
16041
16177
|
audience?: string | undefined;
|
|
16042
16178
|
} | {
|
|
@@ -16085,7 +16221,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16085
16221
|
client_id: string;
|
|
16086
16222
|
username: string;
|
|
16087
16223
|
otp: string;
|
|
16088
|
-
realm: "
|
|
16224
|
+
realm: "email" | "sms";
|
|
16089
16225
|
scope?: string | undefined;
|
|
16090
16226
|
audience?: string | undefined;
|
|
16091
16227
|
} | {
|
|
@@ -16142,7 +16278,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16142
16278
|
client_id: string;
|
|
16143
16279
|
username: string;
|
|
16144
16280
|
otp: string;
|
|
16145
|
-
realm: "
|
|
16281
|
+
realm: "email" | "sms";
|
|
16146
16282
|
scope?: string | undefined;
|
|
16147
16283
|
audience?: string | undefined;
|
|
16148
16284
|
} | {
|
|
@@ -16191,7 +16327,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16191
16327
|
client_id: string;
|
|
16192
16328
|
username: string;
|
|
16193
16329
|
otp: string;
|
|
16194
|
-
realm: "
|
|
16330
|
+
realm: "email" | "sms";
|
|
16195
16331
|
scope?: string | undefined;
|
|
16196
16332
|
audience?: string | undefined;
|
|
16197
16333
|
} | {
|
|
@@ -16248,7 +16384,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16248
16384
|
client_id: string;
|
|
16249
16385
|
username: string;
|
|
16250
16386
|
otp: string;
|
|
16251
|
-
realm: "
|
|
16387
|
+
realm: "email" | "sms";
|
|
16252
16388
|
scope?: string | undefined;
|
|
16253
16389
|
audience?: string | undefined;
|
|
16254
16390
|
} | {
|
|
@@ -16297,7 +16433,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16297
16433
|
client_id: string;
|
|
16298
16434
|
username: string;
|
|
16299
16435
|
otp: string;
|
|
16300
|
-
realm: "
|
|
16436
|
+
realm: "email" | "sms";
|
|
16301
16437
|
scope?: string | undefined;
|
|
16302
16438
|
audience?: string | undefined;
|
|
16303
16439
|
} | {
|
|
@@ -16521,7 +16657,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16521
16657
|
};
|
|
16522
16658
|
output: {};
|
|
16523
16659
|
outputFormat: string;
|
|
16524
|
-
status:
|
|
16660
|
+
status: 200;
|
|
16525
16661
|
} | {
|
|
16526
16662
|
input: {
|
|
16527
16663
|
query: {
|
|
@@ -16535,7 +16671,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16535
16671
|
};
|
|
16536
16672
|
output: {};
|
|
16537
16673
|
outputFormat: string;
|
|
16538
|
-
status:
|
|
16674
|
+
status: 302;
|
|
16539
16675
|
} | {
|
|
16540
16676
|
input: {
|
|
16541
16677
|
query: {
|
|
@@ -16656,7 +16792,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16656
16792
|
};
|
|
16657
16793
|
output: {};
|
|
16658
16794
|
outputFormat: string;
|
|
16659
|
-
status:
|
|
16795
|
+
status: 500;
|
|
16660
16796
|
} | {
|
|
16661
16797
|
input: {
|
|
16662
16798
|
query: {
|
|
@@ -16665,7 +16801,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16665
16801
|
};
|
|
16666
16802
|
output: {};
|
|
16667
16803
|
outputFormat: string;
|
|
16668
|
-
status:
|
|
16804
|
+
status: 302;
|
|
16669
16805
|
} | {
|
|
16670
16806
|
input: {
|
|
16671
16807
|
query: {
|
|
@@ -16674,7 +16810,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16674
16810
|
};
|
|
16675
16811
|
output: {};
|
|
16676
16812
|
outputFormat: string;
|
|
16677
|
-
status:
|
|
16813
|
+
status: 400;
|
|
16678
16814
|
};
|
|
16679
16815
|
};
|
|
16680
16816
|
}, "/continue"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -17144,7 +17280,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17144
17280
|
} & {
|
|
17145
17281
|
form: {
|
|
17146
17282
|
username: string;
|
|
17147
|
-
login_selection?: "
|
|
17283
|
+
login_selection?: "password" | "code" | undefined;
|
|
17148
17284
|
};
|
|
17149
17285
|
};
|
|
17150
17286
|
output: {};
|
|
@@ -17158,7 +17294,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17158
17294
|
} & {
|
|
17159
17295
|
form: {
|
|
17160
17296
|
username: string;
|
|
17161
|
-
login_selection?: "
|
|
17297
|
+
login_selection?: "password" | "code" | undefined;
|
|
17162
17298
|
};
|
|
17163
17299
|
};
|
|
17164
17300
|
output: {};
|
|
@@ -17523,7 +17659,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17523
17659
|
$get: {
|
|
17524
17660
|
input: {
|
|
17525
17661
|
param: {
|
|
17526
|
-
screen: "
|
|
17662
|
+
screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "account" | "enter-password" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
17527
17663
|
};
|
|
17528
17664
|
} & {
|
|
17529
17665
|
query: {
|
|
@@ -17539,7 +17675,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17539
17675
|
} | {
|
|
17540
17676
|
input: {
|
|
17541
17677
|
param: {
|
|
17542
|
-
screen: "
|
|
17678
|
+
screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "account" | "enter-password" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
17543
17679
|
};
|
|
17544
17680
|
} & {
|
|
17545
17681
|
query: {
|
|
@@ -17555,7 +17691,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17555
17691
|
} | {
|
|
17556
17692
|
input: {
|
|
17557
17693
|
param: {
|
|
17558
|
-
screen: "
|
|
17694
|
+
screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "account" | "enter-password" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
17559
17695
|
};
|
|
17560
17696
|
} & {
|
|
17561
17697
|
query: {
|
|
@@ -17575,7 +17711,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17575
17711
|
$post: {
|
|
17576
17712
|
input: {
|
|
17577
17713
|
param: {
|
|
17578
|
-
screen: "
|
|
17714
|
+
screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "enter-password" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
17579
17715
|
};
|
|
17580
17716
|
} & {
|
|
17581
17717
|
query: {
|
|
@@ -17593,7 +17729,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17593
17729
|
} | {
|
|
17594
17730
|
input: {
|
|
17595
17731
|
param: {
|
|
17596
|
-
screen: "
|
|
17732
|
+
screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "enter-password" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
17597
17733
|
};
|
|
17598
17734
|
} & {
|
|
17599
17735
|
query: {
|