authhero 5.16.0 → 5.17.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 +70 -70
- package/dist/authhero.d.ts +185 -135
- package/dist/authhero.mjs +4273 -4234
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/index.d.ts +110 -109
- package/dist/types/middlewares/authentication.d.ts +17 -0
- package/dist/types/routes/auth-api/authorize.d.ts +12 -12
- package/dist/types/routes/auth-api/index.d.ts +58 -58
- package/dist/types/routes/auth-api/oidc-logout.d.ts +3 -3
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +21 -21
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +8 -8
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +33 -33
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/themes.d.ts +3 -3
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +6 -6
- package/dist/types/routes/universal-login/continue.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/impersonate.d.ts +4 -4
- package/dist/types/routes/universal-login/index.d.ts +8 -8
- package/dist/types/routes/universal-login/u2-index.d.ts +10 -10
- package/dist/types/routes/universal-login/u2-routes.d.ts +10 -10
- package/dist/types/types/AuthHeroConfig.d.ts +33 -0
- package/dist/types/types/Variables.d.ts +1 -0
- package/package.json +3 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ export { addEntityHooks } from "./helpers/entity-hooks-wrapper";
|
|
|
26
26
|
export { seed, MANAGEMENT_API_SCOPES } from "./seed";
|
|
27
27
|
export type { SeedOptions, SeedResult } from "./seed";
|
|
28
28
|
export { createAuthMiddleware, MANAGEMENT_API_AUDIENCE, } from "./middlewares/authentication";
|
|
29
|
+
export type { ManagementAudienceResolver } from "./middlewares/authentication";
|
|
29
30
|
export { tenantMiddleware } from "./middlewares/tenant";
|
|
30
31
|
export { clientInfoMiddleware } from "./middlewares/client-info";
|
|
31
32
|
export type { SamlSigner } from "@authhero/saml/core";
|
|
@@ -79,7 +80,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
79
80
|
};
|
|
80
81
|
} & {
|
|
81
82
|
json: {
|
|
82
|
-
type: "push" | "email" | "passkey" | "
|
|
83
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
83
84
|
phone_number?: string | undefined;
|
|
84
85
|
totp_secret?: string | undefined;
|
|
85
86
|
credential_id?: string | undefined;
|
|
@@ -219,7 +220,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
219
220
|
};
|
|
220
221
|
};
|
|
221
222
|
output: {
|
|
222
|
-
name: "
|
|
223
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
223
224
|
enabled: boolean;
|
|
224
225
|
trial_expired?: boolean | undefined;
|
|
225
226
|
}[];
|
|
@@ -374,7 +375,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
374
375
|
$get: {
|
|
375
376
|
input: {
|
|
376
377
|
param: {
|
|
377
|
-
factor_name: "
|
|
378
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
378
379
|
};
|
|
379
380
|
} & {
|
|
380
381
|
header: {
|
|
@@ -382,7 +383,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
382
383
|
};
|
|
383
384
|
};
|
|
384
385
|
output: {
|
|
385
|
-
name: "
|
|
386
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
386
387
|
enabled: boolean;
|
|
387
388
|
trial_expired?: boolean | undefined;
|
|
388
389
|
};
|
|
@@ -395,7 +396,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
395
396
|
$put: {
|
|
396
397
|
input: {
|
|
397
398
|
param: {
|
|
398
|
-
factor_name: "
|
|
399
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
399
400
|
};
|
|
400
401
|
} & {
|
|
401
402
|
header: {
|
|
@@ -407,7 +408,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
407
408
|
};
|
|
408
409
|
};
|
|
409
410
|
output: {
|
|
410
|
-
name: "
|
|
411
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
411
412
|
enabled: boolean;
|
|
412
413
|
trial_expired?: boolean | undefined;
|
|
413
414
|
};
|
|
@@ -1153,9 +1154,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1153
1154
|
email?: string | undefined;
|
|
1154
1155
|
};
|
|
1155
1156
|
id?: string | undefined;
|
|
1156
|
-
connection_id?: string | undefined;
|
|
1157
1157
|
app_metadata?: Record<string, any> | undefined;
|
|
1158
1158
|
user_metadata?: Record<string, any> | undefined;
|
|
1159
|
+
connection_id?: string | undefined;
|
|
1159
1160
|
roles?: string[] | undefined;
|
|
1160
1161
|
ttl_sec?: number | undefined;
|
|
1161
1162
|
send_invitation_email?: boolean | undefined;
|
|
@@ -6643,7 +6644,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6643
6644
|
};
|
|
6644
6645
|
};
|
|
6645
6646
|
output: {
|
|
6646
|
-
prompt: "
|
|
6647
|
+
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";
|
|
6647
6648
|
language: string;
|
|
6648
6649
|
}[];
|
|
6649
6650
|
outputFormat: "json";
|
|
@@ -6681,7 +6682,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6681
6682
|
$get: {
|
|
6682
6683
|
input: {
|
|
6683
6684
|
param: {
|
|
6684
|
-
prompt: "
|
|
6685
|
+
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";
|
|
6685
6686
|
language: string;
|
|
6686
6687
|
};
|
|
6687
6688
|
} & {
|
|
@@ -6703,7 +6704,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6703
6704
|
$put: {
|
|
6704
6705
|
input: {
|
|
6705
6706
|
param: {
|
|
6706
|
-
prompt: "
|
|
6707
|
+
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";
|
|
6707
6708
|
language: string;
|
|
6708
6709
|
};
|
|
6709
6710
|
} & {
|
|
@@ -6727,7 +6728,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6727
6728
|
$delete: {
|
|
6728
6729
|
input: {
|
|
6729
6730
|
param: {
|
|
6730
|
-
prompt: "
|
|
6731
|
+
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";
|
|
6731
6732
|
language: string;
|
|
6732
6733
|
};
|
|
6733
6734
|
} & {
|
|
@@ -8168,7 +8169,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8168
8169
|
log_type: string;
|
|
8169
8170
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8170
8171
|
actor: {
|
|
8171
|
-
type: "
|
|
8172
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
8172
8173
|
id?: string | undefined;
|
|
8173
8174
|
email?: string | undefined;
|
|
8174
8175
|
org_id?: string | undefined;
|
|
@@ -8816,7 +8817,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8816
8817
|
};
|
|
8817
8818
|
};
|
|
8818
8819
|
output: {
|
|
8819
|
-
type: "
|
|
8820
|
+
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "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" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8820
8821
|
date: string;
|
|
8821
8822
|
isMobile: boolean;
|
|
8822
8823
|
log_id: string;
|
|
@@ -8855,7 +8856,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8855
8856
|
limit: number;
|
|
8856
8857
|
length: number;
|
|
8857
8858
|
logs: {
|
|
8858
|
-
type: "
|
|
8859
|
+
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "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" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8859
8860
|
date: string;
|
|
8860
8861
|
isMobile: boolean;
|
|
8861
8862
|
log_id: string;
|
|
@@ -8909,7 +8910,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8909
8910
|
};
|
|
8910
8911
|
};
|
|
8911
8912
|
output: {
|
|
8912
|
-
type: "
|
|
8913
|
+
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "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" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8913
8914
|
date: string;
|
|
8914
8915
|
isMobile: boolean;
|
|
8915
8916
|
log_id: string;
|
|
@@ -9223,7 +9224,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9223
9224
|
addons?: {
|
|
9224
9225
|
[x: string]: any;
|
|
9225
9226
|
} | undefined;
|
|
9226
|
-
token_endpoint_auth_method?: "
|
|
9227
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9227
9228
|
client_metadata?: {
|
|
9228
9229
|
[x: string]: string;
|
|
9229
9230
|
} | undefined;
|
|
@@ -9319,7 +9320,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9319
9320
|
addons?: {
|
|
9320
9321
|
[x: string]: any;
|
|
9321
9322
|
} | undefined;
|
|
9322
|
-
token_endpoint_auth_method?: "
|
|
9323
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9323
9324
|
client_metadata?: {
|
|
9324
9325
|
[x: string]: string;
|
|
9325
9326
|
} | undefined;
|
|
@@ -9430,7 +9431,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9430
9431
|
addons?: {
|
|
9431
9432
|
[x: string]: any;
|
|
9432
9433
|
} | undefined;
|
|
9433
|
-
token_endpoint_auth_method?: "
|
|
9434
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9434
9435
|
client_metadata?: {
|
|
9435
9436
|
[x: string]: string;
|
|
9436
9437
|
} | undefined;
|
|
@@ -9540,7 +9541,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9540
9541
|
custom_login_page_preview?: string | undefined;
|
|
9541
9542
|
form_template?: string | undefined;
|
|
9542
9543
|
addons?: Record<string, any> | undefined;
|
|
9543
|
-
token_endpoint_auth_method?: "
|
|
9544
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9544
9545
|
client_metadata?: Record<string, string> | undefined;
|
|
9545
9546
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9546
9547
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9620,7 +9621,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9620
9621
|
addons?: {
|
|
9621
9622
|
[x: string]: any;
|
|
9622
9623
|
} | undefined;
|
|
9623
|
-
token_endpoint_auth_method?: "
|
|
9624
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9624
9625
|
client_metadata?: {
|
|
9625
9626
|
[x: string]: string;
|
|
9626
9627
|
} | undefined;
|
|
@@ -9709,7 +9710,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9709
9710
|
custom_login_page_preview?: string | undefined;
|
|
9710
9711
|
form_template?: string | undefined;
|
|
9711
9712
|
addons?: Record<string, any> | undefined;
|
|
9712
|
-
token_endpoint_auth_method?: "
|
|
9713
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9713
9714
|
client_metadata?: Record<string, string> | undefined;
|
|
9714
9715
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9715
9716
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9789,7 +9790,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9789
9790
|
addons?: {
|
|
9790
9791
|
[x: string]: any;
|
|
9791
9792
|
} | undefined;
|
|
9792
|
-
token_endpoint_auth_method?: "
|
|
9793
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9793
9794
|
client_metadata?: {
|
|
9794
9795
|
[x: string]: string;
|
|
9795
9796
|
} | undefined;
|
|
@@ -11053,7 +11054,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11053
11054
|
};
|
|
11054
11055
|
};
|
|
11055
11056
|
output: {
|
|
11056
|
-
type: "
|
|
11057
|
+
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "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" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11057
11058
|
date: string;
|
|
11058
11059
|
isMobile: boolean;
|
|
11059
11060
|
log_id: string;
|
|
@@ -11092,7 +11093,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11092
11093
|
limit: number;
|
|
11093
11094
|
length: number;
|
|
11094
11095
|
logs: {
|
|
11095
|
-
type: "
|
|
11096
|
+
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "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" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11096
11097
|
date: string;
|
|
11097
11098
|
isMobile: boolean;
|
|
11098
11099
|
log_id: string;
|
|
@@ -12163,7 +12164,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12163
12164
|
base_focus_color: string;
|
|
12164
12165
|
base_hover_color: string;
|
|
12165
12166
|
body_text: string;
|
|
12166
|
-
captcha_widget_theme: "
|
|
12167
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
12167
12168
|
error: string;
|
|
12168
12169
|
header: string;
|
|
12169
12170
|
icons: string;
|
|
@@ -12253,7 +12254,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12253
12254
|
base_focus_color: string;
|
|
12254
12255
|
base_hover_color: string;
|
|
12255
12256
|
body_text: string;
|
|
12256
|
-
captcha_widget_theme: "
|
|
12257
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
12257
12258
|
error: string;
|
|
12258
12259
|
header: string;
|
|
12259
12260
|
icons: string;
|
|
@@ -12332,7 +12333,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12332
12333
|
base_focus_color: string;
|
|
12333
12334
|
base_hover_color: string;
|
|
12334
12335
|
body_text: string;
|
|
12335
|
-
captcha_widget_theme: "
|
|
12336
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
12336
12337
|
error: string;
|
|
12337
12338
|
header: string;
|
|
12338
12339
|
icons: string;
|
|
@@ -12422,7 +12423,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12422
12423
|
font?: {
|
|
12423
12424
|
url: string;
|
|
12424
12425
|
} | undefined;
|
|
12425
|
-
dark_mode?: "
|
|
12426
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
12426
12427
|
};
|
|
12427
12428
|
outputFormat: "json";
|
|
12428
12429
|
status: 200;
|
|
@@ -12452,7 +12453,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12452
12453
|
font?: {
|
|
12453
12454
|
url: string;
|
|
12454
12455
|
} | undefined;
|
|
12455
|
-
dark_mode?: "
|
|
12456
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
12456
12457
|
};
|
|
12457
12458
|
};
|
|
12458
12459
|
output: {
|
|
@@ -12471,7 +12472,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12471
12472
|
font?: {
|
|
12472
12473
|
url: string;
|
|
12473
12474
|
} | undefined;
|
|
12474
|
-
dark_mode?: "
|
|
12475
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
12475
12476
|
};
|
|
12476
12477
|
outputFormat: "json";
|
|
12477
12478
|
status: 200;
|
|
@@ -12506,7 +12507,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12506
12507
|
};
|
|
12507
12508
|
output: {};
|
|
12508
12509
|
outputFormat: string;
|
|
12509
|
-
status:
|
|
12510
|
+
status: 204;
|
|
12510
12511
|
} | {
|
|
12511
12512
|
input: {
|
|
12512
12513
|
header: {
|
|
@@ -12519,7 +12520,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12519
12520
|
};
|
|
12520
12521
|
output: {};
|
|
12521
12522
|
outputFormat: string;
|
|
12522
|
-
status:
|
|
12523
|
+
status: 400;
|
|
12523
12524
|
};
|
|
12524
12525
|
};
|
|
12525
12526
|
} & {
|
|
@@ -12675,7 +12676,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12675
12676
|
output: {
|
|
12676
12677
|
id: string;
|
|
12677
12678
|
trigger_id: string;
|
|
12678
|
-
status: "
|
|
12679
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
12679
12680
|
results: {
|
|
12680
12681
|
action_name: string;
|
|
12681
12682
|
error: {
|
|
@@ -13687,7 +13688,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13687
13688
|
scope?: string | undefined;
|
|
13688
13689
|
grant_types?: string[] | undefined;
|
|
13689
13690
|
response_types?: string[] | undefined;
|
|
13690
|
-
token_endpoint_auth_method?: "
|
|
13691
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13691
13692
|
jwks_uri?: string | undefined;
|
|
13692
13693
|
jwks?: Record<string, unknown> | undefined;
|
|
13693
13694
|
software_id?: string | undefined;
|
|
@@ -13776,7 +13777,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13776
13777
|
scope?: string | undefined;
|
|
13777
13778
|
grant_types?: string[] | undefined;
|
|
13778
13779
|
response_types?: string[] | undefined;
|
|
13779
|
-
token_endpoint_auth_method?: "
|
|
13780
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13780
13781
|
jwks_uri?: string | undefined;
|
|
13781
13782
|
jwks?: Record<string, unknown> | undefined;
|
|
13782
13783
|
software_id?: string | undefined;
|
|
@@ -13956,11 +13957,17 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13956
13957
|
request_uri?: string | undefined;
|
|
13957
13958
|
};
|
|
13958
13959
|
};
|
|
13959
|
-
output: {
|
|
13960
|
-
|
|
13960
|
+
output: string | {
|
|
13961
|
+
access_token: string;
|
|
13962
|
+
token_type: string;
|
|
13963
|
+
expires_in: number;
|
|
13964
|
+
id_token?: string | undefined;
|
|
13965
|
+
scope?: string | undefined;
|
|
13966
|
+
state?: string | undefined;
|
|
13967
|
+
refresh_token?: string | undefined;
|
|
13961
13968
|
};
|
|
13962
13969
|
outputFormat: "json";
|
|
13963
|
-
status:
|
|
13970
|
+
status: 200;
|
|
13964
13971
|
} | {
|
|
13965
13972
|
input: {
|
|
13966
13973
|
query: {
|
|
@@ -13992,17 +13999,11 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13992
13999
|
request_uri?: string | undefined;
|
|
13993
14000
|
};
|
|
13994
14001
|
};
|
|
13995
|
-
output:
|
|
13996
|
-
|
|
13997
|
-
token_type: string;
|
|
13998
|
-
expires_in: number;
|
|
13999
|
-
id_token?: string | undefined;
|
|
14000
|
-
scope?: string | undefined;
|
|
14001
|
-
state?: string | undefined;
|
|
14002
|
-
refresh_token?: string | undefined;
|
|
14002
|
+
output: {
|
|
14003
|
+
message: string;
|
|
14003
14004
|
};
|
|
14004
14005
|
outputFormat: "json";
|
|
14005
|
-
status:
|
|
14006
|
+
status: 400;
|
|
14006
14007
|
} | {
|
|
14007
14008
|
input: {
|
|
14008
14009
|
query: {
|
|
@@ -14122,19 +14123,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14122
14123
|
email: string;
|
|
14123
14124
|
send: "code" | "link";
|
|
14124
14125
|
authParams: {
|
|
14125
|
-
|
|
14126
|
+
state?: string | undefined;
|
|
14126
14127
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14127
14128
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14128
14129
|
scope?: string | undefined;
|
|
14129
14130
|
username?: string | undefined;
|
|
14130
|
-
|
|
14131
|
-
act_as?: string | undefined;
|
|
14132
|
-
redirect_uri?: string | undefined;
|
|
14133
|
-
organization?: string | undefined;
|
|
14134
|
-
nonce?: string | undefined;
|
|
14131
|
+
audience?: string | undefined;
|
|
14135
14132
|
prompt?: string | undefined;
|
|
14136
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14137
14133
|
code_challenge?: string | undefined;
|
|
14134
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14135
|
+
redirect_uri?: string | undefined;
|
|
14136
|
+
nonce?: string | undefined;
|
|
14137
|
+
act_as?: string | undefined;
|
|
14138
|
+
organization?: string | undefined;
|
|
14138
14139
|
ui_locales?: string | undefined;
|
|
14139
14140
|
max_age?: number | undefined;
|
|
14140
14141
|
acr_values?: string | undefined;
|
|
@@ -14158,19 +14159,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14158
14159
|
phone_number: string;
|
|
14159
14160
|
send: "code" | "link";
|
|
14160
14161
|
authParams: {
|
|
14161
|
-
|
|
14162
|
+
state?: string | undefined;
|
|
14162
14163
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14163
14164
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14164
14165
|
scope?: string | undefined;
|
|
14165
14166
|
username?: string | undefined;
|
|
14166
|
-
|
|
14167
|
-
act_as?: string | undefined;
|
|
14168
|
-
redirect_uri?: string | undefined;
|
|
14169
|
-
organization?: string | undefined;
|
|
14170
|
-
nonce?: string | undefined;
|
|
14167
|
+
audience?: string | undefined;
|
|
14171
14168
|
prompt?: string | undefined;
|
|
14172
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14173
14169
|
code_challenge?: string | undefined;
|
|
14170
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14171
|
+
redirect_uri?: string | undefined;
|
|
14172
|
+
nonce?: string | undefined;
|
|
14173
|
+
act_as?: string | undefined;
|
|
14174
|
+
organization?: string | undefined;
|
|
14174
14175
|
ui_locales?: string | undefined;
|
|
14175
14176
|
max_age?: number | undefined;
|
|
14176
14177
|
acr_values?: string | undefined;
|
|
@@ -14302,14 +14303,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14302
14303
|
input: {
|
|
14303
14304
|
form: {
|
|
14304
14305
|
token: string;
|
|
14305
|
-
token_type_hint?: "
|
|
14306
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14306
14307
|
client_id?: string | undefined;
|
|
14307
14308
|
client_secret?: string | undefined;
|
|
14308
14309
|
};
|
|
14309
14310
|
} & {
|
|
14310
14311
|
json: {
|
|
14311
14312
|
token: string;
|
|
14312
|
-
token_type_hint?: "
|
|
14313
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14313
14314
|
client_id?: string | undefined;
|
|
14314
14315
|
client_secret?: string | undefined;
|
|
14315
14316
|
};
|
|
@@ -14321,14 +14322,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14321
14322
|
input: {
|
|
14322
14323
|
form: {
|
|
14323
14324
|
token: string;
|
|
14324
|
-
token_type_hint?: "
|
|
14325
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14325
14326
|
client_id?: string | undefined;
|
|
14326
14327
|
client_secret?: string | undefined;
|
|
14327
14328
|
};
|
|
14328
14329
|
} & {
|
|
14329
14330
|
json: {
|
|
14330
14331
|
token: string;
|
|
14331
|
-
token_type_hint?: "
|
|
14332
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14332
14333
|
client_id?: string | undefined;
|
|
14333
14334
|
client_secret?: string | undefined;
|
|
14334
14335
|
};
|
|
@@ -14343,14 +14344,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14343
14344
|
input: {
|
|
14344
14345
|
form: {
|
|
14345
14346
|
token: string;
|
|
14346
|
-
token_type_hint?: "
|
|
14347
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14347
14348
|
client_id?: string | undefined;
|
|
14348
14349
|
client_secret?: string | undefined;
|
|
14349
14350
|
};
|
|
14350
14351
|
} & {
|
|
14351
14352
|
json: {
|
|
14352
14353
|
token: string;
|
|
14353
|
-
token_type_hint?: "
|
|
14354
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14354
14355
|
client_id?: string | undefined;
|
|
14355
14356
|
client_secret?: string | undefined;
|
|
14356
14357
|
};
|
|
@@ -14400,7 +14401,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14400
14401
|
client_id: string;
|
|
14401
14402
|
username: string;
|
|
14402
14403
|
otp: string;
|
|
14403
|
-
realm: "
|
|
14404
|
+
realm: "email" | "sms";
|
|
14404
14405
|
};
|
|
14405
14406
|
} & {
|
|
14406
14407
|
json: {
|
|
@@ -14436,7 +14437,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14436
14437
|
client_id: string;
|
|
14437
14438
|
username: string;
|
|
14438
14439
|
otp: string;
|
|
14439
|
-
realm: "
|
|
14440
|
+
realm: "email" | "sms";
|
|
14440
14441
|
};
|
|
14441
14442
|
};
|
|
14442
14443
|
output: {};
|
|
@@ -14477,7 +14478,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14477
14478
|
client_id: string;
|
|
14478
14479
|
username: string;
|
|
14479
14480
|
otp: string;
|
|
14480
|
-
realm: "
|
|
14481
|
+
realm: "email" | "sms";
|
|
14481
14482
|
};
|
|
14482
14483
|
} & {
|
|
14483
14484
|
json: {
|
|
@@ -14513,15 +14514,20 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14513
14514
|
client_id: string;
|
|
14514
14515
|
username: string;
|
|
14515
14516
|
otp: string;
|
|
14516
|
-
realm: "
|
|
14517
|
+
realm: "email" | "sms";
|
|
14517
14518
|
};
|
|
14518
14519
|
};
|
|
14519
14520
|
output: {
|
|
14520
|
-
|
|
14521
|
-
|
|
14521
|
+
access_token: string;
|
|
14522
|
+
token_type: string;
|
|
14523
|
+
expires_in: number;
|
|
14524
|
+
id_token?: string | undefined;
|
|
14525
|
+
scope?: string | undefined;
|
|
14526
|
+
state?: string | undefined;
|
|
14527
|
+
refresh_token?: string | undefined;
|
|
14522
14528
|
};
|
|
14523
14529
|
outputFormat: "json";
|
|
14524
|
-
status:
|
|
14530
|
+
status: 200;
|
|
14525
14531
|
} | {
|
|
14526
14532
|
input: {
|
|
14527
14533
|
form: {
|
|
@@ -14557,7 +14563,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14557
14563
|
client_id: string;
|
|
14558
14564
|
username: string;
|
|
14559
14565
|
otp: string;
|
|
14560
|
-
realm: "
|
|
14566
|
+
realm: "email" | "sms";
|
|
14561
14567
|
};
|
|
14562
14568
|
} & {
|
|
14563
14569
|
json: {
|
|
@@ -14593,20 +14599,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14593
14599
|
client_id: string;
|
|
14594
14600
|
username: string;
|
|
14595
14601
|
otp: string;
|
|
14596
|
-
realm: "
|
|
14602
|
+
realm: "email" | "sms";
|
|
14597
14603
|
};
|
|
14598
14604
|
};
|
|
14599
14605
|
output: {
|
|
14600
|
-
|
|
14601
|
-
|
|
14602
|
-
expires_in: number;
|
|
14603
|
-
id_token?: string | undefined;
|
|
14604
|
-
scope?: string | undefined;
|
|
14605
|
-
state?: string | undefined;
|
|
14606
|
-
refresh_token?: string | undefined;
|
|
14606
|
+
error: string;
|
|
14607
|
+
error_description?: string | undefined;
|
|
14607
14608
|
};
|
|
14608
14609
|
outputFormat: "json";
|
|
14609
|
-
status:
|
|
14610
|
+
status: 400;
|
|
14610
14611
|
} | {
|
|
14611
14612
|
input: {
|
|
14612
14613
|
form: {
|
|
@@ -14642,7 +14643,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14642
14643
|
client_id: string;
|
|
14643
14644
|
username: string;
|
|
14644
14645
|
otp: string;
|
|
14645
|
-
realm: "
|
|
14646
|
+
realm: "email" | "sms";
|
|
14646
14647
|
};
|
|
14647
14648
|
} & {
|
|
14648
14649
|
json: {
|
|
@@ -14678,7 +14679,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14678
14679
|
client_id: string;
|
|
14679
14680
|
username: string;
|
|
14680
14681
|
otp: string;
|
|
14681
|
-
realm: "
|
|
14682
|
+
realm: "email" | "sms";
|
|
14682
14683
|
};
|
|
14683
14684
|
};
|
|
14684
14685
|
output: {
|
|
@@ -14722,7 +14723,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14722
14723
|
client_id: string;
|
|
14723
14724
|
username: string;
|
|
14724
14725
|
otp: string;
|
|
14725
|
-
realm: "
|
|
14726
|
+
realm: "email" | "sms";
|
|
14726
14727
|
};
|
|
14727
14728
|
} & {
|
|
14728
14729
|
json: {
|
|
@@ -14758,7 +14759,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14758
14759
|
client_id: string;
|
|
14759
14760
|
username: string;
|
|
14760
14761
|
otp: string;
|
|
14761
|
-
realm: "
|
|
14762
|
+
realm: "email" | "sms";
|
|
14762
14763
|
};
|
|
14763
14764
|
};
|
|
14764
14765
|
output: {
|
|
@@ -14965,7 +14966,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14965
14966
|
};
|
|
14966
14967
|
output: {};
|
|
14967
14968
|
outputFormat: string;
|
|
14968
|
-
status:
|
|
14969
|
+
status: 200;
|
|
14969
14970
|
} | {
|
|
14970
14971
|
input: {
|
|
14971
14972
|
query: {
|
|
@@ -14979,7 +14980,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14979
14980
|
};
|
|
14980
14981
|
output: {};
|
|
14981
14982
|
outputFormat: string;
|
|
14982
|
-
status:
|
|
14983
|
+
status: 302;
|
|
14983
14984
|
} | {
|
|
14984
14985
|
input: {
|
|
14985
14986
|
query: {
|
|
@@ -14993,7 +14994,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14993
14994
|
};
|
|
14994
14995
|
output: {};
|
|
14995
14996
|
outputFormat: string;
|
|
14996
|
-
status:
|
|
14997
|
+
status: 400;
|
|
14997
14998
|
};
|
|
14998
14999
|
};
|
|
14999
15000
|
}, "/oidc/logout"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -15100,7 +15101,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15100
15101
|
};
|
|
15101
15102
|
output: {};
|
|
15102
15103
|
outputFormat: string;
|
|
15103
|
-
status:
|
|
15104
|
+
status: 302;
|
|
15104
15105
|
} | {
|
|
15105
15106
|
input: {
|
|
15106
15107
|
query: {
|
|
@@ -15109,7 +15110,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15109
15110
|
};
|
|
15110
15111
|
output: {};
|
|
15111
15112
|
outputFormat: string;
|
|
15112
|
-
status:
|
|
15113
|
+
status: 400;
|
|
15113
15114
|
} | {
|
|
15114
15115
|
input: {
|
|
15115
15116
|
query: {
|
|
@@ -15199,7 +15200,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15199
15200
|
};
|
|
15200
15201
|
output: {};
|
|
15201
15202
|
outputFormat: string;
|
|
15202
|
-
status:
|
|
15203
|
+
status: 200;
|
|
15203
15204
|
} | {
|
|
15204
15205
|
input: {
|
|
15205
15206
|
query: {
|
|
@@ -15208,7 +15209,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15208
15209
|
};
|
|
15209
15210
|
output: {};
|
|
15210
15211
|
outputFormat: string;
|
|
15211
|
-
status:
|
|
15212
|
+
status: 400;
|
|
15212
15213
|
};
|
|
15213
15214
|
};
|
|
15214
15215
|
} & {
|
|
@@ -15238,7 +15239,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15238
15239
|
};
|
|
15239
15240
|
output: {};
|
|
15240
15241
|
outputFormat: string;
|
|
15241
|
-
status:
|
|
15242
|
+
status: 302;
|
|
15242
15243
|
} | {
|
|
15243
15244
|
input: {
|
|
15244
15245
|
query: {
|
|
@@ -15251,7 +15252,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15251
15252
|
};
|
|
15252
15253
|
output: {};
|
|
15253
15254
|
outputFormat: string;
|
|
15254
|
-
status:
|
|
15255
|
+
status: 400;
|
|
15255
15256
|
};
|
|
15256
15257
|
};
|
|
15257
15258
|
}, "/impersonate"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -15593,7 +15594,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15593
15594
|
};
|
|
15594
15595
|
output: {};
|
|
15595
15596
|
outputFormat: string;
|
|
15596
|
-
status:
|
|
15597
|
+
status: 302;
|
|
15597
15598
|
} | {
|
|
15598
15599
|
input: {
|
|
15599
15600
|
query: {
|
|
@@ -15607,7 +15608,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15607
15608
|
};
|
|
15608
15609
|
output: {};
|
|
15609
15610
|
outputFormat: string;
|
|
15610
|
-
status:
|
|
15611
|
+
status: 400;
|
|
15611
15612
|
};
|
|
15612
15613
|
};
|
|
15613
15614
|
}, "/login/identifier"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -15967,7 +15968,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15967
15968
|
$get: {
|
|
15968
15969
|
input: {
|
|
15969
15970
|
param: {
|
|
15970
|
-
screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "
|
|
15971
|
+
screen: "signup" | "login" | "reset-password" | "account" | "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";
|
|
15971
15972
|
};
|
|
15972
15973
|
} & {
|
|
15973
15974
|
query: {
|
|
@@ -15983,7 +15984,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15983
15984
|
} | {
|
|
15984
15985
|
input: {
|
|
15985
15986
|
param: {
|
|
15986
|
-
screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "
|
|
15987
|
+
screen: "signup" | "login" | "reset-password" | "account" | "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";
|
|
15987
15988
|
};
|
|
15988
15989
|
} & {
|
|
15989
15990
|
query: {
|
|
@@ -15995,11 +15996,11 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15995
15996
|
};
|
|
15996
15997
|
output: {};
|
|
15997
15998
|
outputFormat: string;
|
|
15998
|
-
status:
|
|
15999
|
+
status: 302;
|
|
15999
16000
|
} | {
|
|
16000
16001
|
input: {
|
|
16001
16002
|
param: {
|
|
16002
|
-
screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "
|
|
16003
|
+
screen: "signup" | "login" | "reset-password" | "account" | "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";
|
|
16003
16004
|
};
|
|
16004
16005
|
} & {
|
|
16005
16006
|
query: {
|
|
@@ -16011,7 +16012,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16011
16012
|
};
|
|
16012
16013
|
output: {};
|
|
16013
16014
|
outputFormat: string;
|
|
16014
|
-
status:
|
|
16015
|
+
status: 400;
|
|
16015
16016
|
};
|
|
16016
16017
|
};
|
|
16017
16018
|
} & {
|
|
@@ -16019,7 +16020,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16019
16020
|
$post: {
|
|
16020
16021
|
input: {
|
|
16021
16022
|
param: {
|
|
16022
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "
|
|
16023
|
+
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";
|
|
16023
16024
|
};
|
|
16024
16025
|
} & {
|
|
16025
16026
|
query: {
|
|
@@ -16037,7 +16038,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16037
16038
|
} | {
|
|
16038
16039
|
input: {
|
|
16039
16040
|
param: {
|
|
16040
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "
|
|
16041
|
+
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";
|
|
16041
16042
|
};
|
|
16042
16043
|
} & {
|
|
16043
16044
|
query: {
|
|
@@ -16051,11 +16052,11 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16051
16052
|
};
|
|
16052
16053
|
output: {};
|
|
16053
16054
|
outputFormat: string;
|
|
16054
|
-
status:
|
|
16055
|
+
status: 302;
|
|
16055
16056
|
} | {
|
|
16056
16057
|
input: {
|
|
16057
16058
|
param: {
|
|
16058
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "
|
|
16059
|
+
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";
|
|
16059
16060
|
};
|
|
16060
16061
|
} & {
|
|
16061
16062
|
query: {
|
|
@@ -16069,7 +16070,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16069
16070
|
};
|
|
16070
16071
|
output: {};
|
|
16071
16072
|
outputFormat: string;
|
|
16072
|
-
status:
|
|
16073
|
+
status: 400;
|
|
16073
16074
|
};
|
|
16074
16075
|
};
|
|
16075
16076
|
}, "/"> & import("hono/types").MergeSchemaPath<{
|