authhero 9.2.0 → 9.4.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 (52) hide show
  1. package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
  2. package/dist/assets/u/widget/index.esm.js +1 -1
  3. package/dist/assets/u/widget/p-b5f14fa6.entry.js +1 -0
  4. package/dist/assets/u/widget/p-f94037cd.entry.js +1 -0
  5. package/dist/authhero.cjs +144 -143
  6. package/dist/authhero.d.ts +241 -120
  7. package/dist/authhero.mjs +13638 -13842
  8. package/dist/tsconfig.types.tsbuildinfo +1 -1
  9. package/dist/types/authentication-flows/passwordless.d.ts +8 -4
  10. package/dist/types/helpers/client.d.ts +4 -0
  11. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  12. package/dist/types/helpers/session-usage.d.ts +48 -0
  13. package/dist/types/hooks/formhooks.d.ts +24 -0
  14. package/dist/types/index.d.ts +237 -120
  15. package/dist/types/oauth2-client/client.d.ts +50 -0
  16. package/dist/types/oauth2-client/index.d.ts +3 -0
  17. package/dist/types/oauth2-client/providers.d.ts +49 -0
  18. package/dist/types/routes/auth-api/index.d.ts +26 -26
  19. package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
  20. package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
  21. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  22. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  23. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  24. package/dist/types/routes/management-api/actions.d.ts +1 -1
  25. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  26. package/dist/types/routes/management-api/branding.d.ts +13 -13
  27. package/dist/types/routes/management-api/client-grants.d.ts +9 -9
  28. package/dist/types/routes/management-api/clients.d.ts +18 -10
  29. package/dist/types/routes/management-api/connections.d.ts +25 -5
  30. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  31. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  32. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  33. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  34. package/dist/types/routes/management-api/helpers.d.ts +1 -1
  35. package/dist/types/routes/management-api/hooks.d.ts +95 -6
  36. package/dist/types/routes/management-api/index.d.ts +204 -87
  37. package/dist/types/routes/management-api/logs.d.ts +4 -4
  38. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  39. package/dist/types/routes/management-api/roles.d.ts +1 -1
  40. package/dist/types/routes/management-api/themes.d.ts +6 -6
  41. package/dist/types/routes/management-api/users.d.ts +2 -2
  42. package/dist/types/routes/universal-login/common.d.ts +18 -10
  43. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  44. package/dist/types/routes/universal-login/index.d.ts +2 -2
  45. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  46. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  47. package/dist/types/routes/universal-login/u2-widget-page.d.ts +12 -0
  48. package/dist/types/strategies/internal-oauth2.d.ts +5 -5
  49. package/dist/types/utils/locale.d.ts +26 -0
  50. package/package.json +6 -7
  51. package/dist/assets/u/widget/p-cdfc4555.entry.js +0 -1
  52. package/dist/assets/u/widget/p-e95c436f.entry.js +0 -1
@@ -96,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
96
96
  };
97
97
  } & {
98
98
  json: {
99
- type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
99
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
100
100
  phone_number?: string | undefined;
101
101
  totp_secret?: string | undefined;
102
102
  credential_id?: string | undefined;
@@ -236,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
236
236
  };
237
237
  };
238
238
  output: {
239
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
239
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
240
240
  enabled: boolean;
241
241
  trial_expired?: boolean | undefined;
242
242
  }[];
@@ -391,7 +391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
391
391
  $get: {
392
392
  input: {
393
393
  param: {
394
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
394
+ factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
395
395
  };
396
396
  } & {
397
397
  header: {
@@ -399,7 +399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
399
399
  };
400
400
  };
401
401
  output: {
402
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
402
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
403
403
  enabled: boolean;
404
404
  trial_expired?: boolean | undefined;
405
405
  };
@@ -412,7 +412,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
412
412
  $put: {
413
413
  input: {
414
414
  param: {
415
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
415
+ factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
416
416
  };
417
417
  } & {
418
418
  header: {
@@ -424,7 +424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
424
424
  };
425
425
  };
426
426
  output: {
427
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
427
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
428
428
  enabled: boolean;
429
429
  trial_expired?: boolean | undefined;
430
430
  };
@@ -1963,9 +1963,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1963
1963
  };
1964
1964
  } & {
1965
1965
  query: {
1966
- from?: string | undefined;
1967
1966
  page?: string | undefined;
1968
1967
  include_totals?: string | undefined;
1968
+ from?: string | undefined;
1969
1969
  per_page?: string | undefined;
1970
1970
  take?: string | undefined;
1971
1971
  };
@@ -6961,7 +6961,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6961
6961
  };
6962
6962
  };
6963
6963
  output: {
6964
- prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6964
+ prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6965
6965
  language: string;
6966
6966
  }[];
6967
6967
  outputFormat: "json";
