authhero 8.9.1 → 8.10.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 (43) hide show
  1. package/dist/authhero.cjs +106 -106
  2. package/dist/authhero.d.ts +237 -134
  3. package/dist/authhero.mjs +6771 -6588
  4. package/dist/stats.html +1 -1
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +6 -6
  7. package/dist/types/helpers/avatar.d.ts +6 -0
  8. package/dist/types/index.d.ts +162 -132
  9. package/dist/types/routes/auth-api/avatars.d.ts +18 -0
  10. package/dist/types/routes/auth-api/index.d.ts +37 -24
  11. package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
  12. package/dist/types/routes/auth-api/token.d.ts +10 -10
  13. package/dist/types/routes/management-api/action-executions.d.ts +2 -2
  14. package/dist/types/routes/management-api/actions.d.ts +1 -1
  15. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  16. package/dist/types/routes/management-api/branding.d.ts +17 -17
  17. package/dist/types/routes/management-api/clients.d.ts +8 -8
  18. package/dist/types/routes/management-api/connections.d.ts +21 -21
  19. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  20. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  21. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  22. package/dist/types/routes/management-api/forms.d.ts +126 -126
  23. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  24. package/dist/types/routes/management-api/hook-code.d.ts +2 -2
  25. package/dist/types/routes/management-api/index.d.ts +108 -92
  26. package/dist/types/routes/management-api/log-streams.d.ts +6 -6
  27. package/dist/types/routes/management-api/logs.d.ts +3 -3
  28. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  29. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  30. package/dist/types/routes/management-api/tenant-export-import.d.ts +16 -0
  31. package/dist/types/routes/management-api/tenants.d.ts +6 -6
  32. package/dist/types/routes/management-api/themes.d.ts +9 -9
  33. package/dist/types/routes/management-api/users.d.ts +2 -2
  34. package/dist/types/routes/proxy-control-plane/kv-publish.d.ts +75 -0
  35. package/dist/types/routes/proxy-control-plane/kv-publish.test.d.ts +1 -0
  36. package/dist/types/routes/universal-login/common.d.ts +16 -16
  37. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  38. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  39. package/dist/types/routes/universal-login/index.d.ts +2 -2
  40. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  41. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  42. package/dist/types/types/IdToken.d.ts +2 -2
  43. package/package.json +4 -4
@@ -19,6 +19,22 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
19
19
  output: Response;
20
20
  outputFormat: "json";
21
21
  status: import("hono/utils/http-status").StatusCode;
22
+ } | {
23
+ input: {
24
+ query: {
25
+ include_password_hashes?: "true" | "false" | undefined;
26
+ gzip?: "true" | "false" | undefined;
27
+ };
28
+ } & {
29
+ header: {
30
+ "tenant-id"?: string | undefined;
31
+ };
32
+ };
33
+ output: {
34
+ message: string;
35
+ };
36
+ outputFormat: "json";
37
+ status: 500;
22
38
  };
23
39
  };
24
40
  } & {
@@ -80,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
80
96
  };
81
97
  } & {
82
98
  json: {
83
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
99
+ type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
84
100
  phone_number?: string | undefined;
85
101
  totp_secret?: string | undefined;
86
102
  credential_id?: string | undefined;
@@ -220,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
220
236
  };
221
237
  };
222
238
  output: {
223
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
239
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
224
240
  enabled: boolean;
225
241
  trial_expired?: boolean | undefined;
226
242
  }[];
@@ -375,7 +391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
375
391
  $get: {
376
392
  input: {
377
393
  param: {
378
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
394
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
379
395
  };
380
396
  } & {
381
397
  header: {
@@ -383,7 +399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
383
399
  };
384
400
  };
385
401
  output: {
386
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
402
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
387
403
  enabled: boolean;
388
404
  trial_expired?: boolean | undefined;
389
405
  };
@@ -396,7 +412,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
396
412
  $put: {
397
413
  input: {
398
414
  param: {
399
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
415
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
400
416
  };
401
417
  } & {
402
418
  header: {
@@ -408,7 +424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
408
424
  };
409
425
  };
410
426
  output: {
411
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
427
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
412
428
  enabled: boolean;
413
429
  trial_expired?: boolean | undefined;
414
430
  };
@@ -1153,9 +1169,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1153
1169
  invitee: {
1154
1170
  email?: string | undefined;
1155
1171
  };
1172
+ id?: string | undefined;
1156
1173
  app_metadata?: Record<string, any> | undefined;
1157
1174
  user_metadata?: Record<string, any> | undefined;
1158
- id?: string | undefined;
1159
1175
  connection_id?: string | undefined;
1160
1176
  roles?: string[] | undefined;
1161
1177
  ttl_sec?: number | undefined;
@@ -1341,8 +1357,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1341
1357
  };
1342
1358
  } & {
1343
1359
  json: {
1344
- show_as_button?: boolean | undefined;
1345
1360
  assign_membership_on_login?: boolean | undefined;
1361
+ show_as_button?: boolean | undefined;
1346
1362
  is_signup_enabled?: boolean | undefined;
1347
1363
  };
1348
1364
  };
