authhero 8.19.0 → 8.20.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/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +112 -112
  3. package/dist/authhero.d.ts +256 -256
  4. package/dist/authhero.mjs +10565 -10524
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  7. package/dist/types/helpers/hook-events.d.ts +35 -15
  8. package/dist/types/hooks/link-users.d.ts +9 -1
  9. package/dist/types/hooks/user-registration.d.ts +8 -5
  10. package/dist/types/index.d.ts +256 -256
  11. package/dist/types/routes/auth-api/index.d.ts +24 -24
  12. package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
  13. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  14. package/dist/types/routes/auth-api/token.d.ts +10 -10
  15. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  16. package/dist/types/routes/management-api/clients.d.ts +7 -7
  17. package/dist/types/routes/management-api/connections.d.ts +1 -1
  18. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  19. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  20. package/dist/types/routes/management-api/forms.d.ts +126 -126
  21. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  22. package/dist/types/routes/management-api/hooks.d.ts +24 -24
  23. package/dist/types/routes/management-api/index.d.ts +227 -227
  24. package/dist/types/routes/management-api/logs.d.ts +3 -3
  25. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  26. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  27. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  28. package/dist/types/routes/management-api/roles.d.ts +6 -6
  29. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  30. package/dist/types/routes/management-api/users.d.ts +2 -2
  31. package/dist/types/routes/universal-login/common.d.ts +2 -2
  32. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  33. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  34. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  35. package/dist/types/types/IdToken.d.ts +1 -1
  36. package/package.json +6 -6
