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
@@ -26,6 +26,7 @@ export { RegistrationFinalizerDestination } from "./helpers/outbox-destinations/
26
26
  export { ControlPlaneSyncDestination, type ControlPlaneSyncDestinationOptions, } from "./helpers/outbox-destinations/control-plane-sync";
27
27
  export { type SyncEvent, type SyncEntity, type SyncOp, CONTROL_PLANE_SYNC_EVENT_PREFIX, } from "./helpers/control-plane-sync-events";
28
28
  export { createApplySyncEvents, type CreateApplySyncEventsOptions, } from "./routes/proxy-control-plane";
29
+ export { wrapProxyAdaptersWithKvPublish, backfillProxyHostsToKv, type KvPublishOptions, type WrappedProxyAdapters, type BackfillProxyHostsOptions, type BackfillResult, } from "./routes/proxy-control-plane/kv-publish";
29
30
  export { PROXY_RESOLVE_HOST_SCOPE, verifyControlPlaneToken, isAllowedIssuer, type VerifyControlPlaneTokenOptions, type VerifyControlPlaneTokenResult, } from "./routes/proxy-control-plane/verify";
30
31
  export { addEntityHooks } from "./helpers/entity-hooks-wrapper";
31
32
  export { seed, MANAGEMENT_API_SCOPES } from "./seed";
@@ -69,6 +70,22 @@ export declare function init(config: AuthHeroConfig): {
69
70
  output: Response;
70
71
  outputFormat: "json";
71
72
  status: import("hono/utils/http-status").StatusCode;
73
+ } | {
74
+ input: {
75
+ query: {
76
+ include_password_hashes?: "true" | "false" | undefined;
77
+ gzip?: "true" | "false" | undefined;
78
+ };
79
+ } & {
80
+ header: {
81
+ "tenant-id"?: string | undefined;
82
+ };
83
+ };
84
+ output: {
85
+ message: string;
86
+ };
87
+ outputFormat: "json";
88
+ status: 500;
72
89
  };
73
90
  };