@@ -6812,7 +6828,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6812
6828
  };
6813
6829
  };
6814
6830
  output: {
6815
- prompt: "common" | "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6831
+ prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6816
6832
  language: string;
6817
6833
  }[];
6818
6834
  outputFormat: "json";
@@ -6850,7 +6866,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6850
6866
  $get: {
6851
6867
  input: {
6852
6868
  param: {
6853
- prompt: "common" | "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6869
+ prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6854
6870
  language: string;
6855
6871
  };
6856
6872
  } & {
@@ -6872,7 +6888,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6872
6888
  $put: {
6873
6889
  input: {
6874
6890
  param: {
6875
- prompt: "common" | "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6891
+ prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6876
6892
  language: string;
6877
6893
  };
6878
6894
  } & {
@@ -6896,7 +6912,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6896
6912
  $delete: {
6897
6913
  input: {
6898
6914
  param: {
6899
- prompt: "common" | "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6915
+ prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6900
6916
  language: string;
6901
6917
  };
6902
6918
  } & {
@@ -6988,7 +7004,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6988
7004
  active?: boolean | undefined;
6989
7005
  } | undefined;
6990
7006
  signup?: {
6991
- status?: "optional" | "required" | "disabled" | undefined;
7007
+ status?: "required" | "optional" | "disabled" | undefined;
6992
7008
  verification?: {
6993
7009
  active?: boolean | undefined;
6994
7010
  } | undefined;
@@ -7005,7 +7021,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7005
7021
  active?: boolean | undefined;
7006
7022
  } | undefined;
7007
7023
  signup?: {
7008
- status?: "optional" | "required" | "disabled" | undefined;
7024
+ status?: "required" | "optional" | "disabled" | undefined;
7009
7025
  } | undefined;
7010
7026
  validation?: {
7011
7027
  max_length?: number | undefined;
@@ -7022,7 +7038,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7022
7038
  active?: boolean | undefined;
7023
7039
  } | undefined;
7024
7040
  signup?: {
7025
- status?: "optional" | "required" | "disabled" | undefined;
7041
+ status?: "required" | "optional" | "disabled" | undefined;
7026
7042
  } | undefined;
7027
7043
  } | undefined;
7028
7044
  } | undefined;
@@ -7035,7 +7051,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7035
7051
  } | undefined;
7036
7052
  } | undefined;
7037
7053
  passkey_options?: {
7038
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7054
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7039
7055
  local_enrollment_enabled?: boolean | undefined;
7040
7056
  progressive_enrollment_enabled?: boolean | undefined;
7041
7057
  } | undefined;
@@ -7122,7 +7138,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7122
7138
  active?: boolean | undefined;
7123
7139
  } | undefined;
7124
7140
  signup?: {
7125
- status?: "optional" | "required" | "disabled" | undefined;
7141
+ status?: "required" | "optional" | "disabled" | undefined;
7126
7142
  verification?: {
7127
7143
  active?: boolean | undefined;
7128
7144
  } | undefined;
@@ -7139,7 +7155,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7139
7155
  active?: boolean | undefined;
7140
7156
  } | undefined;
7141
7157
  signup?: {
7142
- status?: "optional" | "required" | "disabled" | undefined;
7158
+ status?: "required" | "optional" | "disabled" | undefined;
7143
7159
  } | undefined;
7144
7160
  validation?: {
7145
7161
  max_length?: number | undefined;
@@ -7156,7 +7172,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7156
7172
  active?: boolean | undefined;
7157
7173
  } | undefined;