@@ -3185,8 +3185,8 @@ declare function init(config: AuthHeroConfig): {
3185
3185
  $get: {
3186
3186
  input: {
3187
3187
  query: {
3188
- include_password_hashes?: "false" | "true" | undefined;
3189
- gzip?: "false" | "true" | undefined;
3188
+ include_password_hashes?: "true" | "false" | undefined;
3189
+ gzip?: "true" | "false" | undefined;
3190
3190
  };
3191
3191
  } & {
3192
3192
  header: {
@@ -3199,8 +3199,8 @@ declare function init(config: AuthHeroConfig): {
3199
3199
  } | {
3200
3200
  input: {
3201
3201
  query: {
3202
- include_password_hashes?: "false" | "true" | undefined;
3203
- gzip?: "false" | "true" | undefined;
3202
+ include_password_hashes?: "true" | "false" | undefined;
3203
+ gzip?: "true" | "false" | undefined;
3204
3204
  };
3205
3205
  } & {
3206
3206
  header: {
@@ -3219,7 +3219,7 @@ declare function init(config: AuthHeroConfig): {
3219
3219
  $post: {
3220
3220
  input: {
3221
3221
  query: {
3222
- include_password_hashes?: "false" | "true" | undefined;
3222
+ include_password_hashes?: "true" | "false" | undefined;
3223
3223
  };
3224
3224
  } & {
3225
3225
  header: {
@@ -3273,7 +3273,7 @@ declare function init(config: AuthHeroConfig): {
3273
3273
  };
3274
3274
  } & {
3275
3275
  json: {
3276
- type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
3276
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
3277
3277
  phone_number?: string | undefined;
3278
3278
  totp_secret?: string | undefined;
3279
3279
  credential_id?: string | undefined;
@@ -3413,7 +3413,7 @@ declare function init(config: AuthHeroConfig): {
3413
3413
  };
3414
3414
  };
3415
3415
  output: {
3416
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3416
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3417
3417
  enabled: boolean;
3418
3418
  trial_expired?: boolean | undefined;
3419
3419
  }[];
@@ -3568,7 +3568,7 @@ declare function init(config: AuthHeroConfig): {
3568
3568
  $get: {
3569
3569
  input: {
3570
3570
  param: {
3571
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3571
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3572
3572
  };
3573
3573
  } & {
3574
3574
  header: {
@@ -3576,7 +3576,7 @@ declare function init(config: AuthHeroConfig): {
3576
3576
  };
3577
3577
  };
3578
3578
  output: {
3579
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3579
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3580
3580
  enabled: boolean;
3581
3581
  trial_expired?: boolean | undefined;
3582
3582
  };
@@ -3589,7 +3589,7 @@ declare function init(config: AuthHeroConfig): {
3589
3589
  $put: {
3590
3590
  input: {
3591
3591
  param: {
3592
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3592
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3593
3593
  };
3594
3594
  } & {
3595
3595
  header: {
@@ -3601,7 +3601,7 @@ declare function init(config: AuthHeroConfig): {
3601
3601
  };
3602
3602
  };
3603
3603
  output: {
3604
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3604
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3605
3605
  enabled: boolean;
3606
3606
  trial_expired?: boolean | undefined;
3607
3607
  };
@@ -4346,11 +4346,11 @@ declare function init(config: AuthHeroConfig): {
4346
4346
  invitee: {
4347
4347
  email?: string | undefined;
4348
4348
  };
4349
- roles?: string[] | undefined;
4350
4349
  id?: string | undefined;
4351
4350
  app_metadata?: Record<string, any> | undefined;
4352
4351
  user_metadata?: Record<string, any> | undefined;
4353
4352
  connection_id?: string | undefined;
4353
+ roles?: string[] | undefined;
4354
4354
  ttl_sec?: number | undefined;
4355
4355
  send_invitation_email?: boolean | undefined;
4356
4356
  };
@@ -4534,8 +4534,8 @@ declare function init(config: AuthHeroConfig): {
4534
4534
  };
4535
4535
  } & {
4536
4536
  json: {
4537
- assign_membership_on_login?: boolean | undefined;
4538
4537
  show_as_button?: boolean | undefined;
4538
+ assign_membership_on_login?: boolean | undefined;
4539
4539
  is_signup_enabled?: boolean | undefined;
4540
4540
  };
4541
4541
  };
@@ -5777,7 +5777,7 @@ declare function init(config: AuthHeroConfig): {
5777
5777
  hint?: string | undefined;
5778
5778
  messages?: {
5779
5779
  text: string;
5780
- type: "success" | "error" | "info" | "warning";
5780
+ type: "error" | "success" | "info" | "warning";
5781
5781
  id?: number | undefined;
5782
5782
  }[] | undefined;
5783
5783
  required?: boolean | undefined;
@@ -5795,7 +5795,7 @@ declare function init(config: AuthHeroConfig): {
5795
5795
  hint?: string | undefined;
5796
5796
  messages?: {
5797
5797
  text: string;
5798
- type: "success" | "error" | "info" | "warning";
5798
+ type: "error" | "success" | "info" | "warning";
5799
5799
  id?: number | undefined;
5800
5800
  }[] | undefined;
5801
5801
  required?: boolean | undefined;
@@ -5819,7 +5819,7 @@ declare function init(config: AuthHeroConfig): {
5819
5819
  hint?: string | undefined;
5820
5820
  messages?: {
5821
5821
  text: string;
5822
- type: "success" | "error" | "info" | "warning";
5822
+ type: "error" | "success" | "info" | "warning";
5823
5823
  id?: number | undefined;
5824
5824
  }[] | undefined;
5825
5825
  required?: boolean | undefined;
@@ -5843,7 +5843,7 @@ declare function init(config: AuthHeroConfig): {
5843
5843
  hint?: string | undefined;
5844
5844
  messages?: {
5845
5845
  text: string;
5846
- type: "success" | "error" | "info" | "warning";
5846
+ type: "error" | "success" | "info" | "warning";
5847
5847
  id?: number | undefined;
5848
5848
  }[] | undefined;
5849
5849
  required?: boolean | undefined;
@@ -5867,7 +5867,7 @@ declare function init(config: AuthHeroConfig): {
5867
5867
  hint?: string | undefined;
5868
5868
  messages?: {
5869
5869
  text: string;
5870
- type: "success" | "error" | "info" | "warning";
5870
+ type: "error" | "success" | "info" | "warning";
5871
5871
  id?: number | undefined;
5872
5872
  }[] | undefined;
5873
5873
  required?: boolean | undefined;
@@ -5896,7 +5896,7 @@ declare function init(config: AuthHeroConfig): {
5896
5896
  hint?: string | undefined;
5897
5897
  messages?: {
5898
5898
  text: string;
5899
- type: "success" | "error" | "info" | "warning";
5899
+ type: "error" | "success" | "info" | "warning";
5900
5900
  id?: number | undefined;
5901
5901
  }[] | undefined;
5902
5902
  required?: boolean | undefined;
@@ -5911,7 +5911,7 @@ declare function init(config: AuthHeroConfig): {
5911
5911
  hint?: string | undefined;
5912
5912
  messages?: {
5913
5913
  text: string;
5914
- type: "success" | "error" | "info" | "warning";
5914
+ type: "error" | "success" | "info" | "warning";
5915
5915
  id?: number | undefined;
5916
5916
  }[] | undefined;
5917
5917
  required?: boolean | undefined;
@@ -5932,7 +5932,7 @@ declare function init(config: AuthHeroConfig): {
5932
5932
  hint?: string | undefined;
5933
5933
  messages?: {
5934
5934
  text: string;
5935
- type: "success" | "error" | "info" | "warning";
5935
+ type: "error" | "success" | "info" | "warning";
5936
5936
  id?: number | undefined;
5937
5937
  }[] | undefined;
5938
5938
  required?: boolean | undefined;
@@ -5957,7 +5957,7 @@ declare function init(config: AuthHeroConfig): {
5957
5957
  hint?: string | undefined;
5958
5958
  messages?: {
5959
5959
  text: string;
5960
- type: "success" | "error" | "info" | "warning";
5960
+ type: "error" | "success" | "info" | "warning";
5961
5961
  id?: number | undefined;
5962
5962
  }[] | undefined;
5963
5963
  required?: boolean | undefined;
@@ -5976,7 +5976,7 @@ declare function init(config: AuthHeroConfig): {
5976
5976
  hint?: string | undefined;
5977
5977
  messages?: {
5978
5978
  text: string;
5979
- type: "success" | "error" | "info" | "warning";
5979
+ type: "error" | "success" | "info" | "warning";
5980
5980
  id?: number | undefined;
5981
5981
  }[] | undefined;
5982
5982
  required?: boolean | undefined;
@@ -5996,7 +5996,7 @@ declare function init(config: AuthHeroConfig): {
5996
5996
  hint?: string | undefined;
5997
5997
  messages?: {
5998
5998
  text: string;
5999
- type: "success" | "error" | "info" | "warning";
5999
+ type: "error" | "success" | "info" | "warning";
6000
6000
  id?: number | undefined;
6001
6001
  }[] | undefined;
6002
6002
  required?: boolean | undefined;
@@ -6015,7 +6015,7 @@ declare function init(config: AuthHeroConfig): {
6015
6015
  hint?: string | undefined;
6016
6016
  messages?: {
6017
6017
  text: string;
6018
- type: "success" | "error" | "info" | "warning";
6018
+ type: "error" | "success" | "info" | "warning";
6019
6019
  id?: number | undefined;
6020
6020
  }[] | undefined;
6021
6021
  required?: boolean | undefined;
@@ -6037,7 +6037,7 @@ declare function init(config: AuthHeroConfig): {
6037
6037
  hint?: string | undefined;
6038
6038
  messages?: {
6039
6039
  text: string;
6040
- type: "success" | "error" | "info" | "warning";
6040
+ type: "error" | "success" | "info" | "warning";
6041
6041
  id?: number | undefined;
6042
6042
  }[] | undefined;
6043
6043
  required?: boolean | undefined;
@@ -6059,7 +6059,7 @@ declare function init(config: AuthHeroConfig): {
6059
6059
  hint?: string | undefined;
6060
6060
  messages?: {
6061
6061
  text: string;
6062
- type: "success" | "error" | "info" | "warning";
6062
+ type: "error" | "success" | "info" | "warning";
6063
6063
  id?: number | undefined;
6064
6064
  }[] | undefined;
6065
6065
  required?: boolean | undefined;
@@ -6078,7 +6078,7 @@ declare function init(config: AuthHeroConfig): {
6078
6078
  hint?: string | undefined;
6079
6079
  messages?: {
6080
6080
  text: string;
6081
- type: "success" | "error" | "info" | "warning";
6081
+ type: "error" | "success" | "info" | "warning";
6082
6082
  id?: number | undefined;
6083
6083
  }[] | undefined;
6084
6084
  required?: boolean | undefined;
@@ -6103,7 +6103,7 @@ declare function init(config: AuthHeroConfig): {
6103
6103
  hint?: string | undefined;
6104
6104
  messages?: {
6105
6105
  text: string;
6106
- type: "success" | "error" | "info" | "warning";
6106
+ type: "error" | "success" | "info" | "warning";
6107
6107
  id?: number | undefined;
6108
6108
  }[] | undefined;
6109
6109
  required?: boolean | undefined;
@@ -6124,7 +6124,7 @@ declare function init(config: AuthHeroConfig): {
6124
6124
  hint?: string | undefined;
6125
6125
  messages?: {
6126
6126
  text: string;
6127
- type: "success" | "error" | "info" | "warning";
6127
+ type: "error" | "success" | "info" | "warning";
6128
6128
  id?: number | undefined;
6129
6129
  }[] | undefined;
6130
6130
  required?: boolean | undefined;
@@ -6145,7 +6145,7 @@ declare function init(config: AuthHeroConfig): {
6145
6145
  hint?: string | undefined;
6146
6146
  messages?: {
6147
6147
  text: string;
6148
- type: "success" | "error" | "info" | "warning";
6148
+ type: "error" | "success" | "info" | "warning";
6149
6149
  id?: number | undefined;
6150
6150
  }[] | undefined;
6151
6151
  required?: boolean | undefined;
@@ -6378,7 +6378,7 @@ declare function init(config: AuthHeroConfig): {
6378
6378
  hint?: string | undefined;
6379
6379
  messages?: {
6380
6380
  text: string;
6381
- type: "success" | "error" | "info" | "warning";
6381
+ type: "error" | "success" | "info" | "warning";
6382
6382
  id?: number | undefined;
6383
6383
  }[] | undefined;
6384
6384
  required?: boolean | undefined;
@@ -6396,7 +6396,7 @@ declare function init(config: AuthHeroConfig): {
6396
6396
  hint?: string | undefined;
6397
6397
  messages?: {
6398
6398
  text: string;
6399
- type: "success" | "error" | "info" | "warning";
6399
+ type: "error" | "success" | "info" | "warning";
6400
6400
  id?: number | undefined;
6401
6401
  }[] | undefined;
6402
6402
  required?: boolean | undefined;
@@ -6420,7 +6420,7 @@ declare function init(config: AuthHeroConfig): {
6420
6420
  hint?: string | undefined;
6421
6421
  messages?: {
6422
6422
  text: string;
6423
- type: "success" | "error" | "info" | "warning";
6423
+ type: "error" | "success" | "info" | "warning";
6424
6424
  id?: number | undefined;
6425
6425
  }[] | undefined;
6426
6426
  required?: boolean | undefined;
@@ -6444,7 +6444,7 @@ declare function init(config: AuthHeroConfig): {
6444
6444
  hint?: string | undefined;
6445
6445
  messages?: {
6446
6446
  text: string;
6447
- type: "success" | "error" | "info" | "warning";
6447
+ type: "error" | "success" | "info" | "warning";
6448
6448
  id?: number | undefined;
6449
6449
  }[] | undefined;
6450
6450
  required?: boolean | undefined;
@@ -6468,7 +6468,7 @@ declare function init(config: AuthHeroConfig): {
6468
6468
  hint?: string | undefined;
6469
6469
  messages?: {
6470
6470
  text: string;
6471
- type: "success" | "error" | "info" | "warning";
6471
+ type: "error" | "success" | "info" | "warning";
6472
6472
  id?: number | undefined;
6473
6473
  }[] | undefined;
6474
6474
  required?: boolean | undefined;
@@ -6497,7 +6497,7 @@ declare function init(config: AuthHeroConfig): {
6497
6497
  hint?: string | undefined;
6498
6498
  messages?: {
6499
6499
  text: string;
6500
- type: "success" | "error" | "info" | "warning";
6500
+ type: "error" | "success" | "info" | "warning";
6501
6501
  id?: number | undefined;
6502
6502
  }[] | undefined;
6503
6503
  required?: boolean | undefined;
@@ -6512,7 +6512,7 @@ declare function init(config: AuthHeroConfig): {
6512
6512
  hint?: string | undefined;
6513
6513
  messages?: {
6514
6514
  text: string;
6515
- type: "success" | "error" | "info" | "warning";
6515
+ type: "error" | "success" | "info" | "warning";
6516
6516
  id?: number | undefined;
6517
6517
  }[] | undefined;
6518
6518
  required?: boolean | undefined;
@@ -6533,7 +6533,7 @@ declare function init(config: AuthHeroConfig): {
6533
6533
  hint?: string | undefined;
6534
6534
  messages?: {
6535
6535
  text: string;
6536
- type: "success" | "error" | "info" | "warning";
6536
+ type: "error" | "success" | "info" | "warning";
6537
6537
  id?: number | undefined;
6538
6538
  }[] | undefined;
6539
6539
  required?: boolean | undefined;
@@ -6558,7 +6558,7 @@ declare function init(config: AuthHeroConfig): {
6558
6558
  hint?: string | undefined;
6559
6559
  messages?: {
6560
6560
  text: string;
6561
- type: "success" | "error" | "info" | "warning";
6561
+ type: "error" | "success" | "info" | "warning";
6562
6562
  id?: number | undefined;
6563
6563
  }[] | undefined;
6564
6564
  required?: boolean | undefined;
@@ -6577,7 +6577,7 @@ declare function init(config: AuthHeroConfig): {
6577
6577
  hint?: string | undefined;
6578
6578
  messages?: {
6579
6579
  text: string;
6580
- type: "success" | "error" | "info" | "warning";
6580
+ type: "error" | "success" | "info" | "warning";
6581
6581
  id?: number | undefined;
6582
6582
  }[] | undefined;
6583
6583
  required?: boolean | undefined;
@@ -6597,7 +6597,7 @@ declare function init(config: AuthHeroConfig): {
6597
6597
  hint?: string | undefined;
6598
6598
  messages?: {
6599
6599
  text: string;
6600
- type: "success" | "error" | "info" | "warning";
6600
+ type: "error" | "success" | "info" | "warning";
6601
6601
  id?: number | undefined;
6602
6602
  }[] | undefined;
6603
6603
  required?: boolean | undefined;
@@ -6616,7 +6616,7 @@ declare function init(config: AuthHeroConfig): {
6616
6616
  hint?: string | undefined;
6617
6617
  messages?: {
6618
6618
  text: string;
6619
- type: "success" | "error" | "info" | "warning";
6619
+ type: "error" | "success" | "info" | "warning";
6620
6620
  id?: number | undefined;
6621
6621
  }[] | undefined;
6622
6622
  required?: boolean | undefined;
@@ -6638,7 +6638,7 @@ declare function init(config: AuthHeroConfig): {
6638
6638
  hint?: string | undefined;
6639
6639
  messages?: {
6640
6640
  text: string;
6641
- type: "success" | "error" | "info" | "warning";
6641
+ type: "error" | "success" | "info" | "warning";
6642
6642
  id?: number | undefined;
6643
6643
  }[] | undefined;
6644
6644
  required?: boolean | undefined;
@@ -6660,7 +6660,7 @@ declare function init(config: AuthHeroConfig): {
6660
6660
  hint?: string | undefined;
6661
6661
  messages?: {
6662
6662
  text: string;
6663
- type: "success" | "error" | "info" | "warning";
6663
+ type: "error" | "success" | "info" | "warning";
6664
6664
  id?: number | undefined;
6665
6665
  }[] | undefined;
6666
6666
  required?: boolean | undefined;
@@ -6679,7 +6679,7 @@ declare function init(config: AuthHeroConfig): {
6679
6679
  hint?: string | undefined;
6680
6680
  messages?: {
6681
6681
  text: string;
6682
- type: "success" | "error" | "info" | "warning";
6682
+ type: "error" | "success" | "info" | "warning";
6683
6683
  id?: number | undefined;
6684
6684
  }[] | undefined;
6685
6685
  required?: boolean | undefined;
@@ -6704,7 +6704,7 @@ declare function init(config: AuthHeroConfig): {
6704
6704
  hint?: string | undefined;
6705
6705
  messages?: {
6706
6706
  text: string;
6707
- type: "success" | "error" | "info" | "warning";
6707
+ type: "error" | "success" | "info" | "warning";
6708
6708
  id?: number | undefined;
6709
6709
  }[] | undefined;
6710
6710
  required?: boolean | undefined;
@@ -6725,7 +6725,7 @@ declare function init(config: AuthHeroConfig): {
6725
6725
  hint?: string | undefined;
6726
6726
  messages?: {
6727
6727
  text: string;
6728
- type: "success" | "error" | "info" | "warning";
6728
+ type: "error" | "success" | "info" | "warning";
6729
6729
  id?: number | undefined;
6730
6730
  }[] | undefined;
6731
6731
  required?: boolean | undefined;
@@ -6746,7 +6746,7 @@ declare function init(config: AuthHeroConfig): {
6746
6746
  hint?: string | undefined;
6747
6747
  messages?: {
6748
6748
  text: string;
6749
- type: "success" | "error" | "info" | "warning";
6749
+ type: "error" | "success" | "info" | "warning";
6750
6750
  id?: number | undefined;
6751
6751
  }[] | undefined;
6752
6752
  required?: boolean | undefined;
@@ -6994,7 +6994,7 @@ declare function init(config: AuthHeroConfig): {
6994
6994
  hint?: string | undefined;
6995
6995
  messages?: {
6996
6996
  text: string;
6997
- type: "success" | "error" | "info" | "warning";
6997
+ type: "error" | "success" | "info" | "warning";
6998
6998
  id?: number | undefined;
6999
6999
  }[] | undefined;
7000
7000
  required?: boolean | undefined;
@@ -7012,7 +7012,7 @@ declare function init(config: AuthHeroConfig): {
7012
7012
  hint?: string | undefined;
7013
7013
  messages?: {
7014
7014
  text: string;
7015
- type: "success" | "error" | "info" | "warning";
7015
+ type: "error" | "success" | "info" | "warning";
7016
7016
  id?: number | undefined;
7017
7017
  }[] | undefined;
7018
7018
  required?: boolean | undefined;
@@ -7036,7 +7036,7 @@ declare function init(config: AuthHeroConfig): {
7036
7036
  hint?: string | undefined;
7037
7037
  messages?: {
7038
7038
  text: string;
7039
- type: "success" | "error" | "info" | "warning";
7039
+ type: "error" | "success" | "info" | "warning";
7040
7040
  id?: number | undefined;
7041
7041
  }[] | undefined;
7042
7042
  required?: boolean | undefined;
@@ -7060,7 +7060,7 @@ declare function init(config: AuthHeroConfig): {
7060
7060
  hint?: string | undefined;
7061
7061
  messages?: {
7062
7062
  text: string;
7063
- type: "success" | "error" | "info" | "warning";
7063
+ type: "error" | "success" | "info" | "warning";
7064
7064
  id?: number | undefined;
7065
7065
  }[] | undefined;
7066
7066
  required?: boolean | undefined;
@@ -7084,7 +7084,7 @@ declare function init(config: AuthHeroConfig): {
7084
7084
  hint?: string | undefined;
7085
7085
  messages?: {
7086
7086
  text: string;
7087
- type: "success" | "error" | "info" | "warning";
7087
+ type: "error" | "success" | "info" | "warning";
7088
7088
  id?: number | undefined;
7089
7089
  }[] | undefined;
7090
7090
  required?: boolean | undefined;
@@ -7113,7 +7113,7 @@ declare function init(config: AuthHeroConfig): {
7113
7113
  hint?: string | undefined;
7114
7114
  messages?: {
7115
7115
  text: string;
7116
- type: "success" | "error" | "info" | "warning";
7116
+ type: "error" | "success" | "info" | "warning";
7117
7117
  id?: number | undefined;
7118
7118
  }[] | undefined;
7119
7119
  required?: boolean | undefined;
@@ -7128,7 +7128,7 @@ declare function init(config: AuthHeroConfig): {
7128
7128
  hint?: string | undefined;
7129
7129
  messages?: {
7130
7130
  text: string;
7131
- type: "success" | "error" | "info" | "warning";
7131
+ type: "error" | "success" | "info" | "warning";
7132
7132
  id?: number | undefined;
7133
7133
  }[] | undefined;
7134
7134
  required?: boolean | undefined;
@@ -7149,7 +7149,7 @@ declare function init(config: AuthHeroConfig): {
7149
7149
  hint?: string | undefined;
7150
7150
  messages?: {
7151
7151
  text: string;
7152
- type: "success" | "error" | "info" | "warning";
7152
+ type: "error" | "success" | "info" | "warning";
7153
7153
  id?: number | undefined;
7154
7154
  }[] | undefined;
7155
7155
  required?: boolean | undefined;
@@ -7174,7 +7174,7 @@ declare function init(config: AuthHeroConfig): {
7174
7174
  hint?: string | undefined;
7175
7175
  messages?: {
7176
7176
  text: string;
7177
- type: "success" | "error" | "info" | "warning";
7177
+ type: "error" | "success" | "info" | "warning";
7178
7178
  id?: number | undefined;
7179
7179
  }[] | undefined;
7180
7180
  required?: boolean | undefined;
@@ -7193,7 +7193,7 @@ declare function init(config: AuthHeroConfig): {
7193
7193
  hint?: string | undefined;
7194
7194
  messages?: {
7195
7195
  text: string;
7196
- type: "success" | "error" | "info" | "warning";
7196
+ type: "error" | "success" | "info" | "warning";
7197
7197
  id?: number | undefined;
7198
7198
  }[] | undefined;
7199
7199
  required?: boolean | undefined;
@@ -7213,7 +7213,7 @@ declare function init(config: AuthHeroConfig): {
7213
7213
  hint?: string | undefined;
7214
7214
  messages?: {
7215
7215
  text: string;
7216
- type: "success" | "error" | "info" | "warning";
7216
+ type: "error" | "success" | "info" | "warning";
7217
7217
  id?: number | undefined;
7218
7218
  }[] | undefined;
7219
7219
  required?: boolean | undefined;
@@ -7232,7 +7232,7 @@ declare function init(config: AuthHeroConfig): {
7232
7232
  hint?: string | undefined;
7233
7233
  messages?: {
7234
7234
  text: string;
7235
- type: "success" | "error" | "info" | "warning";
7235
+ type: "error" | "success" | "info" | "warning";
7236
7236
  id?: number | undefined;
7237
7237
  }[] | undefined;
7238
7238
  required?: boolean | undefined;
@@ -7254,7 +7254,7 @@ declare function init(config: AuthHeroConfig): {
7254
7254
  hint?: string | undefined;
7255
7255
  messages?: {
7256
7256
  text: string;
7257
- type: "success" | "error" | "info" | "warning";
7257
+ type: "error" | "success" | "info" | "warning";
7258
7258
  id?: number | undefined;
7259
7259
  }[] | undefined;
7260
7260
  required?: boolean | undefined;
@@ -7276,7 +7276,7 @@ declare function init(config: AuthHeroConfig): {
7276
7276
  hint?: string | undefined;
7277
7277
  messages?: {
7278
7278
  text: string;
7279
- type: "success" | "error" | "info" | "warning";
7279
+ type: "error" | "success" | "info" | "warning";
7280
7280
  id?: number | undefined;
7281
7281
  }[] | undefined;
7282
7282
  required?: boolean | undefined;
@@ -7295,7 +7295,7 @@ declare function init(config: AuthHeroConfig): {
7295
7295
  hint?: string | undefined;
7296
7296
  messages?: {
7297
7297
  text: string;
7298
- type: "success" | "error" | "info" | "warning";
7298
+ type: "error" | "success" | "info" | "warning";
7299
7299
  id?: number | undefined;
7300
7300
  }[] | undefined;
7301
7301
  required?: boolean | undefined;
@@ -7320,7 +7320,7 @@ declare function init(config: AuthHeroConfig): {
7320
7320
  hint?: string | undefined;
7321
7321
  messages?: {
7322
7322
  text: string;
7323
- type: "success" | "error" | "info" | "warning";
7323
+ type: "error" | "success" | "info" | "warning";
7324
7324
  id?: number | undefined;
7325
7325
  }[] | undefined;
7326
7326
  required?: boolean | undefined;
@@ -7341,7 +7341,7 @@ declare function init(config: AuthHeroConfig): {
7341
7341
  hint?: string | undefined;
7342
7342
  messages?: {
7343
7343
  text: string;
7344
- type: "success" | "error" | "info" | "warning";
7344
+ type: "error" | "success" | "info" | "warning";
7345
7345
  id?: number | undefined;
7346
7346
  }[] | undefined;
7347
7347
  required?: boolean | undefined;
@@ -7362,7 +7362,7 @@ declare function init(config: AuthHeroConfig): {
7362
7362
  hint?: string | undefined;
7363
7363
  messages?: {
7364
7364
  text: string;
7365
- type: "success" | "error" | "info" | "warning";
7365
+ type: "error" | "success" | "info" | "warning";
7366
7366
  id?: number | undefined;
7367
7367
  }[] | undefined;
7368
7368
  required?: boolean | undefined;
@@ -7616,7 +7616,7 @@ declare function init(config: AuthHeroConfig): {
7616
7616
  hint?: string | undefined;
7617
7617
  messages?: {
7618
7618
  text: string;
7619
- type: "success" | "error" | "info" | "warning";
7619
+ type: "error" | "success" | "info" | "warning";
7620
7620
  id?: number | undefined;
7621
7621
  }[] | undefined;
7622
7622
  required?: boolean | undefined;
@@ -7634,7 +7634,7 @@ declare function init(config: AuthHeroConfig): {
7634
7634
  hint?: string | undefined;
7635
7635
  messages?: {
7636
7636
  text: string;
7637
- type: "success" | "error" | "info" | "warning";
7637
+ type: "error" | "success" | "info" | "warning";
7638
7638
  id?: number | undefined;
7639
7639
  }[] | undefined;
7640
7640
  required?: boolean | undefined;
@@ -7658,7 +7658,7 @@ declare function init(config: AuthHeroConfig): {
7658
7658
  hint?: string | undefined;
7659
7659
  messages?: {
7660
7660
  text: string;
7661
- type: "success" | "error" | "info" | "warning";
7661
+ type: "error" | "success" | "info" | "warning";
7662
7662
  id?: number | undefined;
7663
7663
  }[] | undefined;
7664
7664
  required?: boolean | undefined;
@@ -7682,7 +7682,7 @@ declare function init(config: AuthHeroConfig): {
7682
7682
  hint?: string | undefined;
7683
7683
  messages?: {
7684
7684
  text: string;
7685
- type: "success" | "error" | "info" | "warning";
7685
+ type: "error" | "success" | "info" | "warning";
7686
7686
  id?: number | undefined;
7687
7687
  }[] | undefined;
7688
7688
  required?: boolean | undefined;
@@ -7706,7 +7706,7 @@ declare function init(config: AuthHeroConfig): {
7706
7706
  hint?: string | undefined;
7707
7707
  messages?: {
7708
7708
  text: string;
7709
- type: "success" | "error" | "info" | "warning";
7709
+ type: "error" | "success" | "info" | "warning";
7710
7710
  id?: number | undefined;
7711
7711
  }[] | undefined;
7712
7712
  required?: boolean | undefined;
@@ -7731,7 +7731,7 @@ declare function init(config: AuthHeroConfig): {
7731
7731
  hint?: string | undefined;
7732
7732
  messages?: {
7733
7733
  text: string;
7734
- type: "success" | "error" | "info" | "warning";
7734
+ type: "error" | "success" | "info" | "warning";
7735
7735
  id?: number | undefined;
7736
7736
  }[] | undefined;
7737
7737
  required?: boolean | undefined;
@@ -7746,7 +7746,7 @@ declare function init(config: AuthHeroConfig): {
7746
7746
  hint?: string | undefined;
7747
7747
  messages?: {
7748
7748
  text: string;
7749
- type: "success" | "error" | "info" | "warning";
7749
+ type: "error" | "success" | "info" | "warning";
7750
7750
  id?: number | undefined;
7751
7751
  }[] | undefined;
7752
7752
  required?: boolean | undefined;
@@ -7767,7 +7767,7 @@ declare function init(config: AuthHeroConfig): {
7767
7767
  hint?: string | undefined;
7768
7768
  messages?: {
7769
7769
  text: string;
7770
- type: "success" | "error" | "info" | "warning";
7770
+ type: "error" | "success" | "info" | "warning";
7771
7771
  id?: number | undefined;
7772
7772
  }[] | undefined;
7773
7773
  required?: boolean | undefined;
@@ -7792,7 +7792,7 @@ declare function init(config: AuthHeroConfig): {
7792
7792
  hint?: string | undefined;
7793
7793
  messages?: {
7794
7794
  text: string;
7795
- type: "success" | "error" | "info" | "warning";
7795
+ type: "error" | "success" | "info" | "warning";
7796
7796
  id?: number | undefined;
7797
7797
  }[] | undefined;
7798
7798
  required?: boolean | undefined;
@@ -7811,7 +7811,7 @@ declare function init(config: AuthHeroConfig): {
7811
7811
  hint?: string | undefined;
7812
7812
  messages?: {
7813
7813
  text: string;
7814
- type: "success" | "error" | "info" | "warning";
7814
+ type: "error" | "success" | "info" | "warning";
7815
7815
  id?: number | undefined;
7816
7816
  }[] | undefined;
7817
7817
  required?: boolean | undefined;
@@ -7831,7 +7831,7 @@ declare function init(config: AuthHeroConfig): {
7831
7831
  hint?: string | undefined;
7832
7832
  messages?: {
7833
7833
  text: string;
7834
- type: "success" | "error" | "info" | "warning";
7834
+ type: "error" | "success" | "info" | "warning";
7835
7835
  id?: number | undefined;
7836
7836
  }[] | undefined;
7837
7837
  required?: boolean | undefined;
@@ -7850,7 +7850,7 @@ declare function init(config: AuthHeroConfig): {
7850
7850
  hint?: string | undefined;
7851
7851
  messages?: {
7852
7852
  text: string;
7853
- type: "success" | "error" | "info" | "warning";
7853
+ type: "error" | "success" | "info" | "warning";
7854
7854
  id?: number | undefined;
7855
7855
  }[] | undefined;
7856
7856
  required?: boolean | undefined;
@@ -7872,7 +7872,7 @@ declare function init(config: AuthHeroConfig): {
7872
7872
  hint?: string | undefined;
7873
7873
  messages?: {
7874
7874
  text: string;
7875
- type: "success" | "error" | "info" | "warning";
7875
+ type: "error" | "success" | "info" | "warning";
7876
7876
  id?: number | undefined;
7877
7877
  }[] | undefined;
7878
7878
  required?: boolean | undefined;
@@ -7894,7 +7894,7 @@ declare function init(config: AuthHeroConfig): {
7894
7894
  hint?: string | undefined;
7895
7895
  messages?: {
7896
7896
  text: string;
7897
- type: "success" | "error" | "info" | "warning";
7897
+ type: "error" | "success" | "info" | "warning";
7898
7898
  id?: number | undefined;
7899
7899
  }[] | undefined;
7900
7900
  required?: boolean | undefined;
@@ -7913,7 +7913,7 @@ declare function init(config: AuthHeroConfig): {
7913
7913
  hint?: string | undefined;
7914
7914
  messages?: {
7915
7915
  text: string;
7916
- type: "success" | "error" | "info" | "warning";
7916
+ type: "error" | "success" | "info" | "warning";
7917
7917
  id?: number | undefined;
7918
7918
  }[] | undefined;
7919
7919
  required?: boolean | undefined;
@@ -7938,7 +7938,7 @@ declare function init(config: AuthHeroConfig): {
7938
7938
  hint?: string | undefined;
7939
7939
  messages?: {
7940
7940
  text: string;
7941
- type: "success" | "error" | "info" | "warning";
7941
+ type: "error" | "success" | "info" | "warning";
7942
7942
  id?: number | undefined;
7943
7943
  }[] | undefined;
7944
7944
  required?: boolean | undefined;
@@ -7959,7 +7959,7 @@ declare function init(config: AuthHeroConfig): {
7959
7959
  hint?: string | undefined;
7960
7960
  messages?: {
7961
7961
  text: string;
7962
- type: "success" | "error" | "info" | "warning";
7962
+ type: "error" | "success" | "info" | "warning";
7963
7963
  id?: number | undefined;
7964
7964
  }[] | undefined;
7965
7965
  required?: boolean | undefined;
@@ -7980,7 +7980,7 @@ declare function init(config: AuthHeroConfig): {
7980
7980
  hint?: string | undefined;
7981
7981
  messages?: {
7982
7982
  text: string;
7983
- type: "success" | "error" | "info" | "warning";
7983
+ type: "error" | "success" | "info" | "warning";
7984
7984
  id?: number | undefined;
7985
7985
  }[] | undefined;
7986
7986
  required?: boolean | undefined;
@@ -8211,7 +8211,7 @@ declare function init(config: AuthHeroConfig): {
8211
8211
  hint?: string | undefined;
8212
8212
  messages?: {
8213
8213
  text: string;
8214
- type: "success" | "error" | "info" | "warning";
8214
+ type: "error" | "success" | "info" | "warning";
8215
8215
  id?: number | undefined;
8216
8216
  }[] | undefined;
8217
8217
  required?: boolean | undefined;
@@ -8229,7 +8229,7 @@ declare function init(config: AuthHeroConfig): {
8229
8229
  hint?: string | undefined;
8230
8230
  messages?: {
8231
8231
  text: string;
8232
- type: "success" | "error" | "info" | "warning";
8232
+ type: "error" | "success" | "info" | "warning";
8233
8233
  id?: number | undefined;
8234
8234
  }[] | undefined;
8235
8235
  required?: boolean | undefined;
@@ -8253,7 +8253,7 @@ declare function init(config: AuthHeroConfig): {
8253
8253
  hint?: string | undefined;
8254
8254
  messages?: {
8255
8255
  text: string;
8256
- type: "success" | "error" | "info" | "warning";
8256
+ type: "error" | "success" | "info" | "warning";
8257
8257
  id?: number | undefined;
8258
8258
  }[] | undefined;
8259
8259
  required?: boolean | undefined;
@@ -8277,7 +8277,7 @@ declare function init(config: AuthHeroConfig): {
8277
8277
  hint?: string | undefined;
8278
8278
  messages?: {
8279
8279
  text: string;
8280
- type: "success" | "error" | "info" | "warning";
8280
+ type: "error" | "success" | "info" | "warning";
8281
8281
  id?: number | undefined;
8282
8282
  }[] | undefined;
8283
8283
  required?: boolean | undefined;
@@ -8301,7 +8301,7 @@ declare function init(config: AuthHeroConfig): {
8301
8301
  hint?: string | undefined;
8302
8302
  messages?: {
8303
8303
  text: string;
8304
- type: "success" | "error" | "info" | "warning";
8304
+ type: "error" | "success" | "info" | "warning";
8305
8305
  id?: number | undefined;
8306
8306
  }[] | undefined;
8307
8307
  required?: boolean | undefined;
@@ -8330,7 +8330,7 @@ declare function init(config: AuthHeroConfig): {
8330
8330
  hint?: string | undefined;
8331
8331
  messages?: {
8332
8332
  text: string;
8333
- type: "success" | "error" | "info" | "warning";
8333
+ type: "error" | "success" | "info" | "warning";
8334
8334
  id?: number | undefined;
8335
8335
  }[] | undefined;
8336
8336
  required?: boolean | undefined;
@@ -8345,7 +8345,7 @@ declare function init(config: AuthHeroConfig): {
8345
8345
  hint?: string | undefined;
8346
8346
  messages?: {
8347
8347
  text: string;
8348
- type: "success" | "error" | "info" | "warning";
8348
+ type: "error" | "success" | "info" | "warning";
8349
8349
  id?: number | undefined;
8350
8350
  }[] | undefined;
8351
8351
  required?: boolean | undefined;
@@ -8366,7 +8366,7 @@ declare function init(config: AuthHeroConfig): {
8366
8366
  hint?: string | undefined;
8367
8367
  messages?: {
8368
8368
  text: string;
8369
- type: "success" | "error" | "info" | "warning";
8369
+ type: "error" | "success" | "info" | "warning";
8370
8370
  id?: number | undefined;
8371
8371
  }[] | undefined;
8372
8372
  required?: boolean | undefined;
@@ -8391,7 +8391,7 @@ declare function init(config: AuthHeroConfig): {
8391
8391
  hint?: string | undefined;
8392
8392
  messages?: {
8393
8393
  text: string;
8394
- type: "success" | "error" | "info" | "warning";
8394
+ type: "error" | "success" | "info" | "warning";
8395
8395
  id?: number | undefined;
8396
8396
  }[] | undefined;
8397
8397
  required?: boolean | undefined;
@@ -8410,7 +8410,7 @@ declare function init(config: AuthHeroConfig): {
8410
8410
  hint?: string | undefined;
8411
8411
  messages?: {
8412
8412
  text: string;
8413
- type: "success" | "error" | "info" | "warning";
8413
+ type: "error" | "success" | "info" | "warning";
8414
8414
  id?: number | undefined;
8415
8415
  }[] | undefined;
8416
8416
  required?: boolean | undefined;
@@ -8430,7 +8430,7 @@ declare function init(config: AuthHeroConfig): {
8430
8430
  hint?: string | undefined;
8431
8431
  messages?: {
8432
8432
  text: string;
8433
- type: "success" | "error" | "info" | "warning";
8433
+ type: "error" | "success" | "info" | "warning";
8434
8434
  id?: number | undefined;
8435
8435
  }[] | undefined;
8436
8436
  required?: boolean | undefined;
@@ -8449,7 +8449,7 @@ declare function init(config: AuthHeroConfig): {
8449
8449
  hint?: string | undefined;
8450
8450
  messages?: {
8451
8451
  text: string;
8452
- type: "success" | "error" | "info" | "warning";
8452
+ type: "error" | "success" | "info" | "warning";
8453
8453
  id?: number | undefined;
8454
8454
  }[] | undefined;
8455
8455
  required?: boolean | undefined;
@@ -8471,7 +8471,7 @@ declare function init(config: AuthHeroConfig): {
8471
8471
  hint?: string | undefined;
8472
8472
  messages?: {
8473
8473
  text: string;
8474
- type: "success" | "error" | "info" | "warning";
8474
+ type: "error" | "success" | "info" | "warning";
8475
8475
  id?: number | undefined;
8476
8476
  }[] | undefined;
8477
8477
  required?: boolean | undefined;
@@ -8493,7 +8493,7 @@ declare function init(config: AuthHeroConfig): {
8493
8493
  hint?: string | undefined;
8494
8494
  messages?: {
8495
8495
  text: string;
8496
- type: "success" | "error" | "info" | "warning";
8496
+ type: "error" | "success" | "info" | "warning";
8497
8497
  id?: number | undefined;
8498
8498
  }[] | undefined;
8499
8499
  required?: boolean | undefined;
@@ -8512,7 +8512,7 @@ declare function init(config: AuthHeroConfig): {
8512
8512
  hint?: string | undefined;
8513
8513
  messages?: {
8514
8514
  text: string;
8515
- type: "success" | "error" | "info" | "warning";
8515
+ type: "error" | "success" | "info" | "warning";
8516
8516
  id?: number | undefined;
8517
8517
  }[] | undefined;
8518
8518
  required?: boolean | undefined;
@@ -8537,7 +8537,7 @@ declare function init(config: AuthHeroConfig): {
8537
8537
  hint?: string | undefined;
8538
8538
  messages?: {
8539
8539
  text: string;
8540
- type: "success" | "error" | "info" | "warning";
8540
+ type: "error" | "success" | "info" | "warning";
8541
8541
  id?: number | undefined;
8542
8542
  }[] | undefined;
8543
8543
  required?: boolean | undefined;
@@ -8558,7 +8558,7 @@ declare function init(config: AuthHeroConfig): {
8558
8558
  hint?: string | undefined;
8559
8559
  messages?: {
8560
8560
  text: string;
8561
- type: "success" | "error" | "info" | "warning";
8561
+ type: "error" | "success" | "info" | "warning";
8562
8562
  id?: number | undefined;
8563
8563
  }[] | undefined;
8564
8564
  required?: boolean | undefined;
@@ -8579,7 +8579,7 @@ declare function init(config: AuthHeroConfig): {
8579
8579
  hint?: string | undefined;
8580
8580
  messages?: {
8581
8581
  text: string;
8582
- type: "success" | "error" | "info" | "warning";
8582
+ type: "error" | "success" | "info" | "warning";
8583
8583
  id?: number | undefined;
8584
8584
  }[] | undefined;
8585
8585
  required?: boolean | undefined;
@@ -8812,7 +8812,7 @@ declare function init(config: AuthHeroConfig): {
8812
8812
  hint?: string | undefined;
8813
8813
  messages?: {
8814
8814
  text: string;
8815
- type: "success" | "error" | "info" | "warning";
8815
+ type: "error" | "success" | "info" | "warning";
8816
8816
  id?: number | undefined;
8817
8817
  }[] | undefined;
8818
8818
  required?: boolean | undefined;
@@ -8830,7 +8830,7 @@ declare function init(config: AuthHeroConfig): {
8830
8830
  hint?: string | undefined;
8831
8831
  messages?: {
8832
8832
  text: string;
8833
- type: "success" | "error" | "info" | "warning";
8833
+ type: "error" | "success" | "info" | "warning";
8834
8834
  id?: number | undefined;
8835
8835
  }[] | undefined;
8836
8836
  required?: boolean | undefined;
@@ -8854,7 +8854,7 @@ declare function init(config: AuthHeroConfig): {
8854
8854
  hint?: string | undefined;
8855
8855
  messages?: {
8856
8856
  text: string;
8857
- type: "success" | "error" | "info" | "warning";
8857
+ type: "error" | "success" | "info" | "warning";
8858
8858
  id?: number | undefined;
8859
8859
  }[] | undefined;
8860
8860
  required?: boolean | undefined;
@@ -8878,7 +8878,7 @@ declare function init(config: AuthHeroConfig): {
8878
8878
  hint?: string | undefined;
8879
8879
  messages?: {
8880
8880
  text: string;
8881
- type: "success" | "error" | "info" | "warning";
8881
+ type: "error" | "success" | "info" | "warning";
8882
8882
  id?: number | undefined;
8883
8883
  }[] | undefined;
8884
8884
  required?: boolean | undefined;
@@ -8902,7 +8902,7 @@ declare function init(config: AuthHeroConfig): {
8902
8902
  hint?: string | undefined;
8903
8903
  messages?: {
8904
8904
  text: string;
8905
- type: "success" | "error" | "info" | "warning";
8905
+ type: "error" | "success" | "info" | "warning";
8906
8906
  id?: number | undefined;
8907
8907
  }[] | undefined;
8908
8908
  required?: boolean | undefined;
@@ -8927,7 +8927,7 @@ declare function init(config: AuthHeroConfig): {
8927
8927
  hint?: string | undefined;
8928
8928
  messages?: {
8929
8929
  text: string;
8930
- type: "success" | "error" | "info" | "warning";
8930
+ type: "error" | "success" | "info" | "warning";
8931
8931
  id?: number | undefined;
8932
8932
  }[] | undefined;
8933
8933
  required?: boolean | undefined;
@@ -8942,7 +8942,7 @@ declare function init(config: AuthHeroConfig): {
8942
8942
  hint?: string | undefined;
8943
8943
  messages?: {
8944
8944
  text: string;
8945
- type: "success" | "error" | "info" | "warning";
8945
+ type: "error" | "success" | "info" | "warning";
8946
8946
  id?: number | undefined;
8947
8947
  }[] | undefined;
8948
8948
  required?: boolean | undefined;
@@ -8963,7 +8963,7 @@ declare function init(config: AuthHeroConfig): {
8963
8963
  hint?: string | undefined;
8964
8964
  messages?: {
8965
8965
  text: string;
8966
- type: "success" | "error" | "info" | "warning";
8966
+ type: "error" | "success" | "info" | "warning";
8967
8967
  id?: number | undefined;
8968
8968
  }[] | undefined;
8969
8969
  required?: boolean | undefined;
@@ -8988,7 +8988,7 @@ declare function init(config: AuthHeroConfig): {
8988
8988
  hint?: string | undefined;
8989
8989
  messages?: {
8990
8990
  text: string;
8991
- type: "success" | "error" | "info" | "warning";
8991
+ type: "error" | "success" | "info" | "warning";
8992
8992
  id?: number | undefined;
8993
8993
  }[] | undefined;
8994
8994
  required?: boolean | undefined;
@@ -9007,7 +9007,7 @@ declare function init(config: AuthHeroConfig): {
9007
9007
  hint?: string | undefined;
9008
9008
  messages?: {
9009
9009
  text: string;
9010
- type: "success" | "error" | "info" | "warning";
9010
+ type: "error" | "success" | "info" | "warning";
9011
9011
  id?: number | undefined;
9012
9012
  }[] | undefined;
9013
9013
  required?: boolean | undefined;
@@ -9027,7 +9027,7 @@ declare function init(config: AuthHeroConfig): {
9027
9027
  hint?: string | undefined;
9028
9028
  messages?: {
9029
9029
  text: string;
9030
- type: "success" | "error" | "info" | "warning";
9030
+ type: "error" | "success" | "info" | "warning";
9031
9031
  id?: number | undefined;
9032
9032
  }[] | undefined;
9033
9033
  required?: boolean | undefined;
@@ -9046,7 +9046,7 @@ declare function init(config: AuthHeroConfig): {
9046
9046
  hint?: string | undefined;
9047
9047
  messages?: {
9048
9048
  text: string;
9049
- type: "success" | "error" | "info" | "warning";
9049
+ type: "error" | "success" | "info" | "warning";
9050
9050
  id?: number | undefined;
9051
9051
  }[] | undefined;
9052
9052
  required?: boolean | undefined;
@@ -9068,7 +9068,7 @@ declare function init(config: AuthHeroConfig): {
9068
9068
  hint?: string | undefined;
9069
9069
  messages?: {
9070
9070
  text: string;
9071
- type: "success" | "error" | "info" | "warning";
9071
+ type: "error" | "success" | "info" | "warning";
9072
9072
  id?: number | undefined;
9073
9073
  }[] | undefined;
9074
9074
  required?: boolean | undefined;
@@ -9090,7 +9090,7 @@ declare function init(config: AuthHeroConfig): {
9090
9090
  hint?: string | undefined;
9091
9091
  messages?: {
9092
9092
  text: string;
9093
- type: "success" | "error" | "info" | "warning";
9093
+ type: "error" | "success" | "info" | "warning";
9094
9094
  id?: number | undefined;
9095
9095
  }[] | undefined;
9096
9096
  required?: boolean | undefined;
@@ -9109,7 +9109,7 @@ declare function init(config: AuthHeroConfig): {
9109
9109
  hint?: string | undefined;
9110
9110
  messages?: {
9111
9111
  text: string;
9112
- type: "success" | "error" | "info" | "warning";
9112
+ type: "error" | "success" | "info" | "warning";
9113
9113
  id?: number | undefined;
9114
9114
  }[] | undefined;
9115
9115
  required?: boolean | undefined;
@@ -9134,7 +9134,7 @@ declare function init(config: AuthHeroConfig): {
9134
9134
  hint?: string | undefined;
9135
9135
  messages?: {
9136
9136
  text: string;
9137
- type: "success" | "error" | "info" | "warning";
9137
+ type: "error" | "success" | "info" | "warning";
9138
9138
  id?: number | undefined;
9139
9139
  }[] | undefined;
9140
9140
  required?: boolean | undefined;
@@ -9155,7 +9155,7 @@ declare function init(config: AuthHeroConfig): {
9155
9155
  hint?: string | undefined;
9156
9156
  messages?: {
9157
9157
  text: string;
9158
- type: "success" | "error" | "info" | "warning";
9158
+ type: "error" | "success" | "info" | "warning";
9159
9159
  id?: number | undefined;
9160
9160
  }[] | undefined;
9161
9161
  required?: boolean | undefined;
@@ -9176,7 +9176,7 @@ declare function init(config: AuthHeroConfig): {
9176
9176
  hint?: string | undefined;
9177
9177
  messages?: {
9178
9178
  text: string;
9179
- type: "success" | "error" | "info" | "warning";
9179
+ type: "error" | "success" | "info" | "warning";
9180
9180
  id?: number | undefined;
9181
9181
  }[] | undefined;
9182
9182
  required?: boolean | undefined;
@@ -9407,7 +9407,7 @@ declare function init(config: AuthHeroConfig): {
9407
9407
  hint?: string | undefined;
9408
9408
  messages?: {
9409
9409
  text: string;
9410
- type: "success" | "error" | "info" | "warning";
9410
+ type: "error" | "success" | "info" | "warning";
9411
9411
  id?: number | undefined;
9412
9412
  }[] | undefined;
9413
9413
  required?: boolean | undefined;
@@ -9425,7 +9425,7 @@ declare function init(config: AuthHeroConfig): {
9425
9425
  hint?: string | undefined;
9426
9426
  messages?: {
9427
9427
  text: string;
9428
- type: "success" | "error" | "info" | "warning";
9428
+ type: "error" | "success" | "info" | "warning";
9429
9429
  id?: number | undefined;
9430
9430
  }[] | undefined;
9431
9431
  required?: boolean | undefined;
@@ -9449,7 +9449,7 @@ declare function init(config: AuthHeroConfig): {
9449
9449
  hint?: string | undefined;
9450
9450
  messages?: {
9451
9451
  text: string;
9452
- type: "success" | "error" | "info" | "warning";
9452
+ type: "error" | "success" | "info" | "warning";
9453
9453
  id?: number | undefined;
9454
9454
  }[] | undefined;
9455
9455
  required?: boolean | undefined;
@@ -9473,7 +9473,7 @@ declare function init(config: AuthHeroConfig): {
9473
9473
  hint?: string | undefined;
9474
9474
  messages?: {
9475
9475
  text: string;
9476
- type: "success" | "error" | "info" | "warning";
9476
+ type: "error" | "success" | "info" | "warning";
9477
9477
  id?: number | undefined;
9478
9478
  }[] | undefined;
9479
9479
  required?: boolean | undefined;
@@ -9497,7 +9497,7 @@ declare function init(config: AuthHeroConfig): {
9497
9497
  hint?: string | undefined;
9498
9498
  messages?: {
9499
9499
  text: string;
9500
- type: "success" | "error" | "info" | "warning";
9500
+ type: "error" | "success" | "info" | "warning";
9501
9501
  id?: number | undefined;
9502
9502
  }[] | undefined;
9503
9503
  required?: boolean | undefined;
@@ -9526,7 +9526,7 @@ declare function init(config: AuthHeroConfig): {
9526
9526
  hint?: string | undefined;
9527
9527
  messages?: {
9528
9528
  text: string;
9529
- type: "success" | "error" | "info" | "warning";
9529
+ type: "error" | "success" | "info" | "warning";
9530
9530
  id?: number | undefined;
9531
9531
  }[] | undefined;
9532
9532
  required?: boolean | undefined;
@@ -9541,7 +9541,7 @@ declare function init(config: AuthHeroConfig): {
9541
9541
  hint?: string | undefined;
9542
9542
  messages?: {
9543
9543
  text: string;
9544
- type: "success" | "error" | "info" | "warning";
9544
+ type: "error" | "success" | "info" | "warning";
9545
9545
  id?: number | undefined;
9546
9546
  }[] | undefined;
9547
9547
  required?: boolean | undefined;
@@ -9562,7 +9562,7 @@ declare function init(config: AuthHeroConfig): {
9562
9562
  hint?: string | undefined;
9563
9563
  messages?: {
9564
9564
  text: string;
9565
- type: "success" | "error" | "info" | "warning";
9565
+ type: "error" | "success" | "info" | "warning";
9566
9566
  id?: number | undefined;
9567
9567
  }[] | undefined;
9568
9568
  required?: boolean | undefined;
@@ -9587,7 +9587,7 @@ declare function init(config: AuthHeroConfig): {
9587
9587
  hint?: string | undefined;
9588
9588
  messages?: {
9589
9589
  text: string;
9590
- type: "success" | "error" | "info" | "warning";
9590
+ type: "error" | "success" | "info" | "warning";
9591
9591
  id?: number | undefined;
9592
9592
  }[] | undefined;
9593
9593
  required?: boolean | undefined;
@@ -9606,7 +9606,7 @@ declare function init(config: AuthHeroConfig): {
9606
9606
  hint?: string | undefined;
9607
9607
  messages?: {
9608
9608
  text: string;
9609
- type: "success" | "error" | "info" | "warning";
9609
+ type: "error" | "success" | "info" | "warning";
9610
9610
  id?: number | undefined;
9611
9611
  }[] | undefined;
9612
9612
  required?: boolean | undefined;
@@ -9626,7 +9626,7 @@ declare function init(config: AuthHeroConfig): {
9626
9626
  hint?: string | undefined;
9627
9627
  messages?: {
9628
9628
  text: string;
9629
- type: "success" | "error" | "info" | "warning";
9629
+ type: "error" | "success" | "info" | "warning";
9630
9630
  id?: number | undefined;
9631
9631
  }[] | undefined;
9632
9632
  required?: boolean | undefined;
@@ -9645,7 +9645,7 @@ declare function init(config: AuthHeroConfig): {
9645
9645
  hint?: string | undefined;
9646
9646
  messages?: {
9647
9647
  text: string;
9648
- type: "success" | "error" | "info" | "warning";
9648
+ type: "error" | "success" | "info" | "warning";
9649
9649
  id?: number | undefined;
9650
9650
  }[] | undefined;
9651
9651
  required?: boolean | undefined;
@@ -9667,7 +9667,7 @@ declare function init(config: AuthHeroConfig): {
9667
9667
  hint?: string | undefined;
9668
9668
  messages?: {
9669
9669
  text: string;
9670
- type: "success" | "error" | "info" | "warning";
9670
+ type: "error" | "success" | "info" | "warning";
9671
9671
  id?: number | undefined;
9672
9672
  }[] | undefined;
9673
9673
  required?: boolean | undefined;
@@ -9689,7 +9689,7 @@ declare function init(config: AuthHeroConfig): {
9689
9689
  hint?: string | undefined;
9690
9690
  messages?: {
9691
9691
  text: string;
9692
- type: "success" | "error" | "info" | "warning";
9692
+ type: "error" | "success" | "info" | "warning";
9693
9693
  id?: number | undefined;
9694
9694
  }[] | undefined;
9695
9695
  required?: boolean | undefined;
@@ -9708,7 +9708,7 @@ declare function init(config: AuthHeroConfig): {
9708
9708
  hint?: string | undefined;
9709
9709
  messages?: {
9710
9710
  text: string;
9711
- type: "success" | "error" | "info" | "warning";
9711
+ type: "error" | "success" | "info" | "warning";
9712
9712
  id?: number | undefined;
9713
9713
  }[] | undefined;
9714
9714
  required?: boolean | undefined;
@@ -9733,7 +9733,7 @@ declare function init(config: AuthHeroConfig): {
9733
9733
  hint?: string | undefined;
9734
9734
  messages?: {
9735
9735
  text: string;
9736
- type: "success" | "error" | "info" | "warning";
9736
+ type: "error" | "success" | "info" | "warning";
9737
9737
  id?: number | undefined;
9738
9738
  }[] | undefined;
9739
9739
  required?: boolean | undefined;
@@ -9754,7 +9754,7 @@ declare function init(config: AuthHeroConfig): {
9754
9754
  hint?: string | undefined;
9755
9755
  messages?: {
9756
9756
  text: string;
9757
- type: "success" | "error" | "info" | "warning";
9757
+ type: "error" | "success" | "info" | "warning";
9758
9758
  id?: number | undefined;
9759
9759
  }[] | undefined;
9760
9760
  required?: boolean | undefined;
@@ -9775,7 +9775,7 @@ declare function init(config: AuthHeroConfig): {
9775
9775
  hint?: string | undefined;
9776
9776
  messages?: {
9777
9777
  text: string;
9778
- type: "success" | "error" | "info" | "warning";
9778
+ type: "error" | "success" | "info" | "warning";
9779
9779
  id?: number | undefined;
9780
9780
  }[] | undefined;
9781
9781
  required?: boolean | undefined;
@@ -10005,7 +10005,7 @@ declare function init(config: AuthHeroConfig): {
10005
10005
  };
10006
10006
  };
10007
10007
  output: {
10008
- prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10008
+ 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";
10009
10009
  language: string;
10010
10010
  }[];
10011
10011
  outputFormat: "json";
@@ -10043,7 +10043,7 @@ declare function init(config: AuthHeroConfig): {
10043
10043
  $get: {
10044
10044
  input: {
10045
10045
  param: {
10046
- prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10046
+ 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";
10047
10047
  language: string;
10048
10048
  };
10049
10049
  } & {
@@ -10065,7 +10065,7 @@ declare function init(config: AuthHeroConfig): {
10065
10065
  $put: {
10066
10066
  input: {
10067
10067
  param: {
10068
- prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10068
+ 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";
10069
10069
  language: string;
10070
10070
  };
10071
10071
  } & {
@@ -10089,7 +10089,7 @@ declare function init(config: AuthHeroConfig): {
10089
10089
  $delete: {
10090
10090
  input: {
10091
10091
  param: {
10092
- prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10092
+ 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";
10093
10093
  language: string;
10094
10094
  };
10095
10095
  } & {
@@ -10951,7 +10951,7 @@ declare function init(config: AuthHeroConfig): {
10951
10951
  };
10952
10952
  } | {
10953
10953
  mode: "inline";
10954
- status: "success" | "error";
10954
+ status: "error" | "success";
10955
10955
  connection_id: string;
10956
10956
  connection_name: string;
10957
10957
  strategy: string;
@@ -10987,7 +10987,7 @@ declare function init(config: AuthHeroConfig): {
10987
10987
  tenant_id: string;
10988
10988
  created_at: string;
10989
10989
  updated_at: string;
10990
- deploymentStatus: "deployed" | "failed" | "not_required";
10990
+ deploymentStatus: "failed" | "deployed" | "not_required";
10991
10991
  secrets?: {
10992
10992
  [x: string]: string;
10993
10993
  } | undefined;
@@ -11077,7 +11077,7 @@ declare function init(config: AuthHeroConfig): {
11077
11077
  tenant_id: string;
11078
11078
  created_at: string;
11079
11079
  updated_at: string;
11080
- deploymentStatus: "deployed" | "failed" | "not_required";
11080
+ deploymentStatus: "failed" | "deployed" | "not_required";
11081
11081
  secrets?: {
11082
11082
  [x: string]: string;
11083
11083
  } | undefined;
@@ -11125,7 +11125,7 @@ declare function init(config: AuthHeroConfig): {
11125
11125
  };
11126
11126
  };
11127
11127
  output: ({
11128
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11128
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11129
11129
  enabled: boolean;
11130
11130
  synchronous: boolean;
11131
11131
  created_at: string;
@@ -11137,7 +11137,7 @@ declare function init(config: AuthHeroConfig): {
11137
11137
  [x: string]: hono_utils_types.JSONValue;
11138
11138
  } | undefined;
11139
11139
  } | {
11140
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11140
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11141
11141
  enabled: boolean;
11142
11142
  synchronous: boolean;
11143
11143
  created_at: string;
@@ -11149,7 +11149,7 @@ declare function init(config: AuthHeroConfig): {
11149
11149
  [x: string]: hono_utils_types.JSONValue;
11150
11150
  } | undefined;
11151
11151
  } | {
11152
- trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
11152
+ trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
11153
11153
  enabled: boolean;
11154
11154
  synchronous: boolean;
11155
11155
  created_at: string;
@@ -11161,7 +11161,7 @@ declare function init(config: AuthHeroConfig): {
11161
11161
  [x: string]: hono_utils_types.JSONValue;
11162
11162
  } | undefined;
11163
11163
  } | {
11164
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
11164
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
11165
11165
  enabled: boolean;
11166
11166
  synchronous: boolean;
11167
11167
  created_at: string;
@@ -11177,7 +11177,7 @@ declare function init(config: AuthHeroConfig): {
11177
11177
  limit: number;
11178
11178
  length: number;
11179
11179
  hooks: ({
11180
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11180
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11181
11181
  enabled: boolean;
11182
11182
  synchronous: boolean;
11183
11183
  created_at: string;
@@ -11189,7 +11189,7 @@ declare function init(config: AuthHeroConfig): {
11189
11189
  [x: string]: hono_utils_types.JSONValue;
11190
11190
  } | undefined;
11191
11191
  } | {
11192
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11192
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11193
11193
  enabled: boolean;
11194
11194
  synchronous: boolean;
11195
11195
  created_at: string;
@@ -11201,7 +11201,7 @@ declare function init(config: AuthHeroConfig): {
11201
11201
  [x: string]: hono_utils_types.JSONValue;
11202
11202
  } | undefined;
11203
11203
  } | {
11204
- trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
11204
+ trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
11205
11205
  enabled: boolean;
11206
11206
  synchronous: boolean;
11207
11207
  created_at: string;
@@ -11213,7 +11213,7 @@ declare function init(config: AuthHeroConfig): {
11213
11213
  [x: string]: hono_utils_types.JSONValue;
11214
11214
  } | undefined;
11215
11215
  } | {
11216
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
11216
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
11217
11217
  enabled: boolean;
11218
11218
  synchronous: boolean;
11219
11219
  created_at: string;
@@ -11240,7 +11240,7 @@ declare function init(config: AuthHeroConfig): {
11240
11240
  };
11241
11241
  } & {
11242
11242
  json: {
11243
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11243
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11244
11244
  url: string;
11245
11245
  enabled?: boolean | undefined;
11246
11246
  synchronous?: boolean | undefined;
@@ -11248,7 +11248,7 @@ declare function init(config: AuthHeroConfig): {
11248
11248
  hook_id?: string | undefined;
11249
11249
  metadata?: Record<string, unknown> | undefined;
11250
11250
  } | {
11251
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11251
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11252
11252
  form_id: string;
11253
11253
  enabled?: boolean | undefined;
11254
11254
  synchronous?: boolean | undefined;
@@ -11256,7 +11256,7 @@ declare function init(config: AuthHeroConfig): {
11256
11256
  hook_id?: string | undefined;
11257
11257
  metadata?: Record<string, unknown> | undefined;
11258
11258
  } | {
11259
- trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
11259
+ trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
11260
11260
  template_id: "ensure-username" | "set-preferred-username" | "account-linking";
11261
11261
  enabled?: boolean | undefined;
11262
11262
  synchronous?: boolean | undefined;
@@ -11264,7 +11264,7 @@ declare function init(config: AuthHeroConfig): {
11264
11264
  hook_id?: string | undefined;
11265
11265
  metadata?: Record<string, unknown> | undefined;
11266
11266
  } | {
11267
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
11267
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
11268
11268
  code_id: string;
11269
11269
  enabled?: boolean | undefined;
11270
11270
  synchronous?: boolean | undefined;
@@ -11274,7 +11274,7 @@ declare function init(config: AuthHeroConfig): {
11274
11274
  };
11275
11275
  };
11276
11276
  output: {
11277
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11277
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11278
11278
  enabled: boolean;
11279
11279
  synchronous: boolean;
11280
11280
  created_at: string;
@@ -11286,7 +11286,7 @@ declare function init(config: AuthHeroConfig): {
11286
11286
  [x: string]: hono_utils_types.JSONValue;
11287
11287
  } | undefined;
11288
11288
  } | {
11289
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11289
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11290
11290
  enabled: boolean;
11291
11291
  synchronous: boolean;
11292
11292
  created_at: string;
@@ -11298,7 +11298,7 @@ declare function init(config: AuthHeroConfig): {
11298
11298
  [x: string]: hono_utils_types.JSONValue;
11299
11299
  } | undefined;
11300
11300
  } | {
11301
- trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
11301
+ trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
11302
11302
  enabled: boolean;
11303
11303
  synchronous: boolean;
11304
11304
  created_at: string;
@@ -11310,7 +11310,7 @@ declare function init(config: AuthHeroConfig): {
11310
11310
  [x: string]: hono_utils_types.JSONValue;
11311
11311
  } | undefined;
11312
11312
  } | {
11313
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
11313
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
11314
11314
  enabled: boolean;
11315
11315
  synchronous: boolean;
11316
11316
  created_at: string;
@@ -11356,7 +11356,7 @@ declare function init(config: AuthHeroConfig): {
11356
11356
  json: unknown;
11357
11357
  };
11358
11358
  output: {
11359
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11359
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11360
11360
  enabled: boolean;
11361
11361
  synchronous: boolean;
11362
11362
  created_at: string;
@@ -11368,7 +11368,7 @@ declare function init(config: AuthHeroConfig): {
11368
11368
  [x: string]: hono_utils_types.JSONValue;
11369
11369
  } | undefined;
11370
11370
  } | {
11371
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11371
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11372
11372
  enabled: boolean;
11373
11373
  synchronous: boolean;
11374
11374
  created_at: string;
@@ -11380,7 +11380,7 @@ declare function init(config: AuthHeroConfig): {
11380
11380
  [x: string]: hono_utils_types.JSONValue;
11381
11381
  } | undefined;
11382
11382
  } | {
11383
- trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
11383
+ trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
11384
11384
  enabled: boolean;
11385
11385
  synchronous: boolean;
11386
11386
  created_at: string;
@@ -11392,7 +11392,7 @@ declare function init(config: AuthHeroConfig): {
11392
11392
  [x: string]: hono_utils_types.JSONValue;
11393
11393
  } | undefined;
11394
11394
  } | {
11395
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
11395
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
11396
11396
  enabled: boolean;
11397
11397
  synchronous: boolean;
11398
11398
  created_at: string;
@@ -11434,7 +11434,7 @@ declare function init(config: AuthHeroConfig): {
11434
11434
  };
11435
11435
  };
11436
11436
  output: {
11437
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11437
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11438
11438
  enabled: boolean;
11439
11439
  synchronous: boolean;
11440
11440
  created_at: string;
@@ -11446,7 +11446,7 @@ declare function init(config: AuthHeroConfig): {
11446
11446
  [x: string]: hono_utils_types.JSONValue;
11447
11447
  } | undefined;
11448
11448
  } | {
11449
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11449
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11450
11450
  enabled: boolean;
11451
11451
  synchronous: boolean;
11452
11452
  created_at: string;
@@ -11458,7 +11458,7 @@ declare function init(config: AuthHeroConfig): {
11458
11458
  [x: string]: hono_utils_types.JSONValue;
11459
11459
  } | undefined;
11460
11460
  } | {
11461
- trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
11461
+ trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
11462
11462
  enabled: boolean;
11463
11463
  synchronous: boolean;
11464
11464
  created_at: string;
@@ -11470,7 +11470,7 @@ declare function init(config: AuthHeroConfig): {
11470
11470
  [x: string]: hono_utils_types.JSONValue;
11471
11471
  } | undefined;
11472
11472
  } | {
11473
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
11473
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
11474
11474
  enabled: boolean;
11475
11475
  synchronous: boolean;
11476
11476
  created_at: string;
@@ -11588,9 +11588,9 @@ declare function init(config: AuthHeroConfig): {
11588
11588
  tenant_id: string;
11589
11589
  event_type: string;
11590
11590
  log_type: string;
11591
- category: "api" | "user_action" | "admin_action" | "system";
11591
+ category: "user_action" | "admin_action" | "system" | "api";
11592
11592
  actor: {
11593
- type: "user" | "system" | "client_credentials" | "admin" | "api_key";
11593
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
11594
11594
  id?: string | undefined;
11595
11595
  email?: string | undefined;
11596
11596
  org_id?: string | undefined;
@@ -11900,7 +11900,7 @@ declare function init(config: AuthHeroConfig): {
11900
11900
  created_at: string;
11901
11901
  updated_at: string;
11902
11902
  name: string;
11903
- provider: "auth0" | "cognito" | "okta" | "oidc";
11903
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11904
11904
  connection: string;
11905
11905
  enabled: boolean;
11906
11906
  credentials: {
@@ -11932,7 +11932,7 @@ declare function init(config: AuthHeroConfig): {
11932
11932
  created_at: string;
11933
11933
  updated_at: string;
11934
11934
  name: string;
11935
- provider: "auth0" | "cognito" | "okta" | "oidc";
11935
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11936
11936
  connection: string;
11937
11937
  enabled: boolean;
11938
11938
  credentials: {
@@ -11958,7 +11958,7 @@ declare function init(config: AuthHeroConfig): {
11958
11958
  } & {
11959
11959
  json: {
11960
11960
  name: string;
11961
- provider: "auth0" | "cognito" | "okta" | "oidc";
11961
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11962
11962
  connection: string;
11963
11963
  credentials: {
11964
11964
  domain: string;
@@ -11975,7 +11975,7 @@ declare function init(config: AuthHeroConfig): {
11975
11975
  created_at: string;
11976
11976
  updated_at: string;
11977
11977
  name: string;
11978
- provider: "auth0" | "cognito" | "okta" | "oidc";
11978
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11979
11979
  connection: string;
11980
11980
  enabled: boolean;
11981
11981
  credentials: {
@@ -12006,7 +12006,7 @@ declare function init(config: AuthHeroConfig): {
12006
12006
  json: {
12007
12007
  id?: string | undefined;
12008
12008
  name?: string | undefined;
12009
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
12009
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
12010
12010
  connection?: string | undefined;
12011
12011
  enabled?: boolean | undefined;
12012
12012
  credentials?: {
@@ -12022,7 +12022,7 @@ declare function init(config: AuthHeroConfig): {
12022
12022
  created_at: string;
12023
12023
  updated_at: string;
12024
12024
  name: string;
12025
- provider: "auth0" | "cognito" | "okta" | "oidc";
12025
+ provider: "auth0" | "oidc" | "okta" | "cognito";
12026
12026
  connection: string;
12027
12027
  enabled: boolean;
12028
12028
  credentials: {
@@ -12070,7 +12070,7 @@ declare function init(config: AuthHeroConfig): {
12070
12070
  [x: string]: hono_utils_types.JSONValue;
12071
12071
  };
12072
12072
  id: string;
12073
- status: "suspended" | "active" | "paused";
12073
+ status: "active" | "suspended" | "paused";
12074
12074
  filters?: {
12075
12075
  type: string;
12076
12076
  name: string;
@@ -12102,7 +12102,7 @@ declare function init(config: AuthHeroConfig): {
12102
12102
  [x: string]: hono_utils_types.JSONValue;
12103
12103
  };
12104
12104
  id: string;
12105
- status: "suspended" | "active" | "paused";
12105
+ status: "active" | "suspended" | "paused";
12106
12106
  filters?: {
12107
12107
  type: string;
12108
12108
  name: string;
@@ -12127,7 +12127,7 @@ declare function init(config: AuthHeroConfig): {
12127
12127
  name: string;
12128
12128
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
12129
12129
  sink: Record<string, unknown>;
12130
- status?: "suspended" | "active" | "paused" | undefined;
12130
+ status?: "active" | "suspended" | "paused" | undefined;
12131
12131
  filters?: {
12132
12132
  type: string;
12133
12133
  name: string;
@@ -12142,7 +12142,7 @@ declare function init(config: AuthHeroConfig): {
12142
12142
  [x: string]: hono_utils_types.JSONValue;
12143
12143
  };
12144
12144
  id: string;
12145
- status: "suspended" | "active" | "paused";
12145
+ status: "active" | "suspended" | "paused";
12146
12146
  filters?: {
12147
12147
  type: string;
12148
12148
  name: string;
@@ -12177,7 +12177,7 @@ declare function init(config: AuthHeroConfig): {
12177
12177
  }[] | undefined;
12178
12178
  isPriority?: boolean | undefined;
12179
12179
  id?: string | undefined;
12180
- status?: "suspended" | "active" | "paused" | undefined;
12180
+ status?: "active" | "suspended" | "paused" | undefined;
12181
12181
  created_at?: string | undefined;
12182
12182
  updated_at?: string | undefined;
12183
12183
  };
@@ -12189,7 +12189,7 @@ declare function init(config: AuthHeroConfig): {
12189
12189
  [x: string]: hono_utils_types.JSONValue;
12190
12190
  };
12191
12191
  id: string;
12192
- status: "suspended" | "active" | "paused";
12192
+ status: "active" | "suspended" | "paused";
12193
12193
  filters?: {
12194
12194
  type: string;
12195
12195
  name: string;
@@ -12240,7 +12240,7 @@ declare function init(config: AuthHeroConfig): {
12240
12240
  };
12241
12241
  };
12242
12242
  output: {
12243
- 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";
12243
+ 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";
12244
12244
  date: string;
12245
12245
  isMobile: boolean;
12246
12246
  log_id: string;
@@ -12279,7 +12279,7 @@ declare function init(config: AuthHeroConfig): {
12279
12279
  limit: number;
12280
12280
  length: number;
12281
12281
  logs: {
12282
- 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";
12282
+ 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";
12283
12283
  date: string;
12284
12284
  isMobile: boolean;
12285
12285
  log_id: string;
@@ -12333,7 +12333,7 @@ declare function init(config: AuthHeroConfig): {
12333
12333
  };
12334
12334
  };
12335
12335
  output: {
12336
- 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";
12336
+ 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";
12337
12337
  date: string;
12338
12338
  isMobile: boolean;
12339
12339
  log_id: string;
@@ -12488,7 +12488,7 @@ declare function init(config: AuthHeroConfig): {
12488
12488
  audience?: string | undefined;
12489
12489
  client_id?: string | undefined;
12490
12490
  allow_any_organization?: string | undefined;
12491
- subject_type?: "client" | "user" | undefined;
12491
+ subject_type?: "user" | "client" | undefined;
12492
12492
  };
12493
12493
  } & {
12494
12494
  header: {
@@ -12503,7 +12503,7 @@ declare function init(config: AuthHeroConfig): {
12503
12503
  organization_usage?: "deny" | "allow" | "require" | undefined;
12504
12504
  allow_any_organization?: boolean | undefined;
12505
12505
  is_system?: boolean | undefined;
12506
- subject_type?: "client" | "user" | undefined;
12506
+ subject_type?: "user" | "client" | undefined;
12507
12507
  authorization_details_types?: string[] | undefined;
12508
12508
  created_at?: string | undefined;
12509
12509
  updated_at?: string | undefined;
@@ -12519,7 +12519,7 @@ declare function init(config: AuthHeroConfig): {
12519
12519
  organization_usage?: "deny" | "allow" | "require" | undefined;
12520
12520
  allow_any_organization?: boolean | undefined;
12521
12521
  is_system?: boolean | undefined;
12522
- subject_type?: "client" | "user" | undefined;
12522
+ subject_type?: "user" | "client" | undefined;
12523
12523
  authorization_details_types?: string[] | undefined;
12524
12524
  created_at?: string | undefined;
12525
12525
  updated_at?: string | undefined;
@@ -12550,7 +12550,7 @@ declare function init(config: AuthHeroConfig): {
12550
12550
  organization_usage?: "deny" | "allow" | "require" | undefined;
12551
12551
  allow_any_organization?: boolean | undefined;
12552
12552
  is_system?: boolean | undefined;
12553
- subject_type?: "client" | "user" | undefined;
12553
+ subject_type?: "user" | "client" | undefined;
12554
12554
  authorization_details_types?: string[] | undefined;
12555
12555
  created_at?: string | undefined;
12556
12556
  updated_at?: string | undefined;
@@ -12595,7 +12595,7 @@ declare function init(config: AuthHeroConfig): {
12595
12595
  organization_usage?: "deny" | "allow" | "require" | undefined;
12596
12596
  allow_any_organization?: boolean | undefined;
12597
12597
  is_system?: boolean | undefined;
12598
- subject_type?: "client" | "user" | undefined;
12598
+ subject_type?: "user" | "client" | undefined;
12599
12599
  authorization_details_types?: string[] | undefined;
12600
12600
  };
12601
12601
  };
@@ -12607,7 +12607,7 @@ declare function init(config: AuthHeroConfig): {
12607
12607
  organization_usage?: "deny" | "allow" | "require" | undefined;
12608
12608
  allow_any_organization?: boolean | undefined;
12609
12609
  is_system?: boolean | undefined;
12610
- subject_type?: "client" | "user" | undefined;
12610
+ subject_type?: "user" | "client" | undefined;
12611
12611
  authorization_details_types?: string[] | undefined;
12612
12612
  created_at?: string | undefined;
12613
12613
  updated_at?: string | undefined;
@@ -12631,7 +12631,7 @@ declare function init(config: AuthHeroConfig): {
12631
12631
  organization_usage?: "deny" | "allow" | "require" | undefined;
12632
12632
  allow_any_organization?: boolean | undefined;
12633
12633
  is_system?: boolean | undefined;
12634
- subject_type?: "client" | "user" | undefined;
12634
+ subject_type?: "user" | "client" | undefined;
12635
12635
  authorization_details_types?: string[] | undefined;
12636
12636
  };
12637
12637
  };
@@ -12643,7 +12643,7 @@ declare function init(config: AuthHeroConfig): {
12643
12643
  organization_usage?: "deny" | "allow" | "require" | undefined;
12644
12644
  allow_any_organization?: boolean | undefined;
12645
12645
  is_system?: boolean | undefined;
12646
- subject_type?: "client" | "user" | undefined;
12646
+ subject_type?: "user" | "client" | undefined;
12647
12647
  authorization_details_types?: string[] | undefined;
12648
12648
  created_at?: string | undefined;
12649
12649
  updated_at?: string | undefined;
@@ -12721,7 +12721,7 @@ declare function init(config: AuthHeroConfig): {
12721
12721
  addons?: {
12722
12722
  [x: string]: any;
12723
12723
  } | undefined;
12724
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12724
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12725
12725
  client_metadata?: {
12726
12726
  [x: string]: string;
12727
12727
  } | undefined;
@@ -12817,7 +12817,7 @@ declare function init(config: AuthHeroConfig): {
12817
12817
  addons?: {
12818
12818
  [x: string]: any;
12819
12819
  } | undefined;
12820
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12820
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12821
12821
  client_metadata?: {
12822
12822
  [x: string]: string;
12823
12823
  } | undefined;
@@ -12928,7 +12928,7 @@ declare function init(config: AuthHeroConfig): {
12928
12928
  addons?: {
12929
12929
  [x: string]: any;
12930
12930
  } | undefined;
12931
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12931
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12932
12932
  client_metadata?: {
12933
12933
  [x: string]: string;
12934
12934
  } | undefined;
@@ -13038,7 +13038,7 @@ declare function init(config: AuthHeroConfig): {
13038
13038
  custom_login_page_preview?: string | undefined;
13039
13039
  form_template?: string | undefined;
13040
13040
  addons?: Record<string, any> | undefined;
13041
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13041
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13042
13042
  client_metadata?: Record<string, string> | undefined;
13043
13043
  hide_sign_up_disabled_error?: boolean | undefined;
13044
13044
  mobile?: Record<string, any> | undefined;
@@ -13118,7 +13118,7 @@ declare function init(config: AuthHeroConfig): {
13118
13118
  addons?: {
13119
13119
  [x: string]: any;
13120
13120
  } | undefined;
13121
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13121
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13122
13122
  client_metadata?: {
13123
13123
  [x: string]: string;
13124
13124
  } | undefined;
@@ -13207,7 +13207,7 @@ declare function init(config: AuthHeroConfig): {
13207
13207
  custom_login_page_preview?: string | undefined;
13208
13208
  form_template?: string | undefined;
13209
13209
  addons?: Record<string, any> | undefined;
13210
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13210
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13211
13211
  client_metadata?: Record<string, string> | undefined;
13212
13212
  hide_sign_up_disabled_error?: boolean | undefined;
13213
13213
  mobile?: Record<string, any> | undefined;
@@ -13287,7 +13287,7 @@ declare function init(config: AuthHeroConfig): {
13287
13287
  addons?: {
13288
13288
  [x: string]: any;
13289
13289
  } | undefined;
13290
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13290
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13291
13291
  client_metadata?: {
13292
13292
  [x: string]: string;
13293
13293
  } | undefined;
@@ -14551,7 +14551,7 @@ declare function init(config: AuthHeroConfig): {
14551
14551
  };
14552
14552
  };
14553
14553
  output: {
14554
- 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";
14554
+ 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";
14555
14555
  date: string;
14556
14556
  isMobile: boolean;
14557
14557
  log_id: string;
@@ -14590,7 +14590,7 @@ declare function init(config: AuthHeroConfig): {
14590
14590
  limit: number;
14591
14591
  length: number;
14592
14592
  logs: {
14593
- 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";
14593
+ 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";
14594
14594
  date: string;
14595
14595
  isMobile: boolean;
14596
14596
  log_id: string;
@@ -14907,7 +14907,7 @@ declare function init(config: AuthHeroConfig): {
14907
14907
  };
14908
14908
  } & {
14909
14909
  json: {
14910
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14910
+ 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";
14911
14911
  body: string;
14912
14912
  from: string;
14913
14913
  subject: string;
@@ -14928,7 +14928,7 @@ declare function init(config: AuthHeroConfig): {
14928
14928
  };
14929
14929
  } & {
14930
14930
  json: {
14931
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14931
+ 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";
14932
14932
  body: string;
14933
14933
  from: string;
14934
14934
  subject: string;
@@ -14940,7 +14940,7 @@ declare function init(config: AuthHeroConfig): {
14940
14940
  };
14941
14941
  };
14942
14942
  output: {
14943
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14943
+ 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";
14944
14944
  body: string;
14945
14945
  from: string;
14946
14946
  subject: string;
@@ -14963,7 +14963,7 @@ declare function init(config: AuthHeroConfig): {
14963
14963
  };
14964
14964
  };
14965
14965
  output: {
14966
- name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14966
+ 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";
14967
14967
  body: string;
14968
14968
  subject: string;
14969
14969
  }[];
@@ -14976,7 +14976,7 @@ declare function init(config: AuthHeroConfig): {
14976
14976
  $get: {
14977
14977
  input: {
14978
14978
  param: {
14979
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14979
+ 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";
14980
14980
  };
14981
14981
  } & {
14982
14982
  header: {
@@ -14989,7 +14989,7 @@ declare function init(config: AuthHeroConfig): {
14989
14989
  } | {
14990
14990
  input: {
14991
14991
  param: {
14992
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14992
+ 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";
14993
14993
  };
14994
14994
  } & {
14995
14995
  header: {
@@ -14997,7 +14997,7 @@ declare function init(config: AuthHeroConfig): {
14997
14997
  };
14998
14998
  };
14999
14999
  output: {
15000
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15000
+ 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";
15001
15001
  body: string;
15002
15002
  from: string;
15003
15003
  subject: string;
@@ -15016,7 +15016,7 @@ declare function init(config: AuthHeroConfig): {
15016
15016
  $put: {
15017
15017
  input: {
15018
15018
  param: {
15019
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15019
+ 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";
15020
15020
  };
15021
15021
  } & {
15022
15022
  header: {
@@ -15024,7 +15024,7 @@ declare function init(config: AuthHeroConfig): {
15024
15024
  };
15025
15025
  } & {
15026
15026
  json: {
15027
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15027
+ 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";
15028
15028
  body: string;
15029
15029
  subject: string;
15030
15030
  syntax?: "liquid" | undefined;
@@ -15036,7 +15036,7 @@ declare function init(config: AuthHeroConfig): {
15036
15036
  };
15037
15037
  };
15038
15038
  output: {
15039
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15039
+ 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";
15040
15040
  body: string;
15041
15041
  from: string;
15042
15042
  subject: string;
@@ -15055,7 +15055,7 @@ declare function init(config: AuthHeroConfig): {
15055
15055
  $patch: {
15056
15056
  input: {
15057
15057
  param: {
15058
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15058
+ 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";
15059
15059
  };
15060
15060
  } & {
15061
15061
  header: {
@@ -15063,7 +15063,7 @@ declare function init(config: AuthHeroConfig): {
15063
15063
  };
15064
15064
  } & {
15065
15065
  json: {
15066
- template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
15066
+ 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;
15067
15067
  body?: string | undefined;
15068
15068
  from?: string | undefined;
15069
15069
  subject?: string | undefined;
@@ -15080,7 +15080,7 @@ declare function init(config: AuthHeroConfig): {
15080
15080
  } | {
15081
15081
  input: {
15082
15082
  param: {
15083
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15083
+ 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";
15084
15084
  };
15085
15085
  } & {
15086
15086
  header: {
@@ -15088,7 +15088,7 @@ declare function init(config: AuthHeroConfig): {
15088
15088
  };
15089
15089
  } & {
15090
15090
  json: {
15091
- template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
15091
+ 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;
15092
15092
  body?: string | undefined;
15093
15093
  from?: string | undefined;
15094
15094
  subject?: string | undefined;
@@ -15100,7 +15100,7 @@ declare function init(config: AuthHeroConfig): {
15100
15100
  };
15101
15101
  };
15102
15102
  output: {
15103
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15103
+ 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";
15104
15104
  body: string;
15105
15105
  from: string;
15106
15106
  subject: string;
@@ -15119,7 +15119,7 @@ declare function init(config: AuthHeroConfig): {
15119
15119
  $delete: {
15120
15120
  input: {
15121
15121
  param: {
15122
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15122
+ 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";
15123
15123
  };
15124
15124
  } & {
15125
15125
  header: {
@@ -15132,7 +15132,7 @@ declare function init(config: AuthHeroConfig): {
15132
15132
  } | {
15133
15133
  input: {
15134
15134
  param: {
15135
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15135
+ 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";
15136
15136
  };
15137
15137
  } & {
15138
15138
  header: {
@@ -15149,7 +15149,7 @@ declare function init(config: AuthHeroConfig): {
15149
15149
  $post: {
15150
15150
  input: {
15151
15151
  param: {
15152
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15152
+ 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";
15153
15153
  };
15154
15154
  } & {
15155
15155
  header: {
@@ -16101,7 +16101,7 @@ declare function init(config: AuthHeroConfig): {
16101
16101
  } & {
16102
16102
  json: {
16103
16103
  body?: string | undefined;
16104
- screen?: "password" | "login" | "identifier" | "signup" | undefined;
16104
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
16105
16105
  branding?: {
16106
16106
  colors?: {
16107
16107
  primary: string;
@@ -16270,7 +16270,7 @@ declare function init(config: AuthHeroConfig): {
16270
16270
  json: {
16271
16271
  bindings: {
16272
16272
  ref: {
16273
- type?: "action_name" | "action_id" | undefined;
16273
+ type?: "action_id" | "action_name" | undefined;
16274
16274
  value?: string | undefined;
16275
16275
  id?: string | undefined;
16276
16276
  name?: string | undefined;
@@ -16345,7 +16345,7 @@ declare function init(config: AuthHeroConfig): {
16345
16345
  output: {
16346
16346
  id: string;
16347
16347
  trigger_id: string;
16348
- status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
16348
+ status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
16349
16349
  results: {
16350
16350
  action_name: string;
16351
16351
  error: {
@@ -16392,7 +16392,7 @@ declare function init(config: AuthHeroConfig): {
16392
16392
  logs: {
16393
16393
  action_name: string;
16394
16394
  lines: {
16395
- level: "error" | "log" | "info" | "warn" | "debug";
16395
+ level: "log" | "error" | "info" | "warn" | "debug";
16396
16396
  message: string;
16397
16397
  }[];
16398
16398
  }[];
@@ -17059,7 +17059,7 @@ declare function init(config: AuthHeroConfig): {
17059
17059
  args: hono_utils_types.JSONValue[];
17060
17060
  }[];
17061
17061
  logs: {
17062
- level: "error" | "log" | "info" | "warn" | "debug";
17062
+ level: "log" | "error" | "info" | "warn" | "debug";
17063
17063
  message: string;
17064
17064
  }[];
17065
17065
  error?: string | undefined;
@@ -17370,7 +17370,7 @@ declare function init(config: AuthHeroConfig): {
17370
17370
  scope?: string | undefined;
17371
17371
  grant_types?: string[] | undefined;
17372
17372
  response_types?: string[] | undefined;
17373
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
17373
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
17374
17374
  jwks_uri?: string | undefined;
17375
17375
  jwks?: Record<string, unknown> | undefined;
17376
17376
  software_id?: string | undefined;
@@ -17459,7 +17459,7 @@ declare function init(config: AuthHeroConfig): {
17459
17459
  scope?: string | undefined;
17460
17460
  grant_types?: string[] | undefined;
17461
17461
  response_types?: string[] | undefined;
17462
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
17462
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
17463
17463
  jwks_uri?: string | undefined;
17464
17464
  jwks?: Record<string, unknown> | undefined;
17465
17465
  software_id?: string | undefined;
@@ -17806,19 +17806,19 @@ declare function init(config: AuthHeroConfig): {
17806
17806
  send: "code" | "link";
17807
17807
  authParams: {
17808
17808
  username?: string | undefined;
17809
- scope?: string | undefined;
17810
- audience?: string | undefined;
17811
- organization?: string | undefined;
17812
17809
  state?: string | undefined;
17810
+ audience?: string | undefined;
17813
17811
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17814
17812
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17815
- prompt?: string | undefined;
17816
- ui_locales?: string | undefined;
17813
+ scope?: string | undefined;
17814
+ organization?: string | undefined;
17815
+ nonce?: string | undefined;
17817
17816
  redirect_uri?: string | undefined;
17818
17817
  act_as?: string | undefined;
17819
- nonce?: string | undefined;
17818
+ prompt?: string | undefined;
17820
17819
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17821
17820
  code_challenge?: string | undefined;
17821
+ ui_locales?: string | undefined;
17822
17822
  max_age?: number | undefined;
17823
17823
  acr_values?: string | undefined;
17824
17824
  claims?: {
@@ -17842,19 +17842,19 @@ declare function init(config: AuthHeroConfig): {
17842
17842
  send: "code" | "link";
17843
17843
  authParams: {
17844
17844
  username?: string | undefined;
17845
- scope?: string | undefined;
17846
- audience?: string | undefined;
17847
- organization?: string | undefined;
17848
17845
  state?: string | undefined;
17846
+ audience?: string | undefined;
17849
17847
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17850
17848
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17851
- prompt?: string | undefined;
17852
- ui_locales?: string | undefined;
17849
+ scope?: string | undefined;
17850
+ organization?: string | undefined;
17851
+ nonce?: string | undefined;
17853
17852
  redirect_uri?: string | undefined;
17854
17853
  act_as?: string | undefined;
17855
- nonce?: string | undefined;
17854
+ prompt?: string | undefined;
17856
17855
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17857
17856
  code_challenge?: string | undefined;
17857
+ ui_locales?: string | undefined;
17858
17858
  max_age?: number | undefined;
17859
17859
  acr_values?: string | undefined;
17860
17860
  claims?: {
@@ -18083,7 +18083,7 @@ declare function init(config: AuthHeroConfig): {
18083
18083
  client_id: string;
18084
18084
  username: string;
18085
18085
  otp: string;
18086
- realm: "email" | "sms";
18086
+ realm: "sms" | "email";
18087
18087
  } | {
18088
18088
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18089
18089
  subject_token: string;
@@ -18130,7 +18130,7 @@ declare function init(config: AuthHeroConfig): {
18130
18130
  client_id: string;
18131
18131
  username: string;
18132
18132
  otp: string;
18133
- realm: "email" | "sms";
18133
+ realm: "sms" | "email";
18134
18134
  } | {
18135
18135
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18136
18136
  subject_token: string;
@@ -18182,7 +18182,7 @@ declare function init(config: AuthHeroConfig): {
18182
18182
  client_id: string;
18183
18183
  username: string;
18184
18184
  otp: string;
18185
- realm: "email" | "sms";
18185
+ realm: "sms" | "email";
18186
18186
  } | {
18187
18187
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18188
18188
  subject_token: string;
@@ -18229,7 +18229,7 @@ declare function init(config: AuthHeroConfig): {
18229
18229
  client_id: string;
18230
18230
  username: string;
18231
18231
  otp: string;
18232
- realm: "email" | "sms";
18232
+ realm: "sms" | "email";
18233
18233
  } | {
18234
18234
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18235
18235
  subject_token: string;
@@ -18289,7 +18289,7 @@ declare function init(config: AuthHeroConfig): {
18289
18289
  client_id: string;
18290
18290
  username: string;
18291
18291
  otp: string;
18292
- realm: "email" | "sms";
18292
+ realm: "sms" | "email";
18293
18293
  } | {
18294
18294
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18295
18295
  subject_token: string;
@@ -18336,7 +18336,7 @@ declare function init(config: AuthHeroConfig): {
18336
18336
  client_id: string;
18337
18337
  username: string;
18338
18338
  otp: string;
18339
- realm: "email" | "sms";
18339
+ realm: "sms" | "email";
18340
18340
  } | {
18341
18341
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18342
18342
  subject_token: string;
@@ -18391,7 +18391,7 @@ declare function init(config: AuthHeroConfig): {
18391
18391
  client_id: string;
18392
18392
  username: string;
18393
18393
  otp: string;
18394
- realm: "email" | "sms";
18394
+ realm: "sms" | "email";
18395
18395
  } | {
18396
18396
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18397
18397
  subject_token: string;
@@ -18438,7 +18438,7 @@ declare function init(config: AuthHeroConfig): {
18438
18438
  client_id: string;
18439
18439
  username: string;
18440
18440
  otp: string;
18441
- realm: "email" | "sms";
18441
+ realm: "sms" | "email";
18442
18442
  } | {
18443
18443
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18444
18444
  subject_token: string;
@@ -18493,7 +18493,7 @@ declare function init(config: AuthHeroConfig): {
18493
18493
  client_id: string;
18494
18494
  username: string;
18495
18495
  otp: string;
18496
- realm: "email" | "sms";
18496
+ realm: "sms" | "email";
18497
18497
  } | {
18498
18498
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18499
18499
  subject_token: string;
@@ -18540,7 +18540,7 @@ declare function init(config: AuthHeroConfig): {
18540
18540
  client_id: string;
18541
18541
  username: string;
18542
18542
  otp: string;
18543
- realm: "email" | "sms";
18543
+ realm: "sms" | "email";
18544
18544
  } | {
18545
18545
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18546
18546
  subject_token: string;
@@ -19760,7 +19760,7 @@ declare function init(config: AuthHeroConfig): {
19760
19760
  $get: {
19761
19761
  input: {
19762
19762
  param: {
19763
- screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19763
+ 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";
19764
19764
  };
19765
19765
  } & {
19766
19766
  query: {
@@ -19776,7 +19776,7 @@ declare function init(config: AuthHeroConfig): {
19776
19776
  } | {
19777
19777
  input: {
19778
19778
  param: {
19779
- screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19779
+ 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";
19780
19780
  };
19781
19781
  } & {
19782
19782
  query: {
@@ -19792,7 +19792,7 @@ declare function init(config: AuthHeroConfig): {
19792
19792
  } | {
19793
19793
  input: {
19794
19794
  param: {
19795
- screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19795
+ 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";
19796
19796
  };
19797
19797
  } & {
19798
19798
  query: {
@@ -19812,7 +19812,7 @@ declare function init(config: AuthHeroConfig): {
19812
19812
  $post: {
19813
19813
  input: {
19814
19814
  param: {
19815
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19815
+ 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";
19816
19816
  };
19817
19817
  } & {
19818
19818
  query: {
@@ -19830,7 +19830,7 @@ declare function init(config: AuthHeroConfig): {
19830
19830
  } | {
19831
19831
  input: {
19832
19832
  param: {
19833
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19833
+ 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";
19834
19834
  };
19835
19835
  } & {
19836
19836
  query: {