authhero 5.18.0 → 5.19.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 (48) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +136 -129
  3. package/dist/authhero.d.ts +309 -104
  4. package/dist/authhero.mjs +10431 -9866
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/passwordless.d.ts +4 -4
  8. package/dist/types/helpers/consent.d.ts +31 -0
  9. package/dist/types/helpers/control-plane-sync-events.d.ts +67 -0
  10. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  11. package/dist/types/helpers/default-destinations.d.ts +11 -0
  12. package/dist/types/helpers/outbox-destinations/control-plane-sync.d.ts +35 -0
  13. package/dist/types/helpers/outbox-destinations/logs.d.ts +2 -0
  14. package/dist/types/index.d.ts +178 -101
  15. package/dist/types/routes/auth-api/index.d.ts +24 -24
  16. package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
  17. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  18. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  19. package/dist/types/routes/auth-api/token.d.ts +10 -10
  20. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  21. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  22. package/dist/types/routes/management-api/branding.d.ts +9 -9
  23. package/dist/types/routes/management-api/clients.d.ts +9 -9
  24. package/dist/types/routes/management-api/connections.d.ts +5 -5
  25. package/dist/types/routes/management-api/custom-domains.d.ts +8 -8
  26. package/dist/types/routes/management-api/email-templates.d.ts +15 -15
  27. package/dist/types/routes/management-api/grants.d.ts +80 -0
  28. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  29. package/dist/types/routes/management-api/index.d.ts +143 -69
  30. package/dist/types/routes/management-api/logs.d.ts +3 -3
  31. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  32. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  33. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  34. package/dist/types/routes/management-api/proxy-routes.d.ts +1 -0
  35. package/dist/types/routes/management-api/themes.d.ts +6 -6
  36. package/dist/types/routes/management-api/users.d.ts +2 -2
  37. package/dist/types/routes/proxy-control-plane/index.d.ts +34 -1
  38. package/dist/types/routes/universal-login/common.d.ts +10 -10
  39. package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
  40. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  41. package/dist/types/routes/universal-login/index.d.ts +2 -2
  42. package/dist/types/routes/universal-login/screens/consent.d.ts +9 -0
  43. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  44. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  45. package/dist/types/state-machines/login-session.d.ts +12 -1
  46. package/dist/types/types/AuthHeroConfig.d.ts +26 -0
  47. package/dist/types/types/IdToken.d.ts +1 -1
  48. package/package.json +5 -5
@@ -22,6 +22,9 @@ export type { RunOutboxRelayConfig } from "./helpers/run-outbox-relay";
22
22
  export { LogsDestination } from "./helpers/outbox-destinations/logs";
23
23
  export { WebhookDestination, type WebhookDestinationOptions, type GetServiceToken, } from "./helpers/outbox-destinations/webhooks";
24
24
  export { RegistrationFinalizerDestination } from "./helpers/outbox-destinations/registration-finalizer";
25
+ export { ControlPlaneSyncDestination, type ControlPlaneSyncDestinationOptions, } from "./helpers/outbox-destinations/control-plane-sync";
26
+ export { type SyncEvent, type SyncEntity, type SyncOp, CONTROL_PLANE_SYNC_EVENT_PREFIX, } from "./helpers/control-plane-sync-events";
27
+ export { createApplySyncEvents, type CreateApplySyncEventsOptions, } from "./routes/proxy-control-plane";
25
28
  export { addEntityHooks } from "./helpers/entity-hooks-wrapper";
26
29
  export { seed, MANAGEMENT_API_SCOPES } from "./seed";
27
30
  export type { SeedOptions, SeedResult } from "./seed";
@@ -80,7 +83,7 @@ export declare function init(config: AuthHeroConfig): {
80
83
  };
