authhero 8.9.0 → 8.9.1

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 (36) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +85 -85
  3. package/dist/authhero.d.ts +246 -246
  4. package/dist/authhero.mjs +1837 -1770
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/password.d.ts +10 -1
  8. package/dist/types/authentication-flows/passwordless.d.ts +6 -6
  9. package/dist/types/index.d.ts +246 -246
  10. package/dist/types/routes/auth-api/index.d.ts +30 -30
  11. package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
  12. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  13. package/dist/types/routes/auth-api/token.d.ts +10 -10
  14. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  15. package/dist/types/routes/management-api/actions.d.ts +1 -1
  16. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  17. package/dist/types/routes/management-api/branding.d.ts +13 -13
  18. package/dist/types/routes/management-api/clients.d.ts +8 -8
  19. package/dist/types/routes/management-api/connections.d.ts +21 -21
  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/index.d.ts +214 -214
  25. package/dist/types/routes/management-api/log-streams.d.ts +6 -6
  26. package/dist/types/routes/management-api/logs.d.ts +3 -3
  27. package/dist/types/routes/management-api/organizations.d.ts +4 -4
  28. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  29. package/dist/types/routes/management-api/tenants.d.ts +6 -6
  30. package/dist/types/routes/management-api/themes.d.ts +6 -6
  31. package/dist/types/routes/management-api/users.d.ts +2 -2
  32. package/dist/types/routes/universal-login/common.d.ts +14 -14
  33. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  34. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  35. package/dist/types/routes/universal-login/index.d.ts +2 -2
  36. package/package.json +5 -5
@@ -3005,7 +3005,7 @@ declare function init(config: AuthHeroConfig): {
3005
3005
  };