@@ -6999,7 +6999,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6999
6999
  $get: {
7000
7000
  input: {
7001
7001
  param: {
7002
- prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7002
+ prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7003
7003
  language: string;
7004
7004
  };
7005
7005
  } & {
@@ -7021,7 +7021,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7021
7021
  $put: {
7022
7022
  input: {
7023
7023
  param: {
7024
- prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7024
+ prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7025
7025
  language: string;
7026
7026
  };
7027
7027
  } & {
@@ -7045,7 +7045,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7045
7045
  $delete: {
7046
7046
  input: {
7047
7047
  param: {
7048
- prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7048
+ prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7049
7049
  language: string;
7050
7050
  };
7051
7051
  } & {
@@ -7092,6 +7092,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7092
7092
  client_secret?: string | undefined;
7093
7093
  app_secret?: string | undefined;
7094
7094
  scope?: string | undefined;
7095
+ client_secret_hint?: string | undefined;
7096
+ app_secret_hint?: string | undefined;
7097
+ twilio_token_hint?: string | undefined;
7095
7098
  authorization_endpoint?: string | undefined;
7096
7099
  token_endpoint?: string | undefined;
7097
7100
  userinfo_endpoint?: string | undefined;
@@ -7129,6 +7132,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7129
7132
  userinfo_endpoint?: string | undefined;
7130
7133
  client_id?: string | undefined;
7131
7134
  client_secret?: string | undefined;
7135
+ client_secret_hint?: string | undefined;
7132
7136
  realm?: string | undefined;
7133
7137
  } | undefined;
7134
7138
  attributes?: {
@@ -7184,7 +7188,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7184
7188
  } | undefined;
7185
7189
  } | undefined;
7186
7190
  passkey_options?: {
7187
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7191
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7188
7192
  local_enrollment_enabled?: boolean | undefined;
7189
7193
  progressive_enrollment_enabled?: boolean | undefined;
7190
7194
  } | undefined;
@@ -7226,6 +7230,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7226
7230
  client_secret?: string | undefined;
7227
7231
  app_secret?: string | undefined;
7228
7232
  scope?: string | undefined;
7233
+ client_secret_hint?: string | undefined;
7234
+ app_secret_hint?: string | undefined;
7235
+ twilio_token_hint?: string | undefined;
7229
7236
  authorization_endpoint?: string | undefined;
7230
7237
  token_endpoint?: string | undefined;
7231
7238
  userinfo_endpoint?: string | undefined;
@@ -7263,6 +7270,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7263
7270
  userinfo_endpoint?: string | undefined;
7264
7271
  client_id?: string | undefined;
7265
7272
  client_secret?: string | undefined;
7273
+ client_secret_hint?: string | undefined;
7266
7274
  realm?: string | undefined;
7267
7275
  } | undefined;
7268
7276
  attributes?: {
@@ -7318,7 +7326,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7318
7326
  } | undefined;
7319
7327
  } | undefined;
7320
7328
  passkey_options?: {
7321
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7329
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7322
7330
  local_enrollment_enabled?: boolean | undefined;
7323
7331
  progressive_enrollment_enabled?: boolean | undefined;
7324
7332
  } | undefined;
@@ -7376,6 +7384,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7376
7384
  client_secret?: string | undefined;
7377
7385
  app_secret?: string | undefined;
7378
7386
  scope?: string | undefined;
7387
+ client_secret_hint?: string | undefined;
7388
+ app_secret_hint?: string | undefined;
7389
+ twilio_token_hint?: string | undefined;
7379
7390
  authorization_endpoint?: string | undefined;
7380
7391
  token_endpoint?: string | undefined;
7381
7392
  userinfo_endpoint?: string | undefined;
@@ -7413,6 +7424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7413
7424
  userinfo_endpoint?: string | undefined;
7414
7425
  client_id?: string | undefined;
7415
7426
  client_secret?: string | undefined;
7427
+ client_secret_hint?: string | undefined;
7416
7428
  realm?: string | undefined;
7417
7429
  } | undefined;
7418
7430
  attributes?: {
@@ -7468,7 +7480,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7468
7480
  } | undefined;
7469
7481
  } | undefined;
7470
7482
  passkey_options?: {
7471
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7483
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7472
7484
  local_enrollment_enabled?: boolean | undefined;
7473
7485
  progressive_enrollment_enabled?: boolean | undefined;
7474
7486
  } | undefined;
@@ -7555,6 +7567,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7555
7567
  client_secret?: string | undefined;
7556
7568
  app_secret?: string | undefined;
7557
7569
  scope?: string | undefined;
7570
+ client_secret_hint?: string | undefined;
7571
+ app_secret_hint?: string | undefined;
7572
+ twilio_token_hint?: string | undefined;
7558
7573
  authorization_endpoint?: string | undefined;
7559
7574
  token_endpoint?: string | undefined;
7560
7575
  userinfo_endpoint?: string | undefined;
@@ -7592,6 +7607,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7592
7607
  userinfo_endpoint?: string | undefined;
7593
7608
  client_id?: string | undefined;
7594
7609
  client_secret?: string | undefined;
7610
+ client_secret_hint?: string | undefined;
7595
7611
  realm?: string | undefined;
7596
7612
  } | undefined;
7597
7613
  attributes?: {
@@ -7647,7 +7663,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7647
7663
  } | undefined;
7648
7664
  } | undefined;
7649
7665
  passkey_options?: {
7650
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7666
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7651
7667
  local_enrollment_enabled?: boolean | undefined;
7652
7668
  progressive_enrollment_enabled?: boolean | undefined;
7653
7669
  } | undefined;
@@ -7713,6 +7729,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7713
7729
  client_secret?: string | undefined;
7714
7730
  app_secret?: string | undefined;
7715
7731
  scope?: string | undefined;
7732
+ client_secret_hint?: string | undefined;
7733
+ app_secret_hint?: string | undefined;
7734
+ twilio_token_hint?: string | undefined;
7716
7735
  authorization_endpoint?: string | undefined;
7717
7736
  token_endpoint?: string | undefined;
