authhero 5.19.0 → 5.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +2701 -107
- package/dist/authhero.d.ts +310 -77
- package/dist/authhero.mjs +7366 -7036
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/common.d.ts +8 -0
- package/dist/types/authentication-flows/passwordless.d.ts +12 -3
- package/dist/types/authentication-flows/token-exchange.d.ts +19 -0
- package/dist/types/emails/defaults/BlockedAccount.d.ts +1 -0
- package/dist/types/emails/defaults/ChangePassword.d.ts +6 -0
- package/dist/types/emails/defaults/EnrollmentEmail.d.ts +1 -0
- package/dist/types/emails/defaults/MfaOobCode.d.ts +1 -0
- package/dist/types/emails/defaults/PasswordReset.d.ts +5 -0
- package/dist/types/emails/defaults/StolenCredentials.d.ts +1 -0
- package/dist/types/emails/index.d.ts +21 -1
- package/dist/types/helpers/client.d.ts +20 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
- package/dist/types/helpers/scopes-permissions.d.ts +1 -1
- package/dist/types/index.d.ts +243 -74
- package/dist/types/provisioning/index.d.ts +2 -0
- package/dist/types/provisioning/noop-provisioner.d.ts +11 -0
- package/dist/types/provisioning/provisioner.d.ts +25 -0
- package/dist/types/routes/auth-api/index.d.ts +129 -19
- package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +110 -0
- package/dist/types/routes/auth-api/well-known.d.ts +1 -1
- 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/client-grants.d.ts +8 -8
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/custom-domains.d.ts +7 -7
- package/dist/types/routes/management-api/email-templates.d.ts +58 -1
- 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/hook-code.d.ts +2 -2
- package/dist/types/routes/management-api/index.d.ts +106 -49
- 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/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +27 -0
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +38 -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/AuthHeroConfig.d.ts +12 -0
- package/dist/types/types/GrantFlowResult.d.ts +8 -0
- package/dist/types/utils/jwks.d.ts +2 -2
- package/dist/types/utils/jwt.d.ts +4 -0
- package/package.json +5 -5
|
@@ -37,7 +37,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
37
37
|
};
|
|
38
38
|
} & {
|
|
39
39
|
json: {
|
|
40
|
-
type: "
|
|
40
|
+
type: "email" | "passkey" | "push" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
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: "sms" | "otp" | "email" | "duo" | "
|
|
180
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "sms" | "otp" | "email" | "duo" | "
|
|
335
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "sms" | "otp" | "email" | "duo" | "
|
|
343
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "sms" | "otp" | "email" | "duo" | "
|
|
356
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "sms" | "otp" | "email" | "duo" | "
|
|
368
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
369
369
|
enabled: boolean;
|
|
370
370
|
trial_expired?: boolean | undefined;
|
|
371
371
|
};
|
|
@@ -6601,7 +6601,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6601
6601
|
};
|
|
6602
6602
|
};
|
|
6603
6603
|
output: {
|
|
6604
|
-
prompt: "
|
|
6604
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
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: "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
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: "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
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: "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6689
6689
|
language: string;
|
|
6690
6690
|
};
|
|
6691
6691
|
} & {
|
|
@@ -7583,7 +7583,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7583
7583
|
tenant_id: string;
|
|
7584
7584
|
created_at: string;
|
|
7585
7585
|
updated_at: string;
|
|
7586
|
-
deploymentStatus: "
|
|
7586
|
+
deploymentStatus: "failed" | "deployed" | "not_required";
|
|
7587
7587
|
secrets?: {
|
|
7588
7588
|
[x: string]: string;
|
|
7589
7589
|
} | undefined;
|
|
@@ -7673,7 +7673,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7673
7673
|
tenant_id: string;
|
|
7674
7674
|
created_at: string;
|
|
7675
7675
|
updated_at: string;
|
|
7676
|
-
deploymentStatus: "
|
|
7676
|
+
deploymentStatus: "failed" | "deployed" | "not_required";
|
|
7677
7677
|
secrets?: {
|
|
7678
7678
|
[x: string]: string;
|
|
7679
7679
|
} | undefined;
|
|
@@ -8126,7 +8126,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8126
8126
|
log_type: string;
|
|
8127
8127
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8128
8128
|
actor: {
|
|
8129
|
-
type: "
|
|
8129
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
8130
8130
|
id?: string | undefined;
|
|
8131
8131
|
email?: string | undefined;
|
|
8132
8132
|
org_id?: string | undefined;
|
|
@@ -8434,7 +8434,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8434
8434
|
created_at: string;
|
|
8435
8435
|
updated_at: string;
|
|
8436
8436
|
name: string;
|
|
8437
|
-
provider: "auth0" | "
|
|
8437
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8438
8438
|
connection: string;
|
|
8439
8439
|
enabled: boolean;
|
|
8440
8440
|
credentials: {
|
|
@@ -8466,7 +8466,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8466
8466
|
created_at: string;
|
|
8467
8467
|
updated_at: string;
|
|
8468
8468
|
name: string;
|
|
8469
|
-
provider: "auth0" | "
|
|
8469
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8470
8470
|
connection: string;
|
|
8471
8471
|
enabled: boolean;
|
|
8472
8472
|
credentials: {
|
|
@@ -8492,7 +8492,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8492
8492
|
} & {
|
|
8493
8493
|
json: {
|
|
8494
8494
|
name: string;
|
|
8495
|
-
provider: "auth0" | "
|
|
8495
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8496
8496
|
connection: string;
|
|
8497
8497
|
credentials: {
|
|
8498
8498
|
domain: string;
|
|
@@ -8509,7 +8509,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8509
8509
|
created_at: string;
|
|
8510
8510
|
updated_at: string;
|
|
8511
8511
|
name: string;
|
|
8512
|
-
provider: "auth0" | "
|
|
8512
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8513
8513
|
connection: string;
|
|
8514
8514
|
enabled: boolean;
|
|
8515
8515
|
credentials: {
|
|
@@ -8540,7 +8540,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8540
8540
|
json: {
|
|
8541
8541
|
id?: string | undefined;
|
|
8542
8542
|
name?: string | undefined;
|
|
8543
|
-
provider?: "auth0" | "
|
|
8543
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
8544
8544
|
connection?: string | undefined;
|
|
8545
8545
|
enabled?: boolean | undefined;
|
|
8546
8546
|
credentials?: {
|
|
@@ -8556,7 +8556,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8556
8556
|
created_at: string;
|
|
8557
8557
|
updated_at: string;
|
|
8558
8558
|
name: string;
|
|
8559
|
-
provider: "auth0" | "
|
|
8559
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8560
8560
|
connection: string;
|
|
8561
8561
|
enabled: boolean;
|
|
8562
8562
|
credentials: {
|
|
@@ -8774,7 +8774,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8774
8774
|
};
|
|
8775
8775
|
};
|
|
8776
8776
|
output: {
|
|
8777
|
-
type: "
|
|
8777
|
+
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8778
8778
|
date: string;
|
|
8779
8779
|
isMobile: boolean;
|
|
8780
8780
|
log_id: string;
|
|
@@ -8813,7 +8813,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8813
8813
|
limit: number;
|
|
8814
8814
|
length: number;
|
|
8815
8815
|
logs: {
|
|
8816
|
-
type: "
|
|
8816
|
+
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8817
8817
|
date: string;
|
|
8818
8818
|
isMobile: boolean;
|
|
8819
8819
|
log_id: string;
|
|
@@ -8867,7 +8867,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8867
8867
|
};
|
|
8868
8868
|
};
|
|
8869
8869
|
output: {
|
|
8870
|
-
type: "
|
|
8870
|
+
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8871
8871
|
date: string;
|
|
8872
8872
|
isMobile: boolean;
|
|
8873
8873
|
log_id: string;
|
|
@@ -9022,7 +9022,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9022
9022
|
audience?: string | undefined;
|
|
9023
9023
|
client_id?: string | undefined;
|
|
9024
9024
|
allow_any_organization?: string | undefined;
|
|
9025
|
-
subject_type?: "
|
|
9025
|
+
subject_type?: "client" | "user" | undefined;
|
|
9026
9026
|
};
|
|
9027
9027
|
} & {
|
|
9028
9028
|
header: {
|
|
@@ -9037,7 +9037,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9037
9037
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9038
9038
|
allow_any_organization?: boolean | undefined;
|
|
9039
9039
|
is_system?: boolean | undefined;
|
|
9040
|
-
subject_type?: "
|
|
9040
|
+
subject_type?: "client" | "user" | undefined;
|
|
9041
9041
|
authorization_details_types?: string[] | undefined;
|
|
9042
9042
|
created_at?: string | undefined;
|
|
9043
9043
|
updated_at?: string | undefined;
|
|
@@ -9053,7 +9053,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9053
9053
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9054
9054
|
allow_any_organization?: boolean | undefined;
|
|
9055
9055
|
is_system?: boolean | undefined;
|
|
9056
|
-
subject_type?: "
|
|
9056
|
+
subject_type?: "client" | "user" | undefined;
|
|
9057
9057
|
authorization_details_types?: string[] | undefined;
|
|
9058
9058
|
created_at?: string | undefined;
|
|
9059
9059
|
updated_at?: string | undefined;
|
|
@@ -9084,7 +9084,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9084
9084
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9085
9085
|
allow_any_organization?: boolean | undefined;
|
|
9086
9086
|
is_system?: boolean | undefined;
|
|
9087
|
-
subject_type?: "
|
|
9087
|
+
subject_type?: "client" | "user" | undefined;
|
|
9088
9088
|
authorization_details_types?: string[] | undefined;
|
|
9089
9089
|
created_at?: string | undefined;
|
|
9090
9090
|
updated_at?: string | undefined;
|
|
@@ -9129,7 +9129,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9129
9129
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9130
9130
|
allow_any_organization?: boolean | undefined;
|
|
9131
9131
|
is_system?: boolean | undefined;
|
|
9132
|
-
subject_type?: "
|
|
9132
|
+
subject_type?: "client" | "user" | undefined;
|
|
9133
9133
|
authorization_details_types?: string[] | undefined;
|
|
9134
9134
|
};
|
|
9135
9135
|
};
|
|
@@ -9141,7 +9141,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9141
9141
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9142
9142
|
allow_any_organization?: boolean | undefined;
|
|
9143
9143
|
is_system?: boolean | undefined;
|
|
9144
|
-
subject_type?: "
|
|
9144
|
+
subject_type?: "client" | "user" | undefined;
|
|
9145
9145
|
authorization_details_types?: string[] | undefined;
|
|
9146
9146
|
created_at?: string | undefined;
|
|
9147
9147
|
updated_at?: string | undefined;
|
|
@@ -9165,7 +9165,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9165
9165
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9166
9166
|
allow_any_organization?: boolean | undefined;
|
|
9167
9167
|
is_system?: boolean | undefined;
|
|
9168
|
-
subject_type?: "
|
|
9168
|
+
subject_type?: "client" | "user" | undefined;
|
|
9169
9169
|
authorization_details_types?: string[] | undefined;
|
|
9170
9170
|
};
|
|
9171
9171
|
};
|
|
@@ -9177,7 +9177,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9177
9177
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9178
9178
|
allow_any_organization?: boolean | undefined;
|
|
9179
9179
|
is_system?: boolean | undefined;
|
|
9180
|
-
subject_type?: "
|
|
9180
|
+
subject_type?: "client" | "user" | undefined;
|
|
9181
9181
|
authorization_details_types?: string[] | undefined;
|
|
9182
9182
|
created_at?: string | undefined;
|
|
9183
9183
|
updated_at?: string | undefined;
|
|
@@ -9255,7 +9255,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9255
9255
|
addons?: {
|
|
9256
9256
|
[x: string]: any;
|
|
9257
9257
|
} | undefined;
|
|
9258
|
-
token_endpoint_auth_method?: "
|
|
9258
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9259
9259
|
client_metadata?: {
|
|
9260
9260
|
[x: string]: string;
|
|
9261
9261
|
} | undefined;
|
|
@@ -9351,7 +9351,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9351
9351
|
addons?: {
|
|
9352
9352
|
[x: string]: any;
|
|
9353
9353
|
} | undefined;
|
|
9354
|
-
token_endpoint_auth_method?: "
|
|
9354
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9355
9355
|
client_metadata?: {
|
|
9356
9356
|
[x: string]: string;
|
|
9357
9357
|
} | undefined;
|
|
@@ -9462,7 +9462,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9462
9462
|
addons?: {
|
|
9463
9463
|
[x: string]: any;
|
|
9464
9464
|
} | undefined;
|
|
9465
|
-
token_endpoint_auth_method?: "
|
|
9465
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9466
9466
|
client_metadata?: {
|
|
9467
9467
|
[x: string]: string;
|
|
9468
9468
|
} | undefined;
|
|
@@ -9572,7 +9572,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9572
9572
|
custom_login_page_preview?: string | undefined;
|
|
9573
9573
|
form_template?: string | undefined;
|
|
9574
9574
|
addons?: Record<string, any> | undefined;
|
|
9575
|
-
token_endpoint_auth_method?: "
|
|
9575
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9576
9576
|
client_metadata?: Record<string, string> | undefined;
|
|
9577
9577
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9578
9578
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9652,7 +9652,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9652
9652
|
addons?: {
|
|
9653
9653
|
[x: string]: any;
|
|
9654
9654
|
} | undefined;
|
|
9655
|
-
token_endpoint_auth_method?: "
|
|
9655
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9656
9656
|
client_metadata?: {
|
|
9657
9657
|
[x: string]: string;
|
|
9658
9658
|
} | undefined;
|
|
@@ -9741,7 +9741,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9741
9741
|
custom_login_page_preview?: string | undefined;
|
|
9742
9742
|
form_template?: string | undefined;
|
|
9743
9743
|
addons?: Record<string, any> | undefined;
|
|
9744
|
-
token_endpoint_auth_method?: "
|
|
9744
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9745
9745
|
client_metadata?: Record<string, string> | undefined;
|
|
9746
9746
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9747
9747
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9821,7 +9821,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9821
9821
|
addons?: {
|
|
9822
9822
|
[x: string]: any;
|
|
9823
9823
|
} | undefined;
|
|
9824
|
-
token_endpoint_auth_method?: "
|
|
9824
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9825
9825
|
client_metadata?: {
|
|
9826
9826
|
[x: string]: string;
|
|
9827
9827
|
} | undefined;
|
|
@@ -11085,7 +11085,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11085
11085
|
};
|
|
11086
11086
|
};
|
|
11087
11087
|
output: {
|
|
11088
|
-
type: "
|
|
11088
|
+
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11089
11089
|
date: string;
|
|
11090
11090
|
isMobile: boolean;
|
|
11091
11091
|
log_id: string;
|
|
@@ -11124,7 +11124,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11124
11124
|
limit: number;
|
|
11125
11125
|
length: number;
|
|
11126
11126
|
logs: {
|
|
11127
|
-
type: "
|
|
11127
|
+
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11128
11128
|
date: string;
|
|
11129
11129
|
isMobile: boolean;
|
|
11130
11130
|
log_id: string;
|
|
@@ -11558,13 +11558,13 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11558
11558
|
json: {
|
|
11559
11559
|
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11560
11560
|
body: string;
|
|
11561
|
-
from: string;
|
|
11562
11561
|
subject: string;
|
|
11563
11562
|
syntax?: "liquid" | undefined;
|
|
11564
11563
|
resultUrl?: string | undefined;
|
|
11565
11564
|
urlLifetimeInSeconds?: number | undefined;
|
|
11566
11565
|
includeEmailInRedirect?: boolean | undefined;
|
|
11567
11566
|
enabled?: boolean | undefined;
|
|
11567
|
+
from?: string | undefined;
|
|
11568
11568
|
};
|
|
11569
11569
|
};
|
|
11570
11570
|
output: {
|
|
@@ -11646,6 +11646,63 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11646
11646
|
status: 200;
|
|
11647
11647
|
};
|
|
11648
11648
|
};
|
|
11649
|
+
} & {
|
|
11650
|
+
"/:templateName": {
|
|
11651
|
+
$delete: {
|
|
11652
|
+
input: {
|
|
11653
|
+
param: {
|
|
11654
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11655
|
+
};
|
|
11656
|
+
} & {
|
|
11657
|
+
header: {
|
|
11658
|
+
"tenant-id"?: string | undefined;
|
|
11659
|
+
};
|
|
11660
|
+
};
|
|
11661
|
+
output: {};
|
|
11662
|
+
outputFormat: string;
|
|
11663
|
+
status: 204;
|
|
11664
|
+
} | {
|
|
11665
|
+
input: {
|
|
11666
|
+
param: {
|
|
11667
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11668
|
+
};
|
|
11669
|
+
} & {
|
|
11670
|
+
header: {
|
|
11671
|
+
"tenant-id"?: string | undefined;
|
|
11672
|
+
};
|
|
11673
|
+
};
|
|
11674
|
+
output: {};
|
|
11675
|
+
outputFormat: string;
|
|
11676
|
+
status: 404;
|
|
11677
|
+
};
|
|
11678
|
+
};
|
|
11679
|
+
} & {
|
|
11680
|
+
"/:templateName/try": {
|
|
11681
|
+
$post: {
|
|
11682
|
+
input: {
|
|
11683
|
+
param: {
|
|
11684
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11685
|
+
};
|
|
11686
|
+
} & {
|
|
11687
|
+
header: {
|
|
11688
|
+
"tenant-id"?: string | undefined;
|
|
11689
|
+
};
|
|
11690
|
+
} & {
|
|
11691
|
+
json: {
|
|
11692
|
+
to: string;
|
|
11693
|
+
body?: string | undefined;
|
|
11694
|
+
subject?: string | undefined;
|
|
11695
|
+
from?: string | undefined;
|
|
11696
|
+
language?: string | undefined;
|
|
11697
|
+
};
|
|
11698
|
+
};
|
|
11699
|
+
output: {
|
|
11700
|
+
sent: boolean;
|
|
11701
|
+
};
|
|
11702
|
+
outputFormat: "json";
|
|
11703
|
+
status: 200;
|
|
11704
|
+
};
|
|
11705
|
+
};
|
|
11649
11706
|
}, "/email-templates"> & import("hono/types").MergeSchemaPath<{
|
|
11650
11707
|
"/": {
|
|
11651
11708
|
$get: {
|
|
@@ -11907,7 +11964,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11907
11964
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
11908
11965
|
custom_domain_id: string;
|
|
11909
11966
|
primary: boolean;
|
|
11910
|
-
status: "
|
|
11967
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
11911
11968
|
verification_method?: "txt" | undefined;
|
|
11912
11969
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
11913
11970
|
domain_metadata?: {
|
|
@@ -11948,7 +12005,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11948
12005
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
11949
12006
|
custom_domain_id: string;
|
|
11950
12007
|
primary: boolean;
|
|
11951
|
-
status: "
|
|
12008
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
11952
12009
|
verification_method?: "txt" | undefined;
|
|
11953
12010
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
11954
12011
|
domain_metadata?: {
|
|
@@ -12009,7 +12066,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12009
12066
|
domain_metadata?: Record<string, string> | undefined;
|
|
12010
12067
|
custom_domain_id?: string | undefined;
|
|
12011
12068
|
primary?: boolean | undefined;
|
|
12012
|
-
status?: "
|
|
12069
|
+
status?: "pending" | "ready" | "disabled" | "pending_verification" | undefined;
|
|
12013
12070
|
origin_domain_name?: string | undefined;
|
|
12014
12071
|
verification?: {
|
|
12015
12072
|
methods: ({
|
|
@@ -12030,7 +12087,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12030
12087
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12031
12088
|
custom_domain_id: string;
|
|
12032
12089
|
primary: boolean;
|
|
12033
|
-
status: "
|
|
12090
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12034
12091
|
verification_method?: "txt" | undefined;
|
|
12035
12092
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12036
12093
|
domain_metadata?: {
|
|
@@ -12077,7 +12134,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12077
12134
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12078
12135
|
custom_domain_id: string;
|
|
12079
12136
|
primary: boolean;
|
|
12080
|
-
status: "
|
|
12137
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12081
12138
|
verification_method?: "txt" | undefined;
|
|
12082
12139
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12083
12140
|
domain_metadata?: {
|
|
@@ -12123,7 +12180,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12123
12180
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12124
12181
|
custom_domain_id: string;
|
|
12125
12182
|
primary: boolean;
|
|
12126
|
-
status: "
|
|
12183
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12127
12184
|
verification_method?: "txt" | undefined;
|
|
12128
12185
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12129
12186
|
domain_metadata?: {
|
|
@@ -12164,7 +12221,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12164
12221
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12165
12222
|
custom_domain_id: string;
|
|
12166
12223
|
primary: boolean;
|
|
12167
|
-
status: "
|
|
12224
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12168
12225
|
verification_method?: "txt" | undefined;
|
|
12169
12226
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12170
12227
|
domain_metadata?: {
|
|
@@ -12771,7 +12828,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12771
12828
|
logs: {
|
|
12772
12829
|
action_name: string;
|
|
12773
12830
|
lines: {
|
|
12774
|
-
level: "
|
|
12831
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
12775
12832
|
message: string;
|
|
12776
12833
|
}[];
|
|
12777
12834
|
}[];
|
|
@@ -13438,7 +13495,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13438
13495
|
args: import("hono/utils/types").JSONValue[];
|
|
13439
13496
|
}[];
|
|
13440
13497
|
logs: {
|
|
13441
|
-
level: "
|
|
13498
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13442
13499
|
message: string;
|
|
13443
13500
|
}[];
|
|
13444
13501
|
error?: string | undefined;
|