authhero 8.22.0 → 8.22.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +142 -142
  3. package/dist/authhero.d.ts +285 -285
  4. package/dist/authhero.mjs +25982 -21381
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +7 -7
  7. package/dist/types/index.d.ts +285 -285
  8. package/dist/types/routes/auth-api/account.d.ts +2 -2
  9. package/dist/types/routes/auth-api/authorize.d.ts +14 -14
  10. package/dist/types/routes/auth-api/index.d.ts +58 -58
  11. package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
  12. package/dist/types/routes/auth-api/passwordless.d.ts +20 -20
  13. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  14. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  15. package/dist/types/routes/auth-api/token.d.ts +10 -10
  16. package/dist/types/routes/auth-api/well-known.d.ts +2 -2
  17. package/dist/types/routes/management-api/action-executions.d.ts +2 -2
  18. package/dist/types/routes/management-api/actions.d.ts +1 -1
  19. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  20. package/dist/types/routes/management-api/branding.d.ts +9 -9
  21. package/dist/types/routes/management-api/clients.d.ts +16 -16
  22. package/dist/types/routes/management-api/connections.d.ts +21 -21
  23. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  24. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  25. package/dist/types/routes/management-api/flows.d.ts +7 -7
  26. package/dist/types/routes/management-api/forms.d.ts +126 -126
  27. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  28. package/dist/types/routes/management-api/hook-code.d.ts +2 -2
  29. package/dist/types/routes/management-api/index.d.ts +242 -242
  30. package/dist/types/routes/management-api/log-streams.d.ts +6 -6
  31. package/dist/types/routes/management-api/logs.d.ts +4 -4
  32. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  33. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  34. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  35. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  36. package/dist/types/routes/management-api/tenants.d.ts +1 -1
  37. package/dist/types/routes/management-api/themes.d.ts +6 -6
  38. package/dist/types/routes/management-api/users.d.ts +2 -2
  39. package/dist/types/routes/universal-login/common.d.ts +14 -14
  40. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  41. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  42. package/dist/types/routes/universal-login/index.d.ts +2 -2
  43. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  44. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  45. package/dist/types/utils/crypto.d.ts +3 -0
  46. package/dist/types/utils/jwks.d.ts +4 -4
  47. package/dist/types/utils/jwt.d.ts +29 -0
  48. package/dist/types/utils/request-origin.d.ts +6 -0
  49. package/dist/types/utils/totp.d.ts +10 -0
  50. package/package.json +6 -7
