authhero 8.0.0 → 8.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/dist/authhero.cjs +105 -105
  2. package/dist/authhero.d.ts +269 -209
  3. package/dist/authhero.mjs +11216 -11105
  4. package/dist/stats.html +1 -1
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  7. package/dist/types/helpers/client-bundle.d.ts +15 -1
  8. package/dist/types/helpers/compose-auth-data.d.ts +44 -0
  9. package/dist/types/helpers/prefetch-client-bundle.d.ts +33 -0
  10. package/dist/types/hooks/webhooks.d.ts +14 -0
  11. package/dist/types/index.d.ts +269 -209
  12. package/dist/types/routes/auth-api/account.d.ts +2 -2
  13. package/dist/types/routes/auth-api/index.d.ts +34 -34
  14. package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
  15. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  16. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  17. package/dist/types/routes/auth-api/token.d.ts +10 -10
  18. package/dist/types/routes/management-api/action-triggers.d.ts +1 -1
  19. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  20. package/dist/types/routes/management-api/clients.d.ts +7 -7
  21. package/dist/types/routes/management-api/connections.d.ts +1 -1
  22. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  23. package/dist/types/routes/management-api/flows.d.ts +7 -7
  24. package/dist/types/routes/management-api/forms.d.ts +119 -119
  25. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  26. package/dist/types/routes/management-api/hooks.d.ts +60 -0
  27. package/dist/types/routes/management-api/index.d.ts +229 -169
  28. package/dist/types/routes/management-api/logs.d.ts +3 -3
  29. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  30. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  31. package/dist/types/routes/management-api/users.d.ts +2 -2
  32. package/dist/types/routes/universal-login/common.d.ts +2 -2
  33. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  34. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  35. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  36. package/package.json +3 -3
@@ -2724,7 +2724,7 @@ declare function init(config: AuthHeroConfig): {
2724
2724
  };
