authhero 7.1.0 → 7.2.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.
Files changed (30) hide show
  1. package/dist/authhero.cjs +102 -102
  2. package/dist/authhero.d.ts +58 -63
  3. package/dist/authhero.mjs +5041 -5036
  4. package/dist/stats.html +1 -1
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  7. package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
  8. package/dist/types/helpers/signing-keys.d.ts +1 -0
  9. package/dist/types/index.d.ts +58 -58
  10. package/dist/types/routes/auth-api/index.d.ts +28 -28
  11. package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
  12. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  13. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  14. package/dist/types/routes/auth-api/token.d.ts +10 -10
  15. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  16. package/dist/types/routes/management-api/clients.d.ts +7 -7
  17. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  18. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  19. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  20. package/dist/types/routes/management-api/index.d.ts +30 -30
  21. package/dist/types/routes/management-api/logs.d.ts +3 -3
  22. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  23. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  24. package/dist/types/routes/management-api/users.d.ts +2 -2
  25. package/dist/types/routes/universal-login/common.d.ts +2 -2
  26. package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
  27. package/dist/types/types/Bindings.d.ts +0 -6
  28. package/dist/types/utils/jwks.d.ts +10 -11
  29. package/dist/types/utils/jwt.d.ts +21 -1
  30. package/package.json +2 -2
@@ -1460,14 +1460,9 @@ type StrategyHandler = {
1460
1460
  disableEmbeddedBrowsers?: boolean;
1461
1461
  };
1462
1462
 