@@ -3305,8 +3305,8 @@ declare function init(config: AuthHeroConfig): {
3305
3305
  $get: {
3306
3306
  input: {
3307
3307
  query: {
3308
- include_password_hashes?: "false" | "true" | undefined;
3309
- gzip?: "false" | "true" | undefined;
3308
+ include_password_hashes?: "true" | "false" | undefined;
3309
+ gzip?: "true" | "false" | undefined;
3310
3310
  };
3311
3311
  } & {
3312
3312
  header: {
@@ -3319,8 +3319,8 @@ declare function init(config: AuthHeroConfig): {
3319
3319
  } | {
3320
3320
  input: {
3321
3321
  query: {
3322
- include_password_hashes?: "false" | "true" | undefined;
3323
- gzip?: "false" | "true" | undefined;
3322
+ include_password_hashes?: "true" | "false" | undefined;
3323
+ gzip?: "true" | "false" | undefined;
3324
3324
  };
3325
3325
  } & {
3326
3326
  header: {
@@ -3339,7 +3339,7 @@ declare function init(config: AuthHeroConfig): {
3339
3339
  $post: {
3340
3340
  input: {
3341
3341
  query: {
3342
- include_password_hashes?: "false" | "true" | undefined;
3342
+ include_password_hashes?: "true" | "false" | undefined;
3343
3343
  };
3344
3344
  } & {
3345
3345
  header: {
@@ -3393,7 +3393,7 @@ declare function init(config: AuthHeroConfig): {
3393
3393
  };
3394
3394
  } & {
3395
3395
  json: {
3396
- type: "email" | "push" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
3396
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
3397
3397
  phone_number?: string | undefined;
3398
3398
  totp_secret?: string | undefined;
3399
3399
  credential_id?: string | undefined;
@@ -3533,7 +3533,7 @@ declare function init(config: AuthHeroConfig): {
3533
3533
  };
3534
3534
  };
3535
3535
  output: {
3536
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3536
+ name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
3537
3537
  enabled: boolean;
3538
3538
  trial_expired?: boolean | undefined;
3539
3539
  }[];
@@ -3688,7 +3688,7 @@ declare function init(config: AuthHeroConfig): {
3688
3688
  $get: {
3689
3689
  input: {
3690
3690
  param: {
3691
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3691
+ factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
3692
3692
  };
3693
3693
  } & {
3694
3694
  header: {
@@ -3696,7 +3696,7 @@ declare function init(config: AuthHeroConfig): {
3696
3696
  };
3697
3697
  };
3698
3698
  output: {
3699
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3699
+ name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
3700
3700
  enabled: boolean;
3701
3701
  trial_expired?: boolean | undefined;
3702
3702
  };
@@ -3709,7 +3709,7 @@ declare function init(config: AuthHeroConfig): {
3709
3709
  $put: {
3710
3710
  input: {
3711
3711
  param: {
3712
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3712
+ factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
3713
3713
  };
3714
3714
  } & {
3715
3715
  header: {
@@ -3721,7 +3721,7 @@ declare function init(config: AuthHeroConfig): {
3721
3721
  };
3722
3722
  };
3723
3723
  output: {
3724
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3724
+ name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
3725
3725
  enabled: boolean;
3726
3726
  trial_expired?: boolean | undefined;
3727
3727
  };
@@ -4500,9 +4500,9 @@ declare function init(config: AuthHeroConfig): {
4500
4500
  email?: string | undefined;
4501
4501
  };
4502
4502
  id?: string | undefined;
4503
+ connection_id?: string | undefined;
4503
4504
  app_metadata?: Record<string, any> | undefined;
4504
4505
  user_metadata?: Record<string, any> | undefined;
4505
- connection_id?: string | undefined;
4506
4506
  roles?: string[] | undefined;
4507
4507
  ttl_sec?: number | undefined;
4508
4508
  send_invitation_email?: boolean | undefined;
@@ -4688,8 +4688,8 @@ declare function init(config: AuthHeroConfig): {
4688
4688
  };
4689
4689
  } & {
4690
4690
  json: {
4691
- assign_membership_on_login?: boolean | undefined;
4692
4691
  show_as_button?: boolean | undefined;
4692
+ assign_membership_on_login?: boolean | undefined;
4693
4693
  is_signup_enabled?: boolean | undefined;
4694
4694
  };
4695
4695
  };
@@ -5358,7 +5358,7 @@ declare function init(config: AuthHeroConfig): {
5358
5358
  type: "REDIRECT";
5359
5359
  action: "REDIRECT_USER";
5360
5360
  params: {
5361
- target: "custom" | "change-email" | "account";
5361
+ target: "custom" | "account" | "change-email";
5362
5362
  custom_url?: string | undefined;
5363
5363
  };
5364
5364
  alias?: string | undefined;
@@ -5411,7 +5411,7 @@ declare function init(config: AuthHeroConfig): {
5411
5411
  type: "REDIRECT";
5412
5412
  action: "REDIRECT_USER";
5413
5413
  params: {
5414
- target: "custom" | "change-email" | "account";
5414
+ target: "custom" | "account" | "change-email";
5415
5415
  custom_url?: string | undefined;
5416
5416
  };
5417
5417
  alias?: string | undefined;
@@ -5480,7 +5480,7 @@ declare function init(config: AuthHeroConfig): {
5480
5480
  type: "REDIRECT";
5481
5481
  action: "REDIRECT_USER";
5482
5482
  params: {
5483
- target: "custom" | "change-email" | "account";
5483
+ target: "custom" | "account" | "change-email";
5484
5484
  custom_url?: string | undefined;
5485
5485
  };
5486
5486
  alias?: string | undefined;
@@ -5561,7 +5561,7 @@ declare function init(config: AuthHeroConfig): {
5561
5561
  type: "REDIRECT";
5562
5562
  action: "REDIRECT_USER";
5563
5563
  params: {
5564
- target: "custom" | "change-email" | "account";
5564
+ target: "custom" | "account" | "change-email";
5565
5565
  custom_url?: string | undefined;
5566
5566
  };
5567
5567
  alias?: string | undefined;
@@ -5609,7 +5609,7 @@ declare function init(config: AuthHeroConfig): {
5609
5609
  type: "REDIRECT";
5610
5610
  action: "REDIRECT_USER";
5611
5611
  params: {
5612
- target: "custom" | "change-email" | "account";
5612
+ target: "custom" | "account" | "change-email";
5613
5613
  custom_url?: string | undefined;
5614
5614
  };
5615
5615
  alias?: string | undefined;
@@ -5669,7 +5669,7 @@ declare function init(config: AuthHeroConfig): {
5669
5669
  type: "REDIRECT";
5670
5670
  action: "REDIRECT_USER";
5671
5671
  params: {
5672
- target: "custom" | "change-email" | "account";
5672
+ target: "custom" | "account" | "change-email";
5673
5673
  custom_url?: string | undefined;
5674
5674
  };
5675
5675
  alias?: string | undefined;
@@ -5717,7 +5717,7 @@ declare function init(config: AuthHeroConfig): {
5717
5717
  type: "REDIRECT";
5718
5718
  action: "REDIRECT_USER";
5719
5719
  params: {
5720
- target: "custom" | "change-email" | "account";
5720
+ target: "custom" | "account" | "change-email";
5721
5721
  custom_url?: string | undefined;
5722
5722
  };
5723
5723
  alias?: string | undefined;
@@ -5935,7 +5935,7 @@ declare function init(config: AuthHeroConfig): {
5935
5935
  hint?: string | undefined;
5936
5936
  messages?: {
5937
5937
  text: string;
5938
- type: "error" | "success" | "info" | "warning";
5938
+ type: "success" | "error" | "info" | "warning";
5939
5939
  id?: number | undefined;
5940
5940
  }[] | undefined;
5941
5941
  required?: boolean | undefined;
@@ -5953,7 +5953,7 @@ declare function init(config: AuthHeroConfig): {
5953
5953
  hint?: string | undefined;
5954
5954
  messages?: {
5955
5955
  text: string;
5956
- type: "error" | "success" | "info" | "warning";
5956
+ type: "success" | "error" | "info" | "warning";
5957
5957
  id?: number | undefined;
5958
5958
  }[] | undefined;
5959
5959
  required?: boolean | undefined;
@@ -5977,7 +5977,7 @@ declare function init(config: AuthHeroConfig): {
5977
5977
  hint?: string | undefined;
5978
5978
  messages?: {
5979
5979
  text: string;
5980
- type: "error" | "success" | "info" | "warning";
5980
+ type: "success" | "error" | "info" | "warning";
5981
5981
  id?: number | undefined;
5982
5982
  }[] | undefined;
5983
5983
  required?: boolean | undefined;
@@ -6001,7 +6001,7 @@ declare function init(config: AuthHeroConfig): {
6001
6001
  hint?: string | undefined;
6002
6002
  messages?: {
6003
6003
  text: string;
6004
- type: "error" | "success" | "info" | "warning";
6004
+ type: "success" | "error" | "info" | "warning";
6005
6005
  id?: number | undefined;
6006
6006
  }[] | undefined;
6007
6007
  required?: boolean | undefined;
@@ -6025,7 +6025,7 @@ declare function init(config: AuthHeroConfig): {
6025
6025
  hint?: string | undefined;
6026
6026
  messages?: {
6027
6027
  text: string;
6028
- type: "error" | "success" | "info" | "warning";
6028
+ type: "success" | "error" | "info" | "warning";
6029
6029
  id?: number | undefined;
6030
6030
  }[] | undefined;
6031
6031
  required?: boolean | undefined;
@@ -6054,7 +6054,7 @@ declare function init(config: AuthHeroConfig): {
6054
6054
  hint?: string | undefined;
6055
6055
  messages?: {
6056
6056
  text: string;
6057
- type: "error" | "success" | "info" | "warning";
6057
+ type: "success" | "error" | "info" | "warning";
6058
6058
  id?: number | undefined;
6059
6059
  }[] | undefined;
6060
6060
  required?: boolean | undefined;
@@ -6069,7 +6069,7 @@ declare function init(config: AuthHeroConfig): {
6069
6069
  hint?: string | undefined;
6070
6070
  messages?: {
6071
6071
  text: string;
6072
- type: "error" | "success" | "info" | "warning";
6072
+ type: "success" | "error" | "info" | "warning";
6073
6073
  id?: number | undefined;
6074
6074
  }[] | undefined;
6075
6075
  required?: boolean | undefined;
@@ -6090,7 +6090,7 @@ declare function init(config: AuthHeroConfig): {
6090
6090
  hint?: string | undefined;
6091
6091
  messages?: {
6092
6092
  text: string;
6093
- type: "error" | "success" | "info" | "warning";
6093
+ type: "success" | "error" | "info" | "warning";
6094
6094
  id?: number | undefined;
6095
6095
  }[] | undefined;
6096
6096
  required?: boolean | undefined;
@@ -6115,7 +6115,7 @@ declare function init(config: AuthHeroConfig): {
6115
6115
  hint?: string | undefined;
6116
6116
  messages?: {
6117
6117
  text: string;
6118
- type: "error" | "success" | "info" | "warning";
6118
+ type: "success" | "error" | "info" | "warning";
6119
6119
  id?: number | undefined;
6120
6120
  }[] | undefined;
6121
6121
  required?: boolean | undefined;
@@ -6134,7 +6134,7 @@ declare function init(config: AuthHeroConfig): {
6134
6134
  hint?: string | undefined;
6135
6135
  messages?: {
6136
6136
  text: string;
6137
- type: "error" | "success" | "info" | "warning";
6137
+ type: "success" | "error" | "info" | "warning";
6138
6138
  id?: number | undefined;
6139
6139
  }[] | undefined;
6140
6140
  required?: boolean | undefined;
@@ -6154,7 +6154,7 @@ declare function init(config: AuthHeroConfig): {
6154
6154
  hint?: string | undefined;
6155
6155
  messages?: {
6156
6156
  text: string;
6157
- type: "error" | "success" | "info" | "warning";
6157
+ type: "success" | "error" | "info" | "warning";
6158
6158
  id?: number | undefined;
6159
6159
  }[] | undefined;
6160
6160
  required?: boolean | undefined;
@@ -6173,7 +6173,7 @@ declare function init(config: AuthHeroConfig): {
6173
6173
  hint?: string | undefined;
6174
6174
  messages?: {
6175
6175
  text: string;
6176
- type: "error" | "success" | "info" | "warning";
6176
+ type: "success" | "error" | "info" | "warning";
6177
6177
  id?: number | undefined;
6178
6178
  }[] | undefined;
6179
6179
  required?: boolean | undefined;
@@ -6195,7 +6195,7 @@ declare function init(config: AuthHeroConfig): {
6195
6195
  hint?: string | undefined;
6196
6196
  messages?: {
6197
6197
  text: string;
6198
- type: "error" | "success" | "info" | "warning";
6198
+ type: "success" | "error" | "info" | "warning";
6199
6199
  id?: number | undefined;
6200
6200
  }[] | undefined;
6201
6201
  required?: boolean | undefined;
@@ -6217,7 +6217,7 @@ declare function init(config: AuthHeroConfig): {
6217
6217
  hint?: string | undefined;
6218
6218
  messages?: {
6219
6219
  text: string;
6220
- type: "error" | "success" | "info" | "warning";
6220
+ type: "success" | "error" | "info" | "warning";
6221
6221
  id?: number | undefined;
6222
6222
  }[] | undefined;
6223
6223
  required?: boolean | undefined;
@@ -6236,7 +6236,7 @@ declare function init(config: AuthHeroConfig): {
6236
6236
  hint?: string | undefined;
6237
6237
  messages?: {
6238
6238
  text: string;
6239
- type: "error" | "success" | "info" | "warning";
6239
+ type: "success" | "error" | "info" | "warning";
6240
6240
  id?: number | undefined;
6241
6241
  }[] | undefined;
6242
6242
  required?: boolean | undefined;
@@ -6261,7 +6261,7 @@ declare function init(config: AuthHeroConfig): {
6261
6261
  hint?: string | undefined;
6262
6262
  messages?: {
6263
6263
  text: string;
6264
- type: "error" | "success" | "info" | "warning";
6264
+ type: "success" | "error" | "info" | "warning";
6265
6265
  id?: number | undefined;
6266
6266
  }[] | undefined;
6267
6267
  required?: boolean | undefined;
@@ -6282,7 +6282,7 @@ declare function init(config: AuthHeroConfig): {
6282
6282
  hint?: string | undefined;
6283
6283
  messages?: {
6284
6284
  text: string;
6285
- type: "error" | "success" | "info" | "warning";
6285
+ type: "success" | "error" | "info" | "warning";
6286
6286
  id?: number | undefined;
6287
6287
  }[] | undefined;
6288
6288
  required?: boolean | undefined;
@@ -6303,7 +6303,7 @@ declare function init(config: AuthHeroConfig): {
6303
6303
  hint?: string | undefined;
6304
6304
  messages?: {
6305
6305
  text: string;
6306
- type: "error" | "success" | "info" | "warning";
6306
+ type: "success" | "error" | "info" | "warning";
6307
6307
  id?: number | undefined;
6308
6308
  }[] | undefined;
6309
6309
  required?: boolean | undefined;
@@ -6536,7 +6536,7 @@ declare function init(config: AuthHeroConfig): {
6536
6536
  hint?: string | undefined;
6537
6537
  messages?: {
6538
6538
  text: string;
6539
- type: "error" | "success" | "info" | "warning";
6539
+ type: "success" | "error" | "info" | "warning";
6540
6540
  id?: number | undefined;
6541
6541
  }[] | undefined;
6542
6542
  required?: boolean | undefined;
@@ -6554,7 +6554,7 @@ declare function init(config: AuthHeroConfig): {
6554
6554
  hint?: string | undefined;
6555
6555
  messages?: {
6556
6556
  text: string;
6557
- type: "error" | "success" | "info" | "warning";
6557
+ type: "success" | "error" | "info" | "warning";
6558
6558
  id?: number | undefined;
6559
6559
  }[] | undefined;
6560
6560
  required?: boolean | undefined;
@@ -6578,7 +6578,7 @@ declare function init(config: AuthHeroConfig): {
6578
6578
  hint?: string | undefined;
6579
6579
  messages?: {
6580
6580
  text: string;
6581
- type: "error" | "success" | "info" | "warning";
6581
+ type: "success" | "error" | "info" | "warning";
6582
6582
  id?: number | undefined;
6583
6583
  }[] | undefined;
6584
6584
  required?: boolean | undefined;
@@ -6602,7 +6602,7 @@ declare function init(config: AuthHeroConfig): {
6602
6602
  hint?: string | undefined;
6603
6603
  messages?: {
6604
6604
  text: string;
6605
- type: "error" | "success" | "info" | "warning";
6605
+ type: "success" | "error" | "info" | "warning";
6606
6606
  id?: number | undefined;
6607
6607
  }[] | undefined;
6608
6608
  required?: boolean | undefined;
@@ -6626,7 +6626,7 @@ declare function init(config: AuthHeroConfig): {
6626
6626
  hint?: string | undefined;
6627
6627
  messages?: {
6628
6628
  text: string;
6629
- type: "error" | "success" | "info" | "warning";
6629
+ type: "success" | "error" | "info" | "warning";
6630
6630
  id?: number | undefined;
6631
6631
  }[] | undefined;
6632
6632
  required?: boolean | undefined;
@@ -6655,7 +6655,7 @@ declare function init(config: AuthHeroConfig): {
6655
6655
  hint?: string | undefined;
6656
6656
  messages?: {
6657
6657
  text: string;
6658
- type: "error" | "success" | "info" | "warning";
6658
+ type: "success" | "error" | "info" | "warning";
6659
6659
  id?: number | undefined;
6660
6660
  }[] | undefined;
6661
6661
  required?: boolean | undefined;
@@ -6670,7 +6670,7 @@ declare function init(config: AuthHeroConfig): {
6670
6670
  hint?: string | undefined;
6671
6671
  messages?: {
6672
6672
  text: string;
6673
- type: "error" | "success" | "info" | "warning";
6673
+ type: "success" | "error" | "info" | "warning";
6674
6674
  id?: number | undefined;
6675
6675
  }[] | undefined;
6676
6676
  required?: boolean | undefined;
@@ -6691,7 +6691,7 @@ declare function init(config: AuthHeroConfig): {
6691
6691
  hint?: string | undefined;
6692
6692
  messages?: {
6693
6693
  text: string;
6694
- type: "error" | "success" | "info" | "warning";
6694
+ type: "success" | "error" | "info" | "warning";
6695
6695
  id?: number | undefined;
6696
6696
  }[] | undefined;
6697
6697
  required?: boolean | undefined;
@@ -6716,7 +6716,7 @@ declare function init(config: AuthHeroConfig): {
6716
6716
  hint?: string | undefined;
6717
6717
  messages?: {
6718
6718
  text: string;
6719
- type: "error" | "success" | "info" | "warning";
6719
+ type: "success" | "error" | "info" | "warning";
6720
6720
  id?: number | undefined;
6721
6721
  }[] | undefined;
6722
6722
  required?: boolean | undefined;
@@ -6735,7 +6735,7 @@ declare function init(config: AuthHeroConfig): {
6735
6735
  hint?: string | undefined;
6736
6736
  messages?: {
6737
6737
  text: string;
6738
- type: "error" | "success" | "info" | "warning";
6738
+ type: "success" | "error" | "info" | "warning";
6739
6739
  id?: number | undefined;
6740
6740
  }[] | undefined;
6741
6741
  required?: boolean | undefined;
@@ -6755,7 +6755,7 @@ declare function init(config: AuthHeroConfig): {
6755
6755
  hint?: string | undefined;
6756
6756
  messages?: {
6757
6757
  text: string;
6758
- type: "error" | "success" | "info" | "warning";
6758
+ type: "success" | "error" | "info" | "warning";
6759
6759
  id?: number | undefined;
6760
6760
  }[] | undefined;
6761
6761
  required?: boolean | undefined;
@@ -6774,7 +6774,7 @@ declare function init(config: AuthHeroConfig): {
6774
6774
  hint?: string | undefined;
6775
6775
  messages?: {
6776
6776
  text: string;
6777
- type: "error" | "success" | "info" | "warning";
6777
+ type: "success" | "error" | "info" | "warning";
6778
6778
  id?: number | undefined;
6779
6779
  }[] | undefined;
6780
6780
  required?: boolean | undefined;
@@ -6796,7 +6796,7 @@ declare function init(config: AuthHeroConfig): {
6796
6796
  hint?: string | undefined;
6797
6797
  messages?: {
6798
6798
  text: string;
6799
- type: "error" | "success" | "info" | "warning";
6799
+ type: "success" | "error" | "info" | "warning";
6800
6800
  id?: number | undefined;
6801
6801
  }[] | undefined;
6802
6802
  required?: boolean | undefined;
@@ -6818,7 +6818,7 @@ declare function init(config: AuthHeroConfig): {
6818
6818
  hint?: string | undefined;
6819
6819
  messages?: {
6820
6820
  text: string;
6821
- type: "error" | "success" | "info" | "warning";
6821
+ type: "success" | "error" | "info" | "warning";
6822
6822
  id?: number | undefined;
6823
6823
  }[] | undefined;
6824
6824
  required?: boolean | undefined;
@@ -6837,7 +6837,7 @@ declare function init(config: AuthHeroConfig): {
6837
6837
  hint?: string | undefined;
6838
6838
  messages?: {
6839
6839
  text: string;
6840
- type: "error" | "success" | "info" | "warning";
6840
+ type: "success" | "error" | "info" | "warning";
6841
6841
  id?: number | undefined;
6842
6842
  }[] | undefined;
6843
6843
  required?: boolean | undefined;
@@ -6862,7 +6862,7 @@ declare function init(config: AuthHeroConfig): {
6862
6862
  hint?: string | undefined;
6863
6863
  messages?: {
6864
6864
  text: string;
6865
- type: "error" | "success" | "info" | "warning";
6865
+ type: "success" | "error" | "info" | "warning";
6866
6866
  id?: number | undefined;
6867
6867
  }[] | undefined;
6868
6868
  required?: boolean | undefined;
@@ -6883,7 +6883,7 @@ declare function init(config: AuthHeroConfig): {
6883
6883
  hint?: string | undefined;
6884
6884
  messages?: {
6885
6885
  text: string;
6886
- type: "error" | "success" | "info" | "warning";
6886
+ type: "success" | "error" | "info" | "warning";
6887
6887
  id?: number | undefined;
6888
6888
  }[] | undefined;
6889
6889
  required?: boolean | undefined;
@@ -6904,7 +6904,7 @@ declare function init(config: AuthHeroConfig): {
6904
6904
  hint?: string | undefined;
6905
6905
  messages?: {
6906
6906
  text: string;
6907
- type: "error" | "success" | "info" | "warning";
6907
+ type: "success" | "error" | "info" | "warning";
6908
6908
  id?: number | undefined;
6909
6909
  }[] | undefined;
6910
6910
  required?: boolean | undefined;
@@ -7153,7 +7153,7 @@ declare function init(config: AuthHeroConfig): {
7153
7153
  hint?: string | undefined;
7154
7154
  messages?: {
7155
7155
  text: string;
7156
- type: "error" | "success" | "info" | "warning";
7156
+ type: "success" | "error" | "info" | "warning";
7157
7157
  id?: number | undefined;
7158
7158
  }[] | undefined;
7159
7159
  required?: boolean | undefined;
@@ -7171,7 +7171,7 @@ declare function init(config: AuthHeroConfig): {
7171
7171
  hint?: string | undefined;
7172
7172
  messages?: {
7173
7173
  text: string;
7174
- type: "error" | "success" | "info" | "warning";
7174
+ type: "success" | "error" | "info" | "warning";
7175
7175
  id?: number | undefined;
7176
7176
  }[] | undefined;
7177
7177
  required?: boolean | undefined;
@@ -7195,7 +7195,7 @@ declare function init(config: AuthHeroConfig): {
7195
7195
  hint?: string | undefined;
7196
7196
  messages?: {
7197
7197
  text: string;
7198
- type: "error" | "success" | "info" | "warning";
7198
+ type: "success" | "error" | "info" | "warning";
7199
7199
  id?: number | undefined;
7200
7200
  }[] | undefined;
7201
7201
  required?: boolean | undefined;
@@ -7219,7 +7219,7 @@ declare function init(config: AuthHeroConfig): {
7219
7219
  hint?: string | undefined;
7220
7220
  messages?: {
7221
7221
  text: string;
7222
- type: "error" | "success" | "info" | "warning";
7222
+ type: "success" | "error" | "info" | "warning";
7223
7223
  id?: number | undefined;
7224
7224
  }[] | undefined;
7225
7225
  required?: boolean | undefined;
@@ -7243,7 +7243,7 @@ declare function init(config: AuthHeroConfig): {
7243
7243
  hint?: string | undefined;
7244
7244
  messages?: {
7245
7245
  text: string;
7246
- type: "error" | "success" | "info" | "warning";
7246
+ type: "success" | "error" | "info" | "warning";
7247
7247
  id?: number | undefined;
7248
7248
  }[] | undefined;
7249
7249
  required?: boolean | undefined;
@@ -7272,7 +7272,7 @@ declare function init(config: AuthHeroConfig): {
7272
7272
  hint?: string | undefined;
7273
7273
  messages?: {
7274
7274
  text: string;
7275
- type: "error" | "success" | "info" | "warning";
7275
+ type: "success" | "error" | "info" | "warning";
7276
7276
  id?: number | undefined;
7277
7277
  }[] | undefined;
7278
7278
  required?: boolean | undefined;
@@ -7287,7 +7287,7 @@ declare function init(config: AuthHeroConfig): {
7287
7287
  hint?: string | undefined;
7288
7288
  messages?: {
7289
7289
  text: string;
7290
- type: "error" | "success" | "info" | "warning";
7290
+ type: "success" | "error" | "info" | "warning";
7291
7291
  id?: number | undefined;
7292
7292
  }[] | undefined;
7293
7293
  required?: boolean | undefined;
@@ -7308,7 +7308,7 @@ declare function init(config: AuthHeroConfig): {
7308
7308
  hint?: string | undefined;
7309
7309
  messages?: {
7310
7310
  text: string;
7311
- type: "error" | "success" | "info" | "warning";
7311
+ type: "success" | "error" | "info" | "warning";
7312
7312
  id?: number | undefined;
7313
7313
  }[] | undefined;
7314
7314
  required?: boolean | undefined;
@@ -7333,7 +7333,7 @@ declare function init(config: AuthHeroConfig): {
7333
7333
  hint?: string | undefined;
7334
7334
  messages?: {
7335
7335
  text: string;
7336
- type: "error" | "success" | "info" | "warning";
7336
+ type: "success" | "error" | "info" | "warning";
7337
7337
  id?: number | undefined;
7338
7338
  }[] | undefined;
7339
7339
  required?: boolean | undefined;
@@ -7352,7 +7352,7 @@ declare function init(config: AuthHeroConfig): {
7352
7352
  hint?: string | undefined;
7353
7353
  messages?: {
7354
7354
  text: string;
7355
- type: "error" | "success" | "info" | "warning";
7355
+ type: "success" | "error" | "info" | "warning";
7356
7356
  id?: number | undefined;
7357
7357
  }[] | undefined;
7358
7358
  required?: boolean | undefined;
@@ -7372,7 +7372,7 @@ declare function init(config: AuthHeroConfig): {
7372
7372
  hint?: string | undefined;
7373
7373
  messages?: {
7374
7374
  text: string;
7375
- type: "error" | "success" | "info" | "warning";
7375
+ type: "success" | "error" | "info" | "warning";
7376
7376
  id?: number | undefined;
7377
7377
  }[] | undefined;
7378
7378
  required?: boolean | undefined;
@@ -7391,7 +7391,7 @@ declare function init(config: AuthHeroConfig): {
7391
7391
  hint?: string | undefined;
7392
7392
  messages?: {
7393
7393
  text: string;
7394
- type: "error" | "success" | "info" | "warning";
7394
+ type: "success" | "error" | "info" | "warning";
7395
7395
  id?: number | undefined;
7396
7396
  }[] | undefined;
7397
7397
  required?: boolean | undefined;
@@ -7413,7 +7413,7 @@ declare function init(config: AuthHeroConfig): {
7413
7413
  hint?: string | undefined;
7414
7414
  messages?: {
7415
7415
  text: string;
7416
- type: "error" | "success" | "info" | "warning";
7416
+ type: "success" | "error" | "info" | "warning";
7417
7417
  id?: number | undefined;
7418
7418
  }[] | undefined;
7419
7419
  required?: boolean | undefined;
@@ -7435,7 +7435,7 @@ declare function init(config: AuthHeroConfig): {
7435
7435
  hint?: string | undefined;
7436
7436
  messages?: {
7437
7437
  text: string;
7438
- type: "error" | "success" | "info" | "warning";
7438
+ type: "success" | "error" | "info" | "warning";
7439
7439
  id?: number | undefined;
7440
7440
  }[] | undefined;
7441
7441
  required?: boolean | undefined;
@@ -7454,7 +7454,7 @@ declare function init(config: AuthHeroConfig): {
7454
7454
  hint?: string | undefined;
7455
7455
  messages?: {
7456
7456
  text: string;
7457
- type: "error" | "success" | "info" | "warning";
7457
+ type: "success" | "error" | "info" | "warning";
7458
7458
  id?: number | undefined;
7459
7459
  }[] | undefined;
7460
7460
  required?: boolean | undefined;
@@ -7479,7 +7479,7 @@ declare function init(config: AuthHeroConfig): {
7479
7479
  hint?: string | undefined;
7480
7480
  messages?: {
7481
7481
  text: string;
7482
- type: "error" | "success" | "info" | "warning";
7482
+ type: "success" | "error" | "info" | "warning";
7483
7483
  id?: number | undefined;
7484
7484
  }[] | undefined;
7485
7485
  required?: boolean | undefined;
@@ -7500,7 +7500,7 @@ declare function init(config: AuthHeroConfig): {
7500
7500
  hint?: string | undefined;
7501
7501
  messages?: {
7502
7502
  text: string;
7503
- type: "error" | "success" | "info" | "warning";
7503
+ type: "success" | "error" | "info" | "warning";
7504
7504
  id?: number | undefined;
7505
7505
  }[] | undefined;
7506
7506
  required?: boolean | undefined;
@@ -7521,7 +7521,7 @@ declare function init(config: AuthHeroConfig): {
7521
7521
  hint?: string | undefined;
7522
7522
  messages?: {
7523
7523
  text: string;
7524
- type: "error" | "success" | "info" | "warning";
7524
+ type: "success" | "error" | "info" | "warning";
7525
7525
  id?: number | undefined;
7526
7526
  }[] | undefined;
7527
7527
  required?: boolean | undefined;
@@ -7775,7 +7775,7 @@ declare function init(config: AuthHeroConfig): {
7775
7775
  hint?: string | undefined;
7776
7776
  messages?: {
7777
7777
  text: string;
7778
- type: "error" | "success" | "info" | "warning";
7778
+ type: "success" | "error" | "info" | "warning";
7779
7779
  id?: number | undefined;
7780
7780
  }[] | undefined;
7781
7781
  required?: boolean | undefined;
@@ -7793,7 +7793,7 @@ declare function init(config: AuthHeroConfig): {
7793
7793
  hint?: string | undefined;
7794
7794
  messages?: {
7795
7795
  text: string;
7796
- type: "error" | "success" | "info" | "warning";
7796
+ type: "success" | "error" | "info" | "warning";
7797
7797
  id?: number | undefined;
7798
7798
  }[] | undefined;
7799
7799
  required?: boolean | undefined;
@@ -7817,7 +7817,7 @@ declare function init(config: AuthHeroConfig): {
7817
7817
  hint?: string | undefined;
7818
7818
  messages?: {
7819
7819
  text: string;
7820
- type: "error" | "success" | "info" | "warning";
7820
+ type: "success" | "error" | "info" | "warning";
7821
7821
  id?: number | undefined;
7822
7822
  }[] | undefined;
7823
7823
  required?: boolean | undefined;
@@ -7841,7 +7841,7 @@ declare function init(config: AuthHeroConfig): {
7841
7841
  hint?: string | undefined;
7842
7842
  messages?: {
7843
7843
  text: string;
7844
- type: "error" | "success" | "info" | "warning";
7844
+ type: "success" | "error" | "info" | "warning";
7845
7845
  id?: number | undefined;
7846
7846
  }[] | undefined;
7847
7847
  required?: boolean | undefined;
@@ -7865,7 +7865,7 @@ declare function init(config: AuthHeroConfig): {
7865
7865
  hint?: string | undefined;
7866
7866
  messages?: {
7867
7867
  text: string;
7868
- type: "error" | "success" | "info" | "warning";
7868
+ type: "success" | "error" | "info" | "warning";
7869
7869
  id?: number | undefined;
7870
7870
  }[] | undefined;
7871
7871
  required?: boolean | undefined;
@@ -7890,7 +7890,7 @@ declare function init(config: AuthHeroConfig): {
7890
7890
  hint?: string | undefined;
7891
7891
  messages?: {
7892
7892
  text: string;
7893
- type: "error" | "success" | "info" | "warning";
7893
+ type: "success" | "error" | "info" | "warning";
7894
7894
  id?: number | undefined;
7895
7895
  }[] | undefined;
7896
7896
  required?: boolean | undefined;
@@ -7905,7 +7905,7 @@ declare function init(config: AuthHeroConfig): {
7905
7905
  hint?: string | undefined;
7906
7906
  messages?: {
7907
7907
  text: string;
7908
- type: "error" | "success" | "info" | "warning";
7908
+ type: "success" | "error" | "info" | "warning";
7909
7909
  id?: number | undefined;
7910
7910
  }[] | undefined;
7911
7911
  required?: boolean | undefined;
@@ -7926,7 +7926,7 @@ declare function init(config: AuthHeroConfig): {
7926
7926
  hint?: string | undefined;
7927
7927
  messages?: {
7928
7928
  text: string;
7929
- type: "error" | "success" | "info" | "warning";
7929
+ type: "success" | "error" | "info" | "warning";
7930
7930
  id?: number | undefined;
7931
7931
  }[] | undefined;
7932
7932
  required?: boolean | undefined;
@@ -7951,7 +7951,7 @@ declare function init(config: AuthHeroConfig): {
7951
7951
  hint?: string | undefined;
7952
7952
  messages?: {
7953
7953
  text: string;
7954
- type: "error" | "success" | "info" | "warning";
7954
+ type: "success" | "error" | "info" | "warning";
7955
7955
  id?: number | undefined;
7956
7956
  }[] | undefined;
7957
7957
  required?: boolean | undefined;
@@ -7970,7 +7970,7 @@ declare function init(config: AuthHeroConfig): {
7970
7970
  hint?: string | undefined;
7971
7971
  messages?: {
7972
7972
  text: string;
7973
- type: "error" | "success" | "info" | "warning";
7973
+ type: "success" | "error" | "info" | "warning";
7974
7974
  id?: number | undefined;
7975
7975
  }[] | undefined;
7976
7976
  required?: boolean | undefined;
@@ -7990,7 +7990,7 @@ declare function init(config: AuthHeroConfig): {
7990
7990
  hint?: string | undefined;
7991
7991
  messages?: {
7992
7992
  text: string;
7993
- type: "error" | "success" | "info" | "warning";
7993
+ type: "success" | "error" | "info" | "warning";
7994
7994
  id?: number | undefined;
7995
7995
  }[] | undefined;
7996
7996
  required?: boolean | undefined;
@@ -8009,7 +8009,7 @@ declare function init(config: AuthHeroConfig): {
8009
8009
  hint?: string | undefined;
8010
8010
  messages?: {
8011
8011
  text: string;
8012
- type: "error" | "success" | "info" | "warning";
8012
+ type: "success" | "error" | "info" | "warning";
8013
8013
  id?: number | undefined;
8014
8014
  }[] | undefined;
8015
8015
  required?: boolean | undefined;
@@ -8031,7 +8031,7 @@ declare function init(config: AuthHeroConfig): {
8031
8031
  hint?: string | undefined;
8032
8032
  messages?: {
8033
8033
  text: string;
8034
- type: "error" | "success" | "info" | "warning";
8034
+ type: "success" | "error" | "info" | "warning";
8035
8035
  id?: number | undefined;
8036
8036
  }[] | undefined;
8037
8037
  required?: boolean | undefined;
@@ -8053,7 +8053,7 @@ declare function init(config: AuthHeroConfig): {
8053
8053
  hint?: string | undefined;
8054
8054
  messages?: {
8055
8055
  text: string;
8056
- type: "error" | "success" | "info" | "warning";
8056
+ type: "success" | "error" | "info" | "warning";
8057
8057
  id?: number | undefined;
8058
8058
  }[] | undefined;
8059
8059
  required?: boolean | undefined;
@@ -8072,7 +8072,7 @@ declare function init(config: AuthHeroConfig): {
8072
8072
  hint?: string | undefined;
8073
8073
  messages?: {
8074
8074
  text: string;
8075
- type: "error" | "success" | "info" | "warning";
8075
+ type: "success" | "error" | "info" | "warning";
8076
8076
  id?: number | undefined;
8077
8077
  }[] | undefined;
8078
8078
  required?: boolean | undefined;
@@ -8097,7 +8097,7 @@ declare function init(config: AuthHeroConfig): {
8097
8097
  hint?: string | undefined;
8098
8098
  messages?: {
8099
8099
  text: string;
8100
- type: "error" | "success" | "info" | "warning";
8100
+ type: "success" | "error" | "info" | "warning";
8101
8101
  id?: number | undefined;
8102
8102
  }[] | undefined;
8103
8103
  required?: boolean | undefined;
@@ -8118,7 +8118,7 @@ declare function init(config: AuthHeroConfig): {
8118
8118
  hint?: string | undefined;
8119
8119
  messages?: {
8120
8120
  text: string;
8121
- type: "error" | "success" | "info" | "warning";
8121
+ type: "success" | "error" | "info" | "warning";
8122
8122
  id?: number | undefined;
8123
8123
  }[] | undefined;
8124
8124
  required?: boolean | undefined;
@@ -8139,7 +8139,7 @@ declare function init(config: AuthHeroConfig): {
8139
8139
  hint?: string | undefined;
8140
8140
  messages?: {
8141
8141
  text: string;
8142
- type: "error" | "success" | "info" | "warning";
8142
+ type: "success" | "error" | "info" | "warning";
8143
8143
  id?: number | undefined;
8144
8144
  }[] | undefined;
8145
8145
  required?: boolean | undefined;
@@ -8370,7 +8370,7 @@ declare function init(config: AuthHeroConfig): {
8370
8370
  hint?: string | undefined;
8371
8371
  messages?: {
8372
8372
  text: string;
8373
- type: "error" | "success" | "info" | "warning";
8373
+ type: "success" | "error" | "info" | "warning";
8374
8374
  id?: number | undefined;
8375
8375
  }[] | undefined;
8376
8376
  required?: boolean | undefined;
@@ -8388,7 +8388,7 @@ declare function init(config: AuthHeroConfig): {
8388
8388
  hint?: string | undefined;
8389
8389
  messages?: {
8390
8390
  text: string;
8391
- type: "error" | "success" | "info" | "warning";
8391
+ type: "success" | "error" | "info" | "warning";
8392
8392
  id?: number | undefined;
8393
8393
  }[] | undefined;
8394
8394
  required?: boolean | undefined;
@@ -8412,7 +8412,7 @@ declare function init(config: AuthHeroConfig): {
8412
8412
  hint?: string | undefined;
8413
8413
  messages?: {
8414
8414
  text: string;
8415
- type: "error" | "success" | "info" | "warning";
8415
+ type: "success" | "error" | "info" | "warning";
8416
8416
  id?: number | undefined;
8417
8417
  }[] | undefined;
8418
8418
  required?: boolean | undefined;
@@ -8436,7 +8436,7 @@ declare function init(config: AuthHeroConfig): {
8436
8436
  hint?: string | undefined;
8437
8437
  messages?: {
8438
8438
  text: string;
8439
- type: "error" | "success" | "info" | "warning";
8439
+ type: "success" | "error" | "info" | "warning";
8440
8440
  id?: number | undefined;
8441
8441
  }[] | undefined;
8442
8442
  required?: boolean | undefined;
@@ -8460,7 +8460,7 @@ declare function init(config: AuthHeroConfig): {
8460
8460
  hint?: string | undefined;
8461
8461
  messages?: {
8462
8462
  text: string;
8463
- type: "error" | "success" | "info" | "warning";
8463
+ type: "success" | "error" | "info" | "warning";
8464
8464
  id?: number | undefined;
8465
8465
  }[] | undefined;
8466
8466
  required?: boolean | undefined;
@@ -8489,7 +8489,7 @@ declare function init(config: AuthHeroConfig): {
8489
8489
  hint?: string | undefined;
8490
8490
  messages?: {
8491
8491
  text: string;
8492
- type: "error" | "success" | "info" | "warning";
8492
+ type: "success" | "error" | "info" | "warning";
8493
8493
  id?: number | undefined;
8494
8494
  }[] | undefined;
8495
8495
  required?: boolean | undefined;
@@ -8504,7 +8504,7 @@ declare function init(config: AuthHeroConfig): {
8504
8504
  hint?: string | undefined;
8505
8505
  messages?: {
8506
8506
  text: string;
8507
- type: "error" | "success" | "info" | "warning";
8507
+ type: "success" | "error" | "info" | "warning";
8508
8508
  id?: number | undefined;
8509
8509
  }[] | undefined;
8510
8510
  required?: boolean | undefined;
@@ -8525,7 +8525,7 @@ declare function init(config: AuthHeroConfig): {
8525
8525
  hint?: string | undefined;
8526
8526
  messages?: {
8527
8527
  text: string;
8528
- type: "error" | "success" | "info" | "warning";
8528
+ type: "success" | "error" | "info" | "warning";
8529
8529
  id?: number | undefined;
8530
8530
  }[] | undefined;
8531
8531
  required?: boolean | undefined;
@@ -8550,7 +8550,7 @@ declare function init(config: AuthHeroConfig): {
8550
8550
  hint?: string | undefined;
8551
8551
  messages?: {
8552
8552
  text: string;
8553
- type: "error" | "success" | "info" | "warning";
8553
+ type: "success" | "error" | "info" | "warning";
8554
8554
  id?: number | undefined;
8555
8555
  }[] | undefined;
8556
8556
  required?: boolean | undefined;
@@ -8569,7 +8569,7 @@ declare function init(config: AuthHeroConfig): {
8569
8569
  hint?: string | undefined;
8570
8570
  messages?: {
8571
8571
  text: string;
8572
- type: "error" | "success" | "info" | "warning";
8572
+ type: "success" | "error" | "info" | "warning";
8573
8573
  id?: number | undefined;
8574
8574
  }[] | undefined;
8575
8575
  required?: boolean | undefined;
@@ -8589,7 +8589,7 @@ declare function init(config: AuthHeroConfig): {
8589
8589
  hint?: string | undefined;
8590
8590
  messages?: {
8591
8591
  text: string;
8592
- type: "error" | "success" | "info" | "warning";
8592
+ type: "success" | "error" | "info" | "warning";
8593
8593
  id?: number | undefined;
8594
8594
  }[] | undefined;
8595
8595
  required?: boolean | undefined;
@@ -8608,7 +8608,7 @@ declare function init(config: AuthHeroConfig): {
8608
8608
  hint?: string | undefined;
8609
8609
  messages?: {
8610
8610
  text: string;
8611
- type: "error" | "success" | "info" | "warning";
8611
+ type: "success" | "error" | "info" | "warning";
8612
8612
  id?: number | undefined;
8613
8613
  }[] | undefined;
8614
8614
  required?: boolean | undefined;
@@ -8630,7 +8630,7 @@ declare function init(config: AuthHeroConfig): {
8630
8630
  hint?: string | undefined;
8631
8631
  messages?: {
8632
8632
  text: string;
8633
- type: "error" | "success" | "info" | "warning";
8633
+ type: "success" | "error" | "info" | "warning";
8634
8634
  id?: number | undefined;
8635
8635
  }[] | undefined;
8636
8636
  required?: boolean | undefined;
@@ -8652,7 +8652,7 @@ declare function init(config: AuthHeroConfig): {
8652
8652
  hint?: string | undefined;
8653
8653
  messages?: {
8654
8654
  text: string;
8655
- type: "error" | "success" | "info" | "warning";
8655
+ type: "success" | "error" | "info" | "warning";
8656
8656
  id?: number | undefined;
8657
8657
  }[] | undefined;
8658
8658
  required?: boolean | undefined;
@@ -8671,7 +8671,7 @@ declare function init(config: AuthHeroConfig): {
8671
8671
  hint?: string | undefined;
8672
8672
  messages?: {
8673
8673
  text: string;
8674
- type: "error" | "success" | "info" | "warning";
8674
+ type: "success" | "error" | "info" | "warning";
8675
8675
  id?: number | undefined;
8676
8676
  }[] | undefined;
8677
8677
  required?: boolean | undefined;
@@ -8696,7 +8696,7 @@ declare function init(config: AuthHeroConfig): {
8696
8696
  hint?: string | undefined;
8697
8697
  messages?: {
8698
8698
  text: string;
8699
- type: "error" | "success" | "info" | "warning";
8699
+ type: "success" | "error" | "info" | "warning";
8700
8700
  id?: number | undefined;
8701
8701
  }[] | undefined;
8702
8702
  required?: boolean | undefined;
@@ -8717,7 +8717,7 @@ declare function init(config: AuthHeroConfig): {
8717
8717
  hint?: string | undefined;
8718
8718
  messages?: {
8719
8719
  text: string;
8720
- type: "error" | "success" | "info" | "warning";
8720
+ type: "success" | "error" | "info" | "warning";
8721
8721
  id?: number | undefined;
8722
8722
  }[] | undefined;
8723
8723
  required?: boolean | undefined;
@@ -8738,7 +8738,7 @@ declare function init(config: AuthHeroConfig): {
8738
8738
  hint?: string | undefined;
8739
8739
  messages?: {
8740
8740
  text: string;
8741
- type: "error" | "success" | "info" | "warning";
8741
+ type: "success" | "error" | "info" | "warning";
8742
8742
  id?: number | undefined;
8743
8743
  }[] | undefined;
8744
8744
  required?: boolean | undefined;
@@ -8971,7 +8971,7 @@ declare function init(config: AuthHeroConfig): {
8971
8971
  hint?: string | undefined;
8972
8972
  messages?: {
8973
8973
  text: string;
8974
- type: "error" | "success" | "info" | "warning";
8974
+ type: "success" | "error" | "info" | "warning";
8975
8975
  id?: number | undefined;
8976
8976
  }[] | undefined;
8977
8977
  required?: boolean | undefined;
@@ -8989,7 +8989,7 @@ declare function init(config: AuthHeroConfig): {
8989
8989
  hint?: string | undefined;
8990
8990
  messages?: {
8991
8991
  text: string;
8992
- type: "error" | "success" | "info" | "warning";
8992
+ type: "success" | "error" | "info" | "warning";
8993
8993
  id?: number | undefined;
8994
8994
  }[] | undefined;
8995
8995
  required?: boolean | undefined;
@@ -9013,7 +9013,7 @@ declare function init(config: AuthHeroConfig): {
9013
9013
  hint?: string | undefined;
9014
9014
  messages?: {
9015
9015
  text: string;
9016
- type: "error" | "success" | "info" | "warning";
9016
+ type: "success" | "error" | "info" | "warning";
9017
9017
  id?: number | undefined;
9018
9018
  }[] | undefined;
9019
9019
  required?: boolean | undefined;
@@ -9037,7 +9037,7 @@ declare function init(config: AuthHeroConfig): {
9037
9037
  hint?: string | undefined;
9038
9038
  messages?: {
9039
9039
  text: string;
9040
- type: "error" | "success" | "info" | "warning";
9040
+ type: "success" | "error" | "info" | "warning";
9041
9041
  id?: number | undefined;
9042
9042
  }[] | undefined;
9043
9043
  required?: boolean | undefined;
@@ -9061,7 +9061,7 @@ declare function init(config: AuthHeroConfig): {
9061
9061
  hint?: string | undefined;
9062
9062
  messages?: {
9063
9063
  text: string;
9064
- type: "error" | "success" | "info" | "warning";
9064
+ type: "success" | "error" | "info" | "warning";
9065
9065
  id?: number | undefined;
9066
9066
  }[] | undefined;
9067
9067
  required?: boolean | undefined;
@@ -9086,7 +9086,7 @@ declare function init(config: AuthHeroConfig): {
9086
9086
  hint?: string | undefined;
9087
9087
  messages?: {
9088
9088
  text: string;
9089
- type: "error" | "success" | "info" | "warning";
9089
+ type: "success" | "error" | "info" | "warning";
9090
9090
  id?: number | undefined;
9091
9091
  }[] | undefined;
9092
9092
  required?: boolean | undefined;
@@ -9101,7 +9101,7 @@ declare function init(config: AuthHeroConfig): {
9101
9101
  hint?: string | undefined;
9102
9102
  messages?: {
9103
9103
  text: string;
9104
- type: "error" | "success" | "info" | "warning";
9104
+ type: "success" | "error" | "info" | "warning";
9105
9105
  id?: number | undefined;
9106
9106
  }[] | undefined;
9107
9107
  required?: boolean | undefined;
@@ -9122,7 +9122,7 @@ declare function init(config: AuthHeroConfig): {
9122
9122
  hint?: string | undefined;
9123
9123
  messages?: {
9124
9124
  text: string;
9125
- type: "error" | "success" | "info" | "warning";
9125
+ type: "success" | "error" | "info" | "warning";
9126
9126
  id?: number | undefined;
9127
9127
  }[] | undefined;
9128
9128
  required?: boolean | undefined;
@@ -9147,7 +9147,7 @@ declare function init(config: AuthHeroConfig): {
9147
9147
  hint?: string | undefined;
9148
9148
  messages?: {
9149
9149
  text: string;
9150
- type: "error" | "success" | "info" | "warning";
9150
+ type: "success" | "error" | "info" | "warning";
9151
9151
  id?: number | undefined;
9152
9152
  }[] | undefined;
9153
9153
  required?: boolean | undefined;
@@ -9166,7 +9166,7 @@ declare function init(config: AuthHeroConfig): {
9166
9166
  hint?: string | undefined;
9167
9167
  messages?: {
9168
9168
  text: string;
9169
- type: "error" | "success" | "info" | "warning";
9169
+ type: "success" | "error" | "info" | "warning";
9170
9170
  id?: number | undefined;
9171
9171
  }[] | undefined;
9172
9172
  required?: boolean | undefined;
@@ -9186,7 +9186,7 @@ declare function init(config: AuthHeroConfig): {
9186
9186
  hint?: string | undefined;
9187
9187
  messages?: {
9188
9188
  text: string;
9189
- type: "error" | "success" | "info" | "warning";
9189
+ type: "success" | "error" | "info" | "warning";
9190
9190
  id?: number | undefined;
9191
9191
  }[] | undefined;
9192
9192
  required?: boolean | undefined;
@@ -9205,7 +9205,7 @@ declare function init(config: AuthHeroConfig): {
9205
9205
  hint?: string | undefined;
9206
9206
  messages?: {
9207
9207
  text: string;
9208
- type: "error" | "success" | "info" | "warning";
9208
+ type: "success" | "error" | "info" | "warning";
9209
9209
  id?: number | undefined;
9210
9210
  }[] | undefined;
9211
9211
  required?: boolean | undefined;
@@ -9227,7 +9227,7 @@ declare function init(config: AuthHeroConfig): {
9227
9227
  hint?: string | undefined;
9228
9228
  messages?: {
9229
9229
  text: string;
9230
- type: "error" | "success" | "info" | "warning";
9230
+ type: "success" | "error" | "info" | "warning";
9231
9231
  id?: number | undefined;
9232
9232
  }[] | undefined;
9233
9233
  required?: boolean | undefined;
@@ -9249,7 +9249,7 @@ declare function init(config: AuthHeroConfig): {
9249
9249
  hint?: string | undefined;
9250
9250
  messages?: {
9251
9251
  text: string;
9252
- type: "error" | "success" | "info" | "warning";
9252
+ type: "success" | "error" | "info" | "warning";
9253
9253
  id?: number | undefined;
9254
9254
  }[] | undefined;
9255
9255
  required?: boolean | undefined;
@@ -9268,7 +9268,7 @@ declare function init(config: AuthHeroConfig): {
9268
9268
  hint?: string | undefined;
9269
9269
  messages?: {
9270
9270
  text: string;
9271
- type: "error" | "success" | "info" | "warning";
9271
+ type: "success" | "error" | "info" | "warning";
9272
9272
  id?: number | undefined;
9273
9273
  }[] | undefined;
9274
9274
  required?: boolean | undefined;
@@ -9293,7 +9293,7 @@ declare function init(config: AuthHeroConfig): {
9293
9293
  hint?: string | undefined;
9294
9294
  messages?: {
9295
9295
  text: string;
9296
- type: "error" | "success" | "info" | "warning";
9296
+ type: "success" | "error" | "info" | "warning";
9297
9297
  id?: number | undefined;
9298
9298
  }[] | undefined;
9299
9299
  required?: boolean | undefined;
@@ -9314,7 +9314,7 @@ declare function init(config: AuthHeroConfig): {
9314
9314
  hint?: string | undefined;
9315
9315
  messages?: {
9316
9316
  text: string;
9317
- type: "error" | "success" | "info" | "warning";
9317
+ type: "success" | "error" | "info" | "warning";
9318
9318
  id?: number | undefined;
9319
9319
  }[] | undefined;
9320
9320
  required?: boolean | undefined;
@@ -9335,7 +9335,7 @@ declare function init(config: AuthHeroConfig): {
9335
9335
  hint?: string | undefined;
9336
9336
  messages?: {
9337
9337
  text: string;
9338
- type: "error" | "success" | "info" | "warning";
9338
+ type: "success" | "error" | "info" | "warning";
9339
9339
  id?: number | undefined;
9340
9340
  }[] | undefined;
9341
9341
  required?: boolean | undefined;
@@ -9566,7 +9566,7 @@ declare function init(config: AuthHeroConfig): {
9566
9566
  hint?: string | undefined;
9567
9567
  messages?: {
9568
9568
  text: string;
9569
- type: "error" | "success" | "info" | "warning";
9569
+ type: "success" | "error" | "info" | "warning";
9570
9570
  id?: number | undefined;
9571
9571
  }[] | undefined;
9572
9572
  required?: boolean | undefined;
@@ -9584,7 +9584,7 @@ declare function init(config: AuthHeroConfig): {
9584
9584
  hint?: string | undefined;
9585
9585
  messages?: {
9586
9586
  text: string;
9587
- type: "error" | "success" | "info" | "warning";
9587
+ type: "success" | "error" | "info" | "warning";
9588
9588
  id?: number | undefined;
9589
9589
  }[] | undefined;
9590
9590
  required?: boolean | undefined;
@@ -9608,7 +9608,7 @@ declare function init(config: AuthHeroConfig): {
9608
9608
  hint?: string | undefined;
9609
9609
  messages?: {
9610
9610
  text: string;
9611
- type: "error" | "success" | "info" | "warning";
9611
+ type: "success" | "error" | "info" | "warning";
9612
9612
  id?: number | undefined;
9613
9613
  }[] | undefined;
9614
9614
  required?: boolean | undefined;
@@ -9632,7 +9632,7 @@ declare function init(config: AuthHeroConfig): {
9632
9632
  hint?: string | undefined;
9633
9633
  messages?: {
9634
9634
  text: string;
9635
- type: "error" | "success" | "info" | "warning";
9635
+ type: "success" | "error" | "info" | "warning";
9636
9636
  id?: number | undefined;
9637
9637
  }[] | undefined;
9638
9638
  required?: boolean | undefined;
@@ -9656,7 +9656,7 @@ declare function init(config: AuthHeroConfig): {
9656
9656
  hint?: string | undefined;
9657
9657
  messages?: {
9658
9658
  text: string;
9659
- type: "error" | "success" | "info" | "warning";
9659
+ type: "success" | "error" | "info" | "warning";
9660
9660
  id?: number | undefined;
9661
9661
  }[] | undefined;
9662
9662
  required?: boolean | undefined;
@@ -9685,7 +9685,7 @@ declare function init(config: AuthHeroConfig): {
9685
9685
  hint?: string | undefined;
9686
9686
  messages?: {
9687
9687
  text: string;
9688
- type: "error" | "success" | "info" | "warning";
9688
+ type: "success" | "error" | "info" | "warning";
9689
9689
  id?: number | undefined;
9690
9690
  }[] | undefined;
9691
9691
  required?: boolean | undefined;
@@ -9700,7 +9700,7 @@ declare function init(config: AuthHeroConfig): {
9700
9700
  hint?: string | undefined;
9701
9701
  messages?: {
9702
9702
  text: string;
9703
- type: "error" | "success" | "info" | "warning";
9703
+ type: "success" | "error" | "info" | "warning";
9704
9704
  id?: number | undefined;
9705
9705
  }[] | undefined;
9706
9706
  required?: boolean | undefined;
@@ -9721,7 +9721,7 @@ declare function init(config: AuthHeroConfig): {
9721
9721
  hint?: string | undefined;
9722
9722
  messages?: {
9723
9723
  text: string;
9724
- type: "error" | "success" | "info" | "warning";
9724
+ type: "success" | "error" | "info" | "warning";
9725
9725
  id?: number | undefined;
9726
9726
  }[] | undefined;
9727
9727
  required?: boolean | undefined;
@@ -9746,7 +9746,7 @@ declare function init(config: AuthHeroConfig): {
9746
9746
  hint?: string | undefined;
9747
9747
  messages?: {
9748
9748
  text: string;
9749
- type: "error" | "success" | "info" | "warning";
9749
+ type: "success" | "error" | "info" | "warning";
9750
9750
  id?: number | undefined;
9751
9751
  }[] | undefined;
9752
9752
  required?: boolean | undefined;
@@ -9765,7 +9765,7 @@ declare function init(config: AuthHeroConfig): {
9765
9765
  hint?: string | undefined;
9766
9766
  messages?: {
9767
9767
  text: string;
9768
- type: "error" | "success" | "info" | "warning";
9768
+ type: "success" | "error" | "info" | "warning";
9769
9769
  id?: number | undefined;
9770
9770
  }[] | undefined;
9771
9771
  required?: boolean | undefined;
@@ -9785,7 +9785,7 @@ declare function init(config: AuthHeroConfig): {
9785
9785
  hint?: string | undefined;
9786
9786
  messages?: {
9787
9787
  text: string;
9788
- type: "error" | "success" | "info" | "warning";
9788
+ type: "success" | "error" | "info" | "warning";
9789
9789
  id?: number | undefined;
9790
9790
  }[] | undefined;
9791
9791
  required?: boolean | undefined;
@@ -9804,7 +9804,7 @@ declare function init(config: AuthHeroConfig): {
9804
9804
  hint?: string | undefined;
9805
9805
  messages?: {
9806
9806
  text: string;
9807
- type: "error" | "success" | "info" | "warning";
9807
+ type: "success" | "error" | "info" | "warning";
9808
9808
  id?: number | undefined;
9809
9809
  }[] | undefined;
9810
9810
  required?: boolean | undefined;
@@ -9826,7 +9826,7 @@ declare function init(config: AuthHeroConfig): {
9826
9826
  hint?: string | undefined;
9827
9827
  messages?: {
9828
9828
  text: string;
9829
- type: "error" | "success" | "info" | "warning";
9829
+ type: "success" | "error" | "info" | "warning";
9830
9830
  id?: number | undefined;
9831
9831
  }[] | undefined;
9832
9832
  required?: boolean | undefined;
@@ -9848,7 +9848,7 @@ declare function init(config: AuthHeroConfig): {
9848
9848
  hint?: string | undefined;
9849
9849
  messages?: {
9850
9850
  text: string;
9851
- type: "error" | "success" | "info" | "warning";
9851
+ type: "success" | "error" | "info" | "warning";
9852
9852
  id?: number | undefined;
9853
9853
  }[] | undefined;
9854
9854
  required?: boolean | undefined;
@@ -9867,7 +9867,7 @@ declare function init(config: AuthHeroConfig): {
9867
9867
  hint?: string | undefined;
9868
9868
  messages?: {
9869
9869
  text: string;
9870
- type: "error" | "success" | "info" | "warning";
9870
+ type: "success" | "error" | "info" | "warning";
9871
9871
  id?: number | undefined;
9872
9872
  }[] | undefined;
9873
9873
  required?: boolean | undefined;
@@ -9892,7 +9892,7 @@ declare function init(config: AuthHeroConfig): {
9892
9892
  hint?: string | undefined;
9893
9893
  messages?: {
9894
9894
  text: string;
9895
- type: "error" | "success" | "info" | "warning";
9895
+ type: "success" | "error" | "info" | "warning";
9896
9896
  id?: number | undefined;
9897
9897
  }[] | undefined;
9898
9898
  required?: boolean | undefined;
@@ -9913,7 +9913,7 @@ declare function init(config: AuthHeroConfig): {
9913
9913
  hint?: string | undefined;
9914
9914
  messages?: {
9915
9915
  text: string;
9916
- type: "error" | "success" | "info" | "warning";
9916
+ type: "success" | "error" | "info" | "warning";
9917
9917
  id?: number | undefined;
9918
9918
  }[] | undefined;
9919
9919
  required?: boolean | undefined;
@@ -9934,7 +9934,7 @@ declare function init(config: AuthHeroConfig): {
9934
9934
  hint?: string | undefined;
9935
9935
  messages?: {
9936
9936
  text: string;
9937
- type: "error" | "success" | "info" | "warning";
9937
+ type: "success" | "error" | "info" | "warning";
9938
9938
  id?: number | undefined;
9939
9939
  }[] | undefined;
9940
9940
  required?: boolean | undefined;
@@ -10164,7 +10164,7 @@ declare function init(config: AuthHeroConfig): {
10164
10164
  };
10165
10165
  };
10166
10166
  output: {
10167
- prompt: "mfa" | "organizations" | "status" | "login" | "signup" | "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";
10167
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10168
10168
  language: string;
10169
10169
  }[];
10170
10170
  outputFormat: "json";
@@ -10202,7 +10202,7 @@ declare function init(config: AuthHeroConfig): {
10202
10202
  $get: {
10203
10203
  input: {
10204
10204
  param: {
10205
- prompt: "mfa" | "organizations" | "status" | "login" | "signup" | "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";
10205
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10206
10206
  language: string;
10207
10207
  };
10208
10208
  } & {
@@ -10224,7 +10224,7 @@ declare function init(config: AuthHeroConfig): {
10224
10224
  $put: {
10225
10225
  input: {
10226
10226
  param: {
10227
- prompt: "mfa" | "organizations" | "status" | "login" | "signup" | "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";
10227
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10228
10228
  language: string;
10229
10229
  };
10230
10230
  } & {
@@ -10248,7 +10248,7 @@ declare function init(config: AuthHeroConfig): {
10248
10248
  $delete: {
10249
10249
  input: {
10250
10250
  param: {
10251
- prompt: "mfa" | "organizations" | "status" | "login" | "signup" | "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";
10251
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10252
10252
  language: string;
10253
10253
  };
10254
10254
  } & {
@@ -10350,7 +10350,7 @@ declare function init(config: AuthHeroConfig): {
10350
10350
  } | undefined;
10351
10351
  unique?: boolean | undefined;
10352
10352
  profile_required?: boolean | undefined;
10353
- verification_method?: "code" | "link" | undefined;
10353
+ verification_method?: "link" | "code" | undefined;
10354
10354
  } | undefined;
10355
10355
  username?: {
10356
10356
  identifier?: {
@@ -10484,7 +10484,7 @@ declare function init(config: AuthHeroConfig): {
10484
10484
  } | undefined;
10485
10485
  unique?: boolean | undefined;
10486
10486
  profile_required?: boolean | undefined;
10487
- verification_method?: "code" | "link" | undefined;
10487
+ verification_method?: "link" | "code" | undefined;
10488
10488
  } | undefined;
10489
10489
  username?: {
10490
10490
  identifier?: {
@@ -10634,7 +10634,7 @@ declare function init(config: AuthHeroConfig): {
10634
10634
  } | undefined;
10635
10635
  unique?: boolean | undefined;
10636
10636
  profile_required?: boolean | undefined;
10637
- verification_method?: "code" | "link" | undefined;
10637
+ verification_method?: "link" | "code" | undefined;
10638
10638
  } | undefined;
10639
10639
  username?: {
10640
10640
  identifier?: {
@@ -10813,7 +10813,7 @@ declare function init(config: AuthHeroConfig): {
10813
10813
  } | undefined;
10814
10814
  unique?: boolean | undefined;
10815
10815
  profile_required?: boolean | undefined;
10816
- verification_method?: "code" | "link" | undefined;
10816
+ verification_method?: "link" | "code" | undefined;
10817
10817
  } | undefined;
10818
10818
  username?: {
10819
10819
  identifier?: {
@@ -10971,7 +10971,7 @@ declare function init(config: AuthHeroConfig): {
10971
10971
  } | undefined;
10972
10972
  unique?: boolean | undefined;
10973
10973
  profile_required?: boolean | undefined;
10974
- verification_method?: "code" | "link" | undefined;
10974
+ verification_method?: "link" | "code" | undefined;
10975
10975
  } | undefined;
10976
10976
  username?: {
10977
10977
  identifier?: {
@@ -11111,7 +11111,7 @@ declare function init(config: AuthHeroConfig): {
11111
11111
  };
11112
11112
  } | {
11113
11113
  mode: "inline";
11114
- status: "error" | "success";
11114
+ status: "success" | "error";
11115
11115
  connection_id: string;
11116
11116
  connection_name: string;
11117
11117
  strategy: string;
@@ -11751,7 +11751,7 @@ declare function init(config: AuthHeroConfig): {
11751
11751
  log_type: string;
11752
11752
  category: "user_action" | "admin_action" | "system" | "api";
11753
11753
  actor: {
11754
- type: "client_credentials" | "user" | "system" | "admin" | "api_key";
11754
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
11755
11755
  id?: string | undefined;
11756
11756
  email?: string | undefined;
11757
11757
  org_id?: string | undefined;
@@ -12061,7 +12061,7 @@ declare function init(config: AuthHeroConfig): {
12061
12061
  created_at: string;
12062
12062
  updated_at: string;
12063
12063
  name: string;
12064
- provider: "auth0" | "cognito" | "okta" | "oidc";
12064
+ provider: "auth0" | "oidc" | "okta" | "cognito";
12065
12065
  connection: string;
12066
12066
  enabled: boolean;
12067
12067
  credentials: {
@@ -12093,7 +12093,7 @@ declare function init(config: AuthHeroConfig): {
12093
12093
  created_at: string;
12094
12094
  updated_at: string;
12095
12095
  name: string;
12096
- provider: "auth0" | "cognito" | "okta" | "oidc";
12096
+ provider: "auth0" | "oidc" | "okta" | "cognito";
12097
12097
  connection: string;
12098
12098
  enabled: boolean;
12099
12099
  credentials: {
@@ -12119,7 +12119,7 @@ declare function init(config: AuthHeroConfig): {
12119
12119
  } & {
12120
12120
  json: {
12121
12121
  name: string;
12122
- provider: "auth0" | "cognito" | "okta" | "oidc";
12122
+ provider: "auth0" | "oidc" | "okta" | "cognito";
12123
12123
  connection: string;
12124
12124
  credentials: {
12125
12125
  domain: string;
@@ -12136,7 +12136,7 @@ declare function init(config: AuthHeroConfig): {
12136
12136
  created_at: string;
12137
12137
  updated_at: string;
12138
12138
  name: string;
12139
- provider: "auth0" | "cognito" | "okta" | "oidc";
12139
+ provider: "auth0" | "oidc" | "okta" | "cognito";
12140
12140
  connection: string;
12141
12141
  enabled: boolean;
12142
12142
  credentials: {
@@ -12167,7 +12167,7 @@ declare function init(config: AuthHeroConfig): {
12167
12167
  json: {
12168
12168
  id?: string | undefined;
12169
12169
  name?: string | undefined;
12170
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
12170
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
12171
12171
  connection?: string | undefined;
12172
12172
  enabled?: boolean | undefined;
12173
12173
  credentials?: {
@@ -12183,7 +12183,7 @@ declare function init(config: AuthHeroConfig): {
12183
12183
  created_at: string;
12184
12184
  updated_at: string;
12185
12185
  name: string;
12186
- provider: "auth0" | "cognito" | "okta" | "oidc";
12186
+ provider: "auth0" | "oidc" | "okta" | "cognito";
12187
12187
  connection: string;
12188
12188
  enabled: boolean;
12189
12189
  credentials: {
@@ -12231,7 +12231,7 @@ declare function init(config: AuthHeroConfig): {
12231
12231
  [x: string]: hono_utils_types.JSONValue;
12232
12232
  };
12233
12233
  id: string;
12234
- status: "suspended" | "active" | "paused";
12234
+ status: "active" | "suspended" | "paused";
12235
12235
  filters?: {
12236
12236
  type: string;
12237
12237
  name: string;
@@ -12263,7 +12263,7 @@ declare function init(config: AuthHeroConfig): {
12263
12263
  [x: string]: hono_utils_types.JSONValue;
12264
12264
  };
12265
12265
  id: string;
12266
- status: "suspended" | "active" | "paused";
12266
+ status: "active" | "suspended" | "paused";
12267
12267
  filters?: {
12268
12268
  type: string;
12269
12269
  name: string;
@@ -12288,7 +12288,7 @@ declare function init(config: AuthHeroConfig): {
12288
12288
  name: string;
12289
12289
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
12290
12290
  sink: Record<string, unknown>;
12291
- status?: "suspended" | "active" | "paused" | undefined;
12291
+ status?: "active" | "suspended" | "paused" | undefined;
12292
12292
  filters?: {
12293
12293
  type: string;
12294
12294
  name: string;
@@ -12303,7 +12303,7 @@ declare function init(config: AuthHeroConfig): {
12303
12303
  [x: string]: hono_utils_types.JSONValue;
12304
12304
  };
12305
12305
  id: string;
12306
- status: "suspended" | "active" | "paused";
12306
+ status: "active" | "suspended" | "paused";
12307
12307
  filters?: {
12308
12308
  type: string;
12309
12309
  name: string;
@@ -12338,7 +12338,7 @@ declare function init(config: AuthHeroConfig): {
12338
12338
  }[] | undefined;
12339
12339
  isPriority?: boolean | undefined;
12340
12340
  id?: string | undefined;
12341
- status?: "suspended" | "active" | "paused" | undefined;
12341
+ status?: "active" | "suspended" | "paused" | undefined;
12342
12342
  created_at?: string | undefined;
12343
12343
  updated_at?: string | undefined;
12344
12344
  };
@@ -12350,7 +12350,7 @@ declare function init(config: AuthHeroConfig): {
12350
12350
  [x: string]: hono_utils_types.JSONValue;
12351
12351
  };
12352
12352
  id: string;
12353
- status: "suspended" | "active" | "paused";
12353
+ status: "active" | "suspended" | "paused";
12354
12354
  filters?: {
12355
12355
  type: string;
12356
12356
  name: string;
@@ -12401,7 +12401,7 @@ declare function init(config: AuthHeroConfig): {
12401
12401
  };
12402
12402
  };
12403
12403
  output: {
12404
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12404
+ type: "gd_send_sms" | "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" | "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_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";
12405
12405
  date: string;
12406
12406
  isMobile: boolean;
12407
12407
  log_id: string;
@@ -12440,7 +12440,7 @@ declare function init(config: AuthHeroConfig): {
12440
12440
  limit: number;
12441
12441
  length: number;
12442
12442
  logs: {
12443
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12443
+ type: "gd_send_sms" | "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" | "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_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";
12444
12444
  date: string;
12445
12445
  isMobile: boolean;
12446
12446
  log_id: string;
@@ -12479,7 +12479,7 @@ declare function init(config: AuthHeroConfig): {
12479
12479
  next?: string | undefined;
12480
12480
  } | {
12481
12481
  logs: {
12482
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12482
+ type: "gd_send_sms" | "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" | "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_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";
12483
12483
  date: string;
12484
12484
  isMobile: boolean;
12485
12485
  log_id: string;
@@ -12533,7 +12533,7 @@ declare function init(config: AuthHeroConfig): {
12533
12533
  };
12534
12534
  };
12535
12535
  output: {
12536
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12536
+ type: "gd_send_sms" | "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" | "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_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";
12537
12537
  date: string;
12538
12538
  isMobile: boolean;
12539
12539
  log_id: string;
@@ -12938,7 +12938,7 @@ declare function init(config: AuthHeroConfig): {
12938
12938
  addons?: {
12939
12939
  [x: string]: any;
12940
12940
  } | undefined;
12941
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12941
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12942
12942
  client_metadata?: {
12943
12943
  [x: string]: string;
12944
12944
  } | undefined;
@@ -13034,7 +13034,7 @@ declare function init(config: AuthHeroConfig): {
13034
13034
  addons?: {
13035
13035
  [x: string]: any;
13036
13036
  } | undefined;
13037
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13037
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13038
13038
  client_metadata?: {
13039
13039
  [x: string]: string;
13040
13040
  } | undefined;
@@ -13130,7 +13130,7 @@ declare function init(config: AuthHeroConfig): {
13130
13130
  addons?: {
13131
13131
  [x: string]: any;
13132
13132
  } | undefined;
13133
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13133
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13134
13134
  client_metadata?: {
13135
13135
  [x: string]: string;
13136
13136
  } | undefined;
@@ -13241,7 +13241,7 @@ declare function init(config: AuthHeroConfig): {
13241
13241
  addons?: {
13242
13242
  [x: string]: any;
13243
13243
  } | undefined;
13244
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13244
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13245
13245
  client_metadata?: {
13246
13246
  [x: string]: string;
13247
13247
  } | undefined;
@@ -13351,7 +13351,7 @@ declare function init(config: AuthHeroConfig): {
13351
13351
  custom_login_page_preview?: string | undefined;
13352
13352
  form_template?: string | undefined;
13353
13353
  addons?: Record<string, any> | undefined;
13354
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13354
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13355
13355
  client_metadata?: Record<string, string> | undefined;
13356
13356
  hide_sign_up_disabled_error?: boolean | undefined;
13357
13357
  mobile?: Record<string, any> | undefined;
@@ -13431,7 +13431,7 @@ declare function init(config: AuthHeroConfig): {
13431
13431
  addons?: {
13432
13432
  [x: string]: any;
13433
13433
  } | undefined;
13434
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13434
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13435
13435
  client_metadata?: {
13436
13436
  [x: string]: string;
13437
13437
  } | undefined;
@@ -13520,7 +13520,7 @@ declare function init(config: AuthHeroConfig): {
13520
13520
  custom_login_page_preview?: string | undefined;
13521
13521
  form_template?: string | undefined;
13522
13522
  addons?: Record<string, any> | undefined;
13523
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13523
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13524
13524
  client_metadata?: Record<string, string> | undefined;
13525
13525
  hide_sign_up_disabled_error?: boolean | undefined;
13526
13526
  mobile?: Record<string, any> | undefined;
@@ -13600,7 +13600,7 @@ declare function init(config: AuthHeroConfig): {
13600
13600
  addons?: {
13601
13601
  [x: string]: any;
13602
13602
  } | undefined;
13603
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13603
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13604
13604
  client_metadata?: {
13605
13605
  [x: string]: string;
13606
13606
  } | undefined;
@@ -13732,7 +13732,7 @@ declare function init(config: AuthHeroConfig): {
13732
13732
  } | undefined;
13733
13733
  unique?: boolean | undefined;
13734
13734
  profile_required?: boolean | undefined;
13735
- verification_method?: "code" | "link" | undefined;
13735
+ verification_method?: "link" | "code" | undefined;
13736
13736
  } | undefined;
13737
13737
  username?: {
13738
13738
  identifier?: {
@@ -13886,7 +13886,7 @@ declare function init(config: AuthHeroConfig): {
13886
13886
  } | undefined;
13887
13887
  unique?: boolean | undefined;
13888
13888
  profile_required?: boolean | undefined;
13889
- verification_method?: "code" | "link" | undefined;
13889
+ verification_method?: "link" | "code" | undefined;
13890
13890
  } | undefined;
13891
13891
  username?: {
13892
13892
  identifier?: {
@@ -14867,7 +14867,7 @@ declare function init(config: AuthHeroConfig): {
14867
14867
  };
14868
14868
  };
14869
14869
  output: {
14870
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14870
+ type: "gd_send_sms" | "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" | "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_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";
14871
14871
  date: string;
14872
14872
  isMobile: boolean;
14873
14873
  log_id: string;
@@ -14906,7 +14906,7 @@ declare function init(config: AuthHeroConfig): {
14906
14906
  limit: number;
14907
14907
  length: number;
14908
14908
  logs: {
14909
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14909
+ type: "gd_send_sms" | "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" | "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_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";
14910
14910
  date: string;
14911
14911
  isMobile: boolean;
14912
14912
  log_id: string;
@@ -15225,7 +15225,7 @@ declare function init(config: AuthHeroConfig): {
15225
15225
  };
15226
15226
  } & {
15227
15227
  json: {
15228
- 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";
15228
+ template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15229
15229
  body: string;
15230
15230
  from: string;
15231
15231
  subject: string;
@@ -15246,7 +15246,7 @@ declare function init(config: AuthHeroConfig): {
15246
15246
  };
15247
15247
  } & {
15248
15248
  json: {
15249
- 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";
15249
+ template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15250
15250
  body: string;
15251
15251
  from: string;
15252
15252
  subject: string;
@@ -15258,7 +15258,7 @@ declare function init(config: AuthHeroConfig): {
15258
15258
  };
15259
15259
  };
15260
15260
  output: {
15261
- 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";
15261
+ template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15262
15262
  body: string;
15263
15263
  from: string;
15264
15264
  subject: string;
@@ -15281,7 +15281,7 @@ declare function init(config: AuthHeroConfig): {
15281
15281
  };
15282
15282
  };
15283
15283
  output: {
15284
- 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";
15284
+ name: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15285
15285
  body: string;
15286
15286
  subject: string;
15287
15287
  }[];
@@ -15294,7 +15294,7 @@ declare function init(config: AuthHeroConfig): {
15294
15294
  $get: {
15295
15295
  input: {
15296
15296
  param: {
15297
- 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";
15297
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15298
15298
  };
15299
15299
  } & {
15300
15300
  header: {
@@ -15307,7 +15307,7 @@ declare function init(config: AuthHeroConfig): {
15307
15307
  } | {
15308
15308
  input: {
15309
15309
  param: {
15310
- 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";
15310
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15311
15311
  };
15312
15312
  } & {
15313
15313
  header: {
@@ -15315,7 +15315,7 @@ declare function init(config: AuthHeroConfig): {
15315
15315
  };
15316
15316
  };
15317
15317
  output: {
15318
- 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";
15318
+ template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15319
15319
  body: string;
15320
15320
  from: string;
15321
15321
  subject: string;
@@ -15334,7 +15334,7 @@ declare function init(config: AuthHeroConfig): {
15334
15334
  $put: {
15335
15335
  input: {
15336
15336
  param: {
15337
- 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";
15337
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15338
15338
  };
15339
15339
  } & {
15340
15340
  header: {
@@ -15342,7 +15342,7 @@ declare function init(config: AuthHeroConfig): {
15342
15342
  };
15343
15343
  } & {
15344
15344
  json: {
15345
- 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";
15345
+ template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15346
15346
  body: string;
15347
15347
  subject: string;
15348
15348
  syntax?: "liquid" | undefined;
@@ -15354,7 +15354,7 @@ declare function init(config: AuthHeroConfig): {
15354
15354
  };
15355
15355
  };
15356
15356
  output: {
15357
- 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";
15357
+ template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15358
15358
  body: string;
15359
15359
  from: string;
15360
15360
  subject: string;
@@ -15373,7 +15373,7 @@ declare function init(config: AuthHeroConfig): {
15373
15373
  $patch: {
15374
15374
  input: {
15375
15375
  param: {
15376
- 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";
15376
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15377
15377
  };
15378
15378
  } & {
15379
15379
  header: {
@@ -15381,7 +15381,7 @@ declare function init(config: AuthHeroConfig): {
15381
15381
  };
15382
15382
  } & {
15383
15383
  json: {
15384
- 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;
15384
+ template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
15385
15385
  body?: string | undefined;
15386
15386
  from?: string | undefined;
15387
15387
  subject?: string | undefined;
@@ -15398,7 +15398,7 @@ declare function init(config: AuthHeroConfig): {
15398
15398
  } | {
15399
15399
  input: {
15400
15400
  param: {
15401
- 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";
15401
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15402
15402
  };
15403
15403
  } & {
15404
15404
  header: {
@@ -15406,7 +15406,7 @@ declare function init(config: AuthHeroConfig): {
15406
15406
  };
15407
15407
  } & {
15408
15408
  json: {
15409
- 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;
15409
+ template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
15410
15410
  body?: string | undefined;
15411
15411
  from?: string | undefined;
15412
15412
  subject?: string | undefined;
@@ -15418,7 +15418,7 @@ declare function init(config: AuthHeroConfig): {
15418
15418
  };
15419
15419
  };
15420
15420
  output: {
15421
- 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";
15421
+ template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15422
15422
  body: string;
15423
15423
  from: string;
15424
15424
  subject: string;
@@ -15437,7 +15437,7 @@ declare function init(config: AuthHeroConfig): {
15437
15437
  $delete: {
15438
15438
  input: {
15439
15439
  param: {
15440
- 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";
15440
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15441
15441
  };
15442
15442
  } & {
15443
15443
  header: {
@@ -15450,7 +15450,7 @@ declare function init(config: AuthHeroConfig): {
15450
15450
  } | {
15451
15451
  input: {
15452
15452
  param: {
15453
- 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";
15453
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15454
15454
  };
15455
15455
  } & {
15456
15456
  header: {
@@ -15467,7 +15467,7 @@ declare function init(config: AuthHeroConfig): {
15467
15467
  $post: {
15468
15468
  input: {
15469
15469
  param: {
15470
- 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";
15470
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15471
15471
  };
15472
15472
  } & {
15473
15473
  header: {
@@ -15750,7 +15750,7 @@ declare function init(config: AuthHeroConfig): {
15750
15750
  type: "auth0_managed_certs" | "self_managed_certs";
15751
15751
  custom_domain_id: string;
15752
15752
  primary: boolean;
15753
- status: "pending" | "ready" | "disabled" | "pending_verification";
15753
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15754
15754
  verification_method?: "txt" | undefined;
15755
15755
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15756
15756
  domain_metadata?: {
@@ -15791,7 +15791,7 @@ declare function init(config: AuthHeroConfig): {
15791
15791
  type: "auth0_managed_certs" | "self_managed_certs";
15792
15792
  custom_domain_id: string;
15793
15793
  primary: boolean;
15794
- status: "pending" | "ready" | "disabled" | "pending_verification";
15794
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15795
15795
  verification_method?: "txt" | undefined;
15796
15796
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15797
15797
  domain_metadata?: {
@@ -15855,7 +15855,7 @@ declare function init(config: AuthHeroConfig): {
15855
15855
  type: "auth0_managed_certs" | "self_managed_certs";
15856
15856
  custom_domain_id: string;
15857
15857
  primary: boolean;
15858
- status: "pending" | "ready" | "disabled" | "pending_verification";
15858
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15859
15859
  verification_method?: "txt" | undefined;
15860
15860
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15861
15861
  domain_metadata?: {
@@ -15902,7 +15902,7 @@ declare function init(config: AuthHeroConfig): {
15902
15902
  type: "auth0_managed_certs" | "self_managed_certs";
15903
15903
  custom_domain_id: string;
15904
15904
  primary: boolean;
15905
- status: "pending" | "ready" | "disabled" | "pending_verification";
15905
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15906
15906
  verification_method?: "txt" | undefined;
15907
15907
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15908
15908
  domain_metadata?: {
@@ -15948,7 +15948,7 @@ declare function init(config: AuthHeroConfig): {
15948
15948
  type: "auth0_managed_certs" | "self_managed_certs";
15949
15949
  custom_domain_id: string;
15950
15950
  primary: boolean;
15951
- status: "pending" | "ready" | "disabled" | "pending_verification";
15951
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15952
15952
  verification_method?: "txt" | undefined;
15953
15953
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15954
15954
  domain_metadata?: {
@@ -15989,7 +15989,7 @@ declare function init(config: AuthHeroConfig): {
15989
15989
  type: "auth0_managed_certs" | "self_managed_certs";
15990
15990
  custom_domain_id: string;
15991
15991
  primary: boolean;
15992
- status: "pending" | "ready" | "disabled" | "pending_verification";
15992
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15993
15993
  verification_method?: "txt" | undefined;
15994
15994
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15995
15995
  domain_metadata?: {
@@ -16088,12 +16088,12 @@ declare function init(config: AuthHeroConfig): {
16088
16088
  background_color: string;
16089
16089
  background_image_url: string;
16090
16090
  page_layout: "center" | "left" | "right";
16091
- logo_placement?: "widget" | "none" | "chip" | undefined;
16091
+ logo_placement?: "none" | "widget" | "chip" | undefined;
16092
16092
  };
16093
16093
  widget: {
16094
16094
  header_text_alignment: "center" | "left" | "right";
16095
16095
  logo_height: number;
16096
- logo_position: "center" | "left" | "right" | "none";
16096
+ logo_position: "none" | "center" | "left" | "right";
16097
16097
  logo_url: string;
16098
16098
  social_buttons_layout: "bottom" | "top";
16099
16099
  };
@@ -16178,12 +16178,12 @@ declare function init(config: AuthHeroConfig): {
16178
16178
  background_color: string;
16179
16179
  background_image_url: string;
16180
16180
  page_layout: "center" | "left" | "right";
16181
- logo_placement?: "widget" | "none" | "chip" | undefined;
16181
+ logo_placement?: "none" | "widget" | "chip" | undefined;
16182
16182
  };
16183
16183
  widget: {
16184
16184
  header_text_alignment: "center" | "left" | "right";
16185
16185
  logo_height: number;
16186
- logo_position: "center" | "left" | "right" | "none";
16186
+ logo_position: "none" | "center" | "left" | "right";
16187
16187
  logo_url: string;
16188
16188
  social_buttons_layout: "bottom" | "top";
16189
16189
  };
@@ -16257,12 +16257,12 @@ declare function init(config: AuthHeroConfig): {
16257
16257
  background_color: string;
16258
16258
  background_image_url: string;
16259
16259
  page_layout: "center" | "left" | "right";
16260
- logo_placement?: "widget" | "none" | "chip" | undefined;
16260
+ logo_placement?: "none" | "widget" | "chip" | undefined;
16261
16261
  };
16262
16262
  widget: {
16263
16263
  header_text_alignment: "center" | "left" | "right";
16264
16264
  logo_height: number;
16265
- logo_position: "center" | "left" | "right" | "none";
16265
+ logo_position: "none" | "center" | "left" | "right";
16266
16266
  logo_url: string;
16267
16267
  social_buttons_layout: "bottom" | "top";
16268
16268
  };
@@ -16419,7 +16419,7 @@ declare function init(config: AuthHeroConfig): {
16419
16419
  } & {
16420
16420
  json: {
16421
16421
  body?: string | undefined;
16422
- screen?: "password" | "login" | "identifier" | "signup" | undefined;
16422
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
16423
16423
  branding?: {
16424
16424
  colors?: {
16425
16425
  primary: string;
@@ -16505,12 +16505,12 @@ declare function init(config: AuthHeroConfig): {
16505
16505
  background_color: string;
16506
16506
  background_image_url: string;
16507
16507
  page_layout: "center" | "left" | "right";
16508
- logo_placement?: "widget" | "none" | "chip" | undefined;
16508
+ logo_placement?: "none" | "widget" | "chip" | undefined;
16509
16509
  } | undefined;
16510
16510
  widget?: {
16511
16511
  header_text_alignment: "center" | "left" | "right";
16512
16512
  logo_height: number;
16513
- logo_position: "center" | "left" | "right" | "none";
16513
+ logo_position: "none" | "center" | "left" | "right";
16514
16514
  logo_url: string;
16515
16515
  social_buttons_layout: "bottom" | "top";
16516
16516
  } | undefined;
@@ -16710,7 +16710,7 @@ declare function init(config: AuthHeroConfig): {
16710
16710
  logs: {
16711
16711
  action_name: string;
16712
16712
  lines: {
16713
- level: "error" | "log" | "info" | "warn" | "debug";
16713
+ level: "log" | "error" | "info" | "warn" | "debug";
16714
16714
  message: string;
16715
16715
  }[];
16716
16716
  }[];
@@ -17379,7 +17379,7 @@ declare function init(config: AuthHeroConfig): {
17379
17379
  args: hono_utils_types.JSONValue[];
17380
17380
  }[];
17381
17381
  logs: {
17382
- level: "error" | "log" | "info" | "warn" | "debug";
17382
+ level: "log" | "error" | "info" | "warn" | "debug";
17383
17383
  message: string;
17384
17384
  }[];
17385
17385
  error?: string | undefined;
@@ -17690,7 +17690,7 @@ declare function init(config: AuthHeroConfig): {
17690
17690
  scope?: string | undefined;
17691
17691
  grant_types?: string[] | undefined;
17692
17692
  response_types?: string[] | undefined;
17693
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
17693
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
17694
17694
  jwks_uri?: string | undefined;
17695
17695
  jwks?: Record<string, unknown> | undefined;
17696
17696
  software_id?: string | undefined;
@@ -17779,7 +17779,7 @@ declare function init(config: AuthHeroConfig): {
17779
17779
  scope?: string | undefined;
17780
17780
  grant_types?: string[] | undefined;
17781
17781
  response_types?: string[] | undefined;
17782
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
17782
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
17783
17783
  jwks_uri?: string | undefined;
17784
17784
  jwks?: Record<string, unknown> | undefined;
17785
17785
  software_id?: string | undefined;
@@ -17836,7 +17836,7 @@ declare function init(config: AuthHeroConfig): {
17836
17836
  client_id: string;
17837
17837
  redirect_url?: string | undefined;
17838
17838
  login_hint?: string | undefined;
17839
- screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
17839
+ screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
17840
17840
  };
17841
17841
  };
17842
17842
  output: {};
@@ -17848,7 +17848,7 @@ declare function init(config: AuthHeroConfig): {
17848
17848
  client_id: string;
17849
17849
  redirect_url?: string | undefined;
17850
17850
  login_hint?: string | undefined;
17851
- screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
17851
+ screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
17852
17852
  };
17853
17853
  };
17854
17854
  output: {
@@ -17925,9 +17925,17 @@ declare function init(config: AuthHeroConfig): {
17925
17925
  request_uri?: string | undefined;
17926
17926
  };
17927
17927
  };
17928
- output: {};
17929
- outputFormat: string;
17930
- status: 302;
17928
+ output: string | {
17929
+ access_token: string;
17930
+ token_type: string;
17931
+ expires_in: number;
17932
+ id_token?: string | undefined;
17933
+ scope?: string | undefined;
17934
+ state?: string | undefined;
17935
+ refresh_token?: string | undefined;
17936
+ };
17937
+ outputFormat: "json";
17938
+ status: 200;
17931
17939
  } | {
17932
17940
  input: {
17933
17941
  query: {
@@ -17959,17 +17967,9 @@ declare function init(config: AuthHeroConfig): {
17959
17967
  request_uri?: string | undefined;
17960
17968
  };
17961
17969
  };
17962
- output: string | {
17963
- access_token: string;
17964
- token_type: string;
17965
- expires_in: number;
17966
- id_token?: string | undefined;
17967
- scope?: string | undefined;
17968
- state?: string | undefined;
17969
- refresh_token?: string | undefined;
17970
- };
17971
- outputFormat: "json";
17972
- status: 200;
17970
+ output: {};
17971
+ outputFormat: string;
17972
+ status: 302;
17973
17973
  } | {
17974
17974
  input: {
17975
17975
  query: {
@@ -18123,22 +18123,22 @@ declare function init(config: AuthHeroConfig): {
18123
18123
  connection: "email";
18124
18124
  client_id: string;
18125
18125
  email: string;
18126
- send: "code" | "link";
18126
+ send: "link" | "code";
18127
18127
  authParams: {
18128
- audience?: string | undefined;
18129
- username?: string | undefined;
18130
- scope?: string | undefined;
18131
18128
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
18132
18129
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
18130
+ scope?: string | undefined;
18131
+ username?: string | undefined;
18132
+ nonce?: string | undefined;
18133
18133
  state?: string | undefined;
18134
- prompt?: string | undefined;
18135
- ui_locales?: string | undefined;
18136
- organization?: string | undefined;
18134
+ audience?: string | undefined;
18135
+ code_challenge?: string | undefined;
18136
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
18137
18137
  redirect_uri?: string | undefined;
18138
18138
  act_as?: string | undefined;
18139
- nonce?: string | undefined;
18140
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
18141
- code_challenge?: string | undefined;
18139
+ organization?: string | undefined;
18140
+ prompt?: string | undefined;
18141
+ ui_locales?: string | undefined;
18142
18142
  max_age?: number | undefined;
18143
18143
  acr_values?: string | undefined;
18144
18144
  claims?: {
@@ -18159,22 +18159,22 @@ declare function init(config: AuthHeroConfig): {
18159
18159
  client_id: string;
18160
18160
  connection: "sms";
18161
18161
  phone_number: string;
18162
- send: "code" | "link";
18162
+ send: "link" | "code";
18163
18163
  authParams: {
18164
- audience?: string | undefined;
18165
- username?: string | undefined;
18166
- scope?: string | undefined;
18167
18164
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
18168
18165
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
18166
+ scope?: string | undefined;
18167
+ username?: string | undefined;
18168
+ nonce?: string | undefined;
18169
18169
  state?: string | undefined;
18170
- prompt?: string | undefined;
18171
- ui_locales?: string | undefined;
18172
- organization?: string | undefined;
18170
+ audience?: string | undefined;
18171
+ code_challenge?: string | undefined;
18172
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
18173
18173
  redirect_uri?: string | undefined;
18174
18174
  act_as?: string | undefined;
18175
- nonce?: string | undefined;
18176
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
18177
- code_challenge?: string | undefined;
18175
+ organization?: string | undefined;
18176
+ prompt?: string | undefined;
18177
+ ui_locales?: string | undefined;
18178
18178
  max_age?: number | undefined;
18179
18179
  acr_values?: string | undefined;
18180
18180
  claims?: {
@@ -18305,14 +18305,14 @@ declare function init(config: AuthHeroConfig): {
18305
18305
  input: {
18306
18306
  form: {
18307
18307
  token: string;
18308
- token_type_hint?: "access_token" | "refresh_token" | undefined;
18308
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
18309
18309
  client_id?: string | undefined;
18310
18310
  client_secret?: string | undefined;
18311
18311
  };
18312
18312
  } & {
18313
18313
  json: {
18314
18314
  token: string;
18315
- token_type_hint?: "access_token" | "refresh_token" | undefined;
18315
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
18316
18316
  client_id?: string | undefined;
18317
18317
  client_secret?: string | undefined;
18318
18318
  };
@@ -18324,14 +18324,14 @@ declare function init(config: AuthHeroConfig): {
18324
18324
  input: {
18325
18325
  form: {
18326
18326
  token: string;
18327
- token_type_hint?: "access_token" | "refresh_token" | undefined;
18327
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
18328
18328
  client_id?: string | undefined;
18329
18329
  client_secret?: string | undefined;
18330
18330
  };
18331
18331
  } & {
18332
18332
  json: {
18333
18333
  token: string;
18334
- token_type_hint?: "access_token" | "refresh_token" | undefined;
18334
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
18335
18335
  client_id?: string | undefined;
18336
18336
  client_secret?: string | undefined;
18337
18337
  };
@@ -18346,14 +18346,14 @@ declare function init(config: AuthHeroConfig): {
18346
18346
  input: {
18347
18347
  form: {
18348
18348
  token: string;
18349
- token_type_hint?: "access_token" | "refresh_token" | undefined;
18349
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
18350
18350
  client_id?: string | undefined;
18351
18351
  client_secret?: string | undefined;
18352
18352
  };
18353
18353
  } & {
18354
18354
  json: {
18355
18355
  token: string;
18356
- token_type_hint?: "access_token" | "refresh_token" | undefined;
18356
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
18357
18357
  client_id?: string | undefined;
18358
18358
  client_secret?: string | undefined;
18359
18359
  };
@@ -18403,7 +18403,7 @@ declare function init(config: AuthHeroConfig): {
18403
18403
  client_id: string;
18404
18404
  username: string;
18405
18405
  otp: string;
18406
- realm: "sms" | "email";
18406
+ realm: "email" | "sms";
18407
18407
  } | {
18408
18408
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18409
18409
  subject_token: string;
@@ -18450,7 +18450,7 @@ declare function init(config: AuthHeroConfig): {
18450
18450
  client_id: string;
18451
18451
  username: string;
18452
18452
  otp: string;
18453
- realm: "sms" | "email";
18453
+ realm: "email" | "sms";
18454
18454
  } | {
18455
18455
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18456
18456
  subject_token: string;
@@ -18502,7 +18502,7 @@ declare function init(config: AuthHeroConfig): {
18502
18502
  client_id: string;
18503
18503
  username: string;
18504
18504
  otp: string;
18505
- realm: "sms" | "email";
18505
+ realm: "email" | "sms";
18506
18506
  } | {
18507
18507
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18508
18508
  subject_token: string;
@@ -18549,7 +18549,7 @@ declare function init(config: AuthHeroConfig): {
18549
18549
  client_id: string;
18550
18550
  username: string;
18551
18551
  otp: string;
18552
- realm: "sms" | "email";
18552
+ realm: "email" | "sms";
18553
18553
  } | {
18554
18554
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18555
18555
  subject_token: string;
@@ -18609,7 +18609,7 @@ declare function init(config: AuthHeroConfig): {
18609
18609
  client_id: string;
18610
18610
  username: string;
18611
18611
  otp: string;
18612
- realm: "sms" | "email";
18612
+ realm: "email" | "sms";
18613
18613
  } | {
18614
18614
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18615
18615
  subject_token: string;
@@ -18656,7 +18656,7 @@ declare function init(config: AuthHeroConfig): {
18656
18656
  client_id: string;
18657
18657
  username: string;
18658
18658
  otp: string;
18659
- realm: "sms" | "email";
18659
+ realm: "email" | "sms";
18660
18660
  } | {
18661
18661
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18662
18662
  subject_token: string;
@@ -18711,7 +18711,7 @@ declare function init(config: AuthHeroConfig): {
18711
18711
  client_id: string;
18712
18712
  username: string;
18713
18713
  otp: string;
18714
- realm: "sms" | "email";
18714
+ realm: "email" | "sms";
18715
18715
  } | {
18716
18716
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18717
18717
  subject_token: string;
@@ -18758,7 +18758,7 @@ declare function init(config: AuthHeroConfig): {
18758
18758
  client_id: string;
18759
18759
  username: string;
18760
18760
  otp: string;
18761
- realm: "sms" | "email";
18761
+ realm: "email" | "sms";
18762
18762
  } | {
18763
18763
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18764
18764
  subject_token: string;
@@ -18813,7 +18813,7 @@ declare function init(config: AuthHeroConfig): {
18813
18813
  client_id: string;
18814
18814
  username: string;
18815
18815
  otp: string;
18816
- realm: "sms" | "email";
18816
+ realm: "email" | "sms";
18817
18817
  } | {
18818
18818
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18819
18819
  subject_token: string;
@@ -18860,7 +18860,7 @@ declare function init(config: AuthHeroConfig): {
18860
18860
  client_id: string;
18861
18861
  username: string;
18862
18862
  otp: string;
18863
- realm: "sms" | "email";
18863
+ realm: "email" | "sms";
18864
18864
  } | {
18865
18865
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18866
18866
  subject_token: string;
@@ -18888,8 +18888,8 @@ declare function init(config: AuthHeroConfig): {
18888
18888
  input: {};
18889
18889
  output: {
18890
18890
  keys: {
18891
- alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
18892
- kty: "EC" | "RSA" | "oct";
18891
+ alg: "HS256" | "HS384" | "HS512" | "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512";
18892
+ kty: "RSA" | "EC" | "oct";
18893
18893
  kid?: string | undefined;
18894
18894
  use?: "sig" | "enc" | undefined;
18895
18895
  n?: string | undefined;
@@ -19078,7 +19078,7 @@ declare function init(config: AuthHeroConfig): {
19078
19078
  };
19079
19079
  output: {};
19080
19080
  outputFormat: string;
19081
- status: 200;
19081
+ status: 302;
19082
19082
  } | {
19083
19083
  input: {
19084
19084
  query: {
@@ -19092,7 +19092,7 @@ declare function init(config: AuthHeroConfig): {
19092
19092
  };
19093
19093
  output: {};
19094
19094
  outputFormat: string;
19095
- status: 302;
19095
+ status: 200;
19096
19096
  } | {
19097
19097
  input: {
19098
19098
  query: {
@@ -19701,7 +19701,7 @@ declare function init(config: AuthHeroConfig): {
19701
19701
  } & {
19702
19702
  form: {
19703
19703
  username: string;
19704
- login_selection?: "password" | "code" | undefined;
19704
+ login_selection?: "code" | "password" | undefined;
19705
19705
  };
19706
19706
  };
19707
19707
  output: {};
@@ -19715,7 +19715,7 @@ declare function init(config: AuthHeroConfig): {
19715
19715
  } & {
19716
19716
  form: {
19717
19717
  username: string;
19718
- login_selection?: "password" | "code" | undefined;
19718
+ login_selection?: "code" | "password" | undefined;
19719
19719
  };
19720
19720
  };
19721
19721
  output: {};
@@ -20080,7 +20080,7 @@ declare function init(config: AuthHeroConfig): {
20080
20080
  $get: {
20081
20081
  input: {
20082
20082
  param: {
20083
- 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";
20083
+ screen: "signup" | "login" | "account" | "reset-password" | "consent" | "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";
20084
20084
  };
20085
20085
  } & {
20086
20086
  query: {
@@ -20096,7 +20096,7 @@ declare function init(config: AuthHeroConfig): {
20096
20096
  } | {
20097
20097
  input: {
20098
20098
  param: {
20099
- 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";
20099
+ screen: "signup" | "login" | "account" | "reset-password" | "consent" | "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";
20100
20100
  };
20101
20101
  } & {
20102
20102
  query: {
@@ -20112,7 +20112,7 @@ declare function init(config: AuthHeroConfig): {
20112
20112
  } | {
20113
20113
  input: {
20114
20114
  param: {
20115
- 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";
20115
+ screen: "signup" | "login" | "account" | "reset-password" | "consent" | "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";
20116
20116
  };
20117
20117
  } & {
20118
20118
  query: {
@@ -20132,7 +20132,7 @@ declare function init(config: AuthHeroConfig): {
20132
20132
  $post: {
20133
20133
  input: {
20134
20134
  param: {
20135
- 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";
20135
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
20136
20136
  };
20137
20137
  } & {
20138
20138
  query: {
@@ -20150,7 +20150,7 @@ declare function init(config: AuthHeroConfig): {
20150
20150
  } | {
20151
20151
  input: {
20152
20152
  param: {
20153
- 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";
20153
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
20154
20154
  };
20155
20155
  } & {
20156
20156
  query: {