81
84
  } & {
82
85
  json: {
83
- type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
86
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
84
87
  phone_number?: string | undefined;
85
88
  totp_secret?: string | undefined;
86
89
  credential_id?: string | undefined;
@@ -220,7 +223,7 @@ export declare function init(config: AuthHeroConfig): {
220
223
  };
221
224
  };
222
225
  output: {
223
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
226
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
224
227
  enabled: boolean;
225
228
  trial_expired?: boolean | undefined;
226
229
  }[];
@@ -375,7 +378,7 @@ export declare function init(config: AuthHeroConfig): {
375
378
  $get: {
376
379
  input: {
377
380
  param: {
378
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
381
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
379
382
  };
380
383
  } & {
381
384
  header: {
@@ -383,7 +386,7 @@ export declare function init(config: AuthHeroConfig): {
383
386
  };
384
387
  };
385
388
  output: {
386
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
389
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
387
390
  enabled: boolean;
388
391
  trial_expired?: boolean | undefined;
389
392
  };
@@ -396,7 +399,7 @@ export declare function init(config: AuthHeroConfig): {
396
399
  $put: {
397
400
  input: {
398
401
  param: {
399
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
402
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
400
403
  };
401
404
  } & {
402
405
  header: {
@@ -408,7 +411,7 @@ export declare function init(config: AuthHeroConfig): {
408
411
  };
409
412
  };
410
413
  output: {
411
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
414
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
412
415
  enabled: boolean;
413
416
  trial_expired?: boolean | undefined;
414
417
  };
@@ -1341,8 +1344,8 @@ export declare function init(config: AuthHeroConfig): {
1341
1344
  };
1342
1345
  } & {
1343
1346
  json: {
1344
- assign_membership_on_login?: boolean | undefined;
1345
1347
  show_as_button?: boolean | undefined;
1348
+ assign_membership_on_login?: boolean | undefined;
1346
1349
  is_signup_enabled?: boolean | undefined;
1347
1350
  };
1348
1351
  };
@@ -6644,7 +6647,7 @@ export declare function init(config: AuthHeroConfig): {
6644
6647
  };
6645
6648
  };
6646
6649
  output: {
6647
- prompt: "common" | "status" | "organizations" | "signup" | "mfa" | "invitation" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6650
+ 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";
6648
6651
  language: string;
6649
6652
  }[];
6650
6653
  outputFormat: "json";
@@ -6682,7 +6685,7 @@ export declare function init(config: AuthHeroConfig): {
6682
6685
  $get: {
6683
6686
  input: {
6684
6687
  param: {
6685
- prompt: "common" | "status" | "organizations" | "signup" | "mfa" | "invitation" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6688
+ 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";
6686
6689
  language: string;
6687
6690
  };
6688
6691
  } & {
@@ -6704,7 +6707,7 @@ export declare function init(config: AuthHeroConfig): {
6704
6707
  $put: {
6705
6708
  input: {
6706
6709
  param: {
6707
- prompt: "common" | "status" | "organizations" | "signup" | "mfa" | "invitation" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6710
+ 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";
6708
6711
  language: string;
6709
6712
  };
6710
6713
  } & {
@@ -6728,7 +6731,7 @@ export declare function init(config: AuthHeroConfig): {
6728
6731
  $delete: {
6729
6732
  input: {
6730
6733
  param: {
6731
- prompt: "common" | "status" | "organizations" | "signup" | "mfa" | "invitation" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6734
+ 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";
6732
6735
  language: string;
6733
6736
  };
6734
6737
  } & {
@@ -6867,7 +6870,7 @@ export declare function init(config: AuthHeroConfig): {
6867
6870
  } | undefined;
6868
6871
  } | undefined;
6869
6872
  passkey_options?: {
6870
- challenge_ui?: "button" | "both" | "autofill" | undefined;
6873
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
6871
6874
  local_enrollment_enabled?: boolean | undefined;
6872
6875
  progressive_enrollment_enabled?: boolean | undefined;
6873
6876
  } | undefined;
@@ -7001,7 +7004,7 @@ export declare function init(config: AuthHeroConfig): {
7001
7004
  } | undefined;
7002
7005
  } | undefined;
7003
7006
  passkey_options?: {
7004
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7007
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7005
7008
  local_enrollment_enabled?: boolean | undefined;
7006
7009
  progressive_enrollment_enabled?: boolean | undefined;
7007
7010
  } | undefined;
@@ -7150,7 +7153,7 @@ export declare function init(config: AuthHeroConfig): {
7150
7153
  } | undefined;
7151
7154
  } | undefined;
7152
7155
  passkey_options?: {
7153
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7156
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7154
7157
  local_enrollment_enabled?: boolean | undefined;
7155
7158
  progressive_enrollment_enabled?: boolean | undefined;
7156
7159
  } | undefined;
@@ -7329,7 +7332,7 @@ export declare function init(config: AuthHeroConfig): {
7329
7332
  } | undefined;
7330
7333
  } | undefined;
7331
7334
  passkey_options?: {
7332
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7335
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7333
7336
  local_enrollment_enabled?: boolean | undefined;
7334
7337
  progressive_enrollment_enabled?: boolean | undefined;
7335
7338
  } | undefined;
@@ -7487,7 +7490,7 @@ export declare function init(config: AuthHeroConfig): {
7487
7490
  } | undefined;
7488
7491
  } | undefined;
7489
7492
  passkey_options?: {
7490
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7493
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7491
7494
  local_enrollment_enabled?: boolean | undefined;
7492
7495
  progressive_enrollment_enabled?: boolean | undefined;
7493
7496
  } | undefined;
@@ -8477,7 +8480,7 @@ export declare function init(config: AuthHeroConfig): {
8477
8480
  created_at: string;
8478
8481
  updated_at: string;
8479
8482
  name: string;
8480
- provider: "auth0" | "cognito" | "okta" | "oidc";
8483
+ provider: "auth0" | "oidc" | "cognito" | "okta";
8481
8484
  connection: string;
8482
8485
  enabled: boolean;
8483
8486
  credentials: {
@@ -8509,7 +8512,7 @@ export declare function init(config: AuthHeroConfig): {
8509
8512
  created_at: string;
8510
8513
  updated_at: string;
8511
8514
  name: string;
8512
- provider: "auth0" | "cognito" | "okta" | "oidc";
8515
+ provider: "auth0" | "oidc" | "cognito" | "okta";
8513
8516
  connection: string;
8514
8517
  enabled: boolean;
8515
8518
  credentials: {
@@ -8535,7 +8538,7 @@ export declare function init(config: AuthHeroConfig): {
8535
8538
  } & {
8536
8539
  json: {
8537
8540
  name: string;
8538
- provider: "auth0" | "cognito" | "okta" | "oidc";
8541
+ provider: "auth0" | "oidc" | "cognito" | "okta";
8539
8542
  connection: string;
8540
8543
  credentials: {
8541
8544
  domain: string;
@@ -8552,7 +8555,7 @@ export declare function init(config: AuthHeroConfig): {
8552
8555
  created_at: string;
8553
8556
  updated_at: string;
8554
8557
  name: string;
8555
- provider: "auth0" | "cognito" | "okta" | "oidc";
8558
+ provider: "auth0" | "oidc" | "cognito" | "okta";
8556
8559
  connection: string;
8557
8560
  enabled: boolean;
8558
8561
  credentials: {
@@ -8583,7 +8586,7 @@ export declare function init(config: AuthHeroConfig): {
8583
8586
  json: {
8584
8587
  id?: string | undefined;
8585
8588
  name?: string | undefined;
8586
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8589
+ provider?: "auth0" | "oidc" | "cognito" | "okta" | undefined;
8587
8590
  connection?: string | undefined;
8588
8591
  enabled?: boolean | undefined;
8589
8592
  credentials?: {
@@ -8599,7 +8602,7 @@ export declare function init(config: AuthHeroConfig): {
8599
8602
  created_at: string;
8600
8603
  updated_at: string;
8601
8604
  name: string;
8602
- provider: "auth0" | "cognito" | "okta" | "oidc";
8605
+ provider: "auth0" | "oidc" | "cognito" | "okta";
8603
8606
  connection: string;
8604
8607
  enabled: boolean;
8605
8608
  credentials: {
@@ -8817,7 +8820,7 @@ export declare function init(config: AuthHeroConfig): {
8817
8820
  };
8818
8821
  };
8819
8822
  output: {
8820
- type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8823
+ 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" | "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" | "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";
8821
8824
  date: string;
8822
8825
  isMobile: boolean;
8823
8826
  log_id: string;
@@ -8856,7 +8859,7 @@ export declare function init(config: AuthHeroConfig): {
8856
8859
  limit: number;
8857
8860
  length: number;
8858
8861
  logs: {
8859
- type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8862
+ 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" | "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" | "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";
8860
8863
  date: string;
8861
8864
  isMobile: boolean;
8862
8865
  log_id: string;
@@ -8910,7 +8913,7 @@ export declare function init(config: AuthHeroConfig): {
8910
8913
  };
8911
8914
  };
8912
8915
  output: {
8913
- type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8916
+ 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" | "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" | "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";
8914
8917
  date: string;
8915
8918
  isMobile: boolean;
8916
8919
  log_id: string;
@@ -8979,6 +8982,80 @@ export declare function init(config: AuthHeroConfig): {
8979
8982
  };
8980
8983
  };
8981
8984
  }, "/client-registration-tokens"> & import("hono/types").MergeSchemaPath<{
8985
+ "/": {
8986
+ $get: {
8987
+ input: {
8988
+ query: {
8989
+ per_page?: string | undefined;
8990
+ page?: string | undefined;
8991
+ include_totals?: string | undefined;
8992
+ user_id?: string | undefined;
8993
+ client_id?: string | undefined;
8994
+ audience?: string | undefined;
8995
+ };
8996
+ } & {
8997
+ header: {
8998
+ "tenant-id"?: string | undefined;
8999
+ };
9000
+ };
9001
+ output: {
9002
+ user_id: string;
9003
+ clientID: string;
9004
+ scope: string[];
9005
+ id: string;
9006
+ audience?: string | undefined;
9007
+ }[] | {
9008
+ start: number;
9009
+ limit: number;
9010
+ length: number;
9011
+ grants: {
9012
+ user_id: string;
9013
+ clientID: string;
9014
+ scope: string[];
9015
+ id: string;
9016
+ audience?: string | undefined;
9017
+ }[];
9018
+ total?: number | undefined;
9019
+ };
9020
+ outputFormat: "json";
9021
+ status: 200;
9022
+ };
9023
+ };
9024
+ } & {
9025
+ "/:id": {
9026
+ $delete: {
9027
+ input: {
9028
+ param: {
9029
+ id: string;
9030
+ };
9031
+ } & {
9032
+ header: {
9033
+ "tenant-id"?: string | undefined;
9034
+ };
9035
+ };
9036
+ output: {};
9037
+ outputFormat: string;
9038
+ status: 204;
9039
+ };
9040
+ };
9041
+ } & {
9042
+ "/": {
9043
+ $delete: {
9044
+ input: {
9045
+ query: {
9046
+ user_id: string;
9047
+ };
9048
+ } & {
9049
+ header: {
9050
+ "tenant-id"?: string | undefined;
9051
+ };
9052
+ };
9053
+ output: {};
9054
+ outputFormat: string;
9055
+ status: 204;
9056
+ };
9057
+ };
9058
+ }, "/grants"> & import("hono/types").MergeSchemaPath<{
8982
9059
  "/": {
8983
9060
  $get: {
8984
9061
  input: {
@@ -9224,7 +9301,7 @@ export declare function init(config: AuthHeroConfig): {
9224
9301
  addons?: {
9225
9302
  [x: string]: any;
9226
9303
  } | undefined;
9227
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9304
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9228
9305
  client_metadata?: {
9229
9306
  [x: string]: string;
9230
9307
  } | undefined;
@@ -9320,7 +9397,7 @@ export declare function init(config: AuthHeroConfig): {
9320
9397
  addons?: {
9321
9398
  [x: string]: any;
9322
9399
  } | undefined;
9323
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9400
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9324
9401
  client_metadata?: {
9325
9402
  [x: string]: string;
9326
9403
  } | undefined;
@@ -9431,7 +9508,7 @@ export declare function init(config: AuthHeroConfig): {
9431
9508
  addons?: {
9432
9509
  [x: string]: any;
9433
9510
  } | undefined;
9434
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9511
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9435
9512
  client_metadata?: {
9436
9513
  [x: string]: string;
9437
9514
  } | undefined;
@@ -9541,7 +9618,7 @@ export declare function init(config: AuthHeroConfig): {
9541
9618
  custom_login_page_preview?: string | undefined;
9542
9619
  form_template?: string | undefined;
9543
9620
  addons?: Record<string, any> | undefined;
9544
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9621
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9545
9622
  client_metadata?: Record<string, string> | undefined;
9546
9623
  hide_sign_up_disabled_error?: boolean | undefined;
9547
9624
  mobile?: Record<string, any> | undefined;
@@ -9621,7 +9698,7 @@ export declare function init(config: AuthHeroConfig): {
9621
9698
  addons?: {
9622
9699
  [x: string]: any;
9623
9700
  } | undefined;
9624
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9701
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9625
9702
  client_metadata?: {
9626
9703
  [x: string]: string;
9627
9704
  } | undefined;
@@ -9710,7 +9787,7 @@ export declare function init(config: AuthHeroConfig): {
9710
9787
  custom_login_page_preview?: string | undefined;
9711
9788
  form_template?: string | undefined;
9712
9789
  addons?: Record<string, any> | undefined;
9713
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9790
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9714
9791
  client_metadata?: Record<string, string> | undefined;
9715
9792
  hide_sign_up_disabled_error?: boolean | undefined;
9716
9793
  mobile?: Record<string, any> | undefined;
@@ -9790,7 +9867,7 @@ export declare function init(config: AuthHeroConfig): {
9790
9867
  addons?: {
9791
9868
  [x: string]: any;
9792
9869
  } | undefined;
9793
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9870
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9794
9871
  client_metadata?: {
9795
9872
  [x: string]: string;
9796
9873
  } | undefined;
@@ -9959,7 +10036,7 @@ export declare function init(config: AuthHeroConfig): {
9959
10036
  } | undefined;
9960
10037
  } | undefined;
9961
10038
  passkey_options?: {
9962
- challenge_ui?: "button" | "both" | "autofill" | undefined;
10039
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
9963
10040
  local_enrollment_enabled?: boolean | undefined;
9964
10041
  progressive_enrollment_enabled?: boolean | undefined;
9965
10042
  } | undefined;
@@ -10113,7 +10190,7 @@ export declare function init(config: AuthHeroConfig): {
10113
10190
  } | undefined;
10114
10191
  } | undefined;
10115
10192
  passkey_options?: {
10116
- challenge_ui?: "button" | "both" | "autofill" | undefined;
10193
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
10117
10194
  local_enrollment_enabled?: boolean | undefined;
10118
10195
  progressive_enrollment_enabled?: boolean | undefined;
10119
10196
  } | undefined;
@@ -11054,7 +11131,7 @@ export declare function init(config: AuthHeroConfig): {
11054
11131
  };
11055
11132
  };
11056
11133
  output: {
11057
- type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11134
+ 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" | "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" | "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";
11058
11135
  date: string;
11059
11136
  isMobile: boolean;
11060
11137
  log_id: string;
@@ -11093,7 +11170,7 @@ export declare function init(config: AuthHeroConfig): {
11093
11170
  limit: number;
11094
11171
  length: number;
11095
11172
  logs: {
11096
- type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11173
+ 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" | "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" | "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";
11097
11174
  date: string;
11098
11175
  isMobile: boolean;
11099
11176
  log_id: string;
@@ -11408,7 +11485,7 @@ export declare function init(config: AuthHeroConfig): {
11408
11485
  };
11409
11486
  } & {
11410
11487
  json: {
11411
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11488
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11412
11489
  body: string;
11413
11490
  from: string;
11414
11491
  subject: string;
@@ -11429,7 +11506,7 @@ export declare function init(config: AuthHeroConfig): {
11429
11506
  };
11430
11507
  } & {
11431
11508
  json: {
11432
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11509
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11433
11510
  body: string;
11434
11511
  from: string;
11435
11512
  subject: string;
@@ -11441,7 +11518,7 @@ export declare function init(config: AuthHeroConfig): {
11441
11518
  };
11442
11519
  };
11443
11520
  output: {
11444
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11521
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11445
11522
  body: string;
11446
11523
  from: string;
11447
11524
  subject: string;
@@ -11464,7 +11541,7 @@ export declare function init(config: AuthHeroConfig): {
11464
11541
  };
11465
11542
  };
11466
11543
  output: {
11467
- name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11544
+ name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11468
11545
  body: string;
11469
11546
  subject: string;
11470
11547
  }[];
@@ -11477,7 +11554,7 @@ export declare function init(config: AuthHeroConfig): {
11477
11554
  $get: {
11478
11555
  input: {
11479
11556
  param: {
11480
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11557
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11481
11558
  };
11482
11559
  } & {
11483
11560
  header: {
@@ -11490,7 +11567,7 @@ export declare function init(config: AuthHeroConfig): {
11490
11567
  } | {
11491
11568
  input: {
11492
11569
  param: {
11493
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11570
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11494
11571
  };
11495
11572
  } & {
11496
11573
  header: {
@@ -11498,7 +11575,7 @@ export declare function init(config: AuthHeroConfig): {
11498
11575
  };
11499
11576
  };
11500
11577
  output: {
11501
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11578
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11502
11579
  body: string;
11503
11580
  from: string;
11504
11581
  subject: string;
@@ -11517,7 +11594,7 @@ export declare function init(config: AuthHeroConfig): {
11517
11594
  $put: {
11518
11595
  input: {
11519
11596
  param: {
11520
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11597
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11521
11598
  };
11522
11599
  } & {
11523
11600
  header: {
@@ -11525,7 +11602,7 @@ export declare function init(config: AuthHeroConfig): {
11525
11602
  };
11526
11603
  } & {
11527
11604
  json: {
11528
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11605
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11529
11606
  body: string;
11530
11607
  from: string;
11531
11608
  subject: string;
@@ -11537,7 +11614,7 @@ export declare function init(config: AuthHeroConfig): {
11537
11614
  };
11538
11615
  };
11539
11616
  output: {
11540
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11617
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11541
11618
  body: string;
11542
11619
  from: string;
11543
11620
  subject: string;
@@ -11556,7 +11633,7 @@ export declare function init(config: AuthHeroConfig): {
11556
11633
  $patch: {
11557
11634
  input: {
11558
11635
  param: {
11559
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11636
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11560
11637
  };
11561
11638
  } & {
11562
11639
  header: {
@@ -11564,7 +11641,7 @@ export declare function init(config: AuthHeroConfig): {
11564
11641
  };
11565
11642
  } & {
11566
11643
  json: {
11567
- template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11644
+ template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11568
11645
  body?: string | undefined;
11569
11646
  from?: string | undefined;
11570
11647
  subject?: string | undefined;
@@ -11581,7 +11658,7 @@ export declare function init(config: AuthHeroConfig): {
11581
11658
  } | {
11582
11659
  input: {
11583
11660
  param: {
11584
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11661
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11585
11662
  };
11586
11663
  } & {
11587
11664
  header: {
@@ -11589,7 +11666,7 @@ export declare function init(config: AuthHeroConfig): {
11589
11666
  };
11590
11667
  } & {
11591
11668
  json: {
11592
- template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11669
+ template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11593
11670
  body?: string | undefined;
11594
11671
  from?: string | undefined;
11595
11672
  subject?: string | undefined;
@@ -11601,7 +11678,7 @@ export declare function init(config: AuthHeroConfig): {
11601
11678
  };
11602
11679
  };
11603
11680
  output: {
11604
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11681
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11605
11682
  body: string;
11606
11683
  from: string;
11607
11684
  subject: string;
@@ -11878,7 +11955,7 @@ export declare function init(config: AuthHeroConfig): {
11878
11955
  primary: boolean;
11879
11956
  status: "disabled" | "pending" | "pending_verification" | "ready";
11880
11957
  verification_method?: "txt" | undefined;
11881
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
11958
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
11882
11959
  domain_metadata?: {
11883
11960
  [x: string]: string;
11884
11961
  } | undefined;
@@ -11919,7 +11996,7 @@ export declare function init(config: AuthHeroConfig): {
11919
11996
  primary: boolean;
11920
11997
  status: "disabled" | "pending" | "pending_verification" | "ready";
11921
11998
  verification_method?: "txt" | undefined;
11922
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
11999
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
11923
12000
  domain_metadata?: {
11924
12001
  [x: string]: string;
11925
12002
  } | undefined;
@@ -11974,7 +12051,7 @@ export declare function init(config: AuthHeroConfig): {
11974
12051
  domain?: string | undefined;
11975
12052
  type?: "auth0_managed_certs" | "self_managed_certs" | undefined;
11976
12053
  verification_method?: "txt" | undefined;
11977
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12054
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
11978
12055
  domain_metadata?: Record<string, string> | undefined;
11979
12056
  custom_domain_id?: string | undefined;
11980
12057
  primary?: boolean | undefined;
@@ -12001,7 +12078,7 @@ export declare function init(config: AuthHeroConfig): {
12001
12078
  primary: boolean;
12002
12079
  status: "disabled" | "pending" | "pending_verification" | "ready";
12003
12080
  verification_method?: "txt" | undefined;
12004
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12081
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12005
12082
  domain_metadata?: {
12006
12083
  [x: string]: string;
12007
12084
  } | undefined;
@@ -12037,7 +12114,7 @@ export declare function init(config: AuthHeroConfig): {
12037
12114
  custom_domain_id?: string | undefined;
12038
12115
  verification_method?: "txt" | undefined;
12039
12116
  tls_policy?: "recommended" | undefined;
12040
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12117
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12041
12118
  domain_metadata?: Record<string, string> | undefined;
12042
12119
  };
12043
12120
  };
@@ -12048,7 +12125,7 @@ export declare function init(config: AuthHeroConfig): {
12048
12125
  primary: boolean;
12049
12126
  status: "disabled" | "pending" | "pending_verification" | "ready";
12050
12127
  verification_method?: "txt" | undefined;
12051
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12128
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12052
12129
  domain_metadata?: {
12053
12130
  [x: string]: string;
12054
12131
  } | undefined;
@@ -12094,7 +12171,7 @@ export declare function init(config: AuthHeroConfig): {
12094
12171
  primary: boolean;
12095
12172
  status: "disabled" | "pending" | "pending_verification" | "ready";
12096
12173
  verification_method?: "txt" | undefined;
12097
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12174
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12098
12175
  domain_metadata?: {
12099
12176
  [x: string]: string;
12100
12177
  } | undefined;
@@ -12135,7 +12212,7 @@ export declare function init(config: AuthHeroConfig): {
12135
12212
  primary: boolean;
12136
12213
  status: "disabled" | "pending" | "pending_verification" | "ready";
12137
12214
  verification_method?: "txt" | undefined;
12138
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12215
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12139
12216
  domain_metadata?: {
12140
12217
  [x: string]: string;
12141
12218
  } | undefined;
@@ -12181,7 +12258,7 @@ export declare function init(config: AuthHeroConfig): {
12181
12258
  base_focus_color: string;
12182
12259
  base_hover_color: string;
12183
12260
  body_text: string;
12184
- captcha_widget_theme: "auto" | "light" | "dark";
12261
+ captcha_widget_theme: "dark" | "light" | "auto";
12185
12262
  error: string;
12186
12263
  header: string;
12187
12264
  icons: string;
@@ -12232,7 +12309,7 @@ export declare function init(config: AuthHeroConfig): {
12232
12309
  background_color: string;
12233
12310
  background_image_url: string;
12234
12311
  page_layout: "center" | "left" | "right";
12235
- logo_placement?: "widget" | "chip" | "none" | undefined;
12312
+ logo_placement?: "none" | "widget" | "chip" | undefined;
12236
12313
  };
12237
12314
  widget: {
12238
12315
  header_text_alignment: "center" | "left" | "right";
@@ -12271,7 +12348,7 @@ export declare function init(config: AuthHeroConfig): {
12271
12348
  base_focus_color: string;
12272
12349
  base_hover_color: string;
12273
12350
  body_text: string;
12274
- captcha_widget_theme: "auto" | "light" | "dark";
12351
+ captcha_widget_theme: "dark" | "light" | "auto";
12275
12352
  error: string;
12276
12353
  header: string;
12277
12354
  icons: string;
@@ -12322,7 +12399,7 @@ export declare function init(config: AuthHeroConfig): {
12322
12399
  background_color: string;
12323
12400
  background_image_url: string;
12324
12401
  page_layout: "center" | "left" | "right";
12325
- logo_placement?: "widget" | "chip" | "none" | undefined;
12402
+ logo_placement?: "none" | "widget" | "chip" | undefined;
12326
12403
  };
12327
12404
  widget: {
12328
12405
  header_text_alignment: "center" | "left" | "right";
@@ -12350,7 +12427,7 @@ export declare function init(config: AuthHeroConfig): {
12350
12427
  base_focus_color: string;
12351
12428
  base_hover_color: string;
12352
12429
  body_text: string;
12353
- captcha_widget_theme: "auto" | "light" | "dark";
12430
+ captcha_widget_theme: "dark" | "light" | "auto";
12354
12431
  error: string;
12355
12432
  header: string;
12356
12433
  icons: string;
@@ -12401,7 +12478,7 @@ export declare function init(config: AuthHeroConfig): {
12401
12478
  background_color: string;
12402
12479
  background_image_url: string;
12403
12480
  page_layout: "center" | "left" | "right";
12404
- logo_placement?: "widget" | "chip" | "none" | undefined;
12481
+ logo_placement?: "none" | "widget" | "chip" | undefined;
12405
12482
  };
12406
12483
  widget: {
12407
12484
  header_text_alignment: "center" | "left" | "right";
@@ -12440,7 +12517,7 @@ export declare function init(config: AuthHeroConfig): {
12440
12517
  font?: {
12441
12518
  url: string;
12442
12519
  } | undefined;
12443
- dark_mode?: "auto" | "light" | "dark" | undefined;
12520
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12444
12521
  };
12445
12522
  outputFormat: "json";
12446
12523
  status: 200;
@@ -12470,7 +12547,7 @@ export declare function init(config: AuthHeroConfig): {
12470
12547
  font?: {
12471
12548
  url: string;
12472
12549
  } | undefined;
12473
- dark_mode?: "auto" | "light" | "dark" | undefined;
12550
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12474
12551
  };
12475
12552
  };
12476
12553
  output: {
@@ -12489,7 +12566,7 @@ export declare function init(config: AuthHeroConfig): {
12489
12566
  font?: {
12490
12567
  url: string;
12491
12568
  } | undefined;
12492
- dark_mode?: "auto" | "light" | "dark" | undefined;
12569
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12493
12570
  };
12494
12571
  outputFormat: "json";
12495
12572
  status: 200;
@@ -12693,7 +12770,7 @@ export declare function init(config: AuthHeroConfig): {
12693
12770
  output: {
12694
12771
  id: string;
12695
12772
  trigger_id: string;
12696
- status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
12773
+ status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
12697
12774
  results: {
12698
12775
  action_name: string;
12699
12776
  error: {
@@ -13705,7 +13782,7 @@ export declare function init(config: AuthHeroConfig): {
13705
13782
  scope?: string | undefined;
13706
13783
  grant_types?: string[] | undefined;
13707
13784
  response_types?: string[] | undefined;
13708
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13785
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13709
13786
  jwks_uri?: string | undefined;
13710
13787
  jwks?: Record<string, unknown> | undefined;
13711
13788
  software_id?: string | undefined;
@@ -13794,7 +13871,7 @@ export declare function init(config: AuthHeroConfig): {
13794
13871
  scope?: string | undefined;
13795
13872
  grant_types?: string[] | undefined;
13796
13873
  response_types?: string[] | undefined;
13797
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13874
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13798
13875
  jwks_uri?: string | undefined;
13799
13876
  jwks?: Record<string, unknown> | undefined;
13800
13877
  software_id?: string | undefined;
@@ -14143,13 +14220,13 @@ export declare function init(config: AuthHeroConfig): {
14143
14220
  username?: string | undefined;
14144
14221
  state?: string | undefined;
14145
14222
  audience?: string | undefined;
14146
- scope?: string | undefined;
14147
14223
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14148
14224
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14149
- act_as?: string | undefined;
14150
- redirect_uri?: string | undefined;
14225
+ scope?: string | undefined;
14151
14226
  organization?: string | undefined;
14152
14227
  nonce?: string | undefined;
14228
+ redirect_uri?: string | undefined;
14229
+ act_as?: string | undefined;
14153
14230
  prompt?: string | undefined;
14154
14231
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14155
14232
  code_challenge?: string | undefined;
@@ -14179,13 +14256,13 @@ export declare function init(config: AuthHeroConfig): {
14179
14256
  username?: string | undefined;
14180
14257
  state?: string | undefined;
14181
14258
  audience?: string | undefined;
14182
- scope?: string | undefined;
14183
14259
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14184
14260
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14185
- act_as?: string | undefined;
14186
- redirect_uri?: string | undefined;
14261
+ scope?: string | undefined;
14187
14262
  organization?: string | undefined;
14188
14263
  nonce?: string | undefined;
14264
+ redirect_uri?: string | undefined;
14265
+ act_as?: string | undefined;
14189
14266
  prompt?: string | undefined;
14190
14267
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14191
14268
  code_challenge?: string | undefined;
@@ -14320,14 +14397,14 @@ export declare function init(config: AuthHeroConfig): {
14320
14397
  input: {
14321
14398
  form: {
14322
14399
  token: string;
14323
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14400
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14324
14401
  client_id?: string | undefined;
14325
14402
  client_secret?: string | undefined;
14326
14403
  };
14327
14404
  } & {
14328
14405
  json: {
14329
14406
  token: string;
14330
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14407
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14331
14408
  client_id?: string | undefined;
14332
14409
  client_secret?: string | undefined;
14333
14410
  };
@@ -14339,14 +14416,14 @@ export declare function init(config: AuthHeroConfig): {
14339
14416
  input: {
14340
14417
  form: {
14341
14418
  token: string;
14342
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14419
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14343
14420
  client_id?: string | undefined;
14344
14421
  client_secret?: string | undefined;
14345
14422
  };
14346
14423
  } & {
14347
14424
  json: {
14348
14425
  token: string;
14349
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14426
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14350
14427
  client_id?: string | undefined;
14351
14428
  client_secret?: string | undefined;
14352
14429
  };
@@ -14361,14 +14438,14 @@ export declare function init(config: AuthHeroConfig): {
14361
14438
  input: {
14362
14439
  form: {
14363
14440
  token: string;
14364
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14441
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14365
14442
  client_id?: string | undefined;
14366
14443
  client_secret?: string | undefined;
14367
14444
  };
14368
14445
  } & {
14369
14446
  json: {
14370
14447
  token: string;
14371
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14448
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14372
14449
  client_id?: string | undefined;
14373
14450
  client_secret?: string | undefined;
14374
14451
  };
@@ -14418,7 +14495,7 @@ export declare function init(config: AuthHeroConfig): {
14418
14495
  client_id: string;
14419
14496
  username: string;
14420
14497
  otp: string;
14421
- realm: "email" | "sms";
14498
+ realm: "sms" | "email";
14422
14499
  };
14423
14500
  } & {
14424
14501
  json: {
@@ -14454,7 +14531,7 @@ export declare function init(config: AuthHeroConfig): {
14454
14531
  client_id: string;
14455
14532
  username: string;
14456
14533
  otp: string;
14457
- realm: "email" | "sms";
14534
+ realm: "sms" | "email";
14458
14535
  };
14459
14536
  };
14460
14537
  output: {};
@@ -14495,7 +14572,7 @@ export declare function init(config: AuthHeroConfig): {
14495
14572
  client_id: string;
14496
14573
  username: string;
14497
14574
  otp: string;
14498
- realm: "email" | "sms";
14575
+ realm: "sms" | "email";
14499
14576
  };
14500
14577
  } & {
14501
14578
  json: {
@@ -14531,7 +14608,7 @@ export declare function init(config: AuthHeroConfig): {
14531
14608
  client_id: string;
14532
14609
  username: string;
14533
14610
  otp: string;
14534
- realm: "email" | "sms";
14611
+ realm: "sms" | "email";
14535
14612
  };
14536
14613
  };
14537
14614
  output: {
@@ -14580,7 +14657,7 @@ export declare function init(config: AuthHeroConfig): {
14580
14657
  client_id: string;
14581
14658
  username: string;
14582
14659
  otp: string;
14583
- realm: "email" | "sms";
14660
+ realm: "sms" | "email";
14584
14661
  };
14585
14662
  } & {
14586
14663
  json: {
@@ -14616,7 +14693,7 @@ export declare function init(config: AuthHeroConfig): {
14616
14693
  client_id: string;
14617
14694
  username: string;
14618
14695
  otp: string;
14619
- realm: "email" | "sms";
14696
+ realm: "sms" | "email";
14620
14697
  };
14621
14698
  };
14622
14699
  output: {
@@ -14660,7 +14737,7 @@ export declare function init(config: AuthHeroConfig): {
14660
14737
  client_id: string;
14661
14738
  username: string;
14662
14739
  otp: string;
14663
- realm: "email" | "sms";
14740
+ realm: "sms" | "email";
14664
14741
  };
14665
14742
  } & {
14666
14743
  json: {
@@ -14696,7 +14773,7 @@ export declare function init(config: AuthHeroConfig): {
14696
14773
  client_id: string;
14697
14774
  username: string;
14698
14775
  otp: string;
14699
- realm: "email" | "sms";
14776
+ realm: "sms" | "email";
14700
14777
  };
14701
14778
  };
14702
14779
  output: {
@@ -14740,7 +14817,7 @@ export declare function init(config: AuthHeroConfig): {
14740
14817
  client_id: string;
14741
14818
  username: string;
14742
14819
  otp: string;
14743
- realm: "email" | "sms";
14820
+ realm: "sms" | "email";
14744
14821
  };
14745
14822
  } & {
14746
14823
  json: {
@@ -14776,7 +14853,7 @@ export declare function init(config: AuthHeroConfig): {
14776
14853
  client_id: string;
14777
14854
  username: string;
14778
14855
  otp: string;
14779
- realm: "email" | "sms";
14856
+ realm: "sms" | "email";
14780
14857
  };
14781
14858
  };
14782
14859
  output: {
@@ -15606,7 +15683,7 @@ export declare function init(config: AuthHeroConfig): {
15606
15683
  } & {
15607
15684
  form: {
15608
15685
  username: string;
15609
- login_selection?: "password" | "code" | undefined;
15686
+ login_selection?: "code" | "password" | undefined;
15610
15687
  };
15611
15688
  };
15612
15689
  output: {};
@@ -15620,7 +15697,7 @@ export declare function init(config: AuthHeroConfig): {
15620
15697
  } & {
15621
15698
  form: {
15622
15699
  username: string;
15623
- login_selection?: "password" | "code" | undefined;
15700
+ login_selection?: "code" | "password" | undefined;
15624
15701
  };
15625
15702
  };
15626
15703
  output: {};
@@ -15985,7 +16062,7 @@ export declare function init(config: AuthHeroConfig): {
15985
16062
  $get: {
15986
16063
  input: {
15987
16064
  param: {
15988
- screen: "signup" | "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";
16065
+ 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";
15989
16066
  };
15990
16067
  } & {
15991
16068
  query: {
@@ -16001,7 +16078,7 @@ export declare function init(config: AuthHeroConfig): {
16001
16078
  } | {
16002
16079
  input: {
16003
16080
  param: {
16004
- screen: "signup" | "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";
16081
+ 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";
16005
16082
  };
16006
16083
  } & {
16007
16084
  query: {
@@ -16017,7 +16094,7 @@ export declare function init(config: AuthHeroConfig): {
16017
16094
  } | {
16018
16095
  input: {
16019
16096
  param: {
16020
- screen: "signup" | "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";
16097
+ 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";
16021
16098
  };
16022
16099
  } & {
16023
16100
  query: {
@@ -16037,7 +16114,7 @@ export declare function init(config: AuthHeroConfig): {
16037
16114
  $post: {
16038
16115
  input: {
16039
16116
  param: {
16040
- screen: "signup" | "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";
16117
+ 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";
16041
16118
  };
16042
16119
  } & {
16043
16120
  query: {
@@ -16055,7 +16132,7 @@ export declare function init(config: AuthHeroConfig): {
16055
16132
  } | {
16056
16133
  input: {
16057
16134
  param: {
16058
- screen: "signup" | "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";
16135
+ 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";
16059
16136
  };
16060
16137
  } & {
16061
16138
  query: {
@@ -16073,7 +16150,7 @@ export declare function init(config: AuthHeroConfig): {
16073
16150
  } | {
16074
16151
  input: {
16075
16152
  param: {
16076
- screen: "signup" | "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";
16153
+ 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";
16077
16154
  };
16078
16155
  } & {
16079
16156
  query: {