authhero 8.4.1 → 8.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/authhero.cjs +4 -4
- package/dist/authhero.d.ts +127 -79
- package/dist/authhero.mjs +95 -89
- 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/index.d.ts +78 -76
- package/dist/types/routes/auth-api/index.d.ts +18 -18
- package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- 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/forms.d.ts +119 -119
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +52 -52
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +4 -4
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/types/AuthHeroConfig.d.ts +33 -1
- package/package.json +3 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -38,6 +38,8 @@ export { HttpSamlSigner } from "@authhero/saml/core";
|
|
|
38
38
|
export { fetchAll } from "./utils/fetchAll";
|
|
39
39
|
export type { FetchAllOptions } from "./utils/fetchAll";
|
|
40
40
|
export { deepMergePatch } from "./utils/deep-merge";
|
|
41
|
+
export { listControlPlaneKeys, resolveSigningKeys, resolveSigningKeyMode, } from "./helpers/signing-keys";
|
|
42
|
+
export type { ResolveSigningKeysOptions } from "./helpers/signing-keys";
|
|
41
43
|
export { USERNAME_PASSWORD_PROVIDER } from "./constants";
|
|
42
44
|
export * as preDefinedHooks from "./hooks/pre-defined";
|
|
43
45
|
export type { EnsureUsernameOptions } from "./hooks/pre-defined";
|
|
@@ -84,7 +86,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
84
86
|
};
|
|
85
87
|
} & {
|
|
86
88
|
json: {
|
|
87
|
-
type: "email" | "
|
|
89
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
88
90
|
phone_number?: string | undefined;
|
|
89
91
|
totp_secret?: string | undefined;
|
|
90
92
|
credential_id?: string | undefined;
|
|
@@ -224,7 +226,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
224
226
|
};
|
|
225
227
|
};
|
|
226
228
|
output: {
|
|
227
|
-
name: "email" | "
|
|
229
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
228
230
|
enabled: boolean;
|
|
229
231
|
trial_expired?: boolean | undefined;
|
|
230
232
|
}[];
|
|
@@ -379,7 +381,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
379
381
|
$get: {
|
|
380
382
|
input: {
|
|
381
383
|
param: {
|
|
382
|
-
factor_name: "email" | "
|
|
384
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
383
385
|
};
|
|
384
386
|
} & {
|
|
385
387
|
header: {
|
|
@@ -387,7 +389,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
387
389
|
};
|
|
388
390
|
};
|
|
389
391
|
output: {
|
|
390
|
-
name: "email" | "
|
|
392
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
391
393
|
enabled: boolean;
|
|
392
394
|
trial_expired?: boolean | undefined;
|
|
393
395
|
};
|
|
@@ -400,7 +402,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
400
402
|
$put: {
|
|
401
403
|
input: {
|
|
402
404
|
param: {
|
|
403
|
-
factor_name: "email" | "
|
|
405
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
404
406
|
};
|
|
405
407
|
} & {
|
|
406
408
|
header: {
|
|
@@ -412,7 +414,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
412
414
|
};
|
|
413
415
|
};
|
|
414
416
|
output: {
|
|
415
|
-
name: "email" | "
|
|
417
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
416
418
|
enabled: boolean;
|
|
417
419
|
trial_expired?: boolean | undefined;
|
|
418
420
|
};
|
|
@@ -1157,12 +1159,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1157
1159
|
invitee: {
|
|
1158
1160
|
email?: string | undefined;
|
|
1159
1161
|
};
|
|
1160
|
-
app_metadata?: Record<string, any> | undefined;
|
|
1161
|
-
user_metadata?: Record<string, any> | undefined;
|
|
1162
1162
|
id?: string | undefined;
|
|
1163
1163
|
connection_id?: string | undefined;
|
|
1164
|
-
|
|
1164
|
+
app_metadata?: Record<string, any> | undefined;
|
|
1165
|
+
user_metadata?: Record<string, any> | undefined;
|
|
1165
1166
|
roles?: string[] | undefined;
|
|
1167
|
+
ttl_sec?: number | undefined;
|
|
1166
1168
|
send_invitation_email?: boolean | undefined;
|
|
1167
1169
|
};
|
|
1168
1170
|
};
|
|
@@ -1345,8 +1347,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1345
1347
|
};
|
|
1346
1348
|
} & {
|
|
1347
1349
|
json: {
|
|
1348
|
-
assign_membership_on_login?: boolean | undefined;
|
|
1349
1350
|
show_as_button?: boolean | undefined;
|
|
1351
|
+
assign_membership_on_login?: boolean | undefined;
|
|
1350
1352
|
is_signup_enabled?: boolean | undefined;
|
|
1351
1353
|
};
|
|
1352
1354
|
};
|
|
@@ -6648,7 +6650,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6648
6650
|
};
|
|
6649
6651
|
};
|
|
6650
6652
|
output: {
|
|
6651
|
-
prompt: "
|
|
6653
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6652
6654
|
language: string;
|
|
6653
6655
|
}[];
|
|
6654
6656
|
outputFormat: "json";
|
|
@@ -6686,7 +6688,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6686
6688
|
$get: {
|
|
6687
6689
|
input: {
|
|
6688
6690
|
param: {
|
|
6689
|
-
prompt: "
|
|
6691
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6690
6692
|
language: string;
|
|
6691
6693
|
};
|
|
6692
6694
|
} & {
|
|
@@ -6708,7 +6710,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6708
6710
|
$put: {
|
|
6709
6711
|
input: {
|
|
6710
6712
|
param: {
|
|
6711
|
-
prompt: "
|
|
6713
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6712
6714
|
language: string;
|
|
6713
6715
|
};
|
|
6714
6716
|
} & {
|
|
@@ -6732,7 +6734,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6732
6734
|
$delete: {
|
|
6733
6735
|
input: {
|
|
6734
6736
|
param: {
|
|
6735
|
-
prompt: "
|
|
6737
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6736
6738
|
language: string;
|
|
6737
6739
|
};
|
|
6738
6740
|
} & {
|
|
@@ -8233,7 +8235,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8233
8235
|
log_type: string;
|
|
8234
8236
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8235
8237
|
actor: {
|
|
8236
|
-
type: "
|
|
8238
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
8237
8239
|
id?: string | undefined;
|
|
8238
8240
|
email?: string | undefined;
|
|
8239
8241
|
org_id?: string | undefined;
|
|
@@ -8881,7 +8883,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8881
8883
|
};
|
|
8882
8884
|
};
|
|
8883
8885
|
output: {
|
|
8884
|
-
type: "
|
|
8886
|
+
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";
|
|
8885
8887
|
date: string;
|
|
8886
8888
|
isMobile: boolean;
|
|
8887
8889
|
log_id: string;
|
|
@@ -8920,7 +8922,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8920
8922
|
limit: number;
|
|
8921
8923
|
length: number;
|
|
8922
8924
|
logs: {
|
|
8923
|
-
type: "
|
|
8925
|
+
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";
|
|
8924
8926
|
date: string;
|
|
8925
8927
|
isMobile: boolean;
|
|
8926
8928
|
log_id: string;
|
|
@@ -8974,7 +8976,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8974
8976
|
};
|
|
8975
8977
|
};
|
|
8976
8978
|
output: {
|
|
8977
|
-
type: "
|
|
8979
|
+
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";
|
|
8978
8980
|
date: string;
|
|
8979
8981
|
isMobile: boolean;
|
|
8980
8982
|
log_id: string;
|
|
@@ -9362,7 +9364,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9362
9364
|
addons?: {
|
|
9363
9365
|
[x: string]: any;
|
|
9364
9366
|
} | undefined;
|
|
9365
|
-
token_endpoint_auth_method?: "
|
|
9367
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9366
9368
|
client_metadata?: {
|
|
9367
9369
|
[x: string]: string;
|
|
9368
9370
|
} | undefined;
|
|
@@ -9458,7 +9460,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9458
9460
|
addons?: {
|
|
9459
9461
|
[x: string]: any;
|
|
9460
9462
|
} | undefined;
|
|
9461
|
-
token_endpoint_auth_method?: "
|
|
9463
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9462
9464
|
client_metadata?: {
|
|
9463
9465
|
[x: string]: string;
|
|
9464
9466
|
} | undefined;
|
|
@@ -9569,7 +9571,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9569
9571
|
addons?: {
|
|
9570
9572
|
[x: string]: any;
|
|
9571
9573
|
} | undefined;
|
|
9572
|
-
token_endpoint_auth_method?: "
|
|
9574
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9573
9575
|
client_metadata?: {
|
|
9574
9576
|
[x: string]: string;
|
|
9575
9577
|
} | undefined;
|
|
@@ -9679,7 +9681,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9679
9681
|
custom_login_page_preview?: string | undefined;
|
|
9680
9682
|
form_template?: string | undefined;
|
|
9681
9683
|
addons?: Record<string, any> | undefined;
|
|
9682
|
-
token_endpoint_auth_method?: "
|
|
9684
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9683
9685
|
client_metadata?: Record<string, string> | undefined;
|
|
9684
9686
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9685
9687
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9759,7 +9761,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9759
9761
|
addons?: {
|
|
9760
9762
|
[x: string]: any;
|
|
9761
9763
|
} | undefined;
|
|
9762
|
-
token_endpoint_auth_method?: "
|
|
9764
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9763
9765
|
client_metadata?: {
|
|
9764
9766
|
[x: string]: string;
|
|
9765
9767
|
} | undefined;
|
|
@@ -9848,7 +9850,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9848
9850
|
custom_login_page_preview?: string | undefined;
|
|
9849
9851
|
form_template?: string | undefined;
|
|
9850
9852
|
addons?: Record<string, any> | undefined;
|
|
9851
|
-
token_endpoint_auth_method?: "
|
|
9853
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9852
9854
|
client_metadata?: Record<string, string> | undefined;
|
|
9853
9855
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9854
9856
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9928,7 +9930,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9928
9930
|
addons?: {
|
|
9929
9931
|
[x: string]: any;
|
|
9930
9932
|
} | undefined;
|
|
9931
|
-
token_endpoint_auth_method?: "
|
|
9933
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9932
9934
|
client_metadata?: {
|
|
9933
9935
|
[x: string]: string;
|
|
9934
9936
|
} | undefined;
|
|
@@ -11192,7 +11194,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11192
11194
|
};
|
|
11193
11195
|
};
|
|
11194
11196
|
output: {
|
|
11195
|
-
type: "
|
|
11197
|
+
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";
|
|
11196
11198
|
date: string;
|
|
11197
11199
|
isMobile: boolean;
|
|
11198
11200
|
log_id: string;
|
|
@@ -11231,7 +11233,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11231
11233
|
limit: number;
|
|
11232
11234
|
length: number;
|
|
11233
11235
|
logs: {
|
|
11234
|
-
type: "
|
|
11236
|
+
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";
|
|
11235
11237
|
date: string;
|
|
11236
11238
|
isMobile: boolean;
|
|
11237
11239
|
log_id: string;
|
|
@@ -11546,7 +11548,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11546
11548
|
};
|
|
11547
11549
|
} & {
|
|
11548
11550
|
json: {
|
|
11549
|
-
template: "
|
|
11551
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11550
11552
|
body: string;
|
|
11551
11553
|
from: string;
|
|
11552
11554
|
subject: string;
|
|
@@ -11567,7 +11569,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11567
11569
|
};
|
|
11568
11570
|
} & {
|
|
11569
11571
|
json: {
|
|
11570
|
-
template: "
|
|
11572
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11571
11573
|
body: string;
|
|
11572
11574
|
from: string;
|
|
11573
11575
|
subject: string;
|
|
@@ -11579,7 +11581,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11579
11581
|
};
|
|
11580
11582
|
};
|
|
11581
11583
|
output: {
|
|
11582
|
-
template: "
|
|
11584
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11583
11585
|
body: string;
|
|
11584
11586
|
from: string;
|
|
11585
11587
|
subject: string;
|
|
@@ -11602,7 +11604,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11602
11604
|
};
|
|
11603
11605
|
};
|
|
11604
11606
|
output: {
|
|
11605
|
-
name: "
|
|
11607
|
+
name: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11606
11608
|
body: string;
|
|
11607
11609
|
subject: string;
|
|
11608
11610
|
}[];
|
|
@@ -11615,7 +11617,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11615
11617
|
$get: {
|
|
11616
11618
|
input: {
|
|
11617
11619
|
param: {
|
|
11618
|
-
templateName: "
|
|
11620
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11619
11621
|
};
|
|
11620
11622
|
} & {
|
|
11621
11623
|
header: {
|
|
@@ -11628,7 +11630,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11628
11630
|
} | {
|
|
11629
11631
|
input: {
|
|
11630
11632
|
param: {
|
|
11631
|
-
templateName: "
|
|
11633
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11632
11634
|
};
|
|
11633
11635
|
} & {
|
|
11634
11636
|
header: {
|
|
@@ -11636,7 +11638,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11636
11638
|
};
|
|
11637
11639
|
};
|
|
11638
11640
|
output: {
|
|
11639
|
-
template: "
|
|
11641
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11640
11642
|
body: string;
|
|
11641
11643
|
from: string;
|
|
11642
11644
|
subject: string;
|
|
@@ -11655,7 +11657,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11655
11657
|
$put: {
|
|
11656
11658
|
input: {
|
|
11657
11659
|
param: {
|
|
11658
|
-
templateName: "
|
|
11660
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11659
11661
|
};
|
|
11660
11662
|
} & {
|
|
11661
11663
|
header: {
|
|
@@ -11663,7 +11665,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11663
11665
|
};
|
|
11664
11666
|
} & {
|
|
11665
11667
|
json: {
|
|
11666
|
-
template: "
|
|
11668
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11667
11669
|
body: string;
|
|
11668
11670
|
subject: string;
|
|
11669
11671
|
syntax?: "liquid" | undefined;
|
|
@@ -11675,7 +11677,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11675
11677
|
};
|
|
11676
11678
|
};
|
|
11677
11679
|
output: {
|
|
11678
|
-
template: "
|
|
11680
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11679
11681
|
body: string;
|
|
11680
11682
|
from: string;
|
|
11681
11683
|
subject: string;
|
|
@@ -11694,7 +11696,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11694
11696
|
$patch: {
|
|
11695
11697
|
input: {
|
|
11696
11698
|
param: {
|
|
11697
|
-
templateName: "
|
|
11699
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11698
11700
|
};
|
|
11699
11701
|
} & {
|
|
11700
11702
|
header: {
|
|
@@ -11702,7 +11704,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11702
11704
|
};
|
|
11703
11705
|
} & {
|
|
11704
11706
|
json: {
|
|
11705
|
-
template?: "
|
|
11707
|
+
template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11706
11708
|
body?: string | undefined;
|
|
11707
11709
|
from?: string | undefined;
|
|
11708
11710
|
subject?: string | undefined;
|
|
@@ -11719,7 +11721,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11719
11721
|
} | {
|
|
11720
11722
|
input: {
|
|
11721
11723
|
param: {
|
|
11722
|
-
templateName: "
|
|
11724
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11723
11725
|
};
|
|
11724
11726
|
} & {
|
|
11725
11727
|
header: {
|
|
@@ -11727,7 +11729,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11727
11729
|
};
|
|
11728
11730
|
} & {
|
|
11729
11731
|
json: {
|
|
11730
|
-
template?: "
|
|
11732
|
+
template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11731
11733
|
body?: string | undefined;
|
|
11732
11734
|
from?: string | undefined;
|
|
11733
11735
|
subject?: string | undefined;
|
|
@@ -11739,7 +11741,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11739
11741
|
};
|
|
11740
11742
|
};
|
|
11741
11743
|
output: {
|
|
11742
|
-
template: "
|
|
11744
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11743
11745
|
body: string;
|
|
11744
11746
|
from: string;
|
|
11745
11747
|
subject: string;
|
|
@@ -11758,7 +11760,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11758
11760
|
$delete: {
|
|
11759
11761
|
input: {
|
|
11760
11762
|
param: {
|
|
11761
|
-
templateName: "
|
|
11763
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11762
11764
|
};
|
|
11763
11765
|
} & {
|
|
11764
11766
|
header: {
|
|
@@ -11771,7 +11773,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11771
11773
|
} | {
|
|
11772
11774
|
input: {
|
|
11773
11775
|
param: {
|
|
11774
|
-
templateName: "
|
|
11776
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11775
11777
|
};
|
|
11776
11778
|
} & {
|
|
11777
11779
|
header: {
|
|
@@ -11788,7 +11790,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11788
11790
|
$post: {
|
|
11789
11791
|
input: {
|
|
11790
11792
|
param: {
|
|
11791
|
-
templateName: "
|
|
11793
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11792
11794
|
};
|
|
11793
11795
|
} & {
|
|
11794
11796
|
header: {
|
|
@@ -12071,7 +12073,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12071
12073
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12072
12074
|
custom_domain_id: string;
|
|
12073
12075
|
primary: boolean;
|
|
12074
|
-
status: "
|
|
12076
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12075
12077
|
verification_method?: "txt" | undefined;
|
|
12076
12078
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12077
12079
|
domain_metadata?: {
|
|
@@ -12112,7 +12114,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12112
12114
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12113
12115
|
custom_domain_id: string;
|
|
12114
12116
|
primary: boolean;
|
|
12115
|
-
status: "
|
|
12117
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12116
12118
|
verification_method?: "txt" | undefined;
|
|
12117
12119
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12118
12120
|
domain_metadata?: {
|
|
@@ -12176,7 +12178,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12176
12178
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12177
12179
|
custom_domain_id: string;
|
|
12178
12180
|
primary: boolean;
|
|
12179
|
-
status: "
|
|
12181
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12180
12182
|
verification_method?: "txt" | undefined;
|
|
12181
12183
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12182
12184
|
domain_metadata?: {
|
|
@@ -12223,7 +12225,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12223
12225
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12224
12226
|
custom_domain_id: string;
|
|
12225
12227
|
primary: boolean;
|
|
12226
|
-
status: "
|
|
12228
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12227
12229
|
verification_method?: "txt" | undefined;
|
|
12228
12230
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12229
12231
|
domain_metadata?: {
|
|
@@ -12269,7 +12271,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12269
12271
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12270
12272
|
custom_domain_id: string;
|
|
12271
12273
|
primary: boolean;
|
|
12272
|
-
status: "
|
|
12274
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12273
12275
|
verification_method?: "txt" | undefined;
|
|
12274
12276
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12275
12277
|
domain_metadata?: {
|
|
@@ -12310,7 +12312,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12310
12312
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12311
12313
|
custom_domain_id: string;
|
|
12312
12314
|
primary: boolean;
|
|
12313
|
-
status: "
|
|
12315
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12314
12316
|
verification_method?: "txt" | undefined;
|
|
12315
12317
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12316
12318
|
domain_metadata?: {
|
|
@@ -12795,7 +12797,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12795
12797
|
json: {
|
|
12796
12798
|
bindings: {
|
|
12797
12799
|
ref: {
|
|
12798
|
-
type?: "
|
|
12800
|
+
type?: "action_id" | "action_name" | undefined;
|
|
12799
12801
|
value?: string | undefined;
|
|
12800
12802
|
id?: string | undefined;
|
|
12801
12803
|
name?: string | undefined;
|
|
@@ -13882,7 +13884,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13882
13884
|
scope?: string | undefined;
|
|
13883
13885
|
grant_types?: string[] | undefined;
|
|
13884
13886
|
response_types?: string[] | undefined;
|
|
13885
|
-
token_endpoint_auth_method?: "
|
|
13887
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13886
13888
|
jwks_uri?: string | undefined;
|
|
13887
13889
|
jwks?: Record<string, unknown> | undefined;
|
|
13888
13890
|
software_id?: string | undefined;
|
|
@@ -13971,7 +13973,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13971
13973
|
scope?: string | undefined;
|
|
13972
13974
|
grant_types?: string[] | undefined;
|
|
13973
13975
|
response_types?: string[] | undefined;
|
|
13974
|
-
token_endpoint_auth_method?: "
|
|
13976
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13975
13977
|
jwks_uri?: string | undefined;
|
|
13976
13978
|
jwks?: Record<string, unknown> | undefined;
|
|
13977
13979
|
software_id?: string | undefined;
|
|
@@ -14317,19 +14319,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14317
14319
|
email: string;
|
|
14318
14320
|
send: "code" | "link";
|
|
14319
14321
|
authParams: {
|
|
14320
|
-
username?: string | undefined;
|
|
14321
|
-
state?: string | undefined;
|
|
14322
|
-
act_as?: string | undefined;
|
|
14323
14322
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14324
14323
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14325
|
-
|
|
14324
|
+
scope?: string | undefined;
|
|
14325
|
+
username?: string | undefined;
|
|
14326
14326
|
audience?: string | undefined;
|
|
14327
|
-
|
|
14327
|
+
code_challenge?: string | undefined;
|
|
14328
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14329
|
+
redirect_uri?: string | undefined;
|
|
14328
14330
|
nonce?: string | undefined;
|
|
14329
|
-
|
|
14331
|
+
state?: string | undefined;
|
|
14332
|
+
act_as?: string | undefined;
|
|
14333
|
+
organization?: string | undefined;
|
|
14330
14334
|
prompt?: string | undefined;
|
|
14331
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14332
|
-
code_challenge?: string | undefined;
|
|
14333
14335
|
ui_locales?: string | undefined;
|
|
14334
14336
|
max_age?: number | undefined;
|
|
14335
14337
|
acr_values?: string | undefined;
|
|
@@ -14353,19 +14355,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14353
14355
|
phone_number: string;
|
|
14354
14356
|
send: "code" | "link";
|
|
14355
14357
|
authParams: {
|
|
14356
|
-
username?: string | undefined;
|
|
14357
|
-
state?: string | undefined;
|
|
14358
|
-
act_as?: string | undefined;
|
|
14359
14358
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14360
14359
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14361
|
-
|
|
14360
|
+
scope?: string | undefined;
|
|
14361
|
+
username?: string | undefined;
|
|
14362
14362
|
audience?: string | undefined;
|
|
14363
|
-
|
|
14363
|
+
code_challenge?: string | undefined;
|
|
14364
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14365
|
+
redirect_uri?: string | undefined;
|
|
14364
14366
|
nonce?: string | undefined;
|
|
14365
|
-
|
|
14367
|
+
state?: string | undefined;
|
|
14368
|
+
act_as?: string | undefined;
|
|
14369
|
+
organization?: string | undefined;
|
|
14366
14370
|
prompt?: string | undefined;
|
|
14367
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14368
|
-
code_challenge?: string | undefined;
|
|
14369
14371
|
ui_locales?: string | undefined;
|
|
14370
14372
|
max_age?: number | undefined;
|
|
14371
14373
|
acr_values?: string | undefined;
|
|
@@ -16272,7 +16274,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16272
16274
|
$get: {
|
|
16273
16275
|
input: {
|
|
16274
16276
|
param: {
|
|
16275
|
-
screen: "
|
|
16277
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "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";
|
|
16276
16278
|
};
|
|
16277
16279
|
} & {
|
|
16278
16280
|
query: {
|
|
@@ -16288,7 +16290,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16288
16290
|
} | {
|
|
16289
16291
|
input: {
|
|
16290
16292
|
param: {
|
|
16291
|
-
screen: "
|
|
16293
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "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";
|
|
16292
16294
|
};
|
|
16293
16295
|
} & {
|
|
16294
16296
|
query: {
|
|
@@ -16304,7 +16306,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16304
16306
|
} | {
|
|
16305
16307
|
input: {
|
|
16306
16308
|
param: {
|
|
16307
|
-
screen: "
|
|
16309
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "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";
|
|
16308
16310
|
};
|
|
16309
16311
|
} & {
|
|
16310
16312
|
query: {
|
|
@@ -16324,7 +16326,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16324
16326
|
$post: {
|
|
16325
16327
|
input: {
|
|
16326
16328
|
param: {
|
|
16327
|
-
screen: "
|
|
16329
|
+
screen: "signup" | "login" | "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";
|
|
16328
16330
|
};
|
|
16329
16331
|
} & {
|
|
16330
16332
|
query: {
|
|
@@ -16342,7 +16344,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16342
16344
|
} | {
|
|
16343
16345
|
input: {
|
|
16344
16346
|
param: {
|
|
16345
|
-
screen: "
|
|
16347
|
+
screen: "signup" | "login" | "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";
|
|
16346
16348
|
};
|
|
16347
16349
|
} & {
|
|
16348
16350
|
query: {
|
|
@@ -16360,7 +16362,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16360
16362
|
} | {
|
|
16361
16363
|
input: {
|
|
16362
16364
|
param: {
|
|
16363
|
-
screen: "
|
|
16365
|
+
screen: "signup" | "login" | "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";
|
|
16364
16366
|
};
|
|
16365
16367
|
} & {
|
|
16366
16368
|
query: {
|