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/types/index.d.ts
CHANGED
|
@@ -79,7 +79,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
79
79
|
};
|
|
80
80
|
} & {
|
|
81
81
|
json: {
|
|
82
|
-
type: "
|
|
82
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
83
83
|
phone_number?: string | undefined;
|
|
84
84
|
totp_secret?: string | undefined;
|
|
85
85
|
credential_id?: string | undefined;
|
|
@@ -219,7 +219,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
219
219
|
};
|
|
220
220
|
};
|
|
221
221
|
output: {
|
|
222
|
-
name: "
|
|
222
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
223
223
|
enabled: boolean;
|
|
224
224
|
trial_expired?: boolean | undefined;
|
|
225
225
|
}[];
|
|
@@ -374,7 +374,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
374
374
|
$get: {
|
|
375
375
|
input: {
|
|
376
376
|
param: {
|
|
377
|
-
factor_name: "
|
|
377
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
378
378
|
};
|
|
379
379
|
} & {
|
|
380
380
|
header: {
|
|
@@ -382,7 +382,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
382
382
|
};
|
|
383
383
|
};
|
|
384
384
|
output: {
|
|
385
|
-
name: "
|
|
385
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
386
386
|
enabled: boolean;
|
|
387
387
|
trial_expired?: boolean | undefined;
|
|
388
388
|
};
|
|
@@ -395,7 +395,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
395
395
|
$put: {
|
|
396
396
|
input: {
|
|
397
397
|
param: {
|
|
398
|
-
factor_name: "
|
|
398
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
399
399
|
};
|
|
400
400
|
} & {
|
|
401
401
|
header: {
|
|
@@ -407,7 +407,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
407
407
|
};
|
|
408
408
|
};
|
|
409
409
|
output: {
|
|
410
|
-
name: "
|
|
410
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
411
411
|
enabled: boolean;
|
|
412
412
|
trial_expired?: boolean | undefined;
|
|
413
413
|
};
|
|
@@ -1116,10 +1116,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1116
1116
|
invitee: {
|
|
1117
1117
|
email?: string | undefined;
|
|
1118
1118
|
};
|
|
1119
|
+
connection_id?: string | undefined;
|
|
1119
1120
|
id?: string | undefined;
|
|
1120
1121
|
app_metadata?: Record<string, any> | undefined;
|
|
1121
1122
|
user_metadata?: Record<string, any> | undefined;
|
|
1122
|
-
connection_id?: string | undefined;
|
|
1123
1123
|
roles?: string[] | undefined;
|
|
1124
1124
|
ttl_sec?: number | undefined;
|
|
1125
1125
|
send_invitation_email?: boolean | undefined;
|
|
@@ -1971,7 +1971,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1971
1971
|
type: "REDIRECT";
|
|
1972
1972
|
action: "REDIRECT_USER";
|
|
1973
1973
|
params: {
|
|
1974
|
-
target: "custom" | "
|
|
1974
|
+
target: "custom" | "account" | "change-email";
|
|
1975
1975
|
custom_url?: string | undefined;
|
|
1976
1976
|
};
|
|
1977
1977
|
alias?: string | undefined;
|
|
@@ -2024,7 +2024,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2024
2024
|
type: "REDIRECT";
|
|
2025
2025
|
action: "REDIRECT_USER";
|
|
2026
2026
|
params: {
|
|
2027
|
-
target: "custom" | "
|
|
2027
|
+
target: "custom" | "account" | "change-email";
|
|
2028
2028
|
custom_url?: string | undefined;
|
|
2029
2029
|
};
|
|
2030
2030
|
alias?: string | undefined;
|
|
@@ -2092,7 +2092,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2092
2092
|
type: "REDIRECT";
|
|
2093
2093
|
action: "REDIRECT_USER";
|
|
2094
2094
|
params: {
|
|
2095
|
-
target: "custom" | "
|
|
2095
|
+
target: "custom" | "account" | "change-email";
|
|
2096
2096
|
custom_url?: string | undefined;
|
|
2097
2097
|
};
|
|
2098
2098
|
alias?: string | undefined;
|
|
@@ -2173,7 +2173,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2173
2173
|
type: "REDIRECT";
|
|
2174
2174
|
action: "REDIRECT_USER";
|
|
2175
2175
|
params: {
|
|
2176
|
-
target: "custom" | "
|
|
2176
|
+
target: "custom" | "account" | "change-email";
|
|
2177
2177
|
custom_url?: string | undefined;
|
|
2178
2178
|
};
|
|
2179
2179
|
alias?: string | undefined;
|
|
@@ -2221,7 +2221,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2221
2221
|
type: "REDIRECT";
|
|
2222
2222
|
action: "REDIRECT_USER";
|
|
2223
2223
|
params: {
|
|
2224
|
-
target: "custom" | "
|
|
2224
|
+
target: "custom" | "account" | "change-email";
|
|
2225
2225
|
custom_url?: string | undefined;
|
|
2226
2226
|
};
|
|
2227
2227
|
alias?: string | undefined;
|
|
@@ -2281,7 +2281,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2281
2281
|
type: "REDIRECT";
|
|
2282
2282
|
action: "REDIRECT_USER";
|
|
2283
2283
|
params: {
|
|
2284
|
-
target: "custom" | "
|
|
2284
|
+
target: "custom" | "account" | "change-email";
|
|
2285
2285
|
custom_url?: string | undefined;
|
|
2286
2286
|
};
|
|
2287
2287
|
alias?: string | undefined;
|
|
@@ -2329,7 +2329,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2329
2329
|
type: "REDIRECT";
|
|
2330
2330
|
action: "REDIRECT_USER";
|
|
2331
2331
|
params: {
|
|
2332
|
-
target: "custom" | "
|
|
2332
|
+
target: "custom" | "account" | "change-email";
|
|
2333
2333
|
custom_url?: string | undefined;
|
|
2334
2334
|
};
|
|
2335
2335
|
alias?: string | undefined;
|
|
@@ -6607,7 +6607,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6607
6607
|
};
|
|
6608
6608
|
};
|
|
6609
6609
|
output: {
|
|
6610
|
-
prompt: "
|
|
6610
|
+
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";
|
|
6611
6611
|
language: string;
|
|
6612
6612
|
}[];
|
|
6613
6613
|
outputFormat: "json";
|
|
@@ -6645,7 +6645,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6645
6645
|
$get: {
|
|
6646
6646
|
input: {
|
|
6647
6647
|
param: {
|
|
6648
|
-
prompt: "
|
|
6648
|
+
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";
|
|
6649
6649
|
language: string;
|
|
6650
6650
|
};
|
|
6651
6651
|
} & {
|
|
@@ -6667,7 +6667,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6667
6667
|
$put: {
|
|
6668
6668
|
input: {
|
|
6669
6669
|
param: {
|
|
6670
|
-
prompt: "
|
|
6670
|
+
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";
|
|
6671
6671
|
language: string;
|
|
6672
6672
|
};
|
|
6673
6673
|
} & {
|
|
@@ -6691,7 +6691,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6691
6691
|
$delete: {
|
|
6692
6692
|
input: {
|
|
6693
6693
|
param: {
|
|
6694
|
-
prompt: "
|
|
6694
|
+
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";
|
|
6695
6695
|
language: string;
|
|
6696
6696
|
};
|
|
6697
6697
|
} & {
|
|
@@ -8132,7 +8132,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8132
8132
|
log_type: string;
|
|
8133
8133
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8134
8134
|
actor: {
|
|
8135
|
-
type: "
|
|
8135
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
8136
8136
|
id?: string | undefined;
|
|
8137
8137
|
email?: string | undefined;
|
|
8138
8138
|
org_id?: string | undefined;
|
|
@@ -8780,7 +8780,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8780
8780
|
};
|
|
8781
8781
|
};
|
|
8782
8782
|
output: {
|
|
8783
|
-
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" | "
|
|
8783
|
+
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";
|
|
8784
8784
|
date: string;
|
|
8785
8785
|
isMobile: boolean;
|
|
8786
8786
|
log_id: string;
|
|
@@ -8819,7 +8819,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8819
8819
|
limit: number;
|
|
8820
8820
|
length: number;
|
|
8821
8821
|
logs: {
|
|
8822
|
-
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" | "
|
|
8822
|
+
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";
|
|
8823
8823
|
date: string;
|
|
8824
8824
|
isMobile: boolean;
|
|
8825
8825
|
log_id: string;
|
|
@@ -8873,7 +8873,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8873
8873
|
};
|
|
8874
8874
|
};
|
|
8875
8875
|
output: {
|
|
8876
|
-
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" | "
|
|
8876
|
+
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";
|
|
8877
8877
|
date: string;
|
|
8878
8878
|
isMobile: boolean;
|
|
8879
8879
|
log_id: string;
|
|
@@ -9187,7 +9187,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9187
9187
|
addons?: {
|
|
9188
9188
|
[x: string]: any;
|
|
9189
9189
|
} | undefined;
|
|
9190
|
-
token_endpoint_auth_method?: "
|
|
9190
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9191
9191
|
client_metadata?: {
|
|
9192
9192
|
[x: string]: string;
|
|
9193
9193
|
} | undefined;
|
|
@@ -9283,7 +9283,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9283
9283
|
addons?: {
|
|
9284
9284
|
[x: string]: any;
|
|
9285
9285
|
} | undefined;
|
|
9286
|
-
token_endpoint_auth_method?: "
|
|
9286
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9287
9287
|
client_metadata?: {
|
|
9288
9288
|
[x: string]: string;
|
|
9289
9289
|
} | undefined;
|
|
@@ -9394,7 +9394,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9394
9394
|
addons?: {
|
|
9395
9395
|
[x: string]: any;
|
|
9396
9396
|
} | undefined;
|
|
9397
|
-
token_endpoint_auth_method?: "
|
|
9397
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9398
9398
|
client_metadata?: {
|
|
9399
9399
|
[x: string]: string;
|
|
9400
9400
|
} | undefined;
|
|
@@ -9504,7 +9504,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9504
9504
|
custom_login_page_preview?: string | undefined;
|
|
9505
9505
|
form_template?: string | undefined;
|
|
9506
9506
|
addons?: Record<string, any> | undefined;
|
|
9507
|
-
token_endpoint_auth_method?: "
|
|
9507
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9508
9508
|
client_metadata?: Record<string, string> | undefined;
|
|
9509
9509
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9510
9510
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9584,7 +9584,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9584
9584
|
addons?: {
|
|
9585
9585
|
[x: string]: any;
|
|
9586
9586
|
} | undefined;
|
|
9587
|
-
token_endpoint_auth_method?: "
|
|
9587
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9588
9588
|
client_metadata?: {
|
|
9589
9589
|
[x: string]: string;
|
|
9590
9590
|
} | undefined;
|
|
@@ -9673,7 +9673,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9673
9673
|
custom_login_page_preview?: string | undefined;
|
|
9674
9674
|
form_template?: string | undefined;
|
|
9675
9675
|
addons?: Record<string, any> | undefined;
|
|
9676
|
-
token_endpoint_auth_method?: "
|
|
9676
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9677
9677
|
client_metadata?: Record<string, string> | undefined;
|
|
9678
9678
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9679
9679
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9753,7 +9753,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9753
9753
|
addons?: {
|
|
9754
9754
|
[x: string]: any;
|
|
9755
9755
|
} | undefined;
|
|
9756
|
-
token_endpoint_auth_method?: "
|
|
9756
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9757
9757
|
client_metadata?: {
|
|
9758
9758
|
[x: string]: string;
|
|
9759
9759
|
} | undefined;
|
|
@@ -10119,9 +10119,76 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10119
10119
|
"tenant-id"?: string | undefined;
|
|
10120
10120
|
};
|
|
10121
10121
|
};
|
|
10122
|
-
output:
|
|
10122
|
+
output: {
|
|
10123
|
+
connection: string;
|
|
10124
|
+
email_verified: boolean;
|
|
10125
|
+
created_at: string;
|
|
10126
|
+
updated_at: string;
|
|
10127
|
+
user_id: string;
|
|
10128
|
+
provider: string;
|
|
10129
|
+
is_social: boolean;
|
|
10130
|
+
login_count: number;
|
|
10131
|
+
name?: string | undefined;
|
|
10132
|
+
username?: string | undefined;
|
|
10133
|
+
given_name?: string | undefined;
|
|
10134
|
+
phone_number?: string | undefined;
|
|
10135
|
+
phone_verified?: boolean | undefined;
|
|
10136
|
+
family_name?: string | undefined;
|
|
10137
|
+
profileData?: string | undefined;
|
|
10138
|
+
address?: {
|
|
10139
|
+
formatted?: string | undefined;
|
|
10140
|
+
street_address?: string | undefined;
|
|
10141
|
+
locality?: string | undefined;
|
|
10142
|
+
region?: string | undefined;
|
|
10143
|
+
postal_code?: string | undefined;
|
|
10144
|
+
country?: string | undefined;
|
|
10145
|
+
} | undefined;
|
|
10146
|
+
nickname?: string | undefined;
|
|
10147
|
+
picture?: string | undefined;
|
|
10148
|
+
locale?: string | undefined;
|
|
10149
|
+
linked_to?: string | undefined;
|
|
10150
|
+
app_metadata?: any;
|
|
10151
|
+
user_metadata?: any;
|
|
10152
|
+
middle_name?: string | undefined;
|
|
10153
|
+
preferred_username?: string | undefined;
|
|
10154
|
+
profile?: string | undefined;
|
|
10155
|
+
website?: string | undefined;
|
|
10156
|
+
gender?: string | undefined;
|
|
10157
|
+
birthdate?: string | undefined;
|
|
10158
|
+
zoneinfo?: string | undefined;
|
|
10159
|
+
verify_email?: boolean | undefined;
|
|
10160
|
+
last_ip?: string | undefined;
|
|
10161
|
+
last_login?: string | undefined;
|
|
10162
|
+
registration_completed_at?: string | undefined;
|
|
10163
|
+
email?: string | undefined;
|
|
10164
|
+
identities?: {
|
|
10165
|
+
connection: string;
|
|
10166
|
+
user_id: string;
|
|
10167
|
+
provider: string;
|
|
10168
|
+
isSocial: boolean;
|
|
10169
|
+
email?: string | undefined;
|
|
10170
|
+
email_verified?: boolean | undefined;
|
|
10171
|
+
phone_number?: string | undefined;
|
|
10172
|
+
phone_verified?: boolean | undefined;
|
|
10173
|
+
username?: string | undefined;
|
|
10174
|
+
access_token?: string | undefined;
|
|
10175
|
+
access_token_secret?: string | undefined;
|
|
10176
|
+
refresh_token?: string | undefined;
|
|
10177
|
+
profileData?: {
|
|
10178
|
+
[x: string]: any;
|
|
10179
|
+
email?: string | undefined;
|
|
10180
|
+
email_verified?: boolean | undefined;
|
|
10181
|
+
name?: string | undefined;
|
|
10182
|
+
username?: string | undefined;
|
|
10183
|
+
given_name?: string | undefined;
|
|
10184
|
+
phone_number?: string | undefined;
|
|
10185
|
+
phone_verified?: boolean | undefined;
|
|
10186
|
+
family_name?: string | undefined;
|
|
10187
|
+
} | undefined;
|
|
10188
|
+
}[] | undefined;
|
|
10189
|
+
}[];
|
|
10123
10190
|
outputFormat: "json";
|
|
10124
|
-
status:
|
|
10191
|
+
status: 200;
|
|
10125
10192
|
};
|
|
10126
10193
|
};
|
|
10127
10194
|
}, "/users-by-email"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -10950,7 +11017,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10950
11017
|
};
|
|
10951
11018
|
};
|
|
10952
11019
|
output: {
|
|
10953
|
-
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" | "
|
|
11020
|
+
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";
|
|
10954
11021
|
date: string;
|
|
10955
11022
|
isMobile: boolean;
|
|
10956
11023
|
log_id: string;
|
|
@@ -10989,7 +11056,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10989
11056
|
limit: number;
|
|
10990
11057
|
length: number;
|
|
10991
11058
|
logs: {
|
|
10992
|
-
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" | "
|
|
11059
|
+
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";
|
|
10993
11060
|
date: string;
|
|
10994
11061
|
isMobile: boolean;
|
|
10995
11062
|
log_id: string;
|
|
@@ -11304,7 +11371,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11304
11371
|
};
|
|
11305
11372
|
} & {
|
|
11306
11373
|
json: {
|
|
11307
|
-
template: "
|
|
11374
|
+
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";
|
|
11308
11375
|
body: string;
|
|
11309
11376
|
from: string;
|
|
11310
11377
|
subject: string;
|
|
@@ -11325,7 +11392,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11325
11392
|
};
|
|
11326
11393
|
} & {
|
|
11327
11394
|
json: {
|
|
11328
|
-
template: "
|
|
11395
|
+
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";
|
|
11329
11396
|
body: string;
|
|
11330
11397
|
from: string;
|
|
11331
11398
|
subject: string;
|
|
@@ -11337,7 +11404,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11337
11404
|
};
|
|
11338
11405
|
};
|
|
11339
11406
|
output: {
|
|
11340
|
-
template: "
|
|
11407
|
+
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";
|
|
11341
11408
|
body: string;
|
|
11342
11409
|
from: string;
|
|
11343
11410
|
subject: string;
|
|
@@ -11356,7 +11423,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11356
11423
|
$get: {
|
|
11357
11424
|
input: {
|
|
11358
11425
|
param: {
|
|
11359
|
-
templateName: "
|
|
11426
|
+
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";
|
|
11360
11427
|
};
|
|
11361
11428
|
} & {
|
|
11362
11429
|
header: {
|
|
@@ -11369,7 +11436,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11369
11436
|
} | {
|
|
11370
11437
|
input: {
|
|
11371
11438
|
param: {
|
|
11372
|
-
templateName: "
|
|
11439
|
+
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";
|
|
11373
11440
|
};
|
|
11374
11441
|
} & {
|
|
11375
11442
|
header: {
|
|
@@ -11377,7 +11444,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11377
11444
|
};
|
|
11378
11445
|
};
|
|
11379
11446
|
output: {
|
|
11380
|
-
template: "
|
|
11447
|
+
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";
|
|
11381
11448
|
body: string;
|
|
11382
11449
|
from: string;
|
|
11383
11450
|
subject: string;
|
|
@@ -11396,7 +11463,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11396
11463
|
$put: {
|
|
11397
11464
|
input: {
|
|
11398
11465
|
param: {
|
|
11399
|
-
templateName: "
|
|
11466
|
+
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";
|
|
11400
11467
|
};
|
|
11401
11468
|
} & {
|
|
11402
11469
|
header: {
|
|
@@ -11404,7 +11471,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11404
11471
|
};
|
|
11405
11472
|
} & {
|
|
11406
11473
|
json: {
|
|
11407
|
-
template: "
|
|
11474
|
+
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";
|
|
11408
11475
|
body: string;
|
|
11409
11476
|
from: string;
|
|
11410
11477
|
subject: string;
|
|
@@ -11416,7 +11483,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11416
11483
|
};
|
|
11417
11484
|
};
|
|
11418
11485
|
output: {
|
|
11419
|
-
template: "
|
|
11486
|
+
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";
|
|
11420
11487
|
body: string;
|
|
11421
11488
|
from: string;
|
|
11422
11489
|
subject: string;
|
|
@@ -11435,7 +11502,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11435
11502
|
$patch: {
|
|
11436
11503
|
input: {
|
|
11437
11504
|
param: {
|
|
11438
|
-
templateName: "
|
|
11505
|
+
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";
|
|
11439
11506
|
};
|
|
11440
11507
|
} & {
|
|
11441
11508
|
header: {
|
|
@@ -11443,7 +11510,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11443
11510
|
};
|
|
11444
11511
|
} & {
|
|
11445
11512
|
json: {
|
|
11446
|
-
template?: "
|
|
11513
|
+
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;
|
|
11447
11514
|
body?: string | undefined;
|
|
11448
11515
|
from?: string | undefined;
|
|
11449
11516
|
subject?: string | undefined;
|
|
@@ -11460,7 +11527,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11460
11527
|
} | {
|
|
11461
11528
|
input: {
|
|
11462
11529
|
param: {
|
|
11463
|
-
templateName: "
|
|
11530
|
+
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";
|
|
11464
11531
|
};
|
|
11465
11532
|
} & {
|
|
11466
11533
|
header: {
|
|
@@ -11468,7 +11535,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11468
11535
|
};
|
|
11469
11536
|
} & {
|
|
11470
11537
|
json: {
|
|
11471
|
-
template?: "
|
|
11538
|
+
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;
|
|
11472
11539
|
body?: string | undefined;
|
|
11473
11540
|
from?: string | undefined;
|
|
11474
11541
|
subject?: string | undefined;
|
|
@@ -11480,7 +11547,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11480
11547
|
};
|
|
11481
11548
|
};
|
|
11482
11549
|
output: {
|
|
11483
|
-
template: "
|
|
11550
|
+
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";
|
|
11484
11551
|
body: string;
|
|
11485
11552
|
from: string;
|
|
11486
11553
|
subject: string;
|
|
@@ -12526,7 +12593,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12526
12593
|
output: {
|
|
12527
12594
|
id: string;
|
|
12528
12595
|
trigger_id: string;
|
|
12529
|
-
status: "
|
|
12596
|
+
status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
|
|
12530
12597
|
results: {
|
|
12531
12598
|
action_name: string;
|
|
12532
12599
|
error: {
|
|
@@ -13538,7 +13605,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13538
13605
|
scope?: string | undefined;
|
|
13539
13606
|
grant_types?: string[] | undefined;
|
|
13540
13607
|
response_types?: string[] | undefined;
|
|
13541
|
-
token_endpoint_auth_method?: "
|
|
13608
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13542
13609
|
jwks_uri?: string | undefined;
|
|
13543
13610
|
jwks?: Record<string, unknown> | undefined;
|
|
13544
13611
|
software_id?: string | undefined;
|
|
@@ -13627,7 +13694,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13627
13694
|
scope?: string | undefined;
|
|
13628
13695
|
grant_types?: string[] | undefined;
|
|
13629
13696
|
response_types?: string[] | undefined;
|
|
13630
|
-
token_endpoint_auth_method?: "
|
|
13697
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13631
13698
|
jwks_uri?: string | undefined;
|
|
13632
13699
|
jwks?: Record<string, unknown> | undefined;
|
|
13633
13700
|
software_id?: string | undefined;
|
|
@@ -13684,7 +13751,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13684
13751
|
client_id: string;
|
|
13685
13752
|
redirect_url?: string | undefined;
|
|
13686
13753
|
login_hint?: string | undefined;
|
|
13687
|
-
screen_hint?: "
|
|
13754
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
13688
13755
|
};
|
|
13689
13756
|
};
|
|
13690
13757
|
output: {};
|
|
@@ -13696,7 +13763,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13696
13763
|
client_id: string;
|
|
13697
13764
|
redirect_url?: string | undefined;
|
|
13698
13765
|
login_hint?: string | undefined;
|
|
13699
|
-
screen_hint?: "
|
|
13766
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
13700
13767
|
};
|
|
13701
13768
|
};
|
|
13702
13769
|
output: {
|
|
@@ -13773,9 +13840,17 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13773
13840
|
request_uri?: string | undefined;
|
|
13774
13841
|
};
|
|
13775
13842
|
};
|
|
13776
|
-
output: {
|
|
13777
|
-
|
|
13778
|
-
|
|
13843
|
+
output: string | {
|
|
13844
|
+
access_token: string;
|
|
13845
|
+
token_type: string;
|
|
13846
|
+
expires_in: number;
|
|
13847
|
+
id_token?: string | undefined;
|
|
13848
|
+
scope?: string | undefined;
|
|
13849
|
+
state?: string | undefined;
|
|
13850
|
+
refresh_token?: string | undefined;
|
|
13851
|
+
};
|
|
13852
|
+
outputFormat: "json";
|
|
13853
|
+
status: 200;
|
|
13779
13854
|
} | {
|
|
13780
13855
|
input: {
|
|
13781
13856
|
query: {
|
|
@@ -13807,17 +13882,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13807
13882
|
request_uri?: string | undefined;
|
|
13808
13883
|
};
|
|
13809
13884
|
};
|
|
13810
|
-
output:
|
|
13811
|
-
|
|
13812
|
-
|
|
13813
|
-
expires_in: number;
|
|
13814
|
-
id_token?: string | undefined;
|
|
13815
|
-
scope?: string | undefined;
|
|
13816
|
-
state?: string | undefined;
|
|
13817
|
-
refresh_token?: string | undefined;
|
|
13818
|
-
};
|
|
13819
|
-
outputFormat: "json";
|
|
13820
|
-
status: 200;
|
|
13885
|
+
output: {};
|
|
13886
|
+
outputFormat: string;
|
|
13887
|
+
status: 302;
|
|
13821
13888
|
} | {
|
|
13822
13889
|
input: {
|
|
13823
13890
|
query: {
|
|
@@ -13973,19 +14040,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13973
14040
|
email: string;
|
|
13974
14041
|
send: "code" | "link";
|
|
13975
14042
|
authParams: {
|
|
14043
|
+
code_challenge?: string | undefined;
|
|
14044
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14045
|
+
redirect_uri?: string | undefined;
|
|
14046
|
+
nonce?: string | undefined;
|
|
13976
14047
|
state?: string | undefined;
|
|
13977
|
-
|
|
14048
|
+
act_as?: string | undefined;
|
|
13978
14049
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
13979
14050
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
13980
|
-
|
|
13981
|
-
username?: string | undefined;
|
|
14051
|
+
audience?: string | undefined;
|
|
13982
14052
|
organization?: string | undefined;
|
|
13983
|
-
|
|
13984
|
-
redirect_uri?: string | undefined;
|
|
13985
|
-
act_as?: string | undefined;
|
|
14053
|
+
scope?: string | undefined;
|
|
13986
14054
|
prompt?: string | undefined;
|
|
13987
|
-
|
|
13988
|
-
code_challenge?: string | undefined;
|
|
14055
|
+
username?: string | undefined;
|
|
13989
14056
|
ui_locales?: string | undefined;
|
|
13990
14057
|
max_age?: number | undefined;
|
|
13991
14058
|
acr_values?: string | undefined;
|
|
@@ -14009,19 +14076,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14009
14076
|
phone_number: string;
|
|
14010
14077
|
send: "code" | "link";
|
|
14011
14078
|
authParams: {
|
|
14079
|
+
code_challenge?: string | undefined;
|
|
14080
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14081
|
+
redirect_uri?: string | undefined;
|
|
14082
|
+
nonce?: string | undefined;
|
|
14012
14083
|
state?: string | undefined;
|
|
14013
|
-
|
|
14084
|
+
act_as?: string | undefined;
|
|
14014
14085
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14015
14086
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14016
|
-
|
|
14017
|
-
username?: string | undefined;
|
|
14087
|
+
audience?: string | undefined;
|
|
14018
14088
|
organization?: string | undefined;
|
|
14019
|
-
|
|
14020
|
-
redirect_uri?: string | undefined;
|
|
14021
|
-
act_as?: string | undefined;
|
|
14089
|
+
scope?: string | undefined;
|
|
14022
14090
|
prompt?: string | undefined;
|
|
14023
|
-
|
|
14024
|
-
code_challenge?: string | undefined;
|
|
14091
|
+
username?: string | undefined;
|
|
14025
14092
|
ui_locales?: string | undefined;
|
|
14026
14093
|
max_age?: number | undefined;
|
|
14027
14094
|
acr_values?: string | undefined;
|
|
@@ -14153,14 +14220,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14153
14220
|
input: {
|
|
14154
14221
|
form: {
|
|
14155
14222
|
token: string;
|
|
14156
|
-
token_type_hint?: "
|
|
14223
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14157
14224
|
client_id?: string | undefined;
|
|
14158
14225
|
client_secret?: string | undefined;
|
|
14159
14226
|
};
|
|
14160
14227
|
} & {
|
|
14161
14228
|
json: {
|
|
14162
14229
|
token: string;
|
|
14163
|
-
token_type_hint?: "
|
|
14230
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14164
14231
|
client_id?: string | undefined;
|
|
14165
14232
|
client_secret?: string | undefined;
|
|
14166
14233
|
};
|
|
@@ -14172,14 +14239,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14172
14239
|
input: {
|
|
14173
14240
|
form: {
|
|
14174
14241
|
token: string;
|
|
14175
|
-
token_type_hint?: "
|
|
14242
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14176
14243
|
client_id?: string | undefined;
|
|
14177
14244
|
client_secret?: string | undefined;
|
|
14178
14245
|
};
|
|
14179
14246
|
} & {
|
|
14180
14247
|
json: {
|
|
14181
14248
|
token: string;
|
|
14182
|
-
token_type_hint?: "
|
|
14249
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14183
14250
|
client_id?: string | undefined;
|
|
14184
14251
|
client_secret?: string | undefined;
|
|
14185
14252
|
};
|
|
@@ -14194,14 +14261,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14194
14261
|
input: {
|
|
14195
14262
|
form: {
|
|
14196
14263
|
token: string;
|
|
14197
|
-
token_type_hint?: "
|
|
14264
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14198
14265
|
client_id?: string | undefined;
|
|
14199
14266
|
client_secret?: string | undefined;
|
|
14200
14267
|
};
|
|
14201
14268
|
} & {
|
|
14202
14269
|
json: {
|
|
14203
14270
|
token: string;
|
|
14204
|
-
token_type_hint?: "
|
|
14271
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14205
14272
|
client_id?: string | undefined;
|
|
14206
14273
|
client_secret?: string | undefined;
|
|
14207
14274
|
};
|
|
@@ -14251,7 +14318,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14251
14318
|
client_id: string;
|
|
14252
14319
|
username: string;
|
|
14253
14320
|
otp: string;
|
|
14254
|
-
realm: "
|
|
14321
|
+
realm: "email" | "sms";
|
|
14255
14322
|
};
|
|
14256
14323
|
} & {
|
|
14257
14324
|
json: {
|
|
@@ -14287,7 +14354,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14287
14354
|
client_id: string;
|
|
14288
14355
|
username: string;
|
|
14289
14356
|
otp: string;
|
|
14290
|
-
realm: "
|
|
14357
|
+
realm: "email" | "sms";
|
|
14291
14358
|
};
|
|
14292
14359
|
};
|
|
14293
14360
|
output: {};
|
|
@@ -14328,7 +14395,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14328
14395
|
client_id: string;
|
|
14329
14396
|
username: string;
|
|
14330
14397
|
otp: string;
|
|
14331
|
-
realm: "
|
|
14398
|
+
realm: "email" | "sms";
|
|
14332
14399
|
};
|
|
14333
14400
|
} & {
|
|
14334
14401
|
json: {
|
|
@@ -14364,7 +14431,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14364
14431
|
client_id: string;
|
|
14365
14432
|
username: string;
|
|
14366
14433
|
otp: string;
|
|
14367
|
-
realm: "
|
|
14434
|
+
realm: "email" | "sms";
|
|
14368
14435
|
};
|
|
14369
14436
|
};
|
|
14370
14437
|
output: {
|
|
@@ -14413,7 +14480,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14413
14480
|
client_id: string;
|
|
14414
14481
|
username: string;
|
|
14415
14482
|
otp: string;
|
|
14416
|
-
realm: "
|
|
14483
|
+
realm: "email" | "sms";
|
|
14417
14484
|
};
|
|
14418
14485
|
} & {
|
|
14419
14486
|
json: {
|
|
@@ -14449,7 +14516,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14449
14516
|
client_id: string;
|
|
14450
14517
|
username: string;
|
|
14451
14518
|
otp: string;
|
|
14452
|
-
realm: "
|
|
14519
|
+
realm: "email" | "sms";
|
|
14453
14520
|
};
|
|
14454
14521
|
};
|
|
14455
14522
|
output: {
|
|
@@ -14493,7 +14560,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14493
14560
|
client_id: string;
|
|
14494
14561
|
username: string;
|
|
14495
14562
|
otp: string;
|
|
14496
|
-
realm: "
|
|
14563
|
+
realm: "email" | "sms";
|
|
14497
14564
|
};
|
|
14498
14565
|
} & {
|
|
14499
14566
|
json: {
|
|
@@ -14529,7 +14596,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14529
14596
|
client_id: string;
|
|
14530
14597
|
username: string;
|
|
14531
14598
|
otp: string;
|
|
14532
|
-
realm: "
|
|
14599
|
+
realm: "email" | "sms";
|
|
14533
14600
|
};
|
|
14534
14601
|
};
|
|
14535
14602
|
output: {
|
|
@@ -14573,7 +14640,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14573
14640
|
client_id: string;
|
|
14574
14641
|
username: string;
|
|
14575
14642
|
otp: string;
|
|
14576
|
-
realm: "
|
|
14643
|
+
realm: "email" | "sms";
|
|
14577
14644
|
};
|
|
14578
14645
|
} & {
|
|
14579
14646
|
json: {
|
|
@@ -14609,7 +14676,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14609
14676
|
client_id: string;
|
|
14610
14677
|
username: string;
|
|
14611
14678
|
otp: string;
|
|
14612
|
-
realm: "
|
|
14679
|
+
realm: "email" | "sms";
|
|
14613
14680
|
};
|
|
14614
14681
|
};
|
|
14615
14682
|
output: {
|
|
@@ -14782,7 +14849,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14782
14849
|
};
|
|
14783
14850
|
output: {};
|
|
14784
14851
|
outputFormat: string;
|
|
14785
|
-
status:
|
|
14852
|
+
status: 302;
|
|
14786
14853
|
} | {
|
|
14787
14854
|
input: {
|
|
14788
14855
|
query: {
|
|
@@ -14796,7 +14863,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14796
14863
|
};
|
|
14797
14864
|
output: {};
|
|
14798
14865
|
outputFormat: string;
|
|
14799
|
-
status:
|
|
14866
|
+
status: 200;
|
|
14800
14867
|
} | {
|
|
14801
14868
|
input: {
|
|
14802
14869
|
query: {
|
|
@@ -15640,11 +15707,35 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15640
15707
|
Bindings: Bindings;
|
|
15641
15708
|
Variables: Variables;
|
|
15642
15709
|
}, import("hono/types").MergeSchemaPath<{
|
|
15643
|
-
|
|
15710
|
+
"/guardian/enroll": {
|
|
15644
15711
|
$get: {
|
|
15645
15712
|
input: {
|
|
15646
15713
|
query: {
|
|
15647
|
-
|
|
15714
|
+
ticket: string;
|
|
15715
|
+
};
|
|
15716
|
+
};
|
|
15717
|
+
output: Response;
|
|
15718
|
+
outputFormat: "json";
|
|
15719
|
+
status: import("hono/utils/http-status").StatusCode;
|
|
15720
|
+
} | {
|
|
15721
|
+
input: {
|
|
15722
|
+
query: {
|
|
15723
|
+
ticket: string;
|
|
15724
|
+
};
|
|
15725
|
+
};
|
|
15726
|
+
output: {};
|
|
15727
|
+
outputFormat: string;
|
|
15728
|
+
status: 302;
|
|
15729
|
+
};
|
|
15730
|
+
};
|
|
15731
|
+
} & {
|
|
15732
|
+
"/accept-invitation": {
|
|
15733
|
+
$get: {
|
|
15734
|
+
input: {
|
|
15735
|
+
query: {
|
|
15736
|
+
invitation?: string | undefined;
|
|
15737
|
+
organization?: string | undefined;
|
|
15738
|
+
state?: string | undefined;
|
|
15648
15739
|
error?: string | undefined;
|
|
15649
15740
|
error_description?: string | undefined;
|
|
15650
15741
|
ui_locales?: string | undefined;
|
|
@@ -15653,10 +15744,24 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15653
15744
|
output: Response;
|
|
15654
15745
|
outputFormat: "json";
|
|
15655
15746
|
status: import("hono/utils/http-status").StatusCode;
|
|
15747
|
+
} | {
|
|
15748
|
+
input: {
|
|
15749
|
+
query: {
|
|
15750
|
+
invitation?: string | undefined;
|
|
15751
|
+
organization?: string | undefined;
|
|
15752
|
+
state?: string | undefined;
|
|
15753
|
+
error?: string | undefined;
|
|
15754
|
+
error_description?: string | undefined;
|
|
15755
|
+
ui_locales?: string | undefined;
|
|
15756
|
+
};
|
|
15757
|
+
};
|
|
15758
|
+
output: {};
|
|
15759
|
+
outputFormat: string;
|
|
15760
|
+
status: 302;
|
|
15656
15761
|
};
|
|
15657
15762
|
};
|
|
15658
15763
|
} & {
|
|
15659
|
-
|
|
15764
|
+
"/accept-invitation": {
|
|
15660
15765
|
$post: {
|
|
15661
15766
|
input: {
|
|
15662
15767
|
query: {
|
|
@@ -15688,11 +15793,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15688
15793
|
};
|
|
15689
15794
|
};
|
|
15690
15795
|
} & {
|
|
15691
|
-
"/
|
|
15796
|
+
"/tickets/email-verification": {
|
|
15692
15797
|
$get: {
|
|
15693
15798
|
input: {
|
|
15694
15799
|
query: {
|
|
15695
15800
|
ticket: string;
|
|
15801
|
+
tenant_id?: string | undefined;
|
|
15696
15802
|
};
|
|
15697
15803
|
};
|
|
15698
15804
|
output: Response;
|
|
@@ -15702,11 +15808,136 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15702
15808
|
input: {
|
|
15703
15809
|
query: {
|
|
15704
15810
|
ticket: string;
|
|
15811
|
+
tenant_id?: string | undefined;
|
|
15812
|
+
};
|
|
15813
|
+
};
|
|
15814
|
+
output: {};
|
|
15815
|
+
outputFormat: string;
|
|
15816
|
+
status: 302;
|
|
15817
|
+
};
|
|
15818
|
+
};
|
|
15819
|
+
} & {
|
|
15820
|
+
"/tickets/password-change": {
|
|
15821
|
+
$get: {
|
|
15822
|
+
input: {
|
|
15823
|
+
query: {
|
|
15824
|
+
ticket: string;
|
|
15825
|
+
tenant_id?: string | undefined;
|
|
15826
|
+
};
|
|
15827
|
+
};
|
|
15828
|
+
output: {};
|
|
15829
|
+
outputFormat: string;
|
|
15830
|
+
status: 302;
|
|
15831
|
+
};
|
|
15832
|
+
};
|
|
15833
|
+
} & {
|
|
15834
|
+
"/:screen{.+}": {
|
|
15835
|
+
$get: {
|
|
15836
|
+
input: {
|
|
15837
|
+
param: {
|
|
15838
|
+
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";
|
|
15839
|
+
};
|
|
15840
|
+
} & {
|
|
15841
|
+
query: {
|
|
15842
|
+
state: string;
|
|
15843
|
+
error?: string | undefined;
|
|
15844
|
+
error_description?: string | undefined;
|
|
15845
|
+
ui_locales?: string | undefined;
|
|
15846
|
+
};
|
|
15847
|
+
};
|
|
15848
|
+
output: Response;
|
|
15849
|
+
outputFormat: "json";
|
|
15850
|
+
status: import("hono/utils/http-status").StatusCode;
|
|
15851
|
+
} | {
|
|
15852
|
+
input: {
|
|
15853
|
+
param: {
|
|
15854
|
+
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";
|
|
15855
|
+
};
|
|
15856
|
+
} & {
|
|
15857
|
+
query: {
|
|
15858
|
+
state: string;
|
|
15859
|
+
error?: string | undefined;
|
|
15860
|
+
error_description?: string | undefined;
|
|
15861
|
+
ui_locales?: string | undefined;
|
|
15862
|
+
};
|
|
15863
|
+
};
|
|
15864
|
+
output: {};
|
|
15865
|
+
outputFormat: string;
|
|
15866
|
+
status: 302;
|
|
15867
|
+
} | {
|
|
15868
|
+
input: {
|
|
15869
|
+
param: {
|
|
15870
|
+
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";
|
|
15871
|
+
};
|
|
15872
|
+
} & {
|
|
15873
|
+
query: {
|
|
15874
|
+
state: string;
|
|
15875
|
+
error?: string | undefined;
|
|
15876
|
+
error_description?: string | undefined;
|
|
15877
|
+
ui_locales?: string | undefined;
|
|
15878
|
+
};
|
|
15879
|
+
};
|
|
15880
|
+
output: {};
|
|
15881
|
+
outputFormat: string;
|
|
15882
|
+
status: 400;
|
|
15883
|
+
};
|
|
15884
|
+
};
|
|
15885
|
+
} & {
|
|
15886
|
+
"/:screen{.+}": {
|
|
15887
|
+
$post: {
|
|
15888
|
+
input: {
|
|
15889
|
+
param: {
|
|
15890
|
+
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";
|
|
15891
|
+
};
|
|
15892
|
+
} & {
|
|
15893
|
+
query: {
|
|
15894
|
+
state: string;
|
|
15895
|
+
error?: string | undefined;
|
|
15896
|
+
error_description?: string | undefined;
|
|
15897
|
+
ui_locales?: string | undefined;
|
|
15705
15898
|
};
|
|
15899
|
+
} & {
|
|
15900
|
+
form: Record<string, string>;
|
|
15901
|
+
};
|
|
15902
|
+
output: Response;
|
|
15903
|
+
outputFormat: "json";
|
|
15904
|
+
status: import("hono/utils/http-status").StatusCode;
|
|
15905
|
+
} | {
|
|
15906
|
+
input: {
|
|
15907
|
+
param: {
|
|
15908
|
+
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";
|
|
15909
|
+
};
|
|
15910
|
+
} & {
|
|
15911
|
+
query: {
|
|
15912
|
+
state: string;
|
|
15913
|
+
error?: string | undefined;
|
|
15914
|
+
error_description?: string | undefined;
|
|
15915
|
+
ui_locales?: string | undefined;
|
|
15916
|
+
};
|
|
15917
|
+
} & {
|
|
15918
|
+
form: Record<string, string>;
|
|
15706
15919
|
};
|
|
15707
15920
|
output: {};
|
|
15708
15921
|
outputFormat: string;
|
|
15709
15922
|
status: 302;
|
|
15923
|
+
} | {
|
|
15924
|
+
input: {
|
|
15925
|
+
param: {
|
|
15926
|
+
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";
|
|
15927
|
+
};
|
|
15928
|
+
} & {
|
|
15929
|
+
query: {
|
|
15930
|
+
state: string;
|
|
15931
|
+
error?: string | undefined;
|
|
15932
|
+
error_description?: string | undefined;
|
|
15933
|
+
ui_locales?: string | undefined;
|
|
15934
|
+
};
|
|
15935
|
+
} & {
|
|
15936
|
+
form: Record<string, string>;
|
|
15937
|
+
};
|
|
15938
|
+
output: {};
|
|
15939
|
+
outputFormat: string;
|
|
15940
|
+
status: 400;
|
|
15710
15941
|
};
|
|
15711
15942
|
};
|
|
15712
15943
|
}, "/"> & import("hono/types").MergeSchemaPath<{
|