authhero 9.10.0 → 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 +146 -146
- package/dist/authhero.d.ts +341 -119
- package/dist/authhero.mjs +15107 -14199
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/reserved-claims.d.ts +2 -2
- 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 +238 -115
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +9 -9
- package/dist/types/routes/management-api/client-grants.d.ts +9 -9
- package/dist/types/routes/management-api/failed-events.d.ts +2 -2
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +194 -75
- package/dist/types/routes/management-api/jobs.d.ts +133 -0
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- 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/users.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
- package/dist/types/state-machines/login-session.d.ts +1 -1
- package/dist/types/types/AuthHeroConfig.d.ts +13 -0
- package/dist/types/types/Bindings.d.ts +2 -0
- package/dist/types/types/auth0/UserImport.d.ts +317 -0
- package/package.json +6 -6
package/dist/types/index.d.ts
CHANGED
|
@@ -18,6 +18,10 @@ export type { OutboxMetric, OutboxMetricName, OutboxMetricsSink, } from "./types
|
|
|
18
18
|
export { cleanupOutbox } from "./helpers/outbox-cleanup";
|
|
19
19
|
export { cleanupCodes } from "./helpers/codes-cleanup";
|
|
20
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";
|
|
21
25
|
export type { OutboxCleanupParams } from "./helpers/outbox-cleanup";
|
|
22
26
|
export type { CodesCleanupParams } from "./helpers/codes-cleanup";
|
|
23
27
|
export type { ActionExecutionsCleanupParams } from "./helpers/action-executions-cleanup";
|
|
@@ -78,6 +82,125 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
78
82
|
Bindings: Bindings;
|
|
79
83
|
Variables: Variables;
|
|
80
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<{
|
|
81
204
|
"/export": {
|
|
82
205
|
$get: {
|
|
83
206
|
input: {
|
|
@@ -170,7 +293,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
170
293
|
};
|
|
171
294
|
} & {
|
|
172
295
|
json: {
|
|
173
|
-
type: "
|
|
296
|
+
type: "email" | "totp" | "phone" | "push" | "passkey" | "webauthn-roaming" | "webauthn-platform";
|
|
174
297
|
phone_number?: string | undefined;
|
|
175
298
|
totp_secret?: string | undefined;
|
|
176
299
|
credential_id?: string | undefined;
|
|
@@ -310,7 +433,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
310
433
|
};
|
|
311
434
|
};
|
|
312
435
|
output: {
|
|
313
|
-
name: "
|
|
436
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
314
437
|
enabled: boolean;
|
|
315
438
|
trial_expired?: boolean | undefined;
|
|
316
439
|
}[];
|
|
@@ -465,7 +588,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
465
588
|
$get: {
|
|
466
589
|
input: {
|
|
467
590
|
param: {
|
|
468
|
-
factor_name: "
|
|
591
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
469
592
|
};
|
|
470
593
|
} & {
|
|
471
594
|
header: {
|
|
@@ -473,7 +596,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
473
596
|
};
|
|
474
597
|
};
|
|
475
598
|
output: {
|
|
476
|
-
name: "
|
|
599
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
477
600
|
enabled: boolean;
|
|
478
601
|
trial_expired?: boolean | undefined;
|
|
479
602
|
};
|
|
@@ -486,7 +609,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
486
609
|
$put: {
|
|
487
610
|
input: {
|
|
488
611
|
param: {
|
|
489
|
-
factor_name: "
|
|
612
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
490
613
|
};
|
|
491
614
|
} & {
|
|
492
615
|
header: {
|
|
@@ -498,7 +621,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
498
621
|
};
|
|
499
622
|
};
|
|
500
623
|
output: {
|
|
501
|
-
name: "
|
|
624
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
502
625
|
enabled: boolean;
|
|
503
626
|
trial_expired?: boolean | undefined;
|
|
504
627
|
};
|
|
@@ -1277,9 +1400,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1277
1400
|
email?: string | undefined;
|
|
1278
1401
|
};
|
|
1279
1402
|
id?: string | undefined;
|
|
1280
|
-
connection_id?: string | undefined;
|
|
1281
1403
|
app_metadata?: Record<string, any> | undefined;
|
|
1282
1404
|
user_metadata?: Record<string, any> | undefined;
|
|
1405
|
+
connection_id?: string | undefined;
|
|
1283
1406
|
roles?: string[] | undefined;
|
|
1284
1407
|
ttl_sec?: number | undefined;
|
|
1285
1408
|
send_invitation_email?: boolean | undefined;
|
|
@@ -1465,8 +1588,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1465
1588
|
};
|
|
1466
1589
|
} & {
|
|
1467
1590
|
json: {
|
|
1468
|
-
assign_membership_on_login?: boolean | undefined;
|
|
1469
1591
|
show_as_button?: boolean | undefined;
|
|
1592
|
+
assign_membership_on_login?: boolean | undefined;
|
|
1470
1593
|
is_signup_enabled?: boolean | undefined;
|
|
1471
1594
|
};
|
|
1472
1595
|
};
|
|
@@ -2037,9 +2160,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2037
2160
|
};
|
|
2038
2161
|
} & {
|
|
2039
2162
|
query: {
|
|
2040
|
-
from?: string | undefined;
|
|
2041
2163
|
page?: string | undefined;
|
|
2042
2164
|
include_totals?: string | undefined;
|
|
2165
|
+
from?: string | undefined;
|
|
2043
2166
|
per_page?: string | undefined;
|
|
2044
2167
|
take?: string | undefined;
|
|
2045
2168
|
};
|
|
@@ -7109,7 +7232,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7109
7232
|
};
|
|
7110
7233
|
};
|
|
7111
7234
|
output: {
|
|
7112
|
-
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";
|
|
7113
7236
|
language: string;
|
|
7114
7237
|
}[];
|
|
7115
7238
|
outputFormat: "json";
|
|
@@ -7147,7 +7270,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7147
7270
|
$get: {
|
|
7148
7271
|
input: {
|
|
7149
7272
|
param: {
|
|
7150
|
-
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";
|
|
7151
7274
|
language: string;
|
|
7152
7275
|
};
|
|
7153
7276
|
} & {
|
|
@@ -7169,7 +7292,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7169
7292
|
$put: {
|
|
7170
7293
|
input: {
|
|
7171
7294
|
param: {
|
|
7172
|
-
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";
|
|
7173
7296
|
language: string;
|
|
7174
7297
|
};
|
|
7175
7298
|
} & {
|
|
@@ -7193,7 +7316,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7193
7316
|
$delete: {
|
|
7194
7317
|
input: {
|
|
7195
7318
|
param: {
|
|
7196
|
-
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";
|
|
7197
7320
|
language: string;
|
|
7198
7321
|
};
|
|
7199
7322
|
} & {
|
|
@@ -8803,9 +8926,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8803
8926
|
tenant_id: string;
|
|
8804
8927
|
event_type: string;
|
|
8805
8928
|
log_type: string;
|
|
8806
|
-
category: "
|
|
8929
|
+
category: "system" | "user_action" | "admin_action" | "api";
|
|
8807
8930
|
actor: {
|
|
8808
|
-
type: "
|
|
8931
|
+
type: "user" | "system" | "client_credentials" | "admin" | "api_key";
|
|
8809
8932
|
id?: string | undefined;
|
|
8810
8933
|
email?: string | undefined;
|
|
8811
8934
|
org_id?: string | undefined;
|
|
@@ -9306,7 +9429,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9306
9429
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9307
9430
|
};
|
|
9308
9431
|
id: string;
|
|
9309
|
-
status: "
|
|
9432
|
+
status: "active" | "suspended" | "paused";
|
|
9310
9433
|
filters?: {
|
|
9311
9434
|
type: string;
|
|
9312
9435
|
name: string;
|
|
@@ -9338,7 +9461,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9338
9461
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9339
9462
|
};
|
|
9340
9463
|
id: string;
|
|
9341
|
-
status: "
|
|
9464
|
+
status: "active" | "suspended" | "paused";
|
|
9342
9465
|
filters?: {
|
|
9343
9466
|
type: string;
|
|
9344
9467
|
name: string;
|
|
@@ -9363,7 +9486,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9363
9486
|
name: string;
|
|
9364
9487
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
9365
9488
|
sink: Record<string, unknown>;
|
|
9366
|
-
status?: "
|
|
9489
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
9367
9490
|
filters?: {
|
|
9368
9491
|
type: string;
|
|
9369
9492
|
name: string;
|
|
@@ -9378,7 +9501,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9378
9501
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9379
9502
|
};
|
|
9380
9503
|
id: string;
|
|
9381
|
-
status: "
|
|
9504
|
+
status: "active" | "suspended" | "paused";
|
|
9382
9505
|
filters?: {
|
|
9383
9506
|
type: string;
|
|
9384
9507
|
name: string;
|
|
@@ -9413,7 +9536,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9413
9536
|
}[] | undefined;
|
|
9414
9537
|
isPriority?: boolean | undefined;
|
|
9415
9538
|
id?: string | undefined;
|
|
9416
|
-
status?: "
|
|
9539
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
9417
9540
|
created_at?: string | undefined;
|
|
9418
9541
|
updated_at?: string | undefined;
|
|
9419
9542
|
};
|
|
@@ -9425,7 +9548,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9425
9548
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9426
9549
|
};
|
|
9427
9550
|
id: string;
|
|
9428
|
-
status: "
|
|
9551
|
+
status: "active" | "suspended" | "paused";
|
|
9429
9552
|
filters?: {
|
|
9430
9553
|
type: string;
|
|
9431
9554
|
name: string;
|
|
@@ -9476,7 +9599,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9476
9599
|
};
|
|
9477
9600
|
};
|
|
9478
9601
|
output: {
|
|
9479
|
-
type: "fn" | "
|
|
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";
|
|
9480
9603
|
date: string;
|
|
9481
9604
|
isMobile: boolean;
|
|
9482
9605
|
log_id: string;
|
|
@@ -9515,7 +9638,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9515
9638
|
limit: number;
|
|
9516
9639
|
length: number;
|
|
9517
9640
|
logs: {
|
|
9518
|
-
type: "fn" | "
|
|
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";
|
|
9519
9642
|
date: string;
|
|
9520
9643
|
isMobile: boolean;
|
|
9521
9644
|
log_id: string;
|
|
@@ -9554,7 +9677,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9554
9677
|
next?: string | undefined;
|
|
9555
9678
|
} | {
|
|
9556
9679
|
logs: {
|
|
9557
|
-
type: "fn" | "
|
|
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";
|
|
9558
9681
|
date: string;
|
|
9559
9682
|
isMobile: boolean;
|
|
9560
9683
|
log_id: string;
|
|
@@ -9608,7 +9731,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9608
9731
|
};
|
|
9609
9732
|
};
|
|
9610
9733
|
output: {
|
|
9611
|
-
type: "fn" | "
|
|
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";
|
|
9612
9735
|
date: string;
|
|
9613
9736
|
isMobile: boolean;
|
|
9614
9737
|
log_id: string;
|
|
@@ -10019,7 +10142,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10019
10142
|
addons?: {
|
|
10020
10143
|
[x: string]: any;
|
|
10021
10144
|
} | undefined;
|
|
10022
|
-
token_endpoint_auth_method?: "
|
|
10145
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10023
10146
|
client_metadata?: {
|
|
10024
10147
|
[x: string]: string;
|
|
10025
10148
|
} | undefined;
|
|
@@ -10121,7 +10244,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10121
10244
|
addons?: {
|
|
10122
10245
|
[x: string]: any;
|
|
10123
10246
|
} | undefined;
|
|
10124
|
-
token_endpoint_auth_method?: "
|
|
10247
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10125
10248
|
client_metadata?: {
|
|
10126
10249
|
[x: string]: string;
|
|
10127
10250
|
} | undefined;
|
|
@@ -10223,7 +10346,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10223
10346
|
addons?: {
|
|
10224
10347
|
[x: string]: any;
|
|
10225
10348
|
} | undefined;
|
|
10226
|
-
token_endpoint_auth_method?: "
|
|
10349
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10227
10350
|
client_metadata?: {
|
|
10228
10351
|
[x: string]: string;
|
|
10229
10352
|
} | undefined;
|
|
@@ -10340,7 +10463,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10340
10463
|
addons?: {
|
|
10341
10464
|
[x: string]: any;
|
|
10342
10465
|
} | undefined;
|
|
10343
|
-
token_endpoint_auth_method?: "
|
|
10466
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10344
10467
|
client_metadata?: {
|
|
10345
10468
|
[x: string]: string;
|
|
10346
10469
|
} | undefined;
|
|
@@ -10458,7 +10581,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10458
10581
|
custom_login_page_preview?: string | undefined;
|
|
10459
10582
|
form_template?: string | undefined;
|
|
10460
10583
|
addons?: Record<string, any> | undefined;
|
|
10461
|
-
token_endpoint_auth_method?: "
|
|
10584
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10462
10585
|
client_metadata?: Record<string, string> | undefined;
|
|
10463
10586
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10464
10587
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10544,7 +10667,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10544
10667
|
addons?: {
|
|
10545
10668
|
[x: string]: any;
|
|
10546
10669
|
} | undefined;
|
|
10547
|
-
token_endpoint_auth_method?: "
|
|
10670
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10548
10671
|
client_metadata?: {
|
|
10549
10672
|
[x: string]: string;
|
|
10550
10673
|
} | undefined;
|
|
@@ -10641,7 +10764,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10641
10764
|
custom_login_page_preview?: string | undefined;
|
|
10642
10765
|
form_template?: string | undefined;
|
|
10643
10766
|
addons?: Record<string, any> | undefined;
|
|
10644
|
-
token_endpoint_auth_method?: "
|
|
10767
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10645
10768
|
client_metadata?: Record<string, string> | undefined;
|
|
10646
10769
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10647
10770
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10727,7 +10850,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10727
10850
|
addons?: {
|
|
10728
10851
|
[x: string]: any;
|
|
10729
10852
|
} | undefined;
|
|
10730
|
-
token_endpoint_auth_method?: "
|
|
10853
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10731
10854
|
client_metadata?: {
|
|
10732
10855
|
[x: string]: string;
|
|
10733
10856
|
} | undefined;
|
|
@@ -11192,8 +11315,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11192
11315
|
cert: string;
|
|
11193
11316
|
fingerprint: string;
|
|
11194
11317
|
thumbprint: string;
|
|
11195
|
-
tenant_id?: string | undefined;
|
|
11196
11318
|
connection?: string | undefined;
|
|
11319
|
+
tenant_id?: string | undefined;
|
|
11197
11320
|
next?: boolean | undefined;
|
|
11198
11321
|
revoked_at?: string | undefined;
|
|
11199
11322
|
current?: boolean | undefined;
|
|
@@ -11231,8 +11354,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11231
11354
|
cert: string;
|
|
11232
11355
|
fingerprint: string;
|
|
11233
11356
|
thumbprint: string;
|
|
11234
|
-
tenant_id?: string | undefined;
|
|
11235
11357
|
connection?: string | undefined;
|
|
11358
|
+
tenant_id?: string | undefined;
|
|
11236
11359
|
next?: boolean | undefined;
|
|
11237
11360
|
revoked_at?: string | undefined;
|
|
11238
11361
|
current?: boolean | undefined;
|
|
@@ -11269,8 +11392,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11269
11392
|
cert: string;
|
|
11270
11393
|
fingerprint: string;
|
|
11271
11394
|
thumbprint: string;
|
|
11272
|
-
tenant_id?: string | undefined;
|
|
11273
11395
|
connection?: string | undefined;
|
|
11396
|
+
tenant_id?: string | undefined;
|
|
11274
11397
|
next?: boolean | undefined;
|
|
11275
11398
|
revoked_at?: string | undefined;
|
|
11276
11399
|
current?: boolean | undefined;
|
|
@@ -11309,8 +11432,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11309
11432
|
cert: string;
|
|
11310
11433
|
fingerprint: string;
|
|
11311
11434
|
thumbprint: string;
|
|
11312
|
-
tenant_id?: string | undefined;
|
|
11313
11435
|
connection?: string | undefined;
|
|
11436
|
+
tenant_id?: string | undefined;
|
|
11314
11437
|
next?: boolean | undefined;
|
|
11315
11438
|
revoked_at?: string | undefined;
|
|
11316
11439
|
current?: boolean | undefined;
|
|
@@ -12163,9 +12286,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12163
12286
|
};
|
|
12164
12287
|
output: {
|
|
12165
12288
|
id: string;
|
|
12289
|
+
user_id: string;
|
|
12166
12290
|
created_at: string;
|
|
12167
12291
|
client_id: string;
|
|
12168
|
-
user_id: string;
|
|
12169
12292
|
rotating: boolean;
|
|
12170
12293
|
device: {
|
|
12171
12294
|
initial_user_agent: string;
|
|
@@ -12194,9 +12317,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12194
12317
|
}[] | {
|
|
12195
12318
|
tokens: {
|
|
12196
12319
|
id: string;
|
|
12320
|
+
user_id: string;
|
|
12197
12321
|
created_at: string;
|
|
12198
12322
|
client_id: string;
|
|
12199
|
-
user_id: string;
|
|
12200
12323
|
rotating: boolean;
|
|
12201
12324
|
device: {
|
|
12202
12325
|
initial_user_agent: string;
|
|
@@ -12230,9 +12353,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12230
12353
|
length: number;
|
|
12231
12354
|
tokens: {
|
|
12232
12355
|
id: string;
|
|
12356
|
+
user_id: string;
|
|
12233
12357
|
created_at: string;
|
|
12234
12358
|
client_id: string;
|
|
12235
|
-
user_id: string;
|
|
12236
12359
|
rotating: boolean;
|
|
12237
12360
|
device: {
|
|
12238
12361
|
initial_user_agent: string;
|
|
@@ -12308,7 +12431,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12308
12431
|
};
|
|
12309
12432
|
};
|
|
12310
12433
|
output: {
|
|
12311
|
-
type: "fn" | "
|
|
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";
|
|
12312
12435
|
date: string;
|
|
12313
12436
|
isMobile: boolean;
|
|
12314
12437
|
log_id: string;
|
|
@@ -12347,7 +12470,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12347
12470
|
limit: number;
|
|
12348
12471
|
length: number;
|
|
12349
12472
|
logs: {
|
|
12350
|
-
type: "fn" | "
|
|
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";
|
|
12351
12474
|
date: string;
|
|
12352
12475
|
isMobile: boolean;
|
|
12353
12476
|
log_id: string;
|
|
@@ -12666,7 +12789,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12666
12789
|
};
|
|
12667
12790
|
} & {
|
|
12668
12791
|
json: {
|
|
12669
|
-
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";
|
|
12670
12793
|
body: string;
|
|
12671
12794
|
from: string;
|
|
12672
12795
|
subject: string;
|
|
@@ -12687,7 +12810,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12687
12810
|
};
|
|
12688
12811
|
} & {
|
|
12689
12812
|
json: {
|
|
12690
|
-
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";
|
|
12691
12814
|
body: string;
|
|
12692
12815
|
from: string;
|
|
12693
12816
|
subject: string;
|
|
@@ -12699,7 +12822,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12699
12822
|
};
|
|
12700
12823
|
};
|
|
12701
12824
|
output: {
|
|
12702
|
-
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";
|
|
12703
12826
|
body: string;
|
|
12704
12827
|
from: string;
|
|
12705
12828
|
subject: string;
|
|
@@ -12722,7 +12845,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12722
12845
|
};
|
|
12723
12846
|
};
|
|
12724
12847
|
output: {
|
|
12725
|
-
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";
|
|
12726
12849
|
body: string;
|
|
12727
12850
|
subject: string;
|
|
12728
12851
|
}[];
|
|
@@ -12735,7 +12858,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12735
12858
|
$get: {
|
|
12736
12859
|
input: {
|
|
12737
12860
|
param: {
|
|
12738
|
-
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";
|
|
12739
12862
|
};
|
|
12740
12863
|
} & {
|
|
12741
12864
|
header: {
|
|
@@ -12748,7 +12871,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12748
12871
|
} | {
|
|
12749
12872
|
input: {
|
|
12750
12873
|
param: {
|
|
12751
|
-
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";
|
|
12752
12875
|
};
|
|
12753
12876
|
} & {
|
|
12754
12877
|
header: {
|
|
@@ -12756,7 +12879,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12756
12879
|
};
|
|
12757
12880
|
};
|
|
12758
12881
|
output: {
|
|
12759
|
-
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";
|
|
12760
12883
|
body: string;
|
|
12761
12884
|
from: string;
|
|
12762
12885
|
subject: string;
|
|
@@ -12775,7 +12898,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12775
12898
|
$put: {
|
|
12776
12899
|
input: {
|
|
12777
12900
|
param: {
|
|
12778
|
-
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";
|
|
12779
12902
|
};
|
|
12780
12903
|
} & {
|
|
12781
12904
|
header: {
|
|
@@ -12783,7 +12906,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12783
12906
|
};
|
|
12784
12907
|
} & {
|
|
12785
12908
|
json: {
|
|
12786
|
-
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";
|
|
12787
12910
|
body: string;
|
|
12788
12911
|
subject: string;
|
|
12789
12912
|
syntax?: "liquid" | undefined;
|
|
@@ -12795,7 +12918,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12795
12918
|
};
|
|
12796
12919
|
};
|
|
12797
12920
|
output: {
|
|
12798
|
-
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";
|
|
12799
12922
|
body: string;
|
|
12800
12923
|
from: string;
|
|
12801
12924
|
subject: string;
|
|
@@ -12814,7 +12937,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12814
12937
|
$patch: {
|
|
12815
12938
|
input: {
|
|
12816
12939
|
param: {
|
|
12817
|
-
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";
|
|
12818
12941
|
};
|
|
12819
12942
|
} & {
|
|
12820
12943
|
header: {
|
|
@@ -12822,7 +12945,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12822
12945
|
};
|
|
12823
12946
|
} & {
|
|
12824
12947
|
json: {
|
|
12825
|
-
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;
|
|
12826
12949
|
body?: string | undefined;
|
|
12827
12950
|
from?: string | undefined;
|
|
12828
12951
|
subject?: string | undefined;
|
|
@@ -12839,7 +12962,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12839
12962
|
} | {
|
|
12840
12963
|
input: {
|
|
12841
12964
|
param: {
|
|
12842
|
-
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";
|
|
12843
12966
|
};
|
|
12844
12967
|
} & {
|
|
12845
12968
|
header: {
|
|
@@ -12847,7 +12970,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12847
12970
|
};
|
|
12848
12971
|
} & {
|
|
12849
12972
|
json: {
|
|
12850
|
-
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;
|
|
12851
12974
|
body?: string | undefined;
|
|
12852
12975
|
from?: string | undefined;
|
|
12853
12976
|
subject?: string | undefined;
|
|
@@ -12859,7 +12982,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12859
12982
|
};
|
|
12860
12983
|
};
|
|
12861
12984
|
output: {
|
|
12862
|
-
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";
|
|
12863
12986
|
body: string;
|
|
12864
12987
|
from: string;
|
|
12865
12988
|
subject: string;
|
|
@@ -12878,7 +13001,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12878
13001
|
$delete: {
|
|
12879
13002
|
input: {
|
|
12880
13003
|
param: {
|
|
12881
|
-
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";
|
|
12882
13005
|
};
|
|
12883
13006
|
} & {
|
|
12884
13007
|
header: {
|
|
@@ -12891,7 +13014,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12891
13014
|
} | {
|
|
12892
13015
|
input: {
|
|
12893
13016
|
param: {
|
|
12894
|
-
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";
|
|
12895
13018
|
};
|
|
12896
13019
|
} & {
|
|
12897
13020
|
header: {
|
|
@@ -12908,7 +13031,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12908
13031
|
$post: {
|
|
12909
13032
|
input: {
|
|
12910
13033
|
param: {
|
|
12911
|
-
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";
|
|
12912
13035
|
};
|
|
12913
13036
|
} & {
|
|
12914
13037
|
header: {
|
|
@@ -13191,7 +13314,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13191
13314
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13192
13315
|
custom_domain_id: string;
|
|
13193
13316
|
primary: boolean;
|
|
13194
|
-
status: "pending" | "
|
|
13317
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
13195
13318
|
verification_method?: "txt" | undefined;
|
|
13196
13319
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13197
13320
|
domain_metadata?: {
|
|
@@ -13232,7 +13355,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13232
13355
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13233
13356
|
custom_domain_id: string;
|
|
13234
13357
|
primary: boolean;
|
|
13235
|
-
status: "pending" | "
|
|
13358
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
13236
13359
|
verification_method?: "txt" | undefined;
|
|
13237
13360
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13238
13361
|
domain_metadata?: {
|
|
@@ -13296,7 +13419,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13296
13419
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13297
13420
|
custom_domain_id: string;
|
|
13298
13421
|
primary: boolean;
|
|
13299
|
-
status: "pending" | "
|
|
13422
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
13300
13423
|
verification_method?: "txt" | undefined;
|
|
13301
13424
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13302
13425
|
domain_metadata?: {
|
|
@@ -13343,7 +13466,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13343
13466
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13344
13467
|
custom_domain_id: string;
|
|
13345
13468
|
primary: boolean;
|
|
13346
|
-
status: "pending" | "
|
|
13469
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
13347
13470
|
verification_method?: "txt" | undefined;
|
|
13348
13471
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13349
13472
|
domain_metadata?: {
|
|
@@ -13389,7 +13512,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13389
13512
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13390
13513
|
custom_domain_id: string;
|
|
13391
13514
|
primary: boolean;
|
|
13392
|
-
status: "pending" | "
|
|
13515
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
13393
13516
|
verification_method?: "txt" | undefined;
|
|
13394
13517
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13395
13518
|
domain_metadata?: {
|
|
@@ -13430,7 +13553,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13430
13553
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13431
13554
|
custom_domain_id: string;
|
|
13432
13555
|
primary: boolean;
|
|
13433
|
-
status: "pending" | "
|
|
13556
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
13434
13557
|
verification_method?: "txt" | undefined;
|
|
13435
13558
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13436
13559
|
domain_metadata?: {
|
|
@@ -13529,12 +13652,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13529
13652
|
background_color: string;
|
|
13530
13653
|
background_image_url: string;
|
|
13531
13654
|
page_layout: "center" | "left" | "right";
|
|
13532
|
-
logo_placement?: "
|
|
13655
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
13533
13656
|
};
|
|
13534
13657
|
widget: {
|
|
13535
13658
|
header_text_alignment: "center" | "left" | "right";
|
|
13536
13659
|
logo_height: number;
|
|
13537
|
-
logo_position: "
|
|
13660
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
13538
13661
|
logo_url: string;
|
|
13539
13662
|
social_buttons_layout: "bottom" | "top";
|
|
13540
13663
|
};
|
|
@@ -13619,12 +13742,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13619
13742
|
background_color: string;
|
|
13620
13743
|
background_image_url: string;
|
|
13621
13744
|
page_layout: "center" | "left" | "right";
|
|
13622
|
-
logo_placement?: "
|
|
13745
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
13623
13746
|
};
|
|
13624
13747
|
widget: {
|
|
13625
13748
|
header_text_alignment: "center" | "left" | "right";
|
|
13626
13749
|
logo_height: number;
|
|
13627
|
-
logo_position: "
|
|
13750
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
13628
13751
|
logo_url: string;
|
|
13629
13752
|
social_buttons_layout: "bottom" | "top";
|
|
13630
13753
|
};
|
|
@@ -13698,12 +13821,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13698
13821
|
background_color: string;
|
|
13699
13822
|
background_image_url: string;
|
|
13700
13823
|
page_layout: "center" | "left" | "right";
|
|
13701
|
-
logo_placement?: "
|
|
13824
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
13702
13825
|
};
|
|
13703
13826
|
widget: {
|
|
13704
13827
|
header_text_alignment: "center" | "left" | "right";
|
|
13705
13828
|
logo_height: number;
|
|
13706
|
-
logo_position: "
|
|
13829
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
13707
13830
|
logo_url: string;
|
|
13708
13831
|
social_buttons_layout: "bottom" | "top";
|
|
13709
13832
|
};
|
|
@@ -13860,7 +13983,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13860
13983
|
} & {
|
|
13861
13984
|
json: {
|
|
13862
13985
|
body?: string | undefined;
|
|
13863
|
-
screen?: "password" | "
|
|
13986
|
+
screen?: "password" | "identifier" | "signup" | "login" | undefined;
|
|
13864
13987
|
branding?: {
|
|
13865
13988
|
colors?: {
|
|
13866
13989
|
primary: string;
|
|
@@ -13946,12 +14069,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13946
14069
|
background_color: string;
|
|
13947
14070
|
background_image_url: string;
|
|
13948
14071
|
page_layout: "center" | "left" | "right";
|
|
13949
|
-
logo_placement?: "
|
|
14072
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
13950
14073
|
} | undefined;
|
|
13951
14074
|
widget?: {
|
|
13952
14075
|
header_text_alignment: "center" | "left" | "right";
|
|
13953
14076
|
logo_height: number;
|
|
13954
|
-
logo_position: "
|
|
14077
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
13955
14078
|
logo_url: string;
|
|
13956
14079
|
social_buttons_layout: "bottom" | "top";
|
|
13957
14080
|
} | undefined;
|
|
@@ -14872,7 +14995,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14872
14995
|
message: string;
|
|
14873
14996
|
};
|
|
14874
14997
|
outputFormat: "json";
|
|
14875
|
-
status:
|
|
14998
|
+
status: 500;
|
|
14876
14999
|
} | {
|
|
14877
15000
|
input: {
|
|
14878
15001
|
query: {
|
|
@@ -14890,7 +15013,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14890
15013
|
message: string;
|
|
14891
15014
|
};
|
|
14892
15015
|
outputFormat: "json";
|
|
14893
|
-
status:
|
|
15016
|
+
status: 400;
|
|
14894
15017
|
};
|
|
14895
15018
|
};
|
|
14896
15019
|
} & {
|
|
@@ -14928,7 +15051,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14928
15051
|
message: string;
|
|
14929
15052
|
};
|
|
14930
15053
|
outputFormat: "json";
|
|
14931
|
-
status:
|
|
15054
|
+
status: 500;
|
|
14932
15055
|
} | {
|
|
14933
15056
|
input: {
|
|
14934
15057
|
form: {
|
|
@@ -14946,7 +15069,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14946
15069
|
message: string;
|
|
14947
15070
|
};
|
|
14948
15071
|
outputFormat: "json";
|
|
14949
|
-
status:
|
|
15072
|
+
status: 400;
|
|
14950
15073
|
};
|
|
14951
15074
|
};
|
|
14952
15075
|
}, "/login/callback"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -14984,7 +15107,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14984
15107
|
message: string;
|
|
14985
15108
|
};
|
|
14986
15109
|
outputFormat: "json";
|
|
14987
|
-
status:
|
|
15110
|
+
status: 500;
|
|
14988
15111
|
} | {
|
|
14989
15112
|
input: {
|
|
14990
15113
|
query: {
|
|
@@ -15002,7 +15125,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15002
15125
|
message: string;
|
|
15003
15126
|
};
|
|
15004
15127
|
outputFormat: "json";
|
|
15005
|
-
status:
|
|
15128
|
+
status: 400;
|
|
15006
15129
|
};
|
|
15007
15130
|
};
|
|
15008
15131
|
} & {
|
|
@@ -15040,7 +15163,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15040
15163
|
message: string;
|
|
15041
15164
|
};
|
|
15042
15165
|
outputFormat: "json";
|
|
15043
|
-
status:
|
|
15166
|
+
status: 500;
|
|
15044
15167
|
} | {
|
|
15045
15168
|
input: {
|
|
15046
15169
|
form: {
|
|
@@ -15058,7 +15181,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15058
15181
|
message: string;
|
|
15059
15182
|
};
|
|
15060
15183
|
outputFormat: "json";
|
|
15061
|
-
status:
|
|
15184
|
+
status: 400;
|
|
15062
15185
|
};
|
|
15063
15186
|
};
|
|
15064
15187
|
}, "/callback"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -15122,7 +15245,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15122
15245
|
scope?: string | undefined;
|
|
15123
15246
|
grant_types?: string[] | undefined;
|
|
15124
15247
|
response_types?: string[] | undefined;
|
|
15125
|
-
token_endpoint_auth_method?: "
|
|
15248
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
15126
15249
|
jwks_uri?: string | undefined;
|
|
15127
15250
|
jwks?: Record<string, unknown> | undefined;
|
|
15128
15251
|
software_id?: string | undefined;
|
|
@@ -15211,7 +15334,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15211
15334
|
scope?: string | undefined;
|
|
15212
15335
|
grant_types?: string[] | undefined;
|
|
15213
15336
|
response_types?: string[] | undefined;
|
|
15214
|
-
token_endpoint_auth_method?: "
|
|
15337
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
15215
15338
|
jwks_uri?: string | undefined;
|
|
15216
15339
|
jwks?: Record<string, unknown> | undefined;
|
|
15217
15340
|
software_id?: string | undefined;
|
|
@@ -15557,15 +15680,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15557
15680
|
email: string;
|
|
15558
15681
|
send: "code" | "link";
|
|
15559
15682
|
authParams: {
|
|
15560
|
-
audience?: string | undefined;
|
|
15561
15683
|
username?: string | undefined;
|
|
15562
|
-
prompt?: string | undefined;
|
|
15563
|
-
scope?: string | undefined;
|
|
15564
|
-
organization?: string | undefined;
|
|
15565
15684
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15566
15685
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15686
|
+
scope?: string | undefined;
|
|
15687
|
+
audience?: string | undefined;
|
|
15688
|
+
organization?: string | undefined;
|
|
15567
15689
|
state?: string | undefined;
|
|
15568
15690
|
redirect_uri?: string | undefined;
|
|
15691
|
+
prompt?: string | undefined;
|
|
15569
15692
|
act_as?: string | undefined;
|
|
15570
15693
|
nonce?: string | undefined;
|
|
15571
15694
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
@@ -15593,15 +15716,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15593
15716
|
phone_number: string;
|
|
15594
15717
|
send: "code" | "link";
|
|
15595
15718
|
authParams: {
|
|
15596
|
-
audience?: string | undefined;
|
|
15597
15719
|
username?: string | undefined;
|
|
15598
|
-
prompt?: string | undefined;
|
|
15599
|
-
scope?: string | undefined;
|
|
15600
|
-
organization?: string | undefined;
|
|
15601
15720
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15602
15721
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15722
|
+
scope?: string | undefined;
|
|
15723
|
+
audience?: string | undefined;
|
|
15724
|
+
organization?: string | undefined;
|
|
15603
15725
|
state?: string | undefined;
|
|
15604
15726
|
redirect_uri?: string | undefined;
|
|
15727
|
+
prompt?: string | undefined;
|
|
15605
15728
|
act_as?: string | undefined;
|
|
15606
15729
|
nonce?: string | undefined;
|
|
15607
15730
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
@@ -15670,7 +15793,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15670
15793
|
error_description?: string | undefined;
|
|
15671
15794
|
};
|
|
15672
15795
|
outputFormat: "json";
|
|
15673
|
-
status:
|
|
15796
|
+
status: 500;
|
|
15674
15797
|
} | {
|
|
15675
15798
|
input: {
|
|
15676
15799
|
query: {
|
|
@@ -15691,7 +15814,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15691
15814
|
error_description?: string | undefined;
|
|
15692
15815
|
};
|
|
15693
15816
|
outputFormat: "json";
|
|
15694
|
-
status:
|
|
15817
|
+
status: 400;
|
|
15695
15818
|
};
|
|
15696
15819
|
};
|
|
15697
15820
|
}, "/passwordless"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -15835,7 +15958,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15835
15958
|
client_id: string;
|
|
15836
15959
|
username: string;
|
|
15837
15960
|
otp: string;
|
|
15838
|
-
realm: "
|
|
15961
|
+
realm: "email" | "sms";
|
|
15839
15962
|
scope?: string | undefined;
|
|
15840
15963
|
audience?: string | undefined;
|
|
15841
15964
|
} | {
|
|
@@ -15884,7 +16007,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15884
16007
|
client_id: string;
|
|
15885
16008
|
username: string;
|
|
15886
16009
|
otp: string;
|
|
15887
|
-
realm: "
|
|
16010
|
+
realm: "email" | "sms";
|
|
15888
16011
|
scope?: string | undefined;
|
|
15889
16012
|
audience?: string | undefined;
|
|
15890
16013
|
} | {
|
|
@@ -15938,7 +16061,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15938
16061
|
client_id: string;
|
|
15939
16062
|
username: string;
|
|
15940
16063
|
otp: string;
|
|
15941
|
-
realm: "
|
|
16064
|
+
realm: "email" | "sms";
|
|
15942
16065
|
scope?: string | undefined;
|
|
15943
16066
|
audience?: string | undefined;
|
|
15944
16067
|
} | {
|
|
@@ -15987,7 +16110,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15987
16110
|
client_id: string;
|
|
15988
16111
|
username: string;
|
|
15989
16112
|
otp: string;
|
|
15990
|
-
realm: "
|
|
16113
|
+
realm: "email" | "sms";
|
|
15991
16114
|
scope?: string | undefined;
|
|
15992
16115
|
audience?: string | undefined;
|
|
15993
16116
|
} | {
|
|
@@ -16049,7 +16172,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16049
16172
|
client_id: string;
|
|
16050
16173
|
username: string;
|
|
16051
16174
|
otp: string;
|
|
16052
|
-
realm: "
|
|
16175
|
+
realm: "email" | "sms";
|
|
16053
16176
|
scope?: string | undefined;
|
|
16054
16177
|
audience?: string | undefined;
|
|
16055
16178
|
} | {
|
|
@@ -16098,7 +16221,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16098
16221
|
client_id: string;
|
|
16099
16222
|
username: string;
|
|
16100
16223
|
otp: string;
|
|
16101
|
-
realm: "
|
|
16224
|
+
realm: "email" | "sms";
|
|
16102
16225
|
scope?: string | undefined;
|
|
16103
16226
|
audience?: string | undefined;
|
|
16104
16227
|
} | {
|
|
@@ -16155,7 +16278,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16155
16278
|
client_id: string;
|
|
16156
16279
|
username: string;
|
|
16157
16280
|
otp: string;
|
|
16158
|
-
realm: "
|
|
16281
|
+
realm: "email" | "sms";
|
|
16159
16282
|
scope?: string | undefined;
|
|
16160
16283
|
audience?: string | undefined;
|
|
16161
16284
|
} | {
|
|
@@ -16204,7 +16327,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16204
16327
|
client_id: string;
|
|
16205
16328
|
username: string;
|
|
16206
16329
|
otp: string;
|
|
16207
|
-
realm: "
|
|
16330
|
+
realm: "email" | "sms";
|
|
16208
16331
|
scope?: string | undefined;
|
|
16209
16332
|
audience?: string | undefined;
|
|
16210
16333
|
} | {
|
|
@@ -16261,7 +16384,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16261
16384
|
client_id: string;
|
|
16262
16385
|
username: string;
|
|
16263
16386
|
otp: string;
|
|
16264
|
-
realm: "
|
|
16387
|
+
realm: "email" | "sms";
|
|
16265
16388
|
scope?: string | undefined;
|
|
16266
16389
|
audience?: string | undefined;
|
|
16267
16390
|
} | {
|
|
@@ -16310,7 +16433,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16310
16433
|
client_id: string;
|
|
16311
16434
|
username: string;
|
|
16312
16435
|
otp: string;
|
|
16313
|
-
realm: "
|
|
16436
|
+
realm: "email" | "sms";
|
|
16314
16437
|
scope?: string | undefined;
|
|
16315
16438
|
audience?: string | undefined;
|
|
16316
16439
|
} | {
|
|
@@ -16669,7 +16792,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16669
16792
|
};
|
|
16670
16793
|
output: {};
|
|
16671
16794
|
outputFormat: string;
|
|
16672
|
-
status:
|
|
16795
|
+
status: 500;
|
|
16673
16796
|
} | {
|
|
16674
16797
|
input: {
|
|
16675
16798
|
query: {
|
|
@@ -16678,7 +16801,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16678
16801
|
};
|
|
16679
16802
|
output: {};
|
|
16680
16803
|
outputFormat: string;
|
|
16681
|
-
status:
|
|
16804
|
+
status: 302;
|
|
16682
16805
|
} | {
|
|
16683
16806
|
input: {
|
|
16684
16807
|
query: {
|
|
@@ -16687,7 +16810,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16687
16810
|
};
|
|
16688
16811
|
output: {};
|
|
16689
16812
|
outputFormat: string;
|
|
16690
|
-
status:
|
|
16813
|
+
status: 400;
|
|
16691
16814
|
};
|
|
16692
16815
|
};
|
|
16693
16816
|
}, "/continue"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -17157,7 +17280,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17157
17280
|
} & {
|
|
17158
17281
|
form: {
|
|
17159
17282
|
username: string;
|
|
17160
|
-
login_selection?: "
|
|
17283
|
+
login_selection?: "password" | "code" | undefined;
|
|
17161
17284
|
};
|
|
17162
17285
|
};
|
|
17163
17286
|
output: {};
|
|
@@ -17171,7 +17294,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17171
17294
|
} & {
|
|
17172
17295
|
form: {
|
|
17173
17296
|
username: string;
|
|
17174
|
-
login_selection?: "
|
|
17297
|
+
login_selection?: "password" | "code" | undefined;
|
|
17175
17298
|
};
|
|
17176
17299
|
};
|
|
17177
17300
|
output: {};
|
|
@@ -17536,7 +17659,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17536
17659
|
$get: {
|
|
17537
17660
|
input: {
|
|
17538
17661
|
param: {
|
|
17539
|
-
screen: "login" | "
|
|
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";
|
|
17540
17663
|
};
|
|
17541
17664
|
} & {
|
|
17542
17665
|
query: {
|
|
@@ -17552,7 +17675,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17552
17675
|
} | {
|
|
17553
17676
|
input: {
|
|
17554
17677
|
param: {
|
|
17555
|
-
screen: "login" | "
|
|
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";
|
|
17556
17679
|
};
|
|
17557
17680
|
} & {
|
|
17558
17681
|
query: {
|
|
@@ -17568,7 +17691,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17568
17691
|
} | {
|
|
17569
17692
|
input: {
|
|
17570
17693
|
param: {
|
|
17571
|
-
screen: "login" | "
|
|
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";
|
|
17572
17695
|
};
|
|
17573
17696
|
} & {
|
|
17574
17697
|
query: {
|
|
@@ -17588,7 +17711,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17588
17711
|
$post: {
|
|
17589
17712
|
input: {
|
|
17590
17713
|
param: {
|
|
17591
|
-
screen: "login" | "
|
|
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";
|
|
17592
17715
|
};
|
|
17593
17716
|
} & {
|
|
17594
17717
|
query: {
|
|
@@ -17606,7 +17729,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17606
17729
|
} | {
|
|
17607
17730
|
input: {
|
|
17608
17731
|
param: {
|
|
17609
|
-
screen: "login" | "
|
|
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";
|
|
17610
17733
|
};
|
|
17611
17734
|
} & {
|
|
17612
17735
|
query: {
|