2725
2725
  } & {
2726
2726
  json: {
2727
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2727
+ type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2728
2728
  phone_number?: string | undefined;
2729
2729
  totp_secret?: string | undefined;
2730
2730
  credential_id?: string | undefined;
@@ -2864,7 +2864,7 @@ declare function init(config: AuthHeroConfig): {
2864
2864
  };
2865
2865
  };
2866
2866
  output: {
2867
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2867
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2868
2868
  enabled: boolean;
2869
2869
  trial_expired?: boolean | undefined;
2870
2870
  }[];
@@ -3019,7 +3019,7 @@ declare function init(config: AuthHeroConfig): {
3019
3019
  $get: {
3020
3020
  input: {
3021
3021
  param: {
3022
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3022
+ factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3023
3023
  };
3024
3024
  } & {
3025
3025
  header: {
@@ -3027,7 +3027,7 @@ declare function init(config: AuthHeroConfig): {
3027
3027
  };
3028
3028
  };
3029
3029
  output: {
3030
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3030
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3031
3031
  enabled: boolean;
3032
3032
  trial_expired?: boolean | undefined;
3033
3033
  };
@@ -3040,7 +3040,7 @@ declare function init(config: AuthHeroConfig): {
3040
3040
  $put: {
3041
3041
  input: {
3042
3042
  param: {
3043
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3043
+ factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3044
3044
  };
3045
3045
  } & {
3046
3046
  header: {
@@ -3052,7 +3052,7 @@ declare function init(config: AuthHeroConfig): {
3052
3052
  };
3053
3053
  };
3054
3054
  output: {
3055
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3055
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3056
3056
  enabled: boolean;
3057
3057
  trial_expired?: boolean | undefined;
3058
3058
  };
@@ -3797,9 +3797,9 @@ declare function init(config: AuthHeroConfig): {
3797
3797
  invitee: {
3798
3798
  email?: string | undefined;
3799
3799
  };
3800
- id?: string | undefined;
3801
3800
  app_metadata?: Record<string, any> | undefined;
3802
3801
  user_metadata?: Record<string, any> | undefined;
3802
+ id?: string | undefined;
3803
3803
  connection_id?: string | undefined;
3804
3804
  roles?: string[] | undefined;
3805
3805
  ttl_sec?: number | undefined;
@@ -4652,7 +4652,7 @@ declare function init(config: AuthHeroConfig): {
4652
4652
  type: "REDIRECT";
4653
4653
  action: "REDIRECT_USER";
4654
4654
  params: {
4655
- target: "custom" | "change-email" | "account";
4655
+ target: "custom" | "account" | "change-email";
4656
4656
  custom_url?: string | undefined;
4657
4657
  };
4658
4658
  alias?: string | undefined;
@@ -4705,7 +4705,7 @@ declare function init(config: AuthHeroConfig): {
4705
4705
  type: "REDIRECT";
4706
4706
  action: "REDIRECT_USER";
4707
4707
  params: {
4708
- target: "custom" | "change-email" | "account";
4708
+ target: "custom" | "account" | "change-email";
4709
4709
  custom_url?: string | undefined;
4710
4710
  };
4711
4711
  alias?: string | undefined;
@@ -4773,7 +4773,7 @@ declare function init(config: AuthHeroConfig): {
4773
4773
  type: "REDIRECT";
4774
4774
  action: "REDIRECT_USER";
4775
4775
  params: {
4776
- target: "custom" | "change-email" | "account";
4776
+ target: "custom" | "account" | "change-email";
4777
4777
  custom_url?: string | undefined;
4778
4778
  };
4779
4779
  alias?: string | undefined;
@@ -4854,7 +4854,7 @@ declare function init(config: AuthHeroConfig): {
4854
4854
  type: "REDIRECT";
4855
4855
  action: "REDIRECT_USER";
4856
4856
  params: {
4857
- target: "custom" | "change-email" | "account";
4857
+ target: "custom" | "account" | "change-email";
4858
4858
  custom_url?: string | undefined;
4859
4859
  };
4860
4860
  alias?: string | undefined;
@@ -4902,7 +4902,7 @@ declare function init(config: AuthHeroConfig): {
4902
4902
  type: "REDIRECT";
4903
4903
  action: "REDIRECT_USER";
4904
4904
  params: {
4905
- target: "custom" | "change-email" | "account";
4905
+ target: "custom" | "account" | "change-email";
4906
4906
  custom_url?: string | undefined;
4907
4907
  };
4908
4908
  alias?: string | undefined;
@@ -4962,7 +4962,7 @@ declare function init(config: AuthHeroConfig): {
4962
4962
  type: "REDIRECT";
4963
4963
  action: "REDIRECT_USER";
4964
4964
  params: {
4965
- target: "custom" | "change-email" | "account";
4965
+ target: "custom" | "account" | "change-email";
4966
4966
  custom_url?: string | undefined;
4967
4967
  };
4968
4968
  alias?: string | undefined;
@@ -5010,7 +5010,7 @@ declare function init(config: AuthHeroConfig): {
5010
5010
  type: "REDIRECT";
5011
5011
  action: "REDIRECT_USER";
5012
5012
  params: {
5013
- target: "custom" | "change-email" | "account";
5013
+ target: "custom" | "account" | "change-email";
5014
5014
  custom_url?: string | undefined;
5015
5015
  };
5016
5016
  alias?: string | undefined;
@@ -5228,7 +5228,7 @@ declare function init(config: AuthHeroConfig): {
5228
5228
  hint?: string | undefined;
5229
5229
  messages?: {
5230
5230
  text: string;
5231
- type: "error" | "success" | "info" | "warning";
5231
+ type: "success" | "error" | "info" | "warning";
5232
5232
  id?: number | undefined;
5233
5233
  }[] | undefined;
5234
5234
  required?: boolean | undefined;
@@ -5246,7 +5246,7 @@ declare function init(config: AuthHeroConfig): {
5246
5246
  hint?: string | undefined;
5247
5247
  messages?: {
5248
5248
  text: string;
5249
- type: "error" | "success" | "info" | "warning";
5249
+ type: "success" | "error" | "info" | "warning";
5250
5250
  id?: number | undefined;
5251
5251
  }[] | undefined;
5252
5252
  required?: boolean | undefined;
@@ -5270,7 +5270,7 @@ declare function init(config: AuthHeroConfig): {
5270
5270
  hint?: string | undefined;
5271
5271
  messages?: {
5272
5272
  text: string;
5273
- type: "error" | "success" | "info" | "warning";
5273
+ type: "success" | "error" | "info" | "warning";
5274
5274
  id?: number | undefined;
5275
5275
  }[] | undefined;
5276
5276
  required?: boolean | undefined;
@@ -5294,7 +5294,7 @@ declare function init(config: AuthHeroConfig): {
5294
5294
  hint?: string | undefined;
5295
5295
  messages?: {
5296
5296
  text: string;
5297
- type: "error" | "success" | "info" | "warning";
5297
+ type: "success" | "error" | "info" | "warning";
5298
5298
  id?: number | undefined;
5299
5299
  }[] | undefined;
5300
5300
  required?: boolean | undefined;
@@ -5323,7 +5323,7 @@ declare function init(config: AuthHeroConfig): {
5323
5323
  hint?: string | undefined;
5324
5324
  messages?: {
5325
5325
  text: string;
5326
- type: "error" | "success" | "info" | "warning";
5326
+ type: "success" | "error" | "info" | "warning";
5327
5327
  id?: number | undefined;
5328
5328
  }[] | undefined;
5329
5329
  required?: boolean | undefined;
@@ -5338,7 +5338,7 @@ declare function init(config: AuthHeroConfig): {
5338
5338
  hint?: string | undefined;
5339
5339
  messages?: {
5340
5340
  text: string;
5341
- type: "error" | "success" | "info" | "warning";
5341
+ type: "success" | "error" | "info" | "warning";
5342
5342
  id?: number | undefined;
5343
5343
  }[] | undefined;
5344
5344
  required?: boolean | undefined;
@@ -5359,7 +5359,7 @@ declare function init(config: AuthHeroConfig): {
5359
5359
  hint?: string | undefined;
5360
5360
  messages?: {
5361
5361
  text: string;
5362
- type: "error" | "success" | "info" | "warning";
5362
+ type: "success" | "error" | "info" | "warning";
5363
5363
  id?: number | undefined;
5364
5364
  }[] | undefined;
5365
5365
  required?: boolean | undefined;
@@ -5384,7 +5384,7 @@ declare function init(config: AuthHeroConfig): {
5384
5384
  hint?: string | undefined;
5385
5385
  messages?: {
5386
5386
  text: string;
5387
- type: "error" | "success" | "info" | "warning";
5387
+ type: "success" | "error" | "info" | "warning";
5388
5388
  id?: number | undefined;
5389
5389
  }[] | undefined;
5390
5390
  required?: boolean | undefined;
@@ -5403,7 +5403,7 @@ declare function init(config: AuthHeroConfig): {
5403
5403
  hint?: string | undefined;
5404
5404
  messages?: {
5405
5405
  text: string;
5406
- type: "error" | "success" | "info" | "warning";
5406
+ type: "success" | "error" | "info" | "warning";
5407
5407
  id?: number | undefined;
5408
5408
  }[] | undefined;
5409
5409
  required?: boolean | undefined;
@@ -5423,7 +5423,7 @@ declare function init(config: AuthHeroConfig): {
5423
5423
  hint?: string | undefined;
5424
5424
  messages?: {
5425
5425
  text: string;
5426
- type: "error" | "success" | "info" | "warning";
5426
+ type: "success" | "error" | "info" | "warning";
5427
5427
  id?: number | undefined;
5428
5428
  }[] | undefined;
5429
5429
  required?: boolean | undefined;
@@ -5442,7 +5442,7 @@ declare function init(config: AuthHeroConfig): {
5442
5442
  hint?: string | undefined;
5443
5443
  messages?: {
5444
5444
  text: string;
5445
- type: "error" | "success" | "info" | "warning";
5445
+ type: "success" | "error" | "info" | "warning";
5446
5446
  id?: number | undefined;
5447
5447
  }[] | undefined;
5448
5448
  required?: boolean | undefined;
@@ -5464,7 +5464,7 @@ declare function init(config: AuthHeroConfig): {
5464
5464
  hint?: string | undefined;
5465
5465
  messages?: {
5466
5466
  text: string;
5467
- type: "error" | "success" | "info" | "warning";
5467
+ type: "success" | "error" | "info" | "warning";
5468
5468
  id?: number | undefined;
5469
5469
  }[] | undefined;
5470
5470
  required?: boolean | undefined;
@@ -5486,7 +5486,7 @@ declare function init(config: AuthHeroConfig): {
5486
5486
  hint?: string | undefined;
5487
5487
  messages?: {
5488
5488
  text: string;
5489
- type: "error" | "success" | "info" | "warning";
5489
+ type: "success" | "error" | "info" | "warning";
5490
5490
  id?: number | undefined;
5491
5491
  }[] | undefined;
5492
5492
  required?: boolean | undefined;
@@ -5505,7 +5505,7 @@ declare function init(config: AuthHeroConfig): {
5505
5505
  hint?: string | undefined;
5506
5506
  messages?: {
5507
5507
  text: string;
5508
- type: "error" | "success" | "info" | "warning";
5508
+ type: "success" | "error" | "info" | "warning";
5509
5509
  id?: number | undefined;
5510
5510
  }[] | undefined;
5511
5511
  required?: boolean | undefined;
@@ -5530,7 +5530,7 @@ declare function init(config: AuthHeroConfig): {
5530
5530
  hint?: string | undefined;
5531
5531
  messages?: {
5532
5532
  text: string;
5533
- type: "error" | "success" | "info" | "warning";
5533
+ type: "success" | "error" | "info" | "warning";
5534
5534
  id?: number | undefined;
5535
5535
  }[] | undefined;
5536
5536
  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;
@@ -5572,7 +5572,7 @@ declare function init(config: AuthHeroConfig): {
5572
5572
  hint?: string | undefined;
5573
5573
  messages?: {
5574
5574
  text: string;
5575
- type: "error" | "success" | "info" | "warning";
5575
+ type: "success" | "error" | "info" | "warning";
5576
5576
  id?: number | undefined;
5577
5577
  }[] | undefined;
5578
5578
  required?: boolean | undefined;
@@ -5805,7 +5805,7 @@ declare function init(config: AuthHeroConfig): {
5805
5805
  hint?: string | undefined;
5806
5806
  messages?: {
5807
5807
  text: string;
5808
- type: "error" | "success" | "info" | "warning";
5808
+ type: "success" | "error" | "info" | "warning";
5809
5809
  id?: number | undefined;
5810
5810
  }[] | undefined;
5811
5811
  required?: boolean | undefined;
@@ -5823,7 +5823,7 @@ declare function init(config: AuthHeroConfig): {
5823
5823
  hint?: string | undefined;
5824
5824
  messages?: {
5825
5825
  text: string;
5826
- type: "error" | "success" | "info" | "warning";
5826
+ type: "success" | "error" | "info" | "warning";
5827
5827
  id?: number | undefined;
5828
5828
  }[] | undefined;
5829
5829
  required?: boolean | undefined;
@@ -5847,7 +5847,7 @@ declare function init(config: AuthHeroConfig): {
5847
5847
  hint?: string | undefined;
5848
5848
  messages?: {
5849
5849
  text: string;
5850
- type: "error" | "success" | "info" | "warning";
5850
+ type: "success" | "error" | "info" | "warning";
5851
5851
  id?: number | undefined;
5852
5852
  }[] | undefined;
5853
5853
  required?: boolean | undefined;
@@ -5871,7 +5871,7 @@ declare function init(config: AuthHeroConfig): {
5871
5871
  hint?: string | undefined;
5872
5872
  messages?: {
5873
5873
  text: string;
5874
- type: "error" | "success" | "info" | "warning";
5874
+ type: "success" | "error" | "info" | "warning";
5875
5875
  id?: number | undefined;
5876
5876
  }[] | undefined;
5877
5877
  required?: boolean | undefined;
@@ -5900,7 +5900,7 @@ declare function init(config: AuthHeroConfig): {
5900
5900
  hint?: string | undefined;
5901
5901
  messages?: {
5902
5902
  text: string;
5903
- type: "error" | "success" | "info" | "warning";
5903
+ type: "success" | "error" | "info" | "warning";
5904
5904
  id?: number | undefined;
5905
5905
  }[] | undefined;
5906
5906
  required?: boolean | undefined;
@@ -5915,7 +5915,7 @@ declare function init(config: AuthHeroConfig): {
5915
5915
  hint?: string | undefined;
5916
5916
  messages?: {
5917
5917
  text: string;
5918
- type: "error" | "success" | "info" | "warning";
5918
+ type: "success" | "error" | "info" | "warning";
5919
5919
  id?: number | undefined;
5920
5920
  }[] | undefined;
5921
5921
  required?: boolean | undefined;
@@ -5936,7 +5936,7 @@ declare function init(config: AuthHeroConfig): {
5936
5936
  hint?: string | undefined;
5937
5937
  messages?: {
5938
5938
  text: string;
5939
- type: "error" | "success" | "info" | "warning";
5939
+ type: "success" | "error" | "info" | "warning";
5940
5940
  id?: number | undefined;
5941
5941
  }[] | undefined;
5942
5942
  required?: boolean | undefined;
@@ -5961,7 +5961,7 @@ declare function init(config: AuthHeroConfig): {
5961
5961
  hint?: string | undefined;
5962
5962
  messages?: {
5963
5963
  text: string;
5964
- type: "error" | "success" | "info" | "warning";
5964
+ type: "success" | "error" | "info" | "warning";
5965
5965
  id?: number | undefined;
5966
5966
  }[] | undefined;
5967
5967
  required?: boolean | undefined;
@@ -5980,7 +5980,7 @@ declare function init(config: AuthHeroConfig): {
5980
5980
  hint?: string | undefined;
5981
5981
  messages?: {
5982
5982
  text: string;
5983
- type: "error" | "success" | "info" | "warning";
5983
+ type: "success" | "error" | "info" | "warning";
5984
5984
  id?: number | undefined;
5985
5985
  }[] | undefined;
5986
5986
  required?: boolean | undefined;
@@ -6000,7 +6000,7 @@ declare function init(config: AuthHeroConfig): {
6000
6000
  hint?: string | undefined;
6001
6001
  messages?: {
6002
6002
  text: string;
6003
- type: "error" | "success" | "info" | "warning";
6003
+ type: "success" | "error" | "info" | "warning";
6004
6004
  id?: number | undefined;
6005
6005
  }[] | undefined;
6006
6006
  required?: boolean | undefined;
@@ -6019,7 +6019,7 @@ declare function init(config: AuthHeroConfig): {
6019
6019
  hint?: string | undefined;
6020
6020
  messages?: {
6021
6021
  text: string;
6022
- type: "error" | "success" | "info" | "warning";
6022
+ type: "success" | "error" | "info" | "warning";
6023
6023
  id?: number | undefined;
6024
6024
  }[] | undefined;
6025
6025
  required?: boolean | undefined;
@@ -6041,7 +6041,7 @@ declare function init(config: AuthHeroConfig): {
6041
6041
  hint?: string | undefined;
6042
6042
  messages?: {
6043
6043
  text: string;
6044
- type: "error" | "success" | "info" | "warning";
6044
+ type: "success" | "error" | "info" | "warning";
6045
6045
  id?: number | undefined;
6046
6046
  }[] | undefined;
6047
6047
  required?: boolean | undefined;
@@ -6063,7 +6063,7 @@ declare function init(config: AuthHeroConfig): {
6063
6063
  hint?: string | undefined;
6064
6064
  messages?: {
6065
6065
  text: string;
6066
- type: "error" | "success" | "info" | "warning";
6066
+ type: "success" | "error" | "info" | "warning";
6067
6067
  id?: number | undefined;
6068
6068
  }[] | undefined;
6069
6069
  required?: boolean | undefined;
@@ -6082,7 +6082,7 @@ declare function init(config: AuthHeroConfig): {
6082
6082
  hint?: string | undefined;
6083
6083
  messages?: {
6084
6084
  text: string;
6085
- type: "error" | "success" | "info" | "warning";
6085
+ type: "success" | "error" | "info" | "warning";
6086
6086
  id?: number | undefined;
6087
6087
  }[] | undefined;
6088
6088
  required?: boolean | undefined;
@@ -6107,7 +6107,7 @@ declare function init(config: AuthHeroConfig): {
6107
6107
  hint?: string | undefined;
6108
6108
  messages?: {
6109
6109
  text: string;
6110
- type: "error" | "success" | "info" | "warning";
6110
+ type: "success" | "error" | "info" | "warning";
6111
6111
  id?: number | undefined;
6112
6112
  }[] | undefined;
6113
6113
  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;
@@ -6149,7 +6149,7 @@ declare function init(config: AuthHeroConfig): {
6149
6149
  hint?: string | undefined;
6150
6150
  messages?: {
6151
6151
  text: string;
6152
- type: "error" | "success" | "info" | "warning";
6152
+ type: "success" | "error" | "info" | "warning";
6153
6153
  id?: number | undefined;
6154
6154
  }[] | undefined;
6155
6155
  required?: boolean | undefined;
@@ -6397,7 +6397,7 @@ declare function init(config: AuthHeroConfig): {
6397
6397
  hint?: string | undefined;
6398
6398
  messages?: {
6399
6399
  text: string;
6400
- type: "error" | "success" | "info" | "warning";
6400
+ type: "success" | "error" | "info" | "warning";
6401
6401
  id?: number | undefined;
6402
6402
  }[] | undefined;
6403
6403
  required?: boolean | undefined;
@@ -6415,7 +6415,7 @@ declare function init(config: AuthHeroConfig): {
6415
6415
  hint?: string | undefined;
6416
6416
  messages?: {
6417
6417
  text: string;
6418
- type: "error" | "success" | "info" | "warning";
6418
+ type: "success" | "error" | "info" | "warning";
6419
6419
  id?: number | undefined;
6420
6420
  }[] | undefined;
6421
6421
  required?: boolean | undefined;
@@ -6439,7 +6439,7 @@ declare function init(config: AuthHeroConfig): {
6439
6439
  hint?: string | undefined;
6440
6440
  messages?: {
6441
6441
  text: string;
6442
- type: "error" | "success" | "info" | "warning";
6442
+ type: "success" | "error" | "info" | "warning";
6443
6443
  id?: number | undefined;
6444
6444
  }[] | undefined;
6445
6445
  required?: boolean | undefined;
@@ -6463,7 +6463,7 @@ declare function init(config: AuthHeroConfig): {
6463
6463
  hint?: string | undefined;
6464
6464
  messages?: {
6465
6465
  text: string;
6466
- type: "error" | "success" | "info" | "warning";
6466
+ type: "success" | "error" | "info" | "warning";
6467
6467
  id?: number | undefined;
6468
6468
  }[] | undefined;
6469
6469
  required?: boolean | undefined;
@@ -6492,7 +6492,7 @@ declare function init(config: AuthHeroConfig): {
6492
6492
  hint?: string | undefined;
6493
6493
  messages?: {
6494
6494
  text: string;
6495
- type: "error" | "success" | "info" | "warning";
6495
+ type: "success" | "error" | "info" | "warning";
6496
6496
  id?: number | undefined;
6497
6497
  }[] | undefined;
6498
6498
  required?: boolean | undefined;
@@ -6507,7 +6507,7 @@ declare function init(config: AuthHeroConfig): {
6507
6507
  hint?: string | undefined;
6508
6508
  messages?: {
6509
6509
  text: string;
6510
- type: "error" | "success" | "info" | "warning";
6510
+ type: "success" | "error" | "info" | "warning";
6511
6511
  id?: number | undefined;
6512
6512
  }[] | undefined;
6513
6513
  required?: boolean | undefined;
@@ -6528,7 +6528,7 @@ declare function init(config: AuthHeroConfig): {
6528
6528
  hint?: string | undefined;
6529
6529
  messages?: {
6530
6530
  text: string;
6531
- type: "error" | "success" | "info" | "warning";
6531
+ type: "success" | "error" | "info" | "warning";
6532
6532
  id?: number | undefined;
6533
6533
  }[] | undefined;
6534
6534
  required?: boolean | undefined;
@@ -6553,7 +6553,7 @@ declare function init(config: AuthHeroConfig): {
6553
6553
  hint?: string | undefined;
6554
6554
  messages?: {
6555
6555
  text: string;
6556
- type: "error" | "success" | "info" | "warning";
6556
+ type: "success" | "error" | "info" | "warning";
6557
6557
  id?: number | undefined;
6558
6558
  }[] | undefined;
6559
6559
  required?: boolean | undefined;
@@ -6572,7 +6572,7 @@ declare function init(config: AuthHeroConfig): {
6572
6572
  hint?: string | undefined;
6573
6573
  messages?: {
6574
6574
  text: string;
6575
- type: "error" | "success" | "info" | "warning";
6575
+ type: "success" | "error" | "info" | "warning";
6576
6576
  id?: number | undefined;
6577
6577
  }[] | undefined;
6578
6578
  required?: boolean | undefined;
@@ -6592,7 +6592,7 @@ declare function init(config: AuthHeroConfig): {
6592
6592
  hint?: string | undefined;
6593
6593
  messages?: {
6594
6594
  text: string;
6595
- type: "error" | "success" | "info" | "warning";
6595
+ type: "success" | "error" | "info" | "warning";
6596
6596
  id?: number | undefined;
6597
6597
  }[] | undefined;
6598
6598
  required?: boolean | undefined;
@@ -6611,7 +6611,7 @@ declare function init(config: AuthHeroConfig): {
6611
6611
  hint?: string | undefined;
6612
6612
  messages?: {
6613
6613
  text: string;
6614
- type: "error" | "success" | "info" | "warning";
6614
+ type: "success" | "error" | "info" | "warning";
6615
6615
  id?: number | undefined;
6616
6616
  }[] | undefined;
6617
6617
  required?: boolean | undefined;
@@ -6633,7 +6633,7 @@ declare function init(config: AuthHeroConfig): {
6633
6633
  hint?: string | undefined;
6634
6634
  messages?: {
6635
6635
  text: string;
6636
- type: "error" | "success" | "info" | "warning";
6636
+ type: "success" | "error" | "info" | "warning";
6637
6637
  id?: number | undefined;
6638
6638
  }[] | undefined;
6639
6639
  required?: boolean | undefined;
@@ -6655,7 +6655,7 @@ declare function init(config: AuthHeroConfig): {
6655
6655
  hint?: string | undefined;
6656
6656
  messages?: {
6657
6657
  text: string;
6658
- type: "error" | "success" | "info" | "warning";
6658
+ type: "success" | "error" | "info" | "warning";
6659
6659
  id?: number | undefined;
6660
6660
  }[] | undefined;
6661
6661
  required?: boolean | undefined;
@@ -6674,7 +6674,7 @@ declare function init(config: AuthHeroConfig): {
6674
6674
  hint?: string | undefined;
6675
6675
  messages?: {
6676
6676
  text: string;
6677
- type: "error" | "success" | "info" | "warning";
6677
+ type: "success" | "error" | "info" | "warning";
6678
6678
  id?: number | undefined;
6679
6679
  }[] | undefined;
6680
6680
  required?: boolean | undefined;
@@ -6699,7 +6699,7 @@ declare function init(config: AuthHeroConfig): {
6699
6699
  hint?: string | undefined;
6700
6700
  messages?: {
6701
6701
  text: string;
6702
- type: "error" | "success" | "info" | "warning";
6702
+ type: "success" | "error" | "info" | "warning";
6703
6703
  id?: number | undefined;
6704
6704
  }[] | undefined;
6705
6705
  required?: boolean | undefined;
@@ -6720,7 +6720,7 @@ declare function init(config: AuthHeroConfig): {
6720
6720
  hint?: string | undefined;
6721
6721
  messages?: {
6722
6722
  text: string;
6723
- type: "error" | "success" | "info" | "warning";
6723
+ type: "success" | "error" | "info" | "warning";
6724
6724
  id?: number | undefined;
6725
6725
  }[] | undefined;
6726
6726
  required?: boolean | undefined;
@@ -6741,7 +6741,7 @@ declare function init(config: AuthHeroConfig): {
6741
6741
  hint?: string | undefined;
6742
6742
  messages?: {
6743
6743
  text: string;
6744
- type: "error" | "success" | "info" | "warning";
6744
+ type: "success" | "error" | "info" | "warning";
6745
6745
  id?: number | undefined;
6746
6746
  }[] | undefined;
6747
6747
  required?: boolean | undefined;
@@ -6995,7 +6995,7 @@ declare function init(config: AuthHeroConfig): {
6995
6995
  hint?: string | undefined;
6996
6996
  messages?: {
6997
6997
  text: string;
6998
- type: "error" | "success" | "info" | "warning";
6998
+ type: "success" | "error" | "info" | "warning";
6999
6999
  id?: number | undefined;
7000
7000
  }[] | undefined;
7001
7001
  required?: boolean | undefined;
@@ -7013,7 +7013,7 @@ declare function init(config: AuthHeroConfig): {
7013
7013
  hint?: string | undefined;
7014
7014
  messages?: {
7015
7015
  text: string;
7016
- type: "error" | "success" | "info" | "warning";
7016
+ type: "success" | "error" | "info" | "warning";
7017
7017
  id?: number | undefined;
7018
7018
  }[] | undefined;
7019
7019
  required?: boolean | undefined;
@@ -7037,7 +7037,7 @@ declare function init(config: AuthHeroConfig): {
7037
7037
  hint?: string | undefined;
7038
7038
  messages?: {
7039
7039
  text: string;
7040
- type: "error" | "success" | "info" | "warning";
7040
+ type: "success" | "error" | "info" | "warning";
7041
7041
  id?: number | undefined;
7042
7042
  }[] | undefined;
7043
7043
  required?: boolean | undefined;
@@ -7061,7 +7061,7 @@ declare function init(config: AuthHeroConfig): {
7061
7061
  hint?: string | undefined;
7062
7062
  messages?: {
7063
7063
  text: string;
7064
- type: "error" | "success" | "info" | "warning";
7064
+ type: "success" | "error" | "info" | "warning";
7065
7065
  id?: number | undefined;
7066
7066
  }[] | undefined;
7067
7067
  required?: boolean | undefined;
@@ -7086,7 +7086,7 @@ declare function init(config: AuthHeroConfig): {
7086
7086
  hint?: string | undefined;
7087
7087
  messages?: {
7088
7088
  text: string;
7089
- type: "error" | "success" | "info" | "warning";
7089
+ type: "success" | "error" | "info" | "warning";
7090
7090
  id?: number | undefined;
7091
7091
  }[] | undefined;
7092
7092
  required?: boolean | undefined;
@@ -7101,7 +7101,7 @@ declare function init(config: AuthHeroConfig): {
7101
7101
  hint?: string | undefined;
7102
7102
  messages?: {
7103
7103
  text: string;
7104
- type: "error" | "success" | "info" | "warning";
7104
+ type: "success" | "error" | "info" | "warning";
7105
7105
  id?: number | undefined;
7106
7106
  }[] | undefined;
7107
7107
  required?: boolean | undefined;
@@ -7122,7 +7122,7 @@ declare function init(config: AuthHeroConfig): {
7122
7122
  hint?: string | undefined;
7123
7123
  messages?: {
7124
7124
  text: string;
7125
- type: "error" | "success" | "info" | "warning";
7125
+ type: "success" | "error" | "info" | "warning";
7126
7126
  id?: number | undefined;
7127
7127
  }[] | undefined;
7128
7128
  required?: boolean | undefined;
@@ -7147,7 +7147,7 @@ declare function init(config: AuthHeroConfig): {
7147
7147
  hint?: string | undefined;
7148
7148
  messages?: {
7149
7149
  text: string;
7150
- type: "error" | "success" | "info" | "warning";
7150
+ type: "success" | "error" | "info" | "warning";
7151
7151
  id?: number | undefined;
7152
7152
  }[] | undefined;
7153
7153
  required?: boolean | undefined;
@@ -7166,7 +7166,7 @@ declare function init(config: AuthHeroConfig): {
7166
7166
  hint?: string | undefined;
7167
7167
  messages?: {
7168
7168
  text: string;
7169
- type: "error" | "success" | "info" | "warning";
7169
+ type: "success" | "error" | "info" | "warning";
7170
7170
  id?: number | undefined;
7171
7171
  }[] | undefined;
7172
7172
  required?: boolean | undefined;
@@ -7186,7 +7186,7 @@ declare function init(config: AuthHeroConfig): {
7186
7186
  hint?: string | undefined;
7187
7187
  messages?: {
7188
7188
  text: string;
7189
- type: "error" | "success" | "info" | "warning";
7189
+ type: "success" | "error" | "info" | "warning";
7190
7190
  id?: number | undefined;
7191
7191
  }[] | undefined;
7192
7192
  required?: boolean | undefined;
@@ -7205,7 +7205,7 @@ declare function init(config: AuthHeroConfig): {
7205
7205
  hint?: string | undefined;
7206
7206
  messages?: {
7207
7207
  text: string;
7208
- type: "error" | "success" | "info" | "warning";
7208
+ type: "success" | "error" | "info" | "warning";
7209
7209
  id?: number | undefined;
7210
7210
  }[] | undefined;
7211
7211
  required?: boolean | undefined;
@@ -7227,7 +7227,7 @@ declare function init(config: AuthHeroConfig): {
7227
7227
  hint?: string | undefined;
7228
7228
  messages?: {
7229
7229
  text: string;
7230
- type: "error" | "success" | "info" | "warning";
7230
+ type: "success" | "error" | "info" | "warning";
7231
7231
  id?: number | undefined;
7232
7232
  }[] | undefined;
7233
7233
  required?: boolean | undefined;
@@ -7249,7 +7249,7 @@ declare function init(config: AuthHeroConfig): {
7249
7249
  hint?: string | undefined;
7250
7250
  messages?: {
7251
7251
  text: string;
7252
- type: "error" | "success" | "info" | "warning";
7252
+ type: "success" | "error" | "info" | "warning";
7253
7253
  id?: number | undefined;
7254
7254
  }[] | undefined;
7255
7255
  required?: boolean | undefined;
@@ -7268,7 +7268,7 @@ declare function init(config: AuthHeroConfig): {
7268
7268
  hint?: string | undefined;
7269
7269
  messages?: {
7270
7270
  text: string;
7271
- type: "error" | "success" | "info" | "warning";
7271
+ type: "success" | "error" | "info" | "warning";
7272
7272
  id?: number | undefined;
7273
7273
  }[] | undefined;
7274
7274
  required?: boolean | undefined;
@@ -7293,7 +7293,7 @@ declare function init(config: AuthHeroConfig): {
7293
7293
  hint?: string | undefined;
7294
7294
  messages?: {
7295
7295
  text: string;
7296
- type: "error" | "success" | "info" | "warning";
7296
+ type: "success" | "error" | "info" | "warning";
7297
7297
  id?: number | undefined;
7298
7298
  }[] | undefined;
7299
7299
  required?: boolean | undefined;
@@ -7314,7 +7314,7 @@ declare function init(config: AuthHeroConfig): {
7314
7314
  hint?: string | undefined;
7315
7315
  messages?: {
7316
7316
  text: string;
7317
- type: "error" | "success" | "info" | "warning";
7317
+ type: "success" | "error" | "info" | "warning";
7318
7318
  id?: number | undefined;
7319
7319
  }[] | undefined;
7320
7320
  required?: boolean | undefined;
@@ -7335,7 +7335,7 @@ declare function init(config: AuthHeroConfig): {
7335
7335
  hint?: string | undefined;
7336
7336
  messages?: {
7337
7337
  text: string;
7338
- type: "error" | "success" | "info" | "warning";
7338
+ type: "success" | "error" | "info" | "warning";
7339
7339
  id?: number | undefined;
7340
7340
  }[] | undefined;
7341
7341
  required?: boolean | undefined;
@@ -7566,7 +7566,7 @@ declare function init(config: AuthHeroConfig): {
7566
7566
  hint?: string | undefined;
7567
7567
  messages?: {
7568
7568
  text: string;
7569
- type: "error" | "success" | "info" | "warning";
7569
+ type: "success" | "error" | "info" | "warning";
7570
7570
  id?: number | undefined;
7571
7571
  }[] | undefined;
7572
7572
  required?: boolean | undefined;
@@ -7584,7 +7584,7 @@ declare function init(config: AuthHeroConfig): {
7584
7584
  hint?: string | undefined;
7585
7585
  messages?: {
7586
7586
  text: string;
7587
- type: "error" | "success" | "info" | "warning";
7587
+ type: "success" | "error" | "info" | "warning";
7588
7588
  id?: number | undefined;
7589
7589
  }[] | undefined;
7590
7590
  required?: boolean | undefined;
@@ -7608,7 +7608,7 @@ declare function init(config: AuthHeroConfig): {
7608
7608
  hint?: string | undefined;
7609
7609
  messages?: {
7610
7610
  text: string;
7611
- type: "error" | "success" | "info" | "warning";
7611
+ type: "success" | "error" | "info" | "warning";
7612
7612
  id?: number | undefined;
7613
7613
  }[] | undefined;
7614
7614
  required?: boolean | undefined;
@@ -7632,7 +7632,7 @@ declare function init(config: AuthHeroConfig): {
7632
7632
  hint?: string | undefined;
7633
7633
  messages?: {
7634
7634
  text: string;
7635
- type: "error" | "success" | "info" | "warning";
7635
+ type: "success" | "error" | "info" | "warning";
7636
7636
  id?: number | undefined;
7637
7637
  }[] | undefined;
7638
7638
  required?: boolean | undefined;
@@ -7661,7 +7661,7 @@ declare function init(config: AuthHeroConfig): {
7661
7661
  hint?: string | undefined;
7662
7662
  messages?: {
7663
7663
  text: string;
7664
- type: "error" | "success" | "info" | "warning";
7664
+ type: "success" | "error" | "info" | "warning";
7665
7665
  id?: number | undefined;
7666
7666
  }[] | undefined;
7667
7667
  required?: boolean | undefined;
@@ -7676,7 +7676,7 @@ declare function init(config: AuthHeroConfig): {
7676
7676
  hint?: string | undefined;
7677
7677
  messages?: {
7678
7678
  text: string;
7679
- type: "error" | "success" | "info" | "warning";
7679
+ type: "success" | "error" | "info" | "warning";
7680
7680
  id?: number | undefined;
7681
7681
  }[] | undefined;
7682
7682
  required?: boolean | undefined;
@@ -7697,7 +7697,7 @@ declare function init(config: AuthHeroConfig): {
7697
7697
  hint?: string | undefined;
7698
7698
  messages?: {
7699
7699
  text: string;
7700
- type: "error" | "success" | "info" | "warning";
7700
+ type: "success" | "error" | "info" | "warning";
7701
7701
  id?: number | undefined;
7702
7702
  }[] | undefined;
7703
7703
  required?: boolean | undefined;
@@ -7722,7 +7722,7 @@ declare function init(config: AuthHeroConfig): {
7722
7722
  hint?: string | undefined;
7723
7723
  messages?: {
7724
7724
  text: string;
7725
- type: "error" | "success" | "info" | "warning";
7725
+ type: "success" | "error" | "info" | "warning";
7726
7726
  id?: number | undefined;
7727
7727
  }[] | undefined;
7728
7728
  required?: boolean | undefined;
@@ -7741,7 +7741,7 @@ declare function init(config: AuthHeroConfig): {
7741
7741
  hint?: string | undefined;
7742
7742
  messages?: {
7743
7743
  text: string;
7744
- type: "error" | "success" | "info" | "warning";
7744
+ type: "success" | "error" | "info" | "warning";
7745
7745
  id?: number | undefined;
7746
7746
  }[] | undefined;
7747
7747
  required?: boolean | undefined;
@@ -7761,7 +7761,7 @@ declare function init(config: AuthHeroConfig): {
7761
7761
  hint?: string | undefined;
7762
7762
  messages?: {
7763
7763
  text: string;
7764
- type: "error" | "success" | "info" | "warning";
7764
+ type: "success" | "error" | "info" | "warning";
7765
7765
  id?: number | undefined;
7766
7766
  }[] | undefined;
7767
7767
  required?: boolean | undefined;
@@ -7780,7 +7780,7 @@ declare function init(config: AuthHeroConfig): {
7780
7780
  hint?: string | undefined;
7781
7781
  messages?: {
7782
7782
  text: string;
7783
- type: "error" | "success" | "info" | "warning";
7783
+ type: "success" | "error" | "info" | "warning";
7784
7784
  id?: number | undefined;
7785
7785
  }[] | undefined;
7786
7786
  required?: boolean | undefined;
@@ -7802,7 +7802,7 @@ declare function init(config: AuthHeroConfig): {
7802
7802
  hint?: string | undefined;
7803
7803
  messages?: {
7804
7804
  text: string;
7805
- type: "error" | "success" | "info" | "warning";
7805
+ type: "success" | "error" | "info" | "warning";
7806
7806
  id?: number | undefined;
7807
7807
  }[] | undefined;
7808
7808
  required?: boolean | undefined;
@@ -7824,7 +7824,7 @@ declare function init(config: AuthHeroConfig): {
7824
7824
  hint?: string | undefined;
7825
7825
  messages?: {
7826
7826
  text: string;
7827
- type: "error" | "success" | "info" | "warning";
7827
+ type: "success" | "error" | "info" | "warning";
7828
7828
  id?: number | undefined;
7829
7829
  }[] | undefined;
7830
7830
  required?: boolean | undefined;
@@ -7843,7 +7843,7 @@ declare function init(config: AuthHeroConfig): {
7843
7843
  hint?: string | undefined;
7844
7844
  messages?: {
7845
7845
  text: string;
7846
- type: "error" | "success" | "info" | "warning";
7846
+ type: "success" | "error" | "info" | "warning";
7847
7847
  id?: number | undefined;
7848
7848
  }[] | undefined;
7849
7849
  required?: boolean | undefined;
@@ -7868,7 +7868,7 @@ declare function init(config: AuthHeroConfig): {
7868
7868
  hint?: string | undefined;
7869
7869
  messages?: {
7870
7870
  text: string;
7871
- type: "error" | "success" | "info" | "warning";
7871
+ type: "success" | "error" | "info" | "warning";
7872
7872
  id?: number | undefined;
7873
7873
  }[] | undefined;
7874
7874
  required?: boolean | undefined;
@@ -7889,7 +7889,7 @@ declare function init(config: AuthHeroConfig): {
7889
7889
  hint?: string | undefined;
7890
7890
  messages?: {
7891
7891
  text: string;
7892
- type: "error" | "success" | "info" | "warning";
7892
+ type: "success" | "error" | "info" | "warning";
7893
7893
  id?: number | undefined;
7894
7894
  }[] | undefined;
7895
7895
  required?: boolean | undefined;
@@ -7910,7 +7910,7 @@ declare function init(config: AuthHeroConfig): {
7910
7910
  hint?: string | undefined;
7911
7911
  messages?: {
7912
7912
  text: string;
7913
- type: "error" | "success" | "info" | "warning";
7913
+ type: "success" | "error" | "info" | "warning";
7914
7914
  id?: number | undefined;
7915
7915
  }[] | undefined;
7916
7916
  required?: boolean | undefined;
@@ -8143,7 +8143,7 @@ declare function init(config: AuthHeroConfig): {
8143
8143
  hint?: string | undefined;
8144
8144
  messages?: {
8145
8145
  text: string;
8146
- type: "error" | "success" | "info" | "warning";
8146
+ type: "success" | "error" | "info" | "warning";
8147
8147
  id?: number | undefined;
8148
8148
  }[] | undefined;
8149
8149
  required?: boolean | undefined;
@@ -8161,7 +8161,7 @@ declare function init(config: AuthHeroConfig): {
8161
8161
  hint?: string | undefined;
8162
8162
  messages?: {
8163
8163
  text: string;
8164
- type: "error" | "success" | "info" | "warning";
8164
+ type: "success" | "error" | "info" | "warning";
8165
8165
  id?: number | undefined;
8166
8166
  }[] | undefined;
8167
8167
  required?: boolean | undefined;
@@ -8185,7 +8185,7 @@ declare function init(config: AuthHeroConfig): {
8185
8185
  hint?: string | undefined;
8186
8186
  messages?: {
8187
8187
  text: string;
8188
- type: "error" | "success" | "info" | "warning";
8188
+ type: "success" | "error" | "info" | "warning";
8189
8189
  id?: number | undefined;
8190
8190
  }[] | undefined;
8191
8191
  required?: boolean | undefined;
@@ -8209,7 +8209,7 @@ declare function init(config: AuthHeroConfig): {
8209
8209
  hint?: string | undefined;
8210
8210
  messages?: {
8211
8211
  text: string;
8212
- type: "error" | "success" | "info" | "warning";
8212
+ type: "success" | "error" | "info" | "warning";
8213
8213
  id?: number | undefined;
8214
8214
  }[] | undefined;
8215
8215
  required?: boolean | undefined;
@@ -8234,7 +8234,7 @@ declare function init(config: AuthHeroConfig): {
8234
8234
  hint?: string | undefined;
8235
8235
  messages?: {
8236
8236
  text: string;
8237
- type: "error" | "success" | "info" | "warning";
8237
+ type: "success" | "error" | "info" | "warning";
8238
8238
  id?: number | undefined;
8239
8239
  }[] | undefined;
8240
8240
  required?: boolean | undefined;
@@ -8249,7 +8249,7 @@ declare function init(config: AuthHeroConfig): {
8249
8249
  hint?: string | undefined;
8250
8250
  messages?: {
8251
8251
  text: string;
8252
- type: "error" | "success" | "info" | "warning";
8252
+ type: "success" | "error" | "info" | "warning";
8253
8253
  id?: number | undefined;
8254
8254
  }[] | undefined;
8255
8255
  required?: boolean | undefined;
@@ -8270,7 +8270,7 @@ declare function init(config: AuthHeroConfig): {
8270
8270
  hint?: string | undefined;
8271
8271
  messages?: {
8272
8272
  text: string;
8273
- type: "error" | "success" | "info" | "warning";
8273
+ type: "success" | "error" | "info" | "warning";
8274
8274
  id?: number | undefined;
8275
8275
  }[] | undefined;
8276
8276
  required?: boolean | undefined;
@@ -8295,7 +8295,7 @@ declare function init(config: AuthHeroConfig): {
8295
8295
  hint?: string | undefined;
8296
8296
  messages?: {
8297
8297
  text: string;
8298
- type: "error" | "success" | "info" | "warning";
8298
+ type: "success" | "error" | "info" | "warning";
8299
8299
  id?: number | undefined;
8300
8300
  }[] | undefined;
8301
8301
  required?: boolean | undefined;
@@ -8314,7 +8314,7 @@ declare function init(config: AuthHeroConfig): {
8314
8314
  hint?: string | undefined;
8315
8315
  messages?: {
8316
8316
  text: string;
8317
- type: "error" | "success" | "info" | "warning";
8317
+ type: "success" | "error" | "info" | "warning";
8318
8318
  id?: number | undefined;
8319
8319
  }[] | undefined;
8320
8320
  required?: boolean | undefined;
@@ -8334,7 +8334,7 @@ declare function init(config: AuthHeroConfig): {
8334
8334
  hint?: string | undefined;
8335
8335
  messages?: {
8336
8336
  text: string;
8337
- type: "error" | "success" | "info" | "warning";
8337
+ type: "success" | "error" | "info" | "warning";
8338
8338
  id?: number | undefined;
8339
8339
  }[] | undefined;
8340
8340
  required?: boolean | undefined;
@@ -8353,7 +8353,7 @@ declare function init(config: AuthHeroConfig): {
8353
8353
  hint?: string | undefined;
8354
8354
  messages?: {
8355
8355
  text: string;
8356
- type: "error" | "success" | "info" | "warning";
8356
+ type: "success" | "error" | "info" | "warning";
8357
8357
  id?: number | undefined;
8358
8358
  }[] | undefined;
8359
8359
  required?: boolean | undefined;
@@ -8375,7 +8375,7 @@ declare function init(config: AuthHeroConfig): {
8375
8375
  hint?: string | undefined;
8376
8376
  messages?: {
8377
8377
  text: string;
8378
- type: "error" | "success" | "info" | "warning";
8378
+ type: "success" | "error" | "info" | "warning";
8379
8379
  id?: number | undefined;
8380
8380
  }[] | undefined;
8381
8381
  required?: boolean | undefined;
@@ -8397,7 +8397,7 @@ declare function init(config: AuthHeroConfig): {
8397
8397
  hint?: string | undefined;
8398
8398
  messages?: {
8399
8399
  text: string;
8400
- type: "error" | "success" | "info" | "warning";
8400
+ type: "success" | "error" | "info" | "warning";
8401
8401
  id?: number | undefined;
8402
8402
  }[] | undefined;
8403
8403
  required?: boolean | undefined;
@@ -8416,7 +8416,7 @@ declare function init(config: AuthHeroConfig): {
8416
8416
  hint?: string | undefined;
8417
8417
  messages?: {
8418
8418
  text: string;
8419
- type: "error" | "success" | "info" | "warning";
8419
+ type: "success" | "error" | "info" | "warning";
8420
8420
  id?: number | undefined;
8421
8421
  }[] | undefined;
8422
8422
  required?: boolean | undefined;
@@ -8441,7 +8441,7 @@ declare function init(config: AuthHeroConfig): {
8441
8441
  hint?: string | undefined;
8442
8442
  messages?: {
8443
8443
  text: string;
8444
- type: "error" | "success" | "info" | "warning";
8444
+ type: "success" | "error" | "info" | "warning";
8445
8445
  id?: number | undefined;
8446
8446
  }[] | undefined;
8447
8447
  required?: boolean | undefined;
@@ -8462,7 +8462,7 @@ declare function init(config: AuthHeroConfig): {
8462
8462
  hint?: string | undefined;
8463
8463
  messages?: {
8464
8464
  text: string;
8465
- type: "error" | "success" | "info" | "warning";
8465
+ type: "success" | "error" | "info" | "warning";
8466
8466
  id?: number | undefined;
8467
8467
  }[] | undefined;
8468
8468
  required?: boolean | undefined;
@@ -8483,7 +8483,7 @@ declare function init(config: AuthHeroConfig): {
8483
8483
  hint?: string | undefined;
8484
8484
  messages?: {
8485
8485
  text: string;
8486
- type: "error" | "success" | "info" | "warning";
8486
+ type: "success" | "error" | "info" | "warning";
8487
8487
  id?: number | undefined;
8488
8488
  }[] | undefined;
8489
8489
  required?: boolean | undefined;
@@ -8714,7 +8714,7 @@ declare function init(config: AuthHeroConfig): {
8714
8714
  hint?: string | undefined;
8715
8715
  messages?: {
8716
8716
  text: string;
8717
- type: "error" | "success" | "info" | "warning";
8717
+ type: "success" | "error" | "info" | "warning";
8718
8718
  id?: number | undefined;
8719
8719
  }[] | undefined;
8720
8720
  required?: boolean | undefined;
@@ -8732,7 +8732,7 @@ declare function init(config: AuthHeroConfig): {
8732
8732
  hint?: string | undefined;
8733
8733
  messages?: {
8734
8734
  text: string;
8735
- type: "error" | "success" | "info" | "warning";
8735
+ type: "success" | "error" | "info" | "warning";
8736
8736
  id?: number | undefined;
8737
8737
  }[] | undefined;
8738
8738
  required?: boolean | undefined;
@@ -8756,7 +8756,7 @@ declare function init(config: AuthHeroConfig): {
8756
8756
  hint?: string | undefined;
8757
8757
  messages?: {
8758
8758
  text: string;
8759
- type: "error" | "success" | "info" | "warning";
8759
+ type: "success" | "error" | "info" | "warning";
8760
8760
  id?: number | undefined;
8761
8761
  }[] | undefined;
8762
8762
  required?: boolean | undefined;
@@ -8780,7 +8780,7 @@ declare function init(config: AuthHeroConfig): {
8780
8780
  hint?: string | undefined;
8781
8781
  messages?: {
8782
8782
  text: string;
8783
- type: "error" | "success" | "info" | "warning";
8783
+ type: "success" | "error" | "info" | "warning";
8784
8784
  id?: number | undefined;
8785
8785
  }[] | undefined;
8786
8786
  required?: boolean | undefined;
@@ -8809,7 +8809,7 @@ declare function init(config: AuthHeroConfig): {
8809
8809
  hint?: string | undefined;
8810
8810
  messages?: {
8811
8811
  text: string;
8812
- type: "error" | "success" | "info" | "warning";
8812
+ type: "success" | "error" | "info" | "warning";
8813
8813
  id?: number | undefined;
8814
8814
  }[] | undefined;
8815
8815
  required?: boolean | undefined;
@@ -8824,7 +8824,7 @@ declare function init(config: AuthHeroConfig): {
8824
8824
  hint?: string | undefined;
8825
8825
  messages?: {
8826
8826
  text: string;
8827
- type: "error" | "success" | "info" | "warning";
8827
+ type: "success" | "error" | "info" | "warning";
8828
8828
  id?: number | undefined;
8829
8829
  }[] | undefined;
8830
8830
  required?: boolean | undefined;
@@ -8845,7 +8845,7 @@ declare function init(config: AuthHeroConfig): {
8845
8845
  hint?: string | undefined;
8846
8846
  messages?: {
8847
8847
  text: string;
8848
- type: "error" | "success" | "info" | "warning";
8848
+ type: "success" | "error" | "info" | "warning";
8849
8849
  id?: number | undefined;
8850
8850
  }[] | undefined;
8851
8851
  required?: boolean | undefined;
@@ -8870,7 +8870,7 @@ declare function init(config: AuthHeroConfig): {
8870
8870
  hint?: string | undefined;
8871
8871
  messages?: {
8872
8872
  text: string;
8873
- type: "error" | "success" | "info" | "warning";
8873
+ type: "success" | "error" | "info" | "warning";
8874
8874
  id?: number | undefined;
8875
8875
  }[] | undefined;
8876
8876
  required?: boolean | undefined;
@@ -8889,7 +8889,7 @@ declare function init(config: AuthHeroConfig): {
8889
8889
  hint?: string | undefined;
8890
8890
  messages?: {
8891
8891
  text: string;
8892
- type: "error" | "success" | "info" | "warning";
8892
+ type: "success" | "error" | "info" | "warning";
8893
8893
  id?: number | undefined;
8894
8894
  }[] | undefined;
8895
8895
  required?: boolean | undefined;
@@ -8909,7 +8909,7 @@ declare function init(config: AuthHeroConfig): {
8909
8909
  hint?: string | undefined;
8910
8910
  messages?: {
8911
8911
  text: string;
8912
- type: "error" | "success" | "info" | "warning";
8912
+ type: "success" | "error" | "info" | "warning";
8913
8913
  id?: number | undefined;
8914
8914
  }[] | undefined;
8915
8915
  required?: boolean | undefined;
@@ -8928,7 +8928,7 @@ declare function init(config: AuthHeroConfig): {
8928
8928
  hint?: string | undefined;
8929
8929
  messages?: {
8930
8930
  text: string;
8931
- type: "error" | "success" | "info" | "warning";
8931
+ type: "success" | "error" | "info" | "warning";
8932
8932
  id?: number | undefined;
8933
8933
  }[] | undefined;
8934
8934
  required?: boolean | undefined;
@@ -8950,7 +8950,7 @@ declare function init(config: AuthHeroConfig): {
8950
8950
  hint?: string | undefined;
8951
8951
  messages?: {
8952
8952
  text: string;
8953
- type: "error" | "success" | "info" | "warning";
8953
+ type: "success" | "error" | "info" | "warning";
8954
8954
  id?: number | undefined;
8955
8955
  }[] | undefined;
8956
8956
  required?: boolean | undefined;
@@ -8972,7 +8972,7 @@ declare function init(config: AuthHeroConfig): {
8972
8972
  hint?: string | undefined;
8973
8973
  messages?: {
8974
8974
  text: string;
8975
- type: "error" | "success" | "info" | "warning";
8975
+ type: "success" | "error" | "info" | "warning";
8976
8976
  id?: number | undefined;
8977
8977
  }[] | undefined;
8978
8978
  required?: boolean | undefined;
@@ -8991,7 +8991,7 @@ declare function init(config: AuthHeroConfig): {
8991
8991
  hint?: string | undefined;
8992
8992
  messages?: {
8993
8993
  text: string;
8994
- type: "error" | "success" | "info" | "warning";
8994
+ type: "success" | "error" | "info" | "warning";
8995
8995
  id?: number | undefined;
8996
8996
  }[] | undefined;
8997
8997
  required?: boolean | undefined;
@@ -9016,7 +9016,7 @@ declare function init(config: AuthHeroConfig): {
9016
9016
  hint?: string | undefined;
9017
9017
  messages?: {
9018
9018
  text: string;
9019
- type: "error" | "success" | "info" | "warning";
9019
+ type: "success" | "error" | "info" | "warning";
9020
9020
  id?: number | undefined;
9021
9021
  }[] | undefined;
9022
9022
  required?: boolean | undefined;
@@ -9037,7 +9037,7 @@ declare function init(config: AuthHeroConfig): {
9037
9037
  hint?: string | undefined;
9038
9038
  messages?: {
9039
9039
  text: string;
9040
- type: "error" | "success" | "info" | "warning";
9040
+ type: "success" | "error" | "info" | "warning";
9041
9041
  id?: number | undefined;
9042
9042
  }[] | undefined;
9043
9043
  required?: boolean | undefined;
@@ -9058,7 +9058,7 @@ declare function init(config: AuthHeroConfig): {
9058
9058
  hint?: string | undefined;
9059
9059
  messages?: {
9060
9060
  text: string;
9061
- type: "error" | "success" | "info" | "warning";
9061
+ type: "success" | "error" | "info" | "warning";
9062
9062
  id?: number | undefined;
9063
9063
  }[] | undefined;
9064
9064
  required?: boolean | undefined;
@@ -9288,7 +9288,7 @@ declare function init(config: AuthHeroConfig): {
9288
9288
  };
9289
9289
  };
9290
9290
  output: {
9291
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9291
+ prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "email-otp-challenge" | "invitation" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
9292
9292
  language: string;
9293
9293
  }[];
9294
9294
  outputFormat: "json";
@@ -9326,7 +9326,7 @@ declare function init(config: AuthHeroConfig): {
9326
9326
  $get: {
9327
9327
  input: {
9328
9328
  param: {
9329
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9329
+ prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "email-otp-challenge" | "invitation" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
9330
9330
  language: string;
9331
9331
  };
9332
9332
  } & {
@@ -9348,7 +9348,7 @@ declare function init(config: AuthHeroConfig): {
9348
9348
  $put: {
9349
9349
  input: {
9350
9350
  param: {
9351
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9351
+ prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "email-otp-challenge" | "invitation" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
9352
9352
  language: string;
9353
9353
  };
9354
9354
  } & {
@@ -9372,7 +9372,7 @@ declare function init(config: AuthHeroConfig): {
9372
9372
  $delete: {
9373
9373
  input: {
9374
9374
  param: {
9375
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9375
+ prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "email-otp-challenge" | "invitation" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
9376
9376
  language: string;
9377
9377
  };
9378
9378
  } & {
@@ -10234,7 +10234,7 @@ declare function init(config: AuthHeroConfig): {
10234
10234
  };
10235
10235
  } | {
10236
10236
  mode: "inline";
10237
- status: "error" | "success";
10237
+ status: "success" | "error";
10238
10238
  connection_id: string;
10239
10239
  connection_name: string;
10240
10240
  strategy: string;
@@ -10786,6 +10786,66 @@ declare function init(config: AuthHeroConfig): {
10786
10786
  status: 200;
10787
10787
  };
10788
10788
  };
10789
+ } & {
10790
+ "/:hook_id/try": {
10791
+ $post: {
10792
+ input: {
10793
+ param: {
10794
+ hook_id: string;
10795
+ };
10796
+ } & {
10797
+ header: {
10798
+ "tenant-id"?: string | undefined;
10799
+ };
10800
+ } & {
10801
+ json: {
10802
+ user_id: string;
10803
+ };
10804
+ };
10805
+ output: {};
10806
+ outputFormat: string;
10807
+ status: 400;
10808
+ } | {
10809
+ input: {
10810
+ param: {
10811
+ hook_id: string;
10812
+ };
10813
+ } & {
10814
+ header: {
10815
+ "tenant-id"?: string | undefined;
10816
+ };
10817
+ } & {
10818
+ json: {
10819
+ user_id: string;
10820
+ };
10821
+ };
10822
+ output: {};
10823
+ outputFormat: string;
10824
+ status: 404;
10825
+ } | {
10826
+ input: {
10827
+ param: {
10828
+ hook_id: string;
10829
+ };
10830
+ } & {
10831
+ header: {
10832
+ "tenant-id"?: string | undefined;
10833
+ };
10834
+ } & {
10835
+ json: {
10836
+ user_id: string;
10837
+ };
10838
+ };
10839
+ output: {
10840
+ ok: boolean;
10841
+ status?: number | undefined;
10842
+ body?: string | undefined;
10843
+ error?: string | undefined;
10844
+ };
10845
+ outputFormat: "json";
10846
+ status: 200;
10847
+ };
10848
+ };
10789
10849
  }, "/hooks"> & hono_types.MergeSchemaPath<{
10790
10850
  "/": {
10791
10851
  $get: {
@@ -11461,7 +11521,7 @@ declare function init(config: AuthHeroConfig): {
11461
11521
  };
11462
11522
  };
11463
11523
  output: {
11464
- type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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";
11524
+ type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11465
11525
  date: string;
11466
11526
  isMobile: boolean;
11467
11527
  log_id: string;
@@ -11500,7 +11560,7 @@ declare function init(config: AuthHeroConfig): {
11500
11560
  limit: number;
11501
11561
  length: number;
11502
11562
  logs: {
11503
- type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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";
11563
+ type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11504
11564
  date: string;
11505
11565
  isMobile: boolean;
11506
11566
  log_id: string;
@@ -11554,7 +11614,7 @@ declare function init(config: AuthHeroConfig): {
11554
11614
  };
11555
11615
  };
11556
11616
  output: {
11557
- type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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";
11617
+ type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11558
11618
  date: string;
11559
11619
  isMobile: boolean;
11560
11620
  log_id: string;
@@ -11942,7 +12002,7 @@ declare function init(config: AuthHeroConfig): {
11942
12002
  addons?: {
11943
12003
  [x: string]: any;
11944
12004
  } | undefined;
11945
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12005
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
11946
12006
  client_metadata?: {
11947
12007
  [x: string]: string;
11948
12008
  } | undefined;
@@ -12038,7 +12098,7 @@ declare function init(config: AuthHeroConfig): {
12038
12098
  addons?: {
12039
12099
  [x: string]: any;
12040
12100
  } | undefined;
12041
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12101
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12042
12102
  client_metadata?: {
12043
12103
  [x: string]: string;
12044
12104
  } | undefined;
@@ -12149,7 +12209,7 @@ declare function init(config: AuthHeroConfig): {
12149
12209
  addons?: {
12150
12210
  [x: string]: any;
12151
12211
  } | undefined;
12152
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12212
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12153
12213
  client_metadata?: {
12154
12214
  [x: string]: string;
12155
12215
  } | undefined;
@@ -12259,7 +12319,7 @@ declare function init(config: AuthHeroConfig): {
12259
12319
  custom_login_page_preview?: string | undefined;
12260
12320
  form_template?: string | undefined;
12261
12321
  addons?: Record<string, any> | undefined;
12262
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12322
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12263
12323
  client_metadata?: Record<string, string> | undefined;
12264
12324
  hide_sign_up_disabled_error?: boolean | undefined;
12265
12325
  mobile?: Record<string, any> | undefined;
@@ -12339,7 +12399,7 @@ declare function init(config: AuthHeroConfig): {
12339
12399
  addons?: {
12340
12400
  [x: string]: any;
12341
12401
  } | undefined;
12342
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12402
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12343
12403
  client_metadata?: {
12344
12404
  [x: string]: string;
12345
12405
  } | undefined;
@@ -12428,7 +12488,7 @@ declare function init(config: AuthHeroConfig): {
12428
12488
  custom_login_page_preview?: string | undefined;
12429
12489
  form_template?: string | undefined;
12430
12490
  addons?: Record<string, any> | undefined;
12431
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12491
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12432
12492
  client_metadata?: Record<string, string> | undefined;
12433
12493
  hide_sign_up_disabled_error?: boolean | undefined;
12434
12494
  mobile?: Record<string, any> | undefined;
@@ -12508,7 +12568,7 @@ declare function init(config: AuthHeroConfig): {
12508
12568
  addons?: {
12509
12569
  [x: string]: any;
12510
12570
  } | undefined;
12511
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12571
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12512
12572
  client_metadata?: {
12513
12573
  [x: string]: string;
12514
12574
  } | undefined;
@@ -13772,7 +13832,7 @@ declare function init(config: AuthHeroConfig): {
13772
13832
  };
13773
13833
  };
13774
13834
  output: {
13775
- type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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";
13835
+ type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13776
13836
  date: string;
13777
13837
  isMobile: boolean;
13778
13838
  log_id: string;
@@ -13811,7 +13871,7 @@ declare function init(config: AuthHeroConfig): {
13811
13871
  limit: number;
13812
13872
  length: number;
13813
13873
  logs: {
13814
- type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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";
13874
+ type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13815
13875
  date: string;
13816
13876
  isMobile: boolean;
13817
13877
  log_id: string;
@@ -14126,7 +14186,7 @@ declare function init(config: AuthHeroConfig): {
14126
14186
  };
14127
14187
  } & {
14128
14188
  json: {
14129
- 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";
14189
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14130
14190
  body: string;
14131
14191
  from: string;
14132
14192
  subject: string;
@@ -14147,7 +14207,7 @@ declare function init(config: AuthHeroConfig): {
14147
14207
  };
14148
14208
  } & {
14149
14209
  json: {
14150
- 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";
14210
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14151
14211
  body: string;
14152
14212
  from: string;
14153
14213
  subject: string;
@@ -14159,7 +14219,7 @@ declare function init(config: AuthHeroConfig): {
14159
14219
  };
14160
14220
  };
14161
14221
  output: {
14162
- 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";
14222
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14163
14223
  body: string;
14164
14224
  from: string;
14165
14225
  subject: string;
@@ -14182,7 +14242,7 @@ declare function init(config: AuthHeroConfig): {
14182
14242
  };
14183
14243
  };
14184
14244
  output: {
14185
- 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";
14245
+ name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14186
14246
  body: string;
14187
14247
  subject: string;
14188
14248
  }[];
@@ -14195,7 +14255,7 @@ declare function init(config: AuthHeroConfig): {
14195
14255
  $get: {
14196
14256
  input: {
14197
14257
  param: {
14198
- 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";
14258
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14199
14259
  };
14200
14260
  } & {
14201
14261
  header: {
@@ -14208,7 +14268,7 @@ declare function init(config: AuthHeroConfig): {
14208
14268
  } | {
14209
14269
  input: {
14210
14270
  param: {
14211
- 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";
14271
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14212
14272
  };
14213
14273
  } & {
14214
14274
  header: {
@@ -14216,7 +14276,7 @@ declare function init(config: AuthHeroConfig): {
14216
14276
  };
14217
14277
  };
14218
14278
  output: {
14219
- 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";
14279
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14220
14280
  body: string;
14221
14281
  from: string;
14222
14282
  subject: string;
@@ -14235,7 +14295,7 @@ declare function init(config: AuthHeroConfig): {
14235
14295
  $put: {
14236
14296
  input: {
14237
14297
  param: {
14238
- 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";
14298
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14239
14299
  };
14240
14300
  } & {
14241
14301
  header: {
@@ -14243,7 +14303,7 @@ declare function init(config: AuthHeroConfig): {
14243
14303
  };
14244
14304
  } & {
14245
14305
  json: {
14246
- 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";
14306
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14247
14307
  body: string;
14248
14308
  subject: string;
14249
14309
  syntax?: "liquid" | undefined;
@@ -14255,7 +14315,7 @@ declare function init(config: AuthHeroConfig): {
14255
14315
  };
14256
14316
  };
14257
14317
  output: {
14258
- 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";
14318
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14259
14319
  body: string;
14260
14320
  from: string;
14261
14321
  subject: string;
@@ -14274,7 +14334,7 @@ declare function init(config: AuthHeroConfig): {
14274
14334
  $patch: {
14275
14335
  input: {
14276
14336
  param: {
14277
- 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";
14337
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14278
14338
  };
14279
14339
  } & {
14280
14340
  header: {
@@ -14282,7 +14342,7 @@ declare function init(config: AuthHeroConfig): {
14282
14342
  };
14283
14343
  } & {
14284
14344
  json: {
14285
- 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;
14345
+ template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14286
14346
  body?: string | undefined;
14287
14347
  from?: string | undefined;
14288
14348
  subject?: string | undefined;
@@ -14299,7 +14359,7 @@ declare function init(config: AuthHeroConfig): {
14299
14359
  } | {
14300
14360
  input: {
14301
14361
  param: {
14302
- 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";
14362
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14303
14363
  };
14304
14364
  } & {
14305
14365
  header: {
@@ -14307,7 +14367,7 @@ declare function init(config: AuthHeroConfig): {
14307
14367
  };
14308
14368
  } & {
14309
14369
  json: {
14310
- 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;
14370
+ template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14311
14371
  body?: string | undefined;
14312
14372
  from?: string | undefined;
14313
14373
  subject?: string | undefined;
@@ -14319,7 +14379,7 @@ declare function init(config: AuthHeroConfig): {
14319
14379
  };
14320
14380
  };
14321
14381
  output: {
14322
- 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";
14382
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14323
14383
  body: string;
14324
14384
  from: string;
14325
14385
  subject: string;
@@ -14338,7 +14398,7 @@ declare function init(config: AuthHeroConfig): {
14338
14398
  $delete: {
14339
14399
  input: {
14340
14400
  param: {
14341
- 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";
14401
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14342
14402
  };
14343
14403
  } & {
14344
14404
  header: {
@@ -14351,7 +14411,7 @@ declare function init(config: AuthHeroConfig): {
14351
14411
  } | {
14352
14412
  input: {
14353
14413
  param: {
14354
- 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";
14414
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14355
14415
  };
14356
14416
  } & {
14357
14417
  header: {
@@ -14368,7 +14428,7 @@ declare function init(config: AuthHeroConfig): {
14368
14428
  $post: {
14369
14429
  input: {
14370
14430
  param: {
14371
- 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";
14431
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14372
14432
  };
14373
14433
  } & {
14374
14434
  header: {
@@ -15375,7 +15435,7 @@ declare function init(config: AuthHeroConfig): {
15375
15435
  json: {
15376
15436
  bindings: {
15377
15437
  ref: {
15378
- type?: "action_id" | "action_name" | undefined;
15438
+ type?: "action_name" | "action_id" | undefined;
15379
15439
  value?: string | undefined;
15380
15440
  id?: string | undefined;
15381
15441
  name?: string | undefined;
@@ -16462,7 +16522,7 @@ declare function init(config: AuthHeroConfig): {
16462
16522
  scope?: string | undefined;
16463
16523
  grant_types?: string[] | undefined;
16464
16524
  response_types?: string[] | undefined;
16465
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
16525
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16466
16526
  jwks_uri?: string | undefined;
16467
16527
  jwks?: Record<string, unknown> | undefined;
16468
16528
  software_id?: string | undefined;
@@ -16551,7 +16611,7 @@ declare function init(config: AuthHeroConfig): {
16551
16611
  scope?: string | undefined;
16552
16612
  grant_types?: string[] | undefined;
16553
16613
  response_types?: string[] | undefined;
16554
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
16614
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16555
16615
  jwks_uri?: string | undefined;
16556
16616
  jwks?: Record<string, unknown> | undefined;
16557
16617
  software_id?: string | undefined;
@@ -16608,7 +16668,7 @@ declare function init(config: AuthHeroConfig): {
16608
16668
  client_id: string;
16609
16669
  redirect_url?: string | undefined;
16610
16670
  login_hint?: string | undefined;
16611
- screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
16671
+ screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
16612
16672
  };
16613
16673
  };
16614
16674
  output: {};
@@ -16620,7 +16680,7 @@ declare function init(config: AuthHeroConfig): {
16620
16680
  client_id: string;
16621
16681
  redirect_url?: string | undefined;
16622
16682
  login_hint?: string | undefined;
16623
- screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
16683
+ screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
16624
16684
  };
16625
16685
  };
16626
16686
  output: {
@@ -16899,17 +16959,17 @@ declare function init(config: AuthHeroConfig): {
16899
16959
  authParams: {
16900
16960
  username?: string | undefined;
16901
16961
  state?: string | undefined;
16902
- audience?: string | undefined;
16903
- response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16904
- response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16905
16962
  scope?: string | undefined;
16906
- organization?: string | undefined;
16907
- nonce?: string | undefined;
16963
+ code_challenge?: string | undefined;
16964
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16908
16965
  redirect_uri?: string | undefined;
16966
+ nonce?: string | undefined;
16909
16967
  act_as?: string | undefined;
16968
+ response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16969
+ response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16970
+ audience?: string | undefined;
16971
+ organization?: string | undefined;
16910
16972
  prompt?: string | undefined;
16911
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16912
- code_challenge?: string | undefined;
16913
16973
  ui_locales?: string | undefined;
16914
16974
  max_age?: number | undefined;
16915
16975
  acr_values?: string | undefined;
@@ -16935,17 +16995,17 @@ declare function init(config: AuthHeroConfig): {
16935
16995
  authParams: {
16936
16996
  username?: string | undefined;
16937
16997
  state?: string | undefined;
16938
- audience?: string | undefined;
16939
- response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16940
- response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16941
16998
  scope?: string | undefined;
16942
- organization?: string | undefined;
16943
- nonce?: string | undefined;
16999
+ code_challenge?: string | undefined;
17000
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16944
17001
  redirect_uri?: string | undefined;
17002
+ nonce?: string | undefined;
16945
17003
  act_as?: string | undefined;
17004
+ response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17005
+ response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17006
+ audience?: string | undefined;
17007
+ organization?: string | undefined;
16946
17008
  prompt?: string | undefined;
16947
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16948
- code_challenge?: string | undefined;
16949
17009
  ui_locales?: string | undefined;
16950
17010
  max_age?: number | undefined;
16951
17011
  acr_values?: string | undefined;
@@ -17077,14 +17137,14 @@ declare function init(config: AuthHeroConfig): {
17077
17137
  input: {
17078
17138
  form: {
17079
17139
  token: string;
17080
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17140
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17081
17141
  client_id?: string | undefined;
17082
17142
  client_secret?: string | undefined;
17083
17143
  };
17084
17144
  } & {
17085
17145
  json: {
17086
17146
  token: string;
17087
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17147
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17088
17148
  client_id?: string | undefined;
17089
17149
  client_secret?: string | undefined;
17090
17150
  };
@@ -17096,14 +17156,14 @@ declare function init(config: AuthHeroConfig): {
17096
17156
  input: {
17097
17157
  form: {
17098
17158
  token: string;
17099
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17159
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17100
17160
  client_id?: string | undefined;
17101
17161
  client_secret?: string | undefined;
17102
17162
  };
17103
17163
  } & {
17104
17164
  json: {
17105
17165
  token: string;
17106
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17166
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17107
17167
  client_id?: string | undefined;
17108
17168
  client_secret?: string | undefined;
17109
17169
  };
@@ -17118,14 +17178,14 @@ declare function init(config: AuthHeroConfig): {
17118
17178
  input: {
17119
17179
  form: {
17120
17180
  token: string;
17121
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17181
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17122
17182
  client_id?: string | undefined;
17123
17183
  client_secret?: string | undefined;
17124
17184
  };
17125
17185
  } & {
17126
17186
  json: {
17127
17187
  token: string;
17128
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17188
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17129
17189
  client_id?: string | undefined;
17130
17190
  client_secret?: string | undefined;
17131
17191
  };
@@ -17175,7 +17235,7 @@ declare function init(config: AuthHeroConfig): {
17175
17235
  client_id: string;
17176
17236
  username: string;
17177
17237
  otp: string;
17178
- realm: "sms" | "email";
17238
+ realm: "email" | "sms";
17179
17239
  } | {
17180
17240
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17181
17241
  subject_token: string;
@@ -17222,7 +17282,7 @@ declare function init(config: AuthHeroConfig): {
17222
17282
  client_id: string;
17223
17283
  username: string;
17224
17284
  otp: string;
17225
- realm: "sms" | "email";
17285
+ realm: "email" | "sms";
17226
17286
  } | {
17227
17287
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17228
17288
  subject_token: string;
@@ -17274,7 +17334,7 @@ declare function init(config: AuthHeroConfig): {
17274
17334
  client_id: string;
17275
17335
  username: string;
17276
17336
  otp: string;
17277
- realm: "sms" | "email";
17337
+ realm: "email" | "sms";
17278
17338
  } | {
17279
17339
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17280
17340
  subject_token: string;
@@ -17321,7 +17381,7 @@ declare function init(config: AuthHeroConfig): {
17321
17381
  client_id: string;
17322
17382
  username: string;
17323
17383
  otp: string;
17324
- realm: "sms" | "email";
17384
+ realm: "email" | "sms";
17325
17385
  } | {
17326
17386
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17327
17387
  subject_token: string;
@@ -17381,7 +17441,7 @@ declare function init(config: AuthHeroConfig): {
17381
17441
  client_id: string;
17382
17442
  username: string;
17383
17443
  otp: string;
17384
- realm: "sms" | "email";
17444
+ realm: "email" | "sms";
17385
17445
  } | {
17386
17446
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17387
17447
  subject_token: string;
@@ -17428,7 +17488,7 @@ declare function init(config: AuthHeroConfig): {
17428
17488
  client_id: string;
17429
17489
  username: string;
17430
17490
  otp: string;
17431
- realm: "sms" | "email";
17491
+ realm: "email" | "sms";
17432
17492
  } | {
17433
17493
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17434
17494
  subject_token: string;
@@ -17483,7 +17543,7 @@ declare function init(config: AuthHeroConfig): {
17483
17543
  client_id: string;
17484
17544
  username: string;
17485
17545
  otp: string;
17486
- realm: "sms" | "email";
17546
+ realm: "email" | "sms";
17487
17547
  } | {
17488
17548
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17489
17549
  subject_token: string;
@@ -17530,7 +17590,7 @@ declare function init(config: AuthHeroConfig): {
17530
17590
  client_id: string;
17531
17591
  username: string;
17532
17592
  otp: string;
17533
- realm: "sms" | "email";
17593
+ realm: "email" | "sms";
17534
17594
  } | {
17535
17595
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17536
17596
  subject_token: string;
@@ -17585,7 +17645,7 @@ declare function init(config: AuthHeroConfig): {
17585
17645
  client_id: string;
17586
17646
  username: string;
17587
17647
  otp: string;
17588
- realm: "sms" | "email";
17648
+ realm: "email" | "sms";
17589
17649
  } | {
17590
17650
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17591
17651
  subject_token: string;
@@ -17632,7 +17692,7 @@ declare function init(config: AuthHeroConfig): {
17632
17692
  client_id: string;
17633
17693
  username: string;
17634
17694
  otp: string;
17635
- realm: "sms" | "email";
17695
+ realm: "email" | "sms";
17636
17696
  } | {
17637
17697
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17638
17698
  subject_token: string;
@@ -18852,7 +18912,7 @@ declare function init(config: AuthHeroConfig): {
18852
18912
  $get: {
18853
18913
  input: {
18854
18914
  param: {
18855
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18915
+ screen: "signup" | "account" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18856
18916
  };
18857
18917
  } & {
18858
18918
  query: {
@@ -18868,7 +18928,7 @@ declare function init(config: AuthHeroConfig): {
18868
18928
  } | {
18869
18929
  input: {
18870
18930
  param: {
18871
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18931
+ screen: "signup" | "account" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18872
18932
  };
18873
18933
  } & {
18874
18934
  query: {
@@ -18884,7 +18944,7 @@ declare function init(config: AuthHeroConfig): {
18884
18944
  } | {
18885
18945
  input: {
18886
18946
  param: {
18887
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18947
+ screen: "signup" | "account" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18888
18948
  };
18889
18949
  } & {
18890
18950
  query: {
@@ -18904,7 +18964,7 @@ declare function init(config: AuthHeroConfig): {
18904
18964
  $post: {
18905
18965
  input: {
18906
18966
  param: {
18907
- screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18967
+ screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18908
18968
  };
18909
18969
  } & {
18910
18970
  query: {
@@ -18922,7 +18982,7 @@ declare function init(config: AuthHeroConfig): {
18922
18982
  } | {
18923
18983
  input: {
18924
18984
  param: {
18925
- screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18985
+ screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18926
18986
  };
18927
18987
  } & {
18928
18988
  query: {
@@ -18940,7 +19000,7 @@ declare function init(config: AuthHeroConfig): {
18940
19000
  } | {
18941
19001
  input: {
18942
19002
  param: {
18943
- screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19003
+ screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18944
19004
  };
18945
19005
  } & {
18946
19006
  query: {