authhero 5.9.0 → 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 +135 -135
- package/dist/authhero.d.ts +335 -104
- package/dist/authhero.mjs +16339 -16678
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/index.d.ts +335 -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 +73 -6
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/users-by-email.d.ts +69 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +168 -4
- package/dist/types/routes/universal-login/u2-routes.d.ts +168 -4
- package/dist/types/utils/define-route.d.ts +20 -0
- package/package.json +6 -6
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;
|
|
@@ -12447,9 +12447,76 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12447
12447
|
"tenant-id"?: string | undefined;
|
|
12448
12448
|
};
|
|
12449
12449
|
};
|
|
12450
|
-
output:
|
|
12450
|
+
output: {
|
|
12451
|
+
connection: string;
|
|
12452
|
+
email_verified: boolean;
|
|
12453
|
+
created_at: string;
|
|
12454
|
+
updated_at: string;
|
|
12455
|
+
user_id: string;
|
|
12456
|
+
provider: string;
|
|
12457
|
+
is_social: boolean;
|
|
12458
|
+
login_count: number;
|
|
12459
|
+
name?: string | undefined;
|
|
12460
|
+
username?: string | undefined;
|
|
12461
|
+
given_name?: string | undefined;
|
|
12462
|
+
phone_number?: string | undefined;
|
|
12463
|
+
phone_verified?: boolean | undefined;
|
|
12464
|
+
family_name?: string | undefined;
|
|
12465
|
+
profileData?: string | undefined;
|
|
12466
|
+
address?: {
|
|
12467
|
+
formatted?: string | undefined;
|
|
12468
|
+
street_address?: string | undefined;
|
|
12469
|
+
locality?: string | undefined;
|
|
12470
|
+
region?: string | undefined;
|
|
12471
|
+
postal_code?: string | undefined;
|
|
12472
|
+
country?: string | undefined;
|
|
12473
|
+
} | undefined;
|
|
12474
|
+
nickname?: string | undefined;
|
|
12475
|
+
picture?: string | undefined;
|
|
12476
|
+
locale?: string | undefined;
|
|
12477
|
+
linked_to?: string | undefined;
|
|
12478
|
+
app_metadata?: any;
|
|
12479
|
+
user_metadata?: any;
|
|
12480
|
+
middle_name?: string | undefined;
|
|
12481
|
+
preferred_username?: string | undefined;
|
|
12482
|
+
profile?: string | undefined;
|
|
12483
|
+
website?: string | undefined;
|
|
12484
|
+
gender?: string | undefined;
|
|
12485
|
+
birthdate?: string | undefined;
|
|
12486
|
+
zoneinfo?: string | undefined;
|
|
12487
|
+
verify_email?: boolean | undefined;
|
|
12488
|
+
last_ip?: string | undefined;
|
|
12489
|
+
last_login?: string | undefined;
|
|
12490
|
+
registration_completed_at?: string | undefined;
|
|
12491
|
+
email?: string | undefined;
|
|
12492
|
+
identities?: {
|
|
12493
|
+
connection: string;
|
|
12494
|
+
user_id: string;
|
|
12495
|
+
provider: string;
|
|
12496
|
+
isSocial: boolean;
|
|
12497
|
+
email?: string | undefined;
|
|
12498
|
+
email_verified?: boolean | undefined;
|
|
12499
|
+
phone_number?: string | undefined;
|
|
12500
|
+
phone_verified?: boolean | undefined;
|
|
12501
|
+
username?: string | undefined;
|
|
12502
|
+
access_token?: string | undefined;
|
|
12503
|
+
access_token_secret?: string | undefined;
|
|
12504
|
+
refresh_token?: string | undefined;
|
|
12505
|
+
profileData?: {
|
|
12506
|
+
[x: string]: any;
|
|
12507
|
+
email?: string | undefined;
|
|
12508
|
+
email_verified?: boolean | undefined;
|
|
12509
|
+
name?: string | undefined;
|
|
12510
|
+
username?: string | undefined;
|
|
12511
|
+
given_name?: string | undefined;
|
|
12512
|
+
phone_number?: string | undefined;
|
|
12513
|
+
phone_verified?: boolean | undefined;
|
|
12514
|
+
family_name?: string | undefined;
|
|
12515
|
+
} | undefined;
|
|
12516
|
+
}[] | undefined;
|
|
12517
|
+
}[];
|
|
12451
12518
|
outputFormat: "json";
|
|
12452
|
-
status:
|
|
12519
|
+
status: 200;
|
|
12453
12520
|
};
|
|
12454
12521
|
};
|
|
12455
12522
|
}, "/users-by-email"> & hono_types.MergeSchemaPath<{
|
|
@@ -13278,7 +13345,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13278
13345
|
};
|
|
13279
13346
|
};
|
|
13280
13347
|
output: {
|
|
13281
|
-
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";
|
|
13282
13349
|
date: string;
|
|
13283
13350
|
isMobile: boolean;
|
|
13284
13351
|
log_id: string;
|
|
@@ -13317,7 +13384,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13317
13384
|
limit: number;
|
|
13318
13385
|
length: number;
|
|
13319
13386
|
logs: {
|
|
13320
|
-
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";
|
|
13321
13388
|
date: string;
|
|
13322
13389
|
isMobile: boolean;
|
|
13323
13390
|
log_id: string;
|
|
@@ -13632,7 +13699,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13632
13699
|
};
|
|
13633
13700
|
} & {
|
|
13634
13701
|
json: {
|
|
13635
|
-
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";
|
|
13636
13703
|
body: string;
|
|
13637
13704
|
from: string;
|
|
13638
13705
|
subject: string;
|
|
@@ -13653,7 +13720,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13653
13720
|
};
|
|
13654
13721
|
} & {
|
|
13655
13722
|
json: {
|
|
13656
|
-
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";
|
|
13657
13724
|
body: string;
|
|
13658
13725
|
from: string;
|
|
13659
13726
|
subject: string;
|
|
@@ -13665,7 +13732,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13665
13732
|
};
|
|
13666
13733
|
};
|
|
13667
13734
|
output: {
|
|
13668
|
-
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";
|
|
13669
13736
|
body: string;
|
|
13670
13737
|
from: string;
|
|
13671
13738
|
subject: string;
|
|
@@ -13684,7 +13751,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13684
13751
|
$get: {
|
|
13685
13752
|
input: {
|
|
13686
13753
|
param: {
|
|
13687
|
-
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";
|
|
13688
13755
|
};
|
|
13689
13756
|
} & {
|
|
13690
13757
|
header: {
|
|
@@ -13697,7 +13764,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13697
13764
|
} | {
|
|
13698
13765
|
input: {
|
|
13699
13766
|
param: {
|
|
13700
|
-
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";
|
|
13701
13768
|
};
|
|
13702
13769
|
} & {
|
|
13703
13770
|
header: {
|
|
@@ -13705,7 +13772,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13705
13772
|
};
|
|
13706
13773
|
};
|
|
13707
13774
|
output: {
|
|
13708
|
-
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";
|
|
13709
13776
|
body: string;
|
|
13710
13777
|
from: string;
|
|
13711
13778
|
subject: string;
|
|
@@ -13724,7 +13791,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13724
13791
|
$put: {
|
|
13725
13792
|
input: {
|
|
13726
13793
|
param: {
|
|
13727
|
-
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";
|
|
13728
13795
|
};
|
|
13729
13796
|
} & {
|
|
13730
13797
|
header: {
|
|
@@ -13732,7 +13799,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13732
13799
|
};
|
|
13733
13800
|
} & {
|
|
13734
13801
|
json: {
|
|
13735
|
-
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";
|
|
13736
13803
|
body: string;
|
|
13737
13804
|
from: string;
|
|
13738
13805
|
subject: string;
|
|
@@ -13744,7 +13811,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13744
13811
|
};
|
|
13745
13812
|
};
|
|
13746
13813
|
output: {
|
|
13747
|
-
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";
|
|
13748
13815
|
body: string;
|
|
13749
13816
|
from: string;
|
|
13750
13817
|
subject: string;
|
|
@@ -13763,7 +13830,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13763
13830
|
$patch: {
|
|
13764
13831
|
input: {
|
|
13765
13832
|
param: {
|
|
13766
|
-
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";
|
|
13767
13834
|
};
|
|
13768
13835
|
} & {
|
|
13769
13836
|
header: {
|
|
@@ -13771,7 +13838,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13771
13838
|
};
|
|
13772
13839
|
} & {
|
|
13773
13840
|
json: {
|
|
13774
|
-
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;
|
|
13775
13842
|
body?: string | undefined;
|
|
13776
13843
|
from?: string | undefined;
|
|
13777
13844
|
subject?: string | undefined;
|
|
@@ -13788,7 +13855,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13788
13855
|
} | {
|
|
13789
13856
|
input: {
|
|
13790
13857
|
param: {
|
|
13791
|
-
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";
|
|
13792
13859
|
};
|
|
13793
13860
|
} & {
|
|
13794
13861
|
header: {
|
|
@@ -13796,7 +13863,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13796
13863
|
};
|
|
13797
13864
|
} & {
|
|
13798
13865
|
json: {
|
|
13799
|
-
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;
|
|
13800
13867
|
body?: string | undefined;
|
|
13801
13868
|
from?: string | undefined;
|
|
13802
13869
|
subject?: string | undefined;
|
|
@@ -13808,7 +13875,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13808
13875
|
};
|
|
13809
13876
|
};
|
|
13810
13877
|
output: {
|
|
13811
|
-
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";
|
|
13812
13879
|
body: string;
|
|
13813
13880
|
from: string;
|
|
13814
13881
|
subject: string;
|
|
@@ -14854,7 +14921,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14854
14921
|
output: {
|
|
14855
14922
|
id: string;
|
|
14856
14923
|
trigger_id: string;
|
|
14857
|
-
status: "
|
|
14924
|
+
status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
|
|
14858
14925
|
results: {
|
|
14859
14926
|
action_name: string;
|
|
14860
14927
|
error: {
|
|
@@ -15866,7 +15933,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15866
15933
|
scope?: string | undefined;
|
|
15867
15934
|
grant_types?: string[] | undefined;
|
|
15868
15935
|
response_types?: string[] | undefined;
|
|
15869
|
-
token_endpoint_auth_method?: "
|
|
15936
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
15870
15937
|
jwks_uri?: string | undefined;
|
|
15871
15938
|
jwks?: Record<string, unknown> | undefined;
|
|
15872
15939
|
software_id?: string | undefined;
|
|
@@ -15955,7 +16022,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15955
16022
|
scope?: string | undefined;
|
|
15956
16023
|
grant_types?: string[] | undefined;
|
|
15957
16024
|
response_types?: string[] | undefined;
|
|
15958
|
-
token_endpoint_auth_method?: "
|
|
16025
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
15959
16026
|
jwks_uri?: string | undefined;
|
|
15960
16027
|
jwks?: Record<string, unknown> | undefined;
|
|
15961
16028
|
software_id?: string | undefined;
|
|
@@ -16012,7 +16079,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16012
16079
|
client_id: string;
|
|
16013
16080
|
redirect_url?: string | undefined;
|
|
16014
16081
|
login_hint?: string | undefined;
|
|
16015
|
-
screen_hint?: "
|
|
16082
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
16016
16083
|
};
|
|
16017
16084
|
};
|
|
16018
16085
|
output: {};
|
|
@@ -16024,7 +16091,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16024
16091
|
client_id: string;
|
|
16025
16092
|
redirect_url?: string | undefined;
|
|
16026
16093
|
login_hint?: string | undefined;
|
|
16027
|
-
screen_hint?: "
|
|
16094
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
16028
16095
|
};
|
|
16029
16096
|
};
|
|
16030
16097
|
output: {
|
|
@@ -16101,9 +16168,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16101
16168
|
request_uri?: string | undefined;
|
|
16102
16169
|
};
|
|
16103
16170
|
};
|
|
16104
|
-
output: {
|
|
16105
|
-
|
|
16106
|
-
|
|
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;
|
|
16107
16182
|
} | {
|
|
16108
16183
|
input: {
|
|
16109
16184
|
query: {
|
|
@@ -16135,17 +16210,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16135
16210
|
request_uri?: string | undefined;
|
|
16136
16211
|
};
|
|
16137
16212
|
};
|
|
16138
|
-
output:
|
|
16139
|
-
|
|
16140
|
-
|
|
16141
|
-
expires_in: number;
|
|
16142
|
-
id_token?: string | undefined;
|
|
16143
|
-
scope?: string | undefined;
|
|
16144
|
-
state?: string | undefined;
|
|
16145
|
-
refresh_token?: string | undefined;
|
|
16146
|
-
};
|
|
16147
|
-
outputFormat: "json";
|
|
16148
|
-
status: 200;
|
|
16213
|
+
output: {};
|
|
16214
|
+
outputFormat: string;
|
|
16215
|
+
status: 302;
|
|
16149
16216
|
} | {
|
|
16150
16217
|
input: {
|
|
16151
16218
|
query: {
|
|
@@ -16301,19 +16368,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16301
16368
|
email: string;
|
|
16302
16369
|
send: "code" | "link";
|
|
16303
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;
|
|
16304
16375
|
state?: string | undefined;
|
|
16305
|
-
|
|
16376
|
+
act_as?: string | undefined;
|
|
16306
16377
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16307
16378
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16308
|
-
|
|
16309
|
-
username?: string | undefined;
|
|
16379
|
+
audience?: string | undefined;
|
|
16310
16380
|
organization?: string | undefined;
|
|
16311
|
-
|
|
16312
|
-
redirect_uri?: string | undefined;
|
|
16313
|
-
act_as?: string | undefined;
|
|
16381
|
+
scope?: string | undefined;
|
|
16314
16382
|
prompt?: string | undefined;
|
|
16315
|
-
|
|
16316
|
-
code_challenge?: string | undefined;
|
|
16383
|
+
username?: string | undefined;
|
|
16317
16384
|
ui_locales?: string | undefined;
|
|
16318
16385
|
max_age?: number | undefined;
|
|
16319
16386
|
acr_values?: string | undefined;
|
|
@@ -16337,19 +16404,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16337
16404
|
phone_number: string;
|
|
16338
16405
|
send: "code" | "link";
|
|
16339
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;
|
|
16340
16411
|
state?: string | undefined;
|
|
16341
|
-
|
|
16412
|
+
act_as?: string | undefined;
|
|
16342
16413
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16343
16414
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16344
|
-
|
|
16345
|
-
username?: string | undefined;
|
|
16415
|
+
audience?: string | undefined;
|
|
16346
16416
|
organization?: string | undefined;
|
|
16347
|
-
|
|
16348
|
-
redirect_uri?: string | undefined;
|
|
16349
|
-
act_as?: string | undefined;
|
|
16417
|
+
scope?: string | undefined;
|
|
16350
16418
|
prompt?: string | undefined;
|
|
16351
|
-
|
|
16352
|
-
code_challenge?: string | undefined;
|
|
16419
|
+
username?: string | undefined;
|
|
16353
16420
|
ui_locales?: string | undefined;
|
|
16354
16421
|
max_age?: number | undefined;
|
|
16355
16422
|
acr_values?: string | undefined;
|
|
@@ -16481,14 +16548,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16481
16548
|
input: {
|
|
16482
16549
|
form: {
|
|
16483
16550
|
token: string;
|
|
16484
|
-
token_type_hint?: "
|
|
16551
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
16485
16552
|
client_id?: string | undefined;
|
|
16486
16553
|
client_secret?: string | undefined;
|
|
16487
16554
|
};
|
|
16488
16555
|
} & {
|
|
16489
16556
|
json: {
|
|
16490
16557
|
token: string;
|
|
16491
|
-
token_type_hint?: "
|
|
16558
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
16492
16559
|
client_id?: string | undefined;
|
|
16493
16560
|
client_secret?: string | undefined;
|
|
16494
16561
|
};
|
|
@@ -16500,14 +16567,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16500
16567
|
input: {
|
|
16501
16568
|
form: {
|
|
16502
16569
|
token: string;
|
|
16503
|
-
token_type_hint?: "
|
|
16570
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
16504
16571
|
client_id?: string | undefined;
|
|
16505
16572
|
client_secret?: string | undefined;
|
|
16506
16573
|
};
|
|
16507
16574
|
} & {
|
|
16508
16575
|
json: {
|
|
16509
16576
|
token: string;
|
|
16510
|
-
token_type_hint?: "
|
|
16577
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
16511
16578
|
client_id?: string | undefined;
|
|
16512
16579
|
client_secret?: string | undefined;
|
|
16513
16580
|
};
|
|
@@ -16522,14 +16589,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16522
16589
|
input: {
|
|
16523
16590
|
form: {
|
|
16524
16591
|
token: string;
|
|
16525
|
-
token_type_hint?: "
|
|
16592
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
16526
16593
|
client_id?: string | undefined;
|
|
16527
16594
|
client_secret?: string | undefined;
|
|
16528
16595
|
};
|
|
16529
16596
|
} & {
|
|
16530
16597
|
json: {
|
|
16531
16598
|
token: string;
|
|
16532
|
-
token_type_hint?: "
|
|
16599
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
16533
16600
|
client_id?: string | undefined;
|
|
16534
16601
|
client_secret?: string | undefined;
|
|
16535
16602
|
};
|
|
@@ -16579,7 +16646,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16579
16646
|
client_id: string;
|
|
16580
16647
|
username: string;
|
|
16581
16648
|
otp: string;
|
|
16582
|
-
realm: "
|
|
16649
|
+
realm: "email" | "sms";
|
|
16583
16650
|
};
|
|
16584
16651
|
} & {
|
|
16585
16652
|
json: {
|
|
@@ -16615,7 +16682,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16615
16682
|
client_id: string;
|
|
16616
16683
|
username: string;
|
|
16617
16684
|
otp: string;
|
|
16618
|
-
realm: "
|
|
16685
|
+
realm: "email" | "sms";
|
|
16619
16686
|
};
|
|
16620
16687
|
};
|
|
16621
16688
|
output: {};
|
|
@@ -16656,7 +16723,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16656
16723
|
client_id: string;
|
|
16657
16724
|
username: string;
|
|
16658
16725
|
otp: string;
|
|
16659
|
-
realm: "
|
|
16726
|
+
realm: "email" | "sms";
|
|
16660
16727
|
};
|
|
16661
16728
|
} & {
|
|
16662
16729
|
json: {
|
|
@@ -16692,7 +16759,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16692
16759
|
client_id: string;
|
|
16693
16760
|
username: string;
|
|
16694
16761
|
otp: string;
|
|
16695
|
-
realm: "
|
|
16762
|
+
realm: "email" | "sms";
|
|
16696
16763
|
};
|
|
16697
16764
|
};
|
|
16698
16765
|
output: {
|
|
@@ -16741,7 +16808,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16741
16808
|
client_id: string;
|
|
16742
16809
|
username: string;
|
|
16743
16810
|
otp: string;
|
|
16744
|
-
realm: "
|
|
16811
|
+
realm: "email" | "sms";
|
|
16745
16812
|
};
|
|
16746
16813
|
} & {
|
|
16747
16814
|
json: {
|
|
@@ -16777,7 +16844,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16777
16844
|
client_id: string;
|
|
16778
16845
|
username: string;
|
|
16779
16846
|
otp: string;
|
|
16780
|
-
realm: "
|
|
16847
|
+
realm: "email" | "sms";
|
|
16781
16848
|
};
|
|
16782
16849
|
};
|
|
16783
16850
|
output: {
|
|
@@ -16821,7 +16888,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16821
16888
|
client_id: string;
|
|
16822
16889
|
username: string;
|
|
16823
16890
|
otp: string;
|
|
16824
|
-
realm: "
|
|
16891
|
+
realm: "email" | "sms";
|
|
16825
16892
|
};
|
|
16826
16893
|
} & {
|
|
16827
16894
|
json: {
|
|
@@ -16857,7 +16924,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16857
16924
|
client_id: string;
|
|
16858
16925
|
username: string;
|
|
16859
16926
|
otp: string;
|
|
16860
|
-
realm: "
|
|
16927
|
+
realm: "email" | "sms";
|
|
16861
16928
|
};
|
|
16862
16929
|
};
|
|
16863
16930
|
output: {
|
|
@@ -16901,7 +16968,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16901
16968
|
client_id: string;
|
|
16902
16969
|
username: string;
|
|
16903
16970
|
otp: string;
|
|
16904
|
-
realm: "
|
|
16971
|
+
realm: "email" | "sms";
|
|
16905
16972
|
};
|
|
16906
16973
|
} & {
|
|
16907
16974
|
json: {
|
|
@@ -16937,7 +17004,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16937
17004
|
client_id: string;
|
|
16938
17005
|
username: string;
|
|
16939
17006
|
otp: string;
|
|
16940
|
-
realm: "
|
|
17007
|
+
realm: "email" | "sms";
|
|
16941
17008
|
};
|
|
16942
17009
|
};
|
|
16943
17010
|
output: {
|
|
@@ -17110,7 +17177,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17110
17177
|
};
|
|
17111
17178
|
output: {};
|
|
17112
17179
|
outputFormat: string;
|
|
17113
|
-
status:
|
|
17180
|
+
status: 302;
|
|
17114
17181
|
} | {
|
|
17115
17182
|
input: {
|
|
17116
17183
|
query: {
|
|
@@ -17124,7 +17191,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17124
17191
|
};
|
|
17125
17192
|
output: {};
|
|
17126
17193
|
outputFormat: string;
|
|
17127
|
-
status:
|
|
17194
|
+
status: 200;
|
|
17128
17195
|
} | {
|
|
17129
17196
|
input: {
|
|
17130
17197
|
query: {
|
|
@@ -17968,11 +18035,35 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17968
18035
|
Bindings: Bindings;
|
|
17969
18036
|
Variables: Variables;
|
|
17970
18037
|
}, hono_types.MergeSchemaPath<{
|
|
17971
|
-
|
|
18038
|
+
"/guardian/enroll": {
|
|
17972
18039
|
$get: {
|
|
17973
18040
|
input: {
|
|
17974
18041
|
query: {
|
|
17975
|
-
|
|
18042
|
+
ticket: string;
|
|
18043
|
+
};
|
|
18044
|
+
};
|
|
18045
|
+
output: Response;
|
|
18046
|
+
outputFormat: "json";
|
|
18047
|
+
status: hono_utils_http_status.StatusCode;
|
|
18048
|
+
} | {
|
|
18049
|
+
input: {
|
|
18050
|
+
query: {
|
|
18051
|
+
ticket: string;
|
|
18052
|
+
};
|
|
18053
|
+
};
|
|
18054
|
+
output: {};
|
|
18055
|
+
outputFormat: string;
|
|
18056
|
+
status: 302;
|
|
18057
|
+
};
|
|
18058
|
+
};
|
|
18059
|
+
} & {
|
|
18060
|
+
"/accept-invitation": {
|
|
18061
|
+
$get: {
|
|
18062
|
+
input: {
|
|
18063
|
+
query: {
|
|
18064
|
+
invitation?: string | undefined;
|
|
18065
|
+
organization?: string | undefined;
|
|
18066
|
+
state?: string | undefined;
|
|
17976
18067
|
error?: string | undefined;
|
|
17977
18068
|
error_description?: string | undefined;
|
|
17978
18069
|
ui_locales?: string | undefined;
|
|
@@ -17981,10 +18072,24 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17981
18072
|
output: Response;
|
|
17982
18073
|
outputFormat: "json";
|
|
17983
18074
|
status: hono_utils_http_status.StatusCode;
|
|
18075
|
+
} | {
|
|
18076
|
+
input: {
|
|
18077
|
+
query: {
|
|
18078
|
+
invitation?: string | undefined;
|
|
18079
|
+
organization?: string | undefined;
|
|
18080
|
+
state?: string | undefined;
|
|
18081
|
+
error?: string | undefined;
|
|
18082
|
+
error_description?: string | undefined;
|
|
18083
|
+
ui_locales?: string | undefined;
|
|
18084
|
+
};
|
|
18085
|
+
};
|
|
18086
|
+
output: {};
|
|
18087
|
+
outputFormat: string;
|
|
18088
|
+
status: 302;
|
|
17984
18089
|
};
|
|
17985
18090
|
};
|
|
17986
18091
|
} & {
|
|
17987
|
-
|
|
18092
|
+
"/accept-invitation": {
|
|
17988
18093
|
$post: {
|
|
17989
18094
|
input: {
|
|
17990
18095
|
query: {
|
|
@@ -18016,11 +18121,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18016
18121
|
};
|
|
18017
18122
|
};
|
|
18018
18123
|
} & {
|
|
18019
|
-
"/
|
|
18124
|
+
"/tickets/email-verification": {
|
|
18020
18125
|
$get: {
|
|
18021
18126
|
input: {
|
|
18022
18127
|
query: {
|
|
18023
18128
|
ticket: string;
|
|
18129
|
+
tenant_id?: string | undefined;
|
|
18024
18130
|
};
|
|
18025
18131
|
};
|
|
18026
18132
|
output: Response;
|
|
@@ -18030,11 +18136,136 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18030
18136
|
input: {
|
|
18031
18137
|
query: {
|
|
18032
18138
|
ticket: string;
|
|
18139
|
+
tenant_id?: string | undefined;
|
|
18140
|
+
};
|
|
18141
|
+
};
|
|
18142
|
+
output: {};
|
|
18143
|
+
outputFormat: string;
|
|
18144
|
+
status: 302;
|
|
18145
|
+
};
|
|
18146
|
+
};
|
|
18147
|
+
} & {
|
|
18148
|
+
"/tickets/password-change": {
|
|
18149
|
+
$get: {
|
|
18150
|
+
input: {
|
|
18151
|
+
query: {
|
|
18152
|
+
ticket: string;
|
|
18153
|
+
tenant_id?: string | undefined;
|
|
18154
|
+
};
|
|
18155
|
+
};
|
|
18156
|
+
output: {};
|
|
18157
|
+
outputFormat: string;
|
|
18158
|
+
status: 302;
|
|
18159
|
+
};
|
|
18160
|
+
};
|
|
18161
|
+
} & {
|
|
18162
|
+
"/:screen{.+}": {
|
|
18163
|
+
$get: {
|
|
18164
|
+
input: {
|
|
18165
|
+
param: {
|
|
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
|
+
};
|
|
18168
|
+
} & {
|
|
18169
|
+
query: {
|
|
18170
|
+
state: string;
|
|
18171
|
+
error?: string | undefined;
|
|
18172
|
+
error_description?: string | undefined;
|
|
18173
|
+
ui_locales?: string | undefined;
|
|
18174
|
+
};
|
|
18175
|
+
};
|
|
18176
|
+
output: Response;
|
|
18177
|
+
outputFormat: "json";
|
|
18178
|
+
status: hono_utils_http_status.StatusCode;
|
|
18179
|
+
} | {
|
|
18180
|
+
input: {
|
|
18181
|
+
param: {
|
|
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
|
+
};
|
|
18184
|
+
} & {
|
|
18185
|
+
query: {
|
|
18186
|
+
state: string;
|
|
18187
|
+
error?: string | undefined;
|
|
18188
|
+
error_description?: string | undefined;
|
|
18189
|
+
ui_locales?: string | undefined;
|
|
18190
|
+
};
|
|
18191
|
+
};
|
|
18192
|
+
output: {};
|
|
18193
|
+
outputFormat: string;
|
|
18194
|
+
status: 302;
|
|
18195
|
+
} | {
|
|
18196
|
+
input: {
|
|
18197
|
+
param: {
|
|
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
|
+
};
|
|
18200
|
+
} & {
|
|
18201
|
+
query: {
|
|
18202
|
+
state: string;
|
|
18203
|
+
error?: string | undefined;
|
|
18204
|
+
error_description?: string | undefined;
|
|
18205
|
+
ui_locales?: string | undefined;
|
|
18206
|
+
};
|
|
18207
|
+
};
|
|
18208
|
+
output: {};
|
|
18209
|
+
outputFormat: string;
|
|
18210
|
+
status: 400;
|
|
18211
|
+
};
|
|
18212
|
+
};
|
|
18213
|
+
} & {
|
|
18214
|
+
"/:screen{.+}": {
|
|
18215
|
+
$post: {
|
|
18216
|
+
input: {
|
|
18217
|
+
param: {
|
|
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
|
+
};
|
|
18220
|
+
} & {
|
|
18221
|
+
query: {
|
|
18222
|
+
state: string;
|
|
18223
|
+
error?: string | undefined;
|
|
18224
|
+
error_description?: string | undefined;
|
|
18225
|
+
ui_locales?: string | undefined;
|
|
18033
18226
|
};
|
|
18227
|
+
} & {
|
|
18228
|
+
form: Record<string, string>;
|
|
18229
|
+
};
|
|
18230
|
+
output: Response;
|
|
18231
|
+
outputFormat: "json";
|
|
18232
|
+
status: hono_utils_http_status.StatusCode;
|
|
18233
|
+
} | {
|
|
18234
|
+
input: {
|
|
18235
|
+
param: {
|
|
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
|
+
};
|
|
18238
|
+
} & {
|
|
18239
|
+
query: {
|
|
18240
|
+
state: string;
|
|
18241
|
+
error?: string | undefined;
|
|
18242
|
+
error_description?: string | undefined;
|
|
18243
|
+
ui_locales?: string | undefined;
|
|
18244
|
+
};
|
|
18245
|
+
} & {
|
|
18246
|
+
form: Record<string, string>;
|
|
18034
18247
|
};
|
|
18035
18248
|
output: {};
|
|
18036
18249
|
outputFormat: string;
|
|
18037
18250
|
status: 302;
|
|
18251
|
+
} | {
|
|
18252
|
+
input: {
|
|
18253
|
+
param: {
|
|
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
|
+
};
|
|
18256
|
+
} & {
|
|
18257
|
+
query: {
|
|
18258
|
+
state: string;
|
|
18259
|
+
error?: string | undefined;
|
|
18260
|
+
error_description?: string | undefined;
|
|
18261
|
+
ui_locales?: string | undefined;
|
|
18262
|
+
};
|
|
18263
|
+
} & {
|
|
18264
|
+
form: Record<string, string>;
|
|
18265
|
+
};
|
|
18266
|
+
output: {};
|
|
18267
|
+
outputFormat: string;
|
|
18268
|
+
status: 400;
|
|
18038
18269
|
};
|
|
18039
18270
|
};
|
|
18040
18271
|
}, "/"> & hono_types.MergeSchemaPath<{
|