authhero 8.19.0 → 8.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +142 -142
  3. package/dist/authhero.d.ts +317 -250
  4. package/dist/authhero.mjs +14752 -16956
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +4 -4
  7. package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
  8. package/dist/types/helpers/hook-events.d.ts +35 -15
  9. package/dist/types/hooks/link-users.d.ts +9 -1
  10. package/dist/types/hooks/user-registration.d.ts +8 -5
  11. package/dist/types/index.d.ts +317 -250
  12. package/dist/types/routes/auth-api/index.d.ts +22 -22
  13. package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
  14. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  15. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  16. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  17. package/dist/types/routes/management-api/actions.d.ts +3 -1
  18. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  19. package/dist/types/routes/management-api/branding.d.ts +1 -1
  20. package/dist/types/routes/management-api/client-grants.d.ts +24 -8
  21. package/dist/types/routes/management-api/clients.d.ts +14 -13
  22. package/dist/types/routes/management-api/connections.d.ts +17 -16
  23. package/dist/types/routes/management-api/flows.d.ts +1 -0
  24. package/dist/types/routes/management-api/forms.d.ts +127 -126
  25. package/dist/types/routes/management-api/grants.d.ts +1 -0
  26. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  27. package/dist/types/routes/management-api/hooks.d.ts +25 -24
  28. package/dist/types/routes/management-api/index.d.ts +288 -221
  29. package/dist/types/routes/management-api/logs.d.ts +4 -3
  30. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  31. package/dist/types/routes/management-api/organizations.d.ts +36 -2
  32. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  33. package/dist/types/routes/management-api/resource-servers.d.ts +1 -0
  34. package/dist/types/routes/management-api/roles.d.ts +8 -6
  35. package/dist/types/routes/management-api/tenants.d.ts +1 -1
  36. package/dist/types/routes/management-api/users.d.ts +7 -2
  37. package/dist/types/routes/universal-login/common.d.ts +8 -8
  38. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  39. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  40. package/dist/types/routes/universal-login/index.d.ts +2 -2
  41. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  42. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  43. package/dist/types/types/IdToken.d.ts +1 -1
  44. package/package.json +6 -6
@@ -3273,7 +3273,7 @@ declare function init(config: AuthHeroConfig): {
3273
3273
  };
3274
3274
  } & {
3275
3275
  json: {
3276
- type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
3276
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
3277
3277
  phone_number?: string | undefined;
3278
3278
  totp_secret?: string | undefined;
3279
3279
  credential_id?: string | undefined;
@@ -3413,7 +3413,7 @@ declare function init(config: AuthHeroConfig): {
3413
3413
  };
3414
3414
  };
3415
3415
  output: {
3416
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3416
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3417
3417
  enabled: boolean;
3418
3418
  trial_expired?: boolean | undefined;
3419
3419
  }[];
@@ -3568,7 +3568,7 @@ declare function init(config: AuthHeroConfig): {
3568
3568
  $get: {
3569
3569
  input: {
3570
3570
  param: {
3571
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3571
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3572
3572
  };
3573
3573
  } & {
3574
3574
  header: {
@@ -3576,7 +3576,7 @@ declare function init(config: AuthHeroConfig): {
3576
3576
  };
3577
3577
  };
3578
3578
  output: {
3579
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3579
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3580
3580
  enabled: boolean;
3581
3581
  trial_expired?: boolean | undefined;
3582
3582
  };
@@ -3589,7 +3589,7 @@ declare function init(config: AuthHeroConfig): {
3589
3589
  $put: {
3590
3590
  input: {
3591
3591
  param: {
3592
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3592
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3593
3593
  };
3594
3594
  } & {
3595
3595
  header: {
@@ -3601,7 +3601,7 @@ declare function init(config: AuthHeroConfig): {
3601
3601
  };
3602
3602
  };
3603
3603
  output: {
3604
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3604
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3605
3605
  enabled: boolean;
3606
3606
  trial_expired?: boolean | undefined;
3607
3607
  };
@@ -3731,6 +3731,39 @@ declare function init(config: AuthHeroConfig): {
3731
3731
  } | undefined;
3732
3732
  }[];
3733
3733
  total?: number | undefined;
3734
+ next?: string | undefined;
3735
+ } | {
3736
+ organizations: {
3737
+ created_at: string;
3738
+ updated_at: string;
3739
+ id: string;
3740
+ name: string;
3741
+ display_name?: string | undefined;
3742
+ branding?: {
3743
+ logo_url?: string | undefined;
3744
+ colors?: {
3745
+ primary?: string | undefined;
3746
+ page_background?: string | undefined;
3747
+ } | undefined;
3748
+ } | undefined;
3749
+ metadata?: {
3750
+ [x: string]: any;
3751
+ } | undefined;
3752
+ enabled_connections?: {
3753
+ connection_id: string;
3754
+ assign_membership_on_login: boolean;
3755
+ show_as_button: boolean;
3756
+ is_signup_enabled: boolean;
3757
+ }[] | undefined;
3758
+ token_quota?: {
3759
+ client_credentials?: {
3760
+ enforce: boolean;
3761
+ per_day: number;
3762
+ per_hour: number;
3763
+ } | undefined;
3764
+ } | undefined;
3765
+ }[];
3766
+ next?: string | undefined;
3734
3767
  };
3735
3768
  outputFormat: "json";
3736
3769
  status: 200;
@@ -4346,11 +4379,11 @@ declare function init(config: AuthHeroConfig): {
4346
4379
  invitee: {
4347
4380
  email?: string | undefined;
4348
4381
  };
4349
- roles?: string[] | undefined;
4350
4382
  id?: string | undefined;
4383
+ connection_id?: string | undefined;
4384
+ roles?: string[] | undefined;
4351
4385
  app_metadata?: Record<string, any> | undefined;
4352
4386
  user_metadata?: Record<string, any> | undefined;
4353
- connection_id?: string | undefined;
4354
4387
  ttl_sec?: number | undefined;
4355
4388
  send_invitation_email?: boolean | undefined;
4356
4389
  };
@@ -4451,6 +4484,7 @@ declare function init(config: AuthHeroConfig): {
4451
4484
  updated_at?: string | undefined;
4452
4485
  }[];
4453
4486
  total?: number | undefined;
4487
+ next?: string | undefined;
4454
4488
  };
4455
4489
  outputFormat: "json";
4456
4490
  status: 200;
@@ -4663,6 +4697,7 @@ declare function init(config: AuthHeroConfig): {
4663
4697
  updated_at?: string | undefined;
4664
4698
  }[];
4665
4699
  total?: number | undefined;
4700
+ next?: string | undefined;
4666
4701
  };
4667
4702
  outputFormat: "json";
4668
4703
  status: 200;
@@ -4934,6 +4969,7 @@ declare function init(config: AuthHeroConfig): {
4934
4969
  updated_at?: string | undefined;
4935
4970
  }[];
4936
4971
  total?: number | undefined;
4972
+ next?: string | undefined;
4937
4973
  };
4938
4974
  outputFormat: "json";
4939
4975
  status: 200;
@@ -5089,6 +5125,7 @@ declare function init(config: AuthHeroConfig): {
5089
5125
  created_at: string;
5090
5126
  }[];
5091
5127
  total?: number | undefined;
5128
+ next?: string | undefined;
5092
5129
  };
5093
5130
  outputFormat: "json";
5094
5131
  status: 200;
@@ -5266,6 +5303,7 @@ declare function init(config: AuthHeroConfig): {
5266
5303
  id: string;
5267
5304
  }[];
5268
5305
  total?: number | undefined;
5306
+ next?: string | undefined;
5269
5307
  };
5270
5308
  outputFormat: "json";
5271
5309
  status: 200;
