authhero 8.2.0 → 8.2.1
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 +96 -96
- package/dist/authhero.d.ts +111 -86
- package/dist/authhero.mjs +9464 -9394
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +1 -1
- package/dist/types/helpers/compose-auth-data.d.ts +9 -1
- package/dist/types/helpers/server-timing.d.ts +44 -2
- package/dist/types/index.d.ts +86 -86
- package/dist/types/routes/auth-api/index.d.ts +16 -16
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/management-api/actions.d.ts +3 -3
- 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/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +64 -64
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +2 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/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 +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/types/Bindings.d.ts +21 -0
- package/dist/types/types/IdToken.d.ts +1 -1
- package/dist/types/types/Variables.d.ts +4 -0
- package/package.json +3 -3
|
@@ -37,7 +37,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
37
37
|
};
|
|
38
38
|
} & {
|
|
39
39
|
json: {
|
|
40
|
-
type: "email" | "
|
|
40
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
41
41
|
phone_number?: string | undefined;
|
|
42
42
|
totp_secret?: string | undefined;
|
|
43
43
|
credential_id?: string | undefined;
|
|
@@ -177,7 +177,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
177
177
|
};
|
|
178
178
|
};
|
|
179
179
|
output: {
|
|
180
|
-
name: "
|
|
180
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
181
181
|
enabled: boolean;
|
|
182
182
|
trial_expired?: boolean | undefined;
|
|
183
183
|
}[];
|
|
@@ -332,7 +332,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
332
332
|
$get: {
|
|
333
333
|
input: {
|
|
334
334
|
param: {
|
|
335
|
-
factor_name: "
|
|
335
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
336
336
|
};
|
|
337
337
|
} & {
|
|
338
338
|
header: {
|
|
@@ -340,7 +340,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
340
340
|
};
|
|
341
341
|
};
|
|
342
342
|
output: {
|
|
343
|
-
name: "
|
|
343
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
344
344
|
enabled: boolean;
|
|
345
345
|
trial_expired?: boolean | undefined;
|
|
346
346
|
};
|
|
@@ -353,7 +353,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
353
353
|
$put: {
|
|
354
354
|
input: {
|
|
355
355
|
param: {
|
|
356
|
-
factor_name: "
|
|
356
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
357
357
|
};
|
|
358
358
|
} & {
|
|
359
359
|
header: {
|
|
@@ -365,7 +365,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
365
365
|
};
|
|
366
366
|
};
|
|
367
367
|
output: {
|
|
368
|
-
name: "
|
|
368
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
369
369
|
enabled: boolean;
|
|
370
370
|
trial_expired?: boolean | undefined;
|
|
371
371
|
};
|
|
@@ -1111,9 +1111,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1111
1111
|
email?: string | undefined;
|
|
1112
1112
|
};
|
|
1113
1113
|
id?: string | undefined;
|
|
1114
|
+
connection_id?: string | undefined;
|
|
1114
1115
|
app_metadata?: Record<string, any> | undefined;
|
|
1115
1116
|
user_metadata?: Record<string, any> | undefined;
|
|
1116
|
-
connection_id?: string | undefined;
|
|
1117
1117
|
roles?: string[] | undefined;
|
|
1118
1118
|
ttl_sec?: number | undefined;
|
|
1119
1119
|
send_invitation_email?: boolean | undefined;
|
|
@@ -1298,8 +1298,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1298
1298
|
};
|
|
1299
1299
|
} & {
|
|
1300
1300
|
json: {
|
|
1301
|
-
show_as_button?: boolean | undefined;
|
|
1302
1301
|
assign_membership_on_login?: boolean | undefined;
|
|
1302
|
+
show_as_button?: boolean | undefined;
|
|
1303
1303
|
is_signup_enabled?: boolean | undefined;
|
|
1304
1304
|
};
|
|
1305
1305
|
};
|
|
@@ -6601,7 +6601,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6601
6601
|
};
|
|
6602
6602
|
};
|
|
6603
6603
|
output: {
|
|
6604
|
-
prompt: "
|
|
6604
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "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";
|
|
6605
6605
|
language: string;
|
|
6606
6606
|
}[];
|
|
6607
6607
|
outputFormat: "json";
|
|
@@ -6639,7 +6639,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6639
6639
|
$get: {
|
|
6640
6640
|
input: {
|
|
6641
6641
|
param: {
|
|
6642
|
-
prompt: "
|
|
6642
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "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";
|
|
6643
6643
|
language: string;
|
|
6644
6644
|
};
|
|
6645
6645
|
} & {
|
|
@@ -6661,7 +6661,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6661
6661
|
$put: {
|
|
6662
6662
|
input: {
|
|
6663
6663
|
param: {
|
|
6664
|
-
prompt: "
|
|
6664
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "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";
|
|
6665
6665
|
language: string;
|
|
6666
6666
|
};
|
|
6667
6667
|
} & {
|
|
@@ -6685,7 +6685,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6685
6685
|
$delete: {
|
|
6686
6686
|
input: {
|
|
6687
6687
|
param: {
|
|
6688
|
-
prompt: "
|
|
6688
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "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";
|
|
6689
6689
|
language: string;
|
|
6690
6690
|
};
|
|
6691
6691
|
} & {
|
|
@@ -8186,7 +8186,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8186
8186
|
log_type: string;
|
|
8187
8187
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8188
8188
|
actor: {
|
|
8189
|
-
type: "
|
|
8189
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
8190
8190
|
id?: string | undefined;
|
|
8191
8191
|
email?: string | undefined;
|
|
8192
8192
|
org_id?: string | undefined;
|
|
@@ -8664,7 +8664,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8664
8664
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8665
8665
|
};
|
|
8666
8666
|
id: string;
|
|
8667
|
-
status: "
|
|
8667
|
+
status: "suspended" | "active" | "paused";
|
|
8668
8668
|
filters?: {
|
|
8669
8669
|
type: string;
|
|
8670
8670
|
name: string;
|
|
@@ -8696,7 +8696,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8696
8696
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8697
8697
|
};
|
|
8698
8698
|
id: string;
|
|
8699
|
-
status: "
|
|
8699
|
+
status: "suspended" | "active" | "paused";
|
|
8700
8700
|
filters?: {
|
|
8701
8701
|
type: string;
|
|
8702
8702
|
name: string;
|
|
@@ -8721,7 +8721,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8721
8721
|
name: string;
|
|
8722
8722
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
8723
8723
|
sink: Record<string, unknown>;
|
|
8724
|
-
status?: "
|
|
8724
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
8725
8725
|
filters?: {
|
|
8726
8726
|
type: string;
|
|
8727
8727
|
name: string;
|
|
@@ -8736,7 +8736,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8736
8736
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8737
8737
|
};
|
|
8738
8738
|
id: string;
|
|
8739
|
-
status: "
|
|
8739
|
+
status: "suspended" | "active" | "paused";
|
|
8740
8740
|
filters?: {
|
|
8741
8741
|
type: string;
|
|
8742
8742
|
name: string;
|
|
@@ -8771,7 +8771,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8771
8771
|
}[] | undefined;
|
|
8772
8772
|
isPriority?: boolean | undefined;
|
|
8773
8773
|
id?: string | undefined;
|
|
8774
|
-
status?: "
|
|
8774
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
8775
8775
|
created_at?: string | undefined;
|
|
8776
8776
|
updated_at?: string | undefined;
|
|
8777
8777
|
};
|
|
@@ -8783,7 +8783,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8783
8783
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8784
8784
|
};
|
|
8785
8785
|
id: string;
|
|
8786
|
-
status: "
|
|
8786
|
+
status: "suspended" | "active" | "paused";
|
|
8787
8787
|
filters?: {
|
|
8788
8788
|
type: string;
|
|
8789
8789
|
name: string;
|
|
@@ -8834,7 +8834,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8834
8834
|
};
|
|
8835
8835
|
};
|
|
8836
8836
|
output: {
|
|
8837
|
-
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "
|
|
8837
|
+
type: "s" | "w" | "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "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" | "wn" | "wum";
|
|
8838
8838
|
date: string;
|
|
8839
8839
|
isMobile: boolean;
|
|
8840
8840
|
log_id: string;
|
|
@@ -8873,7 +8873,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8873
8873
|
limit: number;
|
|
8874
8874
|
length: number;
|
|
8875
8875
|
logs: {
|
|
8876
|
-
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "
|
|
8876
|
+
type: "s" | "w" | "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "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" | "wn" | "wum";
|
|
8877
8877
|
date: string;
|
|
8878
8878
|
isMobile: boolean;
|
|
8879
8879
|
log_id: string;
|
|
@@ -8927,7 +8927,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8927
8927
|
};
|
|
8928
8928
|
};
|
|
8929
8929
|
output: {
|
|
8930
|
-
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "
|
|
8930
|
+
type: "s" | "w" | "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "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" | "wn" | "wum";
|
|
8931
8931
|
date: string;
|
|
8932
8932
|
isMobile: boolean;
|
|
8933
8933
|
log_id: string;
|
|
@@ -9082,7 +9082,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9082
9082
|
audience?: string | undefined;
|
|
9083
9083
|
client_id?: string | undefined;
|
|
9084
9084
|
allow_any_organization?: string | undefined;
|
|
9085
|
-
subject_type?: "
|
|
9085
|
+
subject_type?: "client" | "user" | undefined;
|
|
9086
9086
|
};
|
|
9087
9087
|
} & {
|
|
9088
9088
|
header: {
|
|
@@ -9097,7 +9097,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9097
9097
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9098
9098
|
allow_any_organization?: boolean | undefined;
|
|
9099
9099
|
is_system?: boolean | undefined;
|
|
9100
|
-
subject_type?: "
|
|
9100
|
+
subject_type?: "client" | "user" | undefined;
|
|
9101
9101
|
authorization_details_types?: string[] | undefined;
|
|
9102
9102
|
created_at?: string | undefined;
|
|
9103
9103
|
updated_at?: string | undefined;
|
|
@@ -9113,7 +9113,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9113
9113
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9114
9114
|
allow_any_organization?: boolean | undefined;
|
|
9115
9115
|
is_system?: boolean | undefined;
|
|
9116
|
-
subject_type?: "
|
|
9116
|
+
subject_type?: "client" | "user" | undefined;
|
|
9117
9117
|
authorization_details_types?: string[] | undefined;
|
|
9118
9118
|
created_at?: string | undefined;
|
|
9119
9119
|
updated_at?: string | undefined;
|
|
@@ -9144,7 +9144,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9144
9144
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9145
9145
|
allow_any_organization?: boolean | undefined;
|
|
9146
9146
|
is_system?: boolean | undefined;
|
|
9147
|
-
subject_type?: "
|
|
9147
|
+
subject_type?: "client" | "user" | undefined;
|
|
9148
9148
|
authorization_details_types?: string[] | undefined;
|
|
9149
9149
|
created_at?: string | undefined;
|
|
9150
9150
|
updated_at?: string | undefined;
|
|
@@ -9189,7 +9189,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9189
9189
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9190
9190
|
allow_any_organization?: boolean | undefined;
|
|
9191
9191
|
is_system?: boolean | undefined;
|
|
9192
|
-
subject_type?: "
|
|
9192
|
+
subject_type?: "client" | "user" | undefined;
|
|
9193
9193
|
authorization_details_types?: string[] | undefined;
|
|
9194
9194
|
};
|
|
9195
9195
|
};
|
|
@@ -9201,7 +9201,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9201
9201
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9202
9202
|
allow_any_organization?: boolean | undefined;
|
|
9203
9203
|
is_system?: boolean | undefined;
|
|
9204
|
-
subject_type?: "
|
|
9204
|
+
subject_type?: "client" | "user" | undefined;
|
|
9205
9205
|
authorization_details_types?: string[] | undefined;
|
|
9206
9206
|
created_at?: string | undefined;
|
|
9207
9207
|
updated_at?: string | undefined;
|
|
@@ -9225,7 +9225,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9225
9225
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9226
9226
|
allow_any_organization?: boolean | undefined;
|
|
9227
9227
|
is_system?: boolean | undefined;
|
|
9228
|
-
subject_type?: "
|
|
9228
|
+
subject_type?: "client" | "user" | undefined;
|
|
9229
9229
|
authorization_details_types?: string[] | undefined;
|
|
9230
9230
|
};
|
|
9231
9231
|
};
|
|
@@ -9237,7 +9237,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9237
9237
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9238
9238
|
allow_any_organization?: boolean | undefined;
|
|
9239
9239
|
is_system?: boolean | undefined;
|
|
9240
|
-
subject_type?: "
|
|
9240
|
+
subject_type?: "client" | "user" | undefined;
|
|
9241
9241
|
authorization_details_types?: string[] | undefined;
|
|
9242
9242
|
created_at?: string | undefined;
|
|
9243
9243
|
updated_at?: string | undefined;
|
|
@@ -9315,7 +9315,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9315
9315
|
addons?: {
|
|
9316
9316
|
[x: string]: any;
|
|
9317
9317
|
} | undefined;
|
|
9318
|
-
token_endpoint_auth_method?: "
|
|
9318
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9319
9319
|
client_metadata?: {
|
|
9320
9320
|
[x: string]: string;
|
|
9321
9321
|
} | undefined;
|
|
@@ -9411,7 +9411,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9411
9411
|
addons?: {
|
|
9412
9412
|
[x: string]: any;
|
|
9413
9413
|
} | undefined;
|
|
9414
|
-
token_endpoint_auth_method?: "
|
|
9414
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9415
9415
|
client_metadata?: {
|
|
9416
9416
|
[x: string]: string;
|
|
9417
9417
|
} | undefined;
|
|
@@ -9522,7 +9522,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9522
9522
|
addons?: {
|
|
9523
9523
|
[x: string]: any;
|
|
9524
9524
|
} | undefined;
|
|
9525
|
-
token_endpoint_auth_method?: "
|
|
9525
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9526
9526
|
client_metadata?: {
|
|
9527
9527
|
[x: string]: string;
|
|
9528
9528
|
} | undefined;
|
|
@@ -9632,7 +9632,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9632
9632
|
custom_login_page_preview?: string | undefined;
|
|
9633
9633
|
form_template?: string | undefined;
|
|
9634
9634
|
addons?: Record<string, any> | undefined;
|
|
9635
|
-
token_endpoint_auth_method?: "
|
|
9635
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9636
9636
|
client_metadata?: Record<string, string> | undefined;
|
|
9637
9637
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9638
9638
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9712,7 +9712,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9712
9712
|
addons?: {
|
|
9713
9713
|
[x: string]: any;
|
|
9714
9714
|
} | undefined;
|
|
9715
|
-
token_endpoint_auth_method?: "
|
|
9715
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9716
9716
|
client_metadata?: {
|
|
9717
9717
|
[x: string]: string;
|
|
9718
9718
|
} | undefined;
|
|
@@ -9801,7 +9801,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9801
9801
|
custom_login_page_preview?: string | undefined;
|
|
9802
9802
|
form_template?: string | undefined;
|
|
9803
9803
|
addons?: Record<string, any> | undefined;
|
|
9804
|
-
token_endpoint_auth_method?: "
|
|
9804
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9805
9805
|
client_metadata?: Record<string, string> | undefined;
|
|
9806
9806
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9807
9807
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9881,7 +9881,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9881
9881
|
addons?: {
|
|
9882
9882
|
[x: string]: any;
|
|
9883
9883
|
} | undefined;
|
|
9884
|
-
token_endpoint_auth_method?: "
|
|
9884
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9885
9885
|
client_metadata?: {
|
|
9886
9886
|
[x: string]: string;
|
|
9887
9887
|
} | undefined;
|
|
@@ -11145,7 +11145,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11145
11145
|
};
|
|
11146
11146
|
};
|
|
11147
11147
|
output: {
|
|
11148
|
-
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "
|
|
11148
|
+
type: "s" | "w" | "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "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" | "wn" | "wum";
|
|
11149
11149
|
date: string;
|
|
11150
11150
|
isMobile: boolean;
|
|
11151
11151
|
log_id: string;
|
|
@@ -11184,7 +11184,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11184
11184
|
limit: number;
|
|
11185
11185
|
length: number;
|
|
11186
11186
|
logs: {
|
|
11187
|
-
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "
|
|
11187
|
+
type: "s" | "w" | "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "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" | "wn" | "wum";
|
|
11188
11188
|
date: string;
|
|
11189
11189
|
isMobile: boolean;
|
|
11190
11190
|
log_id: string;
|
|
@@ -11499,7 +11499,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11499
11499
|
};
|
|
11500
11500
|
} & {
|
|
11501
11501
|
json: {
|
|
11502
|
-
template: "
|
|
11502
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11503
11503
|
body: string;
|
|
11504
11504
|
from: string;
|
|
11505
11505
|
subject: string;
|
|
@@ -11520,7 +11520,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11520
11520
|
};
|
|
11521
11521
|
} & {
|
|
11522
11522
|
json: {
|
|
11523
|
-
template: "
|
|
11523
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11524
11524
|
body: string;
|
|
11525
11525
|
from: string;
|
|
11526
11526
|
subject: string;
|
|
@@ -11532,7 +11532,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11532
11532
|
};
|
|
11533
11533
|
};
|
|
11534
11534
|
output: {
|
|
11535
|
-
template: "
|
|
11535
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11536
11536
|
body: string;
|
|
11537
11537
|
from: string;
|
|
11538
11538
|
subject: string;
|
|
@@ -11555,7 +11555,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11555
11555
|
};
|
|
11556
11556
|
};
|
|
11557
11557
|
output: {
|
|
11558
|
-
name: "
|
|
11558
|
+
name: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11559
11559
|
body: string;
|
|
11560
11560
|
subject: string;
|
|
11561
11561
|
}[];
|
|
@@ -11568,7 +11568,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11568
11568
|
$get: {
|
|
11569
11569
|
input: {
|
|
11570
11570
|
param: {
|
|
11571
|
-
templateName: "
|
|
11571
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11572
11572
|
};
|
|
11573
11573
|
} & {
|
|
11574
11574
|
header: {
|
|
@@ -11581,7 +11581,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11581
11581
|
} | {
|
|
11582
11582
|
input: {
|
|
11583
11583
|
param: {
|
|
11584
|
-
templateName: "
|
|
11584
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11585
11585
|
};
|
|
11586
11586
|
} & {
|
|
11587
11587
|
header: {
|
|
@@ -11589,7 +11589,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11589
11589
|
};
|
|
11590
11590
|
};
|
|
11591
11591
|
output: {
|
|
11592
|
-
template: "
|
|
11592
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11593
11593
|
body: string;
|
|
11594
11594
|
from: string;
|
|
11595
11595
|
subject: string;
|
|
@@ -11608,7 +11608,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11608
11608
|
$put: {
|
|
11609
11609
|
input: {
|
|
11610
11610
|
param: {
|
|
11611
|
-
templateName: "
|
|
11611
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11612
11612
|
};
|
|
11613
11613
|
} & {
|
|
11614
11614
|
header: {
|
|
@@ -11616,7 +11616,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11616
11616
|
};
|
|
11617
11617
|
} & {
|
|
11618
11618
|
json: {
|
|
11619
|
-
template: "
|
|
11619
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11620
11620
|
body: string;
|
|
11621
11621
|
subject: string;
|
|
11622
11622
|
syntax?: "liquid" | undefined;
|
|
@@ -11628,7 +11628,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11628
11628
|
};
|
|
11629
11629
|
};
|
|
11630
11630
|
output: {
|
|
11631
|
-
template: "
|
|
11631
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11632
11632
|
body: string;
|
|
11633
11633
|
from: string;
|
|
11634
11634
|
subject: string;
|
|
@@ -11647,7 +11647,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11647
11647
|
$patch: {
|
|
11648
11648
|
input: {
|
|
11649
11649
|
param: {
|
|
11650
|
-
templateName: "
|
|
11650
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11651
11651
|
};
|
|
11652
11652
|
} & {
|
|
11653
11653
|
header: {
|
|
@@ -11655,7 +11655,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11655
11655
|
};
|
|
11656
11656
|
} & {
|
|
11657
11657
|
json: {
|
|
11658
|
-
template?: "
|
|
11658
|
+
template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11659
11659
|
body?: string | undefined;
|
|
11660
11660
|
from?: string | undefined;
|
|
11661
11661
|
subject?: string | undefined;
|
|
@@ -11672,7 +11672,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11672
11672
|
} | {
|
|
11673
11673
|
input: {
|
|
11674
11674
|
param: {
|
|
11675
|
-
templateName: "
|
|
11675
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11676
11676
|
};
|
|
11677
11677
|
} & {
|
|
11678
11678
|
header: {
|
|
@@ -11680,7 +11680,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11680
11680
|
};
|
|
11681
11681
|
} & {
|
|
11682
11682
|
json: {
|
|
11683
|
-
template?: "
|
|
11683
|
+
template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11684
11684
|
body?: string | undefined;
|
|
11685
11685
|
from?: string | undefined;
|
|
11686
11686
|
subject?: string | undefined;
|
|
@@ -11692,7 +11692,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11692
11692
|
};
|
|
11693
11693
|
};
|
|
11694
11694
|
output: {
|
|
11695
|
-
template: "
|
|
11695
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11696
11696
|
body: string;
|
|
11697
11697
|
from: string;
|
|
11698
11698
|
subject: string;
|
|
@@ -11711,7 +11711,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11711
11711
|
$delete: {
|
|
11712
11712
|
input: {
|
|
11713
11713
|
param: {
|
|
11714
|
-
templateName: "
|
|
11714
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11715
11715
|
};
|
|
11716
11716
|
} & {
|
|
11717
11717
|
header: {
|
|
@@ -11724,7 +11724,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11724
11724
|
} | {
|
|
11725
11725
|
input: {
|
|
11726
11726
|
param: {
|
|
11727
|
-
templateName: "
|
|
11727
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11728
11728
|
};
|
|
11729
11729
|
} & {
|
|
11730
11730
|
header: {
|
|
@@ -11741,7 +11741,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11741
11741
|
$post: {
|
|
11742
11742
|
input: {
|
|
11743
11743
|
param: {
|
|
11744
|
-
templateName: "
|
|
11744
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11745
11745
|
};
|
|
11746
11746
|
} & {
|
|
11747
11747
|
header: {
|
|
@@ -12024,7 +12024,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12024
12024
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12025
12025
|
custom_domain_id: string;
|
|
12026
12026
|
primary: boolean;
|
|
12027
|
-
status: "
|
|
12027
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12028
12028
|
verification_method?: "txt" | undefined;
|
|
12029
12029
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12030
12030
|
domain_metadata?: {
|
|
@@ -12065,7 +12065,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12065
12065
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12066
12066
|
custom_domain_id: string;
|
|
12067
12067
|
primary: boolean;
|
|
12068
|
-
status: "
|
|
12068
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12069
12069
|
verification_method?: "txt" | undefined;
|
|
12070
12070
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12071
12071
|
domain_metadata?: {
|
|
@@ -12129,7 +12129,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12129
12129
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12130
12130
|
custom_domain_id: string;
|
|
12131
12131
|
primary: boolean;
|
|
12132
|
-
status: "
|
|
12132
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12133
12133
|
verification_method?: "txt" | undefined;
|
|
12134
12134
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12135
12135
|
domain_metadata?: {
|
|
@@ -12176,7 +12176,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12176
12176
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12177
12177
|
custom_domain_id: string;
|
|
12178
12178
|
primary: boolean;
|
|
12179
|
-
status: "
|
|
12179
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12180
12180
|
verification_method?: "txt" | undefined;
|
|
12181
12181
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12182
12182
|
domain_metadata?: {
|
|
@@ -12222,7 +12222,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12222
12222
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12223
12223
|
custom_domain_id: string;
|
|
12224
12224
|
primary: boolean;
|
|
12225
|
-
status: "
|
|
12225
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12226
12226
|
verification_method?: "txt" | undefined;
|
|
12227
12227
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12228
12228
|
domain_metadata?: {
|
|
@@ -12263,7 +12263,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12263
12263
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12264
12264
|
custom_domain_id: string;
|
|
12265
12265
|
primary: boolean;
|
|
12266
|
-
status: "
|
|
12266
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12267
12267
|
verification_method?: "txt" | undefined;
|
|
12268
12268
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12269
12269
|
domain_metadata?: {
|
|
@@ -12748,7 +12748,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12748
12748
|
json: {
|
|
12749
12749
|
bindings: {
|
|
12750
12750
|
ref: {
|
|
12751
|
-
type?: "
|
|
12751
|
+
type?: "action_id" | "action_name" | undefined;
|
|
12752
12752
|
value?: string | undefined;
|
|
12753
12753
|
id?: string | undefined;
|
|
12754
12754
|
name?: string | undefined;
|