authhero 8.6.0 → 8.7.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 (43) hide show
  1. package/dist/assets/u/js/client.js +5 -5
  2. package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
  3. package/dist/assets/u/widget/index.esm.js +1 -1
  4. package/dist/assets/u/widget/{p-5f7b7943.entry.js → p-5a319adc.entry.js} +1 -1
  5. package/dist/assets/u/widget/p-f6babd26.entry.js +1 -0
  6. package/dist/authhero.cjs +272 -152
  7. package/dist/authhero.d.ts +494 -212
  8. package/dist/authhero.mjs +45259 -44754
  9. package/dist/client.js +5 -5
  10. package/dist/stats.html +1 -1
  11. package/dist/tsconfig.types.tsbuildinfo +1 -1
  12. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  13. package/dist/types/client/client-bundle.d.ts +1 -1
  14. package/dist/types/index.d.ts +494 -212
  15. package/dist/types/routes/auth-api/index.d.ts +32 -32
  16. package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
  17. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  18. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  19. package/dist/types/routes/auth-api/token.d.ts +10 -10
  20. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  21. package/dist/types/routes/management-api/branding-preview.d.ts +41 -0
  22. package/dist/types/routes/management-api/branding.d.ts +114 -0
  23. package/dist/types/routes/management-api/clients.d.ts +7 -7
  24. package/dist/types/routes/management-api/connections.d.ts +1 -1
  25. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  26. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  27. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  28. package/dist/types/routes/management-api/forms.d.ts +287 -119
  29. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  30. package/dist/types/routes/management-api/index.d.ts +456 -174
  31. package/dist/types/routes/management-api/logs.d.ts +3 -3
  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/users.d.ts +2 -2
  36. package/dist/types/routes/universal-login/common.d.ts +2 -2
  37. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  38. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  39. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  40. package/dist/types/routes/universal-login/u2-widget-page.d.ts +33 -4
  41. package/dist/types/routes/universal-login/universal-login-template.d.ts +65 -13
  42. package/package.json +6 -6
  43. package/dist/assets/u/widget/p-1fc7fcdb.entry.js +0 -1
@@ -2915,7 +2915,7 @@ declare function init(config: AuthHeroConfig): {
2915
2915
  };