74
91
  } & {
@@ -130,7 +147,7 @@ export declare function init(config: AuthHeroConfig): {
130
147
  };
131
148
  } & {
132
149
  json: {
133
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
150
+ type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
134
151
  phone_number?: string | undefined;
135
152
  totp_secret?: string | undefined;
136
153
  credential_id?: string | undefined;
@@ -270,7 +287,7 @@ export declare function init(config: AuthHeroConfig): {
270
287
  };
271
288
  };
272
289
  output: {
273
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
290
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
274
291
  enabled: boolean;
275
292
  trial_expired?: boolean | undefined;
276
293
  }[];
@@ -425,7 +442,7 @@ export declare function init(config: AuthHeroConfig): {
425
442
  $get: {
426
443
  input: {
427
444
  param: {
428
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
445
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
429
446
  };
430
447
  } & {
431
448
  header: {
@@ -433,7 +450,7 @@ export declare function init(config: AuthHeroConfig): {
433
450
  };
434
451
  };
435
452
  output: {
436
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
453
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
437
454
  enabled: boolean;
438
455
  trial_expired?: boolean | undefined;
439
456
  };
@@ -446,7 +463,7 @@ export declare function init(config: AuthHeroConfig): {
446
463
  $put: {
447
464
  input: {
448
465
  param: {
449
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
466
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
450
467
  };
451
468
  } & {
452
469
  header: {
@@ -458,7 +475,7 @@ export declare function init(config: AuthHeroConfig): {
458
475
  };
459
476
  };
460
477
  output: {
461
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
478
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
462
479
  enabled: boolean;
463
480
  trial_expired?: boolean | undefined;
464
481
  };
@@ -1203,9 +1220,9 @@ export declare function init(config: AuthHeroConfig): {
1203
1220
  invitee: {
1204
1221
  email?: string | undefined;
1205
1222
  };
1223
+ id?: string | undefined;
1206
1224
  app_metadata?: Record<string, any> | undefined;
1207
1225
  user_metadata?: Record<string, any> | undefined;
1208
- id?: string | undefined;
1209
1226
  connection_id?: string | undefined;
1210
1227
  roles?: string[] | undefined;
1211
1228
  ttl_sec?: number | undefined;
@@ -1391,8 +1408,8 @@ export declare function init(config: AuthHeroConfig): {
1391
1408
  };
1392
1409
  } & {
1393
1410
  json: {
1394
- show_as_button?: boolean | undefined;
1395
1411
  assign_membership_on_login?: boolean | undefined;
1412
+ show_as_button?: boolean | undefined;
1396
1413
  is_signup_enabled?: boolean | undefined;
1397
1414
  };
1398
1415
  };
@@ -6862,7 +6879,7 @@ export declare function init(config: AuthHeroConfig): {
6862
6879
  };
6863
6880
  };
6864
6881
  output: {
6865
- 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";
6882
+ 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";
6866
6883
  language: string;
6867
6884
  }[];
6868
6885
  outputFormat: "json";
@@ -6900,7 +6917,7 @@ export declare function init(config: AuthHeroConfig): {
6900
6917
  $get: {
6901
6918
  input: {
6902
6919
  param: {
6903
- 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";
6920
+ 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";
6904
6921
  language: string;
6905
6922
  };
6906
6923
  } & {
@@ -6922,7 +6939,7 @@ export declare function init(config: AuthHeroConfig): {
6922
6939
  $put: {
6923
6940
  input: {
6924
6941
  param: {
6925
- 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";
6942
+ 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";
6926
6943
  language: string;
6927
6944
  };
6928
6945
  } & {
@@ -6946,7 +6963,7 @@ export declare function init(config: AuthHeroConfig): {
6946
6963
  $delete: {
6947
6964
  input: {
6948
6965
  param: {
6949
- 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";
6966
+ 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";
6950
6967
  language: string;
6951
6968
  };
6952
6969
  } & {
@@ -7038,7 +7055,7 @@ export declare function init(config: AuthHeroConfig): {
7038
7055
  active?: boolean | undefined;
7039
7056
  } | undefined;
7040
7057
  signup?: {
7041
- status?: "optional" | "required" | "disabled" | undefined;
7058
+ status?: "required" | "optional" | "disabled" | undefined;
7042
7059
  verification?: {
7043
7060
  active?: boolean | undefined;
7044
7061
  } | undefined;
@@ -7055,7 +7072,7 @@ export declare function init(config: AuthHeroConfig): {
7055
7072
  active?: boolean | undefined;
7056
7073
  } | undefined;
7057
7074
  signup?: {
7058
- status?: "optional" | "required" | "disabled" | undefined;
7075
+ status?: "required" | "optional" | "disabled" | undefined;
7059
7076
  } | undefined;
7060
7077
  validation?: {
7061
7078
  max_length?: number | undefined;
@@ -7072,7 +7089,7 @@ export declare function init(config: AuthHeroConfig): {
7072
7089
  active?: boolean | undefined;
7073
7090
  } | undefined;
7074
7091
  signup?: {
7075
- status?: "optional" | "required" | "disabled" | undefined;
7092
+ status?: "required" | "optional" | "disabled" | undefined;
7076
7093
  } | undefined;
7077
7094
  } | undefined;
7078
7095
  } | undefined;
@@ -7085,7 +7102,7 @@ export declare function init(config: AuthHeroConfig): {
7085
7102
  } | undefined;
7086
7103
  } | undefined;
7087
7104
  passkey_options?: {
7088
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7105
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7089
7106
  local_enrollment_enabled?: boolean | undefined;
7090
7107
  progressive_enrollment_enabled?: boolean | undefined;
7091
7108
  } | undefined;
@@ -7172,7 +7189,7 @@ export declare function init(config: AuthHeroConfig): {
7172
7189
  active?: boolean | undefined;
7173
7190
  } | undefined;
7174
7191
  signup?: {
7175
- status?: "optional" | "required" | "disabled" | undefined;
7192
+ status?: "required" | "optional" | "disabled" | undefined;
7176
7193
  verification?: {
7177
7194
  active?: boolean | undefined;
7178
7195
  } | undefined;
@@ -7189,7 +7206,7 @@ export declare function init(config: AuthHeroConfig): {
7189
7206
  active?: boolean | undefined;
7190
7207
  } | undefined;
7191
7208
  signup?: {
7192
- status?: "optional" | "required" | "disabled" | undefined;
7209
+ status?: "required" | "optional" | "disabled" | undefined;
7193
7210
  } | undefined;
7194
7211
  validation?: {
7195
7212
  max_length?: number | undefined;
@@ -7206,7 +7223,7 @@ export declare function init(config: AuthHeroConfig): {
7206
7223
  active?: boolean | undefined;
7207
7224
  } | undefined;
7208
7225
  signup?: {
7209
- status?: "optional" | "required" | "disabled" | undefined;
7226
+ status?: "required" | "optional" | "disabled" | undefined;
7210
7227
  } | undefined;
7211
7228
  } | undefined;
7212
7229
  } | undefined;
@@ -7219,7 +7236,7 @@ export declare function init(config: AuthHeroConfig): {
7219
7236
  } | undefined;
7220
7237
  } | undefined;
7221
7238
  passkey_options?: {
7222
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7239
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7223
7240
  local_enrollment_enabled?: boolean | undefined;
7224
7241
  progressive_enrollment_enabled?: boolean | undefined;
7225
7242
  } | undefined;
@@ -7321,7 +7338,7 @@ export declare function init(config: AuthHeroConfig): {
7321
7338
  active?: boolean | undefined;
7322
7339
  } | undefined;
7323
7340
  signup?: {
7324
- status?: "optional" | "required" | "disabled" | undefined;
7341
+ status?: "required" | "optional" | "disabled" | undefined;
7325
7342
  verification?: {
7326
7343
  active?: boolean | undefined;
7327
7344
  } | undefined;
@@ -7338,7 +7355,7 @@ export declare function init(config: AuthHeroConfig): {
7338
7355
  active?: boolean | undefined;
7339
7356
  } | undefined;
7340
7357
  signup?: {
7341
- status?: "optional" | "required" | "disabled" | undefined;
7358
+ status?: "required" | "optional" | "disabled" | undefined;
7342
7359
  } | undefined;
7343
7360
  validation?: {
7344
7361
  max_length?: number | undefined;
@@ -7355,7 +7372,7 @@ export declare function init(config: AuthHeroConfig): {
7355
7372
  active?: boolean | undefined;
7356
7373
  } | undefined;
7357
7374
  signup?: {
7358
- status?: "optional" | "required" | "disabled" | undefined;
7375
+ status?: "required" | "optional" | "disabled" | undefined;
7359
7376
  } | undefined;
7360
7377
  } | undefined;
7361
7378
  } | undefined;
@@ -7368,7 +7385,7 @@ export declare function init(config: AuthHeroConfig): {
7368
7385
  } | undefined;
7369
7386
  } | undefined;
7370
7387
  passkey_options?: {
7371
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7388
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7372
7389
  local_enrollment_enabled?: boolean | undefined;
7373
7390
  progressive_enrollment_enabled?: boolean | undefined;
7374
7391
  } | undefined;
@@ -7500,7 +7517,7 @@ export declare function init(config: AuthHeroConfig): {
7500
7517
  active?: boolean | undefined;
7501
7518
  } | undefined;
7502
7519
  signup?: {
7503
- status?: "optional" | "required" | "disabled" | undefined;
7520
+ status?: "required" | "optional" | "disabled" | undefined;
7504
7521
  verification?: {
7505
7522
  active?: boolean | undefined;
7506
7523
  } | undefined;
@@ -7517,7 +7534,7 @@ export declare function init(config: AuthHeroConfig): {
7517
7534
  active?: boolean | undefined;
7518
7535
  } | undefined;
7519
7536
  signup?: {
7520
- status?: "optional" | "required" | "disabled" | undefined;
7537
+ status?: "required" | "optional" | "disabled" | undefined;
7521
7538
  } | undefined;
7522
7539
  validation?: {
7523
7540
  max_length?: number | undefined;
@@ -7534,7 +7551,7 @@ export declare function init(config: AuthHeroConfig): {
7534
7551
  active?: boolean | undefined;
7535
7552
  } | undefined;
7536
7553
  signup?: {
7537
- status?: "optional" | "required" | "disabled" | undefined;
7554
+ status?: "required" | "optional" | "disabled" | undefined;
7538
7555
  } | undefined;
7539
7556
  } | undefined;
7540
7557
  } | undefined;
@@ -7547,7 +7564,7 @@ export declare function init(config: AuthHeroConfig): {
7547
7564
  } | undefined;
7548
7565
  } | undefined;
7549
7566
  passkey_options?: {
7550
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7567
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7551
7568
  local_enrollment_enabled?: boolean | undefined;
7552
7569
  progressive_enrollment_enabled?: boolean | undefined;
7553
7570
  } | undefined;
@@ -7658,7 +7675,7 @@ export declare function init(config: AuthHeroConfig): {
7658
7675
  active?: boolean | undefined;
7659
7676
  } | undefined;
7660
7677
  signup?: {
7661
- status?: "optional" | "required" | "disabled" | undefined;
7678
+ status?: "required" | "optional" | "disabled" | undefined;
7662
7679
  verification?: {
7663
7680
  active?: boolean | undefined;
7664
7681
  } | undefined;
@@ -7675,7 +7692,7 @@ export declare function init(config: AuthHeroConfig): {
7675
7692
  active?: boolean | undefined;
7676
7693
  } | undefined;
7677
7694
  signup?: {
7678
- status?: "optional" | "required" | "disabled" | undefined;
7695
+ status?: "required" | "optional" | "disabled" | undefined;
7679
7696
  } | undefined;
7680
7697
  validation?: {
7681
7698
  max_length?: number | undefined;
@@ -7692,7 +7709,7 @@ export declare function init(config: AuthHeroConfig): {
7692
7709
  active?: boolean | undefined;
7693
7710
  } | undefined;
7694
7711
  signup?: {
7695
- status?: "optional" | "required" | "disabled" | undefined;
7712
+ status?: "required" | "optional" | "disabled" | undefined;
7696
7713
  } | undefined;
7697
7714
  } | undefined;
7698
7715
  } | undefined;
@@ -7705,7 +7722,7 @@ export declare function init(config: AuthHeroConfig): {
7705
7722
  } | undefined;
7706
7723
  } | undefined;
7707
7724
  passkey_options?: {
7708
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7725
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7709
7726
  local_enrollment_enabled?: boolean | undefined;
7710
7727
  progressive_enrollment_enabled?: boolean | undefined;
7711
7728
  } | undefined;
@@ -7844,7 +7861,7 @@ export declare function init(config: AuthHeroConfig): {
7844
7861
  tenant_id: string;
7845
7862
  created_at: string;
7846
7863
  updated_at: string;
7847
- deploymentStatus: "failed" | "deployed" | "not_required";
7864
+ deploymentStatus: "deployed" | "failed" | "not_required";
7848
7865
  secrets?: {
7849
7866
  [x: string]: string;
7850
7867
  } | undefined;
@@ -7934,7 +7951,7 @@ export declare function init(config: AuthHeroConfig): {
7934
7951
  tenant_id: string;
7935
7952
  created_at: string;
7936
7953
  updated_at: string;
7937
- deploymentStatus: "failed" | "deployed" | "not_required";
7954
+ deploymentStatus: "deployed" | "failed" | "not_required";
7938
7955
  secrets?: {
7939
7956
  [x: string]: string;
7940
7957
  } | undefined;
@@ -8447,7 +8464,7 @@ export declare function init(config: AuthHeroConfig): {
8447
8464
  log_type: string;
8448
8465
  category: "user_action" | "admin_action" | "system" | "api";
8449
8466
  actor: {
8450
- type: "user" | "client_credentials" | "api_key" | "system" | "admin";
8467
+ type: "user" | "system" | "client_credentials" | "admin" | "api_key";
8451
8468
  id?: string | undefined;
8452
8469
  email?: string | undefined;
8453
8470
  org_id?: string | undefined;
@@ -8925,7 +8942,7 @@ export declare function init(config: AuthHeroConfig): {
8925
8942
  [x: string]: import("hono/utils/types").JSONValue;
8926
8943
  };
8927
8944
  id: string;
8928
- status: "active" | "suspended" | "paused";
8945
+ status: "suspended" | "active" | "paused";
8929
8946
  filters?: {
8930
8947
  type: string;
8931
8948
  name: string;
@@ -8957,7 +8974,7 @@ export declare function init(config: AuthHeroConfig): {
8957
8974
  [x: string]: import("hono/utils/types").JSONValue;
8958
8975
  };
8959
8976
  id: string;
8960
- status: "active" | "suspended" | "paused";
8977
+ status: "suspended" | "active" | "paused";
8961
8978
  filters?: {
8962
8979
  type: string;
8963
8980
  name: string;
@@ -8982,7 +8999,7 @@ export declare function init(config: AuthHeroConfig): {
8982
8999
  name: string;
8983
9000
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
8984
9001
  sink: Record<string, unknown>;
8985
- status?: "active" | "suspended" | "paused" | undefined;
9002
+ status?: "suspended" | "active" | "paused" | undefined;
8986
9003
  filters?: {
8987
9004
  type: string;
8988
9005
  name: string;
@@ -8997,7 +9014,7 @@ export declare function init(config: AuthHeroConfig): {
8997
9014
  [x: string]: import("hono/utils/types").JSONValue;
8998
9015
  };
8999
9016
  id: string;
9000
- status: "active" | "suspended" | "paused";
9017
+ status: "suspended" | "active" | "paused";
9001
9018
  filters?: {
9002
9019
  type: string;
9003
9020
  name: string;
@@ -9032,7 +9049,7 @@ export declare function init(config: AuthHeroConfig): {
9032
9049
  }[] | undefined;
9033
9050
  isPriority?: boolean | undefined;
9034
9051
  id?: string | undefined;
9035
- status?: "active" | "suspended" | "paused" | undefined;
9052
+ status?: "suspended" | "active" | "paused" | undefined;
9036
9053
  created_at?: string | undefined;
9037
9054
  updated_at?: string | undefined;
9038
9055
  };
@@ -9044,7 +9061,7 @@ export declare function init(config: AuthHeroConfig): {
9044
9061
  [x: string]: import("hono/utils/types").JSONValue;
9045
9062
  };
9046
9063
  id: string;
9047
- status: "active" | "suspended" | "paused";
9064
+ status: "suspended" | "active" | "paused";
9048
9065
  filters?: {
9049
9066
  type: string;
9050
9067
  name: string;
@@ -9095,7 +9112,7 @@ export declare function init(config: AuthHeroConfig): {
9095
9112
  };
9096
9113
  };
9097
9114
  output: {
9098
- 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";
9115
+ 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";
9099
9116
  date: string;
9100
9117
  isMobile: boolean;
9101
9118
  log_id: string;
@@ -9134,7 +9151,7 @@ export declare function init(config: AuthHeroConfig): {
9134
9151
  limit: number;
9135
9152
  length: number;
9136
9153
  logs: {
9137
- 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";
9154
+ 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";
9138
9155
  date: string;
9139
9156
  isMobile: boolean;
9140
9157
  log_id: string;
@@ -9188,7 +9205,7 @@ export declare function init(config: AuthHeroConfig): {
9188
9205
  };
9189
9206
  };
9190
9207
  output: {
9191
- 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";
9208
+ 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";
9192
9209
  date: string;
9193
9210
  isMobile: boolean;
9194
9211
  log_id: string;
@@ -10264,7 +10281,7 @@ export declare function init(config: AuthHeroConfig): {
10264
10281
  active?: boolean | undefined;
10265
10282
  } | undefined;
10266
10283
  signup?: {
10267
- status?: "optional" | "required" | "disabled" | undefined;
10284
+ status?: "required" | "optional" | "disabled" | undefined;
10268
10285
  verification?: {
10269
10286
  active?: boolean | undefined;
10270
10287
  } | undefined;
@@ -10281,7 +10298,7 @@ export declare function init(config: AuthHeroConfig): {
10281
10298
  active?: boolean | undefined;
10282
10299
  } | undefined;
10283
10300
  signup?: {
10284
- status?: "optional" | "required" | "disabled" | undefined;
10301
+ status?: "required" | "optional" | "disabled" | undefined;
10285
10302
  } | undefined;
10286
10303
  validation?: {
10287
10304
  max_length?: number | undefined;
@@ -10298,7 +10315,7 @@ export declare function init(config: AuthHeroConfig): {
10298
10315
  active?: boolean | undefined;
10299
10316
  } | undefined;
10300
10317
  signup?: {
10301
- status?: "optional" | "required" | "disabled" | undefined;
10318
+ status?: "required" | "optional" | "disabled" | undefined;
10302
10319
  } | undefined;
10303
10320
  } | undefined;
10304
10321
  } | undefined;
@@ -10311,7 +10328,7 @@ export declare function init(config: AuthHeroConfig): {
10311
10328
  } | undefined;
10312
10329
  } | undefined;
10313
10330
  passkey_options?: {
10314
- challenge_ui?: "button" | "both" | "autofill" | undefined;
10331
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
10315
10332
  local_enrollment_enabled?: boolean | undefined;
10316
10333
  progressive_enrollment_enabled?: boolean | undefined;
10317
10334
  } | undefined;
@@ -10418,7 +10435,7 @@ export declare function init(config: AuthHeroConfig): {
10418
10435
  active?: boolean | undefined;
10419
10436
  } | undefined;
10420
10437
  signup?: {
10421
- status?: "optional" | "required" | "disabled" | undefined;
10438
+ status?: "required" | "optional" | "disabled" | undefined;
10422
10439
  verification?: {
10423
10440
  active?: boolean | undefined;
10424
10441
  } | undefined;
@@ -10435,7 +10452,7 @@ export declare function init(config: AuthHeroConfig): {
10435
10452
  active?: boolean | undefined;
10436
10453
  } | undefined;
10437
10454
  signup?: {
10438
- status?: "optional" | "required" | "disabled" | undefined;
10455
+ status?: "required" | "optional" | "disabled" | undefined;
10439
10456
  } | undefined;
10440
10457
  validation?: {
10441
10458
  max_length?: number | undefined;
@@ -10452,7 +10469,7 @@ export declare function init(config: AuthHeroConfig): {
10452
10469
  active?: boolean | undefined;
10453
10470
  } | undefined;
10454
10471
  signup?: {
10455
- status?: "optional" | "required" | "disabled" | undefined;
10472
+ status?: "required" | "optional" | "disabled" | undefined;
10456
10473
  } | undefined;
10457
10474
  } | undefined;
10458
10475
  } | undefined;
@@ -10465,7 +10482,7 @@ export declare function init(config: AuthHeroConfig): {
10465
10482
  } | undefined;
10466
10483
  } | undefined;
10467
10484
  passkey_options?: {
10468
- challenge_ui?: "button" | "both" | "autofill" | undefined;
10485
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
10469
10486
  local_enrollment_enabled?: boolean | undefined;
10470
10487
  progressive_enrollment_enabled?: boolean | undefined;
10471
10488
  } | undefined;
@@ -11406,7 +11423,7 @@ export declare function init(config: AuthHeroConfig): {
11406
11423
  };
11407
11424
  };
11408
11425
  output: {
11409
- 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";
11426
+ 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";
11410
11427
  date: string;
11411
11428
  isMobile: boolean;
11412
11429
  log_id: string;
@@ -11445,7 +11462,7 @@ export declare function init(config: AuthHeroConfig): {
11445
11462
  limit: number;
11446
11463
  length: number;
11447
11464
  logs: {
11448
- 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";
11465
+ 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";
11449
11466
  date: string;
11450
11467
  isMobile: boolean;
11451
11468
  log_id: string;
@@ -11760,7 +11777,7 @@ export declare function init(config: AuthHeroConfig): {
11760
11777
  };
11761
11778
  } & {
11762
11779
  json: {
11763
- 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";
11780
+ 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";
11764
11781
  body: string;
11765
11782
  from: string;
11766
11783
  subject: string;
@@ -11781,7 +11798,7 @@ export declare function init(config: AuthHeroConfig): {
11781
11798
  };
11782
11799
  } & {
11783
11800
  json: {
11784
- 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";
11801
+ 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";
11785
11802
  body: string;
11786
11803
  from: string;
11787
11804
  subject: string;
@@ -11793,7 +11810,7 @@ export declare function init(config: AuthHeroConfig): {
11793
11810
  };
11794
11811
  };
11795
11812
  output: {
11796
- 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";
11813
+ 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";
11797
11814
  body: string;
11798
11815
  from: string;
11799
11816
  subject: string;
@@ -11816,7 +11833,7 @@ export declare function init(config: AuthHeroConfig): {
11816
11833
  };
11817
11834
  };
11818
11835
  output: {
11819
- 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";
11836
+ 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";
11820
11837
  body: string;
11821
11838
  subject: string;
11822
11839
  }[];
@@ -11829,7 +11846,7 @@ export declare function init(config: AuthHeroConfig): {
11829
11846
  $get: {
11830
11847
  input: {
11831
11848
  param: {
11832
- 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";
11849
+ 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";
11833
11850
  };
11834
11851
  } & {
11835
11852
  header: {
@@ -11842,7 +11859,7 @@ export declare function init(config: AuthHeroConfig): {
11842
11859
  } | {
11843
11860
  input: {
11844
11861
  param: {
11845
- 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";
11862
+ 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";
11846
11863
  };
11847
11864
  } & {
11848
11865
  header: {
@@ -11850,7 +11867,7 @@ export declare function init(config: AuthHeroConfig): {
11850
11867
  };
11851
11868
  };
11852
11869
  output: {
11853
- 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";
11870
+ 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";
11854
11871
  body: string;
11855
11872
  from: string;
11856
11873
  subject: string;
@@ -11869,7 +11886,7 @@ export declare function init(config: AuthHeroConfig): {
11869
11886
  $put: {
11870
11887
  input: {
11871
11888
  param: {
11872
- 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";
11889
+ 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";
11873
11890
  };
11874
11891
  } & {
11875
11892
  header: {
@@ -11877,7 +11894,7 @@ export declare function init(config: AuthHeroConfig): {
11877
11894
  };
11878
11895
  } & {
11879
11896
  json: {
11880
- 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";
11897
+ 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";
11881
11898
  body: string;
11882
11899
  subject: string;
11883
11900
  syntax?: "liquid" | undefined;
@@ -11889,7 +11906,7 @@ export declare function init(config: AuthHeroConfig): {
11889
11906
  };
11890
11907
  };
11891
11908
  output: {
11892
- 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";
11909
+ 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";
11893
11910
  body: string;
11894
11911
  from: string;
11895
11912
  subject: string;
@@ -11908,7 +11925,7 @@ export declare function init(config: AuthHeroConfig): {
11908
11925
  $patch: {
11909
11926
  input: {
11910
11927
  param: {
11911
- 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";
11928
+ 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";
11912
11929
  };
11913
11930
  } & {
11914
11931
  header: {
@@ -11916,7 +11933,7 @@ export declare function init(config: AuthHeroConfig): {
11916
11933
  };
11917
11934
  } & {
11918
11935
  json: {
11919
- 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;
11936
+ 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;
11920
11937
  body?: string | undefined;
11921
11938
  from?: string | undefined;
11922
11939
  subject?: string | undefined;
@@ -11933,7 +11950,7 @@ export declare function init(config: AuthHeroConfig): {
11933
11950
  } | {
11934
11951
  input: {
11935
11952
  param: {
11936
- 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";
11953
+ 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";
11937
11954
  };
11938
11955
  } & {
11939
11956
  header: {
@@ -11941,7 +11958,7 @@ export declare function init(config: AuthHeroConfig): {
11941
11958
  };
11942
11959
  } & {
11943
11960
  json: {
11944
- 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;
11961
+ 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;
11945
11962
  body?: string | undefined;
11946
11963
  from?: string | undefined;
11947
11964
  subject?: string | undefined;
@@ -11953,7 +11970,7 @@ export declare function init(config: AuthHeroConfig): {
11953
11970
  };
11954
11971
  };
11955
11972
  output: {
11956
- 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";
11973
+ 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";
11957
11974
  body: string;
11958
11975
  from: string;
11959
11976
  subject: string;
@@ -11972,7 +11989,7 @@ export declare function init(config: AuthHeroConfig): {
11972
11989
  $delete: {
11973
11990
  input: {
11974
11991
  param: {
11975
- 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";
11992
+ 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";
11976
11993
  };
11977
11994
  } & {
11978
11995
  header: {
@@ -11985,7 +12002,7 @@ export declare function init(config: AuthHeroConfig): {
11985
12002
  } | {
11986
12003
  input: {
11987
12004
  param: {
11988
- 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";
12005
+ 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";
11989
12006
  };
11990
12007
  } & {
11991
12008
  header: {
@@ -12002,7 +12019,7 @@ export declare function init(config: AuthHeroConfig): {
12002
12019
  $post: {
12003
12020
  input: {
12004
12021
  param: {
12005
- 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";
12022
+ 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";
12006
12023
  };
12007
12024
  } & {
12008
12025
  header: {
@@ -12572,7 +12589,7 @@ export declare function init(config: AuthHeroConfig): {
12572
12589
  base_focus_color: string;
12573
12590
  base_hover_color: string;
12574
12591
  body_text: string;
12575
- captcha_widget_theme: "auto" | "light" | "dark";
12592
+ captcha_widget_theme: "dark" | "light" | "auto";
12576
12593
  error: string;
12577
12594
  header: string;
12578
12595
  icons: string;
@@ -12623,12 +12640,12 @@ export declare function init(config: AuthHeroConfig): {
12623
12640
  background_color: string;
12624
12641
  background_image_url: string;
12625
12642
  page_layout: "center" | "left" | "right";
12626
- logo_placement?: "widget" | "chip" | "none" | undefined;
12643
+ logo_placement?: "widget" | "none" | "chip" | undefined;
12627
12644
  };
12628
12645
  widget: {
12629
12646
  header_text_alignment: "center" | "left" | "right";
12630
12647
  logo_height: number;
12631
- logo_position: "none" | "center" | "left" | "right";
12648
+ logo_position: "center" | "left" | "right" | "none";
12632
12649
  logo_url: string;
12633
12650
  social_buttons_layout: "bottom" | "top";
12634
12651
  };
@@ -12662,7 +12679,7 @@ export declare function init(config: AuthHeroConfig): {
12662
12679
  base_focus_color: string;
12663
12680
  base_hover_color: string;
12664
12681
  body_text: string;
12665
- captcha_widget_theme: "auto" | "light" | "dark";
12682
+ captcha_widget_theme: "dark" | "light" | "auto";
12666
12683
  error: string;
12667
12684
  header: string;
12668
12685
  icons: string;
@@ -12713,12 +12730,12 @@ export declare function init(config: AuthHeroConfig): {
12713
12730
  background_color: string;
12714
12731
  background_image_url: string;
12715
12732
  page_layout: "center" | "left" | "right";
12716
- logo_placement?: "widget" | "chip" | "none" | undefined;
12733
+ logo_placement?: "widget" | "none" | "chip" | undefined;
12717
12734
  };
12718
12735
  widget: {
12719
12736
  header_text_alignment: "center" | "left" | "right";
12720
12737
  logo_height: number;
12721
- logo_position: "none" | "center" | "left" | "right";
12738
+ logo_position: "center" | "left" | "right" | "none";
12722
12739
  logo_url: string;
12723
12740
  social_buttons_layout: "bottom" | "top";
12724
12741
  };
@@ -12741,7 +12758,7 @@ export declare function init(config: AuthHeroConfig): {
12741
12758
  base_focus_color: string;
12742
12759
  base_hover_color: string;
12743
12760
  body_text: string;
12744
- captcha_widget_theme: "auto" | "light" | "dark";
12761
+ captcha_widget_theme: "dark" | "light" | "auto";
12745
12762
  error: string;
12746
12763
  header: string;
12747
12764
  icons: string;
@@ -12792,12 +12809,12 @@ export declare function init(config: AuthHeroConfig): {
12792
12809
  background_color: string;
12793
12810
  background_image_url: string;
12794
12811
  page_layout: "center" | "left" | "right";
12795
- logo_placement?: "widget" | "chip" | "none" | undefined;
12812
+ logo_placement?: "widget" | "none" | "chip" | undefined;
12796
12813
  };
12797
12814
  widget: {
12798
12815
  header_text_alignment: "center" | "left" | "right";
12799
12816
  logo_height: number;
12800
- logo_position: "none" | "center" | "left" | "right";
12817
+ logo_position: "center" | "left" | "right" | "none";
12801
12818
  logo_url: string;
12802
12819
  social_buttons_layout: "bottom" | "top";
12803
12820
  };
@@ -12831,7 +12848,7 @@ export declare function init(config: AuthHeroConfig): {
12831
12848
  font?: {
12832
12849
  url: string;
12833
12850
  } | undefined;
12834
- dark_mode?: "auto" | "light" | "dark" | undefined;
12851
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12835
12852
  };
12836
12853
  outputFormat: "json";
12837
12854
  status: 200;
@@ -12861,7 +12878,7 @@ export declare function init(config: AuthHeroConfig): {
12861
12878
  font?: {
12862
12879
  url: string;
12863
12880
  } | undefined;
12864
- dark_mode?: "auto" | "light" | "dark" | undefined;
12881
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12865
12882
  };
12866
12883
  };
12867
12884
  output: {
@@ -12880,7 +12897,7 @@ export declare function init(config: AuthHeroConfig): {
12880
12897
  font?: {
12881
12898
  url: string;
12882
12899
  } | undefined;
12883
- dark_mode?: "auto" | "light" | "dark" | undefined;
12900
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12884
12901
  };
12885
12902
  outputFormat: "json";
12886
12903
  status: 200;
@@ -12954,7 +12971,7 @@ export declare function init(config: AuthHeroConfig): {
12954
12971
  } & {
12955
12972
  json: {
12956
12973
  body?: string | undefined;
12957
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
12974
+ screen?: "password" | "login" | "identifier" | "signup" | undefined;
12958
12975
  branding?: {
12959
12976
  colors?: {
12960
12977
  primary: string;
@@ -12971,7 +12988,7 @@ export declare function init(config: AuthHeroConfig): {
12971
12988
  font?: {
12972
12989
  url: string;
12973
12990
  } | undefined;
12974
- dark_mode?: "auto" | "light" | "dark" | undefined;
12991
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12975
12992
  } | undefined;
12976
12993
  theme?: {
12977
12994
  borders?: {
@@ -12989,7 +13006,7 @@ export declare function init(config: AuthHeroConfig): {
12989
13006
  base_focus_color: string;
12990
13007
  base_hover_color: string;
12991
13008
  body_text: string;
12992
- captcha_widget_theme: "auto" | "light" | "dark";
13009
+ captcha_widget_theme: "dark" | "light" | "auto";
12993
13010
  error: string;
12994
13011
  header: string;
12995
13012
  icons: string;
@@ -13040,12 +13057,12 @@ export declare function init(config: AuthHeroConfig): {
13040
13057
  background_color: string;
13041
13058
  background_image_url: string;
13042
13059
  page_layout: "center" | "left" | "right";
13043
- logo_placement?: "widget" | "chip" | "none" | undefined;
13060
+ logo_placement?: "widget" | "none" | "chip" | undefined;
13044
13061
  } | undefined;
13045
13062
  widget?: {
13046
13063
  header_text_alignment: "center" | "left" | "right";
13047
13064
  logo_height: number;
13048
- logo_position: "none" | "center" | "left" | "right";
13065
+ logo_position: "center" | "left" | "right" | "none";
13049
13066
  logo_url: string;
13050
13067
  social_buttons_layout: "bottom" | "top";
13051
13068
  } | undefined;
@@ -13198,7 +13215,7 @@ export declare function init(config: AuthHeroConfig): {
13198
13215
  output: {
13199
13216
  id: string;
13200
13217
  trigger_id: string;
13201
- status: "pending" | "suspended" | "unspecified" | "final" | "partial" | "canceled";
13218
+ status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
13202
13219
  results: {
13203
13220
  action_name: string;
13204
13221
  error: {
@@ -13245,7 +13262,7 @@ export declare function init(config: AuthHeroConfig): {
13245
13262
  logs: {
13246
13263
  action_name: string;
13247
13264
  lines: {
13248
- level: "log" | "error" | "info" | "warn" | "debug";
13265
+ level: "error" | "log" | "info" | "warn" | "debug";
13249
13266
  message: string;
13250
13267
  }[];
13251
13268
  }[];
@@ -13912,7 +13929,7 @@ export declare function init(config: AuthHeroConfig): {
13912
13929
  args: import("hono/utils/types").JSONValue[];
13913
13930
  }[];
13914
13931
  logs: {
13915
- level: "log" | "error" | "info" | "warn" | "debug";
13932
+ level: "error" | "log" | "info" | "warn" | "debug";
13916
13933
  message: string;
13917
13934
  }[];
13918
13935
  error?: string | undefined;
@@ -13926,6 +13943,19 @@ export declare function init(config: AuthHeroConfig): {
13926
13943
  Bindings: Bindings;
13927
13944
  Variables: Variables;
13928
13945
  }, import("hono/types").MergeSchemaPath<{
13946
+ "/:initials": {
13947
+ $get: {
13948
+ input: {
13949
+ param: {
13950
+ initials: string;
13951
+ };
13952
+ };
13953
+ output: string;
13954
+ outputFormat: "body";
13955
+ status: 200;
13956
+ };
13957
+ };
13958
+ }, "/avatars"> & import("hono/types").MergeSchemaPath<{
13929
13959
  "/": {
13930
13960
  $get: {
13931
13961
  input: {
@@ -13960,7 +13990,7 @@ export declare function init(config: AuthHeroConfig): {
13960
13990
  message: string;
13961
13991
  };
13962
13992
  outputFormat: "json";
13963
- status: 400;
13993
+ status: 500;
13964
13994
  } | {
13965
13995
  input: {
13966
13996
  query: {
@@ -13978,7 +14008,7 @@ export declare function init(config: AuthHeroConfig): {
13978
14008
  message: string;
13979
14009
  };
13980
14010
  outputFormat: "json";
13981
- status: 500;
14011
+ status: 400;
13982
14012
  };
13983
14013
  };
13984
14014
  } & {
@@ -14016,7 +14046,7 @@ export declare function init(config: AuthHeroConfig): {
14016
14046
  message: string;
14017
14047
  };
14018
14048
  outputFormat: "json";
14019
- status: 400;
14049
+ status: 500;
14020
14050
  } | {
14021
14051
  input: {
14022
14052
  form: {
@@ -14034,7 +14064,7 @@ export declare function init(config: AuthHeroConfig): {
14034
14064
  message: string;
14035
14065
  };
14036
14066
  outputFormat: "json";
14037
- status: 500;
14067
+ status: 400;
14038
14068
  };
14039
14069
  };
14040
14070
  }, "/login/callback"> & import("hono/types").MergeSchemaPath<{
@@ -14072,7 +14102,7 @@ export declare function init(config: AuthHeroConfig): {
14072
14102
  message: string;
14073
14103
  };
14074
14104
  outputFormat: "json";
14075
- status: 400;
14105
+ status: 500;
14076
14106
  } | {
14077
14107
  input: {
14078
14108
  query: {
@@ -14090,7 +14120,7 @@ export declare function init(config: AuthHeroConfig): {
14090
14120
  message: string;
14091
14121
  };
14092
14122
  outputFormat: "json";
14093
- status: 500;
14123
+ status: 400;
14094
14124
  };
14095
14125
  };
14096
14126
  } & {
@@ -14128,7 +14158,7 @@ export declare function init(config: AuthHeroConfig): {
14128
14158
  message: string;
14129
14159
  };
14130
14160
  outputFormat: "json";
14131
- status: 400;
14161
+ status: 500;
14132
14162
  } | {
14133
14163
  input: {
14134
14164
  form: {
@@ -14146,7 +14176,7 @@ export declare function init(config: AuthHeroConfig): {
14146
14176
  message: string;
14147
14177
  };
14148
14178
  outputFormat: "json";
14149
- status: 500;
14179
+ status: 400;
14150
14180
  };
14151
14181
  };
14152
14182
  }, "/callback"> & import("hono/types").MergeSchemaPath<{
@@ -14645,17 +14675,17 @@ export declare function init(config: AuthHeroConfig): {
14645
14675
  email: string;
14646
14676
  send: "code" | "link";
14647
14677
  authParams: {
14648
- state?: string | undefined;
14649
14678
  username?: string | undefined;
14650
- act_as?: string | undefined;
14679
+ scope?: string | undefined;
14680
+ state?: string | undefined;
14681
+ audience?: string | undefined;
14651
14682
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14652
14683
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14684
+ prompt?: string | undefined;
14685
+ act_as?: string | undefined;
14653
14686
  redirect_uri?: string | undefined;
14654
- audience?: string | undefined;
14655
14687
  organization?: string | undefined;
14656
14688
  nonce?: string | undefined;
14657
- scope?: string | undefined;
14658
- prompt?: string | undefined;
14659
14689
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14660
14690
  code_challenge?: string | undefined;
14661
14691
  ui_locales?: string | undefined;
@@ -14681,17 +14711,17 @@ export declare function init(config: AuthHeroConfig): {
14681
14711
  phone_number: string;
14682
14712
  send: "code" | "link";
14683
14713
  authParams: {
14684
- state?: string | undefined;
14685
14714
  username?: string | undefined;
14686
- act_as?: string | undefined;
14715
+ scope?: string | undefined;
14716
+ state?: string | undefined;
14717
+ audience?: string | undefined;
14687
14718
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14688
14719
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14720
+ prompt?: string | undefined;
14721
+ act_as?: string | undefined;
14689
14722
  redirect_uri?: string | undefined;
14690
- audience?: string | undefined;
14691
14723
  organization?: string | undefined;
14692
14724
  nonce?: string | undefined;
14693
- scope?: string | undefined;
14694
- prompt?: string | undefined;
14695
14725
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14696
14726
  code_challenge?: string | undefined;
14697
14727
  ui_locales?: string | undefined;
@@ -14758,7 +14788,7 @@ export declare function init(config: AuthHeroConfig): {
14758
14788
  error_description?: string | undefined;
14759
14789
  };
14760
14790
  outputFormat: "json";
14761
- status: 400;
14791
+ status: 500;
14762
14792
  } | {
14763
14793
  input: {
14764
14794
  query: {
@@ -14779,7 +14809,7 @@ export declare function init(config: AuthHeroConfig): {
14779
14809
  error_description?: string | undefined;
14780
14810
  };
14781
14811
  outputFormat: "json";
14782
- status: 500;
14812
+ status: 400;
14783
14813
  };
14784
14814
  };
14785
14815
  }, "/passwordless"> & import("hono/types").MergeSchemaPath<{
@@ -14923,7 +14953,7 @@ export declare function init(config: AuthHeroConfig): {
14923
14953
  client_id: string;
14924
14954
  username: string;
14925
14955
  otp: string;
14926
- realm: "email" | "sms";
14956
+ realm: "sms" | "email";
14927
14957
  } | {
14928
14958
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14929
14959
  subject_token: string;
@@ -14970,7 +15000,7 @@ export declare function init(config: AuthHeroConfig): {
14970
15000
  client_id: string;
14971
15001
  username: string;
14972
15002
  otp: string;
14973
- realm: "email" | "sms";
15003
+ realm: "sms" | "email";
14974
15004
  } | {
14975
15005
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14976
15006
  subject_token: string;
@@ -15022,7 +15052,7 @@ export declare function init(config: AuthHeroConfig): {
15022
15052
  client_id: string;
15023
15053
  username: string;
15024
15054
  otp: string;
15025
- realm: "email" | "sms";
15055
+ realm: "sms" | "email";
15026
15056
  } | {
15027
15057
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15028
15058
  subject_token: string;
@@ -15069,7 +15099,7 @@ export declare function init(config: AuthHeroConfig): {
15069
15099
  client_id: string;
15070
15100
  username: string;
15071
15101
  otp: string;
15072
- realm: "email" | "sms";
15102
+ realm: "sms" | "email";
15073
15103
  } | {
15074
15104
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15075
15105
  subject_token: string;
@@ -15129,7 +15159,7 @@ export declare function init(config: AuthHeroConfig): {
15129
15159
  client_id: string;
15130
15160
  username: string;
15131
15161
  otp: string;
15132
- realm: "email" | "sms";
15162
+ realm: "sms" | "email";
15133
15163
  } | {
15134
15164
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15135
15165
  subject_token: string;
@@ -15176,7 +15206,7 @@ export declare function init(config: AuthHeroConfig): {
15176
15206
  client_id: string;
15177
15207
  username: string;
15178
15208
  otp: string;
15179
- realm: "email" | "sms";
15209
+ realm: "sms" | "email";
15180
15210
  } | {
15181
15211
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15182
15212
  subject_token: string;
@@ -15231,7 +15261,7 @@ export declare function init(config: AuthHeroConfig): {
15231
15261
  client_id: string;
15232
15262
  username: string;
15233
15263
  otp: string;
15234
- realm: "email" | "sms";
15264
+ realm: "sms" | "email";
15235
15265
  } | {
15236
15266
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15237
15267
  subject_token: string;
@@ -15278,7 +15308,7 @@ export declare function init(config: AuthHeroConfig): {
15278
15308
  client_id: string;
15279
15309
  username: string;
15280
15310
  otp: string;
15281
- realm: "email" | "sms";
15311
+ realm: "sms" | "email";
15282
15312
  } | {
15283
15313
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15284
15314
  subject_token: string;
@@ -15333,7 +15363,7 @@ export declare function init(config: AuthHeroConfig): {
15333
15363
  client_id: string;
15334
15364
  username: string;
15335
15365
  otp: string;
15336
- realm: "email" | "sms";
15366
+ realm: "sms" | "email";
15337
15367
  } | {
15338
15368
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15339
15369
  subject_token: string;
@@ -15380,7 +15410,7 @@ export declare function init(config: AuthHeroConfig): {
15380
15410
  client_id: string;
15381
15411
  username: string;
15382
15412
  otp: string;
15383
- realm: "email" | "sms";
15413
+ realm: "sms" | "email";
15384
15414
  } | {
15385
15415
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15386
15416
  subject_token: string;
@@ -15733,7 +15763,7 @@ export declare function init(config: AuthHeroConfig): {
15733
15763
  };
15734
15764
  output: {};
15735
15765
  outputFormat: string;
15736
- status: 302;
15766
+ status: 500;
15737
15767
  } | {
15738
15768
  input: {
15739
15769
  query: {
@@ -15742,7 +15772,7 @@ export declare function init(config: AuthHeroConfig): {
15742
15772
  };
15743
15773
  output: {};
15744
15774
  outputFormat: string;
15745
- status: 400;
15775
+ status: 302;
15746
15776
  } | {
15747
15777
  input: {
15748
15778
  query: {
@@ -15751,7 +15781,7 @@ export declare function init(config: AuthHeroConfig): {
15751
15781
  };
15752
15782
  output: {};
15753
15783
  outputFormat: string;
15754
- status: 500;
15784
+ status: 400;
15755
15785
  };
15756
15786
  };
15757
15787
  }, "/continue"> & import("hono/types").MergeSchemaPath<{
@@ -16221,7 +16251,7 @@ export declare function init(config: AuthHeroConfig): {
16221
16251
  } & {
16222
16252
  form: {
16223
16253
  username: string;
16224
- login_selection?: "code" | "password" | undefined;
16254
+ login_selection?: "password" | "code" | undefined;
16225
16255
  };
16226
16256
  };
16227
16257
  output: {};
@@ -16235,7 +16265,7 @@ export declare function init(config: AuthHeroConfig): {
16235
16265
  } & {
16236
16266
  form: {
16237
16267
  username: string;
16238
- login_selection?: "code" | "password" | undefined;
16268
+ login_selection?: "password" | "code" | undefined;
16239
16269
  };
16240
16270
  };
16241
16271
  output: {};
@@ -16600,7 +16630,7 @@ export declare function init(config: AuthHeroConfig): {
16600
16630
  $get: {
16601
16631
  input: {
16602
16632
  param: {
16603
- screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16633
+ screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16604
16634
  };
16605
16635
  } & {
16606
16636
  query: {
@@ -16616,7 +16646,7 @@ export declare function init(config: AuthHeroConfig): {
16616
16646
  } | {
16617
16647
  input: {
16618
16648
  param: {
16619
- screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16649
+ screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16620
16650
  };
16621
16651
  } & {
16622
16652
  query: {
@@ -16632,7 +16662,7 @@ export declare function init(config: AuthHeroConfig): {
16632
16662
  } | {
16633
16663
  input: {
16634
16664
  param: {
16635
- screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16665
+ screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16636
16666
  };
16637
16667
  } & {
16638
16668
  query: {
@@ -16652,7 +16682,7 @@ export declare function init(config: AuthHeroConfig): {
16652
16682
  $post: {
16653
16683
  input: {
16654
16684
  param: {
16655
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16685
+ screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16656
16686
  };
16657
16687
  } & {
16658
16688
  query: {
@@ -16670,7 +16700,7 @@ export declare function init(config: AuthHeroConfig): {
16670
16700
  } | {
16671
16701
  input: {
16672
16702
  param: {
16673
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16703
+ screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16674
16704
  };
16675
16705
  } & {
16676
16706
  query: {