3006
3006
  } & {
3007
3007
  json: {
3008
- type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
3008
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
3009
3009
  phone_number?: string | undefined;
3010
3010
  totp_secret?: string | undefined;
3011
3011
  credential_id?: string | undefined;
@@ -3145,7 +3145,7 @@ declare function init(config: AuthHeroConfig): {
3145
3145
  };
3146
3146
  };
3147
3147
  output: {
3148
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3148
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3149
3149
  enabled: boolean;
3150
3150
  trial_expired?: boolean | undefined;
3151
3151
  }[];
@@ -3300,7 +3300,7 @@ declare function init(config: AuthHeroConfig): {
3300
3300
  $get: {
3301
3301
  input: {
3302
3302
  param: {
3303
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3303
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3304
3304
  };
3305
3305
  } & {
3306
3306
  header: {
@@ -3308,7 +3308,7 @@ declare function init(config: AuthHeroConfig): {
3308
3308
  };
3309
3309
  };
3310
3310
  output: {
3311
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3311
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3312
3312
  enabled: boolean;
3313
3313
  trial_expired?: boolean | undefined;
3314
3314
  };
@@ -3321,7 +3321,7 @@ declare function init(config: AuthHeroConfig): {
3321
3321
  $put: {
3322
3322
  input: {
3323
3323
  param: {
3324
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3324
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3325
3325
  };
3326
3326
  } & {
3327
3327
  header: {
@@ -3333,7 +3333,7 @@ declare function init(config: AuthHeroConfig): {
3333
3333
  };
3334
3334
  };
3335
3335
  output: {
3336
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3336
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3337
3337
  enabled: boolean;
3338
3338
  trial_expired?: boolean | undefined;
3339
3339
  };
@@ -4078,11 +4078,11 @@ declare function init(config: AuthHeroConfig): {
4078
4078
  invitee: {
4079
4079
  email?: string | undefined;
4080
4080
  };
4081
- id?: string | undefined;
4082
- roles?: string[] | undefined;
4083
- connection_id?: string | undefined;
4084
4081
  app_metadata?: Record<string, any> | undefined;
4085
4082
  user_metadata?: Record<string, any> | undefined;
4083
+ id?: string | undefined;
4084
+ connection_id?: string | undefined;
4085
+ roles?: string[] | undefined;
4086
4086
  ttl_sec?: number | undefined;
4087
4087
  send_invitation_email?: boolean | undefined;
4088
4088
  };
@@ -4266,8 +4266,8 @@ declare function init(config: AuthHeroConfig): {
4266
4266
  };
4267
4267
  } & {
4268
4268
  json: {
4269
- assign_membership_on_login?: boolean | undefined;
4270
4269
  show_as_button?: boolean | undefined;
4270
+ assign_membership_on_login?: boolean | undefined;
4271
4271
  is_signup_enabled?: boolean | undefined;
4272
4272
  };
4273
4273
  };
@@ -5509,7 +5509,7 @@ declare function init(config: AuthHeroConfig): {
5509
5509
  hint?: string | undefined;
5510
5510
  messages?: {
5511
5511
  text: string;
5512
- type: "error" | "success" | "info" | "warning";
5512
+ type: "success" | "error" | "info" | "warning";
5513
5513
  id?: number | undefined;
5514
5514
  }[] | undefined;
5515
5515
  required?: boolean | undefined;
@@ -5527,7 +5527,7 @@ declare function init(config: AuthHeroConfig): {
5527
5527
  hint?: string | undefined;
5528
5528
  messages?: {
5529
5529
  text: string;
5530
- type: "error" | "success" | "info" | "warning";
5530
+ type: "success" | "error" | "info" | "warning";
5531
5531
  id?: number | undefined;
5532
5532
  }[] | undefined;
5533
5533
  required?: boolean | undefined;
@@ -5551,7 +5551,7 @@ declare function init(config: AuthHeroConfig): {
5551
5551
  hint?: string | undefined;
5552
5552
  messages?: {
5553
5553
  text: string;
5554
- type: "error" | "success" | "info" | "warning";
5554
+ type: "success" | "error" | "info" | "warning";
5555
5555
  id?: number | undefined;
5556
5556
  }[] | undefined;
5557
5557
  required?: boolean | undefined;
@@ -5575,7 +5575,7 @@ declare function init(config: AuthHeroConfig): {
5575
5575
  hint?: string | undefined;
5576
5576
  messages?: {
5577
5577
  text: string;
5578
- type: "error" | "success" | "info" | "warning";
5578
+ type: "success" | "error" | "info" | "warning";
5579
5579
  id?: number | undefined;
5580
5580
  }[] | undefined;
5581
5581
  required?: boolean | undefined;
@@ -5599,7 +5599,7 @@ declare function init(config: AuthHeroConfig): {
5599
5599
  hint?: string | undefined;
5600
5600
  messages?: {
5601
5601
  text: string;
5602
- type: "error" | "success" | "info" | "warning";
5602
+ type: "success" | "error" | "info" | "warning";
5603
5603
  id?: number | undefined;
5604
5604
  }[] | undefined;
5605
5605
  required?: boolean | undefined;
@@ -5628,7 +5628,7 @@ declare function init(config: AuthHeroConfig): {
5628
5628
  hint?: string | undefined;
5629
5629
  messages?: {
5630
5630
  text: string;
5631
- type: "error" | "success" | "info" | "warning";
5631
+ type: "success" | "error" | "info" | "warning";
5632
5632
  id?: number | undefined;
5633
5633
  }[] | undefined;
5634
5634
  required?: boolean | undefined;
@@ -5643,7 +5643,7 @@ declare function init(config: AuthHeroConfig): {
5643
5643
  hint?: string | undefined;
5644
5644
  messages?: {
5645
5645
  text: string;
5646
- type: "error" | "success" | "info" | "warning";
5646
+ type: "success" | "error" | "info" | "warning";
5647
5647
  id?: number | undefined;
5648
5648
  }[] | undefined;
5649
5649
  required?: boolean | undefined;
@@ -5664,7 +5664,7 @@ declare function init(config: AuthHeroConfig): {
5664
5664
  hint?: string | undefined;
5665
5665
  messages?: {
5666
5666
  text: string;
5667
- type: "error" | "success" | "info" | "warning";
5667
+ type: "success" | "error" | "info" | "warning";
5668
5668
  id?: number | undefined;
5669
5669
  }[] | undefined;
5670
5670
  required?: boolean | undefined;
@@ -5689,7 +5689,7 @@ declare function init(config: AuthHeroConfig): {
5689
5689
  hint?: string | undefined;
5690
5690
  messages?: {
5691
5691
  text: string;
5692
- type: "error" | "success" | "info" | "warning";
5692
+ type: "success" | "error" | "info" | "warning";
5693
5693
  id?: number | undefined;
5694
5694
  }[] | undefined;
5695
5695
  required?: boolean | undefined;
@@ -5708,7 +5708,7 @@ declare function init(config: AuthHeroConfig): {
5708
5708
  hint?: string | undefined;
5709
5709
  messages?: {
5710
5710
  text: string;
5711
- type: "error" | "success" | "info" | "warning";
5711
+ type: "success" | "error" | "info" | "warning";
5712
5712
  id?: number | undefined;
5713
5713
  }[] | undefined;
5714
5714
  required?: boolean | undefined;
@@ -5728,7 +5728,7 @@ declare function init(config: AuthHeroConfig): {
5728
5728
  hint?: string | undefined;
5729
5729
  messages?: {
5730
5730
  text: string;
5731
- type: "error" | "success" | "info" | "warning";
5731
+ type: "success" | "error" | "info" | "warning";
5732
5732
  id?: number | undefined;
5733
5733
  }[] | undefined;
5734
5734
  required?: boolean | undefined;
@@ -5747,7 +5747,7 @@ declare function init(config: AuthHeroConfig): {
5747
5747
  hint?: string | undefined;
5748
5748
  messages?: {
5749
5749
  text: string;
5750
- type: "error" | "success" | "info" | "warning";
5750
+ type: "success" | "error" | "info" | "warning";
5751
5751
  id?: number | undefined;
5752
5752
  }[] | undefined;
5753
5753
  required?: boolean | undefined;
@@ -5769,7 +5769,7 @@ declare function init(config: AuthHeroConfig): {
5769
5769
  hint?: string | undefined;
5770
5770
  messages?: {
5771
5771
  text: string;
5772
- type: "error" | "success" | "info" | "warning";
5772
+ type: "success" | "error" | "info" | "warning";
5773
5773
  id?: number | undefined;
5774
5774
  }[] | undefined;
5775
5775
  required?: boolean | undefined;
@@ -5791,7 +5791,7 @@ declare function init(config: AuthHeroConfig): {
5791
5791
  hint?: string | undefined;
5792
5792
  messages?: {
5793
5793
  text: string;
5794
- type: "error" | "success" | "info" | "warning";
5794
+ type: "success" | "error" | "info" | "warning";
5795
5795
  id?: number | undefined;
5796
5796
  }[] | undefined;
5797
5797
  required?: boolean | undefined;
@@ -5810,7 +5810,7 @@ declare function init(config: AuthHeroConfig): {
5810
5810
  hint?: string | undefined;
5811
5811
  messages?: {
5812
5812
  text: string;
5813
- type: "error" | "success" | "info" | "warning";
5813
+ type: "success" | "error" | "info" | "warning";
5814
5814
  id?: number | undefined;
5815
5815
  }[] | undefined;
5816
5816
  required?: boolean | undefined;
@@ -5835,7 +5835,7 @@ declare function init(config: AuthHeroConfig): {
5835
5835
  hint?: string | undefined;
5836
5836
  messages?: {
5837
5837
  text: string;
5838
- type: "error" | "success" | "info" | "warning";
5838
+ type: "success" | "error" | "info" | "warning";
5839
5839
  id?: number | undefined;
5840
5840
  }[] | undefined;
5841
5841
  required?: boolean | undefined;
@@ -5856,7 +5856,7 @@ declare function init(config: AuthHeroConfig): {
5856
5856
  hint?: string | undefined;
5857
5857
  messages?: {
5858
5858
  text: string;
5859
- type: "error" | "success" | "info" | "warning";
5859
+ type: "success" | "error" | "info" | "warning";
5860
5860
  id?: number | undefined;
5861
5861
  }[] | undefined;
5862
5862
  required?: boolean | undefined;
@@ -5877,7 +5877,7 @@ declare function init(config: AuthHeroConfig): {
5877
5877
  hint?: string | undefined;
5878
5878
  messages?: {
5879
5879
  text: string;
5880
- type: "error" | "success" | "info" | "warning";
5880
+ type: "success" | "error" | "info" | "warning";
5881
5881
  id?: number | undefined;
5882
5882
  }[] | undefined;
5883
5883
  required?: boolean | undefined;
@@ -6110,7 +6110,7 @@ declare function init(config: AuthHeroConfig): {
6110
6110
  hint?: string | undefined;
6111
6111
  messages?: {
6112
6112
  text: string;
6113
- type: "error" | "success" | "info" | "warning";
6113
+ type: "success" | "error" | "info" | "warning";
6114
6114
  id?: number | undefined;
6115
6115
  }[] | undefined;
6116
6116
  required?: boolean | undefined;
@@ -6128,7 +6128,7 @@ declare function init(config: AuthHeroConfig): {
6128
6128
  hint?: string | undefined;
6129
6129
  messages?: {
6130
6130
  text: string;
6131
- type: "error" | "success" | "info" | "warning";
6131
+ type: "success" | "error" | "info" | "warning";
6132
6132
  id?: number | undefined;
6133
6133
  }[] | undefined;
6134
6134
  required?: boolean | undefined;
@@ -6152,7 +6152,7 @@ declare function init(config: AuthHeroConfig): {
6152
6152
  hint?: string | undefined;
6153
6153
  messages?: {
6154
6154
  text: string;
6155
- type: "error" | "success" | "info" | "warning";
6155
+ type: "success" | "error" | "info" | "warning";
6156
6156
  id?: number | undefined;
6157
6157
  }[] | undefined;
6158
6158
  required?: boolean | undefined;
@@ -6176,7 +6176,7 @@ declare function init(config: AuthHeroConfig): {
6176
6176
  hint?: string | undefined;
6177
6177
  messages?: {
6178
6178
  text: string;
6179
- type: "error" | "success" | "info" | "warning";
6179
+ type: "success" | "error" | "info" | "warning";
6180
6180
  id?: number | undefined;
6181
6181
  }[] | undefined;
6182
6182
  required?: boolean | undefined;
@@ -6200,7 +6200,7 @@ declare function init(config: AuthHeroConfig): {
6200
6200
  hint?: string | undefined;
6201
6201
  messages?: {
6202
6202
  text: string;
6203
- type: "error" | "success" | "info" | "warning";
6203
+ type: "success" | "error" | "info" | "warning";
6204
6204
  id?: number | undefined;
6205
6205
  }[] | undefined;
6206
6206
  required?: boolean | undefined;
@@ -6229,7 +6229,7 @@ declare function init(config: AuthHeroConfig): {
6229
6229
  hint?: string | undefined;
6230
6230
  messages?: {
6231
6231
  text: string;
6232
- type: "error" | "success" | "info" | "warning";
6232
+ type: "success" | "error" | "info" | "warning";
6233
6233
  id?: number | undefined;
6234
6234
  }[] | undefined;
6235
6235
  required?: boolean | undefined;
@@ -6244,7 +6244,7 @@ declare function init(config: AuthHeroConfig): {
6244
6244
  hint?: string | undefined;
6245
6245
  messages?: {
6246
6246
  text: string;
6247
- type: "error" | "success" | "info" | "warning";
6247
+ type: "success" | "error" | "info" | "warning";
6248
6248
  id?: number | undefined;
6249
6249
  }[] | undefined;
6250
6250
  required?: boolean | undefined;
@@ -6265,7 +6265,7 @@ declare function init(config: AuthHeroConfig): {
6265
6265
  hint?: string | undefined;
6266
6266
  messages?: {
6267
6267
  text: string;
6268
- type: "error" | "success" | "info" | "warning";
6268
+ type: "success" | "error" | "info" | "warning";
6269
6269
  id?: number | undefined;
6270
6270
  }[] | undefined;
6271
6271
  required?: boolean | undefined;
@@ -6290,7 +6290,7 @@ declare function init(config: AuthHeroConfig): {
6290
6290
  hint?: string | undefined;
6291
6291
  messages?: {
6292
6292
  text: string;
6293
- type: "error" | "success" | "info" | "warning";
6293
+ type: "success" | "error" | "info" | "warning";
6294
6294
  id?: number | undefined;
6295
6295
  }[] | undefined;
6296
6296
  required?: boolean | undefined;
@@ -6309,7 +6309,7 @@ declare function init(config: AuthHeroConfig): {
6309
6309
  hint?: string | undefined;
6310
6310
  messages?: {
6311
6311
  text: string;
6312
- type: "error" | "success" | "info" | "warning";
6312
+ type: "success" | "error" | "info" | "warning";
6313
6313
  id?: number | undefined;
6314
6314
  }[] | undefined;
6315
6315
  required?: boolean | undefined;
@@ -6329,7 +6329,7 @@ declare function init(config: AuthHeroConfig): {
6329
6329
  hint?: string | undefined;
6330
6330
  messages?: {
6331
6331
  text: string;
6332
- type: "error" | "success" | "info" | "warning";
6332
+ type: "success" | "error" | "info" | "warning";
6333
6333
  id?: number | undefined;
6334
6334
  }[] | undefined;
6335
6335
  required?: boolean | undefined;
@@ -6348,7 +6348,7 @@ declare function init(config: AuthHeroConfig): {
6348
6348
  hint?: string | undefined;
6349
6349
  messages?: {
6350
6350
  text: string;
6351
- type: "error" | "success" | "info" | "warning";
6351
+ type: "success" | "error" | "info" | "warning";
6352
6352
  id?: number | undefined;
6353
6353
  }[] | undefined;
6354
6354
  required?: boolean | undefined;
@@ -6370,7 +6370,7 @@ declare function init(config: AuthHeroConfig): {
6370
6370
  hint?: string | undefined;
6371
6371
  messages?: {
6372
6372
  text: string;
6373
- type: "error" | "success" | "info" | "warning";
6373
+ type: "success" | "error" | "info" | "warning";
6374
6374
  id?: number | undefined;
6375
6375
  }[] | undefined;
6376
6376
  required?: boolean | undefined;
@@ -6392,7 +6392,7 @@ declare function init(config: AuthHeroConfig): {
6392
6392
  hint?: string | undefined;
6393
6393
  messages?: {
6394
6394
  text: string;
6395
- type: "error" | "success" | "info" | "warning";
6395
+ type: "success" | "error" | "info" | "warning";
6396
6396
  id?: number | undefined;
6397
6397
  }[] | undefined;
6398
6398
  required?: boolean | undefined;
@@ -6411,7 +6411,7 @@ declare function init(config: AuthHeroConfig): {
6411
6411
  hint?: string | undefined;
6412
6412
  messages?: {
6413
6413
  text: string;
6414
- type: "error" | "success" | "info" | "warning";
6414
+ type: "success" | "error" | "info" | "warning";
6415
6415
  id?: number | undefined;
6416
6416
  }[] | undefined;
6417
6417
  required?: boolean | undefined;
@@ -6436,7 +6436,7 @@ declare function init(config: AuthHeroConfig): {
6436
6436
  hint?: string | undefined;
6437
6437
  messages?: {
6438
6438
  text: string;
6439
- type: "error" | "success" | "info" | "warning";
6439
+ type: "success" | "error" | "info" | "warning";
6440
6440
  id?: number | undefined;
6441
6441
  }[] | undefined;
6442
6442
  required?: boolean | undefined;
@@ -6457,7 +6457,7 @@ declare function init(config: AuthHeroConfig): {
6457
6457
  hint?: string | undefined;
6458
6458
  messages?: {
6459
6459
  text: string;
6460
- type: "error" | "success" | "info" | "warning";
6460
+ type: "success" | "error" | "info" | "warning";
6461
6461
  id?: number | undefined;
6462
6462
  }[] | undefined;
6463
6463
  required?: boolean | undefined;
@@ -6478,7 +6478,7 @@ declare function init(config: AuthHeroConfig): {
6478
6478
  hint?: string | undefined;
6479
6479
  messages?: {
6480
6480
  text: string;
6481
- type: "error" | "success" | "info" | "warning";
6481
+ type: "success" | "error" | "info" | "warning";
6482
6482
  id?: number | undefined;
6483
6483
  }[] | undefined;
6484
6484
  required?: boolean | undefined;
@@ -6726,7 +6726,7 @@ declare function init(config: AuthHeroConfig): {
6726
6726
  hint?: string | undefined;
6727
6727
  messages?: {
6728
6728
  text: string;
6729
- type: "error" | "success" | "info" | "warning";
6729
+ type: "success" | "error" | "info" | "warning";
6730
6730
  id?: number | undefined;
6731
6731
  }[] | undefined;
6732
6732
  required?: boolean | undefined;
@@ -6744,7 +6744,7 @@ declare function init(config: AuthHeroConfig): {
6744
6744
  hint?: string | undefined;
6745
6745
  messages?: {
6746
6746
  text: string;
6747
- type: "error" | "success" | "info" | "warning";
6747
+ type: "success" | "error" | "info" | "warning";
6748
6748
  id?: number | undefined;
6749
6749
  }[] | undefined;
6750
6750
  required?: boolean | undefined;
@@ -6768,7 +6768,7 @@ declare function init(config: AuthHeroConfig): {
6768
6768
  hint?: string | undefined;
6769
6769
  messages?: {
6770
6770
  text: string;
6771
- type: "error" | "success" | "info" | "warning";
6771
+ type: "success" | "error" | "info" | "warning";
6772
6772
  id?: number | undefined;
6773
6773
  }[] | undefined;
6774
6774
  required?: boolean | undefined;
@@ -6792,7 +6792,7 @@ declare function init(config: AuthHeroConfig): {
6792
6792
  hint?: string | undefined;
6793
6793
  messages?: {
6794
6794
  text: string;
6795
- type: "error" | "success" | "info" | "warning";
6795
+ type: "success" | "error" | "info" | "warning";
6796
6796
  id?: number | undefined;
6797
6797
  }[] | undefined;
6798
6798
  required?: boolean | undefined;
@@ -6816,7 +6816,7 @@ declare function init(config: AuthHeroConfig): {
6816
6816
  hint?: string | undefined;
6817
6817
  messages?: {
6818
6818
  text: string;
6819
- type: "error" | "success" | "info" | "warning";
6819
+ type: "success" | "error" | "info" | "warning";
6820
6820
  id?: number | undefined;
6821
6821
  }[] | undefined;
6822
6822
  required?: boolean | undefined;
@@ -6845,7 +6845,7 @@ declare function init(config: AuthHeroConfig): {
6845
6845
  hint?: string | undefined;
6846
6846
  messages?: {
6847
6847
  text: string;
6848
- type: "error" | "success" | "info" | "warning";
6848
+ type: "success" | "error" | "info" | "warning";
6849
6849
  id?: number | undefined;
6850
6850
  }[] | undefined;
6851
6851
  required?: boolean | undefined;
@@ -6860,7 +6860,7 @@ declare function init(config: AuthHeroConfig): {
6860
6860
  hint?: string | undefined;
6861
6861
  messages?: {
6862
6862
  text: string;
6863
- type: "error" | "success" | "info" | "warning";
6863
+ type: "success" | "error" | "info" | "warning";
6864
6864
  id?: number | undefined;
6865
6865
  }[] | undefined;
6866
6866
  required?: boolean | undefined;
@@ -6881,7 +6881,7 @@ declare function init(config: AuthHeroConfig): {
6881
6881
  hint?: string | undefined;
6882
6882
  messages?: {
6883
6883
  text: string;
6884
- type: "error" | "success" | "info" | "warning";
6884
+ type: "success" | "error" | "info" | "warning";
6885
6885
  id?: number | undefined;
6886
6886
  }[] | undefined;
6887
6887
  required?: boolean | undefined;
@@ -6906,7 +6906,7 @@ declare function init(config: AuthHeroConfig): {
6906
6906
  hint?: string | undefined;
6907
6907
  messages?: {
6908
6908
  text: string;
6909
- type: "error" | "success" | "info" | "warning";
6909
+ type: "success" | "error" | "info" | "warning";
6910
6910
  id?: number | undefined;
6911
6911
  }[] | undefined;
6912
6912
  required?: boolean | undefined;
@@ -6925,7 +6925,7 @@ declare function init(config: AuthHeroConfig): {
6925
6925
  hint?: string | undefined;
6926
6926
  messages?: {
6927
6927
  text: string;
6928
- type: "error" | "success" | "info" | "warning";
6928
+ type: "success" | "error" | "info" | "warning";
6929
6929
  id?: number | undefined;
6930
6930
  }[] | undefined;
6931
6931
  required?: boolean | undefined;
@@ -6945,7 +6945,7 @@ declare function init(config: AuthHeroConfig): {
6945
6945
  hint?: string | undefined;
6946
6946
  messages?: {
6947
6947
  text: string;
6948
- type: "error" | "success" | "info" | "warning";
6948
+ type: "success" | "error" | "info" | "warning";
6949
6949
  id?: number | undefined;
6950
6950
  }[] | undefined;
6951
6951
  required?: boolean | undefined;
@@ -6964,7 +6964,7 @@ declare function init(config: AuthHeroConfig): {
6964
6964
  hint?: string | undefined;
6965
6965
  messages?: {
6966
6966
  text: string;
6967
- type: "error" | "success" | "info" | "warning";
6967
+ type: "success" | "error" | "info" | "warning";
6968
6968
  id?: number | undefined;
6969
6969
  }[] | undefined;
6970
6970
  required?: boolean | undefined;
@@ -6986,7 +6986,7 @@ declare function init(config: AuthHeroConfig): {
6986
6986
  hint?: string | undefined;
6987
6987
  messages?: {
6988
6988
  text: string;
6989
- type: "error" | "success" | "info" | "warning";
6989
+ type: "success" | "error" | "info" | "warning";
6990
6990
  id?: number | undefined;
6991
6991
  }[] | undefined;
6992
6992
  required?: boolean | undefined;
@@ -7008,7 +7008,7 @@ declare function init(config: AuthHeroConfig): {
7008
7008
  hint?: string | undefined;
7009
7009
  messages?: {
7010
7010
  text: string;
7011
- type: "error" | "success" | "info" | "warning";
7011
+ type: "success" | "error" | "info" | "warning";
7012
7012
  id?: number | undefined;
7013
7013
  }[] | undefined;
7014
7014
  required?: boolean | undefined;
@@ -7027,7 +7027,7 @@ declare function init(config: AuthHeroConfig): {
7027
7027
  hint?: string | undefined;
7028
7028
  messages?: {
7029
7029
  text: string;
7030
- type: "error" | "success" | "info" | "warning";
7030
+ type: "success" | "error" | "info" | "warning";
7031
7031
  id?: number | undefined;
7032
7032
  }[] | undefined;
7033
7033
  required?: boolean | undefined;
@@ -7052,7 +7052,7 @@ declare function init(config: AuthHeroConfig): {
7052
7052
  hint?: string | undefined;
7053
7053
  messages?: {
7054
7054
  text: string;
7055
- type: "error" | "success" | "info" | "warning";
7055
+ type: "success" | "error" | "info" | "warning";
7056
7056
  id?: number | undefined;
7057
7057
  }[] | undefined;
7058
7058
  required?: boolean | undefined;
@@ -7073,7 +7073,7 @@ declare function init(config: AuthHeroConfig): {
7073
7073
  hint?: string | undefined;
7074
7074
  messages?: {
7075
7075
  text: string;
7076
- type: "error" | "success" | "info" | "warning";
7076
+ type: "success" | "error" | "info" | "warning";
7077
7077
  id?: number | undefined;
7078
7078
  }[] | undefined;
7079
7079
  required?: boolean | undefined;
@@ -7094,7 +7094,7 @@ declare function init(config: AuthHeroConfig): {
7094
7094
  hint?: string | undefined;
7095
7095
  messages?: {
7096
7096
  text: string;
7097
- type: "error" | "success" | "info" | "warning";
7097
+ type: "success" | "error" | "info" | "warning";
7098
7098
  id?: number | undefined;
7099
7099
  }[] | undefined;
7100
7100
  required?: boolean | undefined;
@@ -7348,7 +7348,7 @@ declare function init(config: AuthHeroConfig): {
7348
7348
  hint?: string | undefined;
7349
7349
  messages?: {
7350
7350
  text: string;
7351
- type: "error" | "success" | "info" | "warning";
7351
+ type: "success" | "error" | "info" | "warning";
7352
7352
  id?: number | undefined;
7353
7353
  }[] | undefined;
7354
7354
  required?: boolean | undefined;
@@ -7366,7 +7366,7 @@ declare function init(config: AuthHeroConfig): {
7366
7366
  hint?: string | undefined;
7367
7367
  messages?: {
7368
7368
  text: string;
7369
- type: "error" | "success" | "info" | "warning";
7369
+ type: "success" | "error" | "info" | "warning";
7370
7370
  id?: number | undefined;
7371
7371
  }[] | undefined;
7372
7372
  required?: boolean | undefined;
@@ -7390,7 +7390,7 @@ declare function init(config: AuthHeroConfig): {
7390
7390
  hint?: string | undefined;
7391
7391
  messages?: {
7392
7392
  text: string;
7393
- type: "error" | "success" | "info" | "warning";
7393
+ type: "success" | "error" | "info" | "warning";
7394
7394
  id?: number | undefined;
7395
7395
  }[] | undefined;
7396
7396
  required?: boolean | undefined;
@@ -7414,7 +7414,7 @@ declare function init(config: AuthHeroConfig): {
7414
7414
  hint?: string | undefined;
7415
7415
  messages?: {
7416
7416
  text: string;
7417
- type: "error" | "success" | "info" | "warning";
7417
+ type: "success" | "error" | "info" | "warning";
7418
7418
  id?: number | undefined;
7419
7419
  }[] | undefined;
7420
7420
  required?: boolean | undefined;
@@ -7438,7 +7438,7 @@ declare function init(config: AuthHeroConfig): {
7438
7438
  hint?: string | undefined;
7439
7439
  messages?: {
7440
7440
  text: string;
7441
- type: "error" | "success" | "info" | "warning";
7441
+ type: "success" | "error" | "info" | "warning";
7442
7442
  id?: number | undefined;
7443
7443
  }[] | undefined;
7444
7444
  required?: boolean | undefined;
@@ -7463,7 +7463,7 @@ declare function init(config: AuthHeroConfig): {
7463
7463
  hint?: string | undefined;
7464
7464
  messages?: {
7465
7465
  text: string;
7466
- type: "error" | "success" | "info" | "warning";
7466
+ type: "success" | "error" | "info" | "warning";
7467
7467
  id?: number | undefined;
7468
7468
  }[] | undefined;
7469
7469
  required?: boolean | undefined;
@@ -7478,7 +7478,7 @@ declare function init(config: AuthHeroConfig): {
7478
7478
  hint?: string | undefined;
7479
7479
  messages?: {
7480
7480
  text: string;
7481
- type: "error" | "success" | "info" | "warning";
7481
+ type: "success" | "error" | "info" | "warning";
7482
7482
  id?: number | undefined;
7483
7483
  }[] | undefined;
7484
7484
  required?: boolean | undefined;
@@ -7499,7 +7499,7 @@ declare function init(config: AuthHeroConfig): {
7499
7499
  hint?: string | undefined;
7500
7500
  messages?: {
7501
7501
  text: string;
7502
- type: "error" | "success" | "info" | "warning";
7502
+ type: "success" | "error" | "info" | "warning";
7503
7503
  id?: number | undefined;
7504
7504
  }[] | undefined;
7505
7505
  required?: boolean | undefined;
@@ -7524,7 +7524,7 @@ declare function init(config: AuthHeroConfig): {
7524
7524
  hint?: string | undefined;
7525
7525
  messages?: {
7526
7526
  text: string;
7527
- type: "error" | "success" | "info" | "warning";
7527
+ type: "success" | "error" | "info" | "warning";
7528
7528
  id?: number | undefined;
7529
7529
  }[] | undefined;
7530
7530
  required?: boolean | undefined;
@@ -7543,7 +7543,7 @@ declare function init(config: AuthHeroConfig): {
7543
7543
  hint?: string | undefined;
7544
7544
  messages?: {
7545
7545
  text: string;
7546
- type: "error" | "success" | "info" | "warning";
7546
+ type: "success" | "error" | "info" | "warning";
7547
7547
  id?: number | undefined;
7548
7548
  }[] | undefined;
7549
7549
  required?: boolean | undefined;
@@ -7563,7 +7563,7 @@ declare function init(config: AuthHeroConfig): {
7563
7563
  hint?: string | undefined;
7564
7564
  messages?: {
7565
7565
  text: string;
7566
- type: "error" | "success" | "info" | "warning";
7566
+ type: "success" | "error" | "info" | "warning";
7567
7567
  id?: number | undefined;
7568
7568
  }[] | undefined;
7569
7569
  required?: boolean | undefined;
@@ -7582,7 +7582,7 @@ declare function init(config: AuthHeroConfig): {
7582
7582
  hint?: string | undefined;
7583
7583
  messages?: {
7584
7584
  text: string;
7585
- type: "error" | "success" | "info" | "warning";
7585
+ type: "success" | "error" | "info" | "warning";
7586
7586
  id?: number | undefined;
7587
7587
  }[] | undefined;
7588
7588
  required?: boolean | undefined;
@@ -7604,7 +7604,7 @@ declare function init(config: AuthHeroConfig): {
7604
7604
  hint?: string | undefined;
7605
7605
  messages?: {
7606
7606
  text: string;
7607
- type: "error" | "success" | "info" | "warning";
7607
+ type: "success" | "error" | "info" | "warning";
7608
7608
  id?: number | undefined;
7609
7609
  }[] | undefined;
7610
7610
  required?: boolean | undefined;
@@ -7626,7 +7626,7 @@ declare function init(config: AuthHeroConfig): {
7626
7626
  hint?: string | undefined;
7627
7627
  messages?: {
7628
7628
  text: string;
7629
- type: "error" | "success" | "info" | "warning";
7629
+ type: "success" | "error" | "info" | "warning";
7630
7630
  id?: number | undefined;
7631
7631
  }[] | undefined;
7632
7632
  required?: boolean | undefined;
@@ -7645,7 +7645,7 @@ declare function init(config: AuthHeroConfig): {
7645
7645
  hint?: string | undefined;
7646
7646
  messages?: {
7647
7647
  text: string;
7648
- type: "error" | "success" | "info" | "warning";
7648
+ type: "success" | "error" | "info" | "warning";
7649
7649
  id?: number | undefined;
7650
7650
  }[] | undefined;
7651
7651
  required?: boolean | undefined;
@@ -7670,7 +7670,7 @@ declare function init(config: AuthHeroConfig): {
7670
7670
  hint?: string | undefined;
7671
7671
  messages?: {
7672
7672
  text: string;
7673
- type: "error" | "success" | "info" | "warning";
7673
+ type: "success" | "error" | "info" | "warning";
7674
7674
  id?: number | undefined;
7675
7675
  }[] | undefined;
7676
7676
  required?: boolean | undefined;
@@ -7691,7 +7691,7 @@ declare function init(config: AuthHeroConfig): {
7691
7691
  hint?: string | undefined;
7692
7692
  messages?: {
7693
7693
  text: string;
7694
- type: "error" | "success" | "info" | "warning";
7694
+ type: "success" | "error" | "info" | "warning";
7695
7695
  id?: number | undefined;
7696
7696
  }[] | undefined;
7697
7697
  required?: boolean | undefined;
@@ -7712,7 +7712,7 @@ declare function init(config: AuthHeroConfig): {
7712
7712
  hint?: string | undefined;
7713
7713
  messages?: {
7714
7714
  text: string;
7715
- type: "error" | "success" | "info" | "warning";
7715
+ type: "success" | "error" | "info" | "warning";
7716
7716
  id?: number | undefined;
7717
7717
  }[] | undefined;
7718
7718
  required?: boolean | undefined;
@@ -7943,7 +7943,7 @@ declare function init(config: AuthHeroConfig): {
7943
7943
  hint?: string | undefined;
7944
7944
  messages?: {
7945
7945
  text: string;
7946
- type: "error" | "success" | "info" | "warning";
7946
+ type: "success" | "error" | "info" | "warning";
7947
7947
  id?: number | undefined;
7948
7948
  }[] | undefined;
7949
7949
  required?: boolean | undefined;
@@ -7961,7 +7961,7 @@ declare function init(config: AuthHeroConfig): {
7961
7961
  hint?: string | undefined;
7962
7962
  messages?: {
7963
7963
  text: string;
7964
- type: "error" | "success" | "info" | "warning";
7964
+ type: "success" | "error" | "info" | "warning";
7965
7965
  id?: number | undefined;
7966
7966
  }[] | undefined;
7967
7967
  required?: boolean | undefined;
@@ -7985,7 +7985,7 @@ declare function init(config: AuthHeroConfig): {
7985
7985
  hint?: string | undefined;
7986
7986
  messages?: {
7987
7987
  text: string;
7988
- type: "error" | "success" | "info" | "warning";
7988
+ type: "success" | "error" | "info" | "warning";
7989
7989
  id?: number | undefined;
7990
7990
  }[] | undefined;
7991
7991
  required?: boolean | undefined;
@@ -8009,7 +8009,7 @@ declare function init(config: AuthHeroConfig): {
8009
8009
  hint?: string | undefined;
8010
8010
  messages?: {
8011
8011
  text: string;
8012
- type: "error" | "success" | "info" | "warning";
8012
+ type: "success" | "error" | "info" | "warning";
8013
8013
  id?: number | undefined;
8014
8014
  }[] | undefined;
8015
8015
  required?: boolean | undefined;
@@ -8033,7 +8033,7 @@ declare function init(config: AuthHeroConfig): {
8033
8033
  hint?: string | undefined;
8034
8034
  messages?: {
8035
8035
  text: string;
8036
- type: "error" | "success" | "info" | "warning";
8036
+ type: "success" | "error" | "info" | "warning";
8037
8037
  id?: number | undefined;
8038
8038
  }[] | undefined;
8039
8039
  required?: boolean | undefined;
@@ -8062,7 +8062,7 @@ declare function init(config: AuthHeroConfig): {
8062
8062
  hint?: string | undefined;
8063
8063
  messages?: {
8064
8064
  text: string;
8065
- type: "error" | "success" | "info" | "warning";
8065
+ type: "success" | "error" | "info" | "warning";
8066
8066
  id?: number | undefined;
8067
8067
  }[] | undefined;
8068
8068
  required?: boolean | undefined;
@@ -8077,7 +8077,7 @@ declare function init(config: AuthHeroConfig): {
8077
8077
  hint?: string | undefined;
8078
8078
  messages?: {
8079
8079
  text: string;
8080
- type: "error" | "success" | "info" | "warning";
8080
+ type: "success" | "error" | "info" | "warning";
8081
8081
  id?: number | undefined;
8082
8082
  }[] | undefined;
8083
8083
  required?: boolean | undefined;
@@ -8098,7 +8098,7 @@ declare function init(config: AuthHeroConfig): {
8098
8098
  hint?: string | undefined;
8099
8099
  messages?: {
8100
8100
  text: string;
8101
- type: "error" | "success" | "info" | "warning";
8101
+ type: "success" | "error" | "info" | "warning";
8102
8102
  id?: number | undefined;
8103
8103
  }[] | undefined;
8104
8104
  required?: boolean | undefined;
@@ -8123,7 +8123,7 @@ declare function init(config: AuthHeroConfig): {
8123
8123
  hint?: string | undefined;
8124
8124
  messages?: {
8125
8125
  text: string;
8126
- type: "error" | "success" | "info" | "warning";
8126
+ type: "success" | "error" | "info" | "warning";
8127
8127
  id?: number | undefined;
8128
8128
  }[] | undefined;
8129
8129
  required?: boolean | undefined;
@@ -8142,7 +8142,7 @@ declare function init(config: AuthHeroConfig): {
8142
8142
  hint?: string | undefined;
8143
8143
  messages?: {
8144
8144
  text: string;
8145
- type: "error" | "success" | "info" | "warning";
8145
+ type: "success" | "error" | "info" | "warning";
8146
8146
  id?: number | undefined;
8147
8147
  }[] | undefined;
8148
8148
  required?: boolean | undefined;
@@ -8162,7 +8162,7 @@ declare function init(config: AuthHeroConfig): {
8162
8162
  hint?: string | undefined;
8163
8163
  messages?: {
8164
8164
  text: string;
8165
- type: "error" | "success" | "info" | "warning";
8165
+ type: "success" | "error" | "info" | "warning";
8166
8166
  id?: number | undefined;
8167
8167
  }[] | undefined;
8168
8168
  required?: boolean | undefined;
@@ -8181,7 +8181,7 @@ declare function init(config: AuthHeroConfig): {
8181
8181
  hint?: string | undefined;
8182
8182
  messages?: {
8183
8183
  text: string;
8184
- type: "error" | "success" | "info" | "warning";
8184
+ type: "success" | "error" | "info" | "warning";
8185
8185
  id?: number | undefined;
8186
8186
  }[] | undefined;
8187
8187
  required?: boolean | undefined;
@@ -8203,7 +8203,7 @@ declare function init(config: AuthHeroConfig): {
8203
8203
  hint?: string | undefined;
8204
8204
  messages?: {
8205
8205
  text: string;
8206
- type: "error" | "success" | "info" | "warning";
8206
+ type: "success" | "error" | "info" | "warning";
8207
8207
  id?: number | undefined;
8208
8208
  }[] | undefined;
8209
8209
  required?: boolean | undefined;
@@ -8225,7 +8225,7 @@ declare function init(config: AuthHeroConfig): {
8225
8225
  hint?: string | undefined;
8226
8226
  messages?: {
8227
8227
  text: string;
8228
- type: "error" | "success" | "info" | "warning";
8228
+ type: "success" | "error" | "info" | "warning";
8229
8229
  id?: number | undefined;
8230
8230
  }[] | undefined;
8231
8231
  required?: boolean | undefined;
@@ -8244,7 +8244,7 @@ declare function init(config: AuthHeroConfig): {
8244
8244
  hint?: string | undefined;
8245
8245
  messages?: {
8246
8246
  text: string;
8247
- type: "error" | "success" | "info" | "warning";
8247
+ type: "success" | "error" | "info" | "warning";
8248
8248
  id?: number | undefined;
8249
8249
  }[] | undefined;
8250
8250
  required?: boolean | undefined;
@@ -8269,7 +8269,7 @@ declare function init(config: AuthHeroConfig): {
8269
8269
  hint?: string | undefined;
8270
8270
  messages?: {
8271
8271
  text: string;
8272
- type: "error" | "success" | "info" | "warning";
8272
+ type: "success" | "error" | "info" | "warning";
8273
8273
  id?: number | undefined;
8274
8274
  }[] | undefined;
8275
8275
  required?: boolean | undefined;
@@ -8290,7 +8290,7 @@ declare function init(config: AuthHeroConfig): {
8290
8290
  hint?: string | undefined;
8291
8291
  messages?: {
8292
8292
  text: string;
8293
- type: "error" | "success" | "info" | "warning";
8293
+ type: "success" | "error" | "info" | "warning";
8294
8294
  id?: number | undefined;
8295
8295
  }[] | undefined;
8296
8296
  required?: boolean | undefined;
@@ -8311,7 +8311,7 @@ declare function init(config: AuthHeroConfig): {
8311
8311
  hint?: string | undefined;
8312
8312
  messages?: {
8313
8313
  text: string;
8314
- type: "error" | "success" | "info" | "warning";
8314
+ type: "success" | "error" | "info" | "warning";
8315
8315
  id?: number | undefined;
8316
8316
  }[] | undefined;
8317
8317
  required?: boolean | undefined;
@@ -8544,7 +8544,7 @@ declare function init(config: AuthHeroConfig): {
8544
8544
  hint?: string | undefined;
8545
8545
  messages?: {
8546
8546
  text: string;
8547
- type: "error" | "success" | "info" | "warning";
8547
+ type: "success" | "error" | "info" | "warning";
8548
8548
  id?: number | undefined;
8549
8549
  }[] | undefined;
8550
8550
  required?: boolean | undefined;
@@ -8562,7 +8562,7 @@ declare function init(config: AuthHeroConfig): {
8562
8562
  hint?: string | undefined;
8563
8563
  messages?: {
8564
8564
  text: string;
8565
- type: "error" | "success" | "info" | "warning";
8565
+ type: "success" | "error" | "info" | "warning";
8566
8566
  id?: number | undefined;
8567
8567
  }[] | undefined;
8568
8568
  required?: boolean | undefined;
@@ -8586,7 +8586,7 @@ declare function init(config: AuthHeroConfig): {
8586
8586
  hint?: string | undefined;
8587
8587
  messages?: {
8588
8588
  text: string;
8589
- type: "error" | "success" | "info" | "warning";
8589
+ type: "success" | "error" | "info" | "warning";
8590
8590
  id?: number | undefined;
8591
8591
  }[] | undefined;
8592
8592
  required?: boolean | undefined;
@@ -8610,7 +8610,7 @@ declare function init(config: AuthHeroConfig): {
8610
8610
  hint?: string | undefined;
8611
8611
  messages?: {
8612
8612
  text: string;
8613
- type: "error" | "success" | "info" | "warning";
8613
+ type: "success" | "error" | "info" | "warning";
8614
8614
  id?: number | undefined;
8615
8615
  }[] | undefined;
8616
8616
  required?: boolean | undefined;
@@ -8634,7 +8634,7 @@ declare function init(config: AuthHeroConfig): {
8634
8634
  hint?: string | undefined;
8635
8635
  messages?: {
8636
8636
  text: string;
8637
- type: "error" | "success" | "info" | "warning";
8637
+ type: "success" | "error" | "info" | "warning";
8638
8638
  id?: number | undefined;
8639
8639
  }[] | undefined;
8640
8640
  required?: boolean | undefined;
@@ -8659,7 +8659,7 @@ declare function init(config: AuthHeroConfig): {
8659
8659
  hint?: string | undefined;
8660
8660
  messages?: {
8661
8661
  text: string;
8662
- type: "error" | "success" | "info" | "warning";
8662
+ type: "success" | "error" | "info" | "warning";
8663
8663
  id?: number | undefined;
8664
8664
  }[] | undefined;
8665
8665
  required?: boolean | undefined;
@@ -8674,7 +8674,7 @@ declare function init(config: AuthHeroConfig): {
8674
8674
  hint?: string | undefined;
8675
8675
  messages?: {
8676
8676
  text: string;
8677
- type: "error" | "success" | "info" | "warning";
8677
+ type: "success" | "error" | "info" | "warning";
8678
8678
  id?: number | undefined;
8679
8679
  }[] | undefined;
8680
8680
  required?: boolean | undefined;
@@ -8695,7 +8695,7 @@ declare function init(config: AuthHeroConfig): {
8695
8695
  hint?: string | undefined;
8696
8696
  messages?: {
8697
8697
  text: string;
8698
- type: "error" | "success" | "info" | "warning";
8698
+ type: "success" | "error" | "info" | "warning";
8699
8699
  id?: number | undefined;
8700
8700
  }[] | undefined;
8701
8701
  required?: boolean | undefined;
@@ -8720,7 +8720,7 @@ declare function init(config: AuthHeroConfig): {
8720
8720
  hint?: string | undefined;
8721
8721
  messages?: {
8722
8722
  text: string;
8723
- type: "error" | "success" | "info" | "warning";
8723
+ type: "success" | "error" | "info" | "warning";
8724
8724
  id?: number | undefined;
8725
8725
  }[] | undefined;
8726
8726
  required?: boolean | undefined;
@@ -8739,7 +8739,7 @@ declare function init(config: AuthHeroConfig): {
8739
8739
  hint?: string | undefined;
8740
8740
  messages?: {
8741
8741
  text: string;
8742
- type: "error" | "success" | "info" | "warning";
8742
+ type: "success" | "error" | "info" | "warning";
8743
8743
  id?: number | undefined;
8744
8744
  }[] | undefined;
8745
8745
  required?: boolean | undefined;
@@ -8759,7 +8759,7 @@ declare function init(config: AuthHeroConfig): {
8759
8759
  hint?: string | undefined;
8760
8760
  messages?: {
8761
8761
  text: string;
8762
- type: "error" | "success" | "info" | "warning";
8762
+ type: "success" | "error" | "info" | "warning";
8763
8763
  id?: number | undefined;
8764
8764
  }[] | undefined;
8765
8765
  required?: boolean | undefined;
@@ -8778,7 +8778,7 @@ declare function init(config: AuthHeroConfig): {
8778
8778
  hint?: string | undefined;
8779
8779
  messages?: {
8780
8780
  text: string;
8781
- type: "error" | "success" | "info" | "warning";
8781
+ type: "success" | "error" | "info" | "warning";
8782
8782
  id?: number | undefined;
8783
8783
  }[] | undefined;
8784
8784
  required?: boolean | undefined;
@@ -8800,7 +8800,7 @@ declare function init(config: AuthHeroConfig): {
8800
8800
  hint?: string | undefined;
8801
8801
  messages?: {
8802
8802
  text: string;
8803
- type: "error" | "success" | "info" | "warning";
8803
+ type: "success" | "error" | "info" | "warning";
8804
8804
  id?: number | undefined;
8805
8805
  }[] | undefined;
8806
8806
  required?: boolean | undefined;
@@ -8822,7 +8822,7 @@ declare function init(config: AuthHeroConfig): {
8822
8822
  hint?: string | undefined;
8823
8823
  messages?: {
8824
8824
  text: string;
8825
- type: "error" | "success" | "info" | "warning";
8825
+ type: "success" | "error" | "info" | "warning";
8826
8826
  id?: number | undefined;
8827
8827
  }[] | undefined;
8828
8828
  required?: boolean | undefined;
@@ -8841,7 +8841,7 @@ declare function init(config: AuthHeroConfig): {
8841
8841
  hint?: string | undefined;
8842
8842
  messages?: {
8843
8843
  text: string;
8844
- type: "error" | "success" | "info" | "warning";
8844
+ type: "success" | "error" | "info" | "warning";
8845
8845
  id?: number | undefined;
8846
8846
  }[] | undefined;
8847
8847
  required?: boolean | undefined;
@@ -8866,7 +8866,7 @@ declare function init(config: AuthHeroConfig): {
8866
8866
  hint?: string | undefined;
8867
8867
  messages?: {
8868
8868
  text: string;
8869
- type: "error" | "success" | "info" | "warning";
8869
+ type: "success" | "error" | "info" | "warning";
8870
8870
  id?: number | undefined;
8871
8871
  }[] | undefined;
8872
8872
  required?: boolean | undefined;
@@ -8887,7 +8887,7 @@ declare function init(config: AuthHeroConfig): {
8887
8887
  hint?: string | undefined;
8888
8888
  messages?: {
8889
8889
  text: string;
8890
- type: "error" | "success" | "info" | "warning";
8890
+ type: "success" | "error" | "info" | "warning";
8891
8891
  id?: number | undefined;
8892
8892
  }[] | undefined;
8893
8893
  required?: boolean | undefined;
@@ -8908,7 +8908,7 @@ declare function init(config: AuthHeroConfig): {
8908
8908
  hint?: string | undefined;
8909
8909
  messages?: {
8910
8910
  text: string;
8911
- type: "error" | "success" | "info" | "warning";
8911
+ type: "success" | "error" | "info" | "warning";
8912
8912
  id?: number | undefined;
8913
8913
  }[] | undefined;
8914
8914
  required?: boolean | undefined;
@@ -9139,7 +9139,7 @@ declare function init(config: AuthHeroConfig): {
9139
9139
  hint?: string | undefined;
9140
9140
  messages?: {
9141
9141
  text: string;
9142
- type: "error" | "success" | "info" | "warning";
9142
+ type: "success" | "error" | "info" | "warning";
9143
9143
  id?: number | undefined;
9144
9144
  }[] | undefined;
9145
9145
  required?: boolean | undefined;
@@ -9157,7 +9157,7 @@ declare function init(config: AuthHeroConfig): {
9157
9157
  hint?: string | undefined;
9158
9158
  messages?: {
9159
9159
  text: string;
9160
- type: "error" | "success" | "info" | "warning";
9160
+ type: "success" | "error" | "info" | "warning";
9161
9161
  id?: number | undefined;
9162
9162
  }[] | undefined;
9163
9163
  required?: boolean | undefined;
@@ -9181,7 +9181,7 @@ declare function init(config: AuthHeroConfig): {
9181
9181
  hint?: string | undefined;
9182
9182
  messages?: {
9183
9183
  text: string;
9184
- type: "error" | "success" | "info" | "warning";
9184
+ type: "success" | "error" | "info" | "warning";
9185
9185
  id?: number | undefined;
9186
9186
  }[] | undefined;
9187
9187
  required?: boolean | undefined;
@@ -9205,7 +9205,7 @@ declare function init(config: AuthHeroConfig): {
9205
9205
  hint?: string | undefined;
9206
9206
  messages?: {
9207
9207
  text: string;
9208
- type: "error" | "success" | "info" | "warning";
9208
+ type: "success" | "error" | "info" | "warning";
9209
9209
  id?: number | undefined;
9210
9210
  }[] | undefined;
9211
9211
  required?: boolean | undefined;
@@ -9229,7 +9229,7 @@ declare function init(config: AuthHeroConfig): {
9229
9229
  hint?: string | undefined;
9230
9230
  messages?: {
9231
9231
  text: string;
9232
- type: "error" | "success" | "info" | "warning";
9232
+ type: "success" | "error" | "info" | "warning";
9233
9233
  id?: number | undefined;
9234
9234
  }[] | undefined;
9235
9235
  required?: boolean | undefined;
@@ -9258,7 +9258,7 @@ declare function init(config: AuthHeroConfig): {
9258
9258
  hint?: string | undefined;
9259
9259
  messages?: {
9260
9260
  text: string;
9261
- type: "error" | "success" | "info" | "warning";
9261
+ type: "success" | "error" | "info" | "warning";
9262
9262
  id?: number | undefined;
9263
9263
  }[] | undefined;
9264
9264
  required?: boolean | undefined;
@@ -9273,7 +9273,7 @@ declare function init(config: AuthHeroConfig): {
9273
9273
  hint?: string | undefined;
9274
9274
  messages?: {
9275
9275
  text: string;
9276
- type: "error" | "success" | "info" | "warning";
9276
+ type: "success" | "error" | "info" | "warning";
9277
9277
  id?: number | undefined;
9278
9278
  }[] | undefined;
9279
9279
  required?: boolean | undefined;
@@ -9294,7 +9294,7 @@ declare function init(config: AuthHeroConfig): {
9294
9294
  hint?: string | undefined;
9295
9295
  messages?: {
9296
9296
  text: string;
9297
- type: "error" | "success" | "info" | "warning";
9297
+ type: "success" | "error" | "info" | "warning";
9298
9298
  id?: number | undefined;
9299
9299
  }[] | undefined;
9300
9300
  required?: boolean | undefined;
@@ -9319,7 +9319,7 @@ declare function init(config: AuthHeroConfig): {
9319
9319
  hint?: string | undefined;
9320
9320
  messages?: {
9321
9321
  text: string;
9322
- type: "error" | "success" | "info" | "warning";
9322
+ type: "success" | "error" | "info" | "warning";
9323
9323
  id?: number | undefined;
9324
9324
  }[] | undefined;
9325
9325
  required?: boolean | undefined;
@@ -9338,7 +9338,7 @@ declare function init(config: AuthHeroConfig): {
9338
9338
  hint?: string | undefined;
9339
9339
  messages?: {
9340
9340
  text: string;
9341
- type: "error" | "success" | "info" | "warning";
9341
+ type: "success" | "error" | "info" | "warning";
9342
9342
  id?: number | undefined;
9343
9343
  }[] | undefined;
9344
9344
  required?: boolean | undefined;
@@ -9358,7 +9358,7 @@ declare function init(config: AuthHeroConfig): {
9358
9358
  hint?: string | undefined;
9359
9359
  messages?: {
9360
9360
  text: string;
9361
- type: "error" | "success" | "info" | "warning";
9361
+ type: "success" | "error" | "info" | "warning";
9362
9362
  id?: number | undefined;
9363
9363
  }[] | undefined;
9364
9364
  required?: boolean | undefined;
@@ -9377,7 +9377,7 @@ declare function init(config: AuthHeroConfig): {
9377
9377
  hint?: string | undefined;
9378
9378
  messages?: {
9379
9379
  text: string;
9380
- type: "error" | "success" | "info" | "warning";
9380
+ type: "success" | "error" | "info" | "warning";
9381
9381
  id?: number | undefined;
9382
9382
  }[] | undefined;
9383
9383
  required?: boolean | undefined;
@@ -9399,7 +9399,7 @@ declare function init(config: AuthHeroConfig): {
9399
9399
  hint?: string | undefined;
9400
9400
  messages?: {
9401
9401
  text: string;
9402
- type: "error" | "success" | "info" | "warning";
9402
+ type: "success" | "error" | "info" | "warning";
9403
9403
  id?: number | undefined;
9404
9404
  }[] | undefined;
9405
9405
  required?: boolean | undefined;
@@ -9421,7 +9421,7 @@ declare function init(config: AuthHeroConfig): {
9421
9421
  hint?: string | undefined;
9422
9422
  messages?: {
9423
9423
  text: string;
9424
- type: "error" | "success" | "info" | "warning";
9424
+ type: "success" | "error" | "info" | "warning";
9425
9425
  id?: number | undefined;
9426
9426
  }[] | undefined;
9427
9427
  required?: boolean | undefined;
@@ -9440,7 +9440,7 @@ declare function init(config: AuthHeroConfig): {
9440
9440
  hint?: string | undefined;
9441
9441
  messages?: {
9442
9442
  text: string;
9443
- type: "error" | "success" | "info" | "warning";
9443
+ type: "success" | "error" | "info" | "warning";
9444
9444
  id?: number | undefined;
9445
9445
  }[] | undefined;
9446
9446
  required?: boolean | undefined;
@@ -9465,7 +9465,7 @@ declare function init(config: AuthHeroConfig): {
9465
9465
  hint?: string | undefined;
9466
9466
  messages?: {
9467
9467
  text: string;
9468
- type: "error" | "success" | "info" | "warning";
9468
+ type: "success" | "error" | "info" | "warning";
9469
9469
  id?: number | undefined;
9470
9470
  }[] | undefined;
9471
9471
  required?: boolean | undefined;
@@ -9486,7 +9486,7 @@ declare function init(config: AuthHeroConfig): {
9486
9486
  hint?: string | undefined;
9487
9487
  messages?: {
9488
9488
  text: string;
9489
- type: "error" | "success" | "info" | "warning";
9489
+ type: "success" | "error" | "info" | "warning";
9490
9490
  id?: number | undefined;
9491
9491
  }[] | undefined;
9492
9492
  required?: boolean | undefined;
@@ -9507,7 +9507,7 @@ declare function init(config: AuthHeroConfig): {
9507
9507
  hint?: string | undefined;
9508
9508
  messages?: {
9509
9509
  text: string;
9510
- type: "error" | "success" | "info" | "warning";
9510
+ type: "success" | "error" | "info" | "warning";
9511
9511
  id?: number | undefined;
9512
9512
  }[] | undefined;
9513
9513
  required?: boolean | undefined;
@@ -9737,7 +9737,7 @@ declare function init(config: AuthHeroConfig): {
9737
9737
  };
9738
9738
  };
9739
9739
  output: {
9740
- prompt: "mfa" | "organizations" | "status" | "signup" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9740
+ 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";
9741
9741
  language: string;
9742
9742
  }[];
9743
9743
  outputFormat: "json";
@@ -9775,7 +9775,7 @@ declare function init(config: AuthHeroConfig): {
9775
9775
  $get: {
9776
9776
  input: {
9777
9777
  param: {
9778
- prompt: "mfa" | "organizations" | "status" | "signup" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9778
+ 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";
9779
9779
  language: string;
9780
9780
  };
9781
9781
  } & {
@@ -9797,7 +9797,7 @@ declare function init(config: AuthHeroConfig): {
9797
9797
  $put: {
9798
9798
  input: {
9799
9799
  param: {
9800
- prompt: "mfa" | "organizations" | "status" | "signup" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9800
+ 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";
9801
9801
  language: string;
9802
9802
  };
9803
9803
  } & {
@@ -9821,7 +9821,7 @@ declare function init(config: AuthHeroConfig): {
9821
9821
  $delete: {
9822
9822
  input: {
9823
9823
  param: {
9824
- prompt: "mfa" | "organizations" | "status" | "signup" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9824
+ 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";
9825
9825
  language: string;
9826
9826
  };
9827
9827
  } & {
@@ -9913,7 +9913,7 @@ declare function init(config: AuthHeroConfig): {
9913
9913
  active?: boolean | undefined;
9914
9914
  } | undefined;
9915
9915
  signup?: {
9916
- status?: "optional" | "disabled" | "required" | undefined;
9916
+ status?: "optional" | "required" | "disabled" | undefined;
9917
9917
  verification?: {
9918
9918
  active?: boolean | undefined;
9919
9919
  } | undefined;
@@ -9930,7 +9930,7 @@ declare function init(config: AuthHeroConfig): {
9930
9930
  active?: boolean | undefined;
9931
9931
  } | undefined;
9932
9932
  signup?: {
9933
- status?: "optional" | "disabled" | "required" | undefined;
9933
+ status?: "optional" | "required" | "disabled" | undefined;
9934
9934
  } | undefined;
9935
9935
  validation?: {
9936
9936
  max_length?: number | undefined;
@@ -9947,7 +9947,7 @@ declare function init(config: AuthHeroConfig): {
9947
9947
  active?: boolean | undefined;
9948
9948
  } | undefined;
9949
9949
  signup?: {
9950
- status?: "optional" | "disabled" | "required" | undefined;
9950
+ status?: "optional" | "required" | "disabled" | undefined;
9951
9951
  } | undefined;
9952
9952
  } | undefined;
9953
9953
  } | undefined;
@@ -9960,7 +9960,7 @@ declare function init(config: AuthHeroConfig): {
9960
9960
  } | undefined;
9961
9961
  } | undefined;
9962
9962
  passkey_options?: {
9963
- challenge_ui?: "both" | "autofill" | "button" | undefined;
9963
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
9964
9964
  local_enrollment_enabled?: boolean | undefined;
9965
9965
  progressive_enrollment_enabled?: boolean | undefined;
9966
9966
  } | undefined;
@@ -10047,7 +10047,7 @@ declare function init(config: AuthHeroConfig): {
10047
10047
  active?: boolean | undefined;
10048
10048
  } | undefined;
10049
10049
  signup?: {
10050
- status?: "optional" | "disabled" | "required" | undefined;
10050
+ status?: "optional" | "required" | "disabled" | undefined;
10051
10051
  verification?: {
10052
10052
  active?: boolean | undefined;
10053
10053
  } | undefined;
@@ -10064,7 +10064,7 @@ declare function init(config: AuthHeroConfig): {
10064
10064
  active?: boolean | undefined;
10065
10065
  } | undefined;
10066
10066
  signup?: {
10067
- status?: "optional" | "disabled" | "required" | undefined;
10067
+ status?: "optional" | "required" | "disabled" | undefined;
10068
10068
  } | undefined;
10069
10069
  validation?: {
10070
10070
  max_length?: number | undefined;
@@ -10081,7 +10081,7 @@ declare function init(config: AuthHeroConfig): {
10081
10081
  active?: boolean | undefined;
10082
10082
  } | undefined;
10083
10083
  signup?: {
10084
- status?: "optional" | "disabled" | "required" | undefined;
10084
+ status?: "optional" | "required" | "disabled" | undefined;
10085
10085
  } | undefined;
10086
10086
  } | undefined;
10087
10087
  } | undefined;
@@ -10094,7 +10094,7 @@ declare function init(config: AuthHeroConfig): {
10094
10094
  } | undefined;
10095
10095
  } | undefined;
10096
10096
  passkey_options?: {
10097
- challenge_ui?: "both" | "autofill" | "button" | undefined;
10097
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
10098
10098
  local_enrollment_enabled?: boolean | undefined;
10099
10099
  progressive_enrollment_enabled?: boolean | undefined;
10100
10100
  } | undefined;
@@ -10196,7 +10196,7 @@ declare function init(config: AuthHeroConfig): {
10196
10196
  active?: boolean | undefined;
10197
10197
  } | undefined;
10198
10198
  signup?: {
10199
- status?: "optional" | "disabled" | "required" | undefined;
10199
+ status?: "optional" | "required" | "disabled" | undefined;
10200
10200
  verification?: {
10201
10201
  active?: boolean | undefined;
10202
10202
  } | undefined;
@@ -10213,7 +10213,7 @@ declare function init(config: AuthHeroConfig): {
10213
10213
  active?: boolean | undefined;
10214
10214
  } | undefined;
10215
10215
  signup?: {
10216
- status?: "optional" | "disabled" | "required" | undefined;
10216
+ status?: "optional" | "required" | "disabled" | undefined;
10217
10217
  } | undefined;
10218
10218
  validation?: {
10219
10219
  max_length?: number | undefined;
@@ -10230,7 +10230,7 @@ declare function init(config: AuthHeroConfig): {
10230
10230
  active?: boolean | undefined;
10231
10231
  } | undefined;
10232
10232
  signup?: {
10233
- status?: "optional" | "disabled" | "required" | undefined;
10233
+ status?: "optional" | "required" | "disabled" | undefined;
10234
10234
  } | undefined;
10235
10235
  } | undefined;
10236
10236
  } | undefined;
@@ -10243,7 +10243,7 @@ declare function init(config: AuthHeroConfig): {
10243
10243
  } | undefined;
10244
10244
  } | undefined;
10245
10245
  passkey_options?: {
10246
- challenge_ui?: "both" | "autofill" | "button" | undefined;
10246
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
10247
10247
  local_enrollment_enabled?: boolean | undefined;
10248
10248
  progressive_enrollment_enabled?: boolean | undefined;
10249
10249
  } | undefined;
@@ -10375,7 +10375,7 @@ declare function init(config: AuthHeroConfig): {
10375
10375
  active?: boolean | undefined;
10376
10376
  } | undefined;
10377
10377
  signup?: {
10378
- status?: "optional" | "disabled" | "required" | undefined;
10378
+ status?: "optional" | "required" | "disabled" | undefined;
10379
10379
  verification?: {
10380
10380
  active?: boolean | undefined;
10381
10381
  } | undefined;
@@ -10392,7 +10392,7 @@ declare function init(config: AuthHeroConfig): {
10392
10392
  active?: boolean | undefined;
10393
10393
  } | undefined;
10394
10394
  signup?: {
10395
- status?: "optional" | "disabled" | "required" | undefined;
10395
+ status?: "optional" | "required" | "disabled" | undefined;
10396
10396
  } | undefined;
10397
10397
  validation?: {
10398
10398
  max_length?: number | undefined;
@@ -10409,7 +10409,7 @@ declare function init(config: AuthHeroConfig): {
10409
10409
  active?: boolean | undefined;
10410
10410
  } | undefined;
10411
10411
  signup?: {
10412
- status?: "optional" | "disabled" | "required" | undefined;
10412
+ status?: "optional" | "required" | "disabled" | undefined;
10413
10413
  } | undefined;
10414
10414
  } | undefined;
10415
10415
  } | undefined;
@@ -10422,7 +10422,7 @@ declare function init(config: AuthHeroConfig): {
10422
10422
  } | undefined;
10423
10423
  } | undefined;
10424
10424
  passkey_options?: {
10425
- challenge_ui?: "both" | "autofill" | "button" | undefined;
10425
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
10426
10426
  local_enrollment_enabled?: boolean | undefined;
10427
10427
  progressive_enrollment_enabled?: boolean | undefined;
10428
10428
  } | undefined;
@@ -10533,7 +10533,7 @@ declare function init(config: AuthHeroConfig): {
10533
10533
  active?: boolean | undefined;
10534
10534
  } | undefined;
10535
10535
  signup?: {
10536
- status?: "optional" | "disabled" | "required" | undefined;
10536
+ status?: "optional" | "required" | "disabled" | undefined;
10537
10537
  verification?: {
10538
10538
  active?: boolean | undefined;
10539
10539
  } | undefined;
@@ -10550,7 +10550,7 @@ declare function init(config: AuthHeroConfig): {
10550
10550
  active?: boolean | undefined;
10551
10551
  } | undefined;
10552
10552
  signup?: {
10553
- status?: "optional" | "disabled" | "required" | undefined;
10553
+ status?: "optional" | "required" | "disabled" | undefined;
10554
10554
  } | undefined;
10555
10555
  validation?: {
10556
10556
  max_length?: number | undefined;
@@ -10567,7 +10567,7 @@ declare function init(config: AuthHeroConfig): {
10567
10567
  active?: boolean | undefined;
10568
10568
  } | undefined;
10569
10569
  signup?: {
10570
- status?: "optional" | "disabled" | "required" | undefined;
10570
+ status?: "optional" | "required" | "disabled" | undefined;
10571
10571
  } | undefined;
10572
10572
  } | undefined;
10573
10573
  } | undefined;
@@ -10580,7 +10580,7 @@ declare function init(config: AuthHeroConfig): {
10580
10580
  } | undefined;
10581
10581
  } | undefined;
10582
10582
  passkey_options?: {
10583
- challenge_ui?: "both" | "autofill" | "button" | undefined;
10583
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
10584
10584
  local_enrollment_enabled?: boolean | undefined;
10585
10585
  progressive_enrollment_enabled?: boolean | undefined;
10586
10586
  } | undefined;
@@ -10683,7 +10683,7 @@ declare function init(config: AuthHeroConfig): {
10683
10683
  };
10684
10684
  } | {
10685
10685
  mode: "inline";
10686
- status: "error" | "success";
10686
+ status: "success" | "error";
10687
10687
  connection_id: string;
10688
10688
  connection_name: string;
10689
10689
  strategy: string;
@@ -11322,7 +11322,7 @@ declare function init(config: AuthHeroConfig): {
11322
11322
  log_type: string;
11323
11323
  category: "user_action" | "admin_action" | "system" | "api";
11324
11324
  actor: {
11325
- type: "client_credentials" | "user" | "api_key" | "system" | "admin";
11325
+ type: "user" | "client_credentials" | "api_key" | "system" | "admin";
11326
11326
  id?: string | undefined;
11327
11327
  email?: string | undefined;
11328
11328
  org_id?: string | undefined;
@@ -11800,7 +11800,7 @@ declare function init(config: AuthHeroConfig): {
11800
11800
  [x: string]: hono_utils_types.JSONValue;
11801
11801
  };
11802
11802
  id: string;
11803
- status: "suspended" | "active" | "paused";
11803
+ status: "active" | "suspended" | "paused";
11804
11804
  filters?: {
11805
11805
  type: string;
11806
11806
  name: string;
@@ -11832,7 +11832,7 @@ declare function init(config: AuthHeroConfig): {
11832
11832
  [x: string]: hono_utils_types.JSONValue;
11833
11833
  };
11834
11834
  id: string;
11835
- status: "suspended" | "active" | "paused";
11835
+ status: "active" | "suspended" | "paused";
11836
11836
  filters?: {
11837
11837
  type: string;
11838
11838
  name: string;
@@ -11857,7 +11857,7 @@ declare function init(config: AuthHeroConfig): {
11857
11857
  name: string;
11858
11858
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
11859
11859
  sink: Record<string, unknown>;
11860
- status?: "suspended" | "active" | "paused" | undefined;
11860
+ status?: "active" | "suspended" | "paused" | undefined;
11861
11861
  filters?: {
11862
11862
  type: string;
11863
11863
  name: string;
@@ -11872,7 +11872,7 @@ declare function init(config: AuthHeroConfig): {
11872
11872
  [x: string]: hono_utils_types.JSONValue;
11873
11873
  };
11874
11874
  id: string;
11875
- status: "suspended" | "active" | "paused";
11875
+ status: "active" | "suspended" | "paused";
11876
11876
  filters?: {
11877
11877
  type: string;
11878
11878
  name: string;
@@ -11907,7 +11907,7 @@ declare function init(config: AuthHeroConfig): {
11907
11907
  }[] | undefined;
11908
11908
  isPriority?: boolean | undefined;
11909
11909
  id?: string | undefined;
11910
- status?: "suspended" | "active" | "paused" | undefined;
11910
+ status?: "active" | "suspended" | "paused" | undefined;
11911
11911
  created_at?: string | undefined;
11912
11912
  updated_at?: string | undefined;
11913
11913
  };
@@ -11919,7 +11919,7 @@ declare function init(config: AuthHeroConfig): {
11919
11919
  [x: string]: hono_utils_types.JSONValue;
11920
11920
  };
11921
11921
  id: string;
11922
- status: "suspended" | "active" | "paused";
11922
+ status: "active" | "suspended" | "paused";
11923
11923
  filters?: {
11924
11924
  type: string;
11925
11925
  name: string;
@@ -11970,7 +11970,7 @@ declare function init(config: AuthHeroConfig): {
11970
11970
  };
11971
11971
  };
11972
11972
  output: {
11973
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11973
+ 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";
11974
11974
  date: string;
11975
11975
  isMobile: boolean;
11976
11976
  log_id: string;
@@ -12009,7 +12009,7 @@ declare function init(config: AuthHeroConfig): {
12009
12009
  limit: number;
12010
12010
  length: number;
12011
12011
  logs: {
12012
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12012
+ 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";
12013
12013
  date: string;
12014
12014
  isMobile: boolean;
12015
12015
  log_id: string;
@@ -12063,7 +12063,7 @@ declare function init(config: AuthHeroConfig): {
12063
12063
  };
12064
12064
  };
12065
12065
  output: {
12066
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12066
+ 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";
12067
12067
  date: string;
12068
12068
  isMobile: boolean;
12069
12069
  log_id: string;
@@ -13139,7 +13139,7 @@ declare function init(config: AuthHeroConfig): {
13139
13139
  active?: boolean | undefined;
13140
13140
  } | undefined;
13141
13141
  signup?: {
13142
- status?: "optional" | "disabled" | "required" | undefined;
13142
+ status?: "optional" | "required" | "disabled" | undefined;
13143
13143
  verification?: {
13144
13144
  active?: boolean | undefined;
13145
13145
  } | undefined;
@@ -13156,7 +13156,7 @@ declare function init(config: AuthHeroConfig): {
13156
13156
  active?: boolean | undefined;
13157
13157
  } | undefined;
13158
13158
  signup?: {
13159
- status?: "optional" | "disabled" | "required" | undefined;
13159
+ status?: "optional" | "required" | "disabled" | undefined;
13160
13160
  } | undefined;
13161
13161
  validation?: {
13162
13162
  max_length?: number | undefined;
@@ -13173,7 +13173,7 @@ declare function init(config: AuthHeroConfig): {
13173
13173
  active?: boolean | undefined;
13174
13174
  } | undefined;
13175
13175
  signup?: {
13176
- status?: "optional" | "disabled" | "required" | undefined;
13176
+ status?: "optional" | "required" | "disabled" | undefined;
13177
13177
  } | undefined;
13178
13178
  } | undefined;
13179
13179
  } | undefined;
@@ -13186,7 +13186,7 @@ declare function init(config: AuthHeroConfig): {
13186
13186
  } | undefined;
13187
13187
  } | undefined;
13188
13188
  passkey_options?: {
13189
- challenge_ui?: "both" | "autofill" | "button" | undefined;
13189
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
13190
13190
  local_enrollment_enabled?: boolean | undefined;
13191
13191
  progressive_enrollment_enabled?: boolean | undefined;
13192
13192
  } | undefined;
@@ -13293,7 +13293,7 @@ declare function init(config: AuthHeroConfig): {
13293
13293
  active?: boolean | undefined;
13294
13294
  } | undefined;
13295
13295
  signup?: {
13296
- status?: "optional" | "disabled" | "required" | undefined;
13296
+ status?: "optional" | "required" | "disabled" | undefined;
13297
13297
  verification?: {
13298
13298
  active?: boolean | undefined;
13299
13299
  } | undefined;
@@ -13310,7 +13310,7 @@ declare function init(config: AuthHeroConfig): {
13310
13310
  active?: boolean | undefined;
13311
13311
  } | undefined;
13312
13312
  signup?: {
13313
- status?: "optional" | "disabled" | "required" | undefined;
13313
+ status?: "optional" | "required" | "disabled" | undefined;
13314
13314
  } | undefined;
13315
13315
  validation?: {
13316
13316
  max_length?: number | undefined;
@@ -13327,7 +13327,7 @@ declare function init(config: AuthHeroConfig): {
13327
13327
  active?: boolean | undefined;
13328
13328
  } | undefined;
13329
13329
  signup?: {
13330
- status?: "optional" | "disabled" | "required" | undefined;
13330
+ status?: "optional" | "required" | "disabled" | undefined;
13331
13331
  } | undefined;
13332
13332
  } | undefined;
13333
13333
  } | undefined;
@@ -13340,7 +13340,7 @@ declare function init(config: AuthHeroConfig): {
13340
13340
  } | undefined;
13341
13341
  } | undefined;
13342
13342
  passkey_options?: {
13343
- challenge_ui?: "both" | "autofill" | "button" | undefined;
13343
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
13344
13344
  local_enrollment_enabled?: boolean | undefined;
13345
13345
  progressive_enrollment_enabled?: boolean | undefined;
13346
13346
  } | undefined;
@@ -14281,7 +14281,7 @@ declare function init(config: AuthHeroConfig): {
14281
14281
  };
14282
14282
  };
14283
14283
  output: {
14284
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14284
+ 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";
14285
14285
  date: string;
14286
14286
  isMobile: boolean;
14287
14287
  log_id: string;
@@ -14320,7 +14320,7 @@ declare function init(config: AuthHeroConfig): {
14320
14320
  limit: number;
14321
14321
  length: number;
14322
14322
  logs: {
14323
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14323
+ 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";
14324
14324
  date: string;
14325
14325
  isMobile: boolean;
14326
14326
  log_id: string;
@@ -14635,7 +14635,7 @@ declare function init(config: AuthHeroConfig): {
14635
14635
  };
14636
14636
  } & {
14637
14637
  json: {
14638
- 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";
14638
+ 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";
14639
14639
  body: string;
14640
14640
  from: string;
14641
14641
  subject: string;
@@ -14656,7 +14656,7 @@ declare function init(config: AuthHeroConfig): {
14656
14656
  };
14657
14657
  } & {
14658
14658
  json: {
14659
- 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";
14659
+ 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";
14660
14660
  body: string;
14661
14661
  from: string;
14662
14662
  subject: string;
@@ -14668,7 +14668,7 @@ declare function init(config: AuthHeroConfig): {
14668
14668
  };
14669
14669
  };
14670
14670
  output: {
14671
- 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";
14671
+ 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";
14672
14672
  body: string;
14673
14673
  from: string;
14674
14674
  subject: string;
@@ -14691,7 +14691,7 @@ declare function init(config: AuthHeroConfig): {
14691
14691
  };
14692
14692
  };
14693
14693
  output: {
14694
- 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";
14694
+ 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";
14695
14695
  body: string;
14696
14696
  subject: string;
14697
14697
  }[];
@@ -14704,7 +14704,7 @@ declare function init(config: AuthHeroConfig): {
14704
14704
  $get: {
14705
14705
  input: {
14706
14706
  param: {
14707
- 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";
14707
+ 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";
14708
14708
  };
14709
14709
  } & {
14710
14710
  header: {
@@ -14717,7 +14717,7 @@ declare function init(config: AuthHeroConfig): {
14717
14717
  } | {
14718
14718
  input: {
14719
14719
  param: {
14720
- 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";
14720
+ 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";
14721
14721
  };
14722
14722
  } & {
14723
14723
  header: {
@@ -14725,7 +14725,7 @@ declare function init(config: AuthHeroConfig): {
14725
14725
  };
14726
14726
  };
14727
14727
  output: {
14728
- 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";
14728
+ 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";
14729
14729
  body: string;
14730
14730
  from: string;
14731
14731
  subject: string;
@@ -14744,7 +14744,7 @@ declare function init(config: AuthHeroConfig): {
14744
14744
  $put: {
14745
14745
  input: {
14746
14746
  param: {
14747
- 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";
14747
+ 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";
14748
14748
  };
14749
14749
  } & {
14750
14750
  header: {
@@ -14752,7 +14752,7 @@ declare function init(config: AuthHeroConfig): {
14752
14752
  };
14753
14753
  } & {
14754
14754
  json: {
14755
- 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";
14755
+ 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";
14756
14756
  body: string;
14757
14757
  subject: string;
14758
14758
  syntax?: "liquid" | undefined;
@@ -14764,7 +14764,7 @@ declare function init(config: AuthHeroConfig): {
14764
14764
  };
14765
14765
  };
14766
14766
  output: {
14767
- 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";
14767
+ 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";
14768
14768
  body: string;
14769
14769
  from: string;
14770
14770
  subject: string;
@@ -14783,7 +14783,7 @@ declare function init(config: AuthHeroConfig): {
14783
14783
  $patch: {
14784
14784
  input: {
14785
14785
  param: {
14786
- 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";
14786
+ 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";
14787
14787
  };
14788
14788
  } & {
14789
14789
  header: {
@@ -14791,7 +14791,7 @@ declare function init(config: AuthHeroConfig): {
14791
14791
  };
14792
14792
  } & {
14793
14793
  json: {
14794
- 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;
14794
+ 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;
14795
14795
  body?: string | undefined;
14796
14796
  from?: string | undefined;
14797
14797
  subject?: string | undefined;
@@ -14808,7 +14808,7 @@ declare function init(config: AuthHeroConfig): {
14808
14808
  } | {
14809
14809
  input: {
14810
14810
  param: {
14811
- 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";
14811
+ 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";
14812
14812
  };
14813
14813
  } & {
14814
14814
  header: {
@@ -14816,7 +14816,7 @@ declare function init(config: AuthHeroConfig): {
14816
14816
  };
14817
14817
  } & {
14818
14818
  json: {
14819
- 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;
14819
+ 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;
14820
14820
  body?: string | undefined;
14821
14821
  from?: string | undefined;
14822
14822
  subject?: string | undefined;
@@ -14828,7 +14828,7 @@ declare function init(config: AuthHeroConfig): {
14828
14828
  };
14829
14829
  };
14830
14830
  output: {
14831
- 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";
14831
+ 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";
14832
14832
  body: string;
14833
14833
  from: string;
14834
14834
  subject: string;
@@ -14847,7 +14847,7 @@ declare function init(config: AuthHeroConfig): {
14847
14847
  $delete: {
14848
14848
  input: {
14849
14849
  param: {
14850
- 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";
14850
+ 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";
14851
14851
  };
14852
14852
  } & {
14853
14853
  header: {
@@ -14860,7 +14860,7 @@ declare function init(config: AuthHeroConfig): {
14860
14860
  } | {
14861
14861
  input: {
14862
14862
  param: {
14863
- 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";
14863
+ 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";
14864
14864
  };
14865
14865
  } & {
14866
14866
  header: {
@@ -14877,7 +14877,7 @@ declare function init(config: AuthHeroConfig): {
14877
14877
  $post: {
14878
14878
  input: {
14879
14879
  param: {
14880
- 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";
14880
+ 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";
14881
14881
  };
14882
14882
  } & {
14883
14883
  header: {
@@ -15447,7 +15447,7 @@ declare function init(config: AuthHeroConfig): {
15447
15447
  base_focus_color: string;
15448
15448
  base_hover_color: string;
15449
15449
  body_text: string;
15450
- captcha_widget_theme: "dark" | "light" | "auto";
15450
+ captcha_widget_theme: "auto" | "light" | "dark";
15451
15451
  error: string;
15452
15452
  header: string;
15453
15453
  icons: string;
@@ -15498,7 +15498,7 @@ declare function init(config: AuthHeroConfig): {
15498
15498
  background_color: string;
15499
15499
  background_image_url: string;
15500
15500
  page_layout: "center" | "left" | "right";
15501
- logo_placement?: "widget" | "none" | "chip" | undefined;
15501
+ logo_placement?: "widget" | "chip" | "none" | undefined;
15502
15502
  };
15503
15503
  widget: {
15504
15504
  header_text_alignment: "center" | "left" | "right";
@@ -15537,7 +15537,7 @@ declare function init(config: AuthHeroConfig): {
15537
15537
  base_focus_color: string;
15538
15538
  base_hover_color: string;
15539
15539
  body_text: string;
15540
- captcha_widget_theme: "dark" | "light" | "auto";
15540
+ captcha_widget_theme: "auto" | "light" | "dark";
15541
15541
  error: string;
15542
15542
  header: string;
15543
15543
  icons: string;
@@ -15588,7 +15588,7 @@ declare function init(config: AuthHeroConfig): {
15588
15588
  background_color: string;
15589
15589
  background_image_url: string;
15590
15590
  page_layout: "center" | "left" | "right";
15591
- logo_placement?: "widget" | "none" | "chip" | undefined;
15591
+ logo_placement?: "widget" | "chip" | "none" | undefined;
15592
15592
  };
15593
15593
  widget: {
15594
15594
  header_text_alignment: "center" | "left" | "right";
@@ -15616,7 +15616,7 @@ declare function init(config: AuthHeroConfig): {
15616
15616
  base_focus_color: string;
15617
15617
  base_hover_color: string;
15618
15618
  body_text: string;
15619
- captcha_widget_theme: "dark" | "light" | "auto";
15619
+ captcha_widget_theme: "auto" | "light" | "dark";
15620
15620
  error: string;
15621
15621
  header: string;
15622
15622
  icons: string;
@@ -15667,7 +15667,7 @@ declare function init(config: AuthHeroConfig): {
15667
15667
  background_color: string;
15668
15668
  background_image_url: string;
15669
15669
  page_layout: "center" | "left" | "right";
15670
- logo_placement?: "widget" | "none" | "chip" | undefined;
15670
+ logo_placement?: "widget" | "chip" | "none" | undefined;
15671
15671
  };
15672
15672
  widget: {
15673
15673
  header_text_alignment: "center" | "left" | "right";
@@ -15706,7 +15706,7 @@ declare function init(config: AuthHeroConfig): {
15706
15706
  font?: {
15707
15707
  url: string;
15708
15708
  } | undefined;
15709
- dark_mode?: "dark" | "light" | "auto" | undefined;
15709
+ dark_mode?: "auto" | "light" | "dark" | undefined;
15710
15710
  };
15711
15711
  outputFormat: "json";
15712
15712
  status: 200;
@@ -15736,7 +15736,7 @@ declare function init(config: AuthHeroConfig): {
15736
15736
  font?: {
15737
15737
  url: string;
15738
15738
  } | undefined;
15739
- dark_mode?: "dark" | "light" | "auto" | undefined;
15739
+ dark_mode?: "auto" | "light" | "dark" | undefined;
15740
15740
  };
15741
15741
  };
15742
15742
  output: {
@@ -15755,7 +15755,7 @@ declare function init(config: AuthHeroConfig): {
15755
15755
  font?: {
15756
15756
  url: string;
15757
15757
  } | undefined;
15758
- dark_mode?: "dark" | "light" | "auto" | undefined;
15758
+ dark_mode?: "auto" | "light" | "dark" | undefined;
15759
15759
  };
15760
15760
  outputFormat: "json";
15761
15761
  status: 200;
@@ -15829,7 +15829,7 @@ declare function init(config: AuthHeroConfig): {
15829
15829
  } & {
15830
15830
  json: {
15831
15831
  body?: string | undefined;
15832
- screen?: "password" | "signup" | "login" | "identifier" | undefined;
15832
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
15833
15833
  branding?: {
15834
15834
  colors?: {
15835
15835
  primary: string;
@@ -15846,7 +15846,7 @@ declare function init(config: AuthHeroConfig): {
15846
15846
  font?: {
15847
15847
  url: string;
15848
15848
  } | undefined;
15849
- dark_mode?: "dark" | "light" | "auto" | undefined;
15849
+ dark_mode?: "auto" | "light" | "dark" | undefined;
15850
15850
  } | undefined;
15851
15851
  theme?: {
15852
15852
  borders?: {
@@ -15864,7 +15864,7 @@ declare function init(config: AuthHeroConfig): {
15864
15864
  base_focus_color: string;
15865
15865
  base_hover_color: string;
15866
15866
  body_text: string;
15867
- captcha_widget_theme: "dark" | "light" | "auto";
15867
+ captcha_widget_theme: "auto" | "light" | "dark";
15868
15868
  error: string;
15869
15869
  header: string;
15870
15870
  icons: string;
@@ -15915,7 +15915,7 @@ declare function init(config: AuthHeroConfig): {
15915
15915
  background_color: string;
15916
15916
  background_image_url: string;
15917
15917
  page_layout: "center" | "left" | "right";
15918
- logo_placement?: "widget" | "none" | "chip" | undefined;
15918
+ logo_placement?: "widget" | "chip" | "none" | undefined;
15919
15919
  } | undefined;
15920
15920
  widget?: {
15921
15921
  header_text_alignment: "center" | "left" | "right";
@@ -16120,7 +16120,7 @@ declare function init(config: AuthHeroConfig): {
16120
16120
  logs: {
16121
16121
  action_name: string;
16122
16122
  lines: {
16123
- level: "error" | "info" | "log" | "warn" | "debug";
16123
+ level: "log" | "error" | "info" | "warn" | "debug";
16124
16124
  message: string;
16125
16125
  }[];
16126
16126
  }[];
@@ -16787,7 +16787,7 @@ declare function init(config: AuthHeroConfig): {
16787
16787
  args: hono_utils_types.JSONValue[];
16788
16788
  }[];
16789
16789
  logs: {
16790
- level: "error" | "info" | "log" | "warn" | "debug";
16790
+ level: "log" | "error" | "info" | "warn" | "debug";
16791
16791
  message: string;
16792
16792
  }[];
16793
16793
  error?: string | undefined;
@@ -17520,17 +17520,17 @@ declare function init(config: AuthHeroConfig): {
17520
17520
  email: string;
17521
17521
  send: "code" | "link";
17522
17522
  authParams: {
17523
- audience?: string | undefined;
17523
+ state?: string | undefined;
17524
+ username?: string | undefined;
17525
+ act_as?: string | undefined;
17524
17526
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17525
17527
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17526
- scope?: string | undefined;
17527
- username?: string | undefined;
17528
- prompt?: string | undefined;
17529
- state?: string | undefined;
17528
+ redirect_uri?: string | undefined;
17529
+ audience?: string | undefined;
17530
17530
  organization?: string | undefined;
17531
17531
  nonce?: string | undefined;
17532
- redirect_uri?: string | undefined;
17533
- act_as?: string | undefined;
17532
+ scope?: string | undefined;
17533
+ prompt?: string | undefined;
17534
17534
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17535
17535
  code_challenge?: string | undefined;
17536
17536
  ui_locales?: string | undefined;
@@ -17556,17 +17556,17 @@ declare function init(config: AuthHeroConfig): {
17556
17556
  phone_number: string;
17557
17557
  send: "code" | "link";
17558
17558
  authParams: {
17559
- audience?: string | undefined;
17559
+ state?: string | undefined;
17560
+ username?: string | undefined;
17561
+ act_as?: string | undefined;
17560
17562
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17561
17563
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17562
- scope?: string | undefined;
17563
- username?: string | undefined;
17564
- prompt?: string | undefined;
17565
- state?: string | undefined;
17564
+ redirect_uri?: string | undefined;
17565
+ audience?: string | undefined;
17566
17566
  organization?: string | undefined;
17567
17567
  nonce?: string | undefined;
17568
- redirect_uri?: string | undefined;
17569
- act_as?: string | undefined;
17568
+ scope?: string | undefined;
17569
+ prompt?: string | undefined;
17570
17570
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17571
17571
  code_challenge?: string | undefined;
17572
17572
  ui_locales?: string | undefined;
@@ -17700,14 +17700,14 @@ declare function init(config: AuthHeroConfig): {
17700
17700
  input: {
17701
17701
  form: {
17702
17702
  token: string;
17703
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17703
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17704
17704
  client_id?: string | undefined;
17705
17705
  client_secret?: string | undefined;
17706
17706
  };
17707
17707
  } & {
17708
17708
  json: {
17709
17709
  token: string;
17710
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17710
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17711
17711
  client_id?: string | undefined;
17712
17712
  client_secret?: string | undefined;
17713
17713
  };
@@ -17719,14 +17719,14 @@ declare function init(config: AuthHeroConfig): {
17719
17719
  input: {
17720
17720
  form: {
17721
17721
  token: string;
17722
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17722
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17723
17723
  client_id?: string | undefined;
17724
17724
  client_secret?: string | undefined;
17725
17725
  };
17726
17726
  } & {
17727
17727
  json: {
17728
17728
  token: string;
17729
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17729
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17730
17730
  client_id?: string | undefined;
17731
17731
  client_secret?: string | undefined;
17732
17732
  };
@@ -17741,14 +17741,14 @@ declare function init(config: AuthHeroConfig): {
17741
17741
  input: {
17742
17742
  form: {
17743
17743
  token: string;
17744
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17744
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17745
17745
  client_id?: string | undefined;
17746
17746
  client_secret?: string | undefined;
17747
17747
  };
17748
17748
  } & {
17749
17749
  json: {
17750
17750
  token: string;
17751
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17751
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17752
17752
  client_id?: string | undefined;
17753
17753
  client_secret?: string | undefined;
17754
17754
  };
@@ -17798,7 +17798,7 @@ declare function init(config: AuthHeroConfig): {
17798
17798
  client_id: string;
17799
17799
  username: string;
17800
17800
  otp: string;
17801
- realm: "sms" | "email";
17801
+ realm: "email" | "sms";
17802
17802
  } | {
17803
17803
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17804
17804
  subject_token: string;
@@ -17845,7 +17845,7 @@ declare function init(config: AuthHeroConfig): {
17845
17845
  client_id: string;
17846
17846
  username: string;
17847
17847
  otp: string;
17848
- realm: "sms" | "email";
17848
+ realm: "email" | "sms";
17849
17849
  } | {
17850
17850
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17851
17851
  subject_token: string;
@@ -17897,7 +17897,7 @@ declare function init(config: AuthHeroConfig): {
17897
17897
  client_id: string;
17898
17898
  username: string;
17899
17899
  otp: string;
17900
- realm: "sms" | "email";
17900
+ realm: "email" | "sms";
17901
17901
  } | {
17902
17902
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17903
17903
  subject_token: string;
@@ -17944,7 +17944,7 @@ declare function init(config: AuthHeroConfig): {
17944
17944
  client_id: string;
17945
17945
  username: string;
17946
17946
  otp: string;
17947
- realm: "sms" | "email";
17947
+ realm: "email" | "sms";
17948
17948
  } | {
17949
17949
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17950
17950
  subject_token: string;
@@ -18004,7 +18004,7 @@ declare function init(config: AuthHeroConfig): {
18004
18004
  client_id: string;
18005
18005
  username: string;
18006
18006
  otp: string;
18007
- realm: "sms" | "email";
18007
+ realm: "email" | "sms";
18008
18008
  } | {
18009
18009
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18010
18010
  subject_token: string;
@@ -18051,7 +18051,7 @@ declare function init(config: AuthHeroConfig): {
18051
18051
  client_id: string;
18052
18052
  username: string;
18053
18053
  otp: string;
18054
- realm: "sms" | "email";
18054
+ realm: "email" | "sms";
18055
18055
  } | {
18056
18056
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18057
18057
  subject_token: string;
@@ -18106,7 +18106,7 @@ declare function init(config: AuthHeroConfig): {
18106
18106
  client_id: string;
18107
18107
  username: string;
18108
18108
  otp: string;
18109
- realm: "sms" | "email";
18109
+ realm: "email" | "sms";
18110
18110
  } | {
18111
18111
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18112
18112
  subject_token: string;
@@ -18153,7 +18153,7 @@ declare function init(config: AuthHeroConfig): {
18153
18153
  client_id: string;
18154
18154
  username: string;
18155
18155
  otp: string;
18156
- realm: "sms" | "email";
18156
+ realm: "email" | "sms";
18157
18157
  } | {
18158
18158
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18159
18159
  subject_token: string;
@@ -18208,7 +18208,7 @@ declare function init(config: AuthHeroConfig): {
18208
18208
  client_id: string;
18209
18209
  username: string;
18210
18210
  otp: string;
18211
- realm: "sms" | "email";
18211
+ realm: "email" | "sms";
18212
18212
  } | {
18213
18213
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18214
18214
  subject_token: string;
@@ -18255,7 +18255,7 @@ declare function init(config: AuthHeroConfig): {
18255
18255
  client_id: string;
18256
18256
  username: string;
18257
18257
  otp: string;
18258
- realm: "sms" | "email";
18258
+ realm: "email" | "sms";
18259
18259
  } | {
18260
18260
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18261
18261
  subject_token: string;
@@ -19096,7 +19096,7 @@ declare function init(config: AuthHeroConfig): {
19096
19096
  } & {
19097
19097
  form: {
19098
19098
  username: string;
19099
- login_selection?: "password" | "code" | undefined;
19099
+ login_selection?: "code" | "password" | undefined;
19100
19100
  };
19101
19101
  };
19102
19102
  output: {};
@@ -19110,7 +19110,7 @@ declare function init(config: AuthHeroConfig): {
19110
19110
  } & {
19111
19111
  form: {
19112
19112
  username: string;
19113
- login_selection?: "password" | "code" | undefined;
19113
+ login_selection?: "code" | "password" | undefined;
19114
19114
  };
19115
19115
  };
19116
19116
  output: {};