authhero 8.4.1 → 8.5.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 +3 -3
  2. package/dist/authhero.d.ts +125 -109
  3. package/dist/authhero.mjs +55 -71
  4. package/dist/stats.html +1 -1
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +4 -4
  7. package/dist/types/index.d.ts +108 -106
  8. package/dist/types/routes/auth-api/account.d.ts +2 -2
  9. package/dist/types/routes/auth-api/index.d.ts +24 -24
  10. package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
  11. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  12. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  13. package/dist/types/routes/management-api/actions.d.ts +1 -1
  14. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  15. package/dist/types/routes/management-api/clients.d.ts +14 -14
  16. package/dist/types/routes/management-api/custom-domains.d.ts +14 -14
  17. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  18. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  19. package/dist/types/routes/management-api/flows.d.ts +7 -7
  20. package/dist/types/routes/management-api/forms.d.ts +119 -119
  21. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  22. package/dist/types/routes/management-api/index.d.ts +76 -76
  23. package/dist/types/routes/management-api/logs.d.ts +3 -3
  24. package/dist/types/routes/management-api/organizations.d.ts +3 -3
  25. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  26. package/dist/types/routes/management-api/users.d.ts +2 -2
  27. package/dist/types/routes/universal-login/common.d.ts +4 -4
  28. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  29. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  30. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
1
  import * as hono_utils_http_status from 'hono/utils/http-status';
2
2
  import * as hono_utils_types from 'hono/utils/types';
3
3
  import * as _authhero_adapter_interfaces from '@authhero/adapter-interfaces';
4
- import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, CustomDomain, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, LogsDataAdapter, LogInsert, UserDataAdapter, CustomDomainsAdapter, ProxyRoutesAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
4
+ import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, CustomDomain, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, LogsDataAdapter, LogInsert, UserDataAdapter, CustomDomainsAdapter, ProxyRoutesAdapter, ListParams, KeysAdapter, CodeExecutionResult } from '@authhero/adapter-interfaces';
5
5
  export * from '@authhero/adapter-interfaces';
6
6
  import * as hono_types from 'hono/types';
7
7
  import { z, OpenAPIHono } from '@hono/zod-openapi';
@@ -2623,6 +2623,22 @@ type DeepPartial<T> = {
2623
2623
  };
2624
2624
  declare function deepMergePatch<T>(target: T, patch: DeepPartial<T>): T;
2625
2625
 
2626
+ declare function listControlPlaneKeys(keys: KeysAdapter, type?: string): Promise<SigningKey[]>;
2627
+ declare function resolveSigningKeyMode(option: SigningKeyModeOption | undefined, tenantId: string): Promise<SigningKeyMode>;
2628
+ interface ResolveSigningKeysOptions {
2629
+ /**
2630
+ * `"sign"` returns at most one key — the tenant's newest non-revoked key
2631
+ * if available, else the control-plane fallback. `"publish"` returns the
2632
+ * full set used for JWKS: control-plane only when mode is
2633
+ * `"control-plane"`, tenant ∪ control-plane when mode is `"tenant"` so
2634
+ * tokens signed by either bucket still verify during rotation.
2635
+ */
2636
+ purpose: "sign" | "publish";
2637
+ /** Defaults to `"jwt_signing"`. Pass `"saml_encryption"` for SAML keys. */
2638
+ type?: string;
2639
+ }
2640
+ declare function resolveSigningKeys(keys: KeysAdapter, tenantId: string, modeOption: SigningKeyModeOption | undefined, opts: ResolveSigningKeysOptions): Promise<SigningKey[]>;
2641
+
2626
2642
  declare const USERNAME_PASSWORD_PROVIDER = "auth2";
2627
2643
 