7158
7174
  signup?: {
7159
- status?: "optional" | "required" | "disabled" | undefined;
7175
+ status?: "required" | "optional" | "disabled" | undefined;
7160
7176
  } | undefined;
7161
7177
  } | undefined;
7162
7178
  } | undefined;
@@ -7169,7 +7185,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7169
7185
  } | undefined;
7170
7186
  } | undefined;
7171
7187
  passkey_options?: {
7172
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7188
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7173
7189
  local_enrollment_enabled?: boolean | undefined;
7174
7190
  progressive_enrollment_enabled?: boolean | undefined;
7175
7191
  } | undefined;
@@ -7271,7 +7287,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7271
7287
  active?: boolean | undefined;
7272
7288
  } | undefined;
7273
7289
  signup?: {
7274
- status?: "optional" | "required" | "disabled" | undefined;
7290
+ status?: "required" | "optional" | "disabled" | undefined;
7275
7291
  verification?: {
7276
7292
  active?: boolean | undefined;
7277
7293
  } | undefined;
@@ -7288,7 +7304,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7288
7304
  active?: boolean | undefined;
7289
7305
  } | undefined;
7290
7306
  signup?: {
7291
- status?: "optional" | "required" | "disabled" | undefined;
7307
+ status?: "required" | "optional" | "disabled" | undefined;
7292
7308
  } | undefined;
7293
7309
  validation?: {
7294
7310
  max_length?: number | undefined;
@@ -7305,7 +7321,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7305
7321
  active?: boolean | undefined;
7306
7322
  } | undefined;
7307
7323
  signup?: {
7308
- status?: "optional" | "required" | "disabled" | undefined;
7324
+ status?: "required" | "optional" | "disabled" | undefined;
7309
7325
  } | undefined;
7310
7326
  } | undefined;
7311
7327
  } | undefined;
@@ -7318,7 +7334,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7318
7334
  } | undefined;
7319
7335
  } | undefined;
7320
7336
  passkey_options?: {
7321
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7337
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7322
7338
  local_enrollment_enabled?: boolean | undefined;
7323
7339
  progressive_enrollment_enabled?: boolean | undefined;
7324
7340
  } | undefined;
@@ -7450,7 +7466,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7450
7466
  active?: boolean | undefined;
7451
7467
  } | undefined;
7452
7468
  signup?: {
7453
- status?: "optional" | "required" | "disabled" | undefined;
7469
+ status?: "required" | "optional" | "disabled" | undefined;
7454
7470
  verification?: {
7455
7471
  active?: boolean | undefined;
7456
7472
  } | undefined;
@@ -7467,7 +7483,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7467
7483
  active?: boolean | undefined;
7468
7484
  } | undefined;
7469
7485
  signup?: {
7470
- status?: "optional" | "required" | "disabled" | undefined;
7486
+ status?: "required" | "optional" | "disabled" | undefined;
7471
7487
  } | undefined;
7472
7488
  validation?: {
7473
7489
  max_length?: number | undefined;
@@ -7484,7 +7500,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7484
7500
  active?: boolean | undefined;
7485
7501
  } | undefined;
7486
7502
  signup?: {
7487
- status?: "optional" | "required" | "disabled" | undefined;
7503
+ status?: "required" | "optional" | "disabled" | undefined;
7488
7504
  } | undefined;
7489
7505
  } | undefined;
7490
7506
  } | undefined;
@@ -7497,7 +7513,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7497
7513
  } | undefined;
7498
7514
  } | undefined;
7499
7515
  passkey_options?: {
7500
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7516
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7501
7517
  local_enrollment_enabled?: boolean | undefined;
7502
7518
  progressive_enrollment_enabled?: boolean | undefined;
7503
7519
  } | undefined;
@@ -7608,7 +7624,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7608
7624
  active?: boolean | undefined;
7609
7625
  } | undefined;
7610
7626
  signup?: {
7611
- status?: "optional" | "required" | "disabled" | undefined;
7627
+ status?: "required" | "optional" | "disabled" | undefined;
7612
7628
  verification?: {
7613
7629
  active?: boolean | undefined;
7614
7630
  } | undefined;
@@ -7625,7 +7641,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7625
7641
  active?: boolean | undefined;
7626
7642
  } | undefined;
7627
7643
  signup?: {
7628
- status?: "optional" | "required" | "disabled" | undefined;
7644
+ status?: "required" | "optional" | "disabled" | undefined;
7629
7645
  } | undefined;