7718
7737
  userinfo_endpoint?: string | undefined;
@@ -7750,6 +7769,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7750
7769
  userinfo_endpoint?: string | undefined;
7751
7770
  client_id?: string | undefined;
7752
7771
  client_secret?: string | undefined;
7772
+ client_secret_hint?: string | undefined;
7753
7773
  realm?: string | undefined;
7754
7774
  } | undefined;
7755
7775
  attributes?: {
@@ -7805,7 +7825,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7805
7825
  } | undefined;
7806
7826
  } | undefined;
7807
7827
  passkey_options?: {
7808
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7828
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7809
7829
  local_enrollment_enabled?: boolean | undefined;
7810
7830
  progressive_enrollment_enabled?: boolean | undefined;
7811
7831
  } | undefined;
@@ -8094,7 +8114,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8094
8114
  [x: string]: import("hono/utils/types").JSONValue;
8095
8115
  } | undefined;
8096
8116
  } | {
8097
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8117
+ trigger_id: "post-user-login";
8098
8118
  enabled: boolean;
8099
8119
  synchronous: boolean;
8100
8120
  created_at: string;
@@ -8129,6 +8149,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8129
8149
  metadata?: {
8130
8150
  [x: string]: import("hono/utils/types").JSONValue;
8131
8151
  } | undefined;
8152
+ } | {
8153
+ trigger_id: "post-user-login";
8154
+ enabled: boolean;
8155
+ synchronous: boolean;
8156
+ created_at: string;
8157
+ updated_at: string;
8158
+ hook_id: string;
8159
+ page_id: "impersonate";
8160
+ priority?: number | undefined;
8161
+ metadata?: {
8162
+ [x: string]: import("hono/utils/types").JSONValue;
8163
+ } | undefined;
8164
+ permission_required?: string | undefined;
8132
8165
  })[] | {
8133
8166
  start: number;
8134
8167
  limit: number;
@@ -8146,7 +8179,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8146
8179
  [x: string]: import("hono/utils/types").JSONValue;
8147
8180
  } | undefined;
8148
8181
  } | {
8149
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8182
+ trigger_id: "post-user-login";
8150
8183
  enabled: boolean;
8151
8184
  synchronous: boolean;
8152
8185
  created_at: string;
@@ -8181,6 +8214,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8181
8214
  metadata?: {
8182
8215
  [x: string]: import("hono/utils/types").JSONValue;
8183
8216
  } | undefined;
8217
+ } | {
8218
+ trigger_id: "post-user-login";
8219
+ enabled: boolean;
8220
+ synchronous: boolean;
8221
+ created_at: string;
8222
+ updated_at: string;
8223
+ hook_id: string;
8224
+ page_id: "impersonate";
8225
+ priority?: number | undefined;
8226
+ metadata?: {
8227
+ [x: string]: import("hono/utils/types").JSONValue;
8228
+ } | undefined;
8229
+ permission_required?: string | undefined;
8184
8230
  })[];
8185
8231
  total?: number | undefined;
8186
8232
  next?: string | undefined;
@@ -8206,7 +8252,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8206
8252
  hook_id?: string | undefined;
8207
8253
  metadata?: Record<string, unknown> | undefined;
8208
8254
  } | {
8209
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8255
+ trigger_id: "post-user-login";
8210
8256
  form_id: string;
8211
8257
  enabled?: boolean | undefined;
8212
8258
  synchronous?: boolean | undefined;
@@ -8229,6 +8275,15 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8229
8275
  priority?: number | undefined;
8230
8276
  hook_id?: string | undefined;
8231
8277
  metadata?: Record<string, unknown> | undefined;
8278
+ } | {
8279
+ trigger_id: "post-user-login";
8280
+ page_id: "impersonate";
8281
+ permission_required?: string | undefined;
8282
+ enabled?: boolean | undefined;
8283
+ synchronous?: boolean | undefined;
8284
+ priority?: number | undefined;
8285
+ hook_id?: string | undefined;
8286
+ metadata?: Record<string, unknown> | undefined;
8232
8287
  };
8233
8288
  };
8234
8289
  output: {
@@ -8244,7 +8299,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8244
8299
  [x: string]: import("hono/utils/types").JSONValue;
8245
8300
  } | undefined;
8246
8301
  } | {
8247
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8302
+ trigger_id: "post-user-login";
8248
8303
  enabled: boolean;
8249
8304
  synchronous: boolean;
8250
8305
  created_at: string;
@@ -8279,6 +8334,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8279
8334
  metadata?: {
8280
8335
  [x: string]: import("hono/utils/types").JSONValue;
8281
8336
  } | undefined;
8337
+ } | {
8338
+ trigger_id: "post-user-login";
8339
+ enabled: boolean;
8340
+ synchronous: boolean;
8341
+ created_at: string;
8342
+ updated_at: string;
8343
+ hook_id: string;
8344
+ page_id: "impersonate";
8345
+ priority?: number | undefined;
8346
+ metadata?: {
8347
+ [x: string]: import("hono/utils/types").JSONValue;
8348
+ } | undefined;
8349
+ permission_required?: string | undefined;
8282
8350
  };
8283
8351
  outputFormat: "json";
8284
8352
  status: 201;
