authhero 9.1.0 → 9.2.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/authhero-widget.esm.js +1 -1
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/assets/u/widget/p-e95c436f.entry.js +1 -0
- package/dist/authhero.cjs +211 -211
- package/dist/authhero.d.ts +168 -97
- package/dist/authhero.mjs +25619 -25625
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/common.d.ts +6 -0
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/helpers/action-executions-cleanup.d.ts +34 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/run-retention.d.ts +4 -1
- package/dist/types/helpers/service-token.d.ts +16 -5
- package/dist/types/hooks/post-user-login.d.ts +6 -0
- package/dist/types/index.d.ts +123 -93
- package/dist/types/routes/auth-api/index.d.ts +26 -26
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +1 -1
- package/dist/types/routes/management-api/client-grants.d.ts +9 -9
- package/dist/types/routes/management-api/clients.d.ts +8 -8
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +28 -0
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +90 -62
- 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/tenants.d.ts +1 -1
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/package.json +6 -6
- package/dist/assets/u/widget/p-eca60302.entry.js +0 -1
|
@@ -96,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
96
96
|
};
|
|
97
97
|
} & {
|
|
98
98
|
json: {
|
|
99
|
-
type: "email" | "
|
|
99
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
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" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
428
428
|
enabled: boolean;
|
|
429
429
|
trial_expired?: boolean | undefined;
|
|
430
430
|
};
|
|
@@ -1202,10 +1202,10 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1202
1202
|
inviter: {
|
|
1203
1203
|
name?: string | undefined;
|
|
1204
1204
|
};
|
|
1205
|
-
connection_id?: string | undefined;
|
|
1206
1205
|
id?: string | undefined;
|
|
1207
1206
|
app_metadata?: Record<string, any> | undefined;
|
|
1208
1207
|
user_metadata?: Record<string, any> | undefined;
|
|
1208
|
+
connection_id?: string | undefined;
|
|
1209
1209
|
roles?: string[] | undefined;
|
|
1210
1210
|
send_invitation_email?: boolean | undefined;
|
|
1211
1211
|
ttl_sec?: number | undefined;
|
|
@@ -2876,6 +2876,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2876
2876
|
config?: {
|
|
2877
2877
|
placeholder?: string | undefined;
|
|
2878
2878
|
default_value?: string | undefined;
|
|
2879
|
+
last_used?: boolean | undefined;
|
|
2880
|
+
last_used_label?: string | undefined;
|
|
2879
2881
|
} | undefined;
|
|
2880
2882
|
} | {
|
|
2881
2883
|
id: string;
|
|
@@ -3047,6 +3049,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3047
3049
|
multiline?: boolean | undefined;
|
|
3048
3050
|
max_length?: number | undefined;
|
|
3049
3051
|
default_value?: string | undefined;
|
|
3052
|
+
last_used?: boolean | undefined;
|
|
3053
|
+
last_used_label?: string | undefined;
|
|
3050
3054
|
} | undefined;
|
|
3051
3055
|
} | {
|
|
3052
3056
|
id: string;
|
|
@@ -3479,6 +3483,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3479
3483
|
config?: {
|
|
3480
3484
|
placeholder?: string | undefined;
|
|
3481
3485
|
default_value?: string | undefined;
|
|
3486
|
+
last_used?: boolean | undefined;
|
|
3487
|
+
last_used_label?: string | undefined;
|
|
3482
3488
|
} | undefined;
|
|
3483
3489
|
} | {
|
|
3484
3490
|
id: string;
|
|
@@ -3650,6 +3656,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3650
3656
|
multiline?: boolean | undefined;
|
|
3651
3657
|
max_length?: number | undefined;
|
|
3652
3658
|
default_value?: string | undefined;
|
|
3659
|
+
last_used?: boolean | undefined;
|
|
3660
|
+
last_used_label?: string | undefined;
|
|
3653
3661
|
} | undefined;
|
|
3654
3662
|
} | {
|
|
3655
3663
|
id: string;
|
|
@@ -4098,6 +4106,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4098
4106
|
config?: {
|
|
4099
4107
|
placeholder?: string | undefined;
|
|
4100
4108
|
default_value?: string | undefined;
|
|
4109
|
+
last_used?: boolean | undefined;
|
|
4110
|
+
last_used_label?: string | undefined;
|
|
4101
4111
|
} | undefined;
|
|
4102
4112
|
} | {
|
|
4103
4113
|
id: string;
|
|
@@ -4269,6 +4279,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4269
4279
|
multiline?: boolean | undefined;
|
|
4270
4280
|
max_length?: number | undefined;
|
|
4271
4281
|
default_value?: string | undefined;
|
|
4282
|
+
last_used?: boolean | undefined;
|
|
4283
|
+
last_used_label?: string | undefined;
|
|
4272
4284
|
} | undefined;
|
|
4273
4285
|
} | {
|
|
4274
4286
|
id: string;
|
|
@@ -4718,6 +4730,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4718
4730
|
config?: {
|
|
4719
4731
|
placeholder?: string | undefined;
|
|
4720
4732
|
default_value?: string | undefined;
|
|
4733
|
+
last_used?: boolean | undefined;
|
|
4734
|
+
last_used_label?: string | undefined;
|
|
4721
4735
|
} | undefined;
|
|
4722
4736
|
} | {
|
|
4723
4737
|
id: string;
|
|
@@ -4889,6 +4903,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4889
4903
|
multiline?: boolean | undefined;
|
|
4890
4904
|
max_length?: number | undefined;
|
|
4891
4905
|
default_value?: string | undefined;
|
|
4906
|
+
last_used?: boolean | undefined;
|
|
4907
|
+
last_used_label?: string | undefined;
|
|
4892
4908
|
} | undefined;
|
|
4893
4909
|
} | {
|
|
4894
4910
|
id: string;
|
|
@@ -5319,6 +5335,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5319
5335
|
config?: {
|
|
5320
5336
|
placeholder?: string | undefined;
|
|
5321
5337
|
default_value?: string | undefined;
|
|
5338
|
+
last_used?: boolean | undefined;
|
|
5339
|
+
last_used_label?: string | undefined;
|
|
5322
5340
|
} | undefined;
|
|
5323
5341
|
} | {
|
|
5324
5342
|
id: string;
|
|
@@ -5490,6 +5508,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5490
5508
|
multiline?: boolean | undefined;
|
|
5491
5509
|
max_length?: number | undefined;
|
|
5492
5510
|
default_value?: string | undefined;
|
|
5511
|
+
last_used?: boolean | undefined;
|
|
5512
|
+
last_used_label?: string | undefined;
|
|
5493
5513
|
} | undefined;
|
|
5494
5514
|
} | {
|
|
5495
5515
|
id: string;
|
|
@@ -5918,6 +5938,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5918
5938
|
config?: {
|
|
5919
5939
|
placeholder?: string | undefined;
|
|
5920
5940
|
default_value?: string | undefined;
|
|
5941
|
+
last_used?: boolean | undefined;
|
|
5942
|
+
last_used_label?: string | undefined;
|
|
5921
5943
|
} | undefined;
|
|
5922
5944
|
} | {
|
|
5923
5945
|
id: string;
|
|
@@ -6089,6 +6111,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6089
6111
|
multiline?: boolean | undefined;
|
|
6090
6112
|
max_length?: number | undefined;
|
|
6091
6113
|
default_value?: string | undefined;
|
|
6114
|
+
last_used?: boolean | undefined;
|
|
6115
|
+
last_used_label?: string | undefined;
|
|
6092
6116
|
} | undefined;
|
|
6093
6117
|
} | {
|
|
6094
6118
|
id: string;
|
|
@@ -6519,6 +6543,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6519
6543
|
config?: {
|
|
6520
6544
|
placeholder?: string | undefined;
|
|
6521
6545
|
default_value?: string | undefined;
|
|
6546
|
+
last_used?: boolean | undefined;
|
|
6547
|
+
last_used_label?: string | undefined;
|
|
6522
6548
|
} | undefined;
|
|
6523
6549
|
} | {
|
|
6524
6550
|
id: string;
|
|
@@ -6690,6 +6716,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6690
6716
|
multiline?: boolean | undefined;
|
|
6691
6717
|
max_length?: number | undefined;
|
|
6692
6718
|
default_value?: string | undefined;
|
|
6719
|
+
last_used?: boolean | undefined;
|
|
6720
|
+
last_used_label?: string | undefined;
|
|
6693
6721
|
} | undefined;
|
|
6694
6722
|
} | {
|
|
6695
6723
|
id: string;
|
|
@@ -6933,7 +6961,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6933
6961
|
};
|
|
6934
6962
|
};
|
|
6935
6963
|
output: {
|
|
6936
|
-
prompt: "
|
|
6964
|
+
prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6937
6965
|
language: string;
|
|
6938
6966
|
}[];
|
|
6939
6967
|
outputFormat: "json";
|
|
@@ -6971,7 +6999,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6971
6999
|
$get: {
|
|
6972
7000
|
input: {
|
|
6973
7001
|
param: {
|
|
6974
|
-
prompt: "
|
|
7002
|
+
prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6975
7003
|
language: string;
|
|
6976
7004
|
};
|
|
6977
7005
|
} & {
|
|
@@ -6993,7 +7021,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6993
7021
|
$put: {
|
|
6994
7022
|
input: {
|
|
6995
7023
|
param: {
|
|
6996
|
-
prompt: "
|
|
7024
|
+
prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6997
7025
|
language: string;
|
|
6998
7026
|
};
|
|
6999
7027
|
} & {
|
|
@@ -7017,7 +7045,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7017
7045
|
$delete: {
|
|
7018
7046
|
input: {
|
|
7019
7047
|
param: {
|
|
7020
|
-
prompt: "
|
|
7048
|
+
prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
7021
7049
|
language: string;
|
|
7022
7050
|
};
|
|
7023
7051
|
} & {
|
|
@@ -8520,7 +8548,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8520
8548
|
log_type: string;
|
|
8521
8549
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8522
8550
|
actor: {
|
|
8523
|
-
type: "
|
|
8551
|
+
type: "api_key" | "user" | "client_credentials" | "system" | "admin";
|
|
8524
8552
|
id?: string | undefined;
|
|
8525
8553
|
email?: string | undefined;
|
|
8526
8554
|
org_id?: string | undefined;
|
|
@@ -9171,7 +9199,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9171
9199
|
};
|
|
9172
9200
|
};
|
|
9173
9201
|
output: {
|
|
9174
|
-
type: "
|
|
9202
|
+
type: "fn" | "sapi" | "i" | "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" | "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";
|
|
9175
9203
|
date: string;
|
|
9176
9204
|
isMobile: boolean;
|
|
9177
9205
|
log_id: string;
|
|
@@ -9210,7 +9238,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9210
9238
|
limit: number;
|
|
9211
9239
|
length: number;
|
|
9212
9240
|
logs: {
|
|
9213
|
-
type: "
|
|
9241
|
+
type: "fn" | "sapi" | "i" | "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" | "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";
|
|
9214
9242
|
date: string;
|
|
9215
9243
|
isMobile: boolean;
|
|
9216
9244
|
log_id: string;
|
|
@@ -9249,7 +9277,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9249
9277
|
next?: string | undefined;
|
|
9250
9278
|
} | {
|
|
9251
9279
|
logs: {
|
|
9252
|
-
type: "
|
|
9280
|
+
type: "fn" | "sapi" | "i" | "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" | "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";
|
|
9253
9281
|
date: string;
|
|
9254
9282
|
isMobile: boolean;
|
|
9255
9283
|
log_id: string;
|
|
@@ -9303,7 +9331,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9303
9331
|
};
|
|
9304
9332
|
};
|
|
9305
9333
|
output: {
|
|
9306
|
-
type: "
|
|
9334
|
+
type: "fn" | "sapi" | "i" | "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" | "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";
|
|
9307
9335
|
date: string;
|
|
9308
9336
|
isMobile: boolean;
|
|
9309
9337
|
log_id: string;
|
|
@@ -9459,7 +9487,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9459
9487
|
audience?: string | undefined;
|
|
9460
9488
|
client_id?: string | undefined;
|
|
9461
9489
|
allow_any_organization?: string | undefined;
|
|
9462
|
-
subject_type?: "
|
|
9490
|
+
subject_type?: "client" | "user" | undefined;
|
|
9463
9491
|
};
|
|
9464
9492
|
} & {
|
|
9465
9493
|
header: {
|
|
@@ -9474,7 +9502,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9474
9502
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9475
9503
|
allow_any_organization?: boolean | undefined;
|
|
9476
9504
|
is_system?: boolean | undefined;
|
|
9477
|
-
subject_type?: "
|
|
9505
|
+
subject_type?: "client" | "user" | undefined;
|
|
9478
9506
|
authorization_details_types?: string[] | undefined;
|
|
9479
9507
|
created_at?: string | undefined;
|
|
9480
9508
|
updated_at?: string | undefined;
|
|
@@ -9490,7 +9518,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9490
9518
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9491
9519
|
allow_any_organization?: boolean | undefined;
|
|
9492
9520
|
is_system?: boolean | undefined;
|
|
9493
|
-
subject_type?: "
|
|
9521
|
+
subject_type?: "client" | "user" | undefined;
|
|
9494
9522
|
authorization_details_types?: string[] | undefined;
|
|
9495
9523
|
created_at?: string | undefined;
|
|
9496
9524
|
updated_at?: string | undefined;
|
|
@@ -9506,7 +9534,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9506
9534
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9507
9535
|
allow_any_organization?: boolean | undefined;
|
|
9508
9536
|
is_system?: boolean | undefined;
|
|
9509
|
-
subject_type?: "
|
|
9537
|
+
subject_type?: "client" | "user" | undefined;
|
|
9510
9538
|
authorization_details_types?: string[] | undefined;
|
|
9511
9539
|
created_at?: string | undefined;
|
|
9512
9540
|
updated_at?: string | undefined;
|
|
@@ -9537,7 +9565,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9537
9565
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9538
9566
|
allow_any_organization?: boolean | undefined;
|
|
9539
9567
|
is_system?: boolean | undefined;
|
|
9540
|
-
subject_type?: "
|
|
9568
|
+
subject_type?: "client" | "user" | undefined;
|
|
9541
9569
|
authorization_details_types?: string[] | undefined;
|
|
9542
9570
|
created_at?: string | undefined;
|
|
9543
9571
|
updated_at?: string | undefined;
|
|
@@ -9582,7 +9610,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9582
9610
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9583
9611
|
allow_any_organization?: boolean | undefined;
|
|
9584
9612
|
is_system?: boolean | undefined;
|
|
9585
|
-
subject_type?: "
|
|
9613
|
+
subject_type?: "client" | "user" | undefined;
|
|
9586
9614
|
authorization_details_types?: string[] | undefined;
|
|
9587
9615
|
};
|
|
9588
9616
|
};
|
|
@@ -9594,7 +9622,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9594
9622
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9595
9623
|
allow_any_organization?: boolean | undefined;
|
|
9596
9624
|
is_system?: boolean | undefined;
|
|
9597
|
-
subject_type?: "
|
|
9625
|
+
subject_type?: "client" | "user" | undefined;
|
|
9598
9626
|
authorization_details_types?: string[] | undefined;
|
|
9599
9627
|
created_at?: string | undefined;
|
|
9600
9628
|
updated_at?: string | undefined;
|
|
@@ -9618,7 +9646,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9618
9646
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9619
9647
|
allow_any_organization?: boolean | undefined;
|
|
9620
9648
|
is_system?: boolean | undefined;
|
|
9621
|
-
subject_type?: "
|
|
9649
|
+
subject_type?: "client" | "user" | undefined;
|
|
9622
9650
|
authorization_details_types?: string[] | undefined;
|
|
9623
9651
|
};
|
|
9624
9652
|
};
|
|
@@ -9630,7 +9658,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9630
9658
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9631
9659
|
allow_any_organization?: boolean | undefined;
|
|
9632
9660
|
is_system?: boolean | undefined;
|
|
9633
|
-
subject_type?: "
|
|
9661
|
+
subject_type?: "client" | "user" | undefined;
|
|
9634
9662
|
authorization_details_types?: string[] | undefined;
|
|
9635
9663
|
created_at?: string | undefined;
|
|
9636
9664
|
updated_at?: string | undefined;
|
|
@@ -9714,7 +9742,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9714
9742
|
addons?: {
|
|
9715
9743
|
[x: string]: any;
|
|
9716
9744
|
} | undefined;
|
|
9717
|
-
token_endpoint_auth_method?: "
|
|
9745
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9718
9746
|
client_metadata?: {
|
|
9719
9747
|
[x: string]: string;
|
|
9720
9748
|
} | undefined;
|
|
@@ -9816,7 +9844,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9816
9844
|
addons?: {
|
|
9817
9845
|
[x: string]: any;
|
|
9818
9846
|
} | undefined;
|
|
9819
|
-
token_endpoint_auth_method?: "
|
|
9847
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9820
9848
|
client_metadata?: {
|
|
9821
9849
|
[x: string]: string;
|
|
9822
9850
|
} | undefined;
|
|
@@ -9918,7 +9946,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9918
9946
|
addons?: {
|
|
9919
9947
|
[x: string]: any;
|
|
9920
9948
|
} | undefined;
|
|
9921
|
-
token_endpoint_auth_method?: "
|
|
9949
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9922
9950
|
client_metadata?: {
|
|
9923
9951
|
[x: string]: string;
|
|
9924
9952
|
} | undefined;
|
|
@@ -10035,7 +10063,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10035
10063
|
addons?: {
|
|
10036
10064
|
[x: string]: any;
|
|
10037
10065
|
} | undefined;
|
|
10038
|
-
token_endpoint_auth_method?: "
|
|
10066
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10039
10067
|
client_metadata?: {
|
|
10040
10068
|
[x: string]: string;
|
|
10041
10069
|
} | undefined;
|
|
@@ -10153,7 +10181,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10153
10181
|
custom_login_page_preview?: string | undefined;
|
|
10154
10182
|
form_template?: string | undefined;
|
|
10155
10183
|
addons?: Record<string, any> | undefined;
|
|
10156
|
-
token_endpoint_auth_method?: "
|
|
10184
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10157
10185
|
client_metadata?: Record<string, string> | undefined;
|
|
10158
10186
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10159
10187
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10239,7 +10267,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10239
10267
|
addons?: {
|
|
10240
10268
|
[x: string]: any;
|
|
10241
10269
|
} | undefined;
|
|
10242
|
-
token_endpoint_auth_method?: "
|
|
10270
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10243
10271
|
client_metadata?: {
|
|
10244
10272
|
[x: string]: string;
|
|
10245
10273
|
} | undefined;
|
|
@@ -10336,7 +10364,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10336
10364
|
custom_login_page_preview?: string | undefined;
|
|
10337
10365
|
form_template?: string | undefined;
|
|
10338
10366
|
addons?: Record<string, any> | undefined;
|
|
10339
|
-
token_endpoint_auth_method?: "
|
|
10367
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10340
10368
|
client_metadata?: Record<string, string> | undefined;
|
|
10341
10369
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10342
10370
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10422,7 +10450,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10422
10450
|
addons?: {
|
|
10423
10451
|
[x: string]: any;
|
|
10424
10452
|
} | undefined;
|
|
10425
|
-
token_endpoint_auth_method?: "
|
|
10453
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10426
10454
|
client_metadata?: {
|
|
10427
10455
|
[x: string]: string;
|
|
10428
10456
|
} | undefined;
|
|
@@ -11767,7 +11795,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11767
11795
|
};
|
|
11768
11796
|
};
|
|
11769
11797
|
output: {
|
|
11770
|
-
type: "
|
|
11798
|
+
type: "fn" | "sapi" | "i" | "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" | "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";
|
|
11771
11799
|
date: string;
|
|
11772
11800
|
isMobile: boolean;
|
|
11773
11801
|
log_id: string;
|
|
@@ -11806,7 +11834,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11806
11834
|
limit: number;
|
|
11807
11835
|
length: number;
|
|
11808
11836
|
logs: {
|
|
11809
|
-
type: "
|
|
11837
|
+
type: "fn" | "sapi" | "i" | "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" | "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";
|
|
11810
11838
|
date: string;
|
|
11811
11839
|
isMobile: boolean;
|
|
11812
11840
|
log_id: string;
|
|
@@ -12125,7 +12153,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12125
12153
|
};
|
|
12126
12154
|
} & {
|
|
12127
12155
|
json: {
|
|
12128
|
-
template: "
|
|
12156
|
+
template: "change_password" | "verify_email" | "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";
|
|
12129
12157
|
body: string;
|
|
12130
12158
|
from: string;
|
|
12131
12159
|
subject: string;
|
|
@@ -12146,7 +12174,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12146
12174
|
};
|
|
12147
12175
|
} & {
|
|
12148
12176
|
json: {
|
|
12149
|
-
template: "
|
|
12177
|
+
template: "change_password" | "verify_email" | "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";
|
|
12150
12178
|
body: string;
|
|
12151
12179
|
from: string;
|
|
12152
12180
|
subject: string;
|
|
@@ -12158,7 +12186,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12158
12186
|
};
|
|
12159
12187
|
};
|
|
12160
12188
|
output: {
|
|
12161
|
-
template: "
|
|
12189
|
+
template: "change_password" | "verify_email" | "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";
|
|
12162
12190
|
body: string;
|
|
12163
12191
|
from: string;
|
|
12164
12192
|
subject: string;
|
|
@@ -12181,7 +12209,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12181
12209
|
};
|
|
12182
12210
|
};
|
|
12183
12211
|
output: {
|
|
12184
|
-
name: "
|
|
12212
|
+
name: "change_password" | "verify_email" | "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";
|
|
12185
12213
|
body: string;
|
|
12186
12214
|
subject: string;
|
|
12187
12215
|
}[];
|
|
@@ -12194,7 +12222,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12194
12222
|
$get: {
|
|
12195
12223
|
input: {
|
|
12196
12224
|
param: {
|
|
12197
|
-
templateName: "
|
|
12225
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
12198
12226
|
};
|
|
12199
12227
|
} & {
|
|
12200
12228
|
header: {
|
|
@@ -12207,7 +12235,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12207
12235
|
} | {
|
|
12208
12236
|
input: {
|
|
12209
12237
|
param: {
|
|
12210
|
-
templateName: "
|
|
12238
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
12211
12239
|
};
|
|
12212
12240
|
} & {
|
|
12213
12241
|
header: {
|
|
@@ -12215,7 +12243,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12215
12243
|
};
|
|
12216
12244
|
};
|
|
12217
12245
|
output: {
|
|
12218
|
-
template: "
|
|
12246
|
+
template: "change_password" | "verify_email" | "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";
|
|
12219
12247
|
body: string;
|
|
12220
12248
|
from: string;
|
|
12221
12249
|
subject: string;
|
|
@@ -12234,7 +12262,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12234
12262
|
$put: {
|
|
12235
12263
|
input: {
|
|
12236
12264
|
param: {
|
|
12237
|
-
templateName: "
|
|
12265
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
12238
12266
|
};
|
|
12239
12267
|
} & {
|
|
12240
12268
|
header: {
|
|
@@ -12242,7 +12270,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12242
12270
|
};
|
|
12243
12271
|
} & {
|
|
12244
12272
|
json: {
|
|
12245
|
-
template: "
|
|
12273
|
+
template: "change_password" | "verify_email" | "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";
|
|
12246
12274
|
body: string;
|
|
12247
12275
|
subject: string;
|
|
12248
12276
|
syntax?: "liquid" | undefined;
|
|
@@ -12254,7 +12282,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12254
12282
|
};
|
|
12255
12283
|
};
|
|
12256
12284
|
output: {
|
|
12257
|
-
template: "
|
|
12285
|
+
template: "change_password" | "verify_email" | "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";
|
|
12258
12286
|
body: string;
|
|
12259
12287
|
from: string;
|
|
12260
12288
|
subject: string;
|
|
@@ -12273,7 +12301,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12273
12301
|
$patch: {
|
|
12274
12302
|
input: {
|
|
12275
12303
|
param: {
|
|
12276
|
-
templateName: "
|
|
12304
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
12277
12305
|
};
|
|
12278
12306
|
} & {
|
|
12279
12307
|
header: {
|
|
@@ -12281,7 +12309,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12281
12309
|
};
|
|
12282
12310
|
} & {
|
|
12283
12311
|
json: {
|
|
12284
|
-
template?: "
|
|
12312
|
+
template?: "change_password" | "verify_email" | "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;
|
|
12285
12313
|
body?: string | undefined;
|
|
12286
12314
|
from?: string | undefined;
|
|
12287
12315
|
subject?: string | undefined;
|
|
@@ -12298,7 +12326,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12298
12326
|
} | {
|
|
12299
12327
|
input: {
|
|
12300
12328
|
param: {
|
|
12301
|
-
templateName: "
|
|
12329
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
12302
12330
|
};
|
|
12303
12331
|
} & {
|
|
12304
12332
|
header: {
|
|
@@ -12306,7 +12334,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12306
12334
|
};
|
|
12307
12335
|
} & {
|
|
12308
12336
|
json: {
|
|
12309
|
-
template?: "
|
|
12337
|
+
template?: "change_password" | "verify_email" | "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;
|
|
12310
12338
|
body?: string | undefined;
|
|
12311
12339
|
from?: string | undefined;
|
|
12312
12340
|
subject?: string | undefined;
|
|
@@ -12318,7 +12346,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12318
12346
|
};
|
|
12319
12347
|
};
|
|
12320
12348
|
output: {
|
|
12321
|
-
template: "
|
|
12349
|
+
template: "change_password" | "verify_email" | "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";
|
|
12322
12350
|
body: string;
|
|
12323
12351
|
from: string;
|
|
12324
12352
|
subject: string;
|
|
@@ -12337,7 +12365,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12337
12365
|
$delete: {
|
|
12338
12366
|
input: {
|
|
12339
12367
|
param: {
|
|
12340
|
-
templateName: "
|
|
12368
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
12341
12369
|
};
|
|
12342
12370
|
} & {
|
|
12343
12371
|
header: {
|
|
@@ -12350,7 +12378,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12350
12378
|
} | {
|
|
12351
12379
|
input: {
|
|
12352
12380
|
param: {
|
|
12353
|
-
templateName: "
|
|
12381
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
12354
12382
|
};
|
|
12355
12383
|
} & {
|
|
12356
12384
|
header: {
|
|
@@ -12367,7 +12395,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12367
12395
|
$post: {
|
|
12368
12396
|
input: {
|
|
12369
12397
|
param: {
|
|
12370
|
-
templateName: "
|
|
12398
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
12371
12399
|
};
|
|
12372
12400
|
} & {
|
|
12373
12401
|
header: {
|
|
@@ -12650,7 +12678,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12650
12678
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12651
12679
|
custom_domain_id: string;
|
|
12652
12680
|
primary: boolean;
|
|
12653
|
-
status: "
|
|
12681
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12654
12682
|
verification_method?: "txt" | undefined;
|
|
12655
12683
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12656
12684
|
domain_metadata?: {
|
|
@@ -12691,7 +12719,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12691
12719
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12692
12720
|
custom_domain_id: string;
|
|
12693
12721
|
primary: boolean;
|
|
12694
|
-
status: "
|
|
12722
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12695
12723
|
verification_method?: "txt" | undefined;
|
|
12696
12724
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12697
12725
|
domain_metadata?: {
|
|
@@ -12755,7 +12783,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12755
12783
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12756
12784
|
custom_domain_id: string;
|
|
12757
12785
|
primary: boolean;
|
|
12758
|
-
status: "
|
|
12786
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12759
12787
|
verification_method?: "txt" | undefined;
|
|
12760
12788
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12761
12789
|
domain_metadata?: {
|
|
@@ -12802,7 +12830,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12802
12830
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12803
12831
|
custom_domain_id: string;
|
|
12804
12832
|
primary: boolean;
|
|
12805
|
-
status: "
|
|
12833
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12806
12834
|
verification_method?: "txt" | undefined;
|
|
12807
12835
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12808
12836
|
domain_metadata?: {
|
|
@@ -12848,7 +12876,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12848
12876
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12849
12877
|
custom_domain_id: string;
|
|
12850
12878
|
primary: boolean;
|
|
12851
|
-
status: "
|
|
12879
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12852
12880
|
verification_method?: "txt" | undefined;
|
|
12853
12881
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12854
12882
|
domain_metadata?: {
|
|
@@ -12889,7 +12917,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12889
12917
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12890
12918
|
custom_domain_id: string;
|
|
12891
12919
|
primary: boolean;
|
|
12892
|
-
status: "
|
|
12920
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12893
12921
|
verification_method?: "txt" | undefined;
|
|
12894
12922
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12895
12923
|
domain_metadata?: {
|
|
@@ -13319,7 +13347,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13319
13347
|
} & {
|
|
13320
13348
|
json: {
|
|
13321
13349
|
body?: string | undefined;
|
|
13322
|
-
screen?: "
|
|
13350
|
+
screen?: "identifier" | "signup" | "password" | "login" | undefined;
|
|
13323
13351
|
branding?: {
|
|
13324
13352
|
colors?: {
|
|
13325
13353
|
primary: string;
|
|
@@ -13610,7 +13638,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13610
13638
|
logs: {
|
|
13611
13639
|
action_name: string;
|
|
13612
13640
|
lines: {
|
|
13613
|
-
level: "error" | "
|
|
13641
|
+
level: "error" | "info" | "log" | "warn" | "debug";
|
|
13614
13642
|
message: string;
|
|
13615
13643
|
}[];
|
|
13616
13644
|
}[];
|
|
@@ -14279,7 +14307,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14279
14307
|
args: import("hono/utils/types").JSONValue[];
|
|
14280
14308
|
}[];
|
|
14281
14309
|
logs: {
|
|
14282
|
-
level: "error" | "
|
|
14310
|
+
level: "error" | "info" | "log" | "warn" | "debug";
|
|
14283
14311
|
message: string;
|
|
14284
14312
|
}[];
|
|
14285
14313
|
error?: string | undefined;
|