authhero 8.17.4 → 8.18.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/authhero.cjs +106 -106
- package/dist/authhero.d.ts +192 -125
- package/dist/authhero.mjs +10071 -9941
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/helpers/provision-tenant-clients.d.ts +65 -0
- package/dist/types/index.d.ts +126 -122
- package/dist/types/routes/auth-api/index.d.ts +10 -10
- package/dist/types/routes/management-api/index.d.ts +91 -89
- package/dist/types/routes/management-api/tenants.d.ts +1 -1
- package/dist/types/routes/management-api/users.d.ts +4 -2
- package/package.json +1 -1
|
@@ -8,8 +8,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8
8
|
$get: {
|
|
9
9
|
input: {
|
|
10
10
|
query: {
|
|
11
|
-
include_password_hashes?: "
|
|
12
|
-
gzip?: "
|
|
11
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
12
|
+
gzip?: "false" | "true" | undefined;
|
|
13
13
|
};
|
|
14
14
|
} & {
|
|
15
15
|
header: {
|
|
@@ -22,8 +22,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
22
22
|
} | {
|
|
23
23
|
input: {
|
|
24
24
|
query: {
|
|
25
|
-
include_password_hashes?: "
|
|
26
|
-
gzip?: "
|
|
25
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
26
|
+
gzip?: "false" | "true" | undefined;
|
|
27
27
|
};
|
|
28
28
|
} & {
|
|
29
29
|
header: {
|
|
@@ -42,7 +42,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
42
42
|
$post: {
|
|
43
43
|
input: {
|
|
44
44
|
query: {
|
|
45
|
-
include_password_hashes?: "
|
|
45
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
46
46
|
};
|
|
47
47
|
} & {
|
|
48
48
|
header: {
|
|
@@ -96,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
96
96
|
};
|
|
97
97
|
} & {
|
|
98
98
|
json: {
|
|
99
|
-
type: "push" | "email" | "passkey" | "
|
|
99
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
100
100
|
phone_number?: string | undefined;
|
|
101
101
|
totp_secret?: string | undefined;
|
|
102
102
|
credential_id?: string | undefined;
|
|
@@ -236,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
236
236
|
};
|
|
237
237
|
};
|
|
238
238
|
output: {
|
|
239
|
-
name: "
|
|
239
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
240
240
|
enabled: boolean;
|
|
241
241
|
trial_expired?: boolean | undefined;
|
|
242
242
|
}[];
|
|
@@ -391,7 +391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
391
391
|
$get: {
|
|
392
392
|
input: {
|
|
393
393
|
param: {
|
|
394
|
-
factor_name: "
|
|
394
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
395
395
|
};
|
|
396
396
|
} & {
|
|
397
397
|
header: {
|
|
@@ -399,7 +399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
output: {
|
|
402
|
-
name: "
|
|
402
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
403
403
|
enabled: boolean;
|
|
404
404
|
trial_expired?: boolean | undefined;
|
|
405
405
|
};
|
|
@@ -412,7 +412,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
412
412
|
$put: {
|
|
413
413
|
input: {
|
|
414
414
|
param: {
|
|
415
|
-
factor_name: "
|
|
415
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
416
416
|
};
|
|
417
417
|
} & {
|
|
418
418
|
header: {
|
|
@@ -424,7 +424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
424
424
|
};
|
|
425
425
|
};
|
|
426
426
|
output: {
|
|
427
|
-
name: "
|
|
427
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
428
428
|
enabled: boolean;
|
|
429
429
|
trial_expired?: boolean | undefined;
|
|
430
430
|
};
|
|
@@ -1357,8 +1357,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1357
1357
|
};
|
|
1358
1358
|
} & {
|
|
1359
1359
|
json: {
|
|
1360
|
-
show_as_button?: boolean | undefined;
|
|
1361
1360
|
assign_membership_on_login?: boolean | undefined;
|
|
1361
|
+
show_as_button?: boolean | undefined;
|
|
1362
1362
|
is_signup_enabled?: boolean | undefined;
|
|
1363
1363
|
};
|
|
1364
1364
|
};
|
|
@@ -6828,7 +6828,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6828
6828
|
};
|
|
6829
6829
|
};
|
|
6830
6830
|
output: {
|
|
6831
|
-
prompt: "status" | "
|
|
6831
|
+
prompt: "status" | "organizations" | "signup" | "mfa" | "login" | "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";
|
|
6832
6832
|
language: string;
|
|
6833
6833
|
}[];
|
|
6834
6834
|
outputFormat: "json";
|
|
@@ -6866,7 +6866,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6866
6866
|
$get: {
|
|
6867
6867
|
input: {
|
|
6868
6868
|
param: {
|
|
6869
|
-
prompt: "status" | "
|
|
6869
|
+
prompt: "status" | "organizations" | "signup" | "mfa" | "login" | "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";
|
|
6870
6870
|
language: string;
|
|
6871
6871
|
};
|
|
6872
6872
|
} & {
|
|
@@ -6888,7 +6888,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6888
6888
|
$put: {
|
|
6889
6889
|
input: {
|
|
6890
6890
|
param: {
|
|
6891
|
-
prompt: "status" | "
|
|
6891
|
+
prompt: "status" | "organizations" | "signup" | "mfa" | "login" | "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";
|
|
6892
6892
|
language: string;
|
|
6893
6893
|
};
|
|
6894
6894
|
} & {
|
|
@@ -6912,7 +6912,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6912
6912
|
$delete: {
|
|
6913
6913
|
input: {
|
|
6914
6914
|
param: {
|
|
6915
|
-
prompt: "status" | "
|
|
6915
|
+
prompt: "status" | "organizations" | "signup" | "mfa" | "login" | "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";
|
|
6916
6916
|
language: string;
|
|
6917
6917
|
};
|
|
6918
6918
|
} & {
|
|
@@ -7004,7 +7004,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7004
7004
|
active?: boolean | undefined;
|
|
7005
7005
|
} | undefined;
|
|
7006
7006
|
signup?: {
|
|
7007
|
-
status?: "
|
|
7007
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7008
7008
|
verification?: {
|
|
7009
7009
|
active?: boolean | undefined;
|
|
7010
7010
|
} | undefined;
|
|
@@ -7021,7 +7021,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7021
7021
|
active?: boolean | undefined;
|
|
7022
7022
|
} | undefined;
|
|
7023
7023
|
signup?: {
|
|
7024
|
-
status?: "
|
|
7024
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7025
7025
|
} | undefined;
|
|
7026
7026
|
validation?: {
|
|
7027
7027
|
max_length?: number | undefined;
|
|
@@ -7038,7 +7038,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7038
7038
|
active?: boolean | undefined;
|
|
7039
7039
|
} | undefined;
|
|
7040
7040
|
signup?: {
|
|
7041
|
-
status?: "
|
|
7041
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7042
7042
|
} | undefined;
|
|
7043
7043
|
} | undefined;
|
|
7044
7044
|
} | undefined;
|
|
@@ -7051,7 +7051,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7051
7051
|
} | undefined;
|
|
7052
7052
|
} | undefined;
|
|
7053
7053
|
passkey_options?: {
|
|
7054
|
-
challenge_ui?: "
|
|
7054
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7055
7055
|
local_enrollment_enabled?: boolean | undefined;
|
|
7056
7056
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7057
7057
|
} | undefined;
|
|
@@ -7138,7 +7138,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7138
7138
|
active?: boolean | undefined;
|
|
7139
7139
|
} | undefined;
|
|
7140
7140
|
signup?: {
|
|
7141
|
-
status?: "
|
|
7141
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7142
7142
|
verification?: {
|
|
7143
7143
|
active?: boolean | undefined;
|
|
7144
7144
|
} | undefined;
|
|
@@ -7155,7 +7155,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7155
7155
|
active?: boolean | undefined;
|
|
7156
7156
|
} | undefined;
|
|
7157
7157
|
signup?: {
|
|
7158
|
-
status?: "
|
|
7158
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7159
7159
|
} | undefined;
|
|
7160
7160
|
validation?: {
|
|
7161
7161
|
max_length?: number | undefined;
|
|
@@ -7172,7 +7172,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7172
7172
|
active?: boolean | undefined;
|
|
7173
7173
|
} | undefined;
|
|
7174
7174
|
signup?: {
|
|
7175
|
-
status?: "
|
|
7175
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7176
7176
|
} | undefined;
|
|
7177
7177
|
} | undefined;
|
|
7178
7178
|
} | undefined;
|
|
@@ -7185,7 +7185,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7185
7185
|
} | undefined;
|
|
7186
7186
|
} | undefined;
|
|
7187
7187
|
passkey_options?: {
|
|
7188
|
-
challenge_ui?: "
|
|
7188
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7189
7189
|
local_enrollment_enabled?: boolean | undefined;
|
|
7190
7190
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7191
7191
|
} | undefined;
|
|
@@ -7287,7 +7287,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7287
7287
|
active?: boolean | undefined;
|
|
7288
7288
|
} | undefined;
|
|
7289
7289
|
signup?: {
|
|
7290
|
-
status?: "
|
|
7290
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7291
7291
|
verification?: {
|
|
7292
7292
|
active?: boolean | undefined;
|
|
7293
7293
|
} | undefined;
|
|
@@ -7304,7 +7304,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7304
7304
|
active?: boolean | undefined;
|
|
7305
7305
|
} | undefined;
|
|
7306
7306
|
signup?: {
|
|
7307
|
-
status?: "
|
|
7307
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7308
7308
|
} | undefined;
|
|
7309
7309
|
validation?: {
|
|
7310
7310
|
max_length?: number | undefined;
|
|
@@ -7321,7 +7321,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7321
7321
|
active?: boolean | undefined;
|
|
7322
7322
|
} | undefined;
|
|
7323
7323
|
signup?: {
|
|
7324
|
-
status?: "
|
|
7324
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7325
7325
|
} | undefined;
|
|
7326
7326
|
} | undefined;
|
|
7327
7327
|
} | undefined;
|
|
@@ -7334,7 +7334,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7334
7334
|
} | undefined;
|
|
7335
7335
|
} | undefined;
|
|
7336
7336
|
passkey_options?: {
|
|
7337
|
-
challenge_ui?: "
|
|
7337
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7338
7338
|
local_enrollment_enabled?: boolean | undefined;
|
|
7339
7339
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7340
7340
|
} | undefined;
|
|
@@ -7466,7 +7466,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7466
7466
|
active?: boolean | undefined;
|
|
7467
7467
|
} | undefined;
|
|
7468
7468
|
signup?: {
|
|
7469
|
-
status?: "
|
|
7469
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7470
7470
|
verification?: {
|
|
7471
7471
|
active?: boolean | undefined;
|
|
7472
7472
|
} | undefined;
|
|
@@ -7483,7 +7483,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7483
7483
|
active?: boolean | undefined;
|
|
7484
7484
|
} | undefined;
|
|
7485
7485
|
signup?: {
|
|
7486
|
-
status?: "
|
|
7486
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7487
7487
|
} | undefined;
|
|
7488
7488
|
validation?: {
|
|
7489
7489
|
max_length?: number | undefined;
|
|
@@ -7500,7 +7500,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7500
7500
|
active?: boolean | undefined;
|
|
7501
7501
|
} | undefined;
|
|
7502
7502
|
signup?: {
|
|
7503
|
-
status?: "
|
|
7503
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7504
7504
|
} | undefined;
|
|
7505
7505
|
} | undefined;
|
|
7506
7506
|
} | undefined;
|
|
@@ -7513,7 +7513,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7513
7513
|
} | undefined;
|
|
7514
7514
|
} | undefined;
|
|
7515
7515
|
passkey_options?: {
|
|
7516
|
-
challenge_ui?: "
|
|
7516
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7517
7517
|
local_enrollment_enabled?: boolean | undefined;
|
|
7518
7518
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7519
7519
|
} | undefined;
|
|
@@ -7624,7 +7624,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7624
7624
|
active?: boolean | undefined;
|
|
7625
7625
|
} | undefined;
|
|
7626
7626
|
signup?: {
|
|
7627
|
-
status?: "
|
|
7627
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7628
7628
|
verification?: {
|
|
7629
7629
|
active?: boolean | undefined;
|
|
7630
7630
|
} | undefined;
|
|
@@ -7641,7 +7641,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7641
7641
|
active?: boolean | undefined;
|
|
7642
7642
|
} | undefined;
|
|
7643
7643
|
signup?: {
|
|
7644
|
-
status?: "
|
|
7644
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7645
7645
|
} | undefined;
|
|
7646
7646
|
validation?: {
|
|
7647
7647
|
max_length?: number | undefined;
|
|
@@ -7658,7 +7658,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7658
7658
|
active?: boolean | undefined;
|
|
7659
7659
|
} | undefined;
|
|
7660
7660
|
signup?: {
|
|
7661
|
-
status?: "
|
|
7661
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7662
7662
|
} | undefined;
|
|
7663
7663
|
} | undefined;
|
|
7664
7664
|
} | undefined;
|
|
@@ -7671,7 +7671,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7671
7671
|
} | undefined;
|
|
7672
7672
|
} | undefined;
|
|
7673
7673
|
passkey_options?: {
|
|
7674
|
-
challenge_ui?: "
|
|
7674
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7675
7675
|
local_enrollment_enabled?: boolean | undefined;
|
|
7676
7676
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7677
7677
|
} | undefined;
|
|
@@ -8723,7 +8723,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8723
8723
|
created_at: string;
|
|
8724
8724
|
updated_at: string;
|
|
8725
8725
|
name: string;
|
|
8726
|
-
provider: "auth0" | "
|
|
8726
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8727
8727
|
connection: string;
|
|
8728
8728
|
enabled: boolean;
|
|
8729
8729
|
credentials: {
|
|
@@ -8755,7 +8755,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8755
8755
|
created_at: string;
|
|
8756
8756
|
updated_at: string;
|
|
8757
8757
|
name: string;
|
|
8758
|
-
provider: "auth0" | "
|
|
8758
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8759
8759
|
connection: string;
|
|
8760
8760
|
enabled: boolean;
|
|
8761
8761
|
credentials: {
|
|
@@ -8781,7 +8781,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8781
8781
|
} & {
|
|
8782
8782
|
json: {
|
|
8783
8783
|
name: string;
|
|
8784
|
-
provider: "auth0" | "
|
|
8784
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8785
8785
|
connection: string;
|
|
8786
8786
|
credentials: {
|
|
8787
8787
|
domain: string;
|
|
@@ -8798,7 +8798,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8798
8798
|
created_at: string;
|
|
8799
8799
|
updated_at: string;
|
|
8800
8800
|
name: string;
|
|
8801
|
-
provider: "auth0" | "
|
|
8801
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8802
8802
|
connection: string;
|
|
8803
8803
|
enabled: boolean;
|
|
8804
8804
|
credentials: {
|
|
@@ -8829,7 +8829,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8829
8829
|
json: {
|
|
8830
8830
|
id?: string | undefined;
|
|
8831
8831
|
name?: string | undefined;
|
|
8832
|
-
provider?: "auth0" | "
|
|
8832
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
8833
8833
|
connection?: string | undefined;
|
|
8834
8834
|
enabled?: boolean | undefined;
|
|
8835
8835
|
credentials?: {
|
|
@@ -8845,7 +8845,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8845
8845
|
created_at: string;
|
|
8846
8846
|
updated_at: string;
|
|
8847
8847
|
name: string;
|
|
8848
|
-
provider: "auth0" | "
|
|
8848
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8849
8849
|
connection: string;
|
|
8850
8850
|
enabled: boolean;
|
|
8851
8851
|
credentials: {
|
|
@@ -9063,7 +9063,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9063
9063
|
};
|
|
9064
9064
|
};
|
|
9065
9065
|
output: {
|
|
9066
|
-
type: "
|
|
9066
|
+
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" | "i" | "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" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9067
9067
|
date: string;
|
|
9068
9068
|
isMobile: boolean;
|
|
9069
9069
|
log_id: string;
|
|
@@ -9102,7 +9102,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9102
9102
|
limit: number;
|
|
9103
9103
|
length: number;
|
|
9104
9104
|
logs: {
|
|
9105
|
-
type: "
|
|
9105
|
+
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" | "i" | "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" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9106
9106
|
date: string;
|
|
9107
9107
|
isMobile: boolean;
|
|
9108
9108
|
log_id: string;
|
|
@@ -9156,7 +9156,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9156
9156
|
};
|
|
9157
9157
|
};
|
|
9158
9158
|
output: {
|
|
9159
|
-
type: "
|
|
9159
|
+
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" | "i" | "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" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9160
9160
|
date: string;
|
|
9161
9161
|
isMobile: boolean;
|
|
9162
9162
|
log_id: string;
|
|
@@ -9544,7 +9544,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9544
9544
|
addons?: {
|
|
9545
9545
|
[x: string]: any;
|
|
9546
9546
|
} | undefined;
|
|
9547
|
-
token_endpoint_auth_method?: "none" | "
|
|
9547
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9548
9548
|
client_metadata?: {
|
|
9549
9549
|
[x: string]: string;
|
|
9550
9550
|
} | undefined;
|
|
@@ -9640,7 +9640,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9640
9640
|
addons?: {
|
|
9641
9641
|
[x: string]: any;
|
|
9642
9642
|
} | undefined;
|
|
9643
|
-
token_endpoint_auth_method?: "none" | "
|
|
9643
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9644
9644
|
client_metadata?: {
|
|
9645
9645
|
[x: string]: string;
|
|
9646
9646
|
} | undefined;
|
|
@@ -9751,7 +9751,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9751
9751
|
addons?: {
|
|
9752
9752
|
[x: string]: any;
|
|
9753
9753
|
} | undefined;
|
|
9754
|
-
token_endpoint_auth_method?: "none" | "
|
|
9754
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9755
9755
|
client_metadata?: {
|
|
9756
9756
|
[x: string]: string;
|
|
9757
9757
|
} | undefined;
|
|
@@ -9861,7 +9861,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9861
9861
|
custom_login_page_preview?: string | undefined;
|
|
9862
9862
|
form_template?: string | undefined;
|
|
9863
9863
|
addons?: Record<string, any> | undefined;
|
|
9864
|
-
token_endpoint_auth_method?: "none" | "
|
|
9864
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9865
9865
|
client_metadata?: Record<string, string> | undefined;
|
|
9866
9866
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9867
9867
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9941,7 +9941,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9941
9941
|
addons?: {
|
|
9942
9942
|
[x: string]: any;
|
|
9943
9943
|
} | undefined;
|
|
9944
|
-
token_endpoint_auth_method?: "none" | "
|
|
9944
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9945
9945
|
client_metadata?: {
|
|
9946
9946
|
[x: string]: string;
|
|
9947
9947
|
} | undefined;
|
|
@@ -10030,7 +10030,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10030
10030
|
custom_login_page_preview?: string | undefined;
|
|
10031
10031
|
form_template?: string | undefined;
|
|
10032
10032
|
addons?: Record<string, any> | undefined;
|
|
10033
|
-
token_endpoint_auth_method?: "none" | "
|
|
10033
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10034
10034
|
client_metadata?: Record<string, string> | undefined;
|
|
10035
10035
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10036
10036
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10110,7 +10110,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10110
10110
|
addons?: {
|
|
10111
10111
|
[x: string]: any;
|
|
10112
10112
|
} | undefined;
|
|
10113
|
-
token_endpoint_auth_method?: "none" | "
|
|
10113
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10114
10114
|
client_metadata?: {
|
|
10115
10115
|
[x: string]: string;
|
|
10116
10116
|
} | undefined;
|
|
@@ -10232,7 +10232,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10232
10232
|
active?: boolean | undefined;
|
|
10233
10233
|
} | undefined;
|
|
10234
10234
|
signup?: {
|
|
10235
|
-
status?: "
|
|
10235
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10236
10236
|
verification?: {
|
|
10237
10237
|
active?: boolean | undefined;
|
|
10238
10238
|
} | undefined;
|
|
@@ -10249,7 +10249,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10249
10249
|
active?: boolean | undefined;
|
|
10250
10250
|
} | undefined;
|
|
10251
10251
|
signup?: {
|
|
10252
|
-
status?: "
|
|
10252
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10253
10253
|
} | undefined;
|
|
10254
10254
|
validation?: {
|
|
10255
10255
|
max_length?: number | undefined;
|
|
@@ -10266,7 +10266,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10266
10266
|
active?: boolean | undefined;
|
|
10267
10267
|
} | undefined;
|
|
10268
10268
|
signup?: {
|
|
10269
|
-
status?: "
|
|
10269
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10270
10270
|
} | undefined;
|
|
10271
10271
|
} | undefined;
|
|
10272
10272
|
} | undefined;
|
|
@@ -10279,7 +10279,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10279
10279
|
} | undefined;
|
|
10280
10280
|
} | undefined;
|
|
10281
10281
|
passkey_options?: {
|
|
10282
|
-
challenge_ui?: "
|
|
10282
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
10283
10283
|
local_enrollment_enabled?: boolean | undefined;
|
|
10284
10284
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10285
10285
|
} | undefined;
|
|
@@ -10386,7 +10386,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10386
10386
|
active?: boolean | undefined;
|
|
10387
10387
|
} | undefined;
|
|
10388
10388
|
signup?: {
|
|
10389
|
-
status?: "
|
|
10389
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10390
10390
|
verification?: {
|
|
10391
10391
|
active?: boolean | undefined;
|
|
10392
10392
|
} | undefined;
|
|
@@ -10403,7 +10403,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10403
10403
|
active?: boolean | undefined;
|
|
10404
10404
|
} | undefined;
|
|
10405
10405
|
signup?: {
|
|
10406
|
-
status?: "
|
|
10406
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10407
10407
|
} | undefined;
|
|
10408
10408
|
validation?: {
|
|
10409
10409
|
max_length?: number | undefined;
|
|
@@ -10420,7 +10420,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10420
10420
|
active?: boolean | undefined;
|
|
10421
10421
|
} | undefined;
|
|
10422
10422
|
signup?: {
|
|
10423
|
-
status?: "
|
|
10423
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10424
10424
|
} | undefined;
|
|
10425
10425
|
} | undefined;
|
|
10426
10426
|
} | undefined;
|
|
@@ -10433,7 +10433,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10433
10433
|
} | undefined;
|
|
10434
10434
|
} | undefined;
|
|
10435
10435
|
passkey_options?: {
|
|
10436
|
-
challenge_ui?: "
|
|
10436
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
10437
10437
|
local_enrollment_enabled?: boolean | undefined;
|
|
10438
10438
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10439
10439
|
} | undefined;
|
|
@@ -11374,7 +11374,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11374
11374
|
};
|
|
11375
11375
|
};
|
|
11376
11376
|
output: {
|
|
11377
|
-
type: "
|
|
11377
|
+
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" | "i" | "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" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11378
11378
|
date: string;
|
|
11379
11379
|
isMobile: boolean;
|
|
11380
11380
|
log_id: string;
|
|
@@ -11413,7 +11413,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11413
11413
|
limit: number;
|
|
11414
11414
|
length: number;
|
|
11415
11415
|
logs: {
|
|
11416
|
-
type: "
|
|
11416
|
+
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" | "i" | "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" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11417
11417
|
date: string;
|
|
11418
11418
|
isMobile: boolean;
|
|
11419
11419
|
log_id: string;
|
|
@@ -11507,6 +11507,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11507
11507
|
permissions: {
|
|
11508
11508
|
permission_name: string;
|
|
11509
11509
|
resource_server_identifier: string;
|
|
11510
|
+
organization_id?: string | undefined;
|
|
11510
11511
|
}[];
|
|
11511
11512
|
};
|
|
11512
11513
|
};
|
|
@@ -11531,6 +11532,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11531
11532
|
permissions: {
|
|
11532
11533
|
permission_name: string;
|
|
11533
11534
|
resource_server_identifier: string;
|
|
11535
|
+
organization_id?: string | undefined;
|
|
11534
11536
|
}[];
|
|
11535
11537
|
};
|
|
11536
11538
|
};
|
|
@@ -11728,7 +11730,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11728
11730
|
};
|
|
11729
11731
|
} & {
|
|
11730
11732
|
json: {
|
|
11731
|
-
template: "
|
|
11733
|
+
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";
|
|
11732
11734
|
body: string;
|
|
11733
11735
|
from: string;
|
|
11734
11736
|
subject: string;
|
|
@@ -11749,7 +11751,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11749
11751
|
};
|
|
11750
11752
|
} & {
|
|
11751
11753
|
json: {
|
|
11752
|
-
template: "
|
|
11754
|
+
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";
|
|
11753
11755
|
body: string;
|
|
11754
11756
|
from: string;
|
|
11755
11757
|
subject: string;
|
|
@@ -11761,7 +11763,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11761
11763
|
};
|
|
11762
11764
|
};
|
|
11763
11765
|
output: {
|
|
11764
|
-
template: "
|
|
11766
|
+
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";
|
|
11765
11767
|
body: string;
|
|
11766
11768
|
from: string;
|
|
11767
11769
|
subject: string;
|
|
@@ -11784,7 +11786,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11784
11786
|
};
|
|
11785
11787
|
};
|
|
11786
11788
|
output: {
|
|
11787
|
-
name: "
|
|
11789
|
+
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";
|
|
11788
11790
|
body: string;
|
|
11789
11791
|
subject: string;
|
|
11790
11792
|
}[];
|
|
@@ -11797,7 +11799,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11797
11799
|
$get: {
|
|
11798
11800
|
input: {
|
|
11799
11801
|
param: {
|
|
11800
|
-
templateName: "
|
|
11802
|
+
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";
|
|
11801
11803
|
};
|
|
11802
11804
|
} & {
|
|
11803
11805
|
header: {
|
|
@@ -11810,7 +11812,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11810
11812
|
} | {
|
|
11811
11813
|
input: {
|
|
11812
11814
|
param: {
|
|
11813
|
-
templateName: "
|
|
11815
|
+
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";
|
|
11814
11816
|
};
|
|
11815
11817
|
} & {
|
|
11816
11818
|
header: {
|
|
@@ -11818,7 +11820,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11818
11820
|
};
|
|
11819
11821
|
};
|
|
11820
11822
|
output: {
|
|
11821
|
-
template: "
|
|
11823
|
+
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";
|
|
11822
11824
|
body: string;
|
|
11823
11825
|
from: string;
|
|
11824
11826
|
subject: string;
|
|
@@ -11837,7 +11839,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11837
11839
|
$put: {
|
|
11838
11840
|
input: {
|
|
11839
11841
|
param: {
|
|
11840
|
-
templateName: "
|
|
11842
|
+
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";
|
|
11841
11843
|
};
|
|
11842
11844
|
} & {
|
|
11843
11845
|
header: {
|
|
@@ -11845,7 +11847,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11845
11847
|
};
|
|
11846
11848
|
} & {
|
|
11847
11849
|
json: {
|
|
11848
|
-
template: "
|
|
11850
|
+
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";
|
|
11849
11851
|
body: string;
|
|
11850
11852
|
subject: string;
|
|
11851
11853
|
syntax?: "liquid" | undefined;
|
|
@@ -11857,7 +11859,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11857
11859
|
};
|
|
11858
11860
|
};
|
|
11859
11861
|
output: {
|
|
11860
|
-
template: "
|
|
11862
|
+
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";
|
|
11861
11863
|
body: string;
|
|
11862
11864
|
from: string;
|
|
11863
11865
|
subject: string;
|
|
@@ -11876,7 +11878,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11876
11878
|
$patch: {
|
|
11877
11879
|
input: {
|
|
11878
11880
|
param: {
|
|
11879
|
-
templateName: "
|
|
11881
|
+
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";
|
|
11880
11882
|
};
|
|
11881
11883
|
} & {
|
|
11882
11884
|
header: {
|
|
@@ -11884,7 +11886,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11884
11886
|
};
|
|
11885
11887
|
} & {
|
|
11886
11888
|
json: {
|
|
11887
|
-
template?: "
|
|
11889
|
+
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;
|
|
11888
11890
|
body?: string | undefined;
|
|
11889
11891
|
from?: string | undefined;
|
|
11890
11892
|
subject?: string | undefined;
|
|
@@ -11901,7 +11903,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11901
11903
|
} | {
|
|
11902
11904
|
input: {
|
|
11903
11905
|
param: {
|
|
11904
|
-
templateName: "
|
|
11906
|
+
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";
|
|
11905
11907
|
};
|
|
11906
11908
|
} & {
|
|
11907
11909
|
header: {
|
|
@@ -11909,7 +11911,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11909
11911
|
};
|
|
11910
11912
|
} & {
|
|
11911
11913
|
json: {
|
|
11912
|
-
template?: "
|
|
11914
|
+
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;
|
|
11913
11915
|
body?: string | undefined;
|
|
11914
11916
|
from?: string | undefined;
|
|
11915
11917
|
subject?: string | undefined;
|
|
@@ -11921,7 +11923,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11921
11923
|
};
|
|
11922
11924
|
};
|
|
11923
11925
|
output: {
|
|
11924
|
-
template: "
|
|
11926
|
+
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";
|
|
11925
11927
|
body: string;
|
|
11926
11928
|
from: string;
|
|
11927
11929
|
subject: string;
|
|
@@ -11940,7 +11942,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11940
11942
|
$delete: {
|
|
11941
11943
|
input: {
|
|
11942
11944
|
param: {
|
|
11943
|
-
templateName: "
|
|
11945
|
+
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";
|
|
11944
11946
|
};
|
|
11945
11947
|
} & {
|
|
11946
11948
|
header: {
|
|
@@ -11953,7 +11955,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11953
11955
|
} | {
|
|
11954
11956
|
input: {
|
|
11955
11957
|
param: {
|
|
11956
|
-
templateName: "
|
|
11958
|
+
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";
|
|
11957
11959
|
};
|
|
11958
11960
|
} & {
|
|
11959
11961
|
header: {
|
|
@@ -11970,7 +11972,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11970
11972
|
$post: {
|
|
11971
11973
|
input: {
|
|
11972
11974
|
param: {
|
|
11973
|
-
templateName: "
|
|
11975
|
+
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";
|
|
11974
11976
|
};
|
|
11975
11977
|
} & {
|
|
11976
11978
|
header: {
|
|
@@ -12253,7 +12255,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12253
12255
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12254
12256
|
custom_domain_id: string;
|
|
12255
12257
|
primary: boolean;
|
|
12256
|
-
status: "
|
|
12258
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12257
12259
|
verification_method?: "txt" | undefined;
|
|
12258
12260
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12259
12261
|
domain_metadata?: {
|
|
@@ -12294,7 +12296,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12294
12296
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12295
12297
|
custom_domain_id: string;
|
|
12296
12298
|
primary: boolean;
|
|
12297
|
-
status: "
|
|
12299
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12298
12300
|
verification_method?: "txt" | undefined;
|
|
12299
12301
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12300
12302
|
domain_metadata?: {
|
|
@@ -12358,7 +12360,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12358
12360
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12359
12361
|
custom_domain_id: string;
|
|
12360
12362
|
primary: boolean;
|
|
12361
|
-
status: "
|
|
12363
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12362
12364
|
verification_method?: "txt" | undefined;
|
|
12363
12365
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12364
12366
|
domain_metadata?: {
|
|
@@ -12405,7 +12407,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12405
12407
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12406
12408
|
custom_domain_id: string;
|
|
12407
12409
|
primary: boolean;
|
|
12408
|
-
status: "
|
|
12410
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12409
12411
|
verification_method?: "txt" | undefined;
|
|
12410
12412
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12411
12413
|
domain_metadata?: {
|
|
@@ -12451,7 +12453,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12451
12453
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12452
12454
|
custom_domain_id: string;
|
|
12453
12455
|
primary: boolean;
|
|
12454
|
-
status: "
|
|
12456
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12455
12457
|
verification_method?: "txt" | undefined;
|
|
12456
12458
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12457
12459
|
domain_metadata?: {
|
|
@@ -12492,7 +12494,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12492
12494
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12493
12495
|
custom_domain_id: string;
|
|
12494
12496
|
primary: boolean;
|
|
12495
|
-
status: "
|
|
12497
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12496
12498
|
verification_method?: "txt" | undefined;
|
|
12497
12499
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12498
12500
|
domain_metadata?: {
|
|
@@ -12922,7 +12924,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12922
12924
|
} & {
|
|
12923
12925
|
json: {
|
|
12924
12926
|
body?: string | undefined;
|
|
12925
|
-
screen?: "
|
|
12927
|
+
screen?: "password" | "identifier" | "signup" | "login" | undefined;
|
|
12926
12928
|
branding?: {
|
|
12927
12929
|
colors?: {
|
|
12928
12930
|
primary: string;
|
|
@@ -13213,7 +13215,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13213
13215
|
logs: {
|
|
13214
13216
|
action_name: string;
|
|
13215
13217
|
lines: {
|
|
13216
|
-
level: "
|
|
13218
|
+
level: "error" | "log" | "debug" | "info" | "warn";
|
|
13217
13219
|
message: string;
|
|
13218
13220
|
}[];
|
|
13219
13221
|
}[];
|
|
@@ -13880,7 +13882,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13880
13882
|
args: import("hono/utils/types").JSONValue[];
|
|
13881
13883
|
}[];
|
|
13882
13884
|
logs: {
|
|
13883
|
-
level: "
|
|
13885
|
+
level: "error" | "log" | "debug" | "info" | "warn";
|
|
13884
13886
|
message: string;
|
|
13885
13887
|
}[];
|
|
13886
13888
|
error?: string | undefined;
|