@@ -8287,6 +8355,21 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8287
8355
  } & {
8288
8356
  "/:hook_id": {
8289
8357
  $patch: {
8358
+ input: {
8359
+ param: {
8360
+ hook_id: string;
8361
+ };
8362
+ } & {
8363
+ header: {
8364
+ "tenant-id"?: string | undefined;
8365
+ };
8366
+ } & {
8367
+ json: unknown;
8368
+ };
8369
+ output: {};
8370
+ outputFormat: string;
8371
+ status: 400;
8372
+ } | {
8290
8373
  input: {
8291
8374
  param: {
8292
8375
  hook_id: string;
@@ -8326,7 +8409,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8326
8409
  [x: string]: import("hono/utils/types").JSONValue;
8327
8410
  } | undefined;
8328
8411
  } | {
8329
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8412
+ trigger_id: "post-user-login";
8330
8413
  enabled: boolean;
8331
8414
  synchronous: boolean;
8332
8415
  created_at: string;
@@ -8361,6 +8444,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8361
8444
  metadata?: {
8362
8445
  [x: string]: import("hono/utils/types").JSONValue;
8363
8446
  } | undefined;
8447
+ } | {
8448
+ trigger_id: "post-user-login";
8449
+ enabled: boolean;
8450
+ synchronous: boolean;
8451
+ created_at: string;
8452
+ updated_at: string;
8453
+ hook_id: string;
8454
+ page_id: "impersonate";
8455
+ priority?: number | undefined;
8456
+ metadata?: {
8457
+ [x: string]: import("hono/utils/types").JSONValue;
8458
+ } | undefined;
8459
+ permission_required?: string | undefined;
8364
8460
  };
8365
8461
  outputFormat: "json";
8366
8462
  status: 200;
@@ -8404,7 +8500,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8404
8500
  [x: string]: import("hono/utils/types").JSONValue;
8405
8501
  } | undefined;
8406
8502
  } | {
8407
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8503
+ trigger_id: "post-user-login";
8408
8504
  enabled: boolean;
8409
8505
  synchronous: boolean;
8410
8506
  created_at: string;
@@ -8439,6 +8535,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8439
8535
  metadata?: {
8440
8536
  [x: string]: import("hono/utils/types").JSONValue;
8441
8537
  } | undefined;
8538
+ } | {
8539
+ trigger_id: "post-user-login";
8540
+ enabled: boolean;
8541
+ synchronous: boolean;
8542
+ created_at: string;
8543
+ updated_at: string;
8544
+ hook_id: string;
8545
+ page_id: "impersonate";
8546
+ priority?: number | undefined;
8547
+ metadata?: {
8548
+ [x: string]: import("hono/utils/types").JSONValue;
8549
+ } | undefined;
8550
+ permission_required?: string | undefined;
8442
8551
  };
8443
8552
  outputFormat: "json";
8444
8553
  status: 200;
@@ -8548,7 +8657,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8548
8657
  log_type: string;
8549
8658
  category: "user_action" | "admin_action" | "system" | "api";
8550
8659
  actor: {
8551
- type: "api_key" | "user" | "client_credentials" | "system" | "admin";
8660
+ type: "user" | "api_key" | "client_credentials" | "system" | "admin";
8552
8661
  id?: string | undefined;
8553
8662
  email?: string | undefined;
8554
8663
  org_id?: string | undefined;
@@ -9199,7 +9308,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9199
9308
  };
9200
9309
  };
9201
9310
  output: {
9202
- type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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";
9311
+ type: "i" | "fn" | "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";
9203
9312
  date: string;
9204
9313
  isMobile: boolean;
9205
9314
  log_id: string;
@@ -9238,7 +9347,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9238
9347
  limit: number;
9239
9348
  length: number;
9240
9349
  logs: {
9241
- type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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";
9350
+ type: "i" | "fn" | "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";
9242
9351
  date: string;
9243
9352
  isMobile: boolean;
9244
9353
  log_id: string;
@@ -9277,7 +9386,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9277
9386
  next?: string | undefined;
9278
9387
  } | {
9279
9388
  logs: {
9280
- type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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";
9389
+ type: "i" | "fn" | "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";
9281
9390
  date: string;
9282
9391
  isMobile: boolean;
9283
9392
  log_id: string;
@@ -9331,7 +9440,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9331
9440
  };
9332
9441
  };
9333
9442
  output: {
9334
- type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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";
9443
+ type: "i" | "fn" | "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";
9335
9444
  date: string;
9336
9445
  isMobile: boolean;
9337
9446
  log_id: string;
@@ -9487,7 +9596,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9487
9596
  audience?: string | undefined;
9488
9597
  client_id?: string | undefined;
9489
9598
  allow_any_organization?: string | undefined;
9490
- subject_type?: "client" | "user" | undefined;
9599
+ subject_type?: "user" | "client" | undefined;
9491
9600
  };
9492
9601
  } & {
9493
9602
  header: {
@@ -9502,7 +9611,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9502
9611
  organization_usage?: "deny" | "allow" | "require" | undefined;
9503
9612
  allow_any_organization?: boolean | undefined;
9504
9613
  is_system?: boolean | undefined;
9505
- subject_type?: "client" | "user" | undefined;
9614
+ subject_type?: "user" | "client" | undefined;
9506
9615
  authorization_details_types?: string[] | undefined;
9507
9616
  created_at?: string | undefined;
9508
9617
  updated_at?: string | undefined;
@@ -9518,7 +9627,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9518
9627
  organization_usage?: "deny" | "allow" | "require" | undefined;
9519
9628
  allow_any_organization?: boolean | undefined;
9520
9629
  is_system?: boolean | undefined;
9521
- subject_type?: "client" | "user" | undefined;
9630
+ subject_type?: "user" | "client" | undefined;
9522
9631
  authorization_details_types?: string[] | undefined;
9523
9632
  created_at?: string | undefined;
9524
9633
  updated_at?: string | undefined;
@@ -9534,7 +9643,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9534
9643
  organization_usage?: "deny" | "allow" | "require" | undefined;
9535
9644
  allow_any_organization?: boolean | undefined;
9536
9645
  is_system?: boolean | undefined;
9537
- subject_type?: "client" | "user" | undefined;
9646
+ subject_type?: "user" | "client" | undefined;
9538
9647
  authorization_details_types?: string[] | undefined;
9539
9648
  created_at?: string | undefined;
9540
9649
  updated_at?: string | undefined;
@@ -9565,7 +9674,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9565
9674
  organization_usage?: "deny" | "allow" | "require" | undefined;
9566
9675
  allow_any_organization?: boolean | undefined;
9567
9676
  is_system?: boolean | undefined;
9568
- subject_type?: "client" | "user" | undefined;
9677
+ subject_type?: "user" | "client" | undefined;
9569
9678
  authorization_details_types?: string[] | undefined;
9570
9679
  created_at?: string | undefined;
9571
9680
  updated_at?: string | undefined;
@@ -9610,7 +9719,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9610
9719
  organization_usage?: "deny" | "allow" | "require" | undefined;
9611
9720
  allow_any_organization?: boolean | undefined;
9612
9721
  is_system?: boolean | undefined;
9613
- subject_type?: "client" | "user" | undefined;
9722
+ subject_type?: "user" | "client" | undefined;
9614
9723
  authorization_details_types?: string[] | undefined;
9615
9724
  };
9616
9725
  };
