authhero 5.9.1 → 5.10.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 +89 -89
- package/dist/authhero.d.ts +104 -104
- package/dist/authhero.mjs +4551 -4526
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/index.d.ts +104 -104
- package/dist/types/routes/auth-api/authorize.d.ts +14 -14
- package/dist/types/routes/auth-api/index.d.ts +52 -52
- package/dist/types/routes/auth-api/passwordless.d.ts +2 -2
- package/dist/types/routes/management-api/index.d.ts +4 -4
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/package.json +5 -5
package/dist/authhero.d.ts
CHANGED
|
@@ -2407,7 +2407,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2407
2407
|
};
|
|
2408
2408
|
} & {
|
|
2409
2409
|
json: {
|
|
2410
|
-
type: "
|
|
2410
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
2411
2411
|
phone_number?: string | undefined;
|
|
2412
2412
|
totp_secret?: string | undefined;
|
|
2413
2413
|
credential_id?: string | undefined;
|
|
@@ -2547,7 +2547,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2547
2547
|
};
|
|
2548
2548
|
};
|
|
2549
2549
|
output: {
|
|
2550
|
-
name: "
|
|
2550
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2551
2551
|
enabled: boolean;
|
|
2552
2552
|
trial_expired?: boolean | undefined;
|
|
2553
2553
|
}[];
|
|
@@ -2702,7 +2702,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2702
2702
|
$get: {
|
|
2703
2703
|
input: {
|
|
2704
2704
|
param: {
|
|
2705
|
-
factor_name: "
|
|
2705
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2706
2706
|
};
|
|
2707
2707
|
} & {
|
|
2708
2708
|
header: {
|
|
@@ -2710,7 +2710,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2710
2710
|
};
|
|
2711
2711
|
};
|
|
2712
2712
|
output: {
|
|
2713
|
-
name: "
|
|
2713
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2714
2714
|
enabled: boolean;
|
|
2715
2715
|
trial_expired?: boolean | undefined;
|
|
2716
2716
|
};
|
|
@@ -2723,7 +2723,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2723
2723
|
$put: {
|
|
2724
2724
|
input: {
|
|
2725
2725
|
param: {
|
|
2726
|
-
factor_name: "
|
|
2726
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2727
2727
|
};
|
|
2728
2728
|
} & {
|
|
2729
2729
|
header: {
|
|
@@ -2735,7 +2735,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2735
2735
|
};
|
|
2736
2736
|
};
|
|
2737
2737
|
output: {
|
|
2738
|
-
name: "
|
|
2738
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2739
2739
|
enabled: boolean;
|
|
2740
2740
|
trial_expired?: boolean | undefined;
|
|
2741
2741
|
};
|
|
@@ -3444,10 +3444,10 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3444
3444
|
invitee: {
|
|
3445
3445
|
email?: string | undefined;
|
|
3446
3446
|
};
|
|
3447
|
+
connection_id?: string | undefined;
|
|
3447
3448
|
id?: string | undefined;
|
|
3448
3449
|
app_metadata?: Record<string, any> | undefined;
|
|
3449
3450
|
user_metadata?: Record<string, any> | undefined;
|
|
3450
|
-
connection_id?: string | undefined;
|
|
3451
3451
|
roles?: string[] | undefined;
|
|
3452
3452
|
ttl_sec?: number | undefined;
|
|
3453
3453
|
send_invitation_email?: boolean | undefined;
|
|
@@ -4299,7 +4299,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4299
4299
|
type: "REDIRECT";
|
|
4300
4300
|
action: "REDIRECT_USER";
|
|
4301
4301
|
params: {
|
|
4302
|
-
target: "custom" | "
|
|
4302
|
+
target: "custom" | "account" | "change-email";
|
|
4303
4303
|
custom_url?: string | undefined;
|
|
4304
4304
|
};
|
|
4305
4305
|
alias?: string | undefined;
|
|
@@ -4352,7 +4352,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4352
4352
|
type: "REDIRECT";
|
|
4353
4353
|
action: "REDIRECT_USER";
|
|
4354
4354
|
params: {
|
|
4355
|
-
target: "custom" | "
|
|
4355
|
+
target: "custom" | "account" | "change-email";
|
|
4356
4356
|
custom_url?: string | undefined;
|
|
4357
4357
|
};
|
|
4358
4358
|
alias?: string | undefined;
|
|
@@ -4420,7 +4420,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4420
4420
|
type: "REDIRECT";
|
|
4421
4421
|
action: "REDIRECT_USER";
|
|
4422
4422
|
params: {
|
|
4423
|
-
target: "custom" | "
|
|
4423
|
+
target: "custom" | "account" | "change-email";
|
|
4424
4424
|
custom_url?: string | undefined;
|
|
4425
4425
|
};
|
|
4426
4426
|
alias?: string | undefined;
|
|
@@ -4501,7 +4501,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4501
4501
|
type: "REDIRECT";
|
|
4502
4502
|
action: "REDIRECT_USER";
|
|
4503
4503
|
params: {
|
|
4504
|
-
target: "custom" | "
|
|
4504
|
+
target: "custom" | "account" | "change-email";
|
|
4505
4505
|
custom_url?: string | undefined;
|
|
4506
4506
|
};
|
|
4507
4507
|
alias?: string | undefined;
|
|
@@ -4549,7 +4549,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4549
4549
|
type: "REDIRECT";
|
|
4550
4550
|
action: "REDIRECT_USER";
|
|
4551
4551
|
params: {
|
|
4552
|
-
target: "custom" | "
|
|
4552
|
+
target: "custom" | "account" | "change-email";
|
|
4553
4553
|
custom_url?: string | undefined;
|
|
4554
4554
|
};
|
|
4555
4555
|
alias?: string | undefined;
|
|
@@ -4609,7 +4609,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4609
4609
|
type: "REDIRECT";
|
|
4610
4610
|
action: "REDIRECT_USER";
|
|
4611
4611
|
params: {
|
|
4612
|
-
target: "custom" | "
|
|
4612
|
+
target: "custom" | "account" | "change-email";
|
|
4613
4613
|
custom_url?: string | undefined;
|
|
4614
4614
|
};
|
|
4615
4615
|
alias?: string | undefined;
|
|
@@ -4657,7 +4657,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4657
4657
|
type: "REDIRECT";
|
|
4658
4658
|
action: "REDIRECT_USER";
|
|
4659
4659
|
params: {
|
|
4660
|
-
target: "custom" | "
|
|
4660
|
+
target: "custom" | "account" | "change-email";
|
|
4661
4661
|
custom_url?: string | undefined;
|
|
4662
4662
|
};
|
|
4663
4663
|
alias?: string | undefined;
|
|
@@ -8935,7 +8935,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8935
8935
|
};
|
|
8936
8936
|
};
|
|
8937
8937
|
output: {
|
|
8938
|
-
prompt: "
|
|
8938
|
+
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";
|
|
8939
8939
|
language: string;
|
|
8940
8940
|
}[];
|
|
8941
8941
|
outputFormat: "json";
|
|
@@ -8973,7 +8973,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8973
8973
|
$get: {
|
|
8974
8974
|
input: {
|
|
8975
8975
|
param: {
|
|
8976
|
-
prompt: "
|
|
8976
|
+
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";
|
|
8977
8977
|
language: string;
|
|
8978
8978
|
};
|
|
8979
8979
|
} & {
|
|
@@ -8995,7 +8995,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8995
8995
|
$put: {
|
|
8996
8996
|
input: {
|
|
8997
8997
|
param: {
|
|
8998
|
-
prompt: "
|
|
8998
|
+
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";
|
|
8999
8999
|
language: string;
|
|
9000
9000
|
};
|
|
9001
9001
|
} & {
|
|
@@ -9019,7 +9019,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9019
9019
|
$delete: {
|
|
9020
9020
|
input: {
|
|
9021
9021
|
param: {
|
|
9022
|
-
prompt: "
|
|
9022
|
+
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";
|
|
9023
9023
|
language: string;
|
|
9024
9024
|
};
|
|
9025
9025
|
} & {
|
|
@@ -10460,7 +10460,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10460
10460
|
log_type: string;
|
|
10461
10461
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
10462
10462
|
actor: {
|
|
10463
|
-
type: "
|
|
10463
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
10464
10464
|
id?: string | undefined;
|
|
10465
10465
|
email?: string | undefined;
|
|
10466
10466
|
org_id?: string | undefined;
|
|
@@ -11108,7 +11108,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11108
11108
|
};
|
|
11109
11109
|
};
|
|
11110
11110
|
output: {
|
|
11111
|
-
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" | "
|
|
11111
|
+
type: "s" | "w" | "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
11112
11112
|
date: string;
|
|
11113
11113
|
isMobile: boolean;
|
|
11114
11114
|
log_id: string;
|
|
@@ -11147,7 +11147,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11147
11147
|
limit: number;
|
|
11148
11148
|
length: number;
|
|
11149
11149
|
logs: {
|
|
11150
|
-
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" | "
|
|
11150
|
+
type: "s" | "w" | "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
11151
11151
|
date: string;
|
|
11152
11152
|
isMobile: boolean;
|
|
11153
11153
|
log_id: string;
|
|
@@ -11201,7 +11201,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11201
11201
|
};
|
|
11202
11202
|
};
|
|
11203
11203
|
output: {
|
|
11204
|
-
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" | "
|
|
11204
|
+
type: "s" | "w" | "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
11205
11205
|
date: string;
|
|
11206
11206
|
isMobile: boolean;
|
|
11207
11207
|
log_id: string;
|
|
@@ -11515,7 +11515,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11515
11515
|
addons?: {
|
|
11516
11516
|
[x: string]: any;
|
|
11517
11517
|
} | undefined;
|
|
11518
|
-
token_endpoint_auth_method?: "
|
|
11518
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11519
11519
|
client_metadata?: {
|
|
11520
11520
|
[x: string]: string;
|
|
11521
11521
|
} | undefined;
|
|
@@ -11611,7 +11611,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11611
11611
|
addons?: {
|
|
11612
11612
|
[x: string]: any;
|
|
11613
11613
|
} | undefined;
|
|
11614
|
-
token_endpoint_auth_method?: "
|
|
11614
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11615
11615
|
client_metadata?: {
|
|
11616
11616
|
[x: string]: string;
|
|
11617
11617
|
} | undefined;
|
|
@@ -11722,7 +11722,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11722
11722
|
addons?: {
|
|
11723
11723
|
[x: string]: any;
|
|
11724
11724
|
} | undefined;
|
|
11725
|
-
token_endpoint_auth_method?: "
|
|
11725
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11726
11726
|
client_metadata?: {
|
|
11727
11727
|
[x: string]: string;
|
|
11728
11728
|
} | undefined;
|
|
@@ -11832,7 +11832,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11832
11832
|
custom_login_page_preview?: string | undefined;
|
|
11833
11833
|
form_template?: string | undefined;
|
|
11834
11834
|
addons?: Record<string, any> | undefined;
|
|
11835
|
-
token_endpoint_auth_method?: "
|
|
11835
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11836
11836
|
client_metadata?: Record<string, string> | undefined;
|
|
11837
11837
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
11838
11838
|
mobile?: Record<string, any> | undefined;
|
|
@@ -11912,7 +11912,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11912
11912
|
addons?: {
|
|
11913
11913
|
[x: string]: any;
|
|
11914
11914
|
} | undefined;
|
|
11915
|
-
token_endpoint_auth_method?: "
|
|
11915
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11916
11916
|
client_metadata?: {
|
|
11917
11917
|
[x: string]: string;
|
|
11918
11918
|
} | undefined;
|
|
@@ -12001,7 +12001,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12001
12001
|
custom_login_page_preview?: string | undefined;
|
|
12002
12002
|
form_template?: string | undefined;
|
|
12003
12003
|
addons?: Record<string, any> | undefined;
|
|
12004
|
-
token_endpoint_auth_method?: "
|
|
12004
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12005
12005
|
client_metadata?: Record<string, string> | undefined;
|
|
12006
12006
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12007
12007
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12081,7 +12081,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12081
12081
|
addons?: {
|
|
12082
12082
|
[x: string]: any;
|
|
12083
12083
|
} | undefined;
|
|
12084
|
-
token_endpoint_auth_method?: "
|
|
12084
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12085
12085
|
client_metadata?: {
|
|
12086
12086
|
[x: string]: string;
|
|
12087
12087
|
} | undefined;
|
|
@@ -13345,7 +13345,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13345
13345
|
};
|
|
13346
13346
|
};
|
|
13347
13347
|
output: {
|
|
13348
|
-
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" | "
|
|
13348
|
+
type: "s" | "w" | "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
13349
13349
|
date: string;
|
|
13350
13350
|
isMobile: boolean;
|
|
13351
13351
|
log_id: string;
|
|
@@ -13384,7 +13384,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13384
13384
|
limit: number;
|
|
13385
13385
|
length: number;
|
|
13386
13386
|
logs: {
|
|
13387
|
-
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" | "
|
|
13387
|
+
type: "s" | "w" | "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
13388
13388
|
date: string;
|
|
13389
13389
|
isMobile: boolean;
|
|
13390
13390
|
log_id: string;
|
|
@@ -13699,7 +13699,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13699
13699
|
};
|
|
13700
13700
|
} & {
|
|
13701
13701
|
json: {
|
|
13702
|
-
template: "
|
|
13702
|
+
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";
|
|
13703
13703
|
body: string;
|
|
13704
13704
|
from: string;
|
|
13705
13705
|
subject: string;
|
|
@@ -13720,7 +13720,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13720
13720
|
};
|
|
13721
13721
|
} & {
|
|
13722
13722
|
json: {
|
|
13723
|
-
template: "
|
|
13723
|
+
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";
|
|
13724
13724
|
body: string;
|
|
13725
13725
|
from: string;
|
|
13726
13726
|
subject: string;
|
|
@@ -13732,7 +13732,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13732
13732
|
};
|
|
13733
13733
|
};
|
|
13734
13734
|
output: {
|
|
13735
|
-
template: "
|
|
13735
|
+
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";
|
|
13736
13736
|
body: string;
|
|
13737
13737
|
from: string;
|
|
13738
13738
|
subject: string;
|
|
@@ -13751,7 +13751,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13751
13751
|
$get: {
|
|
13752
13752
|
input: {
|
|
13753
13753
|
param: {
|
|
13754
|
-
templateName: "
|
|
13754
|
+
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";
|
|
13755
13755
|
};
|
|
13756
13756
|
} & {
|
|
13757
13757
|
header: {
|
|
@@ -13764,7 +13764,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13764
13764
|
} | {
|
|
13765
13765
|
input: {
|
|
13766
13766
|
param: {
|
|
13767
|
-
templateName: "
|
|
13767
|
+
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";
|
|
13768
13768
|
};
|
|
13769
13769
|
} & {
|
|
13770
13770
|
header: {
|
|
@@ -13772,7 +13772,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13772
13772
|
};
|
|
13773
13773
|
};
|
|
13774
13774
|
output: {
|
|
13775
|
-
template: "
|
|
13775
|
+
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";
|
|
13776
13776
|
body: string;
|
|
13777
13777
|
from: string;
|
|
13778
13778
|
subject: string;
|
|
@@ -13791,7 +13791,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13791
13791
|
$put: {
|
|
13792
13792
|
input: {
|
|
13793
13793
|
param: {
|
|
13794
|
-
templateName: "
|
|
13794
|
+
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";
|
|
13795
13795
|
};
|
|
13796
13796
|
} & {
|
|
13797
13797
|
header: {
|
|
@@ -13799,7 +13799,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13799
13799
|
};
|
|
13800
13800
|
} & {
|
|
13801
13801
|
json: {
|
|
13802
|
-
template: "
|
|
13802
|
+
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";
|
|
13803
13803
|
body: string;
|
|
13804
13804
|
from: string;
|
|
13805
13805
|
subject: string;
|
|
@@ -13811,7 +13811,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13811
13811
|
};
|
|
13812
13812
|
};
|
|
13813
13813
|
output: {
|
|
13814
|
-
template: "
|
|
13814
|
+
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";
|
|
13815
13815
|
body: string;
|
|
13816
13816
|
from: string;
|
|
13817
13817
|
subject: string;
|
|
@@ -13830,7 +13830,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13830
13830
|
$patch: {
|
|
13831
13831
|
input: {
|
|
13832
13832
|
param: {
|
|
13833
|
-
templateName: "
|
|
13833
|
+
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";
|
|
13834
13834
|
};
|
|
13835
13835
|
} & {
|
|
13836
13836
|
header: {
|
|
@@ -13838,7 +13838,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13838
13838
|
};
|
|
13839
13839
|
} & {
|
|
13840
13840
|
json: {
|
|
13841
|
-
template?: "
|
|
13841
|
+
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;
|
|
13842
13842
|
body?: string | undefined;
|
|
13843
13843
|
from?: string | undefined;
|
|
13844
13844
|
subject?: string | undefined;
|
|
@@ -13855,7 +13855,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13855
13855
|
} | {
|
|
13856
13856
|
input: {
|
|
13857
13857
|
param: {
|
|
13858
|
-
templateName: "
|
|
13858
|
+
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";
|
|
13859
13859
|
};
|
|
13860
13860
|
} & {
|
|
13861
13861
|
header: {
|
|
@@ -13863,7 +13863,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13863
13863
|
};
|
|
13864
13864
|
} & {
|
|
13865
13865
|
json: {
|
|
13866
|
-
template?: "
|
|
13866
|
+
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;
|
|
13867
13867
|
body?: string | undefined;
|
|
13868
13868
|
from?: string | undefined;
|
|
13869
13869
|
subject?: string | undefined;
|
|
@@ -13875,7 +13875,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13875
13875
|
};
|
|
13876
13876
|
};
|
|
13877
13877
|
output: {
|
|
13878
|
-
template: "
|
|
13878
|
+
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";
|
|
13879
13879
|
body: string;
|
|
13880
13880
|
from: string;
|
|
13881
13881
|
subject: string;
|
|
@@ -14921,7 +14921,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14921
14921
|
output: {
|
|
14922
14922
|
id: string;
|
|
14923
14923
|
trigger_id: string;
|
|
14924
|
-
status: "
|
|
14924
|
+
status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
|
|
14925
14925
|
results: {
|
|
14926
14926
|
action_name: string;
|
|
14927
14927
|
error: {
|
|
@@ -15933,7 +15933,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15933
15933
|
scope?: string | undefined;
|
|
15934
15934
|
grant_types?: string[] | undefined;
|
|
15935
15935
|
response_types?: string[] | undefined;
|
|
15936
|
-
token_endpoint_auth_method?: "
|
|
15936
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
15937
15937
|
jwks_uri?: string | undefined;
|
|
15938
15938
|
jwks?: Record<string, unknown> | undefined;
|
|
15939
15939
|
software_id?: string | undefined;
|
|
@@ -16022,7 +16022,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16022
16022
|
scope?: string | undefined;
|
|
16023
16023
|
grant_types?: string[] | undefined;
|
|
16024
16024
|
response_types?: string[] | undefined;
|
|
16025
|
-
token_endpoint_auth_method?: "
|
|
16025
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16026
16026
|
jwks_uri?: string | undefined;
|
|
16027
16027
|
jwks?: Record<string, unknown> | undefined;
|
|
16028
16028
|
software_id?: string | undefined;
|
|
@@ -16079,7 +16079,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16079
16079
|
client_id: string;
|
|
16080
16080
|
redirect_url?: string | undefined;
|
|
16081
16081
|
login_hint?: string | undefined;
|
|
16082
|
-
screen_hint?: "
|
|
16082
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
16083
16083
|
};
|
|
16084
16084
|
};
|
|
16085
16085
|
output: {};
|
|
@@ -16091,7 +16091,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16091
16091
|
client_id: string;
|
|
16092
16092
|
redirect_url?: string | undefined;
|
|
16093
16093
|
login_hint?: string | undefined;
|
|
16094
|
-
screen_hint?: "
|
|
16094
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
16095
16095
|
};
|
|
16096
16096
|
};
|
|
16097
16097
|
output: {
|
|
@@ -16168,9 +16168,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16168
16168
|
request_uri?: string | undefined;
|
|
16169
16169
|
};
|
|
16170
16170
|
};
|
|
16171
|
-
output: {
|
|
16172
|
-
|
|
16173
|
-
|
|
16171
|
+
output: string | {
|
|
16172
|
+
access_token: string;
|
|
16173
|
+
token_type: string;
|
|
16174
|
+
expires_in: number;
|
|
16175
|
+
id_token?: string | undefined;
|
|
16176
|
+
scope?: string | undefined;
|
|
16177
|
+
state?: string | undefined;
|
|
16178
|
+
refresh_token?: string | undefined;
|
|
16179
|
+
};
|
|
16180
|
+
outputFormat: "json";
|
|
16181
|
+
status: 200;
|
|
16174
16182
|
} | {
|
|
16175
16183
|
input: {
|
|
16176
16184
|
query: {
|
|
@@ -16202,17 +16210,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16202
16210
|
request_uri?: string | undefined;
|
|
16203
16211
|
};
|
|
16204
16212
|
};
|
|
16205
|
-
output:
|
|
16206
|
-
|
|
16207
|
-
|
|
16208
|
-
expires_in: number;
|
|
16209
|
-
id_token?: string | undefined;
|
|
16210
|
-
scope?: string | undefined;
|
|
16211
|
-
state?: string | undefined;
|
|
16212
|
-
refresh_token?: string | undefined;
|
|
16213
|
-
};
|
|
16214
|
-
outputFormat: "json";
|
|
16215
|
-
status: 200;
|
|
16213
|
+
output: {};
|
|
16214
|
+
outputFormat: string;
|
|
16215
|
+
status: 302;
|
|
16216
16216
|
} | {
|
|
16217
16217
|
input: {
|
|
16218
16218
|
query: {
|
|
@@ -16368,19 +16368,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16368
16368
|
email: string;
|
|
16369
16369
|
send: "code" | "link";
|
|
16370
16370
|
authParams: {
|
|
16371
|
+
code_challenge?: string | undefined;
|
|
16372
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16373
|
+
redirect_uri?: string | undefined;
|
|
16374
|
+
nonce?: string | undefined;
|
|
16371
16375
|
state?: string | undefined;
|
|
16372
|
-
|
|
16376
|
+
act_as?: string | undefined;
|
|
16373
16377
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16374
16378
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16375
|
-
|
|
16376
|
-
username?: string | undefined;
|
|
16379
|
+
audience?: string | undefined;
|
|
16377
16380
|
organization?: string | undefined;
|
|
16378
|
-
|
|
16379
|
-
redirect_uri?: string | undefined;
|
|
16380
|
-
act_as?: string | undefined;
|
|
16381
|
+
scope?: string | undefined;
|
|
16381
16382
|
prompt?: string | undefined;
|
|
16382
|
-
|
|
16383
|
-
code_challenge?: string | undefined;
|
|
16383
|
+
username?: string | undefined;
|
|
16384
16384
|
ui_locales?: string | undefined;
|
|
16385
16385
|
max_age?: number | undefined;
|
|
16386
16386
|
acr_values?: string | undefined;
|
|
@@ -16404,19 +16404,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16404
16404
|
phone_number: string;
|
|
16405
16405
|
send: "code" | "link";
|
|
16406
16406
|
authParams: {
|
|
16407
|
+
code_challenge?: string | undefined;
|
|
16408
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16409
|
+
redirect_uri?: string | undefined;
|
|
16410
|
+
nonce?: string | undefined;
|
|
16407
16411
|
state?: string | undefined;
|
|
16408
|
-
|
|
16412
|
+
act_as?: string | undefined;
|
|
16409
16413
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16410
16414
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16411
|
-
|
|
16412
|
-
username?: string | undefined;
|
|
16415
|
+
audience?: string | undefined;
|
|
16413
16416
|
organization?: string | undefined;
|
|
16414
|
-
|
|
16415
|
-
redirect_uri?: string | undefined;
|
|
16416
|
-
act_as?: string | undefined;
|
|
16417
|
+
scope?: string | undefined;
|
|
16417
16418
|
prompt?: string | undefined;
|
|
16418
|
-
|
|
16419
|
-
code_challenge?: string | undefined;
|
|
16419
|
+
username?: string | undefined;
|
|
16420
16420
|
ui_locales?: string | undefined;
|
|
16421
16421
|
max_age?: number | undefined;
|
|
16422
16422
|
acr_values?: string | undefined;
|
|
@@ -16548,14 +16548,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16548
16548
|
input: {
|
|
16549
16549
|
form: {
|
|
16550
16550
|
token: string;
|
|
16551
|
-
token_type_hint?: "
|
|
16551
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
16552
16552
|
client_id?: string | undefined;
|
|
16553
16553
|
client_secret?: string | undefined;
|
|
16554
16554
|
};
|
|
16555
16555
|
} & {
|
|
16556
16556
|
json: {
|
|
16557
16557
|
token: string;
|
|
16558
|
-
token_type_hint?: "
|
|
16558
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
16559
16559
|
client_id?: string | undefined;
|
|
16560
16560
|
client_secret?: string | undefined;
|
|
16561
16561
|
};
|
|
@@ -16567,14 +16567,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16567
16567
|
input: {
|
|
16568
16568
|
form: {
|
|
16569
16569
|
token: string;
|
|
16570
|
-
token_type_hint?: "
|
|
16570
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
16571
16571
|
client_id?: string | undefined;
|
|
16572
16572
|
client_secret?: string | undefined;
|
|
16573
16573
|
};
|
|
16574
16574
|
} & {
|
|
16575
16575
|
json: {
|
|
16576
16576
|
token: string;
|
|
16577
|
-
token_type_hint?: "
|
|
16577
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
16578
16578
|
client_id?: string | undefined;
|
|
16579
16579
|
client_secret?: string | undefined;
|
|
16580
16580
|
};
|
|
@@ -16589,14 +16589,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16589
16589
|
input: {
|
|
16590
16590
|
form: {
|
|
16591
16591
|
token: string;
|
|
16592
|
-
token_type_hint?: "
|
|
16592
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
16593
16593
|
client_id?: string | undefined;
|
|
16594
16594
|
client_secret?: string | undefined;
|
|
16595
16595
|
};
|
|
16596
16596
|
} & {
|
|
16597
16597
|
json: {
|
|
16598
16598
|
token: string;
|
|
16599
|
-
token_type_hint?: "
|
|
16599
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
16600
16600
|
client_id?: string | undefined;
|
|
16601
16601
|
client_secret?: string | undefined;
|
|
16602
16602
|
};
|
|
@@ -16646,7 +16646,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16646
16646
|
client_id: string;
|
|
16647
16647
|
username: string;
|
|
16648
16648
|
otp: string;
|
|
16649
|
-
realm: "
|
|
16649
|
+
realm: "email" | "sms";
|
|
16650
16650
|
};
|
|
16651
16651
|
} & {
|
|
16652
16652
|
json: {
|
|
@@ -16682,7 +16682,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16682
16682
|
client_id: string;
|
|
16683
16683
|
username: string;
|
|
16684
16684
|
otp: string;
|
|
16685
|
-
realm: "
|
|
16685
|
+
realm: "email" | "sms";
|
|
16686
16686
|
};
|
|
16687
16687
|
};
|
|
16688
16688
|
output: {};
|
|
@@ -16723,7 +16723,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16723
16723
|
client_id: string;
|
|
16724
16724
|
username: string;
|
|
16725
16725
|
otp: string;
|
|
16726
|
-
realm: "
|
|
16726
|
+
realm: "email" | "sms";
|
|
16727
16727
|
};
|
|
16728
16728
|
} & {
|
|
16729
16729
|
json: {
|
|
@@ -16759,7 +16759,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16759
16759
|
client_id: string;
|
|
16760
16760
|
username: string;
|
|
16761
16761
|
otp: string;
|
|
16762
|
-
realm: "
|
|
16762
|
+
realm: "email" | "sms";
|
|
16763
16763
|
};
|
|
16764
16764
|
};
|
|
16765
16765
|
output: {
|
|
@@ -16808,7 +16808,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16808
16808
|
client_id: string;
|
|
16809
16809
|
username: string;
|
|
16810
16810
|
otp: string;
|
|
16811
|
-
realm: "
|
|
16811
|
+
realm: "email" | "sms";
|
|
16812
16812
|
};
|
|
16813
16813
|
} & {
|
|
16814
16814
|
json: {
|
|
@@ -16844,7 +16844,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16844
16844
|
client_id: string;
|
|
16845
16845
|
username: string;
|
|
16846
16846
|
otp: string;
|
|
16847
|
-
realm: "
|
|
16847
|
+
realm: "email" | "sms";
|
|
16848
16848
|
};
|
|
16849
16849
|
};
|
|
16850
16850
|
output: {
|
|
@@ -16888,7 +16888,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16888
16888
|
client_id: string;
|
|
16889
16889
|
username: string;
|
|
16890
16890
|
otp: string;
|
|
16891
|
-
realm: "
|
|
16891
|
+
realm: "email" | "sms";
|
|
16892
16892
|
};
|
|
16893
16893
|
} & {
|
|
16894
16894
|
json: {
|
|
@@ -16924,7 +16924,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16924
16924
|
client_id: string;
|
|
16925
16925
|
username: string;
|
|
16926
16926
|
otp: string;
|
|
16927
|
-
realm: "
|
|
16927
|
+
realm: "email" | "sms";
|
|
16928
16928
|
};
|
|
16929
16929
|
};
|
|
16930
16930
|
output: {
|
|
@@ -16968,7 +16968,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16968
16968
|
client_id: string;
|
|
16969
16969
|
username: string;
|
|
16970
16970
|
otp: string;
|
|
16971
|
-
realm: "
|
|
16971
|
+
realm: "email" | "sms";
|
|
16972
16972
|
};
|
|
16973
16973
|
} & {
|
|
16974
16974
|
json: {
|
|
@@ -17004,7 +17004,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17004
17004
|
client_id: string;
|
|
17005
17005
|
username: string;
|
|
17006
17006
|
otp: string;
|
|
17007
|
-
realm: "
|
|
17007
|
+
realm: "email" | "sms";
|
|
17008
17008
|
};
|
|
17009
17009
|
};
|
|
17010
17010
|
output: {
|
|
@@ -17177,7 +17177,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17177
17177
|
};
|
|
17178
17178
|
output: {};
|
|
17179
17179
|
outputFormat: string;
|
|
17180
|
-
status:
|
|
17180
|
+
status: 302;
|
|
17181
17181
|
} | {
|
|
17182
17182
|
input: {
|
|
17183
17183
|
query: {
|
|
@@ -17191,7 +17191,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17191
17191
|
};
|
|
17192
17192
|
output: {};
|
|
17193
17193
|
outputFormat: string;
|
|
17194
|
-
status:
|
|
17194
|
+
status: 200;
|
|
17195
17195
|
} | {
|
|
17196
17196
|
input: {
|
|
17197
17197
|
query: {
|
|
@@ -18163,7 +18163,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18163
18163
|
$get: {
|
|
18164
18164
|
input: {
|
|
18165
18165
|
param: {
|
|
18166
|
-
screen: "signup" | "
|
|
18166
|
+
screen: "signup" | "account" | "login" | "reset-password" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18167
18167
|
};
|
|
18168
18168
|
} & {
|
|
18169
18169
|
query: {
|
|
@@ -18179,7 +18179,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18179
18179
|
} | {
|
|
18180
18180
|
input: {
|
|
18181
18181
|
param: {
|
|
18182
|
-
screen: "signup" | "
|
|
18182
|
+
screen: "signup" | "account" | "login" | "reset-password" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18183
18183
|
};
|
|
18184
18184
|
} & {
|
|
18185
18185
|
query: {
|
|
@@ -18195,7 +18195,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18195
18195
|
} | {
|
|
18196
18196
|
input: {
|
|
18197
18197
|
param: {
|
|
18198
|
-
screen: "signup" | "
|
|
18198
|
+
screen: "signup" | "account" | "login" | "reset-password" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18199
18199
|
};
|
|
18200
18200
|
} & {
|
|
18201
18201
|
query: {
|
|
@@ -18215,7 +18215,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18215
18215
|
$post: {
|
|
18216
18216
|
input: {
|
|
18217
18217
|
param: {
|
|
18218
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "
|
|
18218
|
+
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18219
18219
|
};
|
|
18220
18220
|
} & {
|
|
18221
18221
|
query: {
|
|
@@ -18233,7 +18233,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18233
18233
|
} | {
|
|
18234
18234
|
input: {
|
|
18235
18235
|
param: {
|
|
18236
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "
|
|
18236
|
+
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18237
18237
|
};
|
|
18238
18238
|
} & {
|
|
18239
18239
|
query: {
|
|
@@ -18251,7 +18251,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18251
18251
|
} | {
|
|
18252
18252
|
input: {
|
|
18253
18253
|
param: {
|
|
18254
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "
|
|
18254
|
+
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18255
18255
|
};
|
|
18256
18256
|
} & {
|
|
18257
18257
|
query: {
|