7630
7646
  validation?: {
7631
7647
  max_length?: number | undefined;
@@ -7642,7 +7658,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7642
7658
  active?: boolean | undefined;
7643
7659
  } | undefined;
7644
7660
  signup?: {
7645
- status?: "optional" | "required" | "disabled" | undefined;
7661
+ status?: "required" | "optional" | "disabled" | undefined;
7646
7662
  } | undefined;
7647
7663
  } | undefined;
7648
7664
  } | undefined;
@@ -7655,7 +7671,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7655
7671
  } | undefined;
7656
7672
  } | undefined;
7657
7673
  passkey_options?: {
7658
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7674
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7659
7675
  local_enrollment_enabled?: boolean | undefined;
7660
7676
  progressive_enrollment_enabled?: boolean | undefined;
7661
7677
  } | undefined;
@@ -7794,7 +7810,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7794
7810
  tenant_id: string;
7795
7811
  created_at: string;
7796
7812
  updated_at: string;
7797
- deploymentStatus: "failed" | "deployed" | "not_required";
7813
+ deploymentStatus: "deployed" | "failed" | "not_required";
7798
7814
  secrets?: {
7799
7815
  [x: string]: string;
7800
7816
  } | undefined;
@@ -7884,7 +7900,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7884
7900
  tenant_id: string;
7885
7901
  created_at: string;
7886
7902
  updated_at: string;
7887
- deploymentStatus: "failed" | "deployed" | "not_required";
7903
+ deploymentStatus: "deployed" | "failed" | "not_required";
7888
7904
  secrets?: {
7889
7905
  [x: string]: string;
7890
7906
  } | undefined;
@@ -8397,7 +8413,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8397
8413
  log_type: string;
8398
8414
  category: "user_action" | "admin_action" | "system" | "api";
8399
8415
  actor: {
8400
- type: "user" | "client_credentials" | "api_key" | "system" | "admin";
8416
+ type: "user" | "system" | "client_credentials" | "admin" | "api_key";
8401
8417
  id?: string | undefined;
8402
8418
  email?: string | undefined;
8403
8419
  org_id?: string | undefined;
@@ -8875,7 +8891,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8875
8891
  [x: string]: import("hono/utils/types").JSONValue;
8876
8892
  };
8877
8893
  id: string;
8878
- status: "active" | "suspended" | "paused";
8894
+ status: "suspended" | "active" | "paused";
8879
8895
  filters?: {
8880
8896
  type: string;
8881
8897
  name: string;
@@ -8907,7 +8923,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8907
8923
  [x: string]: import("hono/utils/types").JSONValue;
8908
8924
  };
8909
8925
  id: string;
8910
- status: "active" | "suspended" | "paused";
8926
+ status: "suspended" | "active" | "paused";
8911
8927
  filters?: {
8912
8928
  type: string;
8913
8929
  name: string;
@@ -8932,7 +8948,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8932
8948
  name: string;
8933
8949
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
8934
8950
  sink: Record<string, unknown>;
8935
- status?: "active" | "suspended" | "paused" | undefined;
8951
+ status?: "suspended" | "active" | "paused" | undefined;
8936
8952
  filters?: {
8937
8953
  type: string;
8938
8954
  name: string;
@@ -8947,7 +8963,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8947
8963
  [x: string]: import("hono/utils/types").JSONValue;
8948
8964
  };
8949
8965
  id: string;
8950
- status: "active" | "suspended" | "paused";
8966
+ status: "suspended" | "active" | "paused";
8951
8967
  filters?: {
8952
8968
  type: string;
8953
8969
  name: string;
@@ -8982,7 +8998,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8982
8998
  }[] | undefined;
8983
8999
  isPriority?: boolean | undefined;
8984
9000
  id?: string | undefined;
8985
- status?: "active" | "suspended" | "paused" | undefined;
9001
+ status?: "suspended" | "active" | "paused" | undefined;
8986
9002
  created_at?: string | undefined;
8987
9003
  updated_at?: string | undefined;
8988
9004
  };
@@ -8994,7 +9010,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8994
9010
  [x: string]: import("hono/utils/types").JSONValue;
8995
9011
  };
8996
9012
  id: string;
8997
- status: "active" | "suspended" | "paused";
9013
+ status: "suspended" | "active" | "paused";
8998
9014
  filters?: {
8999
9015
  type: string;
9000
9016
  name: string;
@@ -9045,7 +9061,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9045
9061
  };