@@ -9622,7 +9731,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9622
9731
  organization_usage?: "deny" | "allow" | "require" | undefined;
9623
9732
  allow_any_organization?: boolean | undefined;
9624
9733
  is_system?: boolean | undefined;
9625
- subject_type?: "client" | "user" | undefined;
9734
+ subject_type?: "user" | "client" | undefined;
9626
9735
  authorization_details_types?: string[] | undefined;
9627
9736
  created_at?: string | undefined;
9628
9737
  updated_at?: string | undefined;
@@ -9646,7 +9755,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9646
9755
  organization_usage?: "deny" | "allow" | "require" | undefined;
9647
9756
  allow_any_organization?: boolean | undefined;
9648
9757
  is_system?: boolean | undefined;
9649
- subject_type?: "client" | "user" | undefined;
9758
+ subject_type?: "user" | "client" | undefined;
9650
9759
  authorization_details_types?: string[] | undefined;
9651
9760
  };
9652
9761
  };
@@ -9658,7 +9767,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9658
9767
  organization_usage?: "deny" | "allow" | "require" | undefined;
9659
9768
  allow_any_organization?: boolean | undefined;
9660
9769
  is_system?: boolean | undefined;
9661
- subject_type?: "client" | "user" | undefined;
9770
+ subject_type?: "user" | "client" | undefined;
9662
9771
  authorization_details_types?: string[] | undefined;
9663
9772
  created_at?: string | undefined;
9664
9773
  updated_at?: string | undefined;
@@ -9742,7 +9851,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9742
9851
  addons?: {
9743
9852
  [x: string]: any;
9744
9853
  } | undefined;
9745
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9854
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9746
9855
  client_metadata?: {
9747
9856
  [x: string]: string;
9748
9857
  } | undefined;
@@ -9844,7 +9953,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9844
9953
  addons?: {
9845
9954
  [x: string]: any;
9846
9955
  } | undefined;
9847
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9956
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9848
9957
  client_metadata?: {
9849
9958
  [x: string]: string;
9850
9959
  } | undefined;
@@ -9946,7 +10055,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9946
10055
  addons?: {
9947
10056
  [x: string]: any;
9948
10057
  } | undefined;
9949
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10058
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9950
10059
  client_metadata?: {
9951
10060
  [x: string]: string;
9952
10061
  } | undefined;
@@ -10063,7 +10172,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10063
10172
  addons?: {
10064
10173
  [x: string]: any;
10065
10174
  } | undefined;
10066
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10175
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10067
10176
  client_metadata?: {
10068
10177
  [x: string]: string;
10069
10178
  } | undefined;
@@ -10181,7 +10290,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10181
10290
  custom_login_page_preview?: string | undefined;
10182
10291
  form_template?: string | undefined;
10183
10292
  addons?: Record<string, any> | undefined;
10184
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10293
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10185
10294
  client_metadata?: Record<string, string> | undefined;
10186
10295
  hide_sign_up_disabled_error?: boolean | undefined;
10187
10296
  mobile?: Record<string, any> | undefined;
@@ -10267,7 +10376,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10267
10376
  addons?: {
10268
10377
  [x: string]: any;
10269
10378
  } | undefined;
10270
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10379
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10271
10380
  client_metadata?: {
10272
10381
  [x: string]: string;
10273
10382
  } | undefined;
@@ -10364,7 +10473,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10364
10473
  custom_login_page_preview?: string | undefined;
10365
10474
  form_template?: string | undefined;
10366
10475
  addons?: Record<string, any> | undefined;
10367
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10476
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10368
10477
  client_metadata?: Record<string, string> | undefined;