2628
2644
  interface EnsureUsernameOptions {
@@ -2867,7 +2883,7 @@ declare function init(config: AuthHeroConfig): {
2867
2883
  };
2868
2884
  } & {
2869
2885
  json: {
2870
- type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2886
+ type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2871
2887
  phone_number?: string | undefined;
2872
2888
  totp_secret?: string | undefined;
2873
2889
  credential_id?: string | undefined;
@@ -3940,10 +3956,10 @@ declare function init(config: AuthHeroConfig): {
3940
3956
  invitee: {
3941
3957
  email?: string | undefined;
3942
3958
  };
3943
- app_metadata?: Record<string, any> | undefined;
3944
- user_metadata?: Record<string, any> | undefined;
3945
3959
  id?: string | undefined;
3946
3960
  connection_id?: string | undefined;
3961
+ app_metadata?: Record<string, any> | undefined;
3962
+ user_metadata?: Record<string, any> | undefined;
3947
3963
  ttl_sec?: number | undefined;
3948
3964
  roles?: string[] | undefined;
3949
3965
  send_invitation_email?: boolean | undefined;
@@ -4128,8 +4144,8 @@ declare function init(config: AuthHeroConfig): {
4128
4144
  };
4129
4145
  } & {
4130
4146
  json: {
4131
- assign_membership_on_login?: boolean | undefined;
4132
4147
  show_as_button?: boolean | undefined;
4148
+ assign_membership_on_login?: boolean | undefined;
4133
4149
  is_signup_enabled?: boolean | undefined;
4134
4150
  };
4135
4151
  };
@@ -4795,7 +4811,7 @@ declare function init(config: AuthHeroConfig): {
4795
4811
  type: "REDIRECT";
4796
4812
  action: "REDIRECT_USER";
4797
4813
  params: {
4798
- target: "custom" | "change-email" | "account";
4814
+ target: "custom" | "account" | "change-email";
4799
4815
  custom_url?: string | undefined;
4800
4816
  };
4801
4817
  alias?: string | undefined;
@@ -4848,7 +4864,7 @@ declare function init(config: AuthHeroConfig): {
4848
4864
  type: "REDIRECT";
4849
4865
  action: "REDIRECT_USER";
4850
4866
  params: {
4851
- target: "custom" | "change-email" | "account";
4867
+ target: "custom" | "account" | "change-email";
4852
4868
  custom_url?: string | undefined;
4853
4869
  };
4854
4870
  alias?: string | undefined;
@@ -4916,7 +4932,7 @@ declare function init(config: AuthHeroConfig): {
4916
4932
  type: "REDIRECT";
4917
4933
  action: "REDIRECT_USER";
4918
4934
  params: {
4919
- target: "custom" | "change-email" | "account";
4935
+ target: "custom" | "account" | "change-email";
4920
4936
  custom_url?: string | undefined;
4921
4937
  };
4922
4938
  alias?: string | undefined;
@@ -4997,7 +5013,7 @@ declare function init(config: AuthHeroConfig): {
4997
5013
  type: "REDIRECT";
4998
5014
  action: "REDIRECT_USER";
4999
5015
  params: {
5000
- target: "custom" | "change-email" | "account";
5016
+ target: "custom" | "account" | "change-email";
5001
5017
  custom_url?: string | undefined;
5002
5018
  };
5003
5019
  alias?: string | undefined;
@@ -5045,7 +5061,7 @@ declare function init(config: AuthHeroConfig): {
5045
5061
  type: "REDIRECT";
5046
5062
  action: "REDIRECT_USER";
5047
5063
  params: {
5048
- target: "custom" | "change-email" | "account";
5064
+ target: "custom" | "account" | "change-email";
5049
5065
  custom_url?: string | undefined;
5050
5066
  };
5051
5067
  alias?: string | undefined;
@@ -5105,7 +5121,7 @@ declare function init(config: AuthHeroConfig): {
5105
5121
  type: "REDIRECT";
5106
5122
  action: "REDIRECT_USER";
5107
5123
  params: {
5108
- target: "custom" | "change-email" | "account";
5124
+ target: "custom" | "account" | "change-email";
5109
5125
  custom_url?: string | undefined;
5110
5126
  };
5111
5127
  alias?: string | undefined;
@@ -5153,7 +5169,7 @@ declare function init(config: AuthHeroConfig): {
5153
5169
  type: "REDIRECT";
5154
5170
  action: "REDIRECT_USER";
5155
5171
  params: {
5156
- target: "custom" | "change-email" | "account";
5172
+ target: "custom" | "account" | "change-email";
5157
5173
  custom_url?: string | undefined;
5158
5174
  };
5159
5175
  alias?: string | undefined;
@@ -9431,7 +9447,7 @@ declare function init(config: AuthHeroConfig): {
9431
9447
  };
9432
9448
  };
9433
9449
  output: {
9434
- prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9450
+ prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
9435
9451
  language: string;
9436
9452
  }[];
9437
9453
  outputFormat: "json";
@@ -9469,7 +9485,7 @@ declare function init(config: AuthHeroConfig): {
9469
9485
  $get: {
9470
9486
  input: {
9471
9487
  param: {
9472
- prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9488
+ prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
9473
9489
  language: string;
9474
9490
  };
9475
9491
  } & {
@@ -9491,7 +9507,7 @@ declare function init(config: AuthHeroConfig): {
9491
9507
  $put: {
9492
9508
  input: {
9493
9509
  param: {
9494
- prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9510
+ prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
9495
9511
  language: string;
9496
9512
  };
9497
9513
  } & {
@@ -9515,7 +9531,7 @@ declare function init(config: AuthHeroConfig): {
9515
9531
  $delete: {
9516
9532
  input: {
9517
9533
  param: {
9518
- prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9534
+ prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
9519
9535
  language: string;
9520
9536
  };
9521
9537
  } & {
@@ -11016,7 +11032,7 @@ declare function init(config: AuthHeroConfig): {
11016
11032
  log_type: string;
11017
11033
  category: "user_action" | "admin_action" | "system" | "api";
11018
11034
  actor: {
11019
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
11035
+ type: "user" | "client_credentials" | "api_key" | "system" | "admin";
11020
11036
  id?: string | undefined;
11021
11037
  email?: string | undefined;
11022
11038
  org_id?: string | undefined;
@@ -11324,7 +11340,7 @@ declare function init(config: AuthHeroConfig): {
11324
11340
  created_at: string;
11325
11341
  updated_at: string;
11326
11342
  name: string;
11327
- provider: "auth0" | "cognito" | "okta" | "oidc";
11343
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11328
11344
  connection: string;
11329
11345
  enabled: boolean;
11330
11346
  credentials: {
@@ -11356,7 +11372,7 @@ declare function init(config: AuthHeroConfig): {
11356
11372
  created_at: string;
11357
11373
  updated_at: string;
11358
11374
  name: string;
11359
- provider: "auth0" | "cognito" | "okta" | "oidc";
11375
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11360
11376
  connection: string;
11361
11377
  enabled: boolean;
11362
11378
  credentials: {
@@ -11382,7 +11398,7 @@ declare function init(config: AuthHeroConfig): {
11382
11398
  } & {
11383
11399
  json: {
11384
11400
  name: string;
11385
- provider: "auth0" | "cognito" | "okta" | "oidc";
11401
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11386
11402
  connection: string;
11387
11403
  credentials: {
11388
11404
  domain: string;
@@ -11399,7 +11415,7 @@ declare function init(config: AuthHeroConfig): {
11399
11415
  created_at: string;
11400
11416
  updated_at: string;
11401
11417
  name: string;
11402
- provider: "auth0" | "cognito" | "okta" | "oidc";
11418
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11403
11419
  connection: string;
11404
11420
  enabled: boolean;
11405
11421
  credentials: {
@@ -11430,7 +11446,7 @@ declare function init(config: AuthHeroConfig): {
11430
11446
  json: {
11431
11447
  id?: string | undefined;
11432
11448
  name?: string | undefined;
11433
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
11449
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
11434
11450
  connection?: string | undefined;
11435
11451
  enabled?: boolean | undefined;
11436
11452
  credentials?: {
@@ -11446,7 +11462,7 @@ declare function init(config: AuthHeroConfig): {
11446
11462
  created_at: string;
11447
11463
  updated_at: string;
11448
11464
  name: string;
11449
- provider: "auth0" | "cognito" | "okta" | "oidc";
11465
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11450
11466
  connection: string;
11451
11467
  enabled: boolean;
11452
11468
  credentials: {
@@ -11664,7 +11680,7 @@ declare function init(config: AuthHeroConfig): {
11664
11680
  };
11665
11681
  };
11666
11682
  output: {
11667
- type: "fh" | "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" | "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";
11683
+ 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";
11668
11684
  date: string;
11669
11685
  isMobile: boolean;
11670
11686
  log_id: string;
@@ -11703,7 +11719,7 @@ declare function init(config: AuthHeroConfig): {
11703
11719
  limit: number;
11704
11720
  length: number;
11705
11721
  logs: {
11706
- type: "fh" | "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" | "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";
11722
+ 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";
11707
11723
  date: string;
11708
11724
  isMobile: boolean;
11709
11725
  log_id: string;
@@ -11757,7 +11773,7 @@ declare function init(config: AuthHeroConfig): {
11757
11773
  };
11758
11774
  };
11759
11775
  output: {
11760
- type: "fh" | "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" | "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";
11776
+ 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";
11761
11777
  date: string;
11762
11778
  isMobile: boolean;
11763
11779
  log_id: string;
@@ -12113,7 +12129,7 @@ declare function init(config: AuthHeroConfig): {
12113
12129
  client_id: string;
12114
12130
  description?: string | undefined;
12115
12131
  client_secret?: string | undefined;
12116
- app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12132
+ app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12117
12133
  logo_uri?: string | undefined;
12118
12134
  callbacks?: string[] | undefined;
12119
12135
  allowed_origins?: string[] | undefined;
@@ -12145,7 +12161,7 @@ declare function init(config: AuthHeroConfig): {
12145
12161
  addons?: {
12146
12162
  [x: string]: any;
12147
12163
  } | undefined;
12148
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12164
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12149
12165
  client_metadata?: {
12150
12166
  [x: string]: string;
12151
12167
  } | undefined;
@@ -12209,7 +12225,7 @@ declare function init(config: AuthHeroConfig): {
12209
12225
  client_id: string;
12210
12226
  description?: string | undefined;
12211
12227
  client_secret?: string | undefined;
12212
- app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12228
+ app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12213
12229
  logo_uri?: string | undefined;
12214
12230
  callbacks?: string[] | undefined;
12215
12231
  allowed_origins?: string[] | undefined;
@@ -12241,7 +12257,7 @@ declare function init(config: AuthHeroConfig): {
12241
12257
  addons?: {
12242
12258
  [x: string]: any;
12243
12259
  } | undefined;
12244
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12260
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12245
12261
  client_metadata?: {
12246
12262
  [x: string]: string;
12247
12263
  } | undefined;
@@ -12320,7 +12336,7 @@ declare function init(config: AuthHeroConfig): {
12320
12336
  client_id: string;
12321
12337
  description?: string | undefined;
12322
12338
  client_secret?: string | undefined;
12323
- app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12339
+ app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12324
12340
  logo_uri?: string | undefined;
12325
12341
  callbacks?: string[] | undefined;
12326
12342
  allowed_origins?: string[] | undefined;
@@ -12352,7 +12368,7 @@ declare function init(config: AuthHeroConfig): {
12352
12368
  addons?: {
12353
12369
  [x: string]: any;
12354
12370
  } | undefined;
12355
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12371
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12356
12372
  client_metadata?: {
12357
12373
  [x: string]: string;
12358
12374
  } | undefined;
@@ -12435,7 +12451,7 @@ declare function init(config: AuthHeroConfig): {
12435
12451
  description?: string | undefined;
12436
12452
  global?: boolean | undefined;
12437
12453
  client_secret?: string | undefined;
12438
- app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12454
+ app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12439
12455
  logo_uri?: string | undefined;
12440
12456
  is_first_party?: boolean | undefined;
12441
12457
  oidc_conformant?: boolean | undefined;
@@ -12462,7 +12478,7 @@ declare function init(config: AuthHeroConfig): {
12462
12478
  custom_login_page_preview?: string | undefined;
12463
12479
  form_template?: string | undefined;
12464
12480
  addons?: Record<string, any> | undefined;
12465
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12481
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12466
12482
  client_metadata?: Record<string, string> | undefined;
12467
12483
  hide_sign_up_disabled_error?: boolean | undefined;
12468
12484
  mobile?: Record<string, any> | undefined;
@@ -12510,7 +12526,7 @@ declare function init(config: AuthHeroConfig): {
12510
12526
  client_id: string;
12511
12527
  description?: string | undefined;
12512
12528
  client_secret?: string | undefined;
12513
- app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12529
+ app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12514
12530
  logo_uri?: string | undefined;
12515
12531
  callbacks?: string[] | undefined;
12516
12532
  allowed_origins?: string[] | undefined;
@@ -12542,7 +12558,7 @@ declare function init(config: AuthHeroConfig): {
12542
12558
  addons?: {
12543
12559
  [x: string]: any;
12544
12560
  } | undefined;
12545
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12561
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12546
12562
  client_metadata?: {
12547
12563
  [x: string]: string;
12548
12564
  } | undefined;
@@ -12604,7 +12620,7 @@ declare function init(config: AuthHeroConfig): {
12604
12620
  description?: string | undefined;
12605
12621
  global?: boolean | undefined;
12606
12622
  client_secret?: string | undefined;
12607
- app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12623
+ app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12608
12624
  logo_uri?: string | undefined;
12609
12625
  is_first_party?: boolean | undefined;
12610
12626
  oidc_conformant?: boolean | undefined;
@@ -12631,7 +12647,7 @@ declare function init(config: AuthHeroConfig): {
12631
12647
  custom_login_page_preview?: string | undefined;
12632
12648
  form_template?: string | undefined;
12633
12649
  addons?: Record<string, any> | undefined;
12634
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12650
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12635
12651
  client_metadata?: Record<string, string> | undefined;
12636
12652
  hide_sign_up_disabled_error?: boolean | undefined;
12637
12653
  mobile?: Record<string, any> | undefined;
@@ -12679,7 +12695,7 @@ declare function init(config: AuthHeroConfig): {
12679
12695
  client_id: string;
12680
12696
  description?: string | undefined;
12681
12697
  client_secret?: string | undefined;
12682
- app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12698
+ app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12683
12699
  logo_uri?: string | undefined;
12684
12700
  callbacks?: string[] | undefined;
12685
12701
  allowed_origins?: string[] | undefined;
@@ -12711,7 +12727,7 @@ declare function init(config: AuthHeroConfig): {
12711
12727
  addons?: {
12712
12728
  [x: string]: any;
12713
12729
  } | undefined;
12714
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12730
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12715
12731
  client_metadata?: {
12716
12732
  [x: string]: string;
12717
12733
  } | undefined;
@@ -13975,7 +13991,7 @@ declare function init(config: AuthHeroConfig): {
13975
13991
  };
13976
13992
  };
13977
13993
  output: {
13978
- type: "fh" | "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" | "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";
13994
+ 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";
13979
13995
  date: string;
13980
13996
  isMobile: boolean;
13981
13997
  log_id: string;
@@ -14014,7 +14030,7 @@ declare function init(config: AuthHeroConfig): {
14014
14030
  limit: number;
14015
14031
  length: number;
14016
14032
  logs: {
14017
- type: "fh" | "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" | "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";
14033
+ 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";
14018
14034
  date: string;
14019
14035
  isMobile: boolean;
14020
14036
  log_id: string;
@@ -14329,7 +14345,7 @@ declare function init(config: AuthHeroConfig): {
14329
14345
  };
14330
14346
  } & {
14331
14347
  json: {
14332
- 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";
14348
+ template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14333
14349
  body: string;
14334
14350
  from: string;
14335
14351
  subject: string;
@@ -14350,7 +14366,7 @@ declare function init(config: AuthHeroConfig): {
14350
14366
  };
14351
14367
  } & {
14352
14368
  json: {
14353
- 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";
14369
+ template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14354
14370
  body: string;
14355
14371
  from: string;
14356
14372
  subject: string;
@@ -14362,7 +14378,7 @@ declare function init(config: AuthHeroConfig): {
14362
14378
  };
14363
14379
  };
14364
14380
  output: {
14365
- 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";
14381
+ template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14366
14382
  body: string;
14367
14383
  from: string;
14368
14384
  subject: string;
@@ -14385,7 +14401,7 @@ declare function init(config: AuthHeroConfig): {
14385
14401
  };
14386
14402
  };
14387
14403
  output: {
14388
- 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";
14404
+ name: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14389
14405
  body: string;
14390
14406
  subject: string;
14391
14407
  }[];
@@ -14398,7 +14414,7 @@ declare function init(config: AuthHeroConfig): {
14398
14414
  $get: {
14399
14415
  input: {
14400
14416
  param: {
14401
- 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";
14417
+ templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14402
14418
  };
14403
14419
  } & {
14404
14420
  header: {
@@ -14411,7 +14427,7 @@ declare function init(config: AuthHeroConfig): {
14411
14427
  } | {
14412
14428
  input: {
14413
14429
  param: {
14414
- 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";
14430
+ templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14415
14431
  };
14416
14432
  } & {
14417
14433
  header: {
@@ -14419,7 +14435,7 @@ declare function init(config: AuthHeroConfig): {
14419
14435
  };
14420
14436
  };
14421
14437
  output: {
14422
- 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";
14438
+ template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14423
14439
  body: string;
14424
14440
  from: string;
14425
14441
  subject: string;
@@ -14438,7 +14454,7 @@ declare function init(config: AuthHeroConfig): {
14438
14454
  $put: {
14439
14455
  input: {
14440
14456
  param: {
14441
- 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";
14457
+ templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14442
14458
  };
14443
14459
  } & {
14444
14460
  header: {
@@ -14446,7 +14462,7 @@ declare function init(config: AuthHeroConfig): {
14446
14462
  };
14447
14463
  } & {
14448
14464
  json: {
14449
- 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";
14465
+ template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14450
14466
  body: string;
14451
14467
  subject: string;
14452
14468
  syntax?: "liquid" | undefined;
@@ -14458,7 +14474,7 @@ declare function init(config: AuthHeroConfig): {
14458
14474
  };
14459
14475
  };
14460
14476
  output: {
14461
- 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";
14477
+ template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14462
14478
  body: string;
14463
14479
  from: string;
14464
14480
  subject: string;
@@ -14477,7 +14493,7 @@ declare function init(config: AuthHeroConfig): {
14477
14493
  $patch: {
14478
14494
  input: {
14479
14495
  param: {
14480
- 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";
14496
+ templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14481
14497
  };
14482
14498
  } & {
14483
14499
  header: {
@@ -14485,7 +14501,7 @@ declare function init(config: AuthHeroConfig): {
14485
14501
  };
14486
14502
  } & {
14487
14503
  json: {
14488
- 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;
14504
+ template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14489
14505
  body?: string | undefined;
14490
14506
  from?: string | undefined;
14491
14507
  subject?: string | undefined;
@@ -14502,7 +14518,7 @@ declare function init(config: AuthHeroConfig): {
14502
14518
  } | {
14503
14519
  input: {
14504
14520
  param: {
14505
- 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";
14521
+ templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14506
14522
  };
14507
14523
  } & {
14508
14524
  header: {
@@ -14510,7 +14526,7 @@ declare function init(config: AuthHeroConfig): {
14510
14526
  };
14511
14527
  } & {
14512
14528
  json: {
14513
- 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;
14529
+ template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14514
14530
  body?: string | undefined;
14515
14531
  from?: string | undefined;
14516
14532
  subject?: string | undefined;
@@ -14522,7 +14538,7 @@ declare function init(config: AuthHeroConfig): {
14522
14538
  };
14523
14539
  };
14524
14540
  output: {
14525
- 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";
14541
+ template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14526
14542
  body: string;
14527
14543
  from: string;
14528
14544
  subject: string;
@@ -14541,7 +14557,7 @@ declare function init(config: AuthHeroConfig): {
14541
14557
  $delete: {
14542
14558
  input: {
14543
14559
  param: {
14544
- 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";
14560
+ templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14545
14561
  };
14546
14562
  } & {
14547
14563
  header: {
@@ -14554,7 +14570,7 @@ declare function init(config: AuthHeroConfig): {
14554
14570
  } | {
14555
14571
  input: {
14556
14572
  param: {
14557
- 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";
14573
+ templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14558
14574
  };
14559
14575
  } & {
14560
14576
  header: {
@@ -14571,7 +14587,7 @@ declare function init(config: AuthHeroConfig): {
14571
14587
  $post: {
14572
14588
  input: {
14573
14589
  param: {
14574
- 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";
14590
+ templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14575
14591
  };
14576
14592
  } & {
14577
14593
  header: {
@@ -14854,9 +14870,9 @@ declare function init(config: AuthHeroConfig): {
14854
14870
  type: "auth0_managed_certs" | "self_managed_certs";
14855
14871
  custom_domain_id: string;
14856
14872
  primary: boolean;
14857
- status: "pending" | "ready" | "disabled" | "pending_verification";
14873
+ status: "disabled" | "pending" | "ready" | "pending_verification";
14858
14874
  verification_method?: "txt" | undefined;
14859
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14875
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
14860
14876
  domain_metadata?: {
14861
14877
  [x: string]: string;
14862
14878
  } | undefined;
@@ -14895,9 +14911,9 @@ declare function init(config: AuthHeroConfig): {
14895
14911
  type: "auth0_managed_certs" | "self_managed_certs";
14896
14912
  custom_domain_id: string;
14897
14913
  primary: boolean;
14898
- status: "pending" | "ready" | "disabled" | "pending_verification";
14914
+ status: "disabled" | "pending" | "ready" | "pending_verification";
14899
14915
  verification_method?: "txt" | undefined;
14900
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14916
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
14901
14917
  domain_metadata?: {
14902
14918
  [x: string]: string;
14903
14919
  } | undefined;
@@ -14950,7 +14966,7 @@ declare function init(config: AuthHeroConfig): {
14950
14966
  } & {
14951
14967
  json: {
14952
14968
  tls_policy?: "recommended" | undefined;
14953
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14969
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
14954
14970
  domain_metadata?: Record<string, string> | undefined;
14955
14971
  };
14956
14972
  };
@@ -14959,9 +14975,9 @@ declare function init(config: AuthHeroConfig): {
14959
14975
  type: "auth0_managed_certs" | "self_managed_certs";
14960
14976
  custom_domain_id: string;
14961
14977
  primary: boolean;
14962
- status: "pending" | "ready" | "disabled" | "pending_verification";
14978
+ status: "disabled" | "pending" | "ready" | "pending_verification";
14963
14979
  verification_method?: "txt" | undefined;
14964
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14980
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
14965
14981
  domain_metadata?: {
14966
14982
  [x: string]: string;
14967
14983
  } | undefined;
@@ -14997,7 +15013,7 @@ declare function init(config: AuthHeroConfig): {
14997
15013
  custom_domain_id?: string | undefined;
14998
15014
  verification_method?: "txt" | undefined;
14999
15015
  tls_policy?: "recommended" | undefined;
15000
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15016
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
15001
15017
  domain_metadata?: Record<string, string> | undefined;
15002
15018
  };
15003
15019
  };
@@ -15006,9 +15022,9 @@ declare function init(config: AuthHeroConfig): {
15006
15022
  type: "auth0_managed_certs" | "self_managed_certs";
15007
15023
  custom_domain_id: string;
15008
15024
  primary: boolean;
15009
- status: "pending" | "ready" | "disabled" | "pending_verification";
15025
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15010
15026
  verification_method?: "txt" | undefined;
15011
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15027
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
15012
15028
  domain_metadata?: {
15013
15029
  [x: string]: string;
15014
15030
  } | undefined;
@@ -15052,9 +15068,9 @@ declare function init(config: AuthHeroConfig): {
15052
15068
  type: "auth0_managed_certs" | "self_managed_certs";
15053
15069
  custom_domain_id: string;
15054
15070
  primary: boolean;
15055
- status: "pending" | "ready" | "disabled" | "pending_verification";
15071
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15056
15072
  verification_method?: "txt" | undefined;
15057
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15073
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
15058
15074
  domain_metadata?: {
15059
15075
  [x: string]: string;
15060
15076
  } | undefined;
@@ -15093,9 +15109,9 @@ declare function init(config: AuthHeroConfig): {
15093
15109
  type: "auth0_managed_certs" | "self_managed_certs";
15094
15110
  custom_domain_id: string;
15095
15111
  primary: boolean;
15096
- status: "pending" | "ready" | "disabled" | "pending_verification";
15112
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15097
15113
  verification_method?: "txt" | undefined;
15098
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15114
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
15099
15115
  domain_metadata?: {
15100
15116
  [x: string]: string;
15101
15117
  } | undefined;
@@ -15578,7 +15594,7 @@ declare function init(config: AuthHeroConfig): {
15578
15594
  json: {
15579
15595
  bindings: {
15580
15596
  ref: {
15581
- type?: "action_name" | "action_id" | undefined;
15597
+ type?: "action_id" | "action_name" | undefined;
15582
15598
  value?: string | undefined;
15583
15599
  id?: string | undefined;
15584
15600
  name?: string | undefined;
@@ -15700,7 +15716,7 @@ declare function init(config: AuthHeroConfig): {
15700
15716
  logs: {
15701
15717
  action_name: string;
15702
15718
  lines: {
15703
- level: "log" | "error" | "info" | "warn" | "debug";
15719
+ level: "log" | "error" | "info" | "debug" | "warn";
15704
15720
  message: string;
15705
15721
  }[];
15706
15722
  }[];
@@ -16367,7 +16383,7 @@ declare function init(config: AuthHeroConfig): {
16367
16383
  args: hono_utils_types.JSONValue[];
16368
16384
  }[];
16369
16385
  logs: {
16370
- level: "log" | "error" | "info" | "warn" | "debug";
16386
+ level: "log" | "error" | "info" | "debug" | "warn";
16371
16387
  message: string;
16372
16388
  }[];
16373
16389
  error?: string | undefined;
@@ -16665,7 +16681,7 @@ declare function init(config: AuthHeroConfig): {
16665
16681
  scope?: string | undefined;
16666
16682
  grant_types?: string[] | undefined;
16667
16683
  response_types?: string[] | undefined;
16668
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16684
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
16669
16685
  jwks_uri?: string | undefined;
16670
16686
  jwks?: Record<string, unknown> | undefined;
16671
16687
  software_id?: string | undefined;
@@ -16754,7 +16770,7 @@ declare function init(config: AuthHeroConfig): {
16754
16770
  scope?: string | undefined;
16755
16771
  grant_types?: string[] | undefined;
16756
16772
  response_types?: string[] | undefined;
16757
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16773
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
16758
16774
  jwks_uri?: string | undefined;
16759
16775
  jwks?: Record<string, unknown> | undefined;
16760
16776
  software_id?: string | undefined;
@@ -16811,7 +16827,7 @@ declare function init(config: AuthHeroConfig): {
16811
16827
  client_id: string;
16812
16828
  redirect_url?: string | undefined;
16813
16829
  login_hint?: string | undefined;
16814
- screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
16830
+ screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
16815
16831
  };
16816
16832
  };
16817
16833
  output: {};
@@ -16823,7 +16839,7 @@ declare function init(config: AuthHeroConfig): {
16823
16839
  client_id: string;
16824
16840
  redirect_url?: string | undefined;
16825
16841
  login_hint?: string | undefined;
16826
- screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
16842
+ screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
16827
16843
  };
16828
16844
  };
16829
16845
  output: {
@@ -17100,19 +17116,19 @@ declare function init(config: AuthHeroConfig): {
17100
17116
  email: string;
17101
17117
  send: "code" | "link";
17102
17118
  authParams: {
17103
- username?: string | undefined;
17104
17119
  state?: string | undefined;
17105
- act_as?: string | undefined;
17106
17120
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17107
17121
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17122
+ scope?: string | undefined;
17123
+ username?: string | undefined;
17124
+ nonce?: string | undefined;
17125
+ organization?: string | undefined;
17126
+ code_challenge?: string | undefined;
17127
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17108
17128
  redirect_uri?: string | undefined;
17129
+ act_as?: string | undefined;
17109
17130
  audience?: string | undefined;
17110
- organization?: string | undefined;
17111
- nonce?: string | undefined;
17112
- scope?: string | undefined;
17113
17131
  prompt?: string | undefined;
17114
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17115
- code_challenge?: string | undefined;
17116
17132
  ui_locales?: string | undefined;
17117
17133
  max_age?: number | undefined;
17118
17134
  acr_values?: string | undefined;
@@ -17136,19 +17152,19 @@ declare function init(config: AuthHeroConfig): {
17136
17152
  phone_number: string;
17137
17153
  send: "code" | "link";
17138
17154
  authParams: {
17139
- username?: string | undefined;
17140
17155
  state?: string | undefined;
17141
- act_as?: string | undefined;
17142
17156
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17143
17157
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17158
+ scope?: string | undefined;
17159
+ username?: string | undefined;
17160
+ nonce?: string | undefined;
17161
+ organization?: string | undefined;
17162
+ code_challenge?: string | undefined;
17163
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17144
17164
  redirect_uri?: string | undefined;
17165
+ act_as?: string | undefined;
17145
17166
  audience?: string | undefined;
17146
- organization?: string | undefined;
17147
- nonce?: string | undefined;
17148
- scope?: string | undefined;
17149
17167
  prompt?: string | undefined;
17150
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17151
- code_challenge?: string | undefined;
17152
17168
  ui_locales?: string | undefined;
17153
17169
  max_age?: number | undefined;
17154
17170
  acr_values?: string | undefined;
@@ -17280,14 +17296,14 @@ declare function init(config: AuthHeroConfig): {
17280
17296
  input: {
17281
17297
  form: {
17282
17298
  token: string;
17283
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17299
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17284
17300
  client_id?: string | undefined;
17285
17301
  client_secret?: string | undefined;
17286
17302
  };
17287
17303
  } & {
17288
17304
  json: {
17289
17305
  token: string;
17290
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17306
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17291
17307
  client_id?: string | undefined;
17292
17308
  client_secret?: string | undefined;
17293
17309
  };
@@ -17299,14 +17315,14 @@ declare function init(config: AuthHeroConfig): {
17299
17315
  input: {
17300
17316
  form: {
17301
17317
  token: string;
17302
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17318
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17303
17319
  client_id?: string | undefined;
17304
17320
  client_secret?: string | undefined;
17305
17321
  };
17306
17322
  } & {
17307
17323
  json: {
17308
17324
  token: string;
17309
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17325
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17310
17326
  client_id?: string | undefined;
17311
17327
  client_secret?: string | undefined;
17312
17328
  };
@@ -17321,14 +17337,14 @@ declare function init(config: AuthHeroConfig): {
17321
17337
  input: {
17322
17338
  form: {
17323
17339
  token: string;
17324
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17340
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17325
17341
  client_id?: string | undefined;
17326
17342
  client_secret?: string | undefined;
17327
17343
  };
17328
17344
  } & {
17329
17345
  json: {
17330
17346
  token: string;
17331
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17347
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17332
17348
  client_id?: string | undefined;
17333
17349
  client_secret?: string | undefined;
17334
17350
  };
@@ -19055,7 +19071,7 @@ declare function init(config: AuthHeroConfig): {
19055
19071
  $get: {
19056
19072
  input: {
19057
19073
  param: {
19058
- screen: "login" | "signup" | "account" | "reset-password" | "consent" | "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";
19074
+ screen: "signup" | "login" | "account" | "enter-password" | "reset-password" | "impersonate" | "consent" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19059
19075
  };
19060
19076
  } & {
19061
19077
  query: {
@@ -19071,7 +19087,7 @@ declare function init(config: AuthHeroConfig): {
19071
19087
  } | {
19072
19088
  input: {
19073
19089
  param: {
19074
- screen: "login" | "signup" | "account" | "reset-password" | "consent" | "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";
19090
+ screen: "signup" | "login" | "account" | "enter-password" | "reset-password" | "impersonate" | "consent" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19075
19091
  };
19076
19092
  } & {
19077
19093
  query: {
@@ -19087,7 +19103,7 @@ declare function init(config: AuthHeroConfig): {
19087
19103
  } | {
19088
19104
  input: {
19089
19105
  param: {
19090
- screen: "login" | "signup" | "account" | "reset-password" | "consent" | "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";
19106
+ screen: "signup" | "login" | "account" | "enter-password" | "reset-password" | "impersonate" | "consent" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19091
19107
  };
19092
19108
  } & {
19093
19109
  query: {
@@ -19107,7 +19123,7 @@ declare function init(config: AuthHeroConfig): {
19107
19123
  $post: {
19108
19124
  input: {
19109
19125
  param: {
19110
- screen: "login" | "signup" | "reset-password" | "consent" | "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";
19126
+ screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19111
19127
  };
19112
19128
  } & {
19113
19129
  query: {
@@ -19125,7 +19141,7 @@ declare function init(config: AuthHeroConfig): {
19125
19141
  } | {
19126
19142
  input: {
19127
19143
  param: {
19128
- screen: "login" | "signup" | "reset-password" | "consent" | "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";
19144
+ screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19129
19145
  };
19130
19146
  } & {
19131
19147
  query: {
@@ -19143,7 +19159,7 @@ declare function init(config: AuthHeroConfig): {
19143
19159
  } | {
19144
19160
  input: {
19145
19161
  param: {
19146
- screen: "login" | "signup" | "reset-password" | "consent" | "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";
19162
+ screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19147
19163
  };
19148
19164
  } & {
19149
19165
  query: {
@@ -19241,5 +19257,5 @@ declare function init(config: AuthHeroConfig): {
19241
19257
  createX509Certificate: typeof createX509Certificate;
19242
19258
  };
19243
19259
 
19244
- export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, verifyControlPlaneToken, waitUntil };
19245
- export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
19260
+ export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, verifyControlPlaneToken, waitUntil };
19261
+ export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };