authhero 8.11.0 → 8.11.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 +81 -81
- package/dist/authhero.d.ts +75 -75
- package/dist/authhero.mjs +2899 -2882
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/helpers/dcr/connect-state.d.ts +13 -0
- package/dist/types/index.d.ts +75 -75
- package/dist/types/routes/auth-api/index.d.ts +16 -16
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/index.d.ts +54 -54
- package/dist/types/routes/management-api/organizations.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
- 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 +2 -2
|
@@ -8,8 +8,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8
8
|
$get: {
|
|
9
9
|
input: {
|
|
10
10
|
query: {
|
|
11
|
-
include_password_hashes?: "
|
|
12
|
-
gzip?: "
|
|
11
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
12
|
+
gzip?: "false" | "true" | undefined;
|
|
13
13
|
};
|
|
14
14
|
} & {
|
|
15
15
|
header: {
|
|
@@ -22,8 +22,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
22
22
|
} | {
|
|
23
23
|
input: {
|
|
24
24
|
query: {
|
|
25
|
-
include_password_hashes?: "
|
|
26
|
-
gzip?: "
|
|
25
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
26
|
+
gzip?: "false" | "true" | undefined;
|
|
27
27
|
};
|
|
28
28
|
} & {
|
|
29
29
|
header: {
|
|
@@ -42,7 +42,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
42
42
|
$post: {
|
|
43
43
|
input: {
|
|
44
44
|
query: {
|
|
45
|
-
include_password_hashes?: "
|
|
45
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
46
46
|
};
|
|
47
47
|
} & {
|
|
48
48
|
header: {
|
|
@@ -96,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
96
96
|
};
|
|
97
97
|
} & {
|
|
98
98
|
json: {
|
|
99
|
-
type: "email" | "
|
|
99
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
100
100
|
phone_number?: string | undefined;
|
|
101
101
|
totp_secret?: string | undefined;
|
|
102
102
|
credential_id?: string | undefined;
|
|
@@ -236,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
236
236
|
};
|
|
237
237
|
};
|
|
238
238
|
output: {
|
|
239
|
-
name: "
|
|
239
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
240
240
|
enabled: boolean;
|
|
241
241
|
trial_expired?: boolean | undefined;
|
|
242
242
|
}[];
|
|
@@ -391,7 +391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
391
391
|
$get: {
|
|
392
392
|
input: {
|
|
393
393
|
param: {
|
|
394
|
-
factor_name: "
|
|
394
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
395
395
|
};
|
|
396
396
|
} & {
|
|
397
397
|
header: {
|
|
@@ -399,7 +399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
output: {
|
|
402
|
-
name: "
|
|
402
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
403
403
|
enabled: boolean;
|
|
404
404
|
trial_expired?: boolean | undefined;
|
|
405
405
|
};
|
|
@@ -412,7 +412,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
412
412
|
$put: {
|
|
413
413
|
input: {
|
|
414
414
|
param: {
|
|
415
|
-
factor_name: "
|
|
415
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
416
416
|
};
|
|
417
417
|
} & {
|
|
418
418
|
header: {
|
|
@@ -424,7 +424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
424
424
|
};
|
|
425
425
|
};
|
|
426
426
|
output: {
|
|
427
|
-
name: "
|
|
427
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
428
428
|
enabled: boolean;
|
|
429
429
|
trial_expired?: boolean | undefined;
|
|
430
430
|
};
|
|
@@ -1169,12 +1169,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1169
1169
|
invitee: {
|
|
1170
1170
|
email?: string | undefined;
|
|
1171
1171
|
};
|
|
1172
|
+
connection_id?: string | undefined;
|
|
1172
1173
|
id?: string | undefined;
|
|
1173
1174
|
app_metadata?: Record<string, any> | undefined;
|
|
1174
1175
|
user_metadata?: Record<string, any> | undefined;
|
|
1175
|
-
connection_id?: string | undefined;
|
|
1176
|
-
roles?: string[] | undefined;
|
|
1177
1176
|
ttl_sec?: number | undefined;
|
|
1177
|
+
roles?: string[] | undefined;
|
|
1178
1178
|
send_invitation_email?: boolean | undefined;
|
|
1179
1179
|
};
|
|
1180
1180
|
};
|
|
@@ -6828,7 +6828,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6828
6828
|
};
|
|
6829
6829
|
};
|
|
6830
6830
|
output: {
|
|
6831
|
-
prompt: "
|
|
6831
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6832
6832
|
language: string;
|
|
6833
6833
|
}[];
|
|
6834
6834
|
outputFormat: "json";
|
|
@@ -6866,7 +6866,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6866
6866
|
$get: {
|
|
6867
6867
|
input: {
|
|
6868
6868
|
param: {
|
|
6869
|
-
prompt: "
|
|
6869
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6870
6870
|
language: string;
|
|
6871
6871
|
};
|
|
6872
6872
|
} & {
|
|
@@ -6888,7 +6888,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6888
6888
|
$put: {
|
|
6889
6889
|
input: {
|
|
6890
6890
|
param: {
|
|
6891
|
-
prompt: "
|
|
6891
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6892
6892
|
language: string;
|
|
6893
6893
|
};
|
|
6894
6894
|
} & {
|
|
@@ -6912,7 +6912,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6912
6912
|
$delete: {
|
|
6913
6913
|
input: {
|
|
6914
6914
|
param: {
|
|
6915
|
-
prompt: "
|
|
6915
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6916
6916
|
language: string;
|
|
6917
6917
|
};
|
|
6918
6918
|
} & {
|
|
@@ -9061,7 +9061,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9061
9061
|
};
|
|
9062
9062
|
};
|
|
9063
9063
|
output: {
|
|
9064
|
-
type: "
|
|
9064
|
+
type: "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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";
|
|
9065
9065
|
date: string;
|
|
9066
9066
|
isMobile: boolean;
|
|
9067
9067
|
log_id: string;
|
|
@@ -9100,7 +9100,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9100
9100
|
limit: number;
|
|
9101
9101
|
length: number;
|
|
9102
9102
|
logs: {
|
|
9103
|
-
type: "
|
|
9103
|
+
type: "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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";
|
|
9104
9104
|
date: string;
|
|
9105
9105
|
isMobile: boolean;
|
|
9106
9106
|
log_id: string;
|
|
@@ -9154,7 +9154,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9154
9154
|
};
|
|
9155
9155
|
};
|
|
9156
9156
|
output: {
|
|
9157
|
-
type: "
|
|
9157
|
+
type: "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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;
|
|
@@ -9542,7 +9542,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9542
9542
|
addons?: {
|
|
9543
9543
|
[x: string]: any;
|
|
9544
9544
|
} | undefined;
|
|
9545
|
-
token_endpoint_auth_method?: "
|
|
9545
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9546
9546
|
client_metadata?: {
|
|
9547
9547
|
[x: string]: string;
|
|
9548
9548
|
} | undefined;
|
|
@@ -9638,7 +9638,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9638
9638
|
addons?: {
|
|
9639
9639
|
[x: string]: any;
|
|
9640
9640
|
} | undefined;
|
|
9641
|
-
token_endpoint_auth_method?: "
|
|
9641
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9642
9642
|
client_metadata?: {
|
|
9643
9643
|
[x: string]: string;
|
|
9644
9644
|
} | undefined;
|
|
@@ -9749,7 +9749,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9749
9749
|
addons?: {
|
|
9750
9750
|
[x: string]: any;
|
|
9751
9751
|
} | undefined;
|
|
9752
|
-
token_endpoint_auth_method?: "
|
|
9752
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9753
9753
|
client_metadata?: {
|
|
9754
9754
|
[x: string]: string;
|
|
9755
9755
|
} | undefined;
|
|
@@ -9859,7 +9859,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9859
9859
|
custom_login_page_preview?: string | undefined;
|
|
9860
9860
|
form_template?: string | undefined;
|
|
9861
9861
|
addons?: Record<string, any> | undefined;
|
|
9862
|
-
token_endpoint_auth_method?: "
|
|
9862
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9863
9863
|
client_metadata?: Record<string, string> | undefined;
|
|
9864
9864
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9865
9865
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9939,7 +9939,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9939
9939
|
addons?: {
|
|
9940
9940
|
[x: string]: any;
|
|
9941
9941
|
} | undefined;
|
|
9942
|
-
token_endpoint_auth_method?: "
|
|
9942
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9943
9943
|
client_metadata?: {
|
|
9944
9944
|
[x: string]: string;
|
|
9945
9945
|
} | undefined;
|
|
@@ -10028,7 +10028,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10028
10028
|
custom_login_page_preview?: string | undefined;
|
|
10029
10029
|
form_template?: string | undefined;
|
|
10030
10030
|
addons?: Record<string, any> | undefined;
|
|
10031
|
-
token_endpoint_auth_method?: "
|
|
10031
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10032
10032
|
client_metadata?: Record<string, string> | undefined;
|
|
10033
10033
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10034
10034
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10108,7 +10108,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10108
10108
|
addons?: {
|
|
10109
10109
|
[x: string]: any;
|
|
10110
10110
|
} | undefined;
|
|
10111
|
-
token_endpoint_auth_method?: "
|
|
10111
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10112
10112
|
client_metadata?: {
|
|
10113
10113
|
[x: string]: string;
|
|
10114
10114
|
} | undefined;
|
|
@@ -11372,7 +11372,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11372
11372
|
};
|
|
11373
11373
|
};
|
|
11374
11374
|
output: {
|
|
11375
|
-
type: "
|
|
11375
|
+
type: "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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";
|
|
11376
11376
|
date: string;
|
|
11377
11377
|
isMobile: boolean;
|
|
11378
11378
|
log_id: string;
|
|
@@ -11411,7 +11411,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11411
11411
|
limit: number;
|
|
11412
11412
|
length: number;
|
|
11413
11413
|
logs: {
|
|
11414
|
-
type: "
|
|
11414
|
+
type: "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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";
|
|
11415
11415
|
date: string;
|
|
11416
11416
|
isMobile: boolean;
|
|
11417
11417
|
log_id: string;
|
|
@@ -11726,7 +11726,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11726
11726
|
};
|
|
11727
11727
|
} & {
|
|
11728
11728
|
json: {
|
|
11729
|
-
template: "
|
|
11729
|
+
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";
|
|
11730
11730
|
body: string;
|
|
11731
11731
|
from: string;
|
|
11732
11732
|
subject: string;
|
|
@@ -11747,7 +11747,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11747
11747
|
};
|
|
11748
11748
|
} & {
|
|
11749
11749
|
json: {
|
|
11750
|
-
template: "
|
|
11750
|
+
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";
|
|
11751
11751
|
body: string;
|
|
11752
11752
|
from: string;
|
|
11753
11753
|
subject: string;
|
|
@@ -11759,7 +11759,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11759
11759
|
};
|
|
11760
11760
|
};
|
|
11761
11761
|
output: {
|
|
11762
|
-
template: "
|
|
11762
|
+
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";
|
|
11763
11763
|
body: string;
|
|
11764
11764
|
from: string;
|
|
11765
11765
|
subject: string;
|
|
@@ -11782,7 +11782,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11782
11782
|
};
|
|
11783
11783
|
};
|
|
11784
11784
|
output: {
|
|
11785
|
-
name: "
|
|
11785
|
+
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";
|
|
11786
11786
|
body: string;
|
|
11787
11787
|
subject: string;
|
|
11788
11788
|
}[];
|
|
@@ -11795,7 +11795,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11795
11795
|
$get: {
|
|
11796
11796
|
input: {
|
|
11797
11797
|
param: {
|
|
11798
|
-
templateName: "
|
|
11798
|
+
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";
|
|
11799
11799
|
};
|
|
11800
11800
|
} & {
|
|
11801
11801
|
header: {
|
|
@@ -11808,7 +11808,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11808
11808
|
} | {
|
|
11809
11809
|
input: {
|
|
11810
11810
|
param: {
|
|
11811
|
-
templateName: "
|
|
11811
|
+
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";
|
|
11812
11812
|
};
|
|
11813
11813
|
} & {
|
|
11814
11814
|
header: {
|
|
@@ -11816,7 +11816,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11816
11816
|
};
|
|
11817
11817
|
};
|
|
11818
11818
|
output: {
|
|
11819
|
-
template: "
|
|
11819
|
+
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";
|
|
11820
11820
|
body: string;
|
|
11821
11821
|
from: string;
|
|
11822
11822
|
subject: string;
|
|
@@ -11835,7 +11835,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11835
11835
|
$put: {
|
|
11836
11836
|
input: {
|
|
11837
11837
|
param: {
|
|
11838
|
-
templateName: "
|
|
11838
|
+
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";
|
|
11839
11839
|
};
|
|
11840
11840
|
} & {
|
|
11841
11841
|
header: {
|
|
@@ -11843,7 +11843,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11843
11843
|
};
|
|
11844
11844
|
} & {
|
|
11845
11845
|
json: {
|
|
11846
|
-
template: "
|
|
11846
|
+
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";
|
|
11847
11847
|
body: string;
|
|
11848
11848
|
subject: string;
|
|
11849
11849
|
syntax?: "liquid" | undefined;
|
|
@@ -11855,7 +11855,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11855
11855
|
};
|
|
11856
11856
|
};
|
|
11857
11857
|
output: {
|
|
11858
|
-
template: "
|
|
11858
|
+
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";
|
|
11859
11859
|
body: string;
|
|
11860
11860
|
from: string;
|
|
11861
11861
|
subject: string;
|
|
@@ -11874,7 +11874,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11874
11874
|
$patch: {
|
|
11875
11875
|
input: {
|
|
11876
11876
|
param: {
|
|
11877
|
-
templateName: "
|
|
11877
|
+
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";
|
|
11878
11878
|
};
|
|
11879
11879
|
} & {
|
|
11880
11880
|
header: {
|
|
@@ -11882,7 +11882,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11882
11882
|
};
|
|
11883
11883
|
} & {
|
|
11884
11884
|
json: {
|
|
11885
|
-
template?: "
|
|
11885
|
+
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;
|
|
11886
11886
|
body?: string | undefined;
|
|
11887
11887
|
from?: string | undefined;
|
|
11888
11888
|
subject?: string | undefined;
|
|
@@ -11899,7 +11899,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11899
11899
|
} | {
|
|
11900
11900
|
input: {
|
|
11901
11901
|
param: {
|
|
11902
|
-
templateName: "
|
|
11902
|
+
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";
|
|
11903
11903
|
};
|
|
11904
11904
|
} & {
|
|
11905
11905
|
header: {
|
|
@@ -11907,7 +11907,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11907
11907
|
};
|
|
11908
11908
|
} & {
|
|
11909
11909
|
json: {
|
|
11910
|
-
template?: "
|
|
11910
|
+
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;
|
|
11911
11911
|
body?: string | undefined;
|
|
11912
11912
|
from?: string | undefined;
|
|
11913
11913
|
subject?: string | undefined;
|
|
@@ -11919,7 +11919,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11919
11919
|
};
|
|
11920
11920
|
};
|
|
11921
11921
|
output: {
|
|
11922
|
-
template: "
|
|
11922
|
+
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";
|
|
11923
11923
|
body: string;
|
|
11924
11924
|
from: string;
|
|
11925
11925
|
subject: string;
|
|
@@ -11938,7 +11938,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11938
11938
|
$delete: {
|
|
11939
11939
|
input: {
|
|
11940
11940
|
param: {
|
|
11941
|
-
templateName: "
|
|
11941
|
+
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";
|
|
11942
11942
|
};
|
|
11943
11943
|
} & {
|
|
11944
11944
|
header: {
|
|
@@ -11951,7 +11951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11951
11951
|
} | {
|
|
11952
11952
|
input: {
|
|
11953
11953
|
param: {
|
|
11954
|
-
templateName: "
|
|
11954
|
+
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";
|
|
11955
11955
|
};
|
|
11956
11956
|
} & {
|
|
11957
11957
|
header: {
|
|
@@ -11968,7 +11968,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11968
11968
|
$post: {
|
|
11969
11969
|
input: {
|
|
11970
11970
|
param: {
|
|
11971
|
-
templateName: "
|
|
11971
|
+
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";
|
|
11972
11972
|
};
|
|
11973
11973
|
} & {
|
|
11974
11974
|
header: {
|
|
@@ -12251,7 +12251,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12251
12251
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12252
12252
|
custom_domain_id: string;
|
|
12253
12253
|
primary: boolean;
|
|
12254
|
-
status: "
|
|
12254
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12255
12255
|
verification_method?: "txt" | undefined;
|
|
12256
12256
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12257
12257
|
domain_metadata?: {
|
|
@@ -12292,7 +12292,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12292
12292
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12293
12293
|
custom_domain_id: string;
|
|
12294
12294
|
primary: boolean;
|
|
12295
|
-
status: "
|
|
12295
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12296
12296
|
verification_method?: "txt" | undefined;
|
|
12297
12297
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12298
12298
|
domain_metadata?: {
|
|
@@ -12356,7 +12356,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12356
12356
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12357
12357
|
custom_domain_id: string;
|
|
12358
12358
|
primary: boolean;
|
|
12359
|
-
status: "
|
|
12359
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12360
12360
|
verification_method?: "txt" | undefined;
|
|
12361
12361
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12362
12362
|
domain_metadata?: {
|
|
@@ -12403,7 +12403,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12403
12403
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12404
12404
|
custom_domain_id: string;
|
|
12405
12405
|
primary: boolean;
|
|
12406
|
-
status: "
|
|
12406
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12407
12407
|
verification_method?: "txt" | undefined;
|
|
12408
12408
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12409
12409
|
domain_metadata?: {
|
|
@@ -12449,7 +12449,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12449
12449
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12450
12450
|
custom_domain_id: string;
|
|
12451
12451
|
primary: boolean;
|
|
12452
|
-
status: "
|
|
12452
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12453
12453
|
verification_method?: "txt" | undefined;
|
|
12454
12454
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12455
12455
|
domain_metadata?: {
|
|
@@ -12490,7 +12490,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12490
12490
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12491
12491
|
custom_domain_id: string;
|
|
12492
12492
|
primary: boolean;
|
|
12493
|
-
status: "
|
|
12493
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12494
12494
|
verification_method?: "txt" | undefined;
|
|
12495
12495
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12496
12496
|
domain_metadata?: {
|
|
@@ -12920,7 +12920,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12920
12920
|
} & {
|
|
12921
12921
|
json: {
|
|
12922
12922
|
body?: string | undefined;
|
|
12923
|
-
screen?: "
|
|
12923
|
+
screen?: "login" | "identifier" | "signup" | "password" | undefined;
|
|
12924
12924
|
branding?: {
|
|
12925
12925
|
colors?: {
|
|
12926
12926
|
primary: string;
|
|
@@ -702,12 +702,12 @@ export declare const organizationRoutes: OpenAPIHono<{
|
|
|
702
702
|
invitee: {
|
|
703
703
|
email?: string | undefined;
|
|
704
704
|
};
|
|
705
|
+
connection_id?: string | undefined;
|
|
705
706
|
id?: string | undefined;
|
|
706
707
|
app_metadata?: Record<string, any> | undefined;
|
|
707
708
|
user_metadata?: Record<string, any> | undefined;
|
|
708
|
-
connection_id?: string | undefined;
|
|
709
|
-
roles?: string[] | undefined;
|
|
710
709
|
ttl_sec?: number | undefined;
|
|
710
|
+
roles?: string[] | undefined;
|
|
711
711
|
send_invitation_email?: boolean | undefined;
|
|
712
712
|
};
|
|
713
713
|
};
|
|
@@ -448,7 +448,7 @@ export declare function initJSXRoute(ctx: Context<{
|
|
|
448
448
|
custom_login_page_preview?: string | undefined;
|
|
449
449
|
form_template?: string | undefined;
|
|
450
450
|
addons?: Record<string, any> | undefined;
|
|
451
|
-
token_endpoint_auth_method?: "
|
|
451
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
452
452
|
client_metadata?: Record<string, string> | undefined;
|
|
453
453
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
454
454
|
mobile?: Record<string, any> | undefined;
|
|
@@ -1169,7 +1169,7 @@ export declare function initJSXRouteWithSession(ctx: Context<{
|
|
|
1169
1169
|
custom_login_page_preview?: string | undefined;
|
|
1170
1170
|
form_template?: string | undefined;
|
|
1171
1171
|
addons?: Record<string, any> | undefined;
|
|
1172
|
-
token_endpoint_auth_method?: "
|
|
1172
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
1173
1173
|
client_metadata?: Record<string, string> | undefined;
|
|
1174
1174
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
1175
1175
|
mobile?: Record<string, any> | undefined;
|