authhero 8.4.1 → 8.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/authhero.cjs +3 -3
- package/dist/authhero.d.ts +125 -109
- package/dist/authhero.mjs +55 -71
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +4 -4
- package/dist/types/index.d.ts +108 -106
- package/dist/types/routes/auth-api/account.d.ts +2 -2
- package/dist/types/routes/auth-api/index.d.ts +24 -24
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/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/clients.d.ts +14 -14
- package/dist/types/routes/management-api/custom-domains.d.ts +14 -14
- 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/flows.d.ts +7 -7
- package/dist/types/routes/management-api/forms.d.ts +119 -119
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +76 -76
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/organizations.d.ts +3 -3
- 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 +4 -4
- 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/package.json +1 -1
|
@@ -37,7 +37,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
37
37
|
};
|
|
38
38
|
} & {
|
|
39
39
|
json: {
|
|
40
|
-
type: "email" | "
|
|
40
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
41
41
|
phone_number?: string | undefined;
|
|
42
42
|
totp_secret?: string | undefined;
|
|
43
43
|
credential_id?: string | undefined;
|
|
@@ -1110,10 +1110,10 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1110
1110
|
invitee: {
|
|
1111
1111
|
email?: string | undefined;
|
|
1112
1112
|
};
|
|
1113
|
-
app_metadata?: Record<string, any> | undefined;
|
|
1114
|
-
user_metadata?: Record<string, any> | undefined;
|
|
1115
1113
|
id?: string | undefined;
|
|
1116
1114
|
connection_id?: string | undefined;
|
|
1115
|
+
app_metadata?: Record<string, any> | undefined;
|
|
1116
|
+
user_metadata?: Record<string, any> | undefined;
|
|
1117
1117
|
ttl_sec?: number | undefined;
|
|
1118
1118
|
roles?: string[] | 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
|
-
assign_membership_on_login?: boolean | undefined;
|
|
1302
1301
|
show_as_button?: boolean | undefined;
|
|
1302
|
+
assign_membership_on_login?: boolean | undefined;
|
|
1303
1303
|
is_signup_enabled?: boolean | undefined;
|
|
1304
1304
|
};
|
|
1305
1305
|
};
|
|
@@ -1965,7 +1965,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1965
1965
|
type: "REDIRECT";
|
|
1966
1966
|
action: "REDIRECT_USER";
|
|
1967
1967
|
params: {
|
|
1968
|
-
target: "custom" | "
|
|
1968
|
+
target: "custom" | "account" | "change-email";
|
|
1969
1969
|
custom_url?: string | undefined;
|
|
1970
1970
|
};
|
|
1971
1971
|
alias?: string | undefined;
|
|
@@ -2018,7 +2018,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2018
2018
|
type: "REDIRECT";
|
|
2019
2019
|
action: "REDIRECT_USER";
|
|
2020
2020
|
params: {
|
|
2021
|
-
target: "custom" | "
|
|
2021
|
+
target: "custom" | "account" | "change-email";
|
|
2022
2022
|
custom_url?: string | undefined;
|
|
2023
2023
|
};
|
|
2024
2024
|
alias?: string | undefined;
|
|
@@ -2086,7 +2086,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2086
2086
|
type: "REDIRECT";
|
|
2087
2087
|
action: "REDIRECT_USER";
|
|
2088
2088
|
params: {
|
|
2089
|
-
target: "custom" | "
|
|
2089
|
+
target: "custom" | "account" | "change-email";
|
|
2090
2090
|
custom_url?: string | undefined;
|
|
2091
2091
|
};
|
|
2092
2092
|
alias?: string | undefined;
|
|
@@ -2167,7 +2167,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2167
2167
|
type: "REDIRECT";
|
|
2168
2168
|
action: "REDIRECT_USER";
|
|
2169
2169
|
params: {
|
|
2170
|
-
target: "custom" | "
|
|
2170
|
+
target: "custom" | "account" | "change-email";
|
|
2171
2171
|
custom_url?: string | undefined;
|
|
2172
2172
|
};
|
|
2173
2173
|
alias?: string | undefined;
|
|
@@ -2215,7 +2215,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2215
2215
|
type: "REDIRECT";
|
|
2216
2216
|
action: "REDIRECT_USER";
|
|
2217
2217
|
params: {
|
|
2218
|
-
target: "custom" | "
|
|
2218
|
+
target: "custom" | "account" | "change-email";
|
|
2219
2219
|
custom_url?: string | undefined;
|
|
2220
2220
|
};
|
|
2221
2221
|
alias?: string | undefined;
|
|
@@ -2275,7 +2275,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2275
2275
|
type: "REDIRECT";
|
|
2276
2276
|
action: "REDIRECT_USER";
|
|
2277
2277
|
params: {
|
|
2278
|
-
target: "custom" | "
|
|
2278
|
+
target: "custom" | "account" | "change-email";
|
|
2279
2279
|
custom_url?: string | undefined;
|
|
2280
2280
|
};
|
|
2281
2281
|
alias?: string | undefined;
|
|
@@ -2323,7 +2323,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2323
2323
|
type: "REDIRECT";
|
|
2324
2324
|
action: "REDIRECT_USER";
|
|
2325
2325
|
params: {
|
|
2326
|
-
target: "custom" | "
|
|
2326
|
+
target: "custom" | "account" | "change-email";
|
|
2327
2327
|
custom_url?: string | undefined;
|
|
2328
2328
|
};
|
|
2329
2329
|
alias?: string | undefined;
|
|
@@ -6601,7 +6601,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6601
6601
|
};
|
|
6602
6602
|
};
|
|
6603
6603
|
output: {
|
|
6604
|
-
prompt: "status" | "login" | "mfa" | "organizations" | "
|
|
6604
|
+
prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
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: "status" | "login" | "mfa" | "organizations" | "
|
|
6642
|
+
prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
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: "status" | "login" | "mfa" | "organizations" | "
|
|
6664
|
+
prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
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: "status" | "login" | "mfa" | "organizations" | "
|
|
6688
|
+
prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
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: "user" | "client_credentials" | "
|
|
8189
|
+
type: "user" | "client_credentials" | "api_key" | "system" | "admin";
|
|
8190
8190
|
id?: string | undefined;
|
|
8191
8191
|
email?: string | undefined;
|
|
8192
8192
|
org_id?: string | undefined;
|
|
@@ -8494,7 +8494,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8494
8494
|
created_at: string;
|
|
8495
8495
|
updated_at: string;
|
|
8496
8496
|
name: string;
|
|
8497
|
-
provider: "auth0" | "
|
|
8497
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8498
8498
|
connection: string;
|
|
8499
8499
|
enabled: boolean;
|
|
8500
8500
|
credentials: {
|
|
@@ -8526,7 +8526,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8526
8526
|
created_at: string;
|
|
8527
8527
|
updated_at: string;
|
|
8528
8528
|
name: string;
|
|
8529
|
-
provider: "auth0" | "
|
|
8529
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8530
8530
|
connection: string;
|
|
8531
8531
|
enabled: boolean;
|
|
8532
8532
|
credentials: {
|
|
@@ -8552,7 +8552,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8552
8552
|
} & {
|
|
8553
8553
|
json: {
|
|
8554
8554
|
name: string;
|
|
8555
|
-
provider: "auth0" | "
|
|
8555
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8556
8556
|
connection: string;
|
|
8557
8557
|
credentials: {
|
|
8558
8558
|
domain: string;
|
|
@@ -8569,7 +8569,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8569
8569
|
created_at: string;
|
|
8570
8570
|
updated_at: string;
|
|
8571
8571
|
name: string;
|
|
8572
|
-
provider: "auth0" | "
|
|
8572
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8573
8573
|
connection: string;
|
|
8574
8574
|
enabled: boolean;
|
|
8575
8575
|
credentials: {
|
|
@@ -8600,7 +8600,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8600
8600
|
json: {
|
|
8601
8601
|
id?: string | undefined;
|
|
8602
8602
|
name?: string | undefined;
|
|
8603
|
-
provider?: "auth0" | "
|
|
8603
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
8604
8604
|
connection?: string | undefined;
|
|
8605
8605
|
enabled?: boolean | undefined;
|
|
8606
8606
|
credentials?: {
|
|
@@ -8616,7 +8616,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8616
8616
|
created_at: string;
|
|
8617
8617
|
updated_at: string;
|
|
8618
8618
|
name: string;
|
|
8619
|
-
provider: "auth0" | "
|
|
8619
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8620
8620
|
connection: string;
|
|
8621
8621
|
enabled: boolean;
|
|
8622
8622
|
credentials: {
|
|
@@ -8834,7 +8834,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8834
8834
|
};
|
|
8835
8835
|
};
|
|
8836
8836
|
output: {
|
|
8837
|
-
type: "
|
|
8837
|
+
type: "fn" | "i" | "sapi" | "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";
|
|
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: "
|
|
8876
|
+
type: "fn" | "i" | "sapi" | "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";
|
|
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: "
|
|
8930
|
+
type: "fn" | "i" | "sapi" | "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";
|
|
8931
8931
|
date: string;
|
|
8932
8932
|
isMobile: boolean;
|
|
8933
8933
|
log_id: string;
|
|
@@ -9283,7 +9283,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9283
9283
|
client_id: string;
|
|
9284
9284
|
description?: string | undefined;
|
|
9285
9285
|
client_secret?: string | undefined;
|
|
9286
|
-
app_type?: "
|
|
9286
|
+
app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9287
9287
|
logo_uri?: string | undefined;
|
|
9288
9288
|
callbacks?: string[] | undefined;
|
|
9289
9289
|
allowed_origins?: 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?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9319
9319
|
client_metadata?: {
|
|
9320
9320
|
[x: string]: string;
|
|
9321
9321
|
} | undefined;
|
|
@@ -9379,7 +9379,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9379
9379
|
client_id: string;
|
|
9380
9380
|
description?: string | undefined;
|
|
9381
9381
|
client_secret?: string | undefined;
|
|
9382
|
-
app_type?: "
|
|
9382
|
+
app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9383
9383
|
logo_uri?: string | undefined;
|
|
9384
9384
|
callbacks?: string[] | undefined;
|
|
9385
9385
|
allowed_origins?: string[] | 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?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9415
9415
|
client_metadata?: {
|
|
9416
9416
|
[x: string]: string;
|
|
9417
9417
|
} | undefined;
|
|
@@ -9490,7 +9490,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9490
9490
|
client_id: string;
|
|
9491
9491
|
description?: string | undefined;
|
|
9492
9492
|
client_secret?: string | undefined;
|
|
9493
|
-
app_type?: "
|
|
9493
|
+
app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9494
9494
|
logo_uri?: string | undefined;
|
|
9495
9495
|
callbacks?: string[] | undefined;
|
|
9496
9496
|
allowed_origins?: string[] | 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?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9526
9526
|
client_metadata?: {
|
|
9527
9527
|
[x: string]: string;
|
|
9528
9528
|
} | undefined;
|
|
@@ -9605,7 +9605,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9605
9605
|
description?: string | undefined;
|
|
9606
9606
|
global?: boolean | undefined;
|
|
9607
9607
|
client_secret?: string | undefined;
|
|
9608
|
-
app_type?: "
|
|
9608
|
+
app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9609
9609
|
logo_uri?: string | undefined;
|
|
9610
9610
|
is_first_party?: boolean | undefined;
|
|
9611
9611
|
oidc_conformant?: boolean | 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?: "client_secret_post" | "client_secret_basic" | "none" | "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;
|
|
@@ -9680,7 +9680,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9680
9680
|
client_id: string;
|
|
9681
9681
|
description?: string | undefined;
|
|
9682
9682
|
client_secret?: string | undefined;
|
|
9683
|
-
app_type?: "
|
|
9683
|
+
app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9684
9684
|
logo_uri?: string | undefined;
|
|
9685
9685
|
callbacks?: string[] | undefined;
|
|
9686
9686
|
allowed_origins?: string[] | 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?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9716
9716
|
client_metadata?: {
|
|
9717
9717
|
[x: string]: string;
|
|
9718
9718
|
} | undefined;
|
|
@@ -9774,7 +9774,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9774
9774
|
description?: string | undefined;
|
|
9775
9775
|
global?: boolean | undefined;
|
|
9776
9776
|
client_secret?: string | undefined;
|
|
9777
|
-
app_type?: "
|
|
9777
|
+
app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9778
9778
|
logo_uri?: string | undefined;
|
|
9779
9779
|
is_first_party?: boolean | undefined;
|
|
9780
9780
|
oidc_conformant?: boolean | 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?: "client_secret_post" | "client_secret_basic" | "none" | "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;
|
|
@@ -9849,7 +9849,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9849
9849
|
client_id: string;
|
|
9850
9850
|
description?: string | undefined;
|
|
9851
9851
|
client_secret?: string | undefined;
|
|
9852
|
-
app_type?: "
|
|
9852
|
+
app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9853
9853
|
logo_uri?: string | undefined;
|
|
9854
9854
|
callbacks?: string[] | undefined;
|
|
9855
9855
|
allowed_origins?: string[] | 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?: "client_secret_post" | "client_secret_basic" | "none" | "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: "
|
|
11148
|
+
type: "fn" | "i" | "sapi" | "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";
|
|
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: "
|
|
11187
|
+
type: "fn" | "i" | "sapi" | "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";
|
|
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,9 +12024,9 @@ 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: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12028
12028
|
verification_method?: "txt" | undefined;
|
|
12029
|
-
custom_client_ip_header?: "null" | "
|
|
12029
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12030
12030
|
domain_metadata?: {
|
|
12031
12031
|
[x: string]: string;
|
|
12032
12032
|
} | undefined;
|
|
@@ -12065,9 +12065,9 @@ 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: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12069
12069
|
verification_method?: "txt" | undefined;
|
|
12070
|
-
custom_client_ip_header?: "null" | "
|
|
12070
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12071
12071
|
domain_metadata?: {
|
|
12072
12072
|
[x: string]: string;
|
|
12073
12073
|
} | undefined;
|
|
@@ -12120,7 +12120,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12120
12120
|
} & {
|
|
12121
12121
|
json: {
|
|
12122
12122
|
tls_policy?: "recommended" | undefined;
|
|
12123
|
-
custom_client_ip_header?: "null" | "
|
|
12123
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12124
12124
|
domain_metadata?: Record<string, string> | undefined;
|
|
12125
12125
|
};
|
|
12126
12126
|
};
|
|
@@ -12129,9 +12129,9 @@ 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: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12133
12133
|
verification_method?: "txt" | undefined;
|
|
12134
|
-
custom_client_ip_header?: "null" | "
|
|
12134
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12135
12135
|
domain_metadata?: {
|
|
12136
12136
|
[x: string]: string;
|
|
12137
12137
|
} | undefined;
|
|
@@ -12167,7 +12167,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12167
12167
|
custom_domain_id?: string | undefined;
|
|
12168
12168
|
verification_method?: "txt" | undefined;
|
|
12169
12169
|
tls_policy?: "recommended" | undefined;
|
|
12170
|
-
custom_client_ip_header?: "null" | "
|
|
12170
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12171
12171
|
domain_metadata?: Record<string, string> | undefined;
|
|
12172
12172
|
};
|
|
12173
12173
|
};
|
|
@@ -12176,9 +12176,9 @@ 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: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12180
12180
|
verification_method?: "txt" | undefined;
|
|
12181
|
-
custom_client_ip_header?: "null" | "
|
|
12181
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12182
12182
|
domain_metadata?: {
|
|
12183
12183
|
[x: string]: string;
|
|
12184
12184
|
} | undefined;
|
|
@@ -12222,9 +12222,9 @@ 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: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12226
12226
|
verification_method?: "txt" | undefined;
|
|
12227
|
-
custom_client_ip_header?: "null" | "
|
|
12227
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12228
12228
|
domain_metadata?: {
|
|
12229
12229
|
[x: string]: string;
|
|
12230
12230
|
} | undefined;
|
|
@@ -12263,9 +12263,9 @@ 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: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12267
12267
|
verification_method?: "txt" | undefined;
|
|
12268
|
-
custom_client_ip_header?: "null" | "
|
|
12268
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12269
12269
|
domain_metadata?: {
|
|
12270
12270
|
[x: string]: string;
|
|
12271
12271
|
} | undefined;
|
|
@@ -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;
|
|
@@ -12870,7 +12870,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12870
12870
|
logs: {
|
|
12871
12871
|
action_name: string;
|
|
12872
12872
|
lines: {
|
|
12873
|
-
level: "log" | "error" | "info" | "
|
|
12873
|
+
level: "log" | "error" | "info" | "debug" | "warn";
|
|
12874
12874
|
message: string;
|
|
12875
12875
|
}[];
|
|
12876
12876
|
}[];
|
|
@@ -13537,7 +13537,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13537
13537
|
args: import("hono/utils/types").JSONValue[];
|
|
13538
13538
|
}[];
|
|
13539
13539
|
logs: {
|
|
13540
|
-
level: "log" | "error" | "info" | "
|
|
13540
|
+
level: "log" | "error" | "info" | "debug" | "warn";
|
|
13541
13541
|
message: string;
|
|
13542
13542
|
}[];
|
|
13543
13543
|
error?: string | undefined;
|