10369
10478
  hide_sign_up_disabled_error?: boolean | undefined;
10370
10479
  mobile?: Record<string, any> | undefined;
@@ -10450,7 +10559,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10450
10559
  addons?: {
10451
10560
  [x: string]: any;
10452
10561
  } | undefined;
10453
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10562
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10454
10563
  client_metadata?: {
10455
10564
  [x: string]: string;
10456
10565
  } | undefined;
@@ -10527,6 +10636,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10527
10636
  client_secret?: string | undefined;
10528
10637
  app_secret?: string | undefined;
10529
10638
  scope?: string | undefined;
10639
+ client_secret_hint?: string | undefined;
10640
+ app_secret_hint?: string | undefined;
10641
+ twilio_token_hint?: string | undefined;
10530
10642
  authorization_endpoint?: string | undefined;
10531
10643
  token_endpoint?: string | undefined;
10532
10644
  userinfo_endpoint?: string | undefined;
@@ -10564,6 +10676,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10564
10676
  userinfo_endpoint?: string | undefined;
10565
10677
  client_id?: string | undefined;
10566
10678
  client_secret?: string | undefined;
10679
+ client_secret_hint?: string | undefined;
10567
10680
  realm?: string | undefined;
10568
10681
  } | undefined;
10569
10682
  attributes?: {
@@ -10619,7 +10732,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10619
10732
  } | undefined;
10620
10733
  } | undefined;
10621
10734
  passkey_options?: {
10622
- challenge_ui?: "both" | "autofill" | "button" | undefined;
10735
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
10623
10736
  local_enrollment_enabled?: boolean | undefined;
10624
10737
  progressive_enrollment_enabled?: boolean | undefined;
10625
10738
  } | undefined;
@@ -10681,6 +10794,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10681
10794
  client_secret?: string | undefined;
10682
10795
  app_secret?: string | undefined;
10683
10796
  scope?: string | undefined;
10797
+ client_secret_hint?: string | undefined;
10798
+ app_secret_hint?: string | undefined;
10799
+ twilio_token_hint?: string | undefined;
10684
10800
  authorization_endpoint?: string | undefined;
10685
10801
  token_endpoint?: string | undefined;
10686
10802
  userinfo_endpoint?: string | undefined;
@@ -10718,6 +10834,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10718
10834
  userinfo_endpoint?: string | undefined;
10719
10835
  client_id?: string | undefined;
10720
10836
  client_secret?: string | undefined;
10837
+ client_secret_hint?: string | undefined;
10721
10838
  realm?: string | undefined;
10722
10839
  } | undefined;
10723
10840
  attributes?: {
@@ -10773,7 +10890,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10773
10890
  } | undefined;
10774
10891
  } | undefined;
10775
10892
  passkey_options?: {
10776
- challenge_ui?: "both" | "autofill" | "button" | undefined;
10893
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
10777
10894
  local_enrollment_enabled?: boolean | undefined;
10778
10895
  progressive_enrollment_enabled?: boolean | undefined;
10779
10896
  } | undefined;
@@ -11795,7 +11912,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11795
11912
  };
11796
11913
  };
11797
11914
  output: {
11798
- type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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";
11915
+ type: "i" | "fn" | "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";
11799
11916
  date: string;
11800
11917
  isMobile: boolean;
11801
11918
  log_id: string;
@@ -11834,7 +11951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11834
11951
  limit: number;
11835
11952
  length: number;
11836
11953
  logs: {
11837
- type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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";
11954
+ type: "i" | "fn" | "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";
11838
11955
  date: string;
11839
11956
  isMobile: boolean;
11840
11957
  log_id: string;
@@ -12153,7 +12270,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12153
12270
  };
12154
12271
  } & {
12155
12272
  json: {
12156
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12273
+ 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";
12157
12274
  body: string;
12158
12275
  from: string;
12159
12276
  subject: string;
@@ -12174,7 +12291,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12174
12291
  };
12175
12292
  } & {
12176
12293
  json: {
12177
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12294
+ 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";
12178
12295
  body: string;
12179
12296
  from: string;
12180
12297
  subject: string;
@@ -12186,7 +12303,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12186
12303
  };
12187
12304
  };
12188
12305
  output: {
12189
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12306
+ 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";
12190
12307
  body: string;
12191
12308
  from: string;
12192
12309
  subject: string;
@@ -12209,7 +12326,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12209
12326
  };
12210
12327
  };
12211
12328
  output: {
12212
- name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12329
+ 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";
12213
12330
  body: string;
12214
12331
  subject: string;
12215
12332
  }[];