1463
- declare type Fetcher = {
1464
- fetch: typeof fetch;
1465
- };
1466
1463
  type Bindings = {
1467
1464
  ENVIRONMENT: string;
1468
1465
  AUTH_URL: string;
1469
- JWKS_URL?: string;
1470
- JWKS_SERVICE?: Fetcher;
1471
1466
  ISSUER: string;
1472
1467
  UNIVERSAL_LOGIN_URL?: string;
1473
1468
  OAUTH_API_URL?: string;
@@ -2775,7 +2770,7 @@ declare function init(config: AuthHeroConfig): {
2775
2770
  };
2776
2771
  } & {
2777
2772
  json: {
2778
- type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2773
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2779
2774
  phone_number?: string | undefined;
2780
2775
  totp_secret?: string | undefined;
2781
2776
  credential_id?: string | undefined;
@@ -2915,7 +2910,7 @@ declare function init(config: AuthHeroConfig): {
2915
2910
  };
2916
2911
  };
2917
2912
  output: {
2918
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2913
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2919
2914
  enabled: boolean;
2920
2915
  trial_expired?: boolean | undefined;
2921
2916
  }[];
@@ -3070,7 +3065,7 @@ declare function init(config: AuthHeroConfig): {
3070
3065
  $get: {
3071
3066
  input: {
3072
3067
  param: {
3073
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3068
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3074
3069
  };
3075
3070
  } & {
3076
3071
  header: {
@@ -3078,7 +3073,7 @@ declare function init(config: AuthHeroConfig): {
3078
3073
  };
3079
3074
  };
3080
3075
  output: {
3081
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3076
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3082
3077
  enabled: boolean;
3083
3078
  trial_expired?: boolean | undefined;
3084
3079
  };
@@ -3091,7 +3086,7 @@ declare function init(config: AuthHeroConfig): {
3091
3086
  $put: {
3092
3087
  input: {
3093
3088
  param: {
3094
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3089
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3095
3090
  };
3096
3091
  } & {
3097
3092
  header: {
@@ -3103,7 +3098,7 @@ declare function init(config: AuthHeroConfig): {
3103
3098
  };
3104
3099
  };
3105
3100
  output: {
3106
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3101
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3107
3102
  enabled: boolean;
3108
3103
  trial_expired?: boolean | undefined;
3109
3104
  };
@@ -4036,8 +4031,8 @@ declare function init(config: AuthHeroConfig): {
4036
4031
  };
4037
4032
  } & {
4038
4033
  json: {
4039
- show_as_button?: boolean | undefined;
4040
4034
  assign_membership_on_login?: boolean | undefined;
4035
+ show_as_button?: boolean | undefined;
4041
4036
  is_signup_enabled?: boolean | undefined;
4042
4037
  };
4043
4038
  };
@@ -9339,7 +9334,7 @@ declare function init(config: AuthHeroConfig): {
9339
9334
  };
9340
9335
  };
9341
9336
  output: {
9342
- prompt: "signup" | "status" | "mfa" | "organizations" | "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";
9337
+ prompt: "mfa" | "organizations" | "status" | "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";
9343
9338
  language: string;
9344
9339
  }[];
9345
9340
  outputFormat: "json";
@@ -9377,7 +9372,7 @@ declare function init(config: AuthHeroConfig): {
9377
9372
  $get: {
9378
9373
  input: {
9379
9374
  param: {
9380
- prompt: "signup" | "status" | "mfa" | "organizations" | "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";
9375
+ prompt: "mfa" | "organizations" | "status" | "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";
9381
9376
  language: string;
9382
9377
  };
9383
9378
  } & {
@@ -9399,7 +9394,7 @@ declare function init(config: AuthHeroConfig): {
9399
9394
  $put: {
9400
9395
  input: {
9401
9396
  param: {
9402
- prompt: "signup" | "status" | "mfa" | "organizations" | "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";
9397
+ prompt: "mfa" | "organizations" | "status" | "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";
9403
9398
  language: string;
9404
9399
  };
9405
9400
  } & {
@@ -9423,7 +9418,7 @@ declare function init(config: AuthHeroConfig): {
9423
9418
  $delete: {
9424
9419
  input: {
9425
9420
  param: {
9426
- prompt: "signup" | "status" | "mfa" | "organizations" | "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";
9421
+ prompt: "mfa" | "organizations" | "status" | "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";
9427
9422
  language: string;
9428
9423
  };
9429
9424
  } & {
@@ -10864,7 +10859,7 @@ declare function init(config: AuthHeroConfig): {
10864
10859
  log_type: string;
10865
10860
  category: "user_action" | "admin_action" | "system" | "api";
10866
10861
  actor: {
10867
- type: "client_credentials" | "user" | "system" | "admin" | "api_key";
10862
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
10868
10863
  id?: string | undefined;
10869
10864
  email?: string | undefined;
10870
10865
  org_id?: string | undefined;
@@ -11512,7 +11507,7 @@ declare function init(config: AuthHeroConfig): {
11512
11507
  };
11513
11508
  };
11514
11509
  output: {
11515
- type: "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" | "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" | "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";
11510
+ type: "festft" | "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" | "fn" | "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" | "i" | "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" | "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";
11516
11511
  date: string;
11517
11512
  isMobile: boolean;
11518
11513
  log_id: string;
@@ -11551,7 +11546,7 @@ declare function init(config: AuthHeroConfig): {
11551
11546
  limit: number;
11552
11547
  length: number;
11553
11548
  logs: {
11554
- type: "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" | "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" | "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";
11549
+ type: "festft" | "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" | "fn" | "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" | "i" | "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" | "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";
11555
11550
  date: string;
11556
11551
  isMobile: boolean;
11557
11552
  log_id: string;
@@ -11605,7 +11600,7 @@ declare function init(config: AuthHeroConfig): {
11605
11600
  };
11606
11601
  };
11607
11602
  output: {
11608
- type: "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" | "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" | "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";
11603
+ type: "festft" | "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" | "fn" | "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" | "i" | "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" | "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";
11609
11604
  date: string;
11610
11605
  isMobile: boolean;
11611
11606
  log_id: string;
@@ -11993,7 +11988,7 @@ declare function init(config: AuthHeroConfig): {
11993
11988
  addons?: {
11994
11989
  [x: string]: any;
11995
11990
  } | undefined;
11996
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
11991
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
11997
11992
  client_metadata?: {
11998
11993
  [x: string]: string;
11999
11994
  } | undefined;
@@ -12089,7 +12084,7 @@ declare function init(config: AuthHeroConfig): {
12089
12084
  addons?: {
12090
12085
  [x: string]: any;
12091
12086
  } | undefined;
12092
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12087
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12093
12088
  client_metadata?: {
12094
12089
  [x: string]: string;
12095
12090
  } | undefined;
@@ -12200,7 +12195,7 @@ declare function init(config: AuthHeroConfig): {
12200
12195
  addons?: {
12201
12196
  [x: string]: any;
12202
12197
  } | undefined;
12203
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12198
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12204
12199
  client_metadata?: {
12205
12200
  [x: string]: string;
12206
12201
  } | undefined;
@@ -12310,7 +12305,7 @@ declare function init(config: AuthHeroConfig): {
12310
12305
  custom_login_page_preview?: string | undefined;
12311
12306
  form_template?: string | undefined;
12312
12307
  addons?: Record<string, any> | undefined;
12313
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12308
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12314
12309
  client_metadata?: Record<string, string> | undefined;
12315
12310
  hide_sign_up_disabled_error?: boolean | undefined;
12316
12311
  mobile?: Record<string, any> | undefined;
@@ -12390,7 +12385,7 @@ declare function init(config: AuthHeroConfig): {
12390
12385
  addons?: {
12391
12386
  [x: string]: any;
12392
12387
  } | undefined;
12393
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12388
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12394
12389
  client_metadata?: {
12395
12390
  [x: string]: string;
12396
12391
  } | undefined;
@@ -12479,7 +12474,7 @@ declare function init(config: AuthHeroConfig): {
12479
12474
  custom_login_page_preview?: string | undefined;
12480
12475
  form_template?: string | undefined;
12481
12476
  addons?: Record<string, any> | undefined;
12482
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12477
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12483
12478
  client_metadata?: Record<string, string> | undefined;
12484
12479
  hide_sign_up_disabled_error?: boolean | undefined;
12485
12480
  mobile?: Record<string, any> | undefined;
@@ -12559,7 +12554,7 @@ declare function init(config: AuthHeroConfig): {
12559
12554
  addons?: {
12560
12555
  [x: string]: any;
12561
12556
  } | undefined;
12562
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12557
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12563
12558
  client_metadata?: {
12564
12559
  [x: string]: string;
12565
12560
  } | undefined;
@@ -13823,7 +13818,7 @@ declare function init(config: AuthHeroConfig): {
13823
13818
  };
13824
13819
  };
13825
13820
  output: {
13826
- type: "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" | "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" | "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";
13821
+ type: "festft" | "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" | "fn" | "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" | "i" | "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" | "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";
13827
13822
  date: string;
13828
13823
  isMobile: boolean;
13829
13824
  log_id: string;
@@ -13862,7 +13857,7 @@ declare function init(config: AuthHeroConfig): {
13862
13857
  limit: number;
13863
13858
  length: number;
13864
13859
  logs: {
13865
- type: "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" | "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" | "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";
13860
+ type: "festft" | "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" | "fn" | "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" | "i" | "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" | "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";
13866
13861
  date: string;
13867
13862
  isMobile: boolean;
13868
13863
  log_id: string;
@@ -14702,7 +14697,7 @@ declare function init(config: AuthHeroConfig): {
14702
14697
  type: "auth0_managed_certs" | "self_managed_certs";
14703
14698
  custom_domain_id: string;
14704
14699
  primary: boolean;
14705
- status: "disabled" | "pending" | "ready" | "pending_verification";
14700
+ status: "pending" | "ready" | "disabled" | "pending_verification";
14706
14701
  verification_method?: "txt" | undefined;
14707
14702
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14708
14703
  domain_metadata?: {
@@ -14743,7 +14738,7 @@ declare function init(config: AuthHeroConfig): {
14743
14738
  type: "auth0_managed_certs" | "self_managed_certs";
14744
14739
  custom_domain_id: string;
14745
14740
  primary: boolean;
14746
- status: "disabled" | "pending" | "ready" | "pending_verification";
14741
+ status: "pending" | "ready" | "disabled" | "pending_verification";
14747
14742
  verification_method?: "txt" | undefined;
14748
14743
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14749
14744
  domain_metadata?: {
@@ -14807,7 +14802,7 @@ declare function init(config: AuthHeroConfig): {
14807
14802
  type: "auth0_managed_certs" | "self_managed_certs";
14808
14803
  custom_domain_id: string;
14809
14804
  primary: boolean;
14810
- status: "disabled" | "pending" | "ready" | "pending_verification";
14805
+ status: "pending" | "ready" | "disabled" | "pending_verification";
14811
14806
  verification_method?: "txt" | undefined;
14812
14807
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14813
14808
  domain_metadata?: {
@@ -14854,7 +14849,7 @@ declare function init(config: AuthHeroConfig): {
14854
14849
  type: "auth0_managed_certs" | "self_managed_certs";
14855
14850
  custom_domain_id: string;
14856
14851
  primary: boolean;
14857
- status: "disabled" | "pending" | "ready" | "pending_verification";
14852
+ status: "pending" | "ready" | "disabled" | "pending_verification";
14858
14853
  verification_method?: "txt" | undefined;
14859
14854
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14860
14855
  domain_metadata?: {
@@ -14900,7 +14895,7 @@ declare function init(config: AuthHeroConfig): {
14900
14895
  type: "auth0_managed_certs" | "self_managed_certs";
14901
14896
  custom_domain_id: string;
14902
14897
  primary: boolean;
14903
- status: "disabled" | "pending" | "ready" | "pending_verification";
14898
+ status: "pending" | "ready" | "disabled" | "pending_verification";
14904
14899
  verification_method?: "txt" | undefined;
14905
14900
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14906
14901
  domain_metadata?: {
@@ -14941,7 +14936,7 @@ declare function init(config: AuthHeroConfig): {
14941
14936
  type: "auth0_managed_certs" | "self_managed_certs";
14942
14937
  custom_domain_id: string;
14943
14938
  primary: boolean;
14944
- status: "disabled" | "pending" | "ready" | "pending_verification";
14939
+ status: "pending" | "ready" | "disabled" | "pending_verification";
14945
14940
  verification_method?: "txt" | undefined;
14946
14941
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14947
14942
  domain_metadata?: {
@@ -16513,7 +16508,7 @@ declare function init(config: AuthHeroConfig): {
16513
16508
  scope?: string | undefined;
16514
16509
  grant_types?: string[] | undefined;
16515
16510
  response_types?: string[] | undefined;
16516
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
16511
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16517
16512
  jwks_uri?: string | undefined;
16518
16513
  jwks?: Record<string, unknown> | undefined;
16519
16514
  software_id?: string | undefined;
@@ -16602,7 +16597,7 @@ declare function init(config: AuthHeroConfig): {
16602
16597
  scope?: string | undefined;
16603
16598
  grant_types?: string[] | undefined;
16604
16599
  response_types?: string[] | undefined;
16605
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
16600
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16606
16601
  jwks_uri?: string | undefined;
16607
16602
  jwks?: Record<string, unknown> | undefined;
16608
16603
  software_id?: string | undefined;
@@ -16948,16 +16943,16 @@ declare function init(config: AuthHeroConfig): {
16948
16943
  email: string;
16949
16944
  send: "code" | "link";
16950
16945
  authParams: {
16951
- response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16952
- response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16946
+ organization?: string | undefined;
16947
+ audience?: string | undefined;
16953
16948
  scope?: string | undefined;
16954
16949
  username?: string | undefined;
16955
- audience?: string | undefined;
16956
16950
  state?: string | undefined;
16957
- organization?: string | undefined;
16958
- nonce?: string | undefined;
16959
16951
  act_as?: string | undefined;
16952
+ response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16953
+ response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16960
16954
  redirect_uri?: string | undefined;
16955
+ nonce?: string | undefined;
16961
16956
  prompt?: string | undefined;
16962
16957
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16963
16958
  code_challenge?: string | undefined;
@@ -16984,16 +16979,16 @@ declare function init(config: AuthHeroConfig): {
16984
16979
  phone_number: string;
16985
16980
  send: "code" | "link";
16986
16981
  authParams: {
16987
- response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16988
- response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16982
+ organization?: string | undefined;
16983
+ audience?: string | undefined;
16989
16984
  scope?: string | undefined;
16990
16985
  username?: string | undefined;
16991
- audience?: string | undefined;
16992
16986
  state?: string | undefined;
16993
- organization?: string | undefined;
16994
- nonce?: string | undefined;
16995
16987
  act_as?: string | undefined;
16988
+ response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16989
+ response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16996
16990
  redirect_uri?: string | undefined;
16991
+ nonce?: string | undefined;
16997
16992
  prompt?: string | undefined;
16998
16993
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16999
16994
  code_challenge?: string | undefined;
@@ -17128,14 +17123,14 @@ declare function init(config: AuthHeroConfig): {
17128
17123
  input: {
17129
17124
  form: {
17130
17125
  token: string;
17131
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17126
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17132
17127
  client_id?: string | undefined;
17133
17128
  client_secret?: string | undefined;
17134
17129
  };
17135
17130
  } & {
17136
17131
  json: {
17137
17132
  token: string;
17138
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17133
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17139
17134
  client_id?: string | undefined;
17140
17135
  client_secret?: string | undefined;
17141
17136
  };
@@ -17147,14 +17142,14 @@ declare function init(config: AuthHeroConfig): {
17147
17142
  input: {
17148
17143
  form: {
17149
17144
  token: string;
17150
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17145
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17151
17146
  client_id?: string | undefined;
17152
17147
  client_secret?: string | undefined;
17153
17148
  };
17154
17149
  } & {
17155
17150
  json: {
17156
17151
  token: string;
17157
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17152
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17158
17153
  client_id?: string | undefined;
17159
17154
  client_secret?: string | undefined;
17160
17155
  };
@@ -17169,14 +17164,14 @@ declare function init(config: AuthHeroConfig): {
17169
17164
  input: {
17170
17165
  form: {
17171
17166
  token: string;
17172
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17167
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17173
17168
  client_id?: string | undefined;
17174
17169
  client_secret?: string | undefined;
17175
17170
  };
17176
17171
  } & {
17177
17172
  json: {
17178
17173
  token: string;
17179
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17174
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17180
17175
  client_id?: string | undefined;
17181
17176
  client_secret?: string | undefined;
17182
17177
  };
@@ -17226,7 +17221,7 @@ declare function init(config: AuthHeroConfig): {
17226
17221
  client_id: string;
17227
17222
  username: string;
17228
17223
  otp: string;
17229
- realm: "email" | "sms";
17224
+ realm: "sms" | "email";
17230
17225
  } | {
17231
17226
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17232
17227
  subject_token: string;
@@ -17273,7 +17268,7 @@ declare function init(config: AuthHeroConfig): {
17273
17268
  client_id: string;
17274
17269
  username: string;
17275
17270
  otp: string;
17276
- realm: "email" | "sms";
17271
+ realm: "sms" | "email";
17277
17272
  } | {
17278
17273
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17279
17274
  subject_token: string;
@@ -17325,7 +17320,7 @@ declare function init(config: AuthHeroConfig): {
17325
17320
  client_id: string;
17326
17321
  username: string;
17327
17322
  otp: string;
17328
- realm: "email" | "sms";
17323
+ realm: "sms" | "email";
17329
17324
  } | {
17330
17325
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17331
17326
  subject_token: string;
@@ -17372,7 +17367,7 @@ declare function init(config: AuthHeroConfig): {
17372
17367
  client_id: string;
17373
17368
  username: string;
17374
17369
  otp: string;
17375
- realm: "email" | "sms";
17370
+ realm: "sms" | "email";
17376
17371
  } | {
17377
17372
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17378
17373
  subject_token: string;
@@ -17432,7 +17427,7 @@ declare function init(config: AuthHeroConfig): {
17432
17427
  client_id: string;
17433
17428
  username: string;
17434
17429
  otp: string;
17435
- realm: "email" | "sms";
17430
+ realm: "sms" | "email";
17436
17431
  } | {
17437
17432
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17438
17433
  subject_token: string;
@@ -17479,7 +17474,7 @@ declare function init(config: AuthHeroConfig): {
17479
17474
  client_id: string;
17480
17475
  username: string;
17481
17476
  otp: string;
17482
- realm: "email" | "sms";
17477
+ realm: "sms" | "email";
17483
17478
  } | {
17484
17479
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17485
17480
  subject_token: string;
@@ -17534,7 +17529,7 @@ declare function init(config: AuthHeroConfig): {
17534
17529
  client_id: string;
17535
17530
  username: string;
17536
17531
  otp: string;
17537
- realm: "email" | "sms";
17532
+ realm: "sms" | "email";
17538
17533
  } | {
17539
17534
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17540
17535
  subject_token: string;
@@ -17581,7 +17576,7 @@ declare function init(config: AuthHeroConfig): {
17581
17576
  client_id: string;
17582
17577
  username: string;
17583
17578
  otp: string;
17584
- realm: "email" | "sms";
17579
+ realm: "sms" | "email";
17585
17580
  } | {
17586
17581
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17587
17582
  subject_token: string;
@@ -17636,7 +17631,7 @@ declare function init(config: AuthHeroConfig): {
17636
17631
  client_id: string;
17637
17632
  username: string;
17638
17633
  otp: string;
17639
- realm: "email" | "sms";
17634
+ realm: "sms" | "email";
17640
17635
  } | {
17641
17636
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17642
17637
  subject_token: string;
@@ -17683,7 +17678,7 @@ declare function init(config: AuthHeroConfig): {
17683
17678
  client_id: string;
17684
17679
  username: string;
17685
17680
  otp: string;
17686
- realm: "email" | "sms";
17681
+ realm: "sms" | "email";
17687
17682
  } | {
17688
17683
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17689
17684
  subject_token: string;