@@ -5777,7 +5815,7 @@ declare function init(config: AuthHeroConfig): {
5777
5815
  hint?: string | undefined;
5778
5816
  messages?: {
5779
5817
  text: string;
5780
- type: "success" | "error" | "info" | "warning";
5818
+ type: "error" | "success" | "info" | "warning";
5781
5819
  id?: number | undefined;
5782
5820
  }[] | undefined;
5783
5821
  required?: boolean | undefined;
@@ -5795,7 +5833,7 @@ declare function init(config: AuthHeroConfig): {
5795
5833
  hint?: string | undefined;
5796
5834
  messages?: {
5797
5835
  text: string;
5798
- type: "success" | "error" | "info" | "warning";
5836
+ type: "error" | "success" | "info" | "warning";
5799
5837
  id?: number | undefined;
5800
5838
  }[] | undefined;
5801
5839
  required?: boolean | undefined;
@@ -5819,7 +5857,7 @@ declare function init(config: AuthHeroConfig): {
5819
5857
  hint?: string | undefined;
5820
5858
  messages?: {
5821
5859
  text: string;
5822
- type: "success" | "error" | "info" | "warning";
5860
+ type: "error" | "success" | "info" | "warning";
5823
5861
  id?: number | undefined;
5824
5862
  }[] | undefined;
5825
5863
  required?: boolean | undefined;
@@ -5843,7 +5881,7 @@ declare function init(config: AuthHeroConfig): {
5843
5881
  hint?: string | undefined;
5844
5882
  messages?: {
5845
5883
  text: string;
5846
- type: "success" | "error" | "info" | "warning";
5884
+ type: "error" | "success" | "info" | "warning";
5847
5885
  id?: number | undefined;
5848
5886
  }[] | undefined;
5849
5887
  required?: boolean | undefined;
@@ -5867,7 +5905,7 @@ declare function init(config: AuthHeroConfig): {
5867
5905
  hint?: string | undefined;
5868
5906
  messages?: {
5869
5907
  text: string;
5870
- type: "success" | "error" | "info" | "warning";
5908
+ type: "error" | "success" | "info" | "warning";
5871
5909
  id?: number | undefined;
5872
5910
  }[] | undefined;
5873
5911
  required?: boolean | undefined;
@@ -5896,7 +5934,7 @@ declare function init(config: AuthHeroConfig): {
5896
5934
  hint?: string | undefined;
5897
5935
  messages?: {
5898
5936
  text: string;
5899
- type: "success" | "error" | "info" | "warning";
5937
+ type: "error" | "success" | "info" | "warning";
5900
5938
  id?: number | undefined;
5901
5939
  }[] | undefined;
5902
5940
  required?: boolean | undefined;
@@ -5911,7 +5949,7 @@ declare function init(config: AuthHeroConfig): {
5911
5949
  hint?: string | undefined;
5912
5950
  messages?: {
5913
5951
  text: string;
5914
- type: "success" | "error" | "info" | "warning";
5952
+ type: "error" | "success" | "info" | "warning";
5915
5953
  id?: number | undefined;
5916
5954
  }[] | undefined;
5917
5955
  required?: boolean | undefined;
@@ -5932,7 +5970,7 @@ declare function init(config: AuthHeroConfig): {
5932
5970
  hint?: string | undefined;
5933
5971
  messages?: {
5934
5972
  text: string;
5935
- type: "success" | "error" | "info" | "warning";
5973
+ type: "error" | "success" | "info" | "warning";
5936
5974
  id?: number | undefined;
5937
5975
  }[] | undefined;
5938
5976
  required?: boolean | undefined;
@@ -5957,7 +5995,7 @@ declare function init(config: AuthHeroConfig): {
5957
5995
  hint?: string | undefined;
5958
5996
  messages?: {
5959
5997
  text: string;
5960
- type: "success" | "error" | "info" | "warning";
5998
+ type: "error" | "success" | "info" | "warning";
5961
5999
  id?: number | undefined;
5962
6000
  }[] | undefined;
5963
6001
  required?: boolean | undefined;
@@ -5976,7 +6014,7 @@ declare function init(config: AuthHeroConfig): {
5976
6014
  hint?: string | undefined;
5977
6015
  messages?: {
5978
6016
  text: string;
5979
- type: "success" | "error" | "info" | "warning";
6017
+ type: "error" | "success" | "info" | "warning";
5980
6018
  id?: number | undefined;
5981
6019
  }[] | undefined;
5982
6020
  required?: boolean | undefined;
@@ -5996,7 +6034,7 @@ declare function init(config: AuthHeroConfig): {
5996
6034
  hint?: string | undefined;
5997
6035
  messages?: {
5998
6036
  text: string;
5999
- type: "success" | "error" | "info" | "warning";
6037
+ type: "error" | "success" | "info" | "warning";
6000
6038
  id?: number | undefined;
6001
6039
  }[] | undefined;
6002
6040
  required?: boolean | undefined;
@@ -6015,7 +6053,7 @@ declare function init(config: AuthHeroConfig): {
6015
6053
  hint?: string | undefined;
6016
6054
  messages?: {
6017
6055
  text: string;
6018
- type: "success" | "error" | "info" | "warning";
6056
+ type: "error" | "success" | "info" | "warning";
6019
6057
  id?: number | undefined;
6020
6058
  }[] | undefined;
6021
6059
  required?: boolean | undefined;
@@ -6037,7 +6075,7 @@ declare function init(config: AuthHeroConfig): {
6037
6075
  hint?: string | undefined;
6038
6076
  messages?: {
6039
6077
  text: string;
6040
- type: "success" | "error" | "info" | "warning";
6078
+ type: "error" | "success" | "info" | "warning";
6041
6079
  id?: number | undefined;
6042
6080
  }[] | undefined;
6043
6081
  required?: boolean | undefined;
@@ -6059,7 +6097,7 @@ declare function init(config: AuthHeroConfig): {
6059
6097
  hint?: string | undefined;
6060
6098
  messages?: {
6061
6099
  text: string;
6062
- type: "success" | "error" | "info" | "warning";
6100
+ type: "error" | "success" | "info" | "warning";
6063
6101
  id?: number | undefined;
6064
6102
  }[] | undefined;
6065
6103
  required?: boolean | undefined;
@@ -6078,7 +6116,7 @@ declare function init(config: AuthHeroConfig): {
6078
6116
  hint?: string | undefined;
6079
6117
  messages?: {
6080
6118
  text: string;
6081
- type: "success" | "error" | "info" | "warning";
6119
+ type: "error" | "success" | "info" | "warning";
6082
6120
  id?: number | undefined;
6083
6121
  }[] | undefined;
6084
6122
  required?: boolean | undefined;
@@ -6103,7 +6141,7 @@ declare function init(config: AuthHeroConfig): {
6103
6141
  hint?: string | undefined;
6104
6142
  messages?: {
6105
6143
  text: string;
6106
- type: "success" | "error" | "info" | "warning";
6144
+ type: "error" | "success" | "info" | "warning";
6107
6145
  id?: number | undefined;
6108
6146
  }[] | undefined;
6109
6147
  required?: boolean | undefined;
@@ -6124,7 +6162,7 @@ declare function init(config: AuthHeroConfig): {
6124
6162
  hint?: string | undefined;
6125
6163
  messages?: {
6126
6164
  text: string;
6127
- type: "success" | "error" | "info" | "warning";
6165
+ type: "error" | "success" | "info" | "warning";
6128
6166
  id?: number | undefined;
6129
6167
  }[] | undefined;
6130
6168
  required?: boolean | undefined;
@@ -6145,7 +6183,7 @@ declare function init(config: AuthHeroConfig): {
6145
6183
  hint?: string | undefined;
6146
6184
  messages?: {
6147
6185
  text: string;
6148
- type: "success" | "error" | "info" | "warning";
6186
+ type: "error" | "success" | "info" | "warning";
6149
6187
  id?: number | undefined;
6150
6188
  }[] | undefined;
6151
6189
  required?: boolean | undefined;
@@ -6378,7 +6416,7 @@ declare function init(config: AuthHeroConfig): {
6378
6416
  hint?: string | undefined;
6379
6417
  messages?: {
6380
6418
  text: string;
6381
- type: "success" | "error" | "info" | "warning";
6419
+ type: "error" | "success" | "info" | "warning";
6382
6420
  id?: number | undefined;
6383
6421
  }[] | undefined;
6384
6422
  required?: boolean | undefined;
@@ -6396,7 +6434,7 @@ declare function init(config: AuthHeroConfig): {
6396
6434
  hint?: string | undefined;
6397
6435
  messages?: {
6398
6436
  text: string;
6399
- type: "success" | "error" | "info" | "warning";
6437
+ type: "error" | "success" | "info" | "warning";
6400
6438
  id?: number | undefined;
6401
6439
  }[] | undefined;
6402
6440
  required?: boolean | undefined;
@@ -6420,7 +6458,7 @@ declare function init(config: AuthHeroConfig): {
6420
6458
  hint?: string | undefined;
6421
6459
  messages?: {
6422
6460
  text: string;
6423
- type: "success" | "error" | "info" | "warning";
6461
+ type: "error" | "success" | "info" | "warning";
6424
6462
  id?: number | undefined;
6425
6463
  }[] | undefined;
6426
6464
  required?: boolean | undefined;
@@ -6444,7 +6482,7 @@ declare function init(config: AuthHeroConfig): {
6444
6482
  hint?: string | undefined;
6445
6483
  messages?: {
6446
6484
  text: string;
6447
- type: "success" | "error" | "info" | "warning";
6485
+ type: "error" | "success" | "info" | "warning";
6448
6486
  id?: number | undefined;
6449
6487
  }[] | undefined;
6450
6488
  required?: boolean | undefined;
@@ -6468,7 +6506,7 @@ declare function init(config: AuthHeroConfig): {
6468
6506
  hint?: string | undefined;
6469
6507
  messages?: {
6470
6508
  text: string;
6471
- type: "success" | "error" | "info" | "warning";
6509
+ type: "error" | "success" | "info" | "warning";
6472
6510
  id?: number | undefined;
6473
6511
  }[] | undefined;
6474
6512
  required?: boolean | undefined;
@@ -6497,7 +6535,7 @@ declare function init(config: AuthHeroConfig): {
6497
6535
  hint?: string | undefined;
6498
6536
  messages?: {
6499
6537
  text: string;
6500
- type: "success" | "error" | "info" | "warning";
6538
+ type: "error" | "success" | "info" | "warning";
6501
6539
  id?: number | undefined;
6502
6540
  }[] | undefined;
6503
6541
  required?: boolean | undefined;
@@ -6512,7 +6550,7 @@ declare function init(config: AuthHeroConfig): {
6512
6550
  hint?: string | undefined;
6513
6551
  messages?: {
6514
6552
  text: string;
6515
- type: "success" | "error" | "info" | "warning";
6553
+ type: "error" | "success" | "info" | "warning";
6516
6554
  id?: number | undefined;
6517
6555
  }[] | undefined;
6518
6556
  required?: boolean | undefined;
@@ -6533,7 +6571,7 @@ declare function init(config: AuthHeroConfig): {
6533
6571
  hint?: string | undefined;
6534
6572
  messages?: {
6535
6573
  text: string;
6536
- type: "success" | "error" | "info" | "warning";
6574
+ type: "error" | "success" | "info" | "warning";
6537
6575
  id?: number | undefined;
6538
6576
  }[] | undefined;
6539
6577
  required?: boolean | undefined;
@@ -6558,7 +6596,7 @@ declare function init(config: AuthHeroConfig): {
6558
6596
  hint?: string | undefined;
6559
6597
  messages?: {
6560
6598
  text: string;
6561
- type: "success" | "error" | "info" | "warning";
6599
+ type: "error" | "success" | "info" | "warning";
6562
6600
  id?: number | undefined;
6563
6601
  }[] | undefined;
6564
6602
  required?: boolean | undefined;
@@ -6577,7 +6615,7 @@ declare function init(config: AuthHeroConfig): {
6577
6615
  hint?: string | undefined;
6578
6616
  messages?: {
6579
6617
  text: string;
6580
- type: "success" | "error" | "info" | "warning";
6618
+ type: "error" | "success" | "info" | "warning";
6581
6619
  id?: number | undefined;
6582
6620
  }[] | undefined;
6583
6621
  required?: boolean | undefined;
@@ -6597,7 +6635,7 @@ declare function init(config: AuthHeroConfig): {
6597
6635
  hint?: string | undefined;
6598
6636
  messages?: {
6599
6637
  text: string;
6600
- type: "success" | "error" | "info" | "warning";
6638
+ type: "error" | "success" | "info" | "warning";
6601
6639
  id?: number | undefined;
6602
6640
  }[] | undefined;
6603
6641
  required?: boolean | undefined;
@@ -6616,7 +6654,7 @@ declare function init(config: AuthHeroConfig): {
6616
6654
  hint?: string | undefined;
6617
6655
  messages?: {
6618
6656
  text: string;
6619
- type: "success" | "error" | "info" | "warning";
6657
+ type: "error" | "success" | "info" | "warning";
6620
6658
  id?: number | undefined;
6621
6659
  }[] | undefined;
6622
6660
  required?: boolean | undefined;
@@ -6638,7 +6676,7 @@ declare function init(config: AuthHeroConfig): {
6638
6676
  hint?: string | undefined;
6639
6677
  messages?: {
6640
6678
  text: string;
6641
- type: "success" | "error" | "info" | "warning";
6679
+ type: "error" | "success" | "info" | "warning";
6642
6680
  id?: number | undefined;
6643
6681
  }[] | undefined;
6644
6682
  required?: boolean | undefined;
@@ -6660,7 +6698,7 @@ declare function init(config: AuthHeroConfig): {
6660
6698
  hint?: string | undefined;
6661
6699
  messages?: {
6662
6700
  text: string;
6663
- type: "success" | "error" | "info" | "warning";
6701
+ type: "error" | "success" | "info" | "warning";
6664
6702
  id?: number | undefined;
6665
6703
  }[] | undefined;
6666
6704
  required?: boolean | undefined;
@@ -6679,7 +6717,7 @@ declare function init(config: AuthHeroConfig): {
6679
6717
  hint?: string | undefined;
6680
6718
  messages?: {
6681
6719
  text: string;
6682
- type: "success" | "error" | "info" | "warning";
6720
+ type: "error" | "success" | "info" | "warning";
6683
6721
  id?: number | undefined;
6684
6722
  }[] | undefined;
6685
6723
  required?: boolean | undefined;
@@ -6704,7 +6742,7 @@ declare function init(config: AuthHeroConfig): {
6704
6742
  hint?: string | undefined;
6705
6743
  messages?: {
6706
6744
  text: string;
6707
- type: "success" | "error" | "info" | "warning";
6745
+ type: "error" | "success" | "info" | "warning";
6708
6746
  id?: number | undefined;
6709
6747
  }[] | undefined;
6710
6748
  required?: boolean | undefined;
@@ -6725,7 +6763,7 @@ declare function init(config: AuthHeroConfig): {
6725
6763
  hint?: string | undefined;
6726
6764
  messages?: {
6727
6765
  text: string;
6728
- type: "success" | "error" | "info" | "warning";
6766
+ type: "error" | "success" | "info" | "warning";
6729
6767
  id?: number | undefined;
6730
6768
  }[] | undefined;
6731
6769
  required?: boolean | undefined;
@@ -6746,7 +6784,7 @@ declare function init(config: AuthHeroConfig): {
6746
6784
  hint?: string | undefined;
6747
6785
  messages?: {
6748
6786
  text: string;
6749
- type: "success" | "error" | "info" | "warning";
6787
+ type: "error" | "success" | "info" | "warning";
6750
6788
  id?: number | undefined;
6751
6789
  }[] | undefined;
6752
6790
  required?: boolean | undefined;
@@ -6794,6 +6832,7 @@ declare function init(config: AuthHeroConfig): {
6794
6832
  } | undefined;
6795
6833
  }[];
6796
6834
  total?: number | undefined;
6835
+ next?: string | undefined;
6797
6836
  };
6798
6837
  outputFormat: "json";
6799
6838
  status: 200;
@@ -6994,7 +7033,7 @@ declare function init(config: AuthHeroConfig): {
6994
7033
  hint?: string | undefined;
6995
7034
  messages?: {
6996
7035
  text: string;
6997
- type: "success" | "error" | "info" | "warning";
7036
+ type: "error" | "success" | "info" | "warning";
6998
7037
  id?: number | undefined;
6999
7038
  }[] | undefined;
7000
7039
  required?: boolean | undefined;
@@ -7012,7 +7051,7 @@ declare function init(config: AuthHeroConfig): {
7012
7051
  hint?: string | undefined;
7013
7052
  messages?: {
7014
7053
  text: string;
7015
- type: "success" | "error" | "info" | "warning";
7054
+ type: "error" | "success" | "info" | "warning";
7016
7055
  id?: number | undefined;
7017
7056
  }[] | undefined;
7018
7057
  required?: boolean | undefined;
@@ -7036,7 +7075,7 @@ declare function init(config: AuthHeroConfig): {
7036
7075
  hint?: string | undefined;
7037
7076
  messages?: {
7038
7077
  text: string;
7039
- type: "success" | "error" | "info" | "warning";
7078
+ type: "error" | "success" | "info" | "warning";
7040
7079
  id?: number | undefined;
7041
7080
  }[] | undefined;
7042
7081
  required?: boolean | undefined;
@@ -7060,7 +7099,7 @@ declare function init(config: AuthHeroConfig): {
7060
7099
  hint?: string | undefined;
7061
7100
  messages?: {
7062
7101
  text: string;
7063
- type: "success" | "error" | "info" | "warning";
7102
+ type: "error" | "success" | "info" | "warning";
7064
7103
  id?: number | undefined;
7065
7104
  }[] | undefined;
7066
7105
  required?: boolean | undefined;
@@ -7084,7 +7123,7 @@ declare function init(config: AuthHeroConfig): {
7084
7123
  hint?: string | undefined;
7085
7124
  messages?: {
7086
7125
  text: string;
7087
- type: "success" | "error" | "info" | "warning";
7126
+ type: "error" | "success" | "info" | "warning";
7088
7127
  id?: number | undefined;
7089
7128
  }[] | undefined;
7090
7129
  required?: boolean | undefined;
@@ -7113,7 +7152,7 @@ declare function init(config: AuthHeroConfig): {
7113
7152
  hint?: string | undefined;
7114
7153
  messages?: {
7115
7154
  text: string;
7116
- type: "success" | "error" | "info" | "warning";
7155
+ type: "error" | "success" | "info" | "warning";
7117
7156
  id?: number | undefined;
7118
7157
  }[] | undefined;
7119
7158
  required?: boolean | undefined;
@@ -7128,7 +7167,7 @@ declare function init(config: AuthHeroConfig): {
7128
7167
  hint?: string | undefined;
7129
7168
  messages?: {
7130
7169
  text: string;
7131
- type: "success" | "error" | "info" | "warning";
7170
+ type: "error" | "success" | "info" | "warning";
7132
7171
  id?: number | undefined;
7133
7172
  }[] | undefined;
7134
7173
  required?: boolean | undefined;
@@ -7149,7 +7188,7 @@ declare function init(config: AuthHeroConfig): {
7149
7188
  hint?: string | undefined;
7150
7189
  messages?: {
7151
7190
  text: string;
7152
- type: "success" | "error" | "info" | "warning";
7191
+ type: "error" | "success" | "info" | "warning";
7153
7192
  id?: number | undefined;
7154
7193
  }[] | undefined;
7155
7194
  required?: boolean | undefined;
@@ -7174,7 +7213,7 @@ declare function init(config: AuthHeroConfig): {
7174
7213
  hint?: string | undefined;
7175
7214
  messages?: {
7176
7215
  text: string;
7177
- type: "success" | "error" | "info" | "warning";
7216
+ type: "error" | "success" | "info" | "warning";
7178
7217
  id?: number | undefined;
7179
7218
  }[] | undefined;
7180
7219
  required?: boolean | undefined;
@@ -7193,7 +7232,7 @@ declare function init(config: AuthHeroConfig): {
7193
7232
  hint?: string | undefined;
7194
7233
  messages?: {
7195
7234
  text: string;
7196
- type: "success" | "error" | "info" | "warning";
7235
+ type: "error" | "success" | "info" | "warning";
7197
7236
  id?: number | undefined;
7198
7237
  }[] | undefined;
7199
7238
  required?: boolean | undefined;
@@ -7213,7 +7252,7 @@ declare function init(config: AuthHeroConfig): {
7213
7252
  hint?: string | undefined;
7214
7253
  messages?: {
7215
7254
  text: string;
7216
- type: "success" | "error" | "info" | "warning";
7255
+ type: "error" | "success" | "info" | "warning";
7217
7256
  id?: number | undefined;
7218
7257
  }[] | undefined;
7219
7258
  required?: boolean | undefined;
@@ -7232,7 +7271,7 @@ declare function init(config: AuthHeroConfig): {
7232
7271
  hint?: string | undefined;
7233
7272
  messages?: {
7234
7273
  text: string;
7235
- type: "success" | "error" | "info" | "warning";
7274
+ type: "error" | "success" | "info" | "warning";
7236
7275
  id?: number | undefined;
7237
7276
  }[] | undefined;
7238
7277
  required?: boolean | undefined;
@@ -7254,7 +7293,7 @@ declare function init(config: AuthHeroConfig): {
7254
7293
  hint?: string | undefined;
7255
7294
  messages?: {
7256
7295
  text: string;
7257
- type: "success" | "error" | "info" | "warning";
7296
+ type: "error" | "success" | "info" | "warning";
7258
7297
  id?: number | undefined;
7259
7298
  }[] | undefined;
7260
7299
  required?: boolean | undefined;
@@ -7276,7 +7315,7 @@ declare function init(config: AuthHeroConfig): {
7276
7315
  hint?: string | undefined;
7277
7316
  messages?: {
7278
7317
  text: string;
7279
- type: "success" | "error" | "info" | "warning";
7318
+ type: "error" | "success" | "info" | "warning";
7280
7319
  id?: number | undefined;
7281
7320
  }[] | undefined;
7282
7321
  required?: boolean | undefined;
@@ -7295,7 +7334,7 @@ declare function init(config: AuthHeroConfig): {
7295
7334
  hint?: string | undefined;
7296
7335
  messages?: {
7297
7336
  text: string;
7298
- type: "success" | "error" | "info" | "warning";
7337
+ type: "error" | "success" | "info" | "warning";
7299
7338
  id?: number | undefined;
7300
7339
  }[] | undefined;
7301
7340
  required?: boolean | undefined;
@@ -7320,7 +7359,7 @@ declare function init(config: AuthHeroConfig): {
7320
7359
  hint?: string | undefined;
7321
7360
  messages?: {
7322
7361
  text: string;
7323
- type: "success" | "error" | "info" | "warning";
7362
+ type: "error" | "success" | "info" | "warning";
7324
7363
  id?: number | undefined;
7325
7364
  }[] | undefined;
7326
7365
  required?: boolean | undefined;
@@ -7341,7 +7380,7 @@ declare function init(config: AuthHeroConfig): {
7341
7380
  hint?: string | undefined;
7342
7381
  messages?: {
7343
7382
  text: string;
7344
- type: "success" | "error" | "info" | "warning";
7383
+ type: "error" | "success" | "info" | "warning";
7345
7384
  id?: number | undefined;
7346
7385
  }[] | undefined;
7347
7386
  required?: boolean | undefined;
@@ -7362,7 +7401,7 @@ declare function init(config: AuthHeroConfig): {
7362
7401
  hint?: string | undefined;
7363
7402
  messages?: {
7364
7403
  text: string;
7365
- type: "success" | "error" | "info" | "warning";
7404
+ type: "error" | "success" | "info" | "warning";
7366
7405
  id?: number | undefined;
7367
7406
  }[] | undefined;
7368
7407
  required?: boolean | undefined;
@@ -7616,7 +7655,7 @@ declare function init(config: AuthHeroConfig): {
7616
7655
  hint?: string | undefined;
7617
7656
  messages?: {
7618
7657
  text: string;
7619
- type: "success" | "error" | "info" | "warning";
7658
+ type: "error" | "success" | "info" | "warning";
7620
7659
  id?: number | undefined;
7621
7660
  }[] | undefined;
7622
7661
  required?: boolean | undefined;
@@ -7634,7 +7673,7 @@ declare function init(config: AuthHeroConfig): {
7634
7673
  hint?: string | undefined;
7635
7674
  messages?: {
7636
7675
  text: string;
7637
- type: "success" | "error" | "info" | "warning";
7676
+ type: "error" | "success" | "info" | "warning";
7638
7677
  id?: number | undefined;
7639
7678
  }[] | undefined;
7640
7679
  required?: boolean | undefined;
@@ -7658,7 +7697,7 @@ declare function init(config: AuthHeroConfig): {
7658
7697
  hint?: string | undefined;
7659
7698
  messages?: {
7660
7699
  text: string;
7661
- type: "success" | "error" | "info" | "warning";
7700
+ type: "error" | "success" | "info" | "warning";
7662
7701
  id?: number | undefined;
7663
7702
  }[] | undefined;
7664
7703
  required?: boolean | undefined;
@@ -7682,7 +7721,7 @@ declare function init(config: AuthHeroConfig): {
7682
7721
  hint?: string | undefined;
7683
7722
  messages?: {
7684
7723
  text: string;
7685
- type: "success" | "error" | "info" | "warning";
7724
+ type: "error" | "success" | "info" | "warning";
7686
7725
  id?: number | undefined;
7687
7726
  }[] | undefined;
7688
7727
  required?: boolean | undefined;
@@ -7706,7 +7745,7 @@ declare function init(config: AuthHeroConfig): {
7706
7745
  hint?: string | undefined;
7707
7746
  messages?: {
7708
7747
  text: string;
7709
- type: "success" | "error" | "info" | "warning";
7748
+ type: "error" | "success" | "info" | "warning";
7710
7749
  id?: number | undefined;
7711
7750
  }[] | undefined;
7712
7751
  required?: boolean | undefined;
@@ -7731,7 +7770,7 @@ declare function init(config: AuthHeroConfig): {
7731
7770
  hint?: string | undefined;
7732
7771
  messages?: {
7733
7772
  text: string;
7734
- type: "success" | "error" | "info" | "warning";
7773
+ type: "error" | "success" | "info" | "warning";
7735
7774
  id?: number | undefined;
7736
7775
  }[] | undefined;
7737
7776
  required?: boolean | undefined;
@@ -7746,7 +7785,7 @@ declare function init(config: AuthHeroConfig): {
7746
7785
  hint?: string | undefined;
7747
7786
  messages?: {
7748
7787
  text: string;
7749
- type: "success" | "error" | "info" | "warning";
7788
+ type: "error" | "success" | "info" | "warning";
7750
7789
  id?: number | undefined;
7751
7790
  }[] | undefined;
7752
7791
  required?: boolean | undefined;
@@ -7767,7 +7806,7 @@ declare function init(config: AuthHeroConfig): {
7767
7806
  hint?: string | undefined;
7768
7807
  messages?: {
7769
7808
  text: string;
7770
- type: "success" | "error" | "info" | "warning";
7809
+ type: "error" | "success" | "info" | "warning";
7771
7810
  id?: number | undefined;
7772
7811
  }[] | undefined;
7773
7812
  required?: boolean | undefined;
@@ -7792,7 +7831,7 @@ declare function init(config: AuthHeroConfig): {
7792
7831
  hint?: string | undefined;
7793
7832
  messages?: {
7794
7833
  text: string;
7795
- type: "success" | "error" | "info" | "warning";
7834
+ type: "error" | "success" | "info" | "warning";
7796
7835
  id?: number | undefined;
7797
7836
  }[] | undefined;
7798
7837
  required?: boolean | undefined;
@@ -7811,7 +7850,7 @@ declare function init(config: AuthHeroConfig): {
7811
7850
  hint?: string | undefined;
7812
7851
  messages?: {
7813
7852
  text: string;
7814
- type: "success" | "error" | "info" | "warning";
7853
+ type: "error" | "success" | "info" | "warning";
7815
7854
  id?: number | undefined;
7816
7855
  }[] | undefined;
7817
7856
  required?: boolean | undefined;
@@ -7831,7 +7870,7 @@ declare function init(config: AuthHeroConfig): {
7831
7870
  hint?: string | undefined;
7832
7871
  messages?: {
7833
7872
  text: string;
7834
- type: "success" | "error" | "info" | "warning";
7873
+ type: "error" | "success" | "info" | "warning";
7835
7874
  id?: number | undefined;
7836
7875
  }[] | undefined;
7837
7876
  required?: boolean | undefined;
@@ -7850,7 +7889,7 @@ declare function init(config: AuthHeroConfig): {
7850
7889
  hint?: string | undefined;
7851
7890
  messages?: {
7852
7891
  text: string;
7853
- type: "success" | "error" | "info" | "warning";
7892
+ type: "error" | "success" | "info" | "warning";
7854
7893
  id?: number | undefined;
7855
7894
  }[] | undefined;
7856
7895
  required?: boolean | undefined;
@@ -7872,7 +7911,7 @@ declare function init(config: AuthHeroConfig): {
7872
7911
  hint?: string | undefined;
7873
7912
  messages?: {
7874
7913
  text: string;
7875
- type: "success" | "error" | "info" | "warning";
7914
+ type: "error" | "success" | "info" | "warning";
7876
7915
  id?: number | undefined;
7877
7916
  }[] | undefined;
7878
7917
  required?: boolean | undefined;
@@ -7894,7 +7933,7 @@ declare function init(config: AuthHeroConfig): {
7894
7933
  hint?: string | undefined;
7895
7934
  messages?: {
7896
7935
  text: string;
7897
- type: "success" | "error" | "info" | "warning";
7936
+ type: "error" | "success" | "info" | "warning";
7898
7937
  id?: number | undefined;
7899
7938
  }[] | undefined;
7900
7939
  required?: boolean | undefined;
@@ -7913,7 +7952,7 @@ declare function init(config: AuthHeroConfig): {
7913
7952
  hint?: string | undefined;
7914
7953
  messages?: {
7915
7954
  text: string;
7916
- type: "success" | "error" | "info" | "warning";
7955
+ type: "error" | "success" | "info" | "warning";
7917
7956
  id?: number | undefined;
7918
7957
  }[] | undefined;
7919
7958
  required?: boolean | undefined;
@@ -7938,7 +7977,7 @@ declare function init(config: AuthHeroConfig): {
7938
7977
  hint?: string | undefined;
7939
7978
  messages?: {
7940
7979
  text: string;
7941
- type: "success" | "error" | "info" | "warning";
7980
+ type: "error" | "success" | "info" | "warning";
7942
7981
  id?: number | undefined;
7943
7982
  }[] | undefined;
7944
7983
  required?: boolean | undefined;
@@ -7959,7 +7998,7 @@ declare function init(config: AuthHeroConfig): {
7959
7998
  hint?: string | undefined;
7960
7999
  messages?: {
7961
8000
  text: string;
7962
- type: "success" | "error" | "info" | "warning";
8001
+ type: "error" | "success" | "info" | "warning";
7963
8002
  id?: number | undefined;
7964
8003
  }[] | undefined;
7965
8004
  required?: boolean | undefined;
@@ -7980,7 +8019,7 @@ declare function init(config: AuthHeroConfig): {
7980
8019
  hint?: string | undefined;
7981
8020
  messages?: {
7982
8021
  text: string;
7983
- type: "success" | "error" | "info" | "warning";
8022
+ type: "error" | "success" | "info" | "warning";
7984
8023
  id?: number | undefined;
7985
8024
  }[] | undefined;
7986
8025
  required?: boolean | undefined;
@@ -8211,7 +8250,7 @@ declare function init(config: AuthHeroConfig): {
8211
8250
  hint?: string | undefined;
8212
8251
  messages?: {
8213
8252
  text: string;
8214
- type: "success" | "error" | "info" | "warning";
8253
+ type: "error" | "success" | "info" | "warning";
8215
8254
  id?: number | undefined;
8216
8255
  }[] | undefined;
8217
8256
  required?: boolean | undefined;
@@ -8229,7 +8268,7 @@ declare function init(config: AuthHeroConfig): {
8229
8268
  hint?: string | undefined;
8230
8269
  messages?: {
8231
8270
  text: string;
8232
- type: "success" | "error" | "info" | "warning";
8271
+ type: "error" | "success" | "info" | "warning";
8233
8272
  id?: number | undefined;
8234
8273
  }[] | undefined;
8235
8274
  required?: boolean | undefined;
@@ -8253,7 +8292,7 @@ declare function init(config: AuthHeroConfig): {
8253
8292
  hint?: string | undefined;
8254
8293
  messages?: {
8255
8294
  text: string;
8256
- type: "success" | "error" | "info" | "warning";
8295
+ type: "error" | "success" | "info" | "warning";
8257
8296
  id?: number | undefined;
8258
8297
  }[] | undefined;
8259
8298
  required?: boolean | undefined;
@@ -8277,7 +8316,7 @@ declare function init(config: AuthHeroConfig): {
8277
8316
  hint?: string | undefined;
8278
8317
  messages?: {
8279
8318
  text: string;
8280
- type: "success" | "error" | "info" | "warning";
8319
+ type: "error" | "success" | "info" | "warning";
8281
8320
  id?: number | undefined;
8282
8321
  }[] | undefined;
8283
8322
  required?: boolean | undefined;
@@ -8301,7 +8340,7 @@ declare function init(config: AuthHeroConfig): {
8301
8340
  hint?: string | undefined;
8302
8341
  messages?: {
8303
8342
  text: string;
8304
- type: "success" | "error" | "info" | "warning";
8343
+ type: "error" | "success" | "info" | "warning";
8305
8344
  id?: number | undefined;
8306
8345
  }[] | undefined;
8307
8346
  required?: boolean | undefined;
@@ -8330,7 +8369,7 @@ declare function init(config: AuthHeroConfig): {
8330
8369
  hint?: string | undefined;
8331
8370
  messages?: {
8332
8371
  text: string;
8333
- type: "success" | "error" | "info" | "warning";
8372
+ type: "error" | "success" | "info" | "warning";
8334
8373
  id?: number | undefined;
8335
8374
  }[] | undefined;
8336
8375
  required?: boolean | undefined;
@@ -8345,7 +8384,7 @@ declare function init(config: AuthHeroConfig): {
8345
8384
  hint?: string | undefined;
8346
8385
  messages?: {
8347
8386
  text: string;
8348
- type: "success" | "error" | "info" | "warning";
8387
+ type: "error" | "success" | "info" | "warning";
8349
8388
  id?: number | undefined;
8350
8389
  }[] | undefined;
8351
8390
  required?: boolean | undefined;
@@ -8366,7 +8405,7 @@ declare function init(config: AuthHeroConfig): {
8366
8405
  hint?: string | undefined;
8367
8406
  messages?: {
8368
8407
  text: string;
8369
- type: "success" | "error" | "info" | "warning";
8408
+ type: "error" | "success" | "info" | "warning";
8370
8409
  id?: number | undefined;
8371
8410
  }[] | undefined;
8372
8411
  required?: boolean | undefined;
@@ -8391,7 +8430,7 @@ declare function init(config: AuthHeroConfig): {
8391
8430
  hint?: string | undefined;
8392
8431
  messages?: {
8393
8432
  text: string;
8394
- type: "success" | "error" | "info" | "warning";
8433
+ type: "error" | "success" | "info" | "warning";
8395
8434
  id?: number | undefined;
8396
8435
  }[] | undefined;
8397
8436
  required?: boolean | undefined;
@@ -8410,7 +8449,7 @@ declare function init(config: AuthHeroConfig): {
8410
8449
  hint?: string | undefined;
8411
8450
  messages?: {
8412
8451
  text: string;
8413
- type: "success" | "error" | "info" | "warning";
8452
+ type: "error" | "success" | "info" | "warning";
8414
8453
  id?: number | undefined;
8415
8454
  }[] | undefined;
8416
8455
  required?: boolean | undefined;
@@ -8430,7 +8469,7 @@ declare function init(config: AuthHeroConfig): {
8430
8469
  hint?: string | undefined;
8431
8470
  messages?: {
8432
8471
  text: string;
8433
- type: "success" | "error" | "info" | "warning";
8472
+ type: "error" | "success" | "info" | "warning";
8434
8473
  id?: number | undefined;
8435
8474
  }[] | undefined;
8436
8475
  required?: boolean | undefined;
@@ -8449,7 +8488,7 @@ declare function init(config: AuthHeroConfig): {
8449
8488
  hint?: string | undefined;
8450
8489
  messages?: {
8451
8490
  text: string;
8452
- type: "success" | "error" | "info" | "warning";
8491
+ type: "error" | "success" | "info" | "warning";
8453
8492
  id?: number | undefined;
8454
8493
  }[] | undefined;
8455
8494
  required?: boolean | undefined;
@@ -8471,7 +8510,7 @@ declare function init(config: AuthHeroConfig): {
8471
8510
  hint?: string | undefined;
8472
8511
  messages?: {
8473
8512
  text: string;
8474
- type: "success" | "error" | "info" | "warning";
8513
+ type: "error" | "success" | "info" | "warning";
8475
8514
  id?: number | undefined;
8476
8515
  }[] | undefined;
8477
8516
  required?: boolean | undefined;
@@ -8493,7 +8532,7 @@ declare function init(config: AuthHeroConfig): {
8493
8532
  hint?: string | undefined;
8494
8533
  messages?: {
8495
8534
  text: string;
8496
- type: "success" | "error" | "info" | "warning";
8535
+ type: "error" | "success" | "info" | "warning";
8497
8536
  id?: number | undefined;
8498
8537
  }[] | undefined;
8499
8538
  required?: boolean | undefined;
@@ -8512,7 +8551,7 @@ declare function init(config: AuthHeroConfig): {
8512
8551
  hint?: string | undefined;
8513
8552
  messages?: {
8514
8553
  text: string;
8515
- type: "success" | "error" | "info" | "warning";
8554
+ type: "error" | "success" | "info" | "warning";
8516
8555
  id?: number | undefined;
8517
8556
  }[] | undefined;
8518
8557
  required?: boolean | undefined;
@@ -8537,7 +8576,7 @@ declare function init(config: AuthHeroConfig): {
8537
8576
  hint?: string | undefined;
8538
8577
  messages?: {
8539
8578
  text: string;
8540
- type: "success" | "error" | "info" | "warning";
8579
+ type: "error" | "success" | "info" | "warning";
8541
8580
  id?: number | undefined;
8542
8581
  }[] | undefined;
8543
8582
  required?: boolean | undefined;
@@ -8558,7 +8597,7 @@ declare function init(config: AuthHeroConfig): {
8558
8597
  hint?: string | undefined;
8559
8598
  messages?: {
8560
8599
  text: string;
8561
- type: "success" | "error" | "info" | "warning";
8600
+ type: "error" | "success" | "info" | "warning";
8562
8601
  id?: number | undefined;
8563
8602
  }[] | undefined;
8564
8603
  required?: boolean | undefined;
@@ -8579,7 +8618,7 @@ declare function init(config: AuthHeroConfig): {
8579
8618
  hint?: string | undefined;
8580
8619
  messages?: {
8581
8620
  text: string;
8582
- type: "success" | "error" | "info" | "warning";
8621
+ type: "error" | "success" | "info" | "warning";
8583
8622
  id?: number | undefined;
8584
8623
  }[] | undefined;
8585
8624
  required?: boolean | undefined;
@@ -8812,7 +8851,7 @@ declare function init(config: AuthHeroConfig): {
8812
8851
  hint?: string | undefined;
8813
8852
  messages?: {
8814
8853
  text: string;
8815
- type: "success" | "error" | "info" | "warning";
8854
+ type: "error" | "success" | "info" | "warning";
8816
8855
  id?: number | undefined;
8817
8856
  }[] | undefined;
8818
8857
  required?: boolean | undefined;
@@ -8830,7 +8869,7 @@ declare function init(config: AuthHeroConfig): {
8830
8869
  hint?: string | undefined;
8831
8870
  messages?: {
8832
8871
  text: string;
8833
- type: "success" | "error" | "info" | "warning";
8872
+ type: "error" | "success" | "info" | "warning";
8834
8873
  id?: number | undefined;
8835
8874
  }[] | undefined;
8836
8875
  required?: boolean | undefined;
@@ -8854,7 +8893,7 @@ declare function init(config: AuthHeroConfig): {
8854
8893
  hint?: string | undefined;
8855
8894
  messages?: {
8856
8895
  text: string;
8857
- type: "success" | "error" | "info" | "warning";
8896
+ type: "error" | "success" | "info" | "warning";
8858
8897
  id?: number | undefined;
8859
8898
  }[] | undefined;
8860
8899
  required?: boolean | undefined;
@@ -8878,7 +8917,7 @@ declare function init(config: AuthHeroConfig): {
8878
8917
  hint?: string | undefined;
8879
8918
  messages?: {
8880
8919
  text: string;
8881
- type: "success" | "error" | "info" | "warning";
8920
+ type: "error" | "success" | "info" | "warning";
8882
8921
  id?: number | undefined;
8883
8922
  }[] | undefined;
8884
8923
  required?: boolean | undefined;
@@ -8902,7 +8941,7 @@ declare function init(config: AuthHeroConfig): {
8902
8941
  hint?: string | undefined;
8903
8942
  messages?: {
8904
8943
  text: string;
8905
- type: "success" | "error" | "info" | "warning";
8944
+ type: "error" | "success" | "info" | "warning";
8906
8945
  id?: number | undefined;
8907
8946
  }[] | undefined;
8908
8947
  required?: boolean | undefined;
@@ -8927,7 +8966,7 @@ declare function init(config: AuthHeroConfig): {
8927
8966
  hint?: string | undefined;
8928
8967
  messages?: {
8929
8968
  text: string;
8930
- type: "success" | "error" | "info" | "warning";
8969
+ type: "error" | "success" | "info" | "warning";
8931
8970
  id?: number | undefined;
8932
8971
  }[] | undefined;
8933
8972
  required?: boolean | undefined;
@@ -8942,7 +8981,7 @@ declare function init(config: AuthHeroConfig): {
8942
8981
  hint?: string | undefined;
8943
8982
  messages?: {
8944
8983
  text: string;
8945
- type: "success" | "error" | "info" | "warning";
8984
+ type: "error" | "success" | "info" | "warning";
8946
8985
  id?: number | undefined;
8947
8986
  }[] | undefined;
8948
8987
  required?: boolean | undefined;
@@ -8963,7 +9002,7 @@ declare function init(config: AuthHeroConfig): {
8963
9002
  hint?: string | undefined;
8964
9003
  messages?: {
8965
9004
  text: string;
8966
- type: "success" | "error" | "info" | "warning";
9005
+ type: "error" | "success" | "info" | "warning";
8967
9006
  id?: number | undefined;
8968
9007
  }[] | undefined;
8969
9008
  required?: boolean | undefined;
@@ -8988,7 +9027,7 @@ declare function init(config: AuthHeroConfig): {
8988
9027
  hint?: string | undefined;
8989
9028
  messages?: {
8990
9029
  text: string;
8991
- type: "success" | "error" | "info" | "warning";
9030
+ type: "error" | "success" | "info" | "warning";
8992
9031
  id?: number | undefined;
8993
9032
  }[] | undefined;
8994
9033
  required?: boolean | undefined;
@@ -9007,7 +9046,7 @@ declare function init(config: AuthHeroConfig): {
9007
9046
  hint?: string | undefined;
9008
9047
  messages?: {
9009
9048
  text: string;
9010
- type: "success" | "error" | "info" | "warning";
9049
+ type: "error" | "success" | "info" | "warning";
9011
9050
  id?: number | undefined;
9012
9051
  }[] | undefined;
9013
9052
  required?: boolean | undefined;
@@ -9027,7 +9066,7 @@ declare function init(config: AuthHeroConfig): {
9027
9066
  hint?: string | undefined;
9028
9067
  messages?: {
9029
9068
  text: string;
9030
- type: "success" | "error" | "info" | "warning";
9069
+ type: "error" | "success" | "info" | "warning";
9031
9070
  id?: number | undefined;
9032
9071
  }[] | undefined;
9033
9072
  required?: boolean | undefined;
@@ -9046,7 +9085,7 @@ declare function init(config: AuthHeroConfig): {
9046
9085
  hint?: string | undefined;
9047
9086
  messages?: {
9048
9087
  text: string;
9049
- type: "success" | "error" | "info" | "warning";
9088
+ type: "error" | "success" | "info" | "warning";
9050
9089
  id?: number | undefined;
9051
9090
  }[] | undefined;
9052
9091
  required?: boolean | undefined;
@@ -9068,7 +9107,7 @@ declare function init(config: AuthHeroConfig): {
9068
9107
  hint?: string | undefined;
9069
9108
  messages?: {
9070
9109
  text: string;
9071
- type: "success" | "error" | "info" | "warning";
9110
+ type: "error" | "success" | "info" | "warning";
9072
9111
  id?: number | undefined;
9073
9112
  }[] | undefined;
9074
9113
  required?: boolean | undefined;
@@ -9090,7 +9129,7 @@ declare function init(config: AuthHeroConfig): {
9090
9129
  hint?: string | undefined;
9091
9130
  messages?: {
9092
9131
  text: string;
9093
- type: "success" | "error" | "info" | "warning";
9132
+ type: "error" | "success" | "info" | "warning";
9094
9133
  id?: number | undefined;
9095
9134
  }[] | undefined;
9096
9135
  required?: boolean | undefined;
@@ -9109,7 +9148,7 @@ declare function init(config: AuthHeroConfig): {
9109
9148
  hint?: string | undefined;
9110
9149
  messages?: {
9111
9150
  text: string;
9112
- type: "success" | "error" | "info" | "warning";
9151
+ type: "error" | "success" | "info" | "warning";
9113
9152
  id?: number | undefined;
9114
9153
  }[] | undefined;
9115
9154
  required?: boolean | undefined;
@@ -9134,7 +9173,7 @@ declare function init(config: AuthHeroConfig): {
9134
9173
  hint?: string | undefined;
9135
9174
  messages?: {
9136
9175
  text: string;
9137
- type: "success" | "error" | "info" | "warning";
9176
+ type: "error" | "success" | "info" | "warning";
9138
9177
  id?: number | undefined;
9139
9178
  }[] | undefined;
9140
9179
  required?: boolean | undefined;
@@ -9155,7 +9194,7 @@ declare function init(config: AuthHeroConfig): {
9155
9194
  hint?: string | undefined;
9156
9195
  messages?: {
9157
9196
  text: string;
9158
- type: "success" | "error" | "info" | "warning";
9197
+ type: "error" | "success" | "info" | "warning";
9159
9198
  id?: number | undefined;
9160
9199
  }[] | undefined;
9161
9200
  required?: boolean | undefined;
@@ -9176,7 +9215,7 @@ declare function init(config: AuthHeroConfig): {
9176
9215
  hint?: string | undefined;
9177
9216
  messages?: {
9178
9217
  text: string;
9179
- type: "success" | "error" | "info" | "warning";
9218
+ type: "error" | "success" | "info" | "warning";
9180
9219
  id?: number | undefined;
9181
9220
  }[] | undefined;
9182
9221
  required?: boolean | undefined;
@@ -9407,7 +9446,7 @@ declare function init(config: AuthHeroConfig): {
9407
9446
  hint?: string | undefined;
9408
9447
  messages?: {
9409
9448
  text: string;
9410
- type: "success" | "error" | "info" | "warning";
9449
+ type: "error" | "success" | "info" | "warning";
9411
9450
  id?: number | undefined;
9412
9451
  }[] | undefined;
9413
9452
  required?: boolean | undefined;
@@ -9425,7 +9464,7 @@ declare function init(config: AuthHeroConfig): {
9425
9464
  hint?: string | undefined;
9426
9465
  messages?: {
9427
9466
  text: string;
9428
- type: "success" | "error" | "info" | "warning";
9467
+ type: "error" | "success" | "info" | "warning";
9429
9468
  id?: number | undefined;
9430
9469
  }[] | undefined;
9431
9470
  required?: boolean | undefined;
@@ -9449,7 +9488,7 @@ declare function init(config: AuthHeroConfig): {
9449
9488
  hint?: string | undefined;
9450
9489
  messages?: {
9451
9490
  text: string;
9452
- type: "success" | "error" | "info" | "warning";
9491
+ type: "error" | "success" | "info" | "warning";
9453
9492
  id?: number | undefined;
9454
9493
  }[] | undefined;
9455
9494
  required?: boolean | undefined;
@@ -9473,7 +9512,7 @@ declare function init(config: AuthHeroConfig): {
9473
9512
  hint?: string | undefined;
9474
9513
  messages?: {
9475
9514
  text: string;
9476
- type: "success" | "error" | "info" | "warning";
9515
+ type: "error" | "success" | "info" | "warning";
9477
9516
  id?: number | undefined;
9478
9517
  }[] | undefined;
9479
9518
  required?: boolean | undefined;
@@ -9497,7 +9536,7 @@ declare function init(config: AuthHeroConfig): {
9497
9536
  hint?: string | undefined;
9498
9537
  messages?: {
9499
9538
  text: string;
9500
- type: "success" | "error" | "info" | "warning";
9539
+ type: "error" | "success" | "info" | "warning";
9501
9540
  id?: number | undefined;
9502
9541
  }[] | undefined;
9503
9542
  required?: boolean | undefined;
@@ -9526,7 +9565,7 @@ declare function init(config: AuthHeroConfig): {
9526
9565
  hint?: string | undefined;
9527
9566
  messages?: {
9528
9567
  text: string;
9529
- type: "success" | "error" | "info" | "warning";
9568
+ type: "error" | "success" | "info" | "warning";
9530
9569
  id?: number | undefined;
9531
9570
  }[] | undefined;
9532
9571
  required?: boolean | undefined;
@@ -9541,7 +9580,7 @@ declare function init(config: AuthHeroConfig): {
9541
9580
  hint?: string | undefined;
9542
9581
  messages?: {
9543
9582
  text: string;
9544
- type: "success" | "error" | "info" | "warning";
9583
+ type: "error" | "success" | "info" | "warning";
9545
9584
  id?: number | undefined;
9546
9585
  }[] | undefined;
9547
9586
  required?: boolean | undefined;
@@ -9562,7 +9601,7 @@ declare function init(config: AuthHeroConfig): {
9562
9601
  hint?: string | undefined;
9563
9602
  messages?: {
9564
9603
  text: string;
9565
- type: "success" | "error" | "info" | "warning";
9604
+ type: "error" | "success" | "info" | "warning";
9566
9605
  id?: number | undefined;
9567
9606
  }[] | undefined;
9568
9607
  required?: boolean | undefined;
@@ -9587,7 +9626,7 @@ declare function init(config: AuthHeroConfig): {
9587
9626
  hint?: string | undefined;
9588
9627
  messages?: {
9589
9628
  text: string;
9590
- type: "success" | "error" | "info" | "warning";
9629
+ type: "error" | "success" | "info" | "warning";
9591
9630
  id?: number | undefined;
9592
9631
  }[] | undefined;
9593
9632
  required?: boolean | undefined;
@@ -9606,7 +9645,7 @@ declare function init(config: AuthHeroConfig): {
9606
9645
  hint?: string | undefined;
9607
9646
  messages?: {
9608
9647
  text: string;
9609
- type: "success" | "error" | "info" | "warning";
9648
+ type: "error" | "success" | "info" | "warning";
9610
9649
  id?: number | undefined;
9611
9650
  }[] | undefined;
9612
9651
  required?: boolean | undefined;
@@ -9626,7 +9665,7 @@ declare function init(config: AuthHeroConfig): {
9626
9665
  hint?: string | undefined;
9627
9666
  messages?: {
9628
9667
  text: string;
9629
- type: "success" | "error" | "info" | "warning";
9668
+ type: "error" | "success" | "info" | "warning";
9630
9669
  id?: number | undefined;
9631
9670
  }[] | undefined;
9632
9671
  required?: boolean | undefined;
@@ -9645,7 +9684,7 @@ declare function init(config: AuthHeroConfig): {
9645
9684
  hint?: string | undefined;
9646
9685
  messages?: {
9647
9686
  text: string;
9648
- type: "success" | "error" | "info" | "warning";
9687
+ type: "error" | "success" | "info" | "warning";
9649
9688
  id?: number | undefined;
9650
9689
  }[] | undefined;
9651
9690
  required?: boolean | undefined;
@@ -9667,7 +9706,7 @@ declare function init(config: AuthHeroConfig): {
9667
9706
  hint?: string | undefined;
9668
9707
  messages?: {
9669
9708
  text: string;
9670
- type: "success" | "error" | "info" | "warning";
9709
+ type: "error" | "success" | "info" | "warning";
9671
9710
  id?: number | undefined;
9672
9711
  }[] | undefined;
9673
9712
  required?: boolean | undefined;
@@ -9689,7 +9728,7 @@ declare function init(config: AuthHeroConfig): {
9689
9728
  hint?: string | undefined;
9690
9729
  messages?: {
9691
9730
  text: string;
9692
- type: "success" | "error" | "info" | "warning";
9731
+ type: "error" | "success" | "info" | "warning";
9693
9732
  id?: number | undefined;
9694
9733
  }[] | undefined;
9695
9734
  required?: boolean | undefined;
@@ -9708,7 +9747,7 @@ declare function init(config: AuthHeroConfig): {
9708
9747
  hint?: string | undefined;
9709
9748
  messages?: {
9710
9749
  text: string;
9711
- type: "success" | "error" | "info" | "warning";
9750
+ type: "error" | "success" | "info" | "warning";
9712
9751
  id?: number | undefined;
9713
9752
  }[] | undefined;
9714
9753
  required?: boolean | undefined;
@@ -9733,7 +9772,7 @@ declare function init(config: AuthHeroConfig): {
9733
9772
  hint?: string | undefined;
9734
9773
  messages?: {
9735
9774
  text: string;
9736
- type: "success" | "error" | "info" | "warning";
9775
+ type: "error" | "success" | "info" | "warning";
9737
9776
  id?: number | undefined;
9738
9777
  }[] | undefined;
9739
9778
  required?: boolean | undefined;
@@ -9754,7 +9793,7 @@ declare function init(config: AuthHeroConfig): {
9754
9793
  hint?: string | undefined;
9755
9794
  messages?: {
9756
9795
  text: string;
9757
- type: "success" | "error" | "info" | "warning";
9796
+ type: "error" | "success" | "info" | "warning";
9758
9797
  id?: number | undefined;
9759
9798
  }[] | undefined;
9760
9799
  required?: boolean | undefined;
@@ -9775,7 +9814,7 @@ declare function init(config: AuthHeroConfig): {
9775
9814
  hint?: string | undefined;
9776
9815
  messages?: {
9777
9816
  text: string;
9778
- type: "success" | "error" | "info" | "warning";
9817
+ type: "error" | "success" | "info" | "warning";
9779
9818
  id?: number | undefined;
9780
9819
  }[] | undefined;
9781
9820
  required?: boolean | undefined;
@@ -10005,7 +10044,7 @@ declare function init(config: AuthHeroConfig): {
10005
10044
  };
10006
10045
  };
10007
10046
  output: {
10008
- prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10047
+ prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
10009
10048
  language: string;
10010
10049
  }[];
10011
10050
  outputFormat: "json";
@@ -10043,7 +10082,7 @@ declare function init(config: AuthHeroConfig): {
10043
10082
  $get: {
10044
10083
  input: {
10045
10084
  param: {
10046
- prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10085
+ prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
10047
10086
  language: string;
10048
10087
  };
10049
10088
  } & {
@@ -10065,7 +10104,7 @@ declare function init(config: AuthHeroConfig): {
10065
10104
  $put: {
10066
10105
  input: {
10067
10106
  param: {
10068
- prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10107
+ prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
10069
10108
  language: string;
10070
10109
  };
10071
10110
  } & {
@@ -10089,7 +10128,7 @@ declare function init(config: AuthHeroConfig): {
10089
10128
  $delete: {
10090
10129
  input: {
10091
10130
  param: {
10092
- prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10131
+ prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
10093
10132
  language: string;
10094
10133
  };
10095
10134
  } & {
@@ -10181,7 +10220,7 @@ declare function init(config: AuthHeroConfig): {
10181
10220
  active?: boolean | undefined;
10182
10221
  } | undefined;
10183
10222
  signup?: {
10184
- status?: "optional" | "required" | "disabled" | undefined;
10223
+ status?: "required" | "optional" | "disabled" | undefined;
10185
10224
  verification?: {
10186
10225
  active?: boolean | undefined;
10187
10226
  } | undefined;
@@ -10198,7 +10237,7 @@ declare function init(config: AuthHeroConfig): {
10198
10237
  active?: boolean | undefined;
10199
10238
  } | undefined;
10200
10239
  signup?: {
10201
- status?: "optional" | "required" | "disabled" | undefined;
10240
+ status?: "required" | "optional" | "disabled" | undefined;
10202
10241
  } | undefined;
10203
10242
  validation?: {
10204
10243
  max_length?: number | undefined;
@@ -10215,7 +10254,7 @@ declare function init(config: AuthHeroConfig): {
10215
10254
  active?: boolean | undefined;
10216
10255
  } | undefined;
10217
10256
  signup?: {
10218
- status?: "optional" | "required" | "disabled" | undefined;
10257
+ status?: "required" | "optional" | "disabled" | undefined;
10219
10258
  } | undefined;
10220
10259
  } | undefined;
10221
10260
  } | undefined;
@@ -10315,7 +10354,7 @@ declare function init(config: AuthHeroConfig): {
10315
10354
  active?: boolean | undefined;
10316
10355
  } | undefined;
10317
10356
  signup?: {
10318
- status?: "optional" | "required" | "disabled" | undefined;
10357
+ status?: "required" | "optional" | "disabled" | undefined;
10319
10358
  verification?: {
10320
10359
  active?: boolean | undefined;
10321
10360
  } | undefined;
@@ -10332,7 +10371,7 @@ declare function init(config: AuthHeroConfig): {
10332
10371
  active?: boolean | undefined;
10333
10372
  } | undefined;
10334
10373
  signup?: {
10335
- status?: "optional" | "required" | "disabled" | undefined;
10374
+ status?: "required" | "optional" | "disabled" | undefined;
10336
10375
  } | undefined;
10337
10376
  validation?: {
10338
10377
  max_length?: number | undefined;
@@ -10349,7 +10388,7 @@ declare function init(config: AuthHeroConfig): {
10349
10388
  active?: boolean | undefined;
10350
10389
  } | undefined;
10351
10390
  signup?: {
10352
- status?: "optional" | "required" | "disabled" | undefined;
10391
+ status?: "required" | "optional" | "disabled" | undefined;
10353
10392
  } | undefined;
10354
10393
  } | undefined;
10355
10394
  } | undefined;
@@ -10388,6 +10427,7 @@ declare function init(config: AuthHeroConfig): {
10388
10427
  is_system?: boolean | undefined;
10389
10428
  }[];
10390
10429
  total?: number | undefined;
10430
+ next?: string | undefined;
10391
10431
  };
10392
10432
  outputFormat: "json";
10393
10433
  status: 200;
@@ -10464,7 +10504,7 @@ declare function init(config: AuthHeroConfig): {
10464
10504
  active?: boolean | undefined;
10465
10505
  } | undefined;
10466
10506
  signup?: {
10467
- status?: "optional" | "required" | "disabled" | undefined;
10507
+ status?: "required" | "optional" | "disabled" | undefined;
10468
10508
  verification?: {
10469
10509
  active?: boolean | undefined;
10470
10510
  } | undefined;
@@ -10481,7 +10521,7 @@ declare function init(config: AuthHeroConfig): {
10481
10521
  active?: boolean | undefined;
10482
10522
  } | undefined;
10483
10523
  signup?: {
10484
- status?: "optional" | "required" | "disabled" | undefined;
10524
+ status?: "required" | "optional" | "disabled" | undefined;
10485
10525
  } | undefined;
10486
10526
  validation?: {
10487
10527
  max_length?: number | undefined;
@@ -10498,7 +10538,7 @@ declare function init(config: AuthHeroConfig): {
10498
10538
  active?: boolean | undefined;
10499
10539
  } | undefined;
10500
10540
  signup?: {
10501
- status?: "optional" | "required" | "disabled" | undefined;
10541
+ status?: "required" | "optional" | "disabled" | undefined;
10502
10542
  } | undefined;
10503
10543
  } | undefined;
10504
10544
  } | undefined;
@@ -10643,7 +10683,7 @@ declare function init(config: AuthHeroConfig): {
10643
10683
  active?: boolean | undefined;
10644
10684
  } | undefined;
10645
10685
  signup?: {
10646
- status?: "optional" | "required" | "disabled" | undefined;
10686
+ status?: "required" | "optional" | "disabled" | undefined;
10647
10687
  verification?: {
10648
10688
  active?: boolean | undefined;
10649
10689
  } | undefined;
@@ -10660,7 +10700,7 @@ declare function init(config: AuthHeroConfig): {
10660
10700
  active?: boolean | undefined;
10661
10701
  } | undefined;
10662
10702
  signup?: {
10663
- status?: "optional" | "required" | "disabled" | undefined;
10703
+ status?: "required" | "optional" | "disabled" | undefined;
10664
10704
  } | undefined;
10665
10705
  validation?: {
10666
10706
  max_length?: number | undefined;
@@ -10677,7 +10717,7 @@ declare function init(config: AuthHeroConfig): {
10677
10717
  active?: boolean | undefined;
10678
10718
  } | undefined;
10679
10719
  signup?: {
10680
- status?: "optional" | "required" | "disabled" | undefined;
10720
+ status?: "required" | "optional" | "disabled" | undefined;
10681
10721
  } | undefined;
10682
10722
  } | undefined;
10683
10723
  } | undefined;
@@ -10801,7 +10841,7 @@ declare function init(config: AuthHeroConfig): {
10801
10841
  active?: boolean | undefined;
10802
10842
  } | undefined;
10803
10843
  signup?: {
10804
- status?: "optional" | "required" | "disabled" | undefined;
10844
+ status?: "required" | "optional" | "disabled" | undefined;
10805
10845
  verification?: {
10806
10846
  active?: boolean | undefined;
10807
10847
  } | undefined;
@@ -10818,7 +10858,7 @@ declare function init(config: AuthHeroConfig): {
10818
10858
  active?: boolean | undefined;
10819
10859
  } | undefined;
10820
10860
  signup?: {
10821
- status?: "optional" | "required" | "disabled" | undefined;
10861
+ status?: "required" | "optional" | "disabled" | undefined;
10822
10862
  } | undefined;
10823
10863
  validation?: {
10824
10864
  max_length?: number | undefined;
@@ -10835,7 +10875,7 @@ declare function init(config: AuthHeroConfig): {
10835
10875
  active?: boolean | undefined;
10836
10876
  } | undefined;
10837
10877
  signup?: {
10838
- status?: "optional" | "required" | "disabled" | undefined;
10878
+ status?: "required" | "optional" | "disabled" | undefined;
10839
10879
  } | undefined;
10840
10880
  } | undefined;
10841
10881
  } | undefined;
@@ -10951,7 +10991,7 @@ declare function init(config: AuthHeroConfig): {
10951
10991
  };
10952
10992
  } | {
10953
10993
  mode: "inline";
10954
- status: "success" | "error";
10994
+ status: "error" | "success";
10955
10995
  connection_id: string;
10956
10996
  connection_name: string;
10957
10997
  strategy: string;
@@ -10987,7 +11027,7 @@ declare function init(config: AuthHeroConfig): {
10987
11027
  tenant_id: string;
10988
11028
  created_at: string;
10989
11029
  updated_at: string;
10990
- deploymentStatus: "deployed" | "failed" | "not_required";
11030
+ deploymentStatus: "failed" | "deployed" | "not_required";
10991
11031
  secrets?: {
10992
11032
  [x: string]: string;
10993
11033
  } | undefined;
@@ -11077,7 +11117,7 @@ declare function init(config: AuthHeroConfig): {
11077
11117
  tenant_id: string;
11078
11118
  created_at: string;
11079
11119
  updated_at: string;
11080
- deploymentStatus: "deployed" | "failed" | "not_required";
11120
+ deploymentStatus: "failed" | "deployed" | "not_required";
11081
11121
  secrets?: {
11082
11122
  [x: string]: string;
11083
11123
  } | undefined;
@@ -11125,7 +11165,7 @@ declare function init(config: AuthHeroConfig): {
11125
11165
  };
11126
11166
  };
11127
11167
  output: ({
11128
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11168
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11129
11169
  enabled: boolean;
11130
11170
  synchronous: boolean;
11131
11171
  created_at: string;
@@ -11137,7 +11177,7 @@ declare function init(config: AuthHeroConfig): {
11137
11177
  [x: string]: hono_utils_types.JSONValue;
11138
11178
  } | undefined;
11139
11179
  } | {
11140
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11180
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11141
11181
  enabled: boolean;
11142
11182
  synchronous: boolean;
11143
11183
  created_at: string;
@@ -11149,7 +11189,7 @@ declare function init(config: AuthHeroConfig): {
11149
11189
  [x: string]: hono_utils_types.JSONValue;
11150
11190
  } | undefined;
11151
11191
  } | {
11152
- trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
11192
+ trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
11153
11193
  enabled: boolean;
11154
11194
  synchronous: boolean;
11155
11195
  created_at: string;
@@ -11161,7 +11201,7 @@ declare function init(config: AuthHeroConfig): {
11161
11201
  [x: string]: hono_utils_types.JSONValue;
11162
11202
  } | undefined;
11163
11203
  } | {
11164
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
11204
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
11165
11205
  enabled: boolean;
11166
11206
  synchronous: boolean;
11167
11207
  created_at: string;
@@ -11177,7 +11217,7 @@ declare function init(config: AuthHeroConfig): {
11177
11217
  limit: number;
11178
11218
  length: number;
11179
11219
  hooks: ({
11180
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11220
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11181
11221
  enabled: boolean;
11182
11222
  synchronous: boolean;
11183
11223
  created_at: string;
@@ -11189,7 +11229,7 @@ declare function init(config: AuthHeroConfig): {
11189
11229
  [x: string]: hono_utils_types.JSONValue;
11190
11230
  } | undefined;
11191
11231
  } | {
11192
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11232
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11193
11233
  enabled: boolean;
11194
11234
  synchronous: boolean;
11195
11235
  created_at: string;
@@ -11201,7 +11241,7 @@ declare function init(config: AuthHeroConfig): {
11201
11241
  [x: string]: hono_utils_types.JSONValue;
11202
11242
  } | undefined;
11203
11243
  } | {
11204
- trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
11244
+ trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
11205
11245
  enabled: boolean;
11206
11246
  synchronous: boolean;
11207
11247
  created_at: string;
@@ -11213,7 +11253,7 @@ declare function init(config: AuthHeroConfig): {
11213
11253
  [x: string]: hono_utils_types.JSONValue;
11214
11254
  } | undefined;
11215
11255
  } | {
11216
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
11256
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
11217
11257
  enabled: boolean;
11218
11258
  synchronous: boolean;
11219
11259
  created_at: string;
@@ -11226,6 +11266,7 @@ declare function init(config: AuthHeroConfig): {
11226
11266
  } | undefined;
11227
11267
  })[];
11228
11268
  total?: number | undefined;
11269
+ next?: string | undefined;
11229
11270
  };
11230
11271
  outputFormat: "json";
11231
11272
  status: 200;
@@ -11240,7 +11281,7 @@ declare function init(config: AuthHeroConfig): {
11240
11281
  };
11241
11282
  } & {
11242
11283
  json: {
11243
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11284
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11244
11285
  url: string;
11245
11286
  enabled?: boolean | undefined;
11246
11287
  synchronous?: boolean | undefined;
@@ -11248,7 +11289,7 @@ declare function init(config: AuthHeroConfig): {
11248
11289
  hook_id?: string | undefined;
11249
11290
  metadata?: Record<string, unknown> | undefined;
11250
11291
  } | {
11251
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11292
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11252
11293
  form_id: string;
11253
11294
  enabled?: boolean | undefined;
11254
11295
  synchronous?: boolean | undefined;
@@ -11256,7 +11297,7 @@ declare function init(config: AuthHeroConfig): {
11256
11297
  hook_id?: string | undefined;
11257
11298
  metadata?: Record<string, unknown> | undefined;
11258
11299
  } | {
11259
- trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
11300
+ trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
11260
11301
  template_id: "ensure-username" | "set-preferred-username" | "account-linking";
11261
11302
  enabled?: boolean | undefined;
11262
11303
  synchronous?: boolean | undefined;
@@ -11264,7 +11305,7 @@ declare function init(config: AuthHeroConfig): {
11264
11305
  hook_id?: string | undefined;
11265
11306
  metadata?: Record<string, unknown> | undefined;
11266
11307
  } | {
11267
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
11308
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
11268
11309
  code_id: string;
11269
11310
  enabled?: boolean | undefined;
11270
11311
  synchronous?: boolean | undefined;
@@ -11274,7 +11315,7 @@ declare function init(config: AuthHeroConfig): {
11274
11315
  };
11275
11316
  };
11276
11317
  output: {
11277
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11318
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11278
11319
  enabled: boolean;
11279
11320
  synchronous: boolean;
11280
11321
  created_at: string;
@@ -11286,7 +11327,7 @@ declare function init(config: AuthHeroConfig): {
11286
11327
  [x: string]: hono_utils_types.JSONValue;
11287
11328
  } | undefined;
11288
11329
  } | {
11289
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11330
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11290
11331
  enabled: boolean;
11291
11332
  synchronous: boolean;
11292
11333
  created_at: string;
@@ -11298,7 +11339,7 @@ declare function init(config: AuthHeroConfig): {
11298
11339
  [x: string]: hono_utils_types.JSONValue;
11299
11340
  } | undefined;
11300
11341
  } | {
11301
- trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
11342
+ trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
11302
11343
  enabled: boolean;
11303
11344
  synchronous: boolean;
11304
11345
  created_at: string;
@@ -11310,7 +11351,7 @@ declare function init(config: AuthHeroConfig): {
11310
11351
  [x: string]: hono_utils_types.JSONValue;
11311
11352
  } | undefined;
11312
11353
  } | {
11313
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
11354
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
11314
11355
  enabled: boolean;
11315
11356
  synchronous: boolean;
11316
11357
  created_at: string;
@@ -11356,7 +11397,7 @@ declare function init(config: AuthHeroConfig): {
11356
11397
  json: unknown;
11357
11398
  };
11358
11399
  output: {
11359
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11400
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11360
11401
  enabled: boolean;
11361
11402
  synchronous: boolean;
11362
11403
  created_at: string;
@@ -11368,7 +11409,7 @@ declare function init(config: AuthHeroConfig): {
11368
11409
  [x: string]: hono_utils_types.JSONValue;
11369
11410
  } | undefined;
11370
11411
  } | {
11371
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11412
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11372
11413
  enabled: boolean;
11373
11414
  synchronous: boolean;
11374
11415
  created_at: string;
@@ -11380,7 +11421,7 @@ declare function init(config: AuthHeroConfig): {
11380
11421
  [x: string]: hono_utils_types.JSONValue;
11381
11422
  } | undefined;
11382
11423
  } | {
11383
- trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
11424
+ trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
11384
11425
  enabled: boolean;
11385
11426
  synchronous: boolean;
11386
11427
  created_at: string;
@@ -11392,7 +11433,7 @@ declare function init(config: AuthHeroConfig): {
11392
11433
  [x: string]: hono_utils_types.JSONValue;
11393
11434
  } | undefined;
11394
11435
  } | {
11395
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
11436
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
11396
11437
  enabled: boolean;
11397
11438
  synchronous: boolean;
11398
11439
  created_at: string;
@@ -11434,7 +11475,7 @@ declare function init(config: AuthHeroConfig): {
11434
11475
  };
11435
11476
  };
11436
11477
  output: {
11437
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11478
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11438
11479
  enabled: boolean;
11439
11480
  synchronous: boolean;
11440
11481
  created_at: string;
@@ -11446,7 +11487,7 @@ declare function init(config: AuthHeroConfig): {
11446
11487
  [x: string]: hono_utils_types.JSONValue;
11447
11488
  } | undefined;
11448
11489
  } | {
11449
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11490
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11450
11491
  enabled: boolean;
11451
11492
  synchronous: boolean;
11452
11493
  created_at: string;
@@ -11458,7 +11499,7 @@ declare function init(config: AuthHeroConfig): {
11458
11499
  [x: string]: hono_utils_types.JSONValue;
11459
11500
  } | undefined;
11460
11501
  } | {
11461
- trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
11502
+ trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
11462
11503
  enabled: boolean;
11463
11504
  synchronous: boolean;
11464
11505
  created_at: string;
@@ -11470,7 +11511,7 @@ declare function init(config: AuthHeroConfig): {
11470
11511
  [x: string]: hono_utils_types.JSONValue;
11471
11512
  } | undefined;
11472
11513
  } | {
11473
- trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
11514
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
11474
11515
  enabled: boolean;
11475
11516
  synchronous: boolean;
11476
11517
  created_at: string;
@@ -11588,9 +11629,9 @@ declare function init(config: AuthHeroConfig): {
11588
11629
  tenant_id: string;
11589
11630
  event_type: string;
11590
11631
  log_type: string;
11591
- category: "api" | "user_action" | "admin_action" | "system";
11632
+ category: "user_action" | "admin_action" | "system" | "api";
11592
11633
  actor: {
11593
- type: "user" | "system" | "client_credentials" | "admin" | "api_key";
11634
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
11594
11635
  id?: string | undefined;
11595
11636
  email?: string | undefined;
11596
11637
  org_id?: string | undefined;
@@ -11900,7 +11941,7 @@ declare function init(config: AuthHeroConfig): {
11900
11941
  created_at: string;
11901
11942
  updated_at: string;
11902
11943
  name: string;
11903
- provider: "auth0" | "cognito" | "okta" | "oidc";
11944
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11904
11945
  connection: string;
11905
11946
  enabled: boolean;
11906
11947
  credentials: {
@@ -11932,7 +11973,7 @@ declare function init(config: AuthHeroConfig): {
11932
11973
  created_at: string;
11933
11974
  updated_at: string;
11934
11975
  name: string;
11935
- provider: "auth0" | "cognito" | "okta" | "oidc";
11976
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11936
11977
  connection: string;
11937
11978
  enabled: boolean;
11938
11979
  credentials: {
@@ -11958,7 +11999,7 @@ declare function init(config: AuthHeroConfig): {
11958
11999
  } & {
11959
12000
  json: {
11960
12001
  name: string;
11961
- provider: "auth0" | "cognito" | "okta" | "oidc";
12002
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11962
12003
  connection: string;
11963
12004
  credentials: {
11964
12005
  domain: string;
@@ -11975,7 +12016,7 @@ declare function init(config: AuthHeroConfig): {
11975
12016
  created_at: string;
11976
12017
  updated_at: string;
11977
12018
  name: string;
11978
- provider: "auth0" | "cognito" | "okta" | "oidc";
12019
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11979
12020
  connection: string;
11980
12021
  enabled: boolean;
11981
12022
  credentials: {
@@ -12006,7 +12047,7 @@ declare function init(config: AuthHeroConfig): {
12006
12047
  json: {
12007
12048
  id?: string | undefined;
12008
12049
  name?: string | undefined;
12009
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
12050
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
12010
12051
  connection?: string | undefined;
12011
12052
  enabled?: boolean | undefined;
12012
12053
  credentials?: {
@@ -12022,7 +12063,7 @@ declare function init(config: AuthHeroConfig): {
12022
12063
  created_at: string;
12023
12064
  updated_at: string;
12024
12065
  name: string;
12025
- provider: "auth0" | "cognito" | "okta" | "oidc";
12066
+ provider: "auth0" | "oidc" | "okta" | "cognito";
12026
12067
  connection: string;
12027
12068
  enabled: boolean;
12028
12069
  credentials: {
@@ -12070,7 +12111,7 @@ declare function init(config: AuthHeroConfig): {
12070
12111
  [x: string]: hono_utils_types.JSONValue;
12071
12112
  };
12072
12113
  id: string;
12073
- status: "suspended" | "active" | "paused";
12114
+ status: "active" | "suspended" | "paused";
12074
12115
  filters?: {
12075
12116
  type: string;
12076
12117
  name: string;
@@ -12102,7 +12143,7 @@ declare function init(config: AuthHeroConfig): {
12102
12143
  [x: string]: hono_utils_types.JSONValue;
12103
12144
  };
12104
12145
  id: string;
12105
- status: "suspended" | "active" | "paused";
12146
+ status: "active" | "suspended" | "paused";
12106
12147
  filters?: {
12107
12148
  type: string;
12108
12149
  name: string;
@@ -12127,7 +12168,7 @@ declare function init(config: AuthHeroConfig): {
12127
12168
  name: string;
12128
12169
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
12129
12170
  sink: Record<string, unknown>;
12130
- status?: "suspended" | "active" | "paused" | undefined;
12171
+ status?: "active" | "suspended" | "paused" | undefined;
12131
12172
  filters?: {
12132
12173
  type: string;
12133
12174
  name: string;
@@ -12142,7 +12183,7 @@ declare function init(config: AuthHeroConfig): {
12142
12183
  [x: string]: hono_utils_types.JSONValue;
12143
12184
  };
12144
12185
  id: string;
12145
- status: "suspended" | "active" | "paused";
12186
+ status: "active" | "suspended" | "paused";
12146
12187
  filters?: {
12147
12188
  type: string;
12148
12189
  name: string;
@@ -12177,7 +12218,7 @@ declare function init(config: AuthHeroConfig): {
12177
12218
  }[] | undefined;
12178
12219
  isPriority?: boolean | undefined;
12179
12220
  id?: string | undefined;
12180
- status?: "suspended" | "active" | "paused" | undefined;
12221
+ status?: "active" | "suspended" | "paused" | undefined;
12181
12222
  created_at?: string | undefined;
12182
12223
  updated_at?: string | undefined;
12183
12224
  };
@@ -12189,7 +12230,7 @@ declare function init(config: AuthHeroConfig): {
12189
12230
  [x: string]: hono_utils_types.JSONValue;
12190
12231
  };
12191
12232
  id: string;
12192
- status: "suspended" | "active" | "paused";
12233
+ status: "active" | "suspended" | "paused";
12193
12234
  filters?: {
12194
12235
  type: string;
12195
12236
  name: string;
@@ -12240,7 +12281,7 @@ declare function init(config: AuthHeroConfig): {
12240
12281
  };
12241
12282
  };
12242
12283
  output: {
12243
- type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12284
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12244
12285
  date: string;
12245
12286
  isMobile: boolean;
12246
12287
  log_id: string;
@@ -12279,7 +12320,7 @@ declare function init(config: AuthHeroConfig): {
12279
12320
  limit: number;
12280
12321
  length: number;
12281
12322
  logs: {
12282
- type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12323
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12283
12324
  date: string;
12284
12325
  isMobile: boolean;
12285
12326
  log_id: string;
@@ -12315,6 +12356,7 @@ declare function init(config: AuthHeroConfig): {
12315
12356
  } | undefined;
12316
12357
  }[];
12317
12358
  total?: number | undefined;
12359
+ next?: string | undefined;
12318
12360
  };
12319
12361
  outputFormat: "json";
12320
12362
  status: 200;
@@ -12333,7 +12375,7 @@ declare function init(config: AuthHeroConfig): {
12333
12375
  };
12334
12376
  };
12335
12377
  output: {
12336
- type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12378
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12337
12379
  date: string;
12338
12380
  isMobile: boolean;
12339
12381
  log_id: string;
@@ -12436,6 +12478,7 @@ declare function init(config: AuthHeroConfig): {
12436
12478
  audience?: string | undefined;
12437
12479
  }[];
12438
12480
  total?: number | undefined;
12481
+ next?: string | undefined;
12439
12482
  };
12440
12483
  outputFormat: "json";
12441
12484
  status: 200;
@@ -12525,6 +12568,22 @@ declare function init(config: AuthHeroConfig): {
12525
12568
  updated_at?: string | undefined;
12526
12569
  }[];
12527
12570
  total?: number | undefined;
12571
+ next?: string | undefined;
12572
+ } | {
12573
+ client_grants: {
12574
+ id: string;
12575
+ client_id: string;
12576
+ audience: string;
12577
+ scope?: string[] | undefined;
12578
+ organization_usage?: "deny" | "allow" | "require" | undefined;
12579
+ allow_any_organization?: boolean | undefined;
12580
+ is_system?: boolean | undefined;
12581
+ subject_type?: "client" | "user" | undefined;
12582
+ authorization_details_types?: string[] | undefined;
12583
+ created_at?: string | undefined;
12584
+ updated_at?: string | undefined;
12585
+ }[];
12586
+ next?: string | undefined;
12528
12587
  };
12529
12588
  outputFormat: "json";
12530
12589
  status: 200;
@@ -12721,7 +12780,7 @@ declare function init(config: AuthHeroConfig): {
12721
12780
  addons?: {
12722
12781
  [x: string]: any;
12723
12782
  } | undefined;
12724
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12783
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12725
12784
  client_metadata?: {
12726
12785
  [x: string]: string;
12727
12786
  } | undefined;
@@ -12817,7 +12876,7 @@ declare function init(config: AuthHeroConfig): {
12817
12876
  addons?: {
12818
12877
  [x: string]: any;
12819
12878
  } | undefined;
12820
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12879
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12821
12880
  client_metadata?: {
12822
12881
  [x: string]: string;
12823
12882
  } | undefined;
@@ -12862,6 +12921,7 @@ declare function init(config: AuthHeroConfig): {
12862
12921
  user_linking_mode?: "builtin" | "off" | undefined;
12863
12922
  }[];
12864
12923
  total?: number | undefined;
12924
+ next?: string | undefined;
12865
12925
  };
12866
12926
  outputFormat: "json";
12867
12927
  status: 200;
@@ -12928,7 +12988,7 @@ declare function init(config: AuthHeroConfig): {
12928
12988
  addons?: {
12929
12989
  [x: string]: any;
12930
12990
  } | undefined;
12931
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12991
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12932
12992
  client_metadata?: {
12933
12993
  [x: string]: string;
12934
12994
  } | undefined;
@@ -13038,7 +13098,7 @@ declare function init(config: AuthHeroConfig): {
13038
13098
  custom_login_page_preview?: string | undefined;
13039
13099
  form_template?: string | undefined;
13040
13100
  addons?: Record<string, any> | undefined;
13041
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13101
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
13042
13102
  client_metadata?: Record<string, string> | undefined;
13043
13103
  hide_sign_up_disabled_error?: boolean | undefined;
13044
13104
  mobile?: Record<string, any> | undefined;
@@ -13118,7 +13178,7 @@ declare function init(config: AuthHeroConfig): {
13118
13178
  addons?: {
13119
13179
  [x: string]: any;
13120
13180
  } | undefined;
13121
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13181
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
13122
13182
  client_metadata?: {
13123
13183
  [x: string]: string;
13124
13184
  } | undefined;
@@ -13207,7 +13267,7 @@ declare function init(config: AuthHeroConfig): {
13207
13267
  custom_login_page_preview?: string | undefined;
13208
13268
  form_template?: string | undefined;
13209
13269
  addons?: Record<string, any> | undefined;
13210
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13270
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
13211
13271
  client_metadata?: Record<string, string> | undefined;
13212
13272
  hide_sign_up_disabled_error?: boolean | undefined;
13213
13273
  mobile?: Record<string, any> | undefined;
@@ -13287,7 +13347,7 @@ declare function init(config: AuthHeroConfig): {
13287
13347
  addons?: {
13288
13348
  [x: string]: any;
13289
13349
  } | undefined;
13290
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13350
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
13291
13351
  client_metadata?: {
13292
13352
  [x: string]: string;
13293
13353
  } | undefined;
@@ -13409,7 +13469,7 @@ declare function init(config: AuthHeroConfig): {
13409
13469
  active?: boolean | undefined;
13410
13470
  } | undefined;
13411
13471
  signup?: {
13412
- status?: "optional" | "required" | "disabled" | undefined;
13472
+ status?: "required" | "optional" | "disabled" | undefined;
13413
13473
  verification?: {
13414
13474
  active?: boolean | undefined;
13415
13475
  } | undefined;
@@ -13426,7 +13486,7 @@ declare function init(config: AuthHeroConfig): {
13426
13486
  active?: boolean | undefined;
13427
13487
  } | undefined;
13428
13488
  signup?: {
13429
- status?: "optional" | "required" | "disabled" | undefined;
13489
+ status?: "required" | "optional" | "disabled" | undefined;
13430
13490
  } | undefined;
13431
13491
  validation?: {
13432
13492
  max_length?: number | undefined;
@@ -13443,7 +13503,7 @@ declare function init(config: AuthHeroConfig): {
13443
13503
  active?: boolean | undefined;
13444
13504
  } | undefined;
13445
13505
  signup?: {
13446
- status?: "optional" | "required" | "disabled" | undefined;
13506
+ status?: "required" | "optional" | "disabled" | undefined;
13447
13507
  } | undefined;
13448
13508
  } | undefined;
13449
13509
  } | undefined;
@@ -13563,7 +13623,7 @@ declare function init(config: AuthHeroConfig): {
13563
13623
  active?: boolean | undefined;
13564
13624
  } | undefined;
13565
13625
  signup?: {
13566
- status?: "optional" | "required" | "disabled" | undefined;
13626
+ status?: "required" | "optional" | "disabled" | undefined;
13567
13627
  verification?: {
13568
13628
  active?: boolean | undefined;
13569
13629
  } | undefined;
@@ -13580,7 +13640,7 @@ declare function init(config: AuthHeroConfig): {
13580
13640
  active?: boolean | undefined;
13581
13641
  } | undefined;
13582
13642
  signup?: {
13583
- status?: "optional" | "required" | "disabled" | undefined;
13643
+ status?: "required" | "optional" | "disabled" | undefined;
13584
13644
  } | undefined;
13585
13645
  validation?: {
13586
13646
  max_length?: number | undefined;
@@ -13597,7 +13657,7 @@ declare function init(config: AuthHeroConfig): {
13597
13657
  active?: boolean | undefined;
13598
13658
  } | undefined;
13599
13659
  signup?: {
13600
- status?: "optional" | "required" | "disabled" | undefined;
13660
+ status?: "required" | "optional" | "disabled" | undefined;
13601
13661
  } | undefined;
13602
13662
  } | undefined;
13603
13663
  } | undefined;
@@ -13975,6 +14035,7 @@ declare function init(config: AuthHeroConfig): {
13975
14035
  }[] | undefined;
13976
14036
  }[];
13977
14037
  total?: number | undefined;
14038
+ next?: string | undefined;
13978
14039
  };
13979
14040
  outputFormat: "json";
13980
14041
  status: 200;
@@ -14444,6 +14505,7 @@ declare function init(config: AuthHeroConfig): {
14444
14505
  updated_at?: string | undefined;
14445
14506
  }[];
14446
14507
  total?: number | undefined;
14508
+ next?: string | undefined;
14447
14509
  };
14448
14510
  outputFormat: "json";
14449
14511
  status: 200;
@@ -14521,6 +14583,7 @@ declare function init(config: AuthHeroConfig): {
14521
14583
  idle_expires_at?: string | undefined;
14522
14584
  }[];
14523
14585
  total?: number | undefined;
14586
+ next?: string | undefined;
14524
14587
  };
14525
14588
  outputFormat: "json";
14526
14589
  status: 200;
@@ -14551,7 +14614,7 @@ declare function init(config: AuthHeroConfig): {
14551
14614
  };
14552
14615
  };
14553
14616
  output: {
14554
- type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14617
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14555
14618
  date: string;
14556
14619
  isMobile: boolean;
14557
14620
  log_id: string;
@@ -14590,7 +14653,7 @@ declare function init(config: AuthHeroConfig): {
14590
14653
  limit: number;
14591
14654
  length: number;
14592
14655
  logs: {
14593
- type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14656
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14594
14657
  date: string;
14595
14658
  isMobile: boolean;
14596
14659
  log_id: string;
@@ -14626,6 +14689,7 @@ declare function init(config: AuthHeroConfig): {
14626
14689
  } | undefined;
14627
14690
  }[];
14628
14691
  total?: number | undefined;
14692
+ next?: string | undefined;
14629
14693
  };
14630
14694
  outputFormat: "json";
14631
14695
  status: 200;
@@ -14875,6 +14939,7 @@ declare function init(config: AuthHeroConfig): {
14875
14939
  } | undefined;
14876
14940
  }[];
14877
14941
  total?: number | undefined;
14942
+ next?: string | undefined;
14878
14943
  };
14879
14944
  outputFormat: "json";
14880
14945
  status: 200;
@@ -15432,7 +15497,7 @@ declare function init(config: AuthHeroConfig): {
15432
15497
  type: "auth0_managed_certs" | "self_managed_certs";
15433
15498
  custom_domain_id: string;
15434
15499
  primary: boolean;
15435
- status: "pending" | "ready" | "disabled" | "pending_verification";
15500
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15436
15501
  verification_method?: "txt" | undefined;
15437
15502
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15438
15503
  domain_metadata?: {
@@ -15473,7 +15538,7 @@ declare function init(config: AuthHeroConfig): {
15473
15538
  type: "auth0_managed_certs" | "self_managed_certs";
15474
15539
  custom_domain_id: string;
15475
15540
  primary: boolean;
15476
- status: "pending" | "ready" | "disabled" | "pending_verification";
15541
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15477
15542
  verification_method?: "txt" | undefined;
15478
15543
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15479
15544
  domain_metadata?: {
@@ -15537,7 +15602,7 @@ declare function init(config: AuthHeroConfig): {
15537
15602
  type: "auth0_managed_certs" | "self_managed_certs";
15538
15603
  custom_domain_id: string;
15539
15604
  primary: boolean;
15540
- status: "pending" | "ready" | "disabled" | "pending_verification";
15605
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15541
15606
  verification_method?: "txt" | undefined;
15542
15607
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15543
15608
  domain_metadata?: {
@@ -15584,7 +15649,7 @@ declare function init(config: AuthHeroConfig): {
15584
15649
  type: "auth0_managed_certs" | "self_managed_certs";
15585
15650
  custom_domain_id: string;
15586
15651
  primary: boolean;
15587
- status: "pending" | "ready" | "disabled" | "pending_verification";
15652
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15588
15653
  verification_method?: "txt" | undefined;
15589
15654
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15590
15655
  domain_metadata?: {
@@ -15630,7 +15695,7 @@ declare function init(config: AuthHeroConfig): {
15630
15695
  type: "auth0_managed_certs" | "self_managed_certs";
15631
15696
  custom_domain_id: string;
15632
15697
  primary: boolean;
15633
- status: "pending" | "ready" | "disabled" | "pending_verification";
15698
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15634
15699
  verification_method?: "txt" | undefined;
15635
15700
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15636
15701
  domain_metadata?: {
@@ -15671,7 +15736,7 @@ declare function init(config: AuthHeroConfig): {
15671
15736
  type: "auth0_managed_certs" | "self_managed_certs";
15672
15737
  custom_domain_id: string;
15673
15738
  primary: boolean;
15674
- status: "pending" | "ready" | "disabled" | "pending_verification";
15739
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15675
15740
  verification_method?: "txt" | undefined;
15676
15741
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15677
15742
  domain_metadata?: {
@@ -16101,7 +16166,7 @@ declare function init(config: AuthHeroConfig): {
16101
16166
  } & {
16102
16167
  json: {
16103
16168
  body?: string | undefined;
16104
- screen?: "password" | "login" | "identifier" | "signup" | undefined;
16169
+ screen?: "password" | "identifier" | "signup" | "login" | undefined;
16105
16170
  branding?: {
16106
16171
  colors?: {
16107
16172
  primary: string;
@@ -16270,7 +16335,7 @@ declare function init(config: AuthHeroConfig): {
16270
16335
  json: {
16271
16336
  bindings: {
16272
16337
  ref: {
16273
- type?: "action_name" | "action_id" | undefined;
16338
+ type?: "action_id" | "action_name" | undefined;
16274
16339
  value?: string | undefined;
16275
16340
  id?: string | undefined;
16276
16341
  name?: string | undefined;
@@ -16345,7 +16410,7 @@ declare function init(config: AuthHeroConfig): {
16345
16410
  output: {
16346
16411
  id: string;
16347
16412
  trigger_id: string;
16348
- status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
16413
+ status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
16349
16414
  results: {
16350
16415
  action_name: string;
16351
16416
  error: {
@@ -16475,6 +16540,7 @@ declare function init(config: AuthHeroConfig): {
16475
16540
  }[] | undefined;
16476
16541
  }[];
16477
16542
  total?: number | undefined;
16543
+ next?: string | undefined;
16478
16544
  };
16479
16545
  outputFormat: "json";
16480
16546
  status: 200;
@@ -16883,6 +16949,7 @@ declare function init(config: AuthHeroConfig): {
16883
16949
  }[] | undefined;
16884
16950
  }[];
16885
16951
  total?: number | undefined;
16952
+ next?: string | undefined;
16886
16953
  };
16887
16954
  outputFormat: "json";
16888
16955
  status: 200;
@@ -17370,7 +17437,7 @@ declare function init(config: AuthHeroConfig): {
17370
17437
  scope?: string | undefined;
17371
17438
  grant_types?: string[] | undefined;
17372
17439
  response_types?: string[] | undefined;
17373
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
17440
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
17374
17441
  jwks_uri?: string | undefined;
17375
17442
  jwks?: Record<string, unknown> | undefined;
17376
17443
  software_id?: string | undefined;
@@ -17459,7 +17526,7 @@ declare function init(config: AuthHeroConfig): {
17459
17526
  scope?: string | undefined;
17460
17527
  grant_types?: string[] | undefined;
17461
17528
  response_types?: string[] | undefined;
17462
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
17529
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
17463
17530
  jwks_uri?: string | undefined;
17464
17531
  jwks?: Record<string, unknown> | undefined;
17465
17532
  software_id?: string | undefined;
@@ -17805,20 +17872,20 @@ declare function init(config: AuthHeroConfig): {
17805
17872
  email: string;
17806
17873
  send: "code" | "link";
17807
17874
  authParams: {
17808
- username?: string | undefined;
17809
- scope?: string | undefined;
17810
17875
  audience?: string | undefined;
17876
+ scope?: string | undefined;
17877
+ username?: string | undefined;
17811
17878
  organization?: string | undefined;
17812
- state?: string | undefined;
17813
17879
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17814
17880
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17815
- prompt?: string | undefined;
17816
- ui_locales?: string | undefined;
17817
- redirect_uri?: string | undefined;
17818
- act_as?: string | undefined;
17881
+ state?: string | undefined;
17819
17882
  nonce?: string | undefined;
17883
+ act_as?: string | undefined;
17884
+ redirect_uri?: string | undefined;
17885
+ prompt?: string | undefined;
17820
17886
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17821
17887
  code_challenge?: string | undefined;
17888
+ ui_locales?: string | undefined;
17822
17889
  max_age?: number | undefined;
17823
17890
  acr_values?: string | undefined;
17824
17891
  claims?: {
@@ -17841,20 +17908,20 @@ declare function init(config: AuthHeroConfig): {
17841
17908
  phone_number: string;
17842
17909
  send: "code" | "link";
17843
17910
  authParams: {
17844
- username?: string | undefined;
17845
- scope?: string | undefined;
17846
17911
  audience?: string | undefined;
17912
+ scope?: string | undefined;
17913
+ username?: string | undefined;
17847
17914
  organization?: string | undefined;
17848
- state?: string | undefined;
17849
17915
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17850
17916
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17851
- prompt?: string | undefined;
17852
- ui_locales?: string | undefined;
17853
- redirect_uri?: string | undefined;
17854
- act_as?: string | undefined;
17917
+ state?: string | undefined;
17855
17918
  nonce?: string | undefined;
17919
+ act_as?: string | undefined;
17920
+ redirect_uri?: string | undefined;
17921
+ prompt?: string | undefined;
17856
17922
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17857
17923
  code_challenge?: string | undefined;
17924
+ ui_locales?: string | undefined;
17858
17925
  max_age?: number | undefined;
17859
17926
  acr_values?: string | undefined;
17860
17927
  claims?: {
@@ -17985,14 +18052,14 @@ declare function init(config: AuthHeroConfig): {
17985
18052
  input: {
17986
18053
  form: {
17987
18054
  token: string;
17988
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18055
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17989
18056
  client_id?: string | undefined;
17990
18057
  client_secret?: string | undefined;
17991
18058
  };
17992
18059
  } & {
17993
18060
  json: {
17994
18061
  token: string;
17995
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18062
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17996
18063
  client_id?: string | undefined;
17997
18064
  client_secret?: string | undefined;
17998
18065
  };
@@ -18004,14 +18071,14 @@ declare function init(config: AuthHeroConfig): {
18004
18071
  input: {
18005
18072
  form: {
18006
18073
  token: string;
18007
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18074
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
18008
18075
  client_id?: string | undefined;
18009
18076
  client_secret?: string | undefined;
18010
18077
  };
18011
18078
  } & {
18012
18079
  json: {
18013
18080
  token: string;
18014
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18081
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
18015
18082
  client_id?: string | undefined;
18016
18083
  client_secret?: string | undefined;
18017
18084
  };
@@ -18026,14 +18093,14 @@ declare function init(config: AuthHeroConfig): {
18026
18093
  input: {
18027
18094
  form: {
18028
18095
  token: string;
18029
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18096
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
18030
18097
  client_id?: string | undefined;
18031
18098
  client_secret?: string | undefined;
18032
18099
  };
18033
18100
  } & {
18034
18101
  json: {
18035
18102
  token: string;
18036
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18103
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
18037
18104
  client_id?: string | undefined;
18038
18105
  client_secret?: string | undefined;
18039
18106
  };
@@ -19381,7 +19448,7 @@ declare function init(config: AuthHeroConfig): {
19381
19448
  } & {
19382
19449
  form: {
19383
19450
  username: string;
19384
- login_selection?: "code" | "password" | undefined;
19451
+ login_selection?: "password" | "code" | undefined;
19385
19452
  };
19386
19453
  };
19387
19454
  output: {};
@@ -19395,7 +19462,7 @@ declare function init(config: AuthHeroConfig): {
19395
19462
  } & {
19396
19463
  form: {
19397
19464
  username: string;
19398
- login_selection?: "code" | "password" | undefined;
19465
+ login_selection?: "password" | "code" | undefined;
19399
19466
  };
19400
19467
  };
19401
19468
  output: {};
@@ -19760,7 +19827,7 @@ declare function init(config: AuthHeroConfig): {
19760
19827
  $get: {
19761
19828
  input: {
19762
19829
  param: {
19763
- screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19830
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19764
19831
  };
19765
19832
  } & {
19766
19833
  query: {
@@ -19776,7 +19843,7 @@ declare function init(config: AuthHeroConfig): {
19776
19843
  } | {
19777
19844
  input: {
19778
19845
  param: {
19779
- screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19846
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19780
19847
  };
19781
19848
  } & {
19782
19849
  query: {
@@ -19792,7 +19859,7 @@ declare function init(config: AuthHeroConfig): {
19792
19859
  } | {
19793
19860
  input: {
19794
19861
  param: {
19795
- screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19862
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19796
19863
  };
19797
19864
  } & {
19798
19865
  query: {
@@ -19812,7 +19879,7 @@ declare function init(config: AuthHeroConfig): {
19812
19879
  $post: {
19813
19880
  input: {
19814
19881
  param: {
19815
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19882
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19816
19883
  };
19817
19884
  } & {
19818
19885
  query: {
@@ -19830,7 +19897,7 @@ declare function init(config: AuthHeroConfig): {
19830
19897
  } | {
19831
19898
  input: {
19832
19899
  param: {
19833
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19900
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19834
19901
  };
19835
19902
  } & {
19836
19903
  query: {