@@ -12222,7 +12339,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12222
12339
  $get: {
12223
12340
  input: {
12224
12341
  param: {
12225
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12342
+ 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";
12226
12343
  };
12227
12344
  } & {
12228
12345
  header: {
@@ -12235,7 +12352,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12235
12352
  } | {
12236
12353
  input: {
12237
12354
  param: {
12238
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12355
+ 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";
12239
12356
  };
12240
12357
  } & {
12241
12358
  header: {
@@ -12243,7 +12360,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12243
12360
  };
12244
12361
  };
12245
12362
  output: {
12246
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12363
+ 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";
12247
12364
  body: string;
12248
12365
  from: string;
12249
12366
  subject: string;
@@ -12262,7 +12379,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12262
12379
  $put: {
12263
12380
  input: {
12264
12381
  param: {
12265
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12382
+ 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";
12266
12383
  };
12267
12384
  } & {
12268
12385
  header: {
@@ -12270,7 +12387,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12270
12387
  };
12271
12388
  } & {
12272
12389
  json: {
12273
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12390
+ 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";
12274
12391
  body: string;
12275
12392
  subject: string;
12276
12393
  syntax?: "liquid" | undefined;
@@ -12282,7 +12399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12282
12399
  };
12283
12400
  };
12284
12401
  output: {
12285
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12402
+ 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";
12286
12403
  body: string;
12287
12404
  from: string;
12288
12405
  subject: string;
@@ -12301,7 +12418,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12301
12418
  $patch: {
12302
12419
  input: {
12303
12420
  param: {
12304
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12421
+ 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";
12305
12422
  };
12306
12423
  } & {
12307
12424
  header: {
@@ -12309,7 +12426,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12309
12426
  };
12310
12427
  } & {
12311
12428
  json: {
12312
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12429
+ 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;
12313
12430
  body?: string | undefined;
12314
12431
  from?: string | undefined;
12315
12432
  subject?: string | undefined;
@@ -12326,7 +12443,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12326
12443
  } | {
12327
12444
  input: {
12328
12445
  param: {
12329
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12446
+ 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";
12330
12447
  };
12331
12448
  } & {
12332
12449
  header: {
@@ -12334,7 +12451,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12334
12451
  };
12335
12452
  } & {
12336
12453
  json: {
12337
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12454
+ 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;
12338
12455
  body?: string | undefined;
12339
12456
  from?: string | undefined;
12340
12457
  subject?: string | undefined;
@@ -12346,7 +12463,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12346
12463
  };
12347
12464
  };
12348
12465
  output: {
12349
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12466
+ 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";
12350
12467
  body: string;
12351
12468
  from: string;
12352
12469
  subject: string;
@@ -12365,7 +12482,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12365
12482
  $delete: {
12366
12483
  input: {
12367
12484
  param: {
12368
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12485
+ 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";
12369
12486
  };
12370
12487
  } & {
12371
12488
  header: {
@@ -12378,7 +12495,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12378
12495
  } | {
12379
12496
  input: {
12380
12497
  param: {
12381
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12498
+ 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";
12382
12499
  };
12383
12500
  } & {
12384
12501
  header: {
@@ -12395,7 +12512,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12395
12512
  $post: {
12396
12513
  input: {
12397
12514
  param: {
12398
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12515
+ 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";
12399
12516
  };
12400
12517
  } & {
12401
12518
  header: {
@@ -12678,7 +12795,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12678
12795
  type: "auth0_managed_certs" | "self_managed_certs";
12679
12796
  custom_domain_id: string;
12680
12797
  primary: boolean;
12681
- status: "disabled" | "pending" | "ready" | "pending_verification";
12798
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12682
12799
  verification_method?: "txt" | undefined;
12683
12800
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12684
12801
  domain_metadata?: {
@@ -12719,7 +12836,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12719
12836
  type: "auth0_managed_certs" | "self_managed_certs";
12720
12837
  custom_domain_id: string;
12721
12838
  primary: boolean;
12722
- status: "disabled" | "pending" | "ready" | "pending_verification";
12839
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12723
12840
  verification_method?: "txt" | undefined;
12724
12841
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12725
12842
  domain_metadata?: {
@@ -12783,7 +12900,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12783
12900
  type: "auth0_managed_certs" | "self_managed_certs";
12784
12901
  custom_domain_id: string;
12785
12902
  primary: boolean;
12786
- status: "disabled" | "pending" | "ready" | "pending_verification";
12903
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12787
12904
  verification_method?: "txt" | undefined;
12788
12905
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12789
12906
  domain_metadata?: {
@@ -12830,7 +12947,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12830
12947
  type: "auth0_managed_certs" | "self_managed_certs";
12831
12948
  custom_domain_id: string;
12832
12949
  primary: boolean;
12833
- status: "disabled" | "pending" | "ready" | "pending_verification";
12950
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12834
12951
  verification_method?: "txt" | undefined;
12835
12952
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12836
12953
  domain_metadata?: {
@@ -12876,7 +12993,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12876
12993
  type: "auth0_managed_certs" | "self_managed_certs";
12877
12994
  custom_domain_id: string;
12878
12995
  primary: boolean;
12879
- status: "disabled" | "pending" | "ready" | "pending_verification";
12996
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12880
12997
  verification_method?: "txt" | undefined;
12881
12998
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12882
12999
  domain_metadata?: {
@@ -12917,7 +13034,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12917
13034
  type: "auth0_managed_certs" | "self_managed_certs";
12918
13035
  custom_domain_id: string;
12919
13036
  primary: boolean;
12920
- status: "disabled" | "pending" | "ready" | "pending_verification";
13037
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12921
13038
  verification_method?: "txt" | undefined;
12922
13039
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12923
13040
  domain_metadata?: {
@@ -12965,7 +13082,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12965
13082
  base_focus_color: string;
12966
13083
  base_hover_color: string;
12967
13084
  body_text: string;
12968
- captcha_widget_theme: "dark" | "light" | "auto";
13085
+ captcha_widget_theme: "auto" | "light" | "dark";
12969
13086
  error: string;
12970
13087
  header: string;
12971
13088
  icons: string;
@@ -13016,7 +13133,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13016
13133
  background_color: string;
13017
13134
  background_image_url: string;
13018
13135
  page_layout: "center" | "left" | "right";
13019
- logo_placement?: "none" | "widget" | "chip" | undefined;
13136
+ logo_placement?: "widget" | "chip" | "none" | undefined;
13020
13137
  };
13021
13138
  widget: {
13022
13139
  header_text_alignment: "center" | "left" | "right";
@@ -13055,7 +13172,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13055
13172
  base_focus_color: string;
13056
13173
  base_hover_color: string;
13057
13174
  body_text: string;
13058
- captcha_widget_theme: "dark" | "light" | "auto";
13175
+ captcha_widget_theme: "auto" | "light" | "dark";
13059
13176
  error: string;
13060
13177
  header: string;
13061
13178
  icons: string;
@@ -13106,7 +13223,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13106
13223
  background_color: string;
13107
13224
  background_image_url: string;
13108
13225
  page_layout: "center" | "left" | "right";
13109
- logo_placement?: "none" | "widget" | "chip" | undefined;
13226
+ logo_placement?: "widget" | "chip" | "none" | undefined;
13110
13227
  };
13111
13228
  widget: {
13112
13229
  header_text_alignment: "center" | "left" | "right";
@@ -13134,7 +13251,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13134
13251
  base_focus_color: string;
13135
13252
  base_hover_color: string;
13136
13253
  body_text: string;
13137
- captcha_widget_theme: "dark" | "light" | "auto";
13254
+ captcha_widget_theme: "auto" | "light" | "dark";
13138
13255
  error: string;
13139
13256
  header: string;
13140
13257
  icons: string;
@@ -13185,7 +13302,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13185
13302
  background_color: string;
13186
13303
  background_image_url: string;
13187
13304
  page_layout: "center" | "left" | "right";
13188
- logo_placement?: "none" | "widget" | "chip" | undefined;
13305
+ logo_placement?: "widget" | "chip" | "none" | undefined;
13189
13306
  };
13190
13307
  widget: {
13191
13308
  header_text_alignment: "center" | "left" | "right";
@@ -13224,7 +13341,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13224
13341
  font?: {
13225
13342
  url: string;
13226
13343
  } | undefined;
13227
- dark_mode?: "dark" | "light" | "auto" | undefined;
13344
+ dark_mode?: "auto" | "light" | "dark" | undefined;
13228
13345
  };
13229
13346
  outputFormat: "json";
13230
13347
  status: 200;
@@ -13254,7 +13371,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13254
13371
  font?: {
13255
13372
  url: string;
13256
13373
  } | undefined;
13257
- dark_mode?: "dark" | "light" | "auto" | undefined;
13374
+ dark_mode?: "auto" | "light" | "dark" | undefined;
13258
13375
  };
13259
13376
  };
13260
13377
  output: {
@@ -13273,7 +13390,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13273
13390
  font?: {
13274
13391
  url: string;
13275
13392
  } | undefined;
13276
- dark_mode?: "dark" | "light" | "auto" | undefined;
13393
+ dark_mode?: "auto" | "light" | "dark" | undefined;
13277
13394
  };
13278
13395
  outputFormat: "json";
13279
13396
  status: 200;
@@ -13347,7 +13464,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13347
13464
  } & {
13348
13465
  json: {
13349
13466
  body?: string | undefined;
13350
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
13467
+ screen?: "password" | "login" | "signup" | "identifier" | undefined;
13351
13468
  branding?: {
13352
13469
  colors?: {
13353
13470
  primary: string;
@@ -13364,7 +13481,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13364
13481
  font?: {
13365
13482
  url: string;
13366
13483
  } | undefined;
13367
- dark_mode?: "dark" | "light" | "auto" | undefined;
13484
+ dark_mode?: "auto" | "light" | "dark" | undefined;
13368
13485
  } | undefined;
13369
13486
  theme?: {
13370
13487
  borders?: {
@@ -13382,7 +13499,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13382
13499
  base_focus_color: string;
13383
13500
  base_hover_color: string;
13384
13501
  body_text: string;
13385
- captcha_widget_theme: "dark" | "light" | "auto";
13502
+ captcha_widget_theme: "auto" | "light" | "dark";
13386
13503
  error: string;
13387
13504
  header: string;
13388
13505
  icons: string;
@@ -13433,7 +13550,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13433
13550
  background_color: string;
13434
13551
  background_image_url: string;
13435
13552
  page_layout: "center" | "left" | "right";
13436
- logo_placement?: "none" | "widget" | "chip" | undefined;
13553
+ logo_placement?: "widget" | "chip" | "none" | undefined;
13437
13554
  } | undefined;
13438
13555
  widget?: {
13439
13556
  header_text_alignment: "center" | "left" | "right";
@@ -13638,7 +13755,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13638
13755
  logs: {
13639
13756
  action_name: string;
13640
13757
  lines: {
13641
- level: "error" | "info" | "log" | "warn" | "debug";
13758
+ level: "error" | "log" | "info" | "warn" | "debug";
13642
13759
  message: string;
13643
13760
  }[];
13644
13761
  }[];
@@ -14307,7 +14424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
14307
14424
  args: import("hono/utils/types").JSONValue[];
14308
14425
  }[];
14309
14426
  logs: {
14310
- level: "error" | "info" | "log" | "warn" | "debug";
14427
+ level: "error" | "log" | "info" | "warn" | "debug";
14311
14428
  message: string;
14312
14429
  }[];
14313
14430
  error?: string | undefined;