authhero 5.21.0 → 6.0.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/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +105 -105
- package/dist/authhero.d.ts +66 -66
- package/dist/authhero.mjs +9892 -9836
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/common.d.ts +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +6 -6
- package/dist/types/helpers/client.d.ts +3 -3
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
- package/dist/types/helpers/logging.d.ts +7 -0
- package/dist/types/index.d.ts +63 -63
- package/dist/types/routes/auth-api/index.d.ts +18 -18
- package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/client-grants.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 +39 -39
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +14 -14
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/strategies/microsoft-entra.d.ts +23 -0
- package/dist/types/strategies/waad.d.ts +24 -0
- package/dist/types/strategies/windowslive.d.ts +24 -0
- package/dist/types/utils/email.d.ts +2 -0
- package/package.json +5 -5
package/dist/types/index.d.ts
CHANGED
|
@@ -85,7 +85,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
85
85
|
};
|
|
86
86
|
} & {
|
|
87
87
|
json: {
|
|
88
|
-
type: "
|
|
88
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
89
89
|
phone_number?: string | undefined;
|
|
90
90
|
totp_secret?: string | undefined;
|
|
91
91
|
credential_id?: string | undefined;
|
|
@@ -225,7 +225,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
225
225
|
};
|
|
226
226
|
};
|
|
227
227
|
output: {
|
|
228
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
228
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
229
229
|
enabled: boolean;
|
|
230
230
|
trial_expired?: boolean | undefined;
|
|
231
231
|
}[];
|
|
@@ -380,7 +380,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
380
380
|
$get: {
|
|
381
381
|
input: {
|
|
382
382
|
param: {
|
|
383
|
-
factor_name: "sms" | "otp" | "email" | "duo" | "
|
|
383
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
384
384
|
};
|
|
385
385
|
} & {
|
|
386
386
|
header: {
|
|
@@ -388,7 +388,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
388
388
|
};
|
|
389
389
|
};
|
|
390
390
|
output: {
|
|
391
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
391
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
392
392
|
enabled: boolean;
|
|
393
393
|
trial_expired?: boolean | undefined;
|
|
394
394
|
};
|
|
@@ -401,7 +401,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
401
401
|
$put: {
|
|
402
402
|
input: {
|
|
403
403
|
param: {
|
|
404
|
-
factor_name: "sms" | "otp" | "email" | "duo" | "
|
|
404
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
405
405
|
};
|
|
406
406
|
} & {
|
|
407
407
|
header: {
|
|
@@ -413,7 +413,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
413
413
|
};
|
|
414
414
|
};
|
|
415
415
|
output: {
|
|
416
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
416
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
417
417
|
enabled: boolean;
|
|
418
418
|
trial_expired?: boolean | undefined;
|
|
419
419
|
};
|
|
@@ -6649,7 +6649,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6649
6649
|
};
|
|
6650
6650
|
};
|
|
6651
6651
|
output: {
|
|
6652
|
-
prompt: "mfa" | "organizations" | "signup" | "
|
|
6652
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6653
6653
|
language: string;
|
|
6654
6654
|
}[];
|
|
6655
6655
|
outputFormat: "json";
|
|
@@ -6687,7 +6687,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6687
6687
|
$get: {
|
|
6688
6688
|
input: {
|
|
6689
6689
|
param: {
|
|
6690
|
-
prompt: "mfa" | "organizations" | "signup" | "
|
|
6690
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6691
6691
|
language: string;
|
|
6692
6692
|
};
|
|
6693
6693
|
} & {
|
|
@@ -6709,7 +6709,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6709
6709
|
$put: {
|
|
6710
6710
|
input: {
|
|
6711
6711
|
param: {
|
|
6712
|
-
prompt: "mfa" | "organizations" | "signup" | "
|
|
6712
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6713
6713
|
language: string;
|
|
6714
6714
|
};
|
|
6715
6715
|
} & {
|
|
@@ -6733,7 +6733,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6733
6733
|
$delete: {
|
|
6734
6734
|
input: {
|
|
6735
6735
|
param: {
|
|
6736
|
-
prompt: "mfa" | "organizations" | "signup" | "
|
|
6736
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6737
6737
|
language: string;
|
|
6738
6738
|
};
|
|
6739
6739
|
} & {
|
|
@@ -8174,7 +8174,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8174
8174
|
log_type: string;
|
|
8175
8175
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8176
8176
|
actor: {
|
|
8177
|
-
type: "
|
|
8177
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
8178
8178
|
id?: string | undefined;
|
|
8179
8179
|
email?: string | undefined;
|
|
8180
8180
|
org_id?: string | undefined;
|
|
@@ -8482,7 +8482,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8482
8482
|
created_at: string;
|
|
8483
8483
|
updated_at: string;
|
|
8484
8484
|
name: string;
|
|
8485
|
-
provider: "auth0" | "
|
|
8485
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8486
8486
|
connection: string;
|
|
8487
8487
|
enabled: boolean;
|
|
8488
8488
|
credentials: {
|
|
@@ -8514,7 +8514,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8514
8514
|
created_at: string;
|
|
8515
8515
|
updated_at: string;
|
|
8516
8516
|
name: string;
|
|
8517
|
-
provider: "auth0" | "
|
|
8517
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8518
8518
|
connection: string;
|
|
8519
8519
|
enabled: boolean;
|
|
8520
8520
|
credentials: {
|
|
@@ -8540,7 +8540,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8540
8540
|
} & {
|
|
8541
8541
|
json: {
|
|
8542
8542
|
name: string;
|
|
8543
|
-
provider: "auth0" | "
|
|
8543
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8544
8544
|
connection: string;
|
|
8545
8545
|
credentials: {
|
|
8546
8546
|
domain: string;
|
|
@@ -8557,7 +8557,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8557
8557
|
created_at: string;
|
|
8558
8558
|
updated_at: string;
|
|
8559
8559
|
name: string;
|
|
8560
|
-
provider: "auth0" | "
|
|
8560
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8561
8561
|
connection: string;
|
|
8562
8562
|
enabled: boolean;
|
|
8563
8563
|
credentials: {
|
|
@@ -8588,7 +8588,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8588
8588
|
json: {
|
|
8589
8589
|
id?: string | undefined;
|
|
8590
8590
|
name?: string | undefined;
|
|
8591
|
-
provider?: "auth0" | "
|
|
8591
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
8592
8592
|
connection?: string | undefined;
|
|
8593
8593
|
enabled?: boolean | undefined;
|
|
8594
8594
|
credentials?: {
|
|
@@ -8604,7 +8604,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8604
8604
|
created_at: string;
|
|
8605
8605
|
updated_at: string;
|
|
8606
8606
|
name: string;
|
|
8607
|
-
provider: "auth0" | "
|
|
8607
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8608
8608
|
connection: string;
|
|
8609
8609
|
enabled: boolean;
|
|
8610
8610
|
credentials: {
|
|
@@ -8822,7 +8822,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8822
8822
|
};
|
|
8823
8823
|
};
|
|
8824
8824
|
output: {
|
|
8825
|
-
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" | "
|
|
8825
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8826
8826
|
date: string;
|
|
8827
8827
|
isMobile: boolean;
|
|
8828
8828
|
log_id: string;
|
|
@@ -8861,7 +8861,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8861
8861
|
limit: number;
|
|
8862
8862
|
length: number;
|
|
8863
8863
|
logs: {
|
|
8864
|
-
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" | "
|
|
8864
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8865
8865
|
date: string;
|
|
8866
8866
|
isMobile: boolean;
|
|
8867
8867
|
log_id: string;
|
|
@@ -8915,7 +8915,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8915
8915
|
};
|
|
8916
8916
|
};
|
|
8917
8917
|
output: {
|
|
8918
|
-
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" | "
|
|
8918
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8919
8919
|
date: string;
|
|
8920
8920
|
isMobile: boolean;
|
|
8921
8921
|
log_id: string;
|
|
@@ -9070,7 +9070,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9070
9070
|
audience?: string | undefined;
|
|
9071
9071
|
client_id?: string | undefined;
|
|
9072
9072
|
allow_any_organization?: string | undefined;
|
|
9073
|
-
subject_type?: "
|
|
9073
|
+
subject_type?: "user" | "client" | undefined;
|
|
9074
9074
|
};
|
|
9075
9075
|
} & {
|
|
9076
9076
|
header: {
|
|
@@ -9085,7 +9085,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9085
9085
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9086
9086
|
allow_any_organization?: boolean | undefined;
|
|
9087
9087
|
is_system?: boolean | undefined;
|
|
9088
|
-
subject_type?: "
|
|
9088
|
+
subject_type?: "user" | "client" | undefined;
|
|
9089
9089
|
authorization_details_types?: string[] | undefined;
|
|
9090
9090
|
created_at?: string | undefined;
|
|
9091
9091
|
updated_at?: string | undefined;
|
|
@@ -9101,7 +9101,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9101
9101
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9102
9102
|
allow_any_organization?: boolean | undefined;
|
|
9103
9103
|
is_system?: boolean | undefined;
|
|
9104
|
-
subject_type?: "
|
|
9104
|
+
subject_type?: "user" | "client" | undefined;
|
|
9105
9105
|
authorization_details_types?: string[] | undefined;
|
|
9106
9106
|
created_at?: string | undefined;
|
|
9107
9107
|
updated_at?: string | undefined;
|
|
@@ -9132,7 +9132,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9132
9132
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9133
9133
|
allow_any_organization?: boolean | undefined;
|
|
9134
9134
|
is_system?: boolean | undefined;
|
|
9135
|
-
subject_type?: "
|
|
9135
|
+
subject_type?: "user" | "client" | undefined;
|
|
9136
9136
|
authorization_details_types?: string[] | undefined;
|
|
9137
9137
|
created_at?: string | undefined;
|
|
9138
9138
|
updated_at?: string | undefined;
|
|
@@ -9177,7 +9177,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9177
9177
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9178
9178
|
allow_any_organization?: boolean | undefined;
|
|
9179
9179
|
is_system?: boolean | undefined;
|
|
9180
|
-
subject_type?: "
|
|
9180
|
+
subject_type?: "user" | "client" | undefined;
|
|
9181
9181
|
authorization_details_types?: string[] | undefined;
|
|
9182
9182
|
};
|
|
9183
9183
|
};
|
|
@@ -9189,7 +9189,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9189
9189
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9190
9190
|
allow_any_organization?: boolean | undefined;
|
|
9191
9191
|
is_system?: boolean | undefined;
|
|
9192
|
-
subject_type?: "
|
|
9192
|
+
subject_type?: "user" | "client" | undefined;
|
|
9193
9193
|
authorization_details_types?: string[] | undefined;
|
|
9194
9194
|
created_at?: string | undefined;
|
|
9195
9195
|
updated_at?: string | undefined;
|
|
@@ -9213,7 +9213,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9213
9213
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9214
9214
|
allow_any_organization?: boolean | undefined;
|
|
9215
9215
|
is_system?: boolean | undefined;
|
|
9216
|
-
subject_type?: "
|
|
9216
|
+
subject_type?: "user" | "client" | undefined;
|
|
9217
9217
|
authorization_details_types?: string[] | undefined;
|
|
9218
9218
|
};
|
|
9219
9219
|
};
|
|
@@ -9225,7 +9225,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9225
9225
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9226
9226
|
allow_any_organization?: boolean | undefined;
|
|
9227
9227
|
is_system?: boolean | undefined;
|
|
9228
|
-
subject_type?: "
|
|
9228
|
+
subject_type?: "user" | "client" | undefined;
|
|
9229
9229
|
authorization_details_types?: string[] | undefined;
|
|
9230
9230
|
created_at?: string | undefined;
|
|
9231
9231
|
updated_at?: string | undefined;
|
|
@@ -9303,7 +9303,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9303
9303
|
addons?: {
|
|
9304
9304
|
[x: string]: any;
|
|
9305
9305
|
} | undefined;
|
|
9306
|
-
token_endpoint_auth_method?: "
|
|
9306
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9307
9307
|
client_metadata?: {
|
|
9308
9308
|
[x: string]: string;
|
|
9309
9309
|
} | undefined;
|
|
@@ -9399,7 +9399,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9399
9399
|
addons?: {
|
|
9400
9400
|
[x: string]: any;
|
|
9401
9401
|
} | undefined;
|
|
9402
|
-
token_endpoint_auth_method?: "
|
|
9402
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9403
9403
|
client_metadata?: {
|
|
9404
9404
|
[x: string]: string;
|
|
9405
9405
|
} | undefined;
|
|
@@ -9510,7 +9510,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9510
9510
|
addons?: {
|
|
9511
9511
|
[x: string]: any;
|
|
9512
9512
|
} | undefined;
|
|
9513
|
-
token_endpoint_auth_method?: "
|
|
9513
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9514
9514
|
client_metadata?: {
|
|
9515
9515
|
[x: string]: string;
|
|
9516
9516
|
} | undefined;
|
|
@@ -9620,7 +9620,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9620
9620
|
custom_login_page_preview?: string | undefined;
|
|
9621
9621
|
form_template?: string | undefined;
|
|
9622
9622
|
addons?: Record<string, any> | undefined;
|
|
9623
|
-
token_endpoint_auth_method?: "
|
|
9623
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9624
9624
|
client_metadata?: Record<string, string> | undefined;
|
|
9625
9625
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9626
9626
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9700,7 +9700,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9700
9700
|
addons?: {
|
|
9701
9701
|
[x: string]: any;
|
|
9702
9702
|
} | undefined;
|
|
9703
|
-
token_endpoint_auth_method?: "
|
|
9703
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9704
9704
|
client_metadata?: {
|
|
9705
9705
|
[x: string]: string;
|
|
9706
9706
|
} | undefined;
|
|
@@ -9789,7 +9789,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9789
9789
|
custom_login_page_preview?: string | undefined;
|
|
9790
9790
|
form_template?: string | undefined;
|
|
9791
9791
|
addons?: Record<string, any> | undefined;
|
|
9792
|
-
token_endpoint_auth_method?: "
|
|
9792
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9793
9793
|
client_metadata?: Record<string, string> | undefined;
|
|
9794
9794
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9795
9795
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9869,7 +9869,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9869
9869
|
addons?: {
|
|
9870
9870
|
[x: string]: any;
|
|
9871
9871
|
} | undefined;
|
|
9872
|
-
token_endpoint_auth_method?: "
|
|
9872
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9873
9873
|
client_metadata?: {
|
|
9874
9874
|
[x: string]: string;
|
|
9875
9875
|
} | undefined;
|
|
@@ -11133,7 +11133,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11133
11133
|
};
|
|
11134
11134
|
};
|
|
11135
11135
|
output: {
|
|
11136
|
-
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" | "
|
|
11136
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11137
11137
|
date: string;
|
|
11138
11138
|
isMobile: boolean;
|
|
11139
11139
|
log_id: string;
|
|
@@ -11172,7 +11172,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11172
11172
|
limit: number;
|
|
11173
11173
|
length: number;
|
|
11174
11174
|
logs: {
|
|
11175
|
-
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" | "
|
|
11175
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11176
11176
|
date: string;
|
|
11177
11177
|
isMobile: boolean;
|
|
11178
11178
|
log_id: string;
|
|
@@ -12876,7 +12876,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12876
12876
|
logs: {
|
|
12877
12877
|
action_name: string;
|
|
12878
12878
|
lines: {
|
|
12879
|
-
level: "
|
|
12879
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
12880
12880
|
message: string;
|
|
12881
12881
|
}[];
|
|
12882
12882
|
}[];
|
|
@@ -13543,7 +13543,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13543
13543
|
args: import("hono/utils/types").JSONValue[];
|
|
13544
13544
|
}[];
|
|
13545
13545
|
logs: {
|
|
13546
|
-
level: "
|
|
13546
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
13547
13547
|
message: string;
|
|
13548
13548
|
}[];
|
|
13549
13549
|
error?: string | undefined;
|
|
@@ -13841,7 +13841,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13841
13841
|
scope?: string | undefined;
|
|
13842
13842
|
grant_types?: string[] | undefined;
|
|
13843
13843
|
response_types?: string[] | undefined;
|
|
13844
|
-
token_endpoint_auth_method?: "
|
|
13844
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
13845
13845
|
jwks_uri?: string | undefined;
|
|
13846
13846
|
jwks?: Record<string, unknown> | undefined;
|
|
13847
13847
|
software_id?: string | undefined;
|
|
@@ -13930,7 +13930,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13930
13930
|
scope?: string | undefined;
|
|
13931
13931
|
grant_types?: string[] | undefined;
|
|
13932
13932
|
response_types?: string[] | undefined;
|
|
13933
|
-
token_endpoint_auth_method?: "
|
|
13933
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
13934
13934
|
jwks_uri?: string | undefined;
|
|
13935
13935
|
jwks?: Record<string, unknown> | undefined;
|
|
13936
13936
|
software_id?: string | undefined;
|
|
@@ -14276,20 +14276,20 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14276
14276
|
email: string;
|
|
14277
14277
|
send: "code" | "link";
|
|
14278
14278
|
authParams: {
|
|
14279
|
+
username?: string | undefined;
|
|
14280
|
+
state?: string | undefined;
|
|
14279
14281
|
audience?: string | undefined;
|
|
14280
14282
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14281
14283
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14282
14284
|
scope?: string | undefined;
|
|
14283
|
-
username?: string | undefined;
|
|
14284
|
-
state?: string | undefined;
|
|
14285
|
-
prompt?: string | undefined;
|
|
14286
|
-
ui_locales?: string | undefined;
|
|
14287
14285
|
organization?: string | undefined;
|
|
14286
|
+
nonce?: string | undefined;
|
|
14288
14287
|
redirect_uri?: string | undefined;
|
|
14289
14288
|
act_as?: string | undefined;
|
|
14290
|
-
|
|
14289
|
+
prompt?: string | undefined;
|
|
14291
14290
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14292
14291
|
code_challenge?: string | undefined;
|
|
14292
|
+
ui_locales?: string | undefined;
|
|
14293
14293
|
max_age?: number | undefined;
|
|
14294
14294
|
acr_values?: string | undefined;
|
|
14295
14295
|
claims?: {
|
|
@@ -14312,20 +14312,20 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14312
14312
|
phone_number: string;
|
|
14313
14313
|
send: "code" | "link";
|
|
14314
14314
|
authParams: {
|
|
14315
|
+
username?: string | undefined;
|
|
14316
|
+
state?: string | undefined;
|
|
14315
14317
|
audience?: string | undefined;
|
|
14316
14318
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14317
14319
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14318
14320
|
scope?: string | undefined;
|
|
14319
|
-
username?: string | undefined;
|
|
14320
|
-
state?: string | undefined;
|
|
14321
|
-
prompt?: string | undefined;
|
|
14322
|
-
ui_locales?: string | undefined;
|
|
14323
14321
|
organization?: string | undefined;
|
|
14322
|
+
nonce?: string | undefined;
|
|
14324
14323
|
redirect_uri?: string | undefined;
|
|
14325
14324
|
act_as?: string | undefined;
|
|
14326
|
-
|
|
14325
|
+
prompt?: string | undefined;
|
|
14327
14326
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14328
14327
|
code_challenge?: string | undefined;
|
|
14328
|
+
ui_locales?: string | undefined;
|
|
14329
14329
|
max_age?: number | undefined;
|
|
14330
14330
|
acr_values?: string | undefined;
|
|
14331
14331
|
claims?: {
|
|
@@ -14456,14 +14456,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14456
14456
|
input: {
|
|
14457
14457
|
form: {
|
|
14458
14458
|
token: string;
|
|
14459
|
-
token_type_hint?: "
|
|
14459
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14460
14460
|
client_id?: string | undefined;
|
|
14461
14461
|
client_secret?: string | undefined;
|
|
14462
14462
|
};
|
|
14463
14463
|
} & {
|
|
14464
14464
|
json: {
|
|
14465
14465
|
token: string;
|
|
14466
|
-
token_type_hint?: "
|
|
14466
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14467
14467
|
client_id?: string | undefined;
|
|
14468
14468
|
client_secret?: string | undefined;
|
|
14469
14469
|
};
|
|
@@ -14475,14 +14475,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14475
14475
|
input: {
|
|
14476
14476
|
form: {
|
|
14477
14477
|
token: string;
|
|
14478
|
-
token_type_hint?: "
|
|
14478
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14479
14479
|
client_id?: string | undefined;
|
|
14480
14480
|
client_secret?: string | undefined;
|
|
14481
14481
|
};
|
|
14482
14482
|
} & {
|
|
14483
14483
|
json: {
|
|
14484
14484
|
token: string;
|
|
14485
|
-
token_type_hint?: "
|
|
14485
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14486
14486
|
client_id?: string | undefined;
|
|
14487
14487
|
client_secret?: string | undefined;
|
|
14488
14488
|
};
|
|
@@ -14497,14 +14497,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14497
14497
|
input: {
|
|
14498
14498
|
form: {
|
|
14499
14499
|
token: string;
|
|
14500
|
-
token_type_hint?: "
|
|
14500
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14501
14501
|
client_id?: string | undefined;
|
|
14502
14502
|
client_secret?: string | undefined;
|
|
14503
14503
|
};
|
|
14504
14504
|
} & {
|
|
14505
14505
|
json: {
|
|
14506
14506
|
token: string;
|
|
14507
|
-
token_type_hint?: "
|
|
14507
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14508
14508
|
client_id?: string | undefined;
|
|
14509
14509
|
client_secret?: string | undefined;
|
|
14510
14510
|
};
|
|
@@ -16231,7 +16231,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16231
16231
|
$get: {
|
|
16232
16232
|
input: {
|
|
16233
16233
|
param: {
|
|
16234
|
-
screen: "signup" | "
|
|
16234
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16235
16235
|
};
|
|
16236
16236
|
} & {
|
|
16237
16237
|
query: {
|
|
@@ -16247,7 +16247,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16247
16247
|
} | {
|
|
16248
16248
|
input: {
|
|
16249
16249
|
param: {
|
|
16250
|
-
screen: "signup" | "
|
|
16250
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16251
16251
|
};
|
|
16252
16252
|
} & {
|
|
16253
16253
|
query: {
|
|
@@ -16263,7 +16263,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16263
16263
|
} | {
|
|
16264
16264
|
input: {
|
|
16265
16265
|
param: {
|
|
16266
|
-
screen: "signup" | "
|
|
16266
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16267
16267
|
};
|
|
16268
16268
|
} & {
|
|
16269
16269
|
query: {
|
|
@@ -16283,7 +16283,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16283
16283
|
$post: {
|
|
16284
16284
|
input: {
|
|
16285
16285
|
param: {
|
|
16286
|
-
screen: "signup" | "login" | "reset-password" | "
|
|
16286
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16287
16287
|
};
|
|
16288
16288
|
} & {
|
|
16289
16289
|
query: {
|
|
@@ -16301,7 +16301,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16301
16301
|
} | {
|
|
16302
16302
|
input: {
|
|
16303
16303
|
param: {
|
|
16304
|
-
screen: "signup" | "login" | "reset-password" | "
|
|
16304
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16305
16305
|
};
|
|
16306
16306
|
} & {
|
|
16307
16307
|
query: {
|
|
@@ -16319,7 +16319,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16319
16319
|
} | {
|
|
16320
16320
|
input: {
|
|
16321
16321
|
param: {
|
|
16322
|
-
screen: "signup" | "login" | "reset-password" | "
|
|
16322
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16323
16323
|
};
|
|
16324
16324
|
} & {
|
|
16325
16325
|
query: {
|