2916
2916
  } & {
2917
2917
  json: {
2918
- type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2918
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2919
2919
  phone_number?: string | undefined;
2920
2920
  totp_secret?: string | undefined;
2921
2921
  credential_id?: string | undefined;
@@ -3055,7 +3055,7 @@ declare function init(config: AuthHeroConfig): {
3055
3055
  };
3056
3056
  };
3057
3057
  output: {
3058
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3058
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3059
3059
  enabled: boolean;
3060
3060
  trial_expired?: boolean | undefined;
3061
3061
  }[];
@@ -3210,7 +3210,7 @@ declare function init(config: AuthHeroConfig): {
3210
3210
  $get: {
3211
3211
  input: {
3212
3212
  param: {
3213
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3213
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3214
3214
  };
3215
3215
  } & {
3216
3216
  header: {
@@ -3218,7 +3218,7 @@ declare function init(config: AuthHeroConfig): {
3218
3218
  };
3219
3219
  };
3220
3220
  output: {
3221
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3221
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3222
3222
  enabled: boolean;
3223
3223
  trial_expired?: boolean | undefined;
3224
3224
  };
@@ -3231,7 +3231,7 @@ declare function init(config: AuthHeroConfig): {
3231
3231
  $put: {
3232
3232
  input: {
3233
3233
  param: {
3234
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3234
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3235
3235
  };
3236
3236
  } & {
3237
3237
  header: {
@@ -3243,7 +3243,7 @@ declare function init(config: AuthHeroConfig): {
3243
3243
  };
3244
3244
  };
3245
3245
  output: {
3246
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3246
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3247
3247
  enabled: boolean;
3248
3248
  trial_expired?: boolean | undefined;
3249
3249
  };
@@ -3989,9 +3989,9 @@ declare function init(config: AuthHeroConfig): {
3989
3989
  email?: string | undefined;
3990
3990
  };
3991
3991
  id?: string | undefined;
3992
- connection_id?: string | undefined;
3993
3992
  app_metadata?: Record<string, any> | undefined;
3994
3993
  user_metadata?: Record<string, any> | undefined;
3994
+ connection_id?: string | undefined;
3995
3995
  roles?: string[] | undefined;
3996
3996
  ttl_sec?: number | undefined;
3997
3997
  send_invitation_email?: boolean | undefined;
@@ -5419,7 +5419,7 @@ declare function init(config: AuthHeroConfig): {
5419
5419
  hint?: string | undefined;
5420
5420
  messages?: {
5421
5421
  text: string;
5422
- type: "success" | "error" | "info" | "warning";
5422
+ type: "error" | "success" | "info" | "warning";
5423
5423
  id?: number | undefined;
5424
5424
  }[] | undefined;
5425
5425
  required?: boolean | undefined;
@@ -5437,7 +5437,7 @@ declare function init(config: AuthHeroConfig): {
5437
5437
  hint?: string | undefined;
5438
5438
  messages?: {
5439
5439
  text: string;
5440
- type: "success" | "error" | "info" | "warning";
5440
+ type: "error" | "success" | "info" | "warning";
5441
5441
  id?: number | undefined;
5442
5442
  }[] | undefined;
5443
5443
  required?: boolean | undefined;
@@ -5461,7 +5461,7 @@ declare function init(config: AuthHeroConfig): {
5461
5461
  hint?: string | undefined;
5462
5462
  messages?: {
5463
5463
  text: string;
5464
- type: "success" | "error" | "info" | "warning";
5464
+ type: "error" | "success" | "info" | "warning";
5465
5465
  id?: number | undefined;
5466
5466
  }[] | undefined;
5467
5467
  required?: boolean | undefined;
@@ -5475,6 +5475,30 @@ declare function init(config: AuthHeroConfig): {
5475
5475
  multiple?: boolean | undefined;
5476
5476
  default_value?: string | string[] | undefined;
5477
5477
  } | undefined;
5478
+ } | {
5479
+ id: string;
5480
+ visible: boolean;
5481
+ type: "CODE";
5482
+ order?: number | undefined;
5483
+ category?: "FIELD" | undefined;
5484
+ label?: string | undefined;
5485
+ hint?: string | undefined;
5486
+ messages?: {
5487
+ text: string;
5488
+ type: "error" | "success" | "info" | "warning";
5489
+ id?: number | undefined;
5490
+ }[] | undefined;
5491
+ required?: boolean | undefined;
5492
+ sensitive?: boolean | undefined;
5493
+ config?: {
5494
+ length?: number | undefined;
5495
+ mode?: "numeric" | "alphanumeric" | undefined;
5496
+ auto_submit?: boolean | undefined;
5497
+ group_size?: number | undefined;
5498
+ separator?: string | undefined;
5499
+ placeholder?: string | undefined;
5500
+ default_value?: string | undefined;
5501
+ } | undefined;
5478
5502
  } | {
5479
5503
  id: string;
5480
5504
  visible: boolean;
@@ -5485,7 +5509,7 @@ declare function init(config: AuthHeroConfig): {
5485
5509
  hint?: string | undefined;
5486
5510
  messages?: {
5487
5511
  text: string;
5488
- type: "success" | "error" | "info" | "warning";
5512
+ type: "error" | "success" | "info" | "warning";
5489
5513
  id?: number | undefined;
5490
5514
  }[] | undefined;
5491
5515
  required?: boolean | undefined;
@@ -5514,7 +5538,7 @@ declare function init(config: AuthHeroConfig): {
5514
5538
  hint?: string | undefined;
5515
5539
  messages?: {
5516
5540
  text: string;
5517
- type: "success" | "error" | "info" | "warning";
5541
+ type: "error" | "success" | "info" | "warning";
5518
5542
  id?: number | undefined;
5519
5543
  }[] | undefined;
5520
5544
  required?: boolean | undefined;
@@ -5529,7 +5553,7 @@ declare function init(config: AuthHeroConfig): {
5529
5553
  hint?: string | undefined;
5530
5554
  messages?: {
5531
5555
  text: string;
5532
- type: "success" | "error" | "info" | "warning";
5556
+ type: "error" | "success" | "info" | "warning";
5533
5557
  id?: number | undefined;
5534
5558
  }[] | undefined;
5535
5559
  required?: boolean | undefined;
@@ -5550,7 +5574,7 @@ declare function init(config: AuthHeroConfig): {
5550
5574
  hint?: string | undefined;
5551
5575
  messages?: {
5552
5576
  text: string;
5553
- type: "success" | "error" | "info" | "warning";
5577
+ type: "error" | "success" | "info" | "warning";
5554
5578
  id?: number | undefined;
5555
5579
  }[] | undefined;
5556
5580
  required?: boolean | undefined;
@@ -5575,7 +5599,7 @@ declare function init(config: AuthHeroConfig): {
5575
5599
  hint?: string | undefined;
5576
5600
  messages?: {
5577
5601
  text: string;
5578
- type: "success" | "error" | "info" | "warning";
5602
+ type: "error" | "success" | "info" | "warning";
5579
5603
  id?: number | undefined;
5580
5604
  }[] | undefined;
5581
5605
  required?: boolean | undefined;
@@ -5594,7 +5618,7 @@ declare function init(config: AuthHeroConfig): {
5594
5618
  hint?: string | undefined;
5595
5619
  messages?: {
5596
5620
  text: string;
5597
- type: "success" | "error" | "info" | "warning";
5621
+ type: "error" | "success" | "info" | "warning";
5598
5622
  id?: number | undefined;
5599
5623
  }[] | undefined;
5600
5624
  required?: boolean | undefined;
@@ -5614,7 +5638,7 @@ declare function init(config: AuthHeroConfig): {
5614
5638
  hint?: string | undefined;
5615
5639
  messages?: {
5616
5640
  text: string;
5617
- type: "success" | "error" | "info" | "warning";
5641
+ type: "error" | "success" | "info" | "warning";
5618
5642
  id?: number | undefined;
5619
5643
  }[] | undefined;
5620
5644
  required?: boolean | undefined;
@@ -5633,7 +5657,7 @@ declare function init(config: AuthHeroConfig): {
5633
5657
  hint?: string | undefined;
5634
5658
  messages?: {
5635
5659
  text: string;
5636
- type: "success" | "error" | "info" | "warning";
5660
+ type: "error" | "success" | "info" | "warning";
5637
5661
  id?: number | undefined;
5638
5662
  }[] | undefined;
5639
5663
  required?: boolean | undefined;
@@ -5655,7 +5679,7 @@ declare function init(config: AuthHeroConfig): {
5655
5679
  hint?: string | undefined;
5656
5680
  messages?: {
5657
5681
  text: string;
5658
- type: "success" | "error" | "info" | "warning";
5682
+ type: "error" | "success" | "info" | "warning";
5659
5683
  id?: number | undefined;
5660
5684
  }[] | undefined;
5661
5685
  required?: boolean | undefined;
@@ -5677,7 +5701,7 @@ declare function init(config: AuthHeroConfig): {
5677
5701
  hint?: string | undefined;
5678
5702
  messages?: {
5679
5703
  text: string;
5680
- type: "success" | "error" | "info" | "warning";
5704
+ type: "error" | "success" | "info" | "warning";
5681
5705
  id?: number | undefined;
5682
5706
  }[] | undefined;
5683
5707
  required?: boolean | undefined;
@@ -5696,7 +5720,7 @@ declare function init(config: AuthHeroConfig): {
5696
5720
  hint?: string | undefined;
5697
5721
  messages?: {
5698
5722
  text: string;
5699
- type: "success" | "error" | "info" | "warning";
5723
+ type: "error" | "success" | "info" | "warning";
5700
5724
  id?: number | undefined;
5701
5725
  }[] | undefined;
5702
5726
  required?: boolean | undefined;
@@ -5721,7 +5745,7 @@ declare function init(config: AuthHeroConfig): {
5721
5745
  hint?: string | undefined;
5722
5746
  messages?: {
5723
5747
  text: string;
5724
- type: "success" | "error" | "info" | "warning";
5748
+ type: "error" | "success" | "info" | "warning";
5725
5749
  id?: number | undefined;
5726
5750
  }[] | undefined;
5727
5751
  required?: boolean | undefined;
@@ -5742,7 +5766,7 @@ declare function init(config: AuthHeroConfig): {
5742
5766
  hint?: string | undefined;
5743
5767
  messages?: {
5744
5768
  text: string;
5745
- type: "success" | "error" | "info" | "warning";
5769
+ type: "error" | "success" | "info" | "warning";
5746
5770
  id?: number | undefined;
5747
5771
  }[] | undefined;
5748
5772
  required?: boolean | undefined;
@@ -5763,7 +5787,7 @@ declare function init(config: AuthHeroConfig): {
5763
5787
  hint?: string | undefined;
5764
5788
  messages?: {
5765
5789
  text: string;
5766
- type: "success" | "error" | "info" | "warning";
5790
+ type: "error" | "success" | "info" | "warning";
5767
5791
  id?: number | undefined;
5768
5792
  }[] | undefined;
5769
5793
  required?: boolean | undefined;
@@ -5996,7 +6020,7 @@ declare function init(config: AuthHeroConfig): {
5996
6020
  hint?: string | undefined;
5997
6021
  messages?: {
5998
6022
  text: string;
5999
- type: "success" | "error" | "info" | "warning";
6023
+ type: "error" | "success" | "info" | "warning";
6000
6024
  id?: number | undefined;
6001
6025
  }[] | undefined;
6002
6026
  required?: boolean | undefined;
@@ -6014,7 +6038,7 @@ declare function init(config: AuthHeroConfig): {
6014
6038
  hint?: string | undefined;
6015
6039
  messages?: {
6016
6040
  text: string;
6017
- type: "success" | "error" | "info" | "warning";
6041
+ type: "error" | "success" | "info" | "warning";
6018
6042
  id?: number | undefined;
6019
6043
  }[] | undefined;
6020
6044
  required?: boolean | undefined;
@@ -6038,7 +6062,7 @@ declare function init(config: AuthHeroConfig): {
6038
6062
  hint?: string | undefined;
6039
6063
  messages?: {
6040
6064
  text: string;
6041
- type: "success" | "error" | "info" | "warning";
6065
+ type: "error" | "success" | "info" | "warning";
6042
6066
  id?: number | undefined;
6043
6067
  }[] | undefined;
6044
6068
  required?: boolean | undefined;
@@ -6052,6 +6076,30 @@ declare function init(config: AuthHeroConfig): {
6052
6076
  multiple?: boolean | undefined;
6053
6077
  default_value?: string | string[] | undefined;
6054
6078
  } | undefined;
6079
+ } | {
6080
+ id: string;
6081
+ visible: boolean;
6082
+ type: "CODE";
6083
+ order?: number | undefined;
6084
+ category?: "FIELD" | undefined;
6085
+ label?: string | undefined;
6086
+ hint?: string | undefined;
6087
+ messages?: {
6088
+ text: string;
6089
+ type: "error" | "success" | "info" | "warning";
6090
+ id?: number | undefined;
6091
+ }[] | undefined;
6092
+ required?: boolean | undefined;
6093
+ sensitive?: boolean | undefined;
6094
+ config?: {
6095
+ length?: number | undefined;
6096
+ mode?: "numeric" | "alphanumeric" | undefined;
6097
+ auto_submit?: boolean | undefined;
6098
+ group_size?: number | undefined;
6099
+ separator?: string | undefined;
6100
+ placeholder?: string | undefined;
6101
+ default_value?: string | undefined;
6102
+ } | undefined;
6055
6103
  } | {
6056
6104
  id: string;
6057
6105
  visible: boolean;
@@ -6062,7 +6110,7 @@ declare function init(config: AuthHeroConfig): {
6062
6110
  hint?: string | undefined;
6063
6111
  messages?: {
6064
6112
  text: string;
6065
- type: "success" | "error" | "info" | "warning";
6113
+ type: "error" | "success" | "info" | "warning";
6066
6114
  id?: number | undefined;
6067
6115
  }[] | undefined;
6068
6116
  required?: boolean | undefined;
@@ -6091,7 +6139,7 @@ declare function init(config: AuthHeroConfig): {
6091
6139
  hint?: string | undefined;
6092
6140
  messages?: {
6093
6141
  text: string;
6094
- type: "success" | "error" | "info" | "warning";
6142
+ type: "error" | "success" | "info" | "warning";
6095
6143
  id?: number | undefined;
6096
6144
  }[] | undefined;
6097
6145
  required?: boolean | undefined;
@@ -6106,7 +6154,7 @@ declare function init(config: AuthHeroConfig): {
6106
6154
  hint?: string | undefined;
6107
6155
  messages?: {
6108
6156
  text: string;
6109
- type: "success" | "error" | "info" | "warning";
6157
+ type: "error" | "success" | "info" | "warning";
6110
6158
  id?: number | undefined;
6111
6159
  }[] | undefined;
6112
6160
  required?: boolean | undefined;
@@ -6127,7 +6175,7 @@ declare function init(config: AuthHeroConfig): {
6127
6175
  hint?: string | undefined;
6128
6176
  messages?: {
6129
6177
  text: string;
6130
- type: "success" | "error" | "info" | "warning";
6178
+ type: "error" | "success" | "info" | "warning";
6131
6179
  id?: number | undefined;
6132
6180
  }[] | undefined;
6133
6181
  required?: boolean | undefined;
@@ -6152,7 +6200,7 @@ declare function init(config: AuthHeroConfig): {
6152
6200
  hint?: string | undefined;
6153
6201
  messages?: {
6154
6202
  text: string;
6155
- type: "success" | "error" | "info" | "warning";
6203
+ type: "error" | "success" | "info" | "warning";
6156
6204
  id?: number | undefined;
6157
6205
  }[] | undefined;
6158
6206
  required?: boolean | undefined;
@@ -6171,7 +6219,7 @@ declare function init(config: AuthHeroConfig): {
6171
6219
  hint?: string | undefined;
6172
6220
  messages?: {
6173
6221
  text: string;
6174
- type: "success" | "error" | "info" | "warning";
6222
+ type: "error" | "success" | "info" | "warning";
6175
6223
  id?: number | undefined;
6176
6224
  }[] | undefined;
6177
6225
  required?: boolean | undefined;
@@ -6191,7 +6239,7 @@ declare function init(config: AuthHeroConfig): {
6191
6239
  hint?: string | undefined;
6192
6240
  messages?: {
6193
6241
  text: string;
6194
- type: "success" | "error" | "info" | "warning";
6242
+ type: "error" | "success" | "info" | "warning";
6195
6243
  id?: number | undefined;
6196
6244
  }[] | undefined;
6197
6245
  required?: boolean | undefined;
@@ -6210,7 +6258,7 @@ declare function init(config: AuthHeroConfig): {
6210
6258
  hint?: string | undefined;
6211
6259
  messages?: {
6212
6260
  text: string;
6213
- type: "success" | "error" | "info" | "warning";
6261
+ type: "error" | "success" | "info" | "warning";
6214
6262
  id?: number | undefined;
6215
6263
  }[] | undefined;
6216
6264
  required?: boolean | undefined;
@@ -6232,7 +6280,7 @@ declare function init(config: AuthHeroConfig): {
6232
6280
  hint?: string | undefined;
6233
6281
  messages?: {
6234
6282
  text: string;
6235
- type: "success" | "error" | "info" | "warning";
6283
+ type: "error" | "success" | "info" | "warning";
6236
6284
  id?: number | undefined;
6237
6285
  }[] | undefined;
6238
6286
  required?: boolean | undefined;
@@ -6254,7 +6302,7 @@ declare function init(config: AuthHeroConfig): {
6254
6302
  hint?: string | undefined;
6255
6303
  messages?: {
6256
6304
  text: string;
6257
- type: "success" | "error" | "info" | "warning";
6305
+ type: "error" | "success" | "info" | "warning";
6258
6306
  id?: number | undefined;
6259
6307
  }[] | undefined;
6260
6308
  required?: boolean | undefined;
@@ -6273,7 +6321,7 @@ declare function init(config: AuthHeroConfig): {
6273
6321
  hint?: string | undefined;
6274
6322
  messages?: {
6275
6323
  text: string;
6276
- type: "success" | "error" | "info" | "warning";
6324
+ type: "error" | "success" | "info" | "warning";
6277
6325
  id?: number | undefined;
6278
6326
  }[] | undefined;
6279
6327
  required?: boolean | undefined;
@@ -6298,7 +6346,7 @@ declare function init(config: AuthHeroConfig): {
6298
6346
  hint?: string | undefined;
6299
6347
  messages?: {
6300
6348
  text: string;
6301
- type: "success" | "error" | "info" | "warning";
6349
+ type: "error" | "success" | "info" | "warning";
6302
6350
  id?: number | undefined;
6303
6351
  }[] | undefined;
6304
6352
  required?: boolean | undefined;
@@ -6319,7 +6367,7 @@ declare function init(config: AuthHeroConfig): {
6319
6367
  hint?: string | undefined;
6320
6368
  messages?: {
6321
6369
  text: string;
6322
- type: "success" | "error" | "info" | "warning";
6370
+ type: "error" | "success" | "info" | "warning";
6323
6371
  id?: number | undefined;
6324
6372
  }[] | undefined;
6325
6373
  required?: boolean | undefined;
@@ -6340,7 +6388,7 @@ declare function init(config: AuthHeroConfig): {
6340
6388
  hint?: string | undefined;
6341
6389
  messages?: {
6342
6390
  text: string;
6343
- type: "success" | "error" | "info" | "warning";
6391
+ type: "error" | "success" | "info" | "warning";
6344
6392
  id?: number | undefined;
6345
6393
  }[] | undefined;
6346
6394
  required?: boolean | undefined;
@@ -6588,7 +6636,7 @@ declare function init(config: AuthHeroConfig): {
6588
6636
  hint?: string | undefined;
6589
6637
  messages?: {
6590
6638
  text: string;
6591
- type: "success" | "error" | "info" | "warning";
6639
+ type: "error" | "success" | "info" | "warning";
6592
6640
  id?: number | undefined;
6593
6641
  }[] | undefined;
6594
6642
  required?: boolean | undefined;
@@ -6606,7 +6654,7 @@ declare function init(config: AuthHeroConfig): {
6606
6654
  hint?: string | undefined;
6607
6655
  messages?: {
6608
6656
  text: string;
6609
- type: "success" | "error" | "info" | "warning";
6657
+ type: "error" | "success" | "info" | "warning";
6610
6658
  id?: number | undefined;
6611
6659
  }[] | undefined;
6612
6660
  required?: boolean | undefined;
@@ -6630,7 +6678,7 @@ declare function init(config: AuthHeroConfig): {
6630
6678
  hint?: string | undefined;
6631
6679
  messages?: {
6632
6680
  text: string;
6633
- type: "success" | "error" | "info" | "warning";
6681
+ type: "error" | "success" | "info" | "warning";
6634
6682
  id?: number | undefined;
6635
6683
  }[] | undefined;
6636
6684
  required?: boolean | undefined;
@@ -6644,6 +6692,30 @@ declare function init(config: AuthHeroConfig): {
6644
6692
  multiple?: boolean | undefined;
6645
6693
  default_value?: string | string[] | undefined;
6646
6694
  } | undefined;
6695
+ } | {
6696
+ id: string;
6697
+ visible: boolean;
6698
+ type: "CODE";
6699
+ order?: number | undefined;
6700
+ category?: "FIELD" | undefined;
6701
+ label?: string | undefined;
6702
+ hint?: string | undefined;
6703
+ messages?: {
6704
+ text: string;
6705
+ type: "error" | "success" | "info" | "warning";
6706
+ id?: number | undefined;
6707
+ }[] | undefined;
6708
+ required?: boolean | undefined;
6709
+ sensitive?: boolean | undefined;
6710
+ config?: {
6711
+ length?: number | undefined;
6712
+ mode?: "numeric" | "alphanumeric" | undefined;
6713
+ auto_submit?: boolean | undefined;
6714
+ group_size?: number | undefined;
6715
+ separator?: string | undefined;
6716
+ placeholder?: string | undefined;
6717
+ default_value?: string | undefined;
6718
+ } | undefined;
6647
6719
  } | {
6648
6720
  id: string;
6649
6721
  visible: boolean;
@@ -6654,7 +6726,7 @@ declare function init(config: AuthHeroConfig): {
6654
6726
  hint?: string | undefined;
6655
6727
  messages?: {
6656
6728
  text: string;
6657
- type: "success" | "error" | "info" | "warning";
6729
+ type: "error" | "success" | "info" | "warning";
6658
6730
  id?: number | undefined;
6659
6731
  }[] | undefined;
6660
6732
  required?: boolean | undefined;
@@ -6683,7 +6755,7 @@ declare function init(config: AuthHeroConfig): {
6683
6755
  hint?: string | undefined;
6684
6756
  messages?: {
6685
6757
  text: string;
6686
- type: "success" | "error" | "info" | "warning";
6758
+ type: "error" | "success" | "info" | "warning";
6687
6759
  id?: number | undefined;
6688
6760
  }[] | undefined;
6689
6761
  required?: boolean | undefined;
@@ -6698,7 +6770,7 @@ declare function init(config: AuthHeroConfig): {
6698
6770
  hint?: string | undefined;
6699
6771
  messages?: {
6700
6772
  text: string;
6701
- type: "success" | "error" | "info" | "warning";
6773
+ type: "error" | "success" | "info" | "warning";
6702
6774
  id?: number | undefined;
6703
6775
  }[] | undefined;
6704
6776
  required?: boolean | undefined;
@@ -6719,7 +6791,7 @@ declare function init(config: AuthHeroConfig): {
6719
6791
  hint?: string | undefined;
6720
6792
  messages?: {
6721
6793
  text: string;
6722
- type: "success" | "error" | "info" | "warning";
6794
+ type: "error" | "success" | "info" | "warning";
6723
6795
  id?: number | undefined;
6724
6796
  }[] | undefined;
6725
6797
  required?: boolean | undefined;
@@ -6744,7 +6816,7 @@ declare function init(config: AuthHeroConfig): {
6744
6816
  hint?: string | undefined;
6745
6817
  messages?: {
6746
6818
  text: string;
6747
- type: "success" | "error" | "info" | "warning";
6819
+ type: "error" | "success" | "info" | "warning";
6748
6820
  id?: number | undefined;
6749
6821
  }[] | undefined;
6750
6822
  required?: boolean | undefined;
@@ -6763,7 +6835,7 @@ declare function init(config: AuthHeroConfig): {
6763
6835
  hint?: string | undefined;
6764
6836
  messages?: {
6765
6837
  text: string;
6766
- type: "success" | "error" | "info" | "warning";
6838
+ type: "error" | "success" | "info" | "warning";
6767
6839
  id?: number | undefined;
6768
6840
  }[] | undefined;
6769
6841
  required?: boolean | undefined;
@@ -6783,7 +6855,7 @@ declare function init(config: AuthHeroConfig): {
6783
6855
  hint?: string | undefined;
6784
6856
  messages?: {
6785
6857
  text: string;
6786
- type: "success" | "error" | "info" | "warning";
6858
+ type: "error" | "success" | "info" | "warning";
6787
6859
  id?: number | undefined;
6788
6860
  }[] | undefined;
6789
6861
  required?: boolean | undefined;
@@ -6802,7 +6874,7 @@ declare function init(config: AuthHeroConfig): {
6802
6874
  hint?: string | undefined;
6803
6875
  messages?: {
6804
6876
  text: string;
6805
- type: "success" | "error" | "info" | "warning";
6877
+ type: "error" | "success" | "info" | "warning";
6806
6878
  id?: number | undefined;
6807
6879
  }[] | undefined;
6808
6880
  required?: boolean | undefined;
@@ -6824,7 +6896,7 @@ declare function init(config: AuthHeroConfig): {
6824
6896
  hint?: string | undefined;
6825
6897
  messages?: {
6826
6898
  text: string;
6827
- type: "success" | "error" | "info" | "warning";
6899
+ type: "error" | "success" | "info" | "warning";
6828
6900
  id?: number | undefined;
6829
6901
  }[] | undefined;
6830
6902
  required?: boolean | undefined;
@@ -6846,7 +6918,7 @@ declare function init(config: AuthHeroConfig): {
6846
6918
  hint?: string | undefined;
6847
6919
  messages?: {
6848
6920
  text: string;
6849
- type: "success" | "error" | "info" | "warning";
6921
+ type: "error" | "success" | "info" | "warning";
6850
6922
  id?: number | undefined;
6851
6923
  }[] | undefined;
6852
6924
  required?: boolean | undefined;
@@ -6865,7 +6937,7 @@ declare function init(config: AuthHeroConfig): {
6865
6937
  hint?: string | undefined;
6866
6938
  messages?: {
6867
6939
  text: string;
6868
- type: "success" | "error" | "info" | "warning";
6940
+ type: "error" | "success" | "info" | "warning";
6869
6941
  id?: number | undefined;
6870
6942
  }[] | undefined;
6871
6943
  required?: boolean | undefined;
@@ -6890,7 +6962,7 @@ declare function init(config: AuthHeroConfig): {
6890
6962
  hint?: string | undefined;
6891
6963
  messages?: {
6892
6964
  text: string;
6893
- type: "success" | "error" | "info" | "warning";
6965
+ type: "error" | "success" | "info" | "warning";
6894
6966
  id?: number | undefined;
6895
6967
  }[] | undefined;
6896
6968
  required?: boolean | undefined;
@@ -6911,7 +6983,7 @@ declare function init(config: AuthHeroConfig): {
6911
6983
  hint?: string | undefined;
6912
6984
  messages?: {
6913
6985
  text: string;
6914
- type: "success" | "error" | "info" | "warning";
6986
+ type: "error" | "success" | "info" | "warning";
6915
6987
  id?: number | undefined;
6916
6988
  }[] | undefined;
6917
6989
  required?: boolean | undefined;
@@ -6932,7 +7004,7 @@ declare function init(config: AuthHeroConfig): {
6932
7004
  hint?: string | undefined;
6933
7005
  messages?: {
6934
7006
  text: string;
6935
- type: "success" | "error" | "info" | "warning";
7007
+ type: "error" | "success" | "info" | "warning";
6936
7008
  id?: number | undefined;
6937
7009
  }[] | undefined;
6938
7010
  required?: boolean | undefined;
@@ -7186,7 +7258,7 @@ declare function init(config: AuthHeroConfig): {
7186
7258
  hint?: string | undefined;
7187
7259
  messages?: {
7188
7260
  text: string;
7189
- type: "success" | "error" | "info" | "warning";
7261
+ type: "error" | "success" | "info" | "warning";
7190
7262
  id?: number | undefined;
7191
7263
  }[] | undefined;
7192
7264
  required?: boolean | undefined;
@@ -7204,7 +7276,7 @@ declare function init(config: AuthHeroConfig): {
7204
7276
  hint?: string | undefined;
7205
7277
  messages?: {
7206
7278
  text: string;
7207
- type: "success" | "error" | "info" | "warning";
7279
+ type: "error" | "success" | "info" | "warning";
7208
7280
  id?: number | undefined;
7209
7281
  }[] | undefined;
7210
7282
  required?: boolean | undefined;
@@ -7228,7 +7300,7 @@ declare function init(config: AuthHeroConfig): {
7228
7300
  hint?: string | undefined;
7229
7301
  messages?: {
7230
7302
  text: string;
7231
- type: "success" | "error" | "info" | "warning";
7303
+ type: "error" | "success" | "info" | "warning";
7232
7304
  id?: number | undefined;
7233
7305
  }[] | undefined;
7234
7306
  required?: boolean | undefined;
@@ -7242,6 +7314,30 @@ declare function init(config: AuthHeroConfig): {
7242
7314
  multiple?: boolean | undefined;
7243
7315
  default_value?: string | string[] | undefined;
7244
7316
  } | undefined;
7317
+ } | {
7318
+ id: string;
7319
+ type: "CODE";
7320
+ order?: number | undefined;
7321
+ visible?: boolean | undefined;
7322
+ category?: "FIELD" | undefined;
7323
+ label?: string | undefined;
7324
+ hint?: string | undefined;
7325
+ messages?: {
7326
+ text: string;
7327
+ type: "error" | "success" | "info" | "warning";
7328
+ id?: number | undefined;
7329
+ }[] | undefined;
7330
+ required?: boolean | undefined;
7331
+ sensitive?: boolean | undefined;
7332
+ config?: {
7333
+ length?: number | undefined;
7334
+ mode?: "numeric" | "alphanumeric" | undefined;
7335
+ auto_submit?: boolean | undefined;
7336
+ group_size?: number | undefined;
7337
+ separator?: string | undefined;
7338
+ placeholder?: string | undefined;
7339
+ default_value?: string | undefined;
7340
+ } | undefined;
7245
7341
  } | {
7246
7342
  id: string;
7247
7343
  type: "COUNTRY";
@@ -7252,7 +7348,7 @@ declare function init(config: AuthHeroConfig): {
7252
7348
  hint?: string | undefined;
7253
7349
  messages?: {
7254
7350
  text: string;
7255
- type: "success" | "error" | "info" | "warning";
7351
+ type: "error" | "success" | "info" | "warning";
7256
7352
  id?: number | undefined;
7257
7353
  }[] | undefined;
7258
7354
  required?: boolean | undefined;
@@ -7277,7 +7373,7 @@ declare function init(config: AuthHeroConfig): {
7277
7373
  hint?: string | undefined;
7278
7374
  messages?: {
7279
7375
  text: string;
7280
- type: "success" | "error" | "info" | "warning";
7376
+ type: "error" | "success" | "info" | "warning";
7281
7377
  id?: number | undefined;
7282
7378
  }[] | undefined;
7283
7379
  required?: boolean | undefined;
@@ -7292,7 +7388,7 @@ declare function init(config: AuthHeroConfig): {
7292
7388
  hint?: string | undefined;
7293
7389
  messages?: {
7294
7390
  text: string;
7295
- type: "success" | "error" | "info" | "warning";
7391
+ type: "error" | "success" | "info" | "warning";
7296
7392
  id?: number | undefined;
7297
7393
  }[] | undefined;
7298
7394
  required?: boolean | undefined;
@@ -7313,7 +7409,7 @@ declare function init(config: AuthHeroConfig): {
7313
7409
  hint?: string | undefined;
7314
7410
  messages?: {
7315
7411
  text: string;
7316
- type: "success" | "error" | "info" | "warning";
7412
+ type: "error" | "success" | "info" | "warning";
7317
7413
  id?: number | undefined;
7318
7414
  }[] | undefined;
7319
7415
  required?: boolean | undefined;
@@ -7338,7 +7434,7 @@ declare function init(config: AuthHeroConfig): {
7338
7434
  hint?: string | undefined;
7339
7435
  messages?: {
7340
7436
  text: string;
7341
- type: "success" | "error" | "info" | "warning";
7437
+ type: "error" | "success" | "info" | "warning";
7342
7438
  id?: number | undefined;
7343
7439
  }[] | undefined;
7344
7440
  required?: boolean | undefined;
@@ -7357,7 +7453,7 @@ declare function init(config: AuthHeroConfig): {
7357
7453
  hint?: string | undefined;
7358
7454
  messages?: {
7359
7455
  text: string;
7360
- type: "success" | "error" | "info" | "warning";
7456
+ type: "error" | "success" | "info" | "warning";
7361
7457
  id?: number | undefined;
7362
7458
  }[] | undefined;
7363
7459
  required?: boolean | undefined;
@@ -7377,7 +7473,7 @@ declare function init(config: AuthHeroConfig): {
7377
7473
  hint?: string | undefined;
7378
7474
  messages?: {
7379
7475
  text: string;
7380
- type: "success" | "error" | "info" | "warning";
7476
+ type: "error" | "success" | "info" | "warning";
7381
7477
  id?: number | undefined;
7382
7478
  }[] | undefined;
7383
7479
  required?: boolean | undefined;
@@ -7396,7 +7492,7 @@ declare function init(config: AuthHeroConfig): {
7396
7492
  hint?: string | undefined;
7397
7493
  messages?: {
7398
7494
  text: string;
7399
- type: "success" | "error" | "info" | "warning";
7495
+ type: "error" | "success" | "info" | "warning";
7400
7496
  id?: number | undefined;
7401
7497
  }[] | undefined;
7402
7498
  required?: boolean | undefined;
@@ -7418,7 +7514,7 @@ declare function init(config: AuthHeroConfig): {
7418
7514
  hint?: string | undefined;
7419
7515
  messages?: {
7420
7516
  text: string;
7421
- type: "success" | "error" | "info" | "warning";
7517
+ type: "error" | "success" | "info" | "warning";
7422
7518
  id?: number | undefined;
7423
7519
  }[] | undefined;
7424
7520
  required?: boolean | undefined;
@@ -7440,7 +7536,7 @@ declare function init(config: AuthHeroConfig): {
7440
7536
  hint?: string | undefined;
7441
7537
  messages?: {
7442
7538
  text: string;
7443
- type: "success" | "error" | "info" | "warning";
7539
+ type: "error" | "success" | "info" | "warning";
7444
7540
  id?: number | undefined;
7445
7541
  }[] | undefined;
7446
7542
  required?: boolean | undefined;
@@ -7459,7 +7555,7 @@ declare function init(config: AuthHeroConfig): {
7459
7555
  hint?: string | undefined;
7460
7556
  messages?: {
7461
7557
  text: string;
7462
- type: "success" | "error" | "info" | "warning";
7558
+ type: "error" | "success" | "info" | "warning";
7463
7559
  id?: number | undefined;
7464
7560
  }[] | undefined;
7465
7561
  required?: boolean | undefined;
@@ -7484,7 +7580,7 @@ declare function init(config: AuthHeroConfig): {
7484
7580
  hint?: string | undefined;
7485
7581
  messages?: {
7486
7582
  text: string;
7487
- type: "success" | "error" | "info" | "warning";
7583
+ type: "error" | "success" | "info" | "warning";
7488
7584
  id?: number | undefined;
7489
7585
  }[] | undefined;
7490
7586
  required?: boolean | undefined;
@@ -7505,7 +7601,7 @@ declare function init(config: AuthHeroConfig): {
7505
7601
  hint?: string | undefined;
7506
7602
  messages?: {
7507
7603
  text: string;
7508
- type: "success" | "error" | "info" | "warning";
7604
+ type: "error" | "success" | "info" | "warning";
7509
7605
  id?: number | undefined;
7510
7606
  }[] | undefined;
7511
7607
  required?: boolean | undefined;
@@ -7526,7 +7622,7 @@ declare function init(config: AuthHeroConfig): {
7526
7622
  hint?: string | undefined;
7527
7623
  messages?: {
7528
7624
  text: string;
7529
- type: "success" | "error" | "info" | "warning";
7625
+ type: "error" | "success" | "info" | "warning";
7530
7626
  id?: number | undefined;
7531
7627
  }[] | undefined;
7532
7628
  required?: boolean | undefined;
@@ -7757,7 +7853,7 @@ declare function init(config: AuthHeroConfig): {
7757
7853
  hint?: string | undefined;
7758
7854
  messages?: {
7759
7855
  text: string;
7760
- type: "success" | "error" | "info" | "warning";
7856
+ type: "error" | "success" | "info" | "warning";
7761
7857
  id?: number | undefined;
7762
7858
  }[] | undefined;
7763
7859
  required?: boolean | undefined;
@@ -7775,7 +7871,7 @@ declare function init(config: AuthHeroConfig): {
7775
7871
  hint?: string | undefined;
7776
7872
  messages?: {
7777
7873
  text: string;
7778
- type: "success" | "error" | "info" | "warning";
7874
+ type: "error" | "success" | "info" | "warning";
7779
7875
  id?: number | undefined;
7780
7876
  }[] | undefined;
7781
7877
  required?: boolean | undefined;
@@ -7799,7 +7895,7 @@ declare function init(config: AuthHeroConfig): {
7799
7895
  hint?: string | undefined;
7800
7896
  messages?: {
7801
7897
  text: string;
7802
- type: "success" | "error" | "info" | "warning";
7898
+ type: "error" | "success" | "info" | "warning";
7803
7899
  id?: number | undefined;
7804
7900
  }[] | undefined;
7805
7901
  required?: boolean | undefined;
@@ -7813,6 +7909,30 @@ declare function init(config: AuthHeroConfig): {
7813
7909
  multiple?: boolean | undefined;
7814
7910
  default_value?: string | string[] | undefined;
7815
7911
  } | undefined;
7912
+ } | {
7913
+ id: string;
7914
+ visible: boolean;
7915
+ type: "CODE";
7916
+ order?: number | undefined;
7917
+ category?: "FIELD" | undefined;
7918
+ label?: string | undefined;
7919
+ hint?: string | undefined;
7920
+ messages?: {
7921
+ text: string;
7922
+ type: "error" | "success" | "info" | "warning";
7923
+ id?: number | undefined;
7924
+ }[] | undefined;
7925
+ required?: boolean | undefined;
7926
+ sensitive?: boolean | undefined;
7927
+ config?: {
7928
+ length?: number | undefined;
7929
+ mode?: "numeric" | "alphanumeric" | undefined;
7930
+ auto_submit?: boolean | undefined;
7931
+ group_size?: number | undefined;
7932
+ separator?: string | undefined;
7933
+ placeholder?: string | undefined;
7934
+ default_value?: string | undefined;
7935
+ } | undefined;
7816
7936
  } | {
7817
7937
  id: string;
7818
7938
  visible: boolean;
@@ -7823,7 +7943,7 @@ declare function init(config: AuthHeroConfig): {
7823
7943
  hint?: string | undefined;
7824
7944
  messages?: {
7825
7945
  text: string;
7826
- type: "success" | "error" | "info" | "warning";
7946
+ type: "error" | "success" | "info" | "warning";
7827
7947
  id?: number | undefined;
7828
7948
  }[] | undefined;
7829
7949
  required?: boolean | undefined;
@@ -7852,7 +7972,7 @@ declare function init(config: AuthHeroConfig): {
7852
7972
  hint?: string | undefined;
7853
7973
  messages?: {
7854
7974
  text: string;
7855
- type: "success" | "error" | "info" | "warning";
7975
+ type: "error" | "success" | "info" | "warning";
7856
7976
  id?: number | undefined;
7857
7977
  }[] | undefined;
7858
7978
  required?: boolean | undefined;
@@ -7867,7 +7987,7 @@ declare function init(config: AuthHeroConfig): {
7867
7987
  hint?: string | undefined;
7868
7988
  messages?: {
7869
7989
  text: string;
7870
- type: "success" | "error" | "info" | "warning";
7990
+ type: "error" | "success" | "info" | "warning";
7871
7991
  id?: number | undefined;
7872
7992
  }[] | undefined;
7873
7993
  required?: boolean | undefined;
@@ -7888,7 +8008,7 @@ declare function init(config: AuthHeroConfig): {
7888
8008
  hint?: string | undefined;
7889
8009
  messages?: {
7890
8010
  text: string;
7891
- type: "success" | "error" | "info" | "warning";
8011
+ type: "error" | "success" | "info" | "warning";
7892
8012
  id?: number | undefined;
7893
8013
  }[] | undefined;
7894
8014
  required?: boolean | undefined;
@@ -7913,7 +8033,7 @@ declare function init(config: AuthHeroConfig): {
7913
8033
  hint?: string | undefined;
7914
8034
  messages?: {
7915
8035
  text: string;
7916
- type: "success" | "error" | "info" | "warning";
8036
+ type: "error" | "success" | "info" | "warning";
7917
8037
  id?: number | undefined;
7918
8038
  }[] | undefined;
7919
8039
  required?: boolean | undefined;
@@ -7932,7 +8052,7 @@ declare function init(config: AuthHeroConfig): {
7932
8052
  hint?: string | undefined;
7933
8053
  messages?: {
7934
8054
  text: string;
7935
- type: "success" | "error" | "info" | "warning";
8055
+ type: "error" | "success" | "info" | "warning";
7936
8056
  id?: number | undefined;
7937
8057
  }[] | undefined;
7938
8058
  required?: boolean | undefined;
@@ -7952,7 +8072,7 @@ declare function init(config: AuthHeroConfig): {
7952
8072
  hint?: string | undefined;
7953
8073
  messages?: {
7954
8074
  text: string;
7955
- type: "success" | "error" | "info" | "warning";
8075
+ type: "error" | "success" | "info" | "warning";
7956
8076
  id?: number | undefined;
7957
8077
  }[] | undefined;
7958
8078
  required?: boolean | undefined;
@@ -7971,7 +8091,7 @@ declare function init(config: AuthHeroConfig): {
7971
8091
  hint?: string | undefined;
7972
8092
  messages?: {
7973
8093
  text: string;
7974
- type: "success" | "error" | "info" | "warning";
8094
+ type: "error" | "success" | "info" | "warning";
7975
8095
  id?: number | undefined;
7976
8096
  }[] | undefined;
7977
8097
  required?: boolean | undefined;
@@ -7993,7 +8113,7 @@ declare function init(config: AuthHeroConfig): {
7993
8113
  hint?: string | undefined;
7994
8114
  messages?: {
7995
8115
  text: string;
7996
- type: "success" | "error" | "info" | "warning";
8116
+ type: "error" | "success" | "info" | "warning";
7997
8117
  id?: number | undefined;
7998
8118
  }[] | undefined;
7999
8119
  required?: boolean | undefined;
@@ -8015,7 +8135,7 @@ declare function init(config: AuthHeroConfig): {
8015
8135
  hint?: string | undefined;
8016
8136
  messages?: {
8017
8137
  text: string;
8018
- type: "success" | "error" | "info" | "warning";
8138
+ type: "error" | "success" | "info" | "warning";
8019
8139
  id?: number | undefined;
8020
8140
  }[] | undefined;
8021
8141
  required?: boolean | undefined;
@@ -8034,7 +8154,7 @@ declare function init(config: AuthHeroConfig): {
8034
8154
  hint?: string | undefined;
8035
8155
  messages?: {
8036
8156
  text: string;
8037
- type: "success" | "error" | "info" | "warning";
8157
+ type: "error" | "success" | "info" | "warning";
8038
8158
  id?: number | undefined;
8039
8159
  }[] | undefined;
8040
8160
  required?: boolean | undefined;
@@ -8059,7 +8179,7 @@ declare function init(config: AuthHeroConfig): {
8059
8179
  hint?: string | undefined;
8060
8180
  messages?: {
8061
8181
  text: string;
8062
- type: "success" | "error" | "info" | "warning";
8182
+ type: "error" | "success" | "info" | "warning";
8063
8183
  id?: number | undefined;
8064
8184
  }[] | undefined;
8065
8185
  required?: boolean | undefined;
@@ -8080,7 +8200,7 @@ declare function init(config: AuthHeroConfig): {
8080
8200
  hint?: string | undefined;
8081
8201
  messages?: {
8082
8202
  text: string;
8083
- type: "success" | "error" | "info" | "warning";
8203
+ type: "error" | "success" | "info" | "warning";
8084
8204
  id?: number | undefined;
8085
8205
  }[] | undefined;
8086
8206
  required?: boolean | undefined;
@@ -8101,7 +8221,7 @@ declare function init(config: AuthHeroConfig): {
8101
8221
  hint?: string | undefined;
8102
8222
  messages?: {
8103
8223
  text: string;
8104
- type: "success" | "error" | "info" | "warning";
8224
+ type: "error" | "success" | "info" | "warning";
8105
8225
  id?: number | undefined;
8106
8226
  }[] | undefined;
8107
8227
  required?: boolean | undefined;
@@ -8334,7 +8454,7 @@ declare function init(config: AuthHeroConfig): {
8334
8454
  hint?: string | undefined;
8335
8455
  messages?: {
8336
8456
  text: string;
8337
- type: "success" | "error" | "info" | "warning";
8457
+ type: "error" | "success" | "info" | "warning";
8338
8458
  id?: number | undefined;
8339
8459
  }[] | undefined;
8340
8460
  required?: boolean | undefined;
@@ -8352,7 +8472,7 @@ declare function init(config: AuthHeroConfig): {
8352
8472
  hint?: string | undefined;
8353
8473
  messages?: {
8354
8474
  text: string;
8355
- type: "success" | "error" | "info" | "warning";
8475
+ type: "error" | "success" | "info" | "warning";
8356
8476
  id?: number | undefined;
8357
8477
  }[] | undefined;
8358
8478
  required?: boolean | undefined;
@@ -8376,7 +8496,7 @@ declare function init(config: AuthHeroConfig): {
8376
8496
  hint?: string | undefined;
8377
8497
  messages?: {
8378
8498
  text: string;
8379
- type: "success" | "error" | "info" | "warning";
8499
+ type: "error" | "success" | "info" | "warning";
8380
8500
  id?: number | undefined;
8381
8501
  }[] | undefined;
8382
8502
  required?: boolean | undefined;
@@ -8390,6 +8510,30 @@ declare function init(config: AuthHeroConfig): {
8390
8510
  multiple?: boolean | undefined;
8391
8511
  default_value?: string | string[] | undefined;
8392
8512
  } | undefined;
8513
+ } | {
8514
+ id: string;
8515
+ type: "CODE";
8516
+ order?: number | undefined;
8517
+ visible?: boolean | undefined;
8518
+ category?: "FIELD" | undefined;
8519
+ label?: string | undefined;
8520
+ hint?: string | undefined;
8521
+ messages?: {
8522
+ text: string;
8523
+ type: "error" | "success" | "info" | "warning";
8524
+ id?: number | undefined;
8525
+ }[] | undefined;
8526
+ required?: boolean | undefined;
8527
+ sensitive?: boolean | undefined;
8528
+ config?: {
8529
+ length?: number | undefined;
8530
+ mode?: "numeric" | "alphanumeric" | undefined;
8531
+ auto_submit?: boolean | undefined;
8532
+ group_size?: number | undefined;
8533
+ separator?: string | undefined;
8534
+ placeholder?: string | undefined;
8535
+ default_value?: string | undefined;
8536
+ } | undefined;
8393
8537
  } | {
8394
8538
  id: string;
8395
8539
  type: "COUNTRY";
@@ -8400,7 +8544,7 @@ declare function init(config: AuthHeroConfig): {
8400
8544
  hint?: string | undefined;
8401
8545
  messages?: {
8402
8546
  text: string;
8403
- type: "success" | "error" | "info" | "warning";
8547
+ type: "error" | "success" | "info" | "warning";
8404
8548
  id?: number | undefined;
8405
8549
  }[] | undefined;
8406
8550
  required?: boolean | undefined;
@@ -8425,7 +8569,7 @@ declare function init(config: AuthHeroConfig): {
8425
8569
  hint?: string | undefined;
8426
8570
  messages?: {
8427
8571
  text: string;
8428
- type: "success" | "error" | "info" | "warning";
8572
+ type: "error" | "success" | "info" | "warning";
8429
8573
  id?: number | undefined;
8430
8574
  }[] | undefined;
8431
8575
  required?: boolean | undefined;
@@ -8440,7 +8584,7 @@ declare function init(config: AuthHeroConfig): {
8440
8584
  hint?: string | undefined;
8441
8585
  messages?: {
8442
8586
  text: string;
8443
- type: "success" | "error" | "info" | "warning";
8587
+ type: "error" | "success" | "info" | "warning";
8444
8588
  id?: number | undefined;
8445
8589
  }[] | undefined;
8446
8590
  required?: boolean | undefined;
@@ -8461,7 +8605,7 @@ declare function init(config: AuthHeroConfig): {
8461
8605
  hint?: string | undefined;
8462
8606
  messages?: {
8463
8607
  text: string;
8464
- type: "success" | "error" | "info" | "warning";
8608
+ type: "error" | "success" | "info" | "warning";
8465
8609
  id?: number | undefined;
8466
8610
  }[] | undefined;
8467
8611
  required?: boolean | undefined;
@@ -8486,7 +8630,7 @@ declare function init(config: AuthHeroConfig): {
8486
8630
  hint?: string | undefined;
8487
8631
  messages?: {
8488
8632
  text: string;
8489
- type: "success" | "error" | "info" | "warning";
8633
+ type: "error" | "success" | "info" | "warning";
8490
8634
  id?: number | undefined;
8491
8635
  }[] | undefined;
8492
8636
  required?: boolean | undefined;
@@ -8505,7 +8649,7 @@ declare function init(config: AuthHeroConfig): {
8505
8649
  hint?: string | undefined;
8506
8650
  messages?: {
8507
8651
  text: string;
8508
- type: "success" | "error" | "info" | "warning";
8652
+ type: "error" | "success" | "info" | "warning";
8509
8653
  id?: number | undefined;
8510
8654
  }[] | undefined;
8511
8655
  required?: boolean | undefined;
@@ -8525,7 +8669,7 @@ declare function init(config: AuthHeroConfig): {
8525
8669
  hint?: string | undefined;
8526
8670
  messages?: {
8527
8671
  text: string;
8528
- type: "success" | "error" | "info" | "warning";
8672
+ type: "error" | "success" | "info" | "warning";
8529
8673
  id?: number | undefined;
8530
8674
  }[] | undefined;
8531
8675
  required?: boolean | undefined;
@@ -8544,7 +8688,7 @@ declare function init(config: AuthHeroConfig): {
8544
8688
  hint?: string | undefined;
8545
8689
  messages?: {
8546
8690
  text: string;
8547
- type: "success" | "error" | "info" | "warning";
8691
+ type: "error" | "success" | "info" | "warning";
8548
8692
  id?: number | undefined;
8549
8693
  }[] | undefined;
8550
8694
  required?: boolean | undefined;
@@ -8566,7 +8710,7 @@ declare function init(config: AuthHeroConfig): {
8566
8710
  hint?: string | undefined;
8567
8711
  messages?: {
8568
8712
  text: string;
8569
- type: "success" | "error" | "info" | "warning";
8713
+ type: "error" | "success" | "info" | "warning";
8570
8714
  id?: number | undefined;
8571
8715
  }[] | undefined;
8572
8716
  required?: boolean | undefined;
@@ -8588,7 +8732,7 @@ declare function init(config: AuthHeroConfig): {
8588
8732
  hint?: string | undefined;
8589
8733
  messages?: {
8590
8734
  text: string;
8591
- type: "success" | "error" | "info" | "warning";
8735
+ type: "error" | "success" | "info" | "warning";
8592
8736
  id?: number | undefined;
8593
8737
  }[] | undefined;
8594
8738
  required?: boolean | undefined;
@@ -8607,7 +8751,7 @@ declare function init(config: AuthHeroConfig): {
8607
8751
  hint?: string | undefined;
8608
8752
  messages?: {
8609
8753
  text: string;
8610
- type: "success" | "error" | "info" | "warning";
8754
+ type: "error" | "success" | "info" | "warning";
8611
8755
  id?: number | undefined;
8612
8756
  }[] | undefined;
8613
8757
  required?: boolean | undefined;
@@ -8632,7 +8776,7 @@ declare function init(config: AuthHeroConfig): {
8632
8776
  hint?: string | undefined;
8633
8777
  messages?: {
8634
8778
  text: string;
8635
- type: "success" | "error" | "info" | "warning";
8779
+ type: "error" | "success" | "info" | "warning";
8636
8780
  id?: number | undefined;
8637
8781
  }[] | undefined;
8638
8782
  required?: boolean | undefined;
@@ -8653,7 +8797,7 @@ declare function init(config: AuthHeroConfig): {
8653
8797
  hint?: string | undefined;
8654
8798
  messages?: {
8655
8799
  text: string;
8656
- type: "success" | "error" | "info" | "warning";
8800
+ type: "error" | "success" | "info" | "warning";
8657
8801
  id?: number | undefined;
8658
8802
  }[] | undefined;
8659
8803
  required?: boolean | undefined;
@@ -8674,7 +8818,7 @@ declare function init(config: AuthHeroConfig): {
8674
8818
  hint?: string | undefined;
8675
8819
  messages?: {
8676
8820
  text: string;
8677
- type: "success" | "error" | "info" | "warning";
8821
+ type: "error" | "success" | "info" | "warning";
8678
8822
  id?: number | undefined;
8679
8823
  }[] | undefined;
8680
8824
  required?: boolean | undefined;
@@ -8905,7 +9049,7 @@ declare function init(config: AuthHeroConfig): {
8905
9049
  hint?: string | undefined;
8906
9050
  messages?: {
8907
9051
  text: string;
8908
- type: "success" | "error" | "info" | "warning";
9052
+ type: "error" | "success" | "info" | "warning";
8909
9053
  id?: number | undefined;
8910
9054
  }[] | undefined;
8911
9055
  required?: boolean | undefined;
@@ -8923,7 +9067,7 @@ declare function init(config: AuthHeroConfig): {
8923
9067
  hint?: string | undefined;
8924
9068
  messages?: {
8925
9069
  text: string;
8926
- type: "success" | "error" | "info" | "warning";
9070
+ type: "error" | "success" | "info" | "warning";
8927
9071
  id?: number | undefined;
8928
9072
  }[] | undefined;
8929
9073
  required?: boolean | undefined;
@@ -8947,7 +9091,7 @@ declare function init(config: AuthHeroConfig): {
8947
9091
  hint?: string | undefined;
8948
9092
  messages?: {
8949
9093
  text: string;
8950
- type: "success" | "error" | "info" | "warning";
9094
+ type: "error" | "success" | "info" | "warning";
8951
9095
  id?: number | undefined;
8952
9096
  }[] | undefined;
8953
9097
  required?: boolean | undefined;
@@ -8961,6 +9105,30 @@ declare function init(config: AuthHeroConfig): {
8961
9105
  multiple?: boolean | undefined;
8962
9106
  default_value?: string | string[] | undefined;
8963
9107
  } | undefined;
9108
+ } | {
9109
+ id: string;
9110
+ visible: boolean;
9111
+ type: "CODE";
9112
+ order?: number | undefined;
9113
+ category?: "FIELD" | undefined;
9114
+ label?: string | undefined;
9115
+ hint?: string | undefined;
9116
+ messages?: {
9117
+ text: string;
9118
+ type: "error" | "success" | "info" | "warning";
9119
+ id?: number | undefined;
9120
+ }[] | undefined;
9121
+ required?: boolean | undefined;
9122
+ sensitive?: boolean | undefined;
9123
+ config?: {
9124
+ length?: number | undefined;
9125
+ mode?: "numeric" | "alphanumeric" | undefined;
9126
+ auto_submit?: boolean | undefined;
9127
+ group_size?: number | undefined;
9128
+ separator?: string | undefined;
9129
+ placeholder?: string | undefined;
9130
+ default_value?: string | undefined;
9131
+ } | undefined;
8964
9132
  } | {
8965
9133
  id: string;
8966
9134
  visible: boolean;
@@ -8971,7 +9139,7 @@ declare function init(config: AuthHeroConfig): {
8971
9139
  hint?: string | undefined;
8972
9140
  messages?: {
8973
9141
  text: string;
8974
- type: "success" | "error" | "info" | "warning";
9142
+ type: "error" | "success" | "info" | "warning";
8975
9143
  id?: number | undefined;
8976
9144
  }[] | undefined;
8977
9145
  required?: boolean | undefined;
@@ -9000,7 +9168,7 @@ declare function init(config: AuthHeroConfig): {
9000
9168
  hint?: string | undefined;
9001
9169
  messages?: {
9002
9170
  text: string;
9003
- type: "success" | "error" | "info" | "warning";
9171
+ type: "error" | "success" | "info" | "warning";
9004
9172
  id?: number | undefined;
9005
9173
  }[] | undefined;
9006
9174
  required?: boolean | undefined;
@@ -9015,7 +9183,7 @@ declare function init(config: AuthHeroConfig): {
9015
9183
  hint?: string | undefined;
9016
9184
  messages?: {
9017
9185
  text: string;
9018
- type: "success" | "error" | "info" | "warning";
9186
+ type: "error" | "success" | "info" | "warning";
9019
9187
  id?: number | undefined;
9020
9188
  }[] | undefined;
9021
9189
  required?: boolean | undefined;
@@ -9036,7 +9204,7 @@ declare function init(config: AuthHeroConfig): {
9036
9204
  hint?: string | undefined;
9037
9205
  messages?: {
9038
9206
  text: string;
9039
- type: "success" | "error" | "info" | "warning";
9207
+ type: "error" | "success" | "info" | "warning";
9040
9208
  id?: number | undefined;
9041
9209
  }[] | undefined;
9042
9210
  required?: boolean | undefined;
@@ -9061,7 +9229,7 @@ declare function init(config: AuthHeroConfig): {
9061
9229
  hint?: string | undefined;
9062
9230
  messages?: {
9063
9231
  text: string;
9064
- type: "success" | "error" | "info" | "warning";
9232
+ type: "error" | "success" | "info" | "warning";
9065
9233
  id?: number | undefined;
9066
9234
  }[] | undefined;
9067
9235
  required?: boolean | undefined;
@@ -9080,7 +9248,7 @@ declare function init(config: AuthHeroConfig): {
9080
9248
  hint?: string | undefined;
9081
9249
  messages?: {
9082
9250
  text: string;
9083
- type: "success" | "error" | "info" | "warning";
9251
+ type: "error" | "success" | "info" | "warning";
9084
9252
  id?: number | undefined;
9085
9253
  }[] | undefined;
9086
9254
  required?: boolean | undefined;
@@ -9100,7 +9268,7 @@ declare function init(config: AuthHeroConfig): {
9100
9268
  hint?: string | undefined;
9101
9269
  messages?: {
9102
9270
  text: string;
9103
- type: "success" | "error" | "info" | "warning";
9271
+ type: "error" | "success" | "info" | "warning";
9104
9272
  id?: number | undefined;
9105
9273
  }[] | undefined;
9106
9274
  required?: boolean | undefined;
@@ -9119,7 +9287,7 @@ declare function init(config: AuthHeroConfig): {
9119
9287
  hint?: string | undefined;
9120
9288
  messages?: {
9121
9289
  text: string;
9122
- type: "success" | "error" | "info" | "warning";
9290
+ type: "error" | "success" | "info" | "warning";
9123
9291
  id?: number | undefined;
9124
9292
  }[] | undefined;
9125
9293
  required?: boolean | undefined;
@@ -9141,7 +9309,7 @@ declare function init(config: AuthHeroConfig): {
9141
9309
  hint?: string | undefined;
9142
9310
  messages?: {
9143
9311
  text: string;
9144
- type: "success" | "error" | "info" | "warning";
9312
+ type: "error" | "success" | "info" | "warning";
9145
9313
  id?: number | undefined;
9146
9314
  }[] | undefined;
9147
9315
  required?: boolean | undefined;
@@ -9163,7 +9331,7 @@ declare function init(config: AuthHeroConfig): {
9163
9331
  hint?: string | undefined;
9164
9332
  messages?: {
9165
9333
  text: string;
9166
- type: "success" | "error" | "info" | "warning";
9334
+ type: "error" | "success" | "info" | "warning";
9167
9335
  id?: number | undefined;
9168
9336
  }[] | undefined;
9169
9337
  required?: boolean | undefined;
@@ -9182,7 +9350,7 @@ declare function init(config: AuthHeroConfig): {
9182
9350
  hint?: string | undefined;
9183
9351
  messages?: {
9184
9352
  text: string;
9185
- type: "success" | "error" | "info" | "warning";
9353
+ type: "error" | "success" | "info" | "warning";
9186
9354
  id?: number | undefined;
9187
9355
  }[] | undefined;
9188
9356
  required?: boolean | undefined;
@@ -9207,7 +9375,7 @@ declare function init(config: AuthHeroConfig): {
9207
9375
  hint?: string | undefined;
9208
9376
  messages?: {
9209
9377
  text: string;
9210
- type: "success" | "error" | "info" | "warning";
9378
+ type: "error" | "success" | "info" | "warning";
9211
9379
  id?: number | undefined;
9212
9380
  }[] | undefined;
9213
9381
  required?: boolean | undefined;
@@ -9228,7 +9396,7 @@ declare function init(config: AuthHeroConfig): {
9228
9396
  hint?: string | undefined;
9229
9397
  messages?: {
9230
9398
  text: string;
9231
- type: "success" | "error" | "info" | "warning";
9399
+ type: "error" | "success" | "info" | "warning";
9232
9400
  id?: number | undefined;
9233
9401
  }[] | undefined;
9234
9402
  required?: boolean | undefined;
@@ -9249,7 +9417,7 @@ declare function init(config: AuthHeroConfig): {
9249
9417
  hint?: string | undefined;
9250
9418
  messages?: {
9251
9419
  text: string;
9252
- type: "success" | "error" | "info" | "warning";
9420
+ type: "error" | "success" | "info" | "warning";
9253
9421
  id?: number | undefined;
9254
9422
  }[] | undefined;
9255
9423
  required?: boolean | undefined;
@@ -9479,7 +9647,7 @@ declare function init(config: AuthHeroConfig): {
9479
9647
  };
9480
9648
  };
9481
9649
  output: {
9482
- 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";
9650
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9483
9651
  language: string;
9484
9652
  }[];
9485
9653
  outputFormat: "json";
@@ -9517,7 +9685,7 @@ declare function init(config: AuthHeroConfig): {
9517
9685
  $get: {
9518
9686
  input: {
9519
9687
  param: {
9520
- 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";
9688
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9521
9689
  language: string;
9522
9690
  };
9523
9691
  } & {
@@ -9539,7 +9707,7 @@ declare function init(config: AuthHeroConfig): {
9539
9707
  $put: {
9540
9708
  input: {
9541
9709
  param: {
9542
- 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";
9710
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9543
9711
  language: string;
9544
9712
  };
9545
9713
  } & {
@@ -9563,7 +9731,7 @@ declare function init(config: AuthHeroConfig): {
9563
9731
  $delete: {
9564
9732
  input: {
9565
9733
  param: {
9566
- 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";
9734
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9567
9735
  language: string;
9568
9736
  };
9569
9737
  } & {
@@ -10425,7 +10593,7 @@ declare function init(config: AuthHeroConfig): {
10425
10593
  };
10426
10594
  } | {
10427
10595
  mode: "inline";
10428
- status: "success" | "error";
10596
+ status: "error" | "success";
10429
10597
  connection_id: string;
10430
10598
  connection_name: string;
10431
10599
  strategy: string;
@@ -11064,7 +11232,7 @@ declare function init(config: AuthHeroConfig): {
11064
11232
  log_type: string;
11065
11233
  category: "user_action" | "admin_action" | "system" | "api";
11066
11234
  actor: {
11067
- type: "client_credentials" | "user" | "system" | "admin" | "api_key";
11235
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
11068
11236
  id?: string | undefined;
11069
11237
  email?: string | undefined;
11070
11238
  org_id?: string | undefined;
@@ -11372,7 +11540,7 @@ declare function init(config: AuthHeroConfig): {
11372
11540
  created_at: string;
11373
11541
  updated_at: string;
11374
11542
  name: string;
11375
- provider: "auth0" | "cognito" | "okta" | "oidc";
11543
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11376
11544
  connection: string;
11377
11545
  enabled: boolean;
11378
11546
  credentials: {
@@ -11404,7 +11572,7 @@ declare function init(config: AuthHeroConfig): {
11404
11572
  created_at: string;
11405
11573
  updated_at: string;
11406
11574
  name: string;
11407
- provider: "auth0" | "cognito" | "okta" | "oidc";
11575
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11408
11576
  connection: string;
11409
11577
  enabled: boolean;
11410
11578
  credentials: {
@@ -11430,7 +11598,7 @@ declare function init(config: AuthHeroConfig): {
11430
11598
  } & {
11431
11599
  json: {
11432
11600
  name: string;
11433
- provider: "auth0" | "cognito" | "okta" | "oidc";
11601
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11434
11602
  connection: string;
11435
11603
  credentials: {
11436
11604
  domain: string;
@@ -11447,7 +11615,7 @@ declare function init(config: AuthHeroConfig): {
11447
11615
  created_at: string;
11448
11616
  updated_at: string;
11449
11617
  name: string;
11450
- provider: "auth0" | "cognito" | "okta" | "oidc";
11618
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11451
11619
  connection: string;
11452
11620
  enabled: boolean;
11453
11621
  credentials: {
@@ -11478,7 +11646,7 @@ declare function init(config: AuthHeroConfig): {
11478
11646
  json: {
11479
11647
  id?: string | undefined;
11480
11648
  name?: string | undefined;
11481
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
11649
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
11482
11650
  connection?: string | undefined;
11483
11651
  enabled?: boolean | undefined;
11484
11652
  credentials?: {
@@ -11494,7 +11662,7 @@ declare function init(config: AuthHeroConfig): {
11494
11662
  created_at: string;
11495
11663
  updated_at: string;
11496
11664
  name: string;
11497
- provider: "auth0" | "cognito" | "okta" | "oidc";
11665
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11498
11666
  connection: string;
11499
11667
  enabled: boolean;
11500
11668
  credentials: {
@@ -11712,7 +11880,7 @@ declare function init(config: AuthHeroConfig): {
11712
11880
  };
11713
11881
  };
11714
11882
  output: {
11715
- type: "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" | "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";
11883
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11716
11884
  date: string;
11717
11885
  isMobile: boolean;
11718
11886
  log_id: string;
@@ -11751,7 +11919,7 @@ declare function init(config: AuthHeroConfig): {
11751
11919
  limit: number;
11752
11920
  length: number;
11753
11921
  logs: {
11754
- type: "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" | "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";
11922
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11755
11923
  date: string;
11756
11924
  isMobile: boolean;
11757
11925
  log_id: string;
@@ -11805,7 +11973,7 @@ declare function init(config: AuthHeroConfig): {
11805
11973
  };
11806
11974
  };
11807
11975
  output: {
11808
- type: "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" | "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";
11976
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11809
11977
  date: string;
11810
11978
  isMobile: boolean;
11811
11979
  log_id: string;
@@ -12193,7 +12361,7 @@ declare function init(config: AuthHeroConfig): {
12193
12361
  addons?: {
12194
12362
  [x: string]: any;
12195
12363
  } | undefined;
12196
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12364
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12197
12365
  client_metadata?: {
12198
12366
  [x: string]: string;
12199
12367
  } | undefined;
@@ -12289,7 +12457,7 @@ declare function init(config: AuthHeroConfig): {
12289
12457
  addons?: {
12290
12458
  [x: string]: any;
12291
12459
  } | undefined;
12292
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12460
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12293
12461
  client_metadata?: {
12294
12462
  [x: string]: string;
12295
12463
  } | undefined;
@@ -12400,7 +12568,7 @@ declare function init(config: AuthHeroConfig): {
12400
12568
  addons?: {
12401
12569
  [x: string]: any;
12402
12570
  } | undefined;
12403
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12571
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12404
12572
  client_metadata?: {
12405
12573
  [x: string]: string;
12406
12574
  } | undefined;
@@ -12510,7 +12678,7 @@ declare function init(config: AuthHeroConfig): {
12510
12678
  custom_login_page_preview?: string | undefined;
12511
12679
  form_template?: string | undefined;
12512
12680
  addons?: Record<string, any> | undefined;
12513
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12681
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12514
12682
  client_metadata?: Record<string, string> | undefined;
12515
12683
  hide_sign_up_disabled_error?: boolean | undefined;
12516
12684
  mobile?: Record<string, any> | undefined;
@@ -12590,7 +12758,7 @@ declare function init(config: AuthHeroConfig): {
12590
12758
  addons?: {
12591
12759
  [x: string]: any;
12592
12760
  } | undefined;
12593
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12761
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12594
12762
  client_metadata?: {
12595
12763
  [x: string]: string;
12596
12764
  } | undefined;
@@ -12679,7 +12847,7 @@ declare function init(config: AuthHeroConfig): {
12679
12847
  custom_login_page_preview?: string | undefined;
12680
12848
  form_template?: string | undefined;
12681
12849
  addons?: Record<string, any> | undefined;
12682
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12850
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12683
12851
  client_metadata?: Record<string, string> | undefined;
12684
12852
  hide_sign_up_disabled_error?: boolean | undefined;
12685
12853
  mobile?: Record<string, any> | undefined;
@@ -12759,7 +12927,7 @@ declare function init(config: AuthHeroConfig): {
12759
12927
  addons?: {
12760
12928
  [x: string]: any;
12761
12929
  } | undefined;
12762
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12930
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12763
12931
  client_metadata?: {
12764
12932
  [x: string]: string;
12765
12933
  } | undefined;
@@ -14023,7 +14191,7 @@ declare function init(config: AuthHeroConfig): {
14023
14191
  };
14024
14192
  };
14025
14193
  output: {
14026
- type: "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" | "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";
14194
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14027
14195
  date: string;
14028
14196
  isMobile: boolean;
14029
14197
  log_id: string;
@@ -14062,7 +14230,7 @@ declare function init(config: AuthHeroConfig): {
14062
14230
  limit: number;
14063
14231
  length: number;
14064
14232
  logs: {
14065
- type: "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" | "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";
14233
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14066
14234
  date: string;
14067
14235
  isMobile: boolean;
14068
14236
  log_id: string;
@@ -14377,7 +14545,7 @@ declare function init(config: AuthHeroConfig): {
14377
14545
  };
14378
14546
  } & {
14379
14547
  json: {
14380
- 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";
14548
+ 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";
14381
14549
  body: string;
14382
14550
  from: string;
14383
14551
  subject: string;
@@ -14398,7 +14566,7 @@ declare function init(config: AuthHeroConfig): {
14398
14566
  };
14399
14567
  } & {
14400
14568
  json: {
14401
- 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";
14569
+ 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";
14402
14570
  body: string;
14403
14571
  from: string;
14404
14572
  subject: string;
@@ -14410,7 +14578,7 @@ declare function init(config: AuthHeroConfig): {
14410
14578
  };
14411
14579
  };
14412
14580
  output: {
14413
- 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";
14581
+ 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";
14414
14582
  body: string;
14415
14583
  from: string;
14416
14584
  subject: string;
@@ -14433,7 +14601,7 @@ declare function init(config: AuthHeroConfig): {
14433
14601
  };
14434
14602
  };
14435
14603
  output: {
14436
- 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";
14604
+ 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";
14437
14605
  body: string;
14438
14606
  subject: string;
14439
14607
  }[];
@@ -14446,7 +14614,7 @@ declare function init(config: AuthHeroConfig): {
14446
14614
  $get: {
14447
14615
  input: {
14448
14616
  param: {
14449
- 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";
14617
+ 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";
14450
14618
  };
14451
14619
  } & {
14452
14620
  header: {
@@ -14459,7 +14627,7 @@ declare function init(config: AuthHeroConfig): {
14459
14627
  } | {
14460
14628
  input: {
14461
14629
  param: {
14462
- 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";
14630
+ 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";
14463
14631
  };
14464
14632
  } & {
14465
14633
  header: {
@@ -14467,7 +14635,7 @@ declare function init(config: AuthHeroConfig): {
14467
14635
  };
14468
14636
  };
14469
14637
  output: {
14470
- 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";
14638
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14471
14639
  body: string;
14472
14640
  from: string;
14473
14641
  subject: string;
@@ -14486,7 +14654,7 @@ declare function init(config: AuthHeroConfig): {
14486
14654
  $put: {
14487
14655
  input: {
14488
14656
  param: {
14489
- 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";
14657
+ 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";
14490
14658
  };
14491
14659
  } & {
14492
14660
  header: {
@@ -14494,7 +14662,7 @@ declare function init(config: AuthHeroConfig): {
14494
14662
  };
14495
14663
  } & {
14496
14664
  json: {
14497
- 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";
14665
+ 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";
14498
14666
  body: string;
14499
14667
  subject: string;
14500
14668
  syntax?: "liquid" | undefined;
@@ -14506,7 +14674,7 @@ declare function init(config: AuthHeroConfig): {
14506
14674
  };
14507
14675
  };
14508
14676
  output: {
14509
- 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";
14677
+ 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";
14510
14678
  body: string;
14511
14679
  from: string;
14512
14680
  subject: string;
@@ -14525,7 +14693,7 @@ declare function init(config: AuthHeroConfig): {
14525
14693
  $patch: {
14526
14694
  input: {
14527
14695
  param: {
14528
- 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";
14696
+ 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";
14529
14697
  };
14530
14698
  } & {
14531
14699
  header: {
@@ -14533,7 +14701,7 @@ declare function init(config: AuthHeroConfig): {
14533
14701
  };
14534
14702
  } & {
14535
14703
  json: {
14536
- 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;
14704
+ 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;
14537
14705
  body?: string | undefined;
14538
14706
  from?: string | undefined;
14539
14707
  subject?: string | undefined;
@@ -14550,7 +14718,7 @@ declare function init(config: AuthHeroConfig): {
14550
14718
  } | {
14551
14719
  input: {
14552
14720
  param: {
14553
- 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";
14721
+ 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";
14554
14722
  };
14555
14723
  } & {
14556
14724
  header: {
@@ -14558,7 +14726,7 @@ declare function init(config: AuthHeroConfig): {
14558
14726
  };
14559
14727
  } & {
14560
14728
  json: {
14561
- 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;
14729
+ 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;
14562
14730
  body?: string | undefined;
14563
14731
  from?: string | undefined;
14564
14732
  subject?: string | undefined;
@@ -14570,7 +14738,7 @@ declare function init(config: AuthHeroConfig): {
14570
14738
  };
14571
14739
  };
14572
14740
  output: {
14573
- 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";
14741
+ 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";
14574
14742
  body: string;
14575
14743
  from: string;
14576
14744
  subject: string;
@@ -14589,7 +14757,7 @@ declare function init(config: AuthHeroConfig): {
14589
14757
  $delete: {
14590
14758
  input: {
14591
14759
  param: {
14592
- 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";
14760
+ 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";
14593
14761
  };
14594
14762
  } & {
14595
14763
  header: {
@@ -14602,7 +14770,7 @@ declare function init(config: AuthHeroConfig): {
14602
14770
  } | {
14603
14771
  input: {
14604
14772
  param: {
14605
- 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";
14773
+ 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";
14606
14774
  };
14607
14775
  } & {
14608
14776
  header: {
@@ -14619,7 +14787,7 @@ declare function init(config: AuthHeroConfig): {
14619
14787
  $post: {
14620
14788
  input: {
14621
14789
  param: {
14622
- 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";
14790
+ 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";
14623
14791
  };
14624
14792
  } & {
14625
14793
  header: {
@@ -14902,7 +15070,7 @@ declare function init(config: AuthHeroConfig): {
14902
15070
  type: "auth0_managed_certs" | "self_managed_certs";
14903
15071
  custom_domain_id: string;
14904
15072
  primary: boolean;
14905
- status: "disabled" | "pending" | "ready" | "pending_verification";
15073
+ status: "pending" | "ready" | "disabled" | "pending_verification";
14906
15074
  verification_method?: "txt" | undefined;
14907
15075
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14908
15076
  domain_metadata?: {
@@ -14943,7 +15111,7 @@ declare function init(config: AuthHeroConfig): {
14943
15111
  type: "auth0_managed_certs" | "self_managed_certs";
14944
15112
  custom_domain_id: string;
14945
15113
  primary: boolean;
14946
- status: "disabled" | "pending" | "ready" | "pending_verification";
15114
+ status: "pending" | "ready" | "disabled" | "pending_verification";
14947
15115
  verification_method?: "txt" | undefined;
14948
15116
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14949
15117
  domain_metadata?: {
@@ -15007,7 +15175,7 @@ declare function init(config: AuthHeroConfig): {
15007
15175
  type: "auth0_managed_certs" | "self_managed_certs";
15008
15176
  custom_domain_id: string;
15009
15177
  primary: boolean;
15010
- status: "disabled" | "pending" | "ready" | "pending_verification";
15178
+ status: "pending" | "ready" | "disabled" | "pending_verification";
15011
15179
  verification_method?: "txt" | undefined;
15012
15180
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15013
15181
  domain_metadata?: {
@@ -15054,7 +15222,7 @@ declare function init(config: AuthHeroConfig): {
15054
15222
  type: "auth0_managed_certs" | "self_managed_certs";
15055
15223
  custom_domain_id: string;
15056
15224
  primary: boolean;
15057
- status: "disabled" | "pending" | "ready" | "pending_verification";
15225
+ status: "pending" | "ready" | "disabled" | "pending_verification";
15058
15226
  verification_method?: "txt" | undefined;
15059
15227
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15060
15228
  domain_metadata?: {
@@ -15100,7 +15268,7 @@ declare function init(config: AuthHeroConfig): {
15100
15268
  type: "auth0_managed_certs" | "self_managed_certs";
15101
15269
  custom_domain_id: string;
15102
15270
  primary: boolean;
15103
- status: "disabled" | "pending" | "ready" | "pending_verification";
15271
+ status: "pending" | "ready" | "disabled" | "pending_verification";
15104
15272
  verification_method?: "txt" | undefined;
15105
15273
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15106
15274
  domain_metadata?: {
@@ -15141,7 +15309,7 @@ declare function init(config: AuthHeroConfig): {
15141
15309
  type: "auth0_managed_certs" | "self_managed_certs";
15142
15310
  custom_domain_id: string;
15143
15311
  primary: boolean;
15144
- status: "disabled" | "pending" | "ready" | "pending_verification";
15312
+ status: "pending" | "ready" | "disabled" | "pending_verification";
15145
15313
  verification_method?: "txt" | undefined;
15146
15314
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15147
15315
  domain_metadata?: {
@@ -15561,6 +15729,120 @@ declare function init(config: AuthHeroConfig): {
15561
15729
  status: 204;
15562
15730
  };
15563
15731
  };
15732
+ } & {
15733
+ "/templates/universal-login/preview": {
15734
+ $post: {
15735
+ input: {
15736
+ header: {
15737
+ "tenant-id"?: string | undefined;
15738
+ };
15739
+ } & {
15740
+ json: {
15741
+ body?: string | undefined;
15742
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
15743
+ branding?: {
15744
+ colors?: {
15745
+ primary: string;
15746
+ page_background?: string | {
15747
+ type?: string | undefined;
15748
+ start?: string | undefined;
15749
+ end?: string | undefined;
15750
+ angle_deg?: number | undefined;
15751
+ } | undefined;
15752
+ } | undefined;
15753
+ logo_url?: string | undefined;
15754
+ favicon_url?: string | undefined;
15755
+ powered_by_logo_url?: string | undefined;
15756
+ font?: {
15757
+ url: string;
15758
+ } | undefined;
15759
+ dark_mode?: "dark" | "light" | "auto" | undefined;
15760
+ } | undefined;
15761
+ theme?: {
15762
+ borders?: {
15763
+ button_border_radius: number;
15764
+ button_border_weight: number;
15765
+ buttons_style: "pill" | "rounded" | "sharp";
15766
+ input_border_radius: number;
15767
+ input_border_weight: number;
15768
+ inputs_style: "pill" | "rounded" | "sharp";
15769
+ show_widget_shadow: boolean;
15770
+ widget_border_weight: number;
15771
+ widget_corner_radius: number;
15772
+ } | undefined;
15773
+ colors?: {
15774
+ base_focus_color: string;
15775
+ base_hover_color: string;
15776
+ body_text: string;
15777
+ captcha_widget_theme: "dark" | "light" | "auto";
15778
+ error: string;
15779
+ header: string;
15780
+ icons: string;
15781
+ input_background: string;
15782
+ input_border: string;
15783
+ input_filled_text: string;
15784
+ input_labels_placeholders: string;
15785
+ links_focused_components: string;
15786
+ primary_button: string;
15787
+ primary_button_label: string;
15788
+ secondary_button_border: string;
15789
+ secondary_button_label: string;
15790
+ success: string;
15791
+ widget_background: string;
15792
+ widget_border: string;
15793
+ } | undefined;
15794
+ displayName?: string | undefined;
15795
+ fonts?: {
15796
+ body_text: {
15797
+ bold: boolean;
15798
+ size: number;
15799
+ };
15800
+ buttons_text: {
15801
+ bold: boolean;
15802
+ size: number;
15803
+ };
15804
+ font_url: string;
15805
+ input_labels: {
15806
+ bold: boolean;
15807
+ size: number;
15808
+ };
15809
+ links: {
15810
+ bold: boolean;
15811
+ size: number;
15812
+ };
15813
+ links_style: "normal" | "underlined";
15814
+ reference_text_size: number;
15815
+ subtitle: {
15816
+ bold: boolean;
15817
+ size: number;
15818
+ };
15819
+ title: {
15820
+ bold: boolean;
15821
+ size: number;
15822
+ };
15823
+ } | undefined;
15824
+ page_background?: {
15825
+ background_color: string;
15826
+ background_image_url: string;
15827
+ page_layout: "center" | "left" | "right";
15828
+ logo_placement?: "none" | "widget" | "chip" | undefined;
15829
+ } | undefined;
15830
+ widget?: {
15831
+ header_text_alignment: "center" | "left" | "right";
15832
+ logo_height: number;
15833
+ logo_position: "none" | "center" | "left" | "right";
15834
+ logo_url: string;
15835
+ social_buttons_layout: "bottom" | "top";
15836
+ } | undefined;
15837
+ themeId?: string | undefined;
15838
+ } | undefined;
15839
+ };
15840
+ };
15841
+ output: Response;
15842
+ outputFormat: "json";
15843
+ status: hono_utils_http_status.StatusCode;
15844
+ };
15845
+ };
15564
15846
  }, "/branding"> & hono_types.MergeSchemaPath<{
15565
15847
  "/:triggerId/bindings": {
15566
15848
  $get: {
@@ -16713,7 +16995,7 @@ declare function init(config: AuthHeroConfig): {
16713
16995
  scope?: string | undefined;
16714
16996
  grant_types?: string[] | undefined;
16715
16997
  response_types?: string[] | undefined;
16716
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
16998
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
16717
16999
  jwks_uri?: string | undefined;
16718
17000
  jwks?: Record<string, unknown> | undefined;
16719
17001
  software_id?: string | undefined;
@@ -16802,7 +17084,7 @@ declare function init(config: AuthHeroConfig): {
16802
17084
  scope?: string | undefined;
16803
17085
  grant_types?: string[] | undefined;
16804
17086
  response_types?: string[] | undefined;
16805
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
17087
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
16806
17088
  jwks_uri?: string | undefined;
16807
17089
  jwks?: Record<string, unknown> | undefined;
16808
17090
  software_id?: string | undefined;
@@ -17148,19 +17430,19 @@ declare function init(config: AuthHeroConfig): {
17148
17430
  email: string;
17149
17431
  send: "code" | "link";
17150
17432
  authParams: {
17433
+ username?: string | undefined;
17434
+ state?: string | undefined;
17435
+ audience?: string | undefined;
17151
17436
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17152
17437
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17153
17438
  scope?: string | undefined;
17154
- username?: string | undefined;
17155
- audience?: string | undefined;
17156
- code_challenge?: string | undefined;
17157
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17158
- redirect_uri?: string | undefined;
17439
+ organization?: string | undefined;
17159
17440
  nonce?: string | undefined;
17160
- state?: string | undefined;
17441
+ redirect_uri?: string | undefined;
17161
17442
  act_as?: string | undefined;
17162
- organization?: string | undefined;
17163
17443
  prompt?: string | undefined;
17444
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17445
+ code_challenge?: string | undefined;
17164
17446
  ui_locales?: string | undefined;
17165
17447
  max_age?: number | undefined;
17166
17448
  acr_values?: string | undefined;
@@ -17184,19 +17466,19 @@ declare function init(config: AuthHeroConfig): {
17184
17466
  phone_number: string;
17185
17467
  send: "code" | "link";
17186
17468
  authParams: {
17469
+ username?: string | undefined;
17470
+ state?: string | undefined;
17471
+ audience?: string | undefined;
17187
17472
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17188
17473
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17189
17474
  scope?: string | undefined;
17190
- username?: string | undefined;
17191
- audience?: string | undefined;
17192
- code_challenge?: string | undefined;
17193
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17194
- redirect_uri?: string | undefined;
17475
+ organization?: string | undefined;
17195
17476
  nonce?: string | undefined;
17196
- state?: string | undefined;
17477
+ redirect_uri?: string | undefined;
17197
17478
  act_as?: string | undefined;
17198
- organization?: string | undefined;
17199
17479
  prompt?: string | undefined;
17480
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17481
+ code_challenge?: string | undefined;
17200
17482
  ui_locales?: string | undefined;
17201
17483
  max_age?: number | undefined;
17202
17484
  acr_values?: string | undefined;
@@ -17328,14 +17610,14 @@ declare function init(config: AuthHeroConfig): {
17328
17610
  input: {
17329
17611
  form: {
17330
17612
  token: string;
17331
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17613
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17332
17614
  client_id?: string | undefined;
17333
17615
  client_secret?: string | undefined;
17334
17616
  };
17335
17617
  } & {
17336
17618
  json: {
17337
17619
  token: string;
17338
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17620
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17339
17621
  client_id?: string | undefined;
17340
17622
  client_secret?: string | undefined;
17341
17623
  };
@@ -17347,14 +17629,14 @@ declare function init(config: AuthHeroConfig): {
17347
17629
  input: {
17348
17630
  form: {
17349
17631
  token: string;
17350
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17632
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17351
17633
  client_id?: string | undefined;
17352
17634
  client_secret?: string | undefined;
17353
17635
  };
17354
17636
  } & {
17355
17637
  json: {
17356
17638
  token: string;
17357
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17639
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17358
17640
  client_id?: string | undefined;
17359
17641
  client_secret?: string | undefined;
17360
17642
  };
@@ -17369,14 +17651,14 @@ declare function init(config: AuthHeroConfig): {
17369
17651
  input: {
17370
17652
  form: {
17371
17653
  token: string;
17372
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17654
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17373
17655
  client_id?: string | undefined;
17374
17656
  client_secret?: string | undefined;
17375
17657
  };
17376
17658
  } & {
17377
17659
  json: {
17378
17660
  token: string;
17379
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17661
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17380
17662
  client_id?: string | undefined;
17381
17663
  client_secret?: string | undefined;
17382
17664
  };
@@ -17426,7 +17708,7 @@ declare function init(config: AuthHeroConfig): {
17426
17708
  client_id: string;
17427
17709
  username: string;
17428
17710
  otp: string;
17429
- realm: "email" | "sms";
17711
+ realm: "sms" | "email";
17430
17712
  } | {
17431
17713
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17432
17714
  subject_token: string;
@@ -17473,7 +17755,7 @@ declare function init(config: AuthHeroConfig): {
17473
17755
  client_id: string;
17474
17756
  username: string;
17475
17757
  otp: string;
17476
- realm: "email" | "sms";
17758
+ realm: "sms" | "email";
17477
17759
  } | {
17478
17760
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17479
17761
  subject_token: string;
@@ -17525,7 +17807,7 @@ declare function init(config: AuthHeroConfig): {
17525
17807
  client_id: string;
17526
17808
  username: string;
17527
17809
  otp: string;
17528
- realm: "email" | "sms";
17810
+ realm: "sms" | "email";
17529
17811
  } | {
17530
17812
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17531
17813
  subject_token: string;
@@ -17572,7 +17854,7 @@ declare function init(config: AuthHeroConfig): {
17572
17854
  client_id: string;
17573
17855
  username: string;
17574
17856
  otp: string;
17575
- realm: "email" | "sms";
17857
+ realm: "sms" | "email";
17576
17858
  } | {
17577
17859
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17578
17860
  subject_token: string;
@@ -17632,7 +17914,7 @@ declare function init(config: AuthHeroConfig): {
17632
17914
  client_id: string;
17633
17915
  username: string;
17634
17916
  otp: string;
17635
- realm: "email" | "sms";
17917
+ realm: "sms" | "email";
17636
17918
  } | {
17637
17919
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17638
17920
  subject_token: string;
@@ -17679,7 +17961,7 @@ declare function init(config: AuthHeroConfig): {
17679
17961
  client_id: string;
17680
17962
  username: string;
17681
17963
  otp: string;
17682
- realm: "email" | "sms";
17964
+ realm: "sms" | "email";
17683
17965
  } | {
17684
17966
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17685
17967
  subject_token: string;
@@ -17734,7 +18016,7 @@ declare function init(config: AuthHeroConfig): {
17734
18016
  client_id: string;
17735
18017
  username: string;
17736
18018
  otp: string;
17737
- realm: "email" | "sms";
18019
+ realm: "sms" | "email";
17738
18020
  } | {
17739
18021
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17740
18022
  subject_token: string;
@@ -17781,7 +18063,7 @@ declare function init(config: AuthHeroConfig): {
17781
18063
  client_id: string;
17782
18064
  username: string;
17783
18065
  otp: string;
17784
- realm: "email" | "sms";
18066
+ realm: "sms" | "email";
17785
18067
  } | {
17786
18068
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17787
18069
  subject_token: string;
@@ -17836,7 +18118,7 @@ declare function init(config: AuthHeroConfig): {
17836
18118
  client_id: string;
17837
18119
  username: string;
17838
18120
  otp: string;
17839
- realm: "email" | "sms";
18121
+ realm: "sms" | "email";
17840
18122
  } | {
17841
18123
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17842
18124
  subject_token: string;
@@ -17883,7 +18165,7 @@ declare function init(config: AuthHeroConfig): {
17883
18165
  client_id: string;
17884
18166
  username: string;
17885
18167
  otp: string;
17886
- realm: "email" | "sms";
18168
+ realm: "sms" | "email";
17887
18169
  } | {
17888
18170
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17889
18171
  subject_token: string;
@@ -19103,7 +19385,7 @@ declare function init(config: AuthHeroConfig): {
19103
19385
  $get: {
19104
19386
  input: {
19105
19387
  param: {
19106
- screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19388
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19107
19389
  };
19108
19390
  } & {
19109
19391
  query: {
@@ -19119,7 +19401,7 @@ declare function init(config: AuthHeroConfig): {
19119
19401
  } | {
19120
19402
  input: {
19121
19403
  param: {
19122
- screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19404
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19123
19405
  };
19124
19406
  } & {
19125
19407
  query: {
@@ -19135,7 +19417,7 @@ declare function init(config: AuthHeroConfig): {
19135
19417
  } | {
19136
19418
  input: {
19137
19419
  param: {
19138
- screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19420
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19139
19421
  };
19140
19422
  } & {
19141
19423
  query: {
@@ -19155,7 +19437,7 @@ declare function init(config: AuthHeroConfig): {
19155
19437
  $post: {
19156
19438
  input: {
19157
19439
  param: {
19158
- 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";
19440
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19159
19441
  };
19160
19442
  } & {
19161
19443
  query: {
@@ -19173,7 +19455,7 @@ declare function init(config: AuthHeroConfig): {
19173
19455
  } | {
19174
19456
  input: {
19175
19457
  param: {
19176
- 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";
19458
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19177
19459
  };
19178
19460
  } & {
19179
19461
  query: {
@@ -19191,7 +19473,7 @@ declare function init(config: AuthHeroConfig): {
19191
19473
  } | {
19192
19474
  input: {
19193
19475
  param: {
19194
- 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";
19476
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19195
19477
  };
19196
19478
  } & {
19197
19479
  query: {