9046
9062
  };
9047
9063
  output: {
9048
- type: "i" | "f" | "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" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9064
+ type: "fn" | "i" | "fapi" | "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" | "sapi" | "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";
9049
9065
  date: string;
9050
9066
  isMobile: boolean;
9051
9067
  log_id: string;
@@ -9084,7 +9100,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9084
9100
  limit: number;
9085
9101
  length: number;
9086
9102
  logs: {
9087
- type: "i" | "f" | "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" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9103
+ type: "fn" | "i" | "fapi" | "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" | "sapi" | "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";
9088
9104
  date: string;
9089
9105
  isMobile: boolean;
9090
9106
  log_id: string;
@@ -9138,7 +9154,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9138
9154
  };
9139
9155
  };
9140
9156
  output: {
9141
- type: "i" | "f" | "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" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9157
+ type: "fn" | "i" | "fapi" | "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" | "sapi" | "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";
9142
9158
  date: string;
9143
9159
  isMobile: boolean;
9144
9160
  log_id: string;
@@ -10214,7 +10230,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10214
10230
  active?: boolean | undefined;
10215
10231
  } | undefined;
10216
10232
  signup?: {
10217
- status?: "optional" | "required" | "disabled" | undefined;
10233
+ status?: "required" | "optional" | "disabled" | undefined;
10218
10234
  verification?: {
10219
10235
  active?: boolean | undefined;
10220
10236
  } | undefined;
@@ -10231,7 +10247,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10231
10247
  active?: boolean | undefined;
10232
10248
  } | undefined;
10233
10249
  signup?: {
10234
- status?: "optional" | "required" | "disabled" | undefined;
10250
+ status?: "required" | "optional" | "disabled" | undefined;
10235
10251
  } | undefined;
10236
10252
  validation?: {
10237
10253
  max_length?: number | undefined;
@@ -10248,7 +10264,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10248
10264
  active?: boolean | undefined;
10249
10265
  } | undefined;
10250
10266
  signup?: {
10251
- status?: "optional" | "required" | "disabled" | undefined;
10267
+ status?: "required" | "optional" | "disabled" | undefined;
10252
10268
  } | undefined;
10253
10269
  } | undefined;
10254
10270
  } | undefined;
@@ -10261,7 +10277,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10261
10277
  } | undefined;
10262
10278
  } | undefined;
10263
10279
  passkey_options?: {
10264
- challenge_ui?: "button" | "both" | "autofill" | undefined;
10280
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
10265
10281
  local_enrollment_enabled?: boolean | undefined;
10266
10282
  progressive_enrollment_enabled?: boolean | undefined;
10267
10283
  } | undefined;
@@ -10368,7 +10384,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10368
10384
  active?: boolean | undefined;
10369
10385
  } | undefined;
10370
10386
  signup?: {
10371
- status?: "optional" | "required" | "disabled" | undefined;
10387
+ status?: "required" | "optional" | "disabled" | undefined;
10372
10388
  verification?: {
10373
10389
  active?: boolean | undefined;
10374
10390
  } | undefined;
@@ -10385,7 +10401,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10385
10401
  active?: boolean | undefined;
10386
10402
  } | undefined;
10387
10403
  signup?: {
10388
- status?: "optional" | "required" | "disabled" | undefined;
10404
+ status?: "required" | "optional" | "disabled" | undefined;
10389
10405
  } | undefined;
10390
10406
  validation?: {
10391
10407
  max_length?: number | undefined;
@@ -10402,7 +10418,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10402
10418
  active?: boolean | undefined;
10403
10419
  } | undefined;
10404
10420
  signup?: {
10405
- status?: "optional" | "required" | "disabled" | undefined;
10421
+ status?: "required" | "optional" | "disabled" | undefined;
10406
10422
  } | undefined;
10407
10423
  } | undefined;
10408
10424
  } | undefined;
@@ -10415,7 +10431,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10415
10431
  } | undefined;
10416
10432
  } | undefined;
10417
10433
  passkey_options?: {
10418
- challenge_ui?: "button" | "both" | "autofill" | undefined;
10434
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
10419
10435
  local_enrollment_enabled?: boolean | undefined;
10420
10436
  progressive_enrollment_enabled?: boolean | undefined;
10421
10437
  } | undefined;
@@ -11356,7 +11372,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11356
11372
  };
