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
package/dist/types/index.d.ts
CHANGED
|
@@ -59,8 +59,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
59
59
|
$get: {
|
|
60
60
|
input: {
|
|
61
61
|
query: {
|
|
62
|
-
include_password_hashes?: "
|
|
63
|
-
gzip?: "
|
|
62
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
63
|
+
gzip?: "false" | "true" | undefined;
|
|
64
64
|
};
|
|
65
65
|
} & {
|
|
66
66
|
header: {
|
|
@@ -73,8 +73,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
73
73
|
} | {
|
|
74
74
|
input: {
|
|
75
75
|
query: {
|
|
76
|
-
include_password_hashes?: "
|
|
77
|
-
gzip?: "
|
|
76
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
77
|
+
gzip?: "false" | "true" | undefined;
|
|
78
78
|
};
|
|
79
79
|
} & {
|
|
80
80
|
header: {
|
|
@@ -93,7 +93,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
93
93
|
$post: {
|
|
94
94
|
input: {
|
|
95
95
|
query: {
|
|
96
|
-
include_password_hashes?: "
|
|
96
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
97
97
|
};
|
|
98
98
|
} & {
|
|
99
99
|
header: {
|
|
@@ -147,7 +147,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
147
147
|
};
|
|
148
148
|
} & {
|
|
149
149
|
json: {
|
|
150
|
-
type: "email" | "
|
|
150
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
151
151
|
phone_number?: string | undefined;
|
|
152
152
|
totp_secret?: string | undefined;
|
|
153
153
|
credential_id?: string | undefined;
|
|
@@ -287,7 +287,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
287
287
|
};
|
|
288
288
|
};
|
|
289
289
|
output: {
|
|
290
|
-
name: "
|
|
290
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
291
291
|
enabled: boolean;
|
|
292
292
|
trial_expired?: boolean | undefined;
|
|
293
293
|
}[];
|
|
@@ -442,7 +442,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
442
442
|
$get: {
|
|
443
443
|
input: {
|
|
444
444
|
param: {
|
|
445
|
-
factor_name: "
|
|
445
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
446
446
|
};
|
|
447
447
|
} & {
|
|
448
448
|
header: {
|
|
@@ -450,7 +450,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
450
450
|
};
|
|
451
451
|
};
|
|
452
452
|
output: {
|
|
453
|
-
name: "
|
|
453
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
454
454
|
enabled: boolean;
|
|
455
455
|
trial_expired?: boolean | undefined;
|
|
456
456
|
};
|
|
@@ -463,7 +463,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
463
463
|
$put: {
|
|
464
464
|
input: {
|
|
465
465
|
param: {
|
|
466
|
-
factor_name: "
|
|
466
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
467
467
|
};
|
|
468
468
|
} & {
|
|
469
469
|
header: {
|
|
@@ -475,7 +475,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
475
475
|
};
|
|
476
476
|
};
|
|
477
477
|
output: {
|
|
478
|
-
name: "
|
|
478
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
479
479
|
enabled: boolean;
|
|
480
480
|
trial_expired?: boolean | undefined;
|
|
481
481
|
};
|
|
@@ -1220,12 +1220,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1220
1220
|
invitee: {
|
|
1221
1221
|
email?: string | undefined;
|
|
1222
1222
|
};
|
|
1223
|
+
connection_id?: string | undefined;
|
|
1223
1224
|
id?: string | undefined;
|
|
1224
1225
|
app_metadata?: Record<string, any> | undefined;
|
|
1225
1226
|
user_metadata?: Record<string, any> | undefined;
|
|
1226
|
-
connection_id?: string | undefined;
|
|
1227
|
-
roles?: string[] | undefined;
|
|
1228
1227
|
ttl_sec?: number | undefined;
|
|
1228
|
+
roles?: string[] | undefined;
|
|
1229
1229
|
send_invitation_email?: boolean | undefined;
|
|
1230
1230
|
};
|
|
1231
1231
|
};
|
|
@@ -6879,7 +6879,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6879
6879
|
};
|
|
6880
6880
|
};
|
|
6881
6881
|
output: {
|
|
6882
|
-
prompt: "
|
|
6882
|
+
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";
|
|
6883
6883
|
language: string;
|
|
6884
6884
|
}[];
|
|
6885
6885
|
outputFormat: "json";
|
|
@@ -6917,7 +6917,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6917
6917
|
$get: {
|
|
6918
6918
|
input: {
|
|
6919
6919
|
param: {
|
|
6920
|
-
prompt: "
|
|
6920
|
+
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";
|
|
6921
6921
|
language: string;
|
|
6922
6922
|
};
|
|
6923
6923
|
} & {
|
|
@@ -6939,7 +6939,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6939
6939
|
$put: {
|
|
6940
6940
|
input: {
|
|
6941
6941
|
param: {
|
|
6942
|
-
prompt: "
|
|
6942
|
+
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";
|
|
6943
6943
|
language: string;
|
|
6944
6944
|
};
|
|
6945
6945
|
} & {
|
|
@@ -6963,7 +6963,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6963
6963
|
$delete: {
|
|
6964
6964
|
input: {
|
|
6965
6965
|
param: {
|
|
6966
|
-
prompt: "
|
|
6966
|
+
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";
|
|
6967
6967
|
language: string;
|
|
6968
6968
|
};
|
|
6969
6969
|
} & {
|
|
@@ -9112,7 +9112,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9112
9112
|
};
|
|
9113
9113
|
};
|
|
9114
9114
|
output: {
|
|
9115
|
-
type: "
|
|
9115
|
+
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";
|
|
9116
9116
|
date: string;
|
|
9117
9117
|
isMobile: boolean;
|
|
9118
9118
|
log_id: string;
|
|
@@ -9151,7 +9151,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9151
9151
|
limit: number;
|
|
9152
9152
|
length: number;
|
|
9153
9153
|
logs: {
|
|
9154
|
-
type: "
|
|
9154
|
+
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";
|
|
9155
9155
|
date: string;
|
|
9156
9156
|
isMobile: boolean;
|
|
9157
9157
|
log_id: string;
|
|
@@ -9205,7 +9205,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9205
9205
|
};
|
|
9206
9206
|
};
|
|
9207
9207
|
output: {
|
|
9208
|
-
type: "
|
|
9208
|
+
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";
|
|
9209
9209
|
date: string;
|
|
9210
9210
|
isMobile: boolean;
|
|
9211
9211
|
log_id: string;
|
|
@@ -9593,7 +9593,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9593
9593
|
addons?: {
|
|
9594
9594
|
[x: string]: any;
|
|
9595
9595
|
} | undefined;
|
|
9596
|
-
token_endpoint_auth_method?: "
|
|
9596
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9597
9597
|
client_metadata?: {
|
|
9598
9598
|
[x: string]: string;
|
|
9599
9599
|
} | undefined;
|
|
@@ -9689,7 +9689,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9689
9689
|
addons?: {
|
|
9690
9690
|
[x: string]: any;
|
|
9691
9691
|
} | undefined;
|
|
9692
|
-
token_endpoint_auth_method?: "
|
|
9692
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9693
9693
|
client_metadata?: {
|
|
9694
9694
|
[x: string]: string;
|
|
9695
9695
|
} | undefined;
|
|
@@ -9800,7 +9800,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9800
9800
|
addons?: {
|
|
9801
9801
|
[x: string]: any;
|
|
9802
9802
|
} | undefined;
|
|
9803
|
-
token_endpoint_auth_method?: "
|
|
9803
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9804
9804
|
client_metadata?: {
|
|
9805
9805
|
[x: string]: string;
|
|
9806
9806
|
} | undefined;
|
|
@@ -9910,7 +9910,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9910
9910
|
custom_login_page_preview?: string | undefined;
|
|
9911
9911
|
form_template?: string | undefined;
|
|
9912
9912
|
addons?: Record<string, any> | undefined;
|
|
9913
|
-
token_endpoint_auth_method?: "
|
|
9913
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9914
9914
|
client_metadata?: Record<string, string> | undefined;
|
|
9915
9915
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9916
9916
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9990,7 +9990,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9990
9990
|
addons?: {
|
|
9991
9991
|
[x: string]: any;
|
|
9992
9992
|
} | undefined;
|
|
9993
|
-
token_endpoint_auth_method?: "
|
|
9993
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9994
9994
|
client_metadata?: {
|
|
9995
9995
|
[x: string]: string;
|
|
9996
9996
|
} | undefined;
|
|
@@ -10079,7 +10079,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10079
10079
|
custom_login_page_preview?: string | undefined;
|
|
10080
10080
|
form_template?: string | undefined;
|
|
10081
10081
|
addons?: Record<string, any> | undefined;
|
|
10082
|
-
token_endpoint_auth_method?: "
|
|
10082
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10083
10083
|
client_metadata?: Record<string, string> | undefined;
|
|
10084
10084
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10085
10085
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10159,7 +10159,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10159
10159
|
addons?: {
|
|
10160
10160
|
[x: string]: any;
|
|
10161
10161
|
} | undefined;
|
|
10162
|
-
token_endpoint_auth_method?: "
|
|
10162
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10163
10163
|
client_metadata?: {
|
|
10164
10164
|
[x: string]: string;
|
|
10165
10165
|
} | undefined;
|
|
@@ -11423,7 +11423,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11423
11423
|
};
|
|
11424
11424
|
};
|
|
11425
11425
|
output: {
|
|
11426
|
-
type: "
|
|
11426
|
+
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";
|
|
11427
11427
|
date: string;
|
|
11428
11428
|
isMobile: boolean;
|
|
11429
11429
|
log_id: string;
|
|
@@ -11462,7 +11462,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11462
11462
|
limit: number;
|
|
11463
11463
|
length: number;
|
|
11464
11464
|
logs: {
|
|
11465
|
-
type: "
|
|
11465
|
+
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";
|
|
11466
11466
|
date: string;
|
|
11467
11467
|
isMobile: boolean;
|
|
11468
11468
|
log_id: string;
|
|
@@ -11777,7 +11777,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11777
11777
|
};
|
|
11778
11778
|
} & {
|
|
11779
11779
|
json: {
|
|
11780
|
-
template: "
|
|
11780
|
+
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";
|
|
11781
11781
|
body: string;
|
|
11782
11782
|
from: string;
|
|
11783
11783
|
subject: string;
|
|
@@ -11798,7 +11798,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11798
11798
|
};
|
|
11799
11799
|
} & {
|
|
11800
11800
|
json: {
|
|
11801
|
-
template: "
|
|
11801
|
+
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";
|
|
11802
11802
|
body: string;
|
|
11803
11803
|
from: string;
|
|
11804
11804
|
subject: string;
|
|
@@ -11810,7 +11810,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11810
11810
|
};
|
|
11811
11811
|
};
|
|
11812
11812
|
output: {
|
|
11813
|
-
template: "
|
|
11813
|
+
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";
|
|
11814
11814
|
body: string;
|
|
11815
11815
|
from: string;
|
|
11816
11816
|
subject: string;
|
|
@@ -11833,7 +11833,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11833
11833
|
};
|
|
11834
11834
|
};
|
|
11835
11835
|
output: {
|
|
11836
|
-
name: "
|
|
11836
|
+
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";
|
|
11837
11837
|
body: string;
|
|
11838
11838
|
subject: string;
|
|
11839
11839
|
}[];
|
|
@@ -11846,7 +11846,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11846
11846
|
$get: {
|
|
11847
11847
|
input: {
|
|
11848
11848
|
param: {
|
|
11849
|
-
templateName: "
|
|
11849
|
+
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";
|
|
11850
11850
|
};
|
|
11851
11851
|
} & {
|
|
11852
11852
|
header: {
|
|
@@ -11859,7 +11859,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11859
11859
|
} | {
|
|
11860
11860
|
input: {
|
|
11861
11861
|
param: {
|
|
11862
|
-
templateName: "
|
|
11862
|
+
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";
|
|
11863
11863
|
};
|
|
11864
11864
|
} & {
|
|
11865
11865
|
header: {
|
|
@@ -11867,7 +11867,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11867
11867
|
};
|
|
11868
11868
|
};
|
|
11869
11869
|
output: {
|
|
11870
|
-
template: "
|
|
11870
|
+
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";
|
|
11871
11871
|
body: string;
|
|
11872
11872
|
from: string;
|
|
11873
11873
|
subject: string;
|
|
@@ -11886,7 +11886,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11886
11886
|
$put: {
|
|
11887
11887
|
input: {
|
|
11888
11888
|
param: {
|
|
11889
|
-
templateName: "
|
|
11889
|
+
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";
|
|
11890
11890
|
};
|
|
11891
11891
|
} & {
|
|
11892
11892
|
header: {
|
|
@@ -11894,7 +11894,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11894
11894
|
};
|
|
11895
11895
|
} & {
|
|
11896
11896
|
json: {
|
|
11897
|
-
template: "
|
|
11897
|
+
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";
|
|
11898
11898
|
body: string;
|
|
11899
11899
|
subject: string;
|
|
11900
11900
|
syntax?: "liquid" | undefined;
|
|
@@ -11906,7 +11906,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11906
11906
|
};
|
|
11907
11907
|
};
|
|
11908
11908
|
output: {
|
|
11909
|
-
template: "
|
|
11909
|
+
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";
|
|
11910
11910
|
body: string;
|
|
11911
11911
|
from: string;
|
|
11912
11912
|
subject: string;
|
|
@@ -11925,7 +11925,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11925
11925
|
$patch: {
|
|
11926
11926
|
input: {
|
|
11927
11927
|
param: {
|
|
11928
|
-
templateName: "
|
|
11928
|
+
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";
|
|
11929
11929
|
};
|
|
11930
11930
|
} & {
|
|
11931
11931
|
header: {
|
|
@@ -11933,7 +11933,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11933
11933
|
};
|
|
11934
11934
|
} & {
|
|
11935
11935
|
json: {
|
|
11936
|
-
template?: "
|
|
11936
|
+
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;
|
|
11937
11937
|
body?: string | undefined;
|
|
11938
11938
|
from?: string | undefined;
|
|
11939
11939
|
subject?: string | undefined;
|
|
@@ -11950,7 +11950,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11950
11950
|
} | {
|
|
11951
11951
|
input: {
|
|
11952
11952
|
param: {
|
|
11953
|
-
templateName: "
|
|
11953
|
+
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";
|
|
11954
11954
|
};
|
|
11955
11955
|
} & {
|
|
11956
11956
|
header: {
|
|
@@ -11958,7 +11958,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11958
11958
|
};
|
|
11959
11959
|
} & {
|
|
11960
11960
|
json: {
|
|
11961
|
-
template?: "
|
|
11961
|
+
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;
|
|
11962
11962
|
body?: string | undefined;
|
|
11963
11963
|
from?: string | undefined;
|
|
11964
11964
|
subject?: string | undefined;
|
|
@@ -11970,7 +11970,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11970
11970
|
};
|
|
11971
11971
|
};
|
|
11972
11972
|
output: {
|
|
11973
|
-
template: "
|
|
11973
|
+
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";
|
|
11974
11974
|
body: string;
|
|
11975
11975
|
from: string;
|
|
11976
11976
|
subject: string;
|
|
@@ -11989,7 +11989,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11989
11989
|
$delete: {
|
|
11990
11990
|
input: {
|
|
11991
11991
|
param: {
|
|
11992
|
-
templateName: "
|
|
11992
|
+
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";
|
|
11993
11993
|
};
|
|
11994
11994
|
} & {
|
|
11995
11995
|
header: {
|
|
@@ -12002,7 +12002,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12002
12002
|
} | {
|
|
12003
12003
|
input: {
|
|
12004
12004
|
param: {
|
|
12005
|
-
templateName: "
|
|
12005
|
+
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";
|
|
12006
12006
|
};
|
|
12007
12007
|
} & {
|
|
12008
12008
|
header: {
|
|
@@ -12019,7 +12019,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12019
12019
|
$post: {
|
|
12020
12020
|
input: {
|
|
12021
12021
|
param: {
|
|
12022
|
-
templateName: "
|
|
12022
|
+
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";
|
|
12023
12023
|
};
|
|
12024
12024
|
} & {
|
|
12025
12025
|
header: {
|
|
@@ -12302,7 +12302,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12302
12302
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12303
12303
|
custom_domain_id: string;
|
|
12304
12304
|
primary: boolean;
|
|
12305
|
-
status: "
|
|
12305
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12306
12306
|
verification_method?: "txt" | undefined;
|
|
12307
12307
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12308
12308
|
domain_metadata?: {
|
|
@@ -12343,7 +12343,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12343
12343
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12344
12344
|
custom_domain_id: string;
|
|
12345
12345
|
primary: boolean;
|
|
12346
|
-
status: "
|
|
12346
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12347
12347
|
verification_method?: "txt" | undefined;
|
|
12348
12348
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12349
12349
|
domain_metadata?: {
|
|
@@ -12407,7 +12407,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12407
12407
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12408
12408
|
custom_domain_id: string;
|
|
12409
12409
|
primary: boolean;
|
|
12410
|
-
status: "
|
|
12410
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12411
12411
|
verification_method?: "txt" | undefined;
|
|
12412
12412
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12413
12413
|
domain_metadata?: {
|
|
@@ -12454,7 +12454,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12454
12454
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12455
12455
|
custom_domain_id: string;
|
|
12456
12456
|
primary: boolean;
|
|
12457
|
-
status: "
|
|
12457
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12458
12458
|
verification_method?: "txt" | undefined;
|
|
12459
12459
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12460
12460
|
domain_metadata?: {
|
|
@@ -12500,7 +12500,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12500
12500
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12501
12501
|
custom_domain_id: string;
|
|
12502
12502
|
primary: boolean;
|
|
12503
|
-
status: "
|
|
12503
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12504
12504
|
verification_method?: "txt" | undefined;
|
|
12505
12505
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12506
12506
|
domain_metadata?: {
|
|
@@ -12541,7 +12541,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12541
12541
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12542
12542
|
custom_domain_id: string;
|
|
12543
12543
|
primary: boolean;
|
|
12544
|
-
status: "
|
|
12544
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12545
12545
|
verification_method?: "txt" | undefined;
|
|
12546
12546
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12547
12547
|
domain_metadata?: {
|
|
@@ -12971,7 +12971,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12971
12971
|
} & {
|
|
12972
12972
|
json: {
|
|
12973
12973
|
body?: string | undefined;
|
|
12974
|
-
screen?: "
|
|
12974
|
+
screen?: "login" | "identifier" | "signup" | "password" | undefined;
|
|
12975
12975
|
branding?: {
|
|
12976
12976
|
colors?: {
|
|
12977
12977
|
primary: string;
|
|
@@ -14240,7 +14240,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14240
14240
|
scope?: string | undefined;
|
|
14241
14241
|
grant_types?: string[] | undefined;
|
|
14242
14242
|
response_types?: string[] | undefined;
|
|
14243
|
-
token_endpoint_auth_method?: "
|
|
14243
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14244
14244
|
jwks_uri?: string | undefined;
|
|
14245
14245
|
jwks?: Record<string, unknown> | undefined;
|
|
14246
14246
|
software_id?: string | undefined;
|
|
@@ -14329,7 +14329,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14329
14329
|
scope?: string | undefined;
|
|
14330
14330
|
grant_types?: string[] | undefined;
|
|
14331
14331
|
response_types?: string[] | undefined;
|
|
14332
|
-
token_endpoint_auth_method?: "
|
|
14332
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14333
14333
|
jwks_uri?: string | undefined;
|
|
14334
14334
|
jwks?: Record<string, unknown> | undefined;
|
|
14335
14335
|
software_id?: string | undefined;
|
|
@@ -14675,19 +14675,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14675
14675
|
email: string;
|
|
14676
14676
|
send: "code" | "link";
|
|
14677
14677
|
authParams: {
|
|
14678
|
-
|
|
14679
|
-
|
|
14680
|
-
|
|
14681
|
-
username?: string | undefined;
|
|
14678
|
+
code_challenge?: string | undefined;
|
|
14679
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14680
|
+
redirect_uri?: string | undefined;
|
|
14682
14681
|
nonce?: string | undefined;
|
|
14683
14682
|
state?: string | undefined;
|
|
14684
14683
|
act_as?: string | undefined;
|
|
14685
|
-
|
|
14684
|
+
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14685
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14686
14686
|
audience?: string | undefined;
|
|
14687
14687
|
organization?: string | undefined;
|
|
14688
|
+
scope?: string | undefined;
|
|
14688
14689
|
prompt?: string | undefined;
|
|
14689
|
-
|
|
14690
|
-
code_challenge?: string | undefined;
|
|
14690
|
+
username?: string | undefined;
|
|
14691
14691
|
ui_locales?: string | undefined;
|
|
14692
14692
|
max_age?: number | undefined;
|
|
14693
14693
|
acr_values?: string | undefined;
|
|
@@ -14711,19 +14711,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14711
14711
|
phone_number: string;
|
|
14712
14712
|
send: "code" | "link";
|
|
14713
14713
|
authParams: {
|
|
14714
|
-
|
|
14715
|
-
|
|
14716
|
-
|
|
14717
|
-
username?: string | undefined;
|
|
14714
|
+
code_challenge?: string | undefined;
|
|
14715
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14716
|
+
redirect_uri?: string | undefined;
|
|
14718
14717
|
nonce?: string | undefined;
|
|
14719
14718
|
state?: string | undefined;
|
|
14720
14719
|
act_as?: string | undefined;
|
|
14721
|
-
|
|
14720
|
+
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14721
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14722
14722
|
audience?: string | undefined;
|
|
14723
14723
|
organization?: string | undefined;
|
|
14724
|
+
scope?: string | undefined;
|
|
14724
14725
|
prompt?: string | undefined;
|
|
14725
|
-
|
|
14726
|
-
code_challenge?: string | undefined;
|
|
14726
|
+
username?: string | undefined;
|
|
14727
14727
|
ui_locales?: string | undefined;
|
|
14728
14728
|
max_age?: number | undefined;
|
|
14729
14729
|
acr_values?: string | undefined;
|
|
@@ -16630,7 +16630,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16630
16630
|
$get: {
|
|
16631
16631
|
input: {
|
|
16632
16632
|
param: {
|
|
16633
|
-
screen: "
|
|
16633
|
+
screen: "login" | "signup" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16634
16634
|
};
|
|
16635
16635
|
} & {
|
|
16636
16636
|
query: {
|
|
@@ -16646,7 +16646,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16646
16646
|
} | {
|
|
16647
16647
|
input: {
|
|
16648
16648
|
param: {
|
|
16649
|
-
screen: "
|
|
16649
|
+
screen: "login" | "signup" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16650
16650
|
};
|
|
16651
16651
|
} & {
|
|
16652
16652
|
query: {
|
|
@@ -16662,7 +16662,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16662
16662
|
} | {
|
|
16663
16663
|
input: {
|
|
16664
16664
|
param: {
|
|
16665
|
-
screen: "
|
|
16665
|
+
screen: "login" | "signup" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16666
16666
|
};
|
|
16667
16667
|
} & {
|
|
16668
16668
|
query: {
|
|
@@ -16682,7 +16682,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16682
16682
|
$post: {
|
|
16683
16683
|
input: {
|
|
16684
16684
|
param: {
|
|
16685
|
-
screen: "
|
|
16685
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16686
16686
|
};
|
|
16687
16687
|
} & {
|
|
16688
16688
|
query: {
|
|
@@ -16700,7 +16700,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16700
16700
|
} | {
|
|
16701
16701
|
input: {
|
|
16702
16702
|
param: {
|
|
16703
|
-
screen: "
|
|
16703
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16704
16704
|
};
|
|
16705
16705
|
} & {
|
|
16706
16706
|
query: {
|