authhero 8.26.0 → 8.26.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/authhero.cjs +3 -3
- package/dist/authhero.d.ts +80 -80
- package/dist/authhero.mjs +48 -42
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +5 -5
- package/dist/types/index.d.ts +80 -80
- package/dist/types/routes/auth-api/index.d.ts +22 -22
- package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/action-executions.d.ts +2 -2
- package/dist/types/routes/management-api/action-triggers.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +9 -9
- package/dist/types/routes/management-api/clients.d.ts +6 -6
- package/dist/types/routes/management-api/connections.d.ts +15 -15
- package/dist/types/routes/management-api/custom-domains.d.ts +8 -8
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/hook-code.d.ts +2 -2
- package/dist/types/routes/management-api/index.d.ts +55 -55
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- 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/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenant-operations.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +5 -5
- package/dist/types/routes/management-api/themes.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +10 -10
- package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/package.json +6 -6
|
@@ -236,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
236
236
|
};
|
|
237
237
|
};
|
|
238
238
|
output: {
|
|
239
|
-
name: "
|
|
239
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
240
240
|
enabled: boolean;
|
|
241
241
|
trial_expired?: boolean | undefined;
|
|
242
242
|
}[];
|
|
@@ -391,7 +391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
391
391
|
$get: {
|
|
392
392
|
input: {
|
|
393
393
|
param: {
|
|
394
|
-
factor_name: "
|
|
394
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
395
395
|
};
|
|
396
396
|
} & {
|
|
397
397
|
header: {
|
|
@@ -399,7 +399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
output: {
|
|
402
|
-
name: "
|
|
402
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
403
403
|
enabled: boolean;
|
|
404
404
|
trial_expired?: boolean | undefined;
|
|
405
405
|
};
|
|
@@ -412,7 +412,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
412
412
|
$put: {
|
|
413
413
|
input: {
|
|
414
414
|
param: {
|
|
415
|
-
factor_name: "
|
|
415
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
416
416
|
};
|
|
417
417
|
} & {
|
|
418
418
|
header: {
|
|
@@ -424,7 +424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
424
424
|
};
|
|
425
425
|
};
|
|
426
426
|
output: {
|
|
427
|
-
name: "
|
|
427
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
428
428
|
enabled: boolean;
|
|
429
429
|
trial_expired?: boolean | undefined;
|
|
430
430
|
};
|
|
@@ -6917,7 +6917,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6917
6917
|
};
|
|
6918
6918
|
};
|
|
6919
6919
|
output: {
|
|
6920
|
-
prompt: "status" | "
|
|
6920
|
+
prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "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";
|
|
6921
6921
|
language: string;
|
|
6922
6922
|
}[];
|
|
6923
6923
|
outputFormat: "json";
|
|
@@ -6955,7 +6955,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6955
6955
|
$get: {
|
|
6956
6956
|
input: {
|
|
6957
6957
|
param: {
|
|
6958
|
-
prompt: "status" | "
|
|
6958
|
+
prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "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";
|
|
6959
6959
|
language: string;
|
|
6960
6960
|
};
|
|
6961
6961
|
} & {
|
|
@@ -6977,7 +6977,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6977
6977
|
$put: {
|
|
6978
6978
|
input: {
|
|
6979
6979
|
param: {
|
|
6980
|
-
prompt: "status" | "
|
|
6980
|
+
prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "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";
|
|
6981
6981
|
language: string;
|
|
6982
6982
|
};
|
|
6983
6983
|
} & {
|
|
@@ -7001,7 +7001,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7001
7001
|
$delete: {
|
|
7002
7002
|
input: {
|
|
7003
7003
|
param: {
|
|
7004
|
-
prompt: "status" | "
|
|
7004
|
+
prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "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";
|
|
7005
7005
|
language: string;
|
|
7006
7006
|
};
|
|
7007
7007
|
} & {
|
|
@@ -8504,7 +8504,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8504
8504
|
log_type: string;
|
|
8505
8505
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8506
8506
|
actor: {
|
|
8507
|
-
type: "
|
|
8507
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
8508
8508
|
id?: string | undefined;
|
|
8509
8509
|
email?: string | undefined;
|
|
8510
8510
|
org_id?: string | undefined;
|
|
@@ -8984,7 +8984,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8984
8984
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8985
8985
|
};
|
|
8986
8986
|
id: string;
|
|
8987
|
-
status: "
|
|
8987
|
+
status: "active" | "suspended" | "paused";
|
|
8988
8988
|
filters?: {
|
|
8989
8989
|
type: string;
|
|
8990
8990
|
name: string;
|
|
@@ -9016,7 +9016,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9016
9016
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9017
9017
|
};
|
|
9018
9018
|
id: string;
|
|
9019
|
-
status: "
|
|
9019
|
+
status: "active" | "suspended" | "paused";
|
|
9020
9020
|
filters?: {
|
|
9021
9021
|
type: string;
|
|
9022
9022
|
name: string;
|
|
@@ -9041,7 +9041,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9041
9041
|
name: string;
|
|
9042
9042
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
9043
9043
|
sink: Record<string, unknown>;
|
|
9044
|
-
status?: "
|
|
9044
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
9045
9045
|
filters?: {
|
|
9046
9046
|
type: string;
|
|
9047
9047
|
name: string;
|
|
@@ -9056,7 +9056,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9056
9056
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9057
9057
|
};
|
|
9058
9058
|
id: string;
|
|
9059
|
-
status: "
|
|
9059
|
+
status: "active" | "suspended" | "paused";
|
|
9060
9060
|
filters?: {
|
|
9061
9061
|
type: string;
|
|
9062
9062
|
name: string;
|
|
@@ -9091,7 +9091,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9091
9091
|
}[] | undefined;
|
|
9092
9092
|
isPriority?: boolean | undefined;
|
|
9093
9093
|
id?: string | undefined;
|
|
9094
|
-
status?: "
|
|
9094
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
9095
9095
|
created_at?: string | undefined;
|
|
9096
9096
|
updated_at?: string | undefined;
|
|
9097
9097
|
};
|
|
@@ -9103,7 +9103,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9103
9103
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9104
9104
|
};
|
|
9105
9105
|
id: string;
|
|
9106
|
-
status: "
|
|
9106
|
+
status: "active" | "suspended" | "paused";
|
|
9107
9107
|
filters?: {
|
|
9108
9108
|
type: string;
|
|
9109
9109
|
name: string;
|
|
@@ -9154,7 +9154,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9154
9154
|
};
|
|
9155
9155
|
};
|
|
9156
9156
|
output: {
|
|
9157
|
-
type: "fn" | "
|
|
9157
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9158
9158
|
date: string;
|
|
9159
9159
|
isMobile: boolean;
|
|
9160
9160
|
log_id: string;
|
|
@@ -9193,7 +9193,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9193
9193
|
limit: number;
|
|
9194
9194
|
length: number;
|
|
9195
9195
|
logs: {
|
|
9196
|
-
type: "fn" | "
|
|
9196
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9197
9197
|
date: string;
|
|
9198
9198
|
isMobile: boolean;
|
|
9199
9199
|
log_id: string;
|
|
@@ -9232,7 +9232,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9232
9232
|
next?: string | undefined;
|
|
9233
9233
|
} | {
|
|
9234
9234
|
logs: {
|
|
9235
|
-
type: "fn" | "
|
|
9235
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9236
9236
|
date: string;
|
|
9237
9237
|
isMobile: boolean;
|
|
9238
9238
|
log_id: string;
|
|
@@ -9286,7 +9286,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9286
9286
|
};
|
|
9287
9287
|
};
|
|
9288
9288
|
output: {
|
|
9289
|
-
type: "fn" | "
|
|
9289
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9290
9290
|
date: string;
|
|
9291
9291
|
isMobile: boolean;
|
|
9292
9292
|
log_id: string;
|
|
@@ -11741,7 +11741,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11741
11741
|
};
|
|
11742
11742
|
};
|
|
11743
11743
|
output: {
|
|
11744
|
-
type: "fn" | "
|
|
11744
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11745
11745
|
date: string;
|
|
11746
11746
|
isMobile: boolean;
|
|
11747
11747
|
log_id: string;
|
|
@@ -11780,7 +11780,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11780
11780
|
limit: number;
|
|
11781
11781
|
length: number;
|
|
11782
11782
|
logs: {
|
|
11783
|
-
type: "fn" | "
|
|
11783
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11784
11784
|
date: string;
|
|
11785
11785
|
isMobile: boolean;
|
|
11786
11786
|
log_id: string;
|
|
@@ -12099,7 +12099,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12099
12099
|
};
|
|
12100
12100
|
} & {
|
|
12101
12101
|
json: {
|
|
12102
|
-
template: "
|
|
12102
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12103
12103
|
body: string;
|
|
12104
12104
|
from: string;
|
|
12105
12105
|
subject: string;
|
|
@@ -12120,7 +12120,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12120
12120
|
};
|
|
12121
12121
|
} & {
|
|
12122
12122
|
json: {
|
|
12123
|
-
template: "
|
|
12123
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12124
12124
|
body: string;
|
|
12125
12125
|
from: string;
|
|
12126
12126
|
subject: string;
|
|
@@ -12132,7 +12132,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12132
12132
|
};
|
|
12133
12133
|
};
|
|
12134
12134
|
output: {
|
|
12135
|
-
template: "
|
|
12135
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12136
12136
|
body: string;
|
|
12137
12137
|
from: string;
|
|
12138
12138
|
subject: string;
|
|
@@ -12155,7 +12155,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12155
12155
|
};
|
|
12156
12156
|
};
|
|
12157
12157
|
output: {
|
|
12158
|
-
name: "
|
|
12158
|
+
name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12159
12159
|
body: string;
|
|
12160
12160
|
subject: string;
|
|
12161
12161
|
}[];
|
|
@@ -12168,7 +12168,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12168
12168
|
$get: {
|
|
12169
12169
|
input: {
|
|
12170
12170
|
param: {
|
|
12171
|
-
templateName: "
|
|
12171
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12172
12172
|
};
|
|
12173
12173
|
} & {
|
|
12174
12174
|
header: {
|
|
@@ -12181,7 +12181,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12181
12181
|
} | {
|
|
12182
12182
|
input: {
|
|
12183
12183
|
param: {
|
|
12184
|
-
templateName: "
|
|
12184
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12185
12185
|
};
|
|
12186
12186
|
} & {
|
|
12187
12187
|
header: {
|
|
@@ -12189,7 +12189,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12189
12189
|
};
|
|
12190
12190
|
};
|
|
12191
12191
|
output: {
|
|
12192
|
-
template: "
|
|
12192
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12193
12193
|
body: string;
|
|
12194
12194
|
from: string;
|
|
12195
12195
|
subject: string;
|
|
@@ -12208,7 +12208,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12208
12208
|
$put: {
|
|
12209
12209
|
input: {
|
|
12210
12210
|
param: {
|
|
12211
|
-
templateName: "
|
|
12211
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12212
12212
|
};
|
|
12213
12213
|
} & {
|
|
12214
12214
|
header: {
|
|
@@ -12216,7 +12216,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12216
12216
|
};
|
|
12217
12217
|
} & {
|
|
12218
12218
|
json: {
|
|
12219
|
-
template: "
|
|
12219
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12220
12220
|
body: string;
|
|
12221
12221
|
subject: string;
|
|
12222
12222
|
syntax?: "liquid" | undefined;
|
|
@@ -12228,7 +12228,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12228
12228
|
};
|
|
12229
12229
|
};
|
|
12230
12230
|
output: {
|
|
12231
|
-
template: "
|
|
12231
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12232
12232
|
body: string;
|
|
12233
12233
|
from: string;
|
|
12234
12234
|
subject: string;
|
|
@@ -12247,7 +12247,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12247
12247
|
$patch: {
|
|
12248
12248
|
input: {
|
|
12249
12249
|
param: {
|
|
12250
|
-
templateName: "
|
|
12250
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12251
12251
|
};
|
|
12252
12252
|
} & {
|
|
12253
12253
|
header: {
|
|
@@ -12255,7 +12255,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12255
12255
|
};
|
|
12256
12256
|
} & {
|
|
12257
12257
|
json: {
|
|
12258
|
-
template?: "
|
|
12258
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12259
12259
|
body?: string | undefined;
|
|
12260
12260
|
from?: string | undefined;
|
|
12261
12261
|
subject?: string | undefined;
|
|
@@ -12272,7 +12272,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12272
12272
|
} | {
|
|
12273
12273
|
input: {
|
|
12274
12274
|
param: {
|
|
12275
|
-
templateName: "
|
|
12275
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12276
12276
|
};
|
|
12277
12277
|
} & {
|
|
12278
12278
|
header: {
|
|
@@ -12280,7 +12280,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12280
12280
|
};
|
|
12281
12281
|
} & {
|
|
12282
12282
|
json: {
|
|
12283
|
-
template?: "
|
|
12283
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12284
12284
|
body?: string | undefined;
|
|
12285
12285
|
from?: string | undefined;
|
|
12286
12286
|
subject?: string | undefined;
|
|
@@ -12292,7 +12292,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12292
12292
|
};
|
|
12293
12293
|
};
|
|
12294
12294
|
output: {
|
|
12295
|
-
template: "
|
|
12295
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12296
12296
|
body: string;
|
|
12297
12297
|
from: string;
|
|
12298
12298
|
subject: string;
|
|
@@ -12311,7 +12311,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12311
12311
|
$delete: {
|
|
12312
12312
|
input: {
|
|
12313
12313
|
param: {
|
|
12314
|
-
templateName: "
|
|
12314
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12315
12315
|
};
|
|
12316
12316
|
} & {
|
|
12317
12317
|
header: {
|
|
@@ -12324,7 +12324,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12324
12324
|
} | {
|
|
12325
12325
|
input: {
|
|
12326
12326
|
param: {
|
|
12327
|
-
templateName: "
|
|
12327
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12328
12328
|
};
|
|
12329
12329
|
} & {
|
|
12330
12330
|
header: {
|
|
@@ -12341,7 +12341,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12341
12341
|
$post: {
|
|
12342
12342
|
input: {
|
|
12343
12343
|
param: {
|
|
12344
|
-
templateName: "
|
|
12344
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12345
12345
|
};
|
|
12346
12346
|
} & {
|
|
12347
12347
|
header: {
|
|
@@ -12624,7 +12624,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12624
12624
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12625
12625
|
custom_domain_id: string;
|
|
12626
12626
|
primary: boolean;
|
|
12627
|
-
status: "
|
|
12627
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12628
12628
|
verification_method?: "txt" | undefined;
|
|
12629
12629
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12630
12630
|
domain_metadata?: {
|
|
@@ -12665,7 +12665,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12665
12665
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12666
12666
|
custom_domain_id: string;
|
|
12667
12667
|
primary: boolean;
|
|
12668
|
-
status: "
|
|
12668
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12669
12669
|
verification_method?: "txt" | undefined;
|
|
12670
12670
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12671
12671
|
domain_metadata?: {
|
|
@@ -12729,7 +12729,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12729
12729
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12730
12730
|
custom_domain_id: string;
|
|
12731
12731
|
primary: boolean;
|
|
12732
|
-
status: "
|
|
12732
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12733
12733
|
verification_method?: "txt" | undefined;
|
|
12734
12734
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12735
12735
|
domain_metadata?: {
|
|
@@ -12776,7 +12776,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12776
12776
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12777
12777
|
custom_domain_id: string;
|
|
12778
12778
|
primary: boolean;
|
|
12779
|
-
status: "
|
|
12779
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12780
12780
|
verification_method?: "txt" | undefined;
|
|
12781
12781
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12782
12782
|
domain_metadata?: {
|
|
@@ -12822,7 +12822,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12822
12822
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12823
12823
|
custom_domain_id: string;
|
|
12824
12824
|
primary: boolean;
|
|
12825
|
-
status: "
|
|
12825
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12826
12826
|
verification_method?: "txt" | undefined;
|
|
12827
12827
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12828
12828
|
domain_metadata?: {
|
|
@@ -12863,7 +12863,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12863
12863
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12864
12864
|
custom_domain_id: string;
|
|
12865
12865
|
primary: boolean;
|
|
12866
|
-
status: "
|
|
12866
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12867
12867
|
verification_method?: "txt" | undefined;
|
|
12868
12868
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12869
12869
|
domain_metadata?: {
|
|
@@ -12962,12 +12962,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12962
12962
|
background_color: string;
|
|
12963
12963
|
background_image_url: string;
|
|
12964
12964
|
page_layout: "center" | "left" | "right";
|
|
12965
|
-
logo_placement?: "
|
|
12965
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
12966
12966
|
};
|
|
12967
12967
|
widget: {
|
|
12968
12968
|
header_text_alignment: "center" | "left" | "right";
|
|
12969
12969
|
logo_height: number;
|
|
12970
|
-
logo_position: "
|
|
12970
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
12971
12971
|
logo_url: string;
|
|
12972
12972
|
social_buttons_layout: "bottom" | "top";
|
|
12973
12973
|
};
|
|
@@ -13052,12 +13052,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13052
13052
|
background_color: string;
|
|
13053
13053
|
background_image_url: string;
|
|
13054
13054
|
page_layout: "center" | "left" | "right";
|
|
13055
|
-
logo_placement?: "
|
|
13055
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
13056
13056
|
};
|
|
13057
13057
|
widget: {
|
|
13058
13058
|
header_text_alignment: "center" | "left" | "right";
|
|
13059
13059
|
logo_height: number;
|
|
13060
|
-
logo_position: "
|
|
13060
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
13061
13061
|
logo_url: string;
|
|
13062
13062
|
social_buttons_layout: "bottom" | "top";
|
|
13063
13063
|
};
|
|
@@ -13131,12 +13131,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13131
13131
|
background_color: string;
|
|
13132
13132
|
background_image_url: string;
|
|
13133
13133
|
page_layout: "center" | "left" | "right";
|
|
13134
|
-
logo_placement?: "
|
|
13134
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
13135
13135
|
};
|
|
13136
13136
|
widget: {
|
|
13137
13137
|
header_text_alignment: "center" | "left" | "right";
|
|
13138
13138
|
logo_height: number;
|
|
13139
|
-
logo_position: "
|
|
13139
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
13140
13140
|
logo_url: string;
|
|
13141
13141
|
social_buttons_layout: "bottom" | "top";
|
|
13142
13142
|
};
|
|
@@ -13293,7 +13293,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13293
13293
|
} & {
|
|
13294
13294
|
json: {
|
|
13295
13295
|
body?: string | undefined;
|
|
13296
|
-
screen?: "password" | "
|
|
13296
|
+
screen?: "password" | "identifier" | "signup" | "login" | undefined;
|
|
13297
13297
|
branding?: {
|
|
13298
13298
|
colors?: {
|
|
13299
13299
|
primary: string;
|
|
@@ -13379,12 +13379,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13379
13379
|
background_color: string;
|
|
13380
13380
|
background_image_url: string;
|
|
13381
13381
|
page_layout: "center" | "left" | "right";
|
|
13382
|
-
logo_placement?: "
|
|
13382
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
13383
13383
|
} | undefined;
|
|
13384
13384
|
widget?: {
|
|
13385
13385
|
header_text_alignment: "center" | "left" | "right";
|
|
13386
13386
|
logo_height: number;
|
|
13387
|
-
logo_position: "
|
|
13387
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
13388
13388
|
logo_url: string;
|
|
13389
13389
|
social_buttons_layout: "bottom" | "top";
|
|
13390
13390
|
} | undefined;
|