11357
11373
  };
11358
11374
  output: {
11359
- type: "i" | "f" | "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" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11375
+ type: "fn" | "i" | "fapi" | "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" | "sapi" | "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";
11360
11376
  date: string;
11361
11377
  isMobile: boolean;
11362
11378
  log_id: string;
@@ -11395,7 +11411,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11395
11411
  limit: number;
11396
11412
  length: number;
11397
11413
  logs: {
11398
- type: "i" | "f" | "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" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11414
+ type: "fn" | "i" | "fapi" | "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" | "sapi" | "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";
11399
11415
  date: string;
11400
11416
  isMobile: boolean;
11401
11417
  log_id: string;
@@ -11710,7 +11726,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11710
11726
  };
11711
11727
  } & {
11712
11728
  json: {
11713
- template: "verify_email" | "change_password" | "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";
11729
+ 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";
11714
11730
  body: string;
11715
11731
  from: string;
11716
11732
  subject: string;
@@ -11731,7 +11747,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11731
11747
  };
11732
11748
  } & {
11733
11749
  json: {
11734
- template: "verify_email" | "change_password" | "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";
11750
+ 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";
11735
11751
  body: string;
11736
11752
  from: string;
11737
11753
  subject: string;
@@ -11743,7 +11759,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11743
11759
  };
11744
11760
  };
11745
11761
  output: {
11746
- template: "verify_email" | "change_password" | "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";
11762
+ 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";
11747
11763
  body: string;
11748
11764
  from: string;
11749
11765
  subject: string;
@@ -11766,7 +11782,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11766
11782
  };
11767
11783
  };
11768
11784
  output: {
11769
- name: "verify_email" | "change_password" | "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";
11785
+ 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";
11770
11786
  body: string;
11771
11787
  subject: string;
11772
11788
  }[];
@@ -11779,7 +11795,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11779
11795
  $get: {
11780
11796
  input: {
11781
11797
  param: {
11782
- templateName: "verify_email" | "change_password" | "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";
11798
+ 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";
11783
11799
  };
11784
11800
  } & {
11785
11801
  header: {
@@ -11792,7 +11808,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11792
11808
  } | {
11793
11809
  input: {
11794
11810
  param: {
11795
- templateName: "verify_email" | "change_password" | "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";
11811
+ 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";
11796
11812
  };
11797
11813
  } & {
11798
11814
  header: {
@@ -11800,7 +11816,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11800
11816
  };
11801
11817
  };
11802
11818
  output: {
11803
- template: "verify_email" | "change_password" | "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";
11819
+ 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";
11804
11820
  body: string;
11805
11821
  from: string;
11806
11822
  subject: string;
@@ -11819,7 +11835,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11819
11835
  $put: {
11820
11836
  input: {
11821
11837
  param: {
11822
- templateName: "verify_email" | "change_password" | "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";
11838
+ 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";
11823
11839
  };
11824
11840
  } & {
11825
11841
  header: {
@@ -11827,7 +11843,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11827
11843
  };
11828
11844
  } & {
11829
11845
  json: {
11830
- template: "verify_email" | "change_password" | "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";
11846
+ 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";
11831
11847
  body: string;
11832
11848
  subject: string;
11833
11849
  syntax?: "liquid" | undefined;
@@ -11839,7 +11855,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11839
11855
  };
11840
11856
  };
11841
11857
  output: {
11842
- template: "verify_email" | "change_password" | "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";
11858
+ 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";
11843
11859
  body: string;
11844
11860
  from: string;
11845
11861
  subject: string;
@@ -11858,7 +11874,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11858
11874
  $patch: {
11859
11875
  input: {
11860
11876
  param: {
11861
- templateName: "verify_email" | "change_password" | "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";
11877
+ 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";
11862
11878
  };
11863
11879
  } & {
11864
11880
  header: {
@@ -11866,7 +11882,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11866
11882
  };
11867
11883
  } & {
11868
11884
  json: {
11869
- template?: "verify_email" | "change_password" | "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;
11885
+ 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;
11870
11886
  body?: string | undefined;
11871
11887
  from?: string | undefined;
11872
11888
  subject?: string | undefined;
@@ -11883,7 +11899,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11883
11899
  } | {
11884
11900
  input: {
11885
11901
  param: {
11886
- templateName: "verify_email" | "change_password" | "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";
11902
+ 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";
11887
11903
  };
11888
11904
  } & {
11889
11905
  header: {
@@ -11891,7 +11907,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11891
11907
  };
11892
11908
  } & {
11893
11909
  json: {
11894
- template?: "verify_email" | "change_password" | "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;
11910
+ 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;
11895
11911
  body?: string | undefined;
11896
11912
  from?: string | undefined;
11897
11913
  subject?: string | undefined;
@@ -11903,7 +11919,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11903
11919
  };
11904
11920
  };
11905
11921
  output: {
11906
- template: "verify_email" | "change_password" | "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";
11922
+ 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";
11907
11923
  body: string;
11908
11924
  from: string;
11909
11925
  subject: string;
@@ -11922,7 +11938,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11922
11938
  $delete: {
11923
11939
  input: {
11924
11940
  param: {
11925
- templateName: "verify_email" | "change_password" | "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";
11941
+ 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";
11926
11942
  };
11927
11943
  } & {
11928
11944
  header: {
@@ -11935,7 +11951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11935
11951
  } | {
11936
11952
  input: {
11937
11953
  param: {
11938
- templateName: "verify_email" | "change_password" | "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";
11954
+ 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";
11939
11955
  };
11940
11956
  } & {
11941
11957
  header: {
@@ -11952,7 +11968,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11952
11968
  $post: {
11953
11969
  input: {
11954
11970
  param: {
11955
- templateName: "verify_email" | "change_password" | "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";
11971
+ 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";
11956
11972
  };
11957
11973
  } & {
11958
11974
  header: {
@@ -12522,7 +12538,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12522
12538
  base_focus_color: string;
12523
12539
  base_hover_color: string;
12524
12540
  body_text: string;
12525
- captcha_widget_theme: "auto" | "light" | "dark";
12541
+ captcha_widget_theme: "dark" | "light" | "auto";
12526
12542
  error: string;
12527
12543
  header: string;
12528
12544
  icons: string;
@@ -12573,12 +12589,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12573
12589
  background_color: string;
12574
12590
  background_image_url: string;
12575
12591
  page_layout: "center" | "left" | "right";
12576
- logo_placement?: "widget" | "chip" | "none" | undefined;
12592
+ logo_placement?: "widget" | "none" | "chip" | undefined;
12577
12593
  };
12578
12594
  widget: {
12579
12595
  header_text_alignment: "center" | "left" | "right";
12580
12596
  logo_height: number;
12581
- logo_position: "none" | "center" | "left" | "right";
12597
+ logo_position: "center" | "left" | "right" | "none";
12582
12598
  logo_url: string;
12583
12599
  social_buttons_layout: "bottom" | "top";
12584
12600
  };
@@ -12612,7 +12628,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12612
12628
  base_focus_color: string;
12613
12629
  base_hover_color: string;
12614
12630
  body_text: string;
12615
- captcha_widget_theme: "auto" | "light" | "dark";
12631
+ captcha_widget_theme: "dark" | "light" | "auto";
12616
12632
  error: string;
12617
12633
  header: string;
12618
12634
  icons: string;
@@ -12663,12 +12679,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12663
12679
  background_color: string;
12664
12680
  background_image_url: string;
12665
12681
  page_layout: "center" | "left" | "right";
12666
- logo_placement?: "widget" | "chip" | "none" | undefined;
12682
+ logo_placement?: "widget" | "none" | "chip" | undefined;
12667
12683
  };
12668
12684
  widget: {
12669
12685
  header_text_alignment: "center" | "left" | "right";
12670
12686
  logo_height: number;
12671
- logo_position: "none" | "center" | "left" | "right";
12687
+ logo_position: "center" | "left" | "right" | "none";
12672
12688
  logo_url: string;
12673
12689
  social_buttons_layout: "bottom" | "top";
12674
12690
  };
@@ -12691,7 +12707,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12691
12707
  base_focus_color: string;
12692
12708
  base_hover_color: string;
12693
12709
  body_text: string;
12694
- captcha_widget_theme: "auto" | "light" | "dark";
12710
+ captcha_widget_theme: "dark" | "light" | "auto";
12695
12711
  error: string;
12696
12712
  header: string;
12697
12713
  icons: string;
@@ -12742,12 +12758,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12742
12758
  background_color: string;
12743
12759
  background_image_url: string;
12744
12760
  page_layout: "center" | "left" | "right";
12745
- logo_placement?: "widget" | "chip" | "none" | undefined;
12761
+ logo_placement?: "widget" | "none" | "chip" | undefined;
12746
12762
  };
12747
12763
  widget: {
12748
12764
  header_text_alignment: "center" | "left" | "right";
12749
12765
  logo_height: number;
12750
- logo_position: "none" | "center" | "left" | "right";
12766
+ logo_position: "center" | "left" | "right" | "none";
12751
12767
  logo_url: string;
12752
12768
  social_buttons_layout: "bottom" | "top";
12753
12769
  };
@@ -12781,7 +12797,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12781
12797
  font?: {
12782
12798
  url: string;
12783
12799
  } | undefined;
12784
- dark_mode?: "auto" | "light" | "dark" | undefined;
12800
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12785
12801
  };
12786
12802
  outputFormat: "json";
12787
12803
  status: 200;
@@ -12811,7 +12827,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12811
12827
  font?: {
12812
12828
  url: string;
12813
12829
  } | undefined;
12814
- dark_mode?: "auto" | "light" | "dark" | undefined;
12830
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12815
12831
  };
12816
12832
  };
12817
12833
  output: {
@@ -12830,7 +12846,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12830
12846
  font?: {
12831
12847
  url: string;
12832
12848
  } | undefined;
12833
- dark_mode?: "auto" | "light" | "dark" | undefined;
12849
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12834
12850
  };
12835
12851
  outputFormat: "json";
12836
12852
  status: 200;
@@ -12904,7 +12920,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12904
12920
  } & {
12905
12921
  json: {
12906
12922
  body?: string | undefined;
12907
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
12923
+ screen?: "password" | "login" | "identifier" | "signup" | undefined;
12908
12924
  branding?: {
12909
12925
  colors?: {
12910
12926
  primary: string;
@@ -12921,7 +12937,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12921
12937
  font?: {
12922
12938
  url: string;
12923
12939
  } | undefined;
12924
- dark_mode?: "auto" | "light" | "dark" | undefined;
12940
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12925
12941
  } | undefined;
12926
12942
  theme?: {
12927
12943
  borders?: {
@@ -12939,7 +12955,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12939
12955
  base_focus_color: string;
12940
12956
  base_hover_color: string;
12941
12957
  body_text: string;
12942
- captcha_widget_theme: "auto" | "light" | "dark";
12958
+ captcha_widget_theme: "dark" | "light" | "auto";
12943
12959
  error: string;
12944
12960
  header: string;
12945
12961
  icons: string;
@@ -12990,12 +13006,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12990
13006
  background_color: string;
12991
13007
  background_image_url: string;
12992
13008
  page_layout: "center" | "left" | "right";
12993
- logo_placement?: "widget" | "chip" | "none" | undefined;
13009
+ logo_placement?: "widget" | "none" | "chip" | undefined;
12994
13010
  } | undefined;
12995
13011
  widget?: {
12996
13012
  header_text_alignment: "center" | "left" | "right";
12997
13013
  logo_height: number;
12998
- logo_position: "none" | "center" | "left" | "right";
13014
+ logo_position: "center" | "left" | "right" | "none";
12999
13015
  logo_url: string;
13000
13016
  social_buttons_layout: "bottom" | "top";
13001
13017
  } | undefined;
@@ -13148,7 +13164,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13148
13164
  output: {
13149
13165
  id: string;
13150
13166
  trigger_id: string;
13151
- status: "pending" | "suspended" | "unspecified" | "final" | "partial" | "canceled";
13167
+ status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
13152
13168
  results: {
13153
13169
  action_name: string;
13154
13170
  error: {
@@ -13195,7 +13211,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13195
13211
  logs: {
13196
13212
  action_name: string;
13197
13213
  lines: {
13198
- level: "log" | "error" | "info" | "warn" | "debug";
13214
+ level: "error" | "log" | "info" | "warn" | "debug";
13199
13215
  message: string;
13200
13216
  }[];
13201
13217
  }[];
@@ -13862,7 +13878,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13862
13878
  args: import("hono/utils/types").JSONValue[];
13863
13879
  }[];
13864
13880
  logs: {
13865
- level: "log" | "error" | "info" | "warn" | "debug";
13881
+ level: "error" | "log" | "info" | "warn" | "debug";
13866
13882
  message: string;
13867
13883
  }[];
13868
13884
  error?: string | undefined;