authhero 8.11.1 → 8.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/dist/assets/u/js/client.js +1 -1
  2. package/dist/authhero.cjs +82 -82
  3. package/dist/authhero.d.ts +224 -216
  4. package/dist/authhero.mjs +8844 -8833
  5. package/dist/client.js +1 -1
  6. package/dist/stats.html +1 -1
  7. package/dist/tsconfig.types.tsbuildinfo +1 -1
  8. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  9. package/dist/types/client/client-bundle.d.ts +1 -1
  10. package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
  11. package/dist/types/index.d.ts +215 -215
  12. package/dist/types/routes/auth-api/index.d.ts +34 -34
  13. package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
  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/auth-api/token.d.ts +10 -10
  17. package/dist/types/routes/management-api/action-triggers.d.ts +1 -1
  18. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  19. package/dist/types/routes/management-api/clients.d.ts +7 -7
  20. package/dist/types/routes/management-api/connections.d.ts +1 -1
  21. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  22. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  23. package/dist/types/routes/management-api/forms.d.ts +126 -126
  24. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  25. package/dist/types/routes/management-api/index.d.ts +176 -176
  26. package/dist/types/routes/management-api/logs.d.ts +3 -3
  27. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  28. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  29. package/dist/types/routes/management-api/users.d.ts +2 -2
  30. package/dist/types/routes/universal-login/common.d.ts +2 -2
  31. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  32. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  33. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  34. package/dist/types/types/Hooks.d.ts +8 -0
  35. package/dist/types/types/IdToken.d.ts +2 -2
  36. package/package.json +2 -2
@@ -730,6 +730,13 @@ type OnExecutePreUserUpdate = (event: HookEvent & {
730
730
  user_id: string;
731
731
  updates: Partial<User>;
732
732
  }, api: OnExecutePreUserUpdateAPI) => Promise<void>;
733
+ type OnExecutePostUserUpdateAPI = {
734
+ token: TokenAPI;
735
+ };
736
+ type OnExecutePostUserUpdate = (event: HookEvent & {
737
+ user_id: string;
738
+ updates: Partial<User>;
739
+ }, api: OnExecutePostUserUpdateAPI) => Promise<void>;
733
740
  type OnExecutePostLoginAPI = {
734
741
  prompt: {
735
742
  render: (formId: string) => void;
@@ -797,6 +804,7 @@ type Hooks = {
797
804
  onExecutePreUserRegistration?: OnExecutePreUserRegistration;
798
805
  onExecutePostUserRegistration?: OnExecutePostUserRegistration;
799
806
  onExecutePreUserUpdate?: OnExecutePreUserUpdate;
807
+ onExecutePostUserUpdate?: OnExecutePostUserUpdate;
800
808
  onExecutePostLogin?: OnExecutePostLogin;
801
809
  onExecutePreUserDeletion?: OnExecutePreUserDeletion;
802
810
  onExecutePostUserDeletion?: OnExecutePostUserDeletion;
@@ -3007,8 +3015,8 @@ declare function init(config: AuthHeroConfig): {
3007
3015
  $get: {
3008
3016
  input: {
3009
3017
  query: {
3010
- include_password_hashes?: "false" | "true" | undefined;
3011
- gzip?: "false" | "true" | undefined;
3018
+ include_password_hashes?: "true" | "false" | undefined;
3019
+ gzip?: "true" | "false" | undefined;
3012
3020
  };
3013
3021
  } & {
3014
3022
  header: {
@@ -3021,8 +3029,8 @@ declare function init(config: AuthHeroConfig): {
3021
3029
  } | {
3022
3030
  input: {
3023
3031
  query: {
3024
- include_password_hashes?: "false" | "true" | undefined;
3025
- gzip?: "false" | "true" | undefined;
3032
+ include_password_hashes?: "true" | "false" | undefined;
3033
+ gzip?: "true" | "false" | undefined;
3026
3034
  };
3027
3035
  } & {
3028
3036
  header: {
@@ -3041,7 +3049,7 @@ declare function init(config: AuthHeroConfig): {
3041
3049
  $post: {
3042
3050
  input: {
3043
3051
  query: {
3044
- include_password_hashes?: "false" | "true" | undefined;
3052
+ include_password_hashes?: "true" | "false" | undefined;
3045
3053
  };
3046
3054
  } & {
3047
3055
  header: {
@@ -3095,7 +3103,7 @@ declare function init(config: AuthHeroConfig): {
3095
3103
  };
3096
3104
  } & {
3097
3105
  json: {
3098
- type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
3106
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
3099
3107
  phone_number?: string | undefined;
3100
3108
  totp_secret?: string | undefined;
3101
3109
  credential_id?: string | undefined;
@@ -3235,7 +3243,7 @@ declare function init(config: AuthHeroConfig): {
3235
3243
  };
3236
3244
  };
3237
3245
  output: {
3238
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3246
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3239
3247
  enabled: boolean;
3240
3248
  trial_expired?: boolean | undefined;
3241
3249
  }[];
@@ -3390,7 +3398,7 @@ declare function init(config: AuthHeroConfig): {
3390
3398
  $get: {
3391
3399
  input: {
3392
3400
  param: {
3393
- factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3401
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3394
3402
  };
3395
3403
  } & {
3396
3404
  header: {
@@ -3398,7 +3406,7 @@ declare function init(config: AuthHeroConfig): {
3398
3406
  };
3399
3407
  };
3400
3408
  output: {
3401
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3409
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3402
3410
  enabled: boolean;
3403
3411
  trial_expired?: boolean | undefined;
3404
3412
  };
@@ -3411,7 +3419,7 @@ declare function init(config: AuthHeroConfig): {
3411
3419
  $put: {
3412
3420
  input: {
3413
3421
  param: {
3414
- factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3422
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3415
3423
  };
3416
3424
  } & {
3417
3425
  header: {
@@ -3423,7 +3431,7 @@ declare function init(config: AuthHeroConfig): {
3423
3431
  };
3424
3432
  };
3425
3433
  output: {
3426
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3434
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3427
3435
  enabled: boolean;
3428
3436
  trial_expired?: boolean | undefined;
3429
3437
  };
@@ -4168,12 +4176,12 @@ declare function init(config: AuthHeroConfig): {
4168
4176
  invitee: {
4169
4177
  email?: string | undefined;
4170
4178
  };
4171
- connection_id?: string | undefined;
4172
4179
  id?: string | undefined;
4173
4180
  app_metadata?: Record<string, any> | undefined;
4174
4181
  user_metadata?: Record<string, any> | undefined;
4175
- ttl_sec?: number | undefined;
4182
+ connection_id?: string | undefined;
4176
4183
  roles?: string[] | undefined;
4184
+ ttl_sec?: number | undefined;
4177
4185
  send_invitation_email?: boolean | undefined;
4178
4186
  };
4179
4187
  };
@@ -5599,7 +5607,7 @@ declare function init(config: AuthHeroConfig): {
5599
5607
  hint?: string | undefined;
5600
5608
  messages?: {
5601
5609
  text: string;
5602
- type: "success" | "error" | "info" | "warning";
5610
+ type: "error" | "success" | "info" | "warning";
5603
5611
  id?: number | undefined;
5604
5612
  }[] | undefined;
5605
5613
  required?: boolean | undefined;
@@ -5617,7 +5625,7 @@ declare function init(config: AuthHeroConfig): {
5617
5625
  hint?: string | undefined;
5618
5626
  messages?: {
5619
5627
  text: string;
5620
- type: "success" | "error" | "info" | "warning";
5628
+ type: "error" | "success" | "info" | "warning";
5621
5629
  id?: number | undefined;
5622
5630
  }[] | undefined;
5623
5631
  required?: boolean | undefined;
@@ -5641,7 +5649,7 @@ declare function init(config: AuthHeroConfig): {
5641
5649
  hint?: string | undefined;
5642
5650
  messages?: {
5643
5651
  text: string;
5644
- type: "success" | "error" | "info" | "warning";
5652
+ type: "error" | "success" | "info" | "warning";
5645
5653
  id?: number | undefined;
5646
5654
  }[] | undefined;
5647
5655
  required?: boolean | undefined;
@@ -5665,7 +5673,7 @@ declare function init(config: AuthHeroConfig): {
5665
5673
  hint?: string | undefined;
5666
5674
  messages?: {
5667
5675
  text: string;
5668
- type: "success" | "error" | "info" | "warning";
5676
+ type: "error" | "success" | "info" | "warning";
5669
5677
  id?: number | undefined;
5670
5678
  }[] | undefined;
5671
5679
  required?: boolean | undefined;
@@ -5689,7 +5697,7 @@ declare function init(config: AuthHeroConfig): {
5689
5697
  hint?: string | undefined;
5690
5698
  messages?: {
5691
5699
  text: string;
5692
- type: "success" | "error" | "info" | "warning";
5700
+ type: "error" | "success" | "info" | "warning";
5693
5701
  id?: number | undefined;
5694
5702
  }[] | undefined;
5695
5703
  required?: boolean | undefined;
@@ -5718,7 +5726,7 @@ declare function init(config: AuthHeroConfig): {
5718
5726
  hint?: string | undefined;
5719
5727
  messages?: {
5720
5728
  text: string;
5721
- type: "success" | "error" | "info" | "warning";
5729
+ type: "error" | "success" | "info" | "warning";
5722
5730
  id?: number | undefined;
5723
5731
  }[] | undefined;
5724
5732
  required?: boolean | undefined;
@@ -5733,7 +5741,7 @@ declare function init(config: AuthHeroConfig): {
5733
5741
  hint?: string | undefined;
5734
5742
  messages?: {
5735
5743
  text: string;
5736
- type: "success" | "error" | "info" | "warning";
5744
+ type: "error" | "success" | "info" | "warning";
5737
5745
  id?: number | undefined;
5738
5746
  }[] | undefined;
5739
5747
  required?: boolean | undefined;
@@ -5754,7 +5762,7 @@ declare function init(config: AuthHeroConfig): {
5754
5762
  hint?: string | undefined;
5755
5763
  messages?: {
5756
5764
  text: string;
5757
- type: "success" | "error" | "info" | "warning";
5765
+ type: "error" | "success" | "info" | "warning";
5758
5766
  id?: number | undefined;
5759
5767
  }[] | undefined;
5760
5768
  required?: boolean | undefined;
@@ -5779,7 +5787,7 @@ declare function init(config: AuthHeroConfig): {
5779
5787
  hint?: string | undefined;
5780
5788
  messages?: {
5781
5789
  text: string;
5782
- type: "success" | "error" | "info" | "warning";
5790
+ type: "error" | "success" | "info" | "warning";
5783
5791
  id?: number | undefined;
5784
5792
  }[] | undefined;
5785
5793
  required?: boolean | undefined;
@@ -5798,7 +5806,7 @@ declare function init(config: AuthHeroConfig): {
5798
5806
  hint?: string | undefined;
5799
5807
  messages?: {
5800
5808
  text: string;
5801
- type: "success" | "error" | "info" | "warning";
5809
+ type: "error" | "success" | "info" | "warning";
5802
5810
  id?: number | undefined;
5803
5811
  }[] | undefined;
5804
5812
  required?: boolean | undefined;
@@ -5818,7 +5826,7 @@ declare function init(config: AuthHeroConfig): {
5818
5826
  hint?: string | undefined;
5819
5827
  messages?: {
5820
5828
  text: string;
5821
- type: "success" | "error" | "info" | "warning";
5829
+ type: "error" | "success" | "info" | "warning";
5822
5830
  id?: number | undefined;
5823
5831
  }[] | undefined;
5824
5832
  required?: boolean | undefined;
@@ -5837,7 +5845,7 @@ declare function init(config: AuthHeroConfig): {
5837
5845
  hint?: string | undefined;
5838
5846
  messages?: {
5839
5847
  text: string;
5840
- type: "success" | "error" | "info" | "warning";
5848
+ type: "error" | "success" | "info" | "warning";
5841
5849
  id?: number | undefined;
5842
5850
  }[] | undefined;
5843
5851
  required?: boolean | undefined;
@@ -5859,7 +5867,7 @@ declare function init(config: AuthHeroConfig): {
5859
5867
  hint?: string | undefined;
5860
5868
  messages?: {
5861
5869
  text: string;
5862
- type: "success" | "error" | "info" | "warning";
5870
+ type: "error" | "success" | "info" | "warning";
5863
5871
  id?: number | undefined;
5864
5872
  }[] | undefined;
5865
5873
  required?: boolean | undefined;
@@ -5881,7 +5889,7 @@ declare function init(config: AuthHeroConfig): {
5881
5889
  hint?: string | undefined;
5882
5890
  messages?: {
5883
5891
  text: string;
5884
- type: "success" | "error" | "info" | "warning";
5892
+ type: "error" | "success" | "info" | "warning";
5885
5893
  id?: number | undefined;
5886
5894
  }[] | undefined;
5887
5895
  required?: boolean | undefined;
@@ -5900,7 +5908,7 @@ declare function init(config: AuthHeroConfig): {
5900
5908
  hint?: string | undefined;
5901
5909
  messages?: {
5902
5910
  text: string;
5903
- type: "success" | "error" | "info" | "warning";
5911
+ type: "error" | "success" | "info" | "warning";
5904
5912
  id?: number | undefined;
5905
5913
  }[] | undefined;
5906
5914
  required?: boolean | undefined;
@@ -5925,7 +5933,7 @@ declare function init(config: AuthHeroConfig): {
5925
5933
  hint?: string | undefined;
5926
5934
  messages?: {
5927
5935
  text: string;
5928
- type: "success" | "error" | "info" | "warning";
5936
+ type: "error" | "success" | "info" | "warning";
5929
5937
  id?: number | undefined;
5930
5938
  }[] | undefined;
5931
5939
  required?: boolean | undefined;
@@ -5946,7 +5954,7 @@ declare function init(config: AuthHeroConfig): {
5946
5954
  hint?: string | undefined;
5947
5955
  messages?: {
5948
5956
  text: string;
5949
- type: "success" | "error" | "info" | "warning";
5957
+ type: "error" | "success" | "info" | "warning";
5950
5958
  id?: number | undefined;
5951
5959
  }[] | undefined;
5952
5960
  required?: boolean | undefined;
@@ -5967,7 +5975,7 @@ declare function init(config: AuthHeroConfig): {
5967
5975
  hint?: string | undefined;
5968
5976
  messages?: {
5969
5977
  text: string;
5970
- type: "success" | "error" | "info" | "warning";
5978
+ type: "error" | "success" | "info" | "warning";
5971
5979
  id?: number | undefined;
5972
5980
  }[] | undefined;
5973
5981
  required?: boolean | undefined;
@@ -6200,7 +6208,7 @@ declare function init(config: AuthHeroConfig): {
6200
6208
  hint?: string | undefined;
6201
6209
  messages?: {
6202
6210
  text: string;
6203
- type: "success" | "error" | "info" | "warning";
6211
+ type: "error" | "success" | "info" | "warning";
6204
6212
  id?: number | undefined;
6205
6213
  }[] | undefined;
6206
6214
  required?: boolean | undefined;
@@ -6218,7 +6226,7 @@ declare function init(config: AuthHeroConfig): {
6218
6226
  hint?: string | undefined;
6219
6227
  messages?: {
6220
6228
  text: string;
6221
- type: "success" | "error" | "info" | "warning";
6229
+ type: "error" | "success" | "info" | "warning";
6222
6230
  id?: number | undefined;
6223
6231
  }[] | undefined;
6224
6232
  required?: boolean | undefined;
@@ -6242,7 +6250,7 @@ declare function init(config: AuthHeroConfig): {
6242
6250
  hint?: string | undefined;
6243
6251
  messages?: {
6244
6252
  text: string;
6245
- type: "success" | "error" | "info" | "warning";
6253
+ type: "error" | "success" | "info" | "warning";
6246
6254
  id?: number | undefined;
6247
6255
  }[] | undefined;
6248
6256
  required?: boolean | undefined;
@@ -6266,7 +6274,7 @@ declare function init(config: AuthHeroConfig): {
6266
6274
  hint?: string | undefined;
6267
6275
  messages?: {
6268
6276
  text: string;
6269
- type: "success" | "error" | "info" | "warning";
6277
+ type: "error" | "success" | "info" | "warning";
6270
6278
  id?: number | undefined;
6271
6279
  }[] | undefined;
6272
6280
  required?: boolean | undefined;
@@ -6290,7 +6298,7 @@ declare function init(config: AuthHeroConfig): {
6290
6298
  hint?: string | undefined;
6291
6299
  messages?: {
6292
6300
  text: string;
6293
- type: "success" | "error" | "info" | "warning";
6301
+ type: "error" | "success" | "info" | "warning";
6294
6302
  id?: number | undefined;
6295
6303
  }[] | undefined;
6296
6304
  required?: boolean | undefined;
@@ -6319,7 +6327,7 @@ declare function init(config: AuthHeroConfig): {
6319
6327
  hint?: string | undefined;
6320
6328
  messages?: {
6321
6329
  text: string;
6322
- type: "success" | "error" | "info" | "warning";
6330
+ type: "error" | "success" | "info" | "warning";
6323
6331
  id?: number | undefined;
6324
6332
  }[] | undefined;
6325
6333
  required?: boolean | undefined;
@@ -6334,7 +6342,7 @@ declare function init(config: AuthHeroConfig): {
6334
6342
  hint?: string | undefined;
6335
6343
  messages?: {
6336
6344
  text: string;
6337
- type: "success" | "error" | "info" | "warning";
6345
+ type: "error" | "success" | "info" | "warning";
6338
6346
  id?: number | undefined;
6339
6347
  }[] | undefined;
6340
6348
  required?: boolean | undefined;
@@ -6355,7 +6363,7 @@ declare function init(config: AuthHeroConfig): {
6355
6363
  hint?: string | undefined;
6356
6364
  messages?: {
6357
6365
  text: string;
6358
- type: "success" | "error" | "info" | "warning";
6366
+ type: "error" | "success" | "info" | "warning";
6359
6367
  id?: number | undefined;
6360
6368
  }[] | undefined;
6361
6369
  required?: boolean | undefined;
@@ -6380,7 +6388,7 @@ declare function init(config: AuthHeroConfig): {
6380
6388
  hint?: string | undefined;
6381
6389
  messages?: {
6382
6390
  text: string;
6383
- type: "success" | "error" | "info" | "warning";
6391
+ type: "error" | "success" | "info" | "warning";
6384
6392
  id?: number | undefined;
6385
6393
  }[] | undefined;
6386
6394
  required?: boolean | undefined;
@@ -6399,7 +6407,7 @@ declare function init(config: AuthHeroConfig): {
6399
6407
  hint?: string | undefined;
6400
6408
  messages?: {
6401
6409
  text: string;
6402
- type: "success" | "error" | "info" | "warning";
6410
+ type: "error" | "success" | "info" | "warning";
6403
6411
  id?: number | undefined;
6404
6412
  }[] | undefined;
6405
6413
  required?: boolean | undefined;
@@ -6419,7 +6427,7 @@ declare function init(config: AuthHeroConfig): {
6419
6427
  hint?: string | undefined;
6420
6428
  messages?: {
6421
6429
  text: string;
6422
- type: "success" | "error" | "info" | "warning";
6430
+ type: "error" | "success" | "info" | "warning";
6423
6431
  id?: number | undefined;
6424
6432
  }[] | undefined;
6425
6433
  required?: boolean | undefined;
@@ -6438,7 +6446,7 @@ declare function init(config: AuthHeroConfig): {
6438
6446
  hint?: string | undefined;
6439
6447
  messages?: {
6440
6448
  text: string;
6441
- type: "success" | "error" | "info" | "warning";
6449
+ type: "error" | "success" | "info" | "warning";
6442
6450
  id?: number | undefined;
6443
6451
  }[] | undefined;
6444
6452
  required?: boolean | undefined;
@@ -6460,7 +6468,7 @@ declare function init(config: AuthHeroConfig): {
6460
6468
  hint?: string | undefined;
6461
6469
  messages?: {
6462
6470
  text: string;
6463
- type: "success" | "error" | "info" | "warning";
6471
+ type: "error" | "success" | "info" | "warning";
6464
6472
  id?: number | undefined;
6465
6473
  }[] | undefined;
6466
6474
  required?: boolean | undefined;
@@ -6482,7 +6490,7 @@ declare function init(config: AuthHeroConfig): {
6482
6490
  hint?: string | undefined;
6483
6491
  messages?: {
6484
6492
  text: string;
6485
- type: "success" | "error" | "info" | "warning";
6493
+ type: "error" | "success" | "info" | "warning";
6486
6494
  id?: number | undefined;
6487
6495
  }[] | undefined;
6488
6496
  required?: boolean | undefined;
@@ -6501,7 +6509,7 @@ declare function init(config: AuthHeroConfig): {
6501
6509
  hint?: string | undefined;
6502
6510
  messages?: {
6503
6511
  text: string;
6504
- type: "success" | "error" | "info" | "warning";
6512
+ type: "error" | "success" | "info" | "warning";
6505
6513
  id?: number | undefined;
6506
6514
  }[] | undefined;
6507
6515
  required?: boolean | undefined;
@@ -6526,7 +6534,7 @@ declare function init(config: AuthHeroConfig): {
6526
6534
  hint?: string | undefined;
6527
6535
  messages?: {
6528
6536
  text: string;
6529
- type: "success" | "error" | "info" | "warning";
6537
+ type: "error" | "success" | "info" | "warning";
6530
6538
  id?: number | undefined;
6531
6539
  }[] | undefined;
6532
6540
  required?: boolean | undefined;
@@ -6547,7 +6555,7 @@ declare function init(config: AuthHeroConfig): {
6547
6555
  hint?: string | undefined;
6548
6556
  messages?: {
6549
6557
  text: string;
6550
- type: "success" | "error" | "info" | "warning";
6558
+ type: "error" | "success" | "info" | "warning";
6551
6559
  id?: number | undefined;
6552
6560
  }[] | undefined;
6553
6561
  required?: boolean | undefined;
@@ -6568,7 +6576,7 @@ declare function init(config: AuthHeroConfig): {
6568
6576
  hint?: string | undefined;
6569
6577
  messages?: {
6570
6578
  text: string;
6571
- type: "success" | "error" | "info" | "warning";
6579
+ type: "error" | "success" | "info" | "warning";
6572
6580
  id?: number | undefined;
6573
6581
  }[] | undefined;
6574
6582
  required?: boolean | undefined;
@@ -6816,7 +6824,7 @@ declare function init(config: AuthHeroConfig): {
6816
6824
  hint?: string | undefined;
6817
6825
  messages?: {
6818
6826
  text: string;
6819
- type: "success" | "error" | "info" | "warning";
6827
+ type: "error" | "success" | "info" | "warning";
6820
6828
  id?: number | undefined;
6821
6829
  }[] | undefined;
6822
6830
  required?: boolean | undefined;
@@ -6834,7 +6842,7 @@ declare function init(config: AuthHeroConfig): {
6834
6842
  hint?: string | undefined;
6835
6843
  messages?: {
6836
6844
  text: string;
6837
- type: "success" | "error" | "info" | "warning";
6845
+ type: "error" | "success" | "info" | "warning";
6838
6846
  id?: number | undefined;
6839
6847
  }[] | undefined;
6840
6848
  required?: boolean | undefined;
@@ -6858,7 +6866,7 @@ declare function init(config: AuthHeroConfig): {
6858
6866
  hint?: string | undefined;
6859
6867
  messages?: {
6860
6868
  text: string;
6861
- type: "success" | "error" | "info" | "warning";
6869
+ type: "error" | "success" | "info" | "warning";
6862
6870
  id?: number | undefined;
6863
6871
  }[] | undefined;
6864
6872
  required?: boolean | undefined;
@@ -6882,7 +6890,7 @@ declare function init(config: AuthHeroConfig): {
6882
6890
  hint?: string | undefined;
6883
6891
  messages?: {
6884
6892
  text: string;
6885
- type: "success" | "error" | "info" | "warning";
6893
+ type: "error" | "success" | "info" | "warning";
6886
6894
  id?: number | undefined;
6887
6895
  }[] | undefined;
6888
6896
  required?: boolean | undefined;
@@ -6906,7 +6914,7 @@ declare function init(config: AuthHeroConfig): {
6906
6914
  hint?: string | undefined;
6907
6915
  messages?: {
6908
6916
  text: string;
6909
- type: "success" | "error" | "info" | "warning";
6917
+ type: "error" | "success" | "info" | "warning";
6910
6918
  id?: number | undefined;
6911
6919
  }[] | undefined;
6912
6920
  required?: boolean | undefined;
@@ -6935,7 +6943,7 @@ declare function init(config: AuthHeroConfig): {
6935
6943
  hint?: string | undefined;
6936
6944
  messages?: {
6937
6945
  text: string;
6938
- type: "success" | "error" | "info" | "warning";
6946
+ type: "error" | "success" | "info" | "warning";
6939
6947
  id?: number | undefined;
6940
6948
  }[] | undefined;
6941
6949
  required?: boolean | undefined;
@@ -6950,7 +6958,7 @@ declare function init(config: AuthHeroConfig): {
6950
6958
  hint?: string | undefined;
6951
6959
  messages?: {
6952
6960
  text: string;
6953
- type: "success" | "error" | "info" | "warning";
6961
+ type: "error" | "success" | "info" | "warning";
6954
6962
  id?: number | undefined;
6955
6963
  }[] | undefined;
6956
6964
  required?: boolean | undefined;
@@ -6971,7 +6979,7 @@ declare function init(config: AuthHeroConfig): {
6971
6979
  hint?: string | undefined;
6972
6980
  messages?: {
6973
6981
  text: string;
6974
- type: "success" | "error" | "info" | "warning";
6982
+ type: "error" | "success" | "info" | "warning";
6975
6983
  id?: number | undefined;
6976
6984
  }[] | undefined;
6977
6985
  required?: boolean | undefined;
@@ -6996,7 +7004,7 @@ declare function init(config: AuthHeroConfig): {
6996
7004
  hint?: string | undefined;
6997
7005
  messages?: {
6998
7006
  text: string;
6999
- type: "success" | "error" | "info" | "warning";
7007
+ type: "error" | "success" | "info" | "warning";
7000
7008
  id?: number | undefined;
7001
7009
  }[] | undefined;
7002
7010
  required?: boolean | undefined;
@@ -7015,7 +7023,7 @@ declare function init(config: AuthHeroConfig): {
7015
7023
  hint?: string | undefined;
7016
7024
  messages?: {
7017
7025
  text: string;
7018
- type: "success" | "error" | "info" | "warning";
7026
+ type: "error" | "success" | "info" | "warning";
7019
7027
  id?: number | undefined;
7020
7028
  }[] | undefined;
7021
7029
  required?: boolean | undefined;
@@ -7035,7 +7043,7 @@ declare function init(config: AuthHeroConfig): {
7035
7043
  hint?: string | undefined;
7036
7044
  messages?: {
7037
7045
  text: string;
7038
- type: "success" | "error" | "info" | "warning";
7046
+ type: "error" | "success" | "info" | "warning";
7039
7047
  id?: number | undefined;
7040
7048
  }[] | undefined;
7041
7049
  required?: boolean | undefined;
@@ -7054,7 +7062,7 @@ declare function init(config: AuthHeroConfig): {
7054
7062
  hint?: string | undefined;
7055
7063
  messages?: {
7056
7064
  text: string;
7057
- type: "success" | "error" | "info" | "warning";
7065
+ type: "error" | "success" | "info" | "warning";
7058
7066
  id?: number | undefined;
7059
7067
  }[] | undefined;
7060
7068
  required?: boolean | undefined;
@@ -7076,7 +7084,7 @@ declare function init(config: AuthHeroConfig): {
7076
7084
  hint?: string | undefined;
7077
7085
  messages?: {
7078
7086
  text: string;
7079
- type: "success" | "error" | "info" | "warning";
7087
+ type: "error" | "success" | "info" | "warning";
7080
7088
  id?: number | undefined;
7081
7089
  }[] | undefined;
7082
7090
  required?: boolean | undefined;
@@ -7098,7 +7106,7 @@ declare function init(config: AuthHeroConfig): {
7098
7106
  hint?: string | undefined;
7099
7107
  messages?: {
7100
7108
  text: string;
7101
- type: "success" | "error" | "info" | "warning";
7109
+ type: "error" | "success" | "info" | "warning";
7102
7110
  id?: number | undefined;
7103
7111
  }[] | undefined;
7104
7112
  required?: boolean | undefined;
@@ -7117,7 +7125,7 @@ declare function init(config: AuthHeroConfig): {
7117
7125
  hint?: string | undefined;
7118
7126
  messages?: {
7119
7127
  text: string;
7120
- type: "success" | "error" | "info" | "warning";
7128
+ type: "error" | "success" | "info" | "warning";
7121
7129
  id?: number | undefined;
7122
7130
  }[] | undefined;
7123
7131
  required?: boolean | undefined;
@@ -7142,7 +7150,7 @@ declare function init(config: AuthHeroConfig): {
7142
7150
  hint?: string | undefined;
7143
7151
  messages?: {
7144
7152
  text: string;
7145
- type: "success" | "error" | "info" | "warning";
7153
+ type: "error" | "success" | "info" | "warning";
7146
7154
  id?: number | undefined;
7147
7155
  }[] | undefined;
7148
7156
  required?: boolean | undefined;
@@ -7163,7 +7171,7 @@ declare function init(config: AuthHeroConfig): {
7163
7171
  hint?: string | undefined;
7164
7172
  messages?: {
7165
7173
  text: string;
7166
- type: "success" | "error" | "info" | "warning";
7174
+ type: "error" | "success" | "info" | "warning";
7167
7175
  id?: number | undefined;
7168
7176
  }[] | undefined;
7169
7177
  required?: boolean | undefined;
@@ -7184,7 +7192,7 @@ declare function init(config: AuthHeroConfig): {
7184
7192
  hint?: string | undefined;
7185
7193
  messages?: {
7186
7194
  text: string;
7187
- type: "success" | "error" | "info" | "warning";
7195
+ type: "error" | "success" | "info" | "warning";
7188
7196
  id?: number | undefined;
7189
7197
  }[] | undefined;
7190
7198
  required?: boolean | undefined;
@@ -7438,7 +7446,7 @@ declare function init(config: AuthHeroConfig): {
7438
7446
  hint?: string | undefined;
7439
7447
  messages?: {
7440
7448
  text: string;
7441
- type: "success" | "error" | "info" | "warning";
7449
+ type: "error" | "success" | "info" | "warning";
7442
7450
  id?: number | undefined;
7443
7451
  }[] | undefined;
7444
7452
  required?: boolean | undefined;
@@ -7456,7 +7464,7 @@ declare function init(config: AuthHeroConfig): {
7456
7464
  hint?: string | undefined;
7457
7465
  messages?: {
7458
7466
  text: string;
7459
- type: "success" | "error" | "info" | "warning";
7467
+ type: "error" | "success" | "info" | "warning";
7460
7468
  id?: number | undefined;
7461
7469
  }[] | undefined;
7462
7470
  required?: boolean | undefined;
@@ -7480,7 +7488,7 @@ declare function init(config: AuthHeroConfig): {
7480
7488
  hint?: string | undefined;
7481
7489
  messages?: {
7482
7490
  text: string;
7483
- type: "success" | "error" | "info" | "warning";
7491
+ type: "error" | "success" | "info" | "warning";
7484
7492
  id?: number | undefined;
7485
7493
  }[] | undefined;
7486
7494
  required?: boolean | undefined;
@@ -7504,7 +7512,7 @@ declare function init(config: AuthHeroConfig): {
7504
7512
  hint?: string | undefined;
7505
7513
  messages?: {
7506
7514
  text: string;
7507
- type: "success" | "error" | "info" | "warning";
7515
+ type: "error" | "success" | "info" | "warning";
7508
7516
  id?: number | undefined;
7509
7517
  }[] | undefined;
7510
7518
  required?: boolean | undefined;
@@ -7528,7 +7536,7 @@ declare function init(config: AuthHeroConfig): {
7528
7536
  hint?: string | undefined;
7529
7537
  messages?: {
7530
7538
  text: string;
7531
- type: "success" | "error" | "info" | "warning";
7539
+ type: "error" | "success" | "info" | "warning";
7532
7540
  id?: number | undefined;
7533
7541
  }[] | undefined;
7534
7542
  required?: boolean | undefined;
@@ -7553,7 +7561,7 @@ declare function init(config: AuthHeroConfig): {
7553
7561
  hint?: string | undefined;
7554
7562
  messages?: {
7555
7563
  text: string;
7556
- type: "success" | "error" | "info" | "warning";
7564
+ type: "error" | "success" | "info" | "warning";
7557
7565
  id?: number | undefined;
7558
7566
  }[] | undefined;
7559
7567
  required?: boolean | undefined;
@@ -7568,7 +7576,7 @@ declare function init(config: AuthHeroConfig): {
7568
7576
  hint?: string | undefined;
7569
7577
  messages?: {
7570
7578
  text: string;
7571
- type: "success" | "error" | "info" | "warning";
7579
+ type: "error" | "success" | "info" | "warning";
7572
7580
  id?: number | undefined;
7573
7581
  }[] | undefined;
7574
7582
  required?: boolean | undefined;
@@ -7589,7 +7597,7 @@ declare function init(config: AuthHeroConfig): {
7589
7597
  hint?: string | undefined;
7590
7598
  messages?: {
7591
7599
  text: string;
7592
- type: "success" | "error" | "info" | "warning";
7600
+ type: "error" | "success" | "info" | "warning";
7593
7601
  id?: number | undefined;
7594
7602
  }[] | undefined;
7595
7603
  required?: boolean | undefined;
@@ -7614,7 +7622,7 @@ declare function init(config: AuthHeroConfig): {
7614
7622
  hint?: string | undefined;
7615
7623
  messages?: {
7616
7624
  text: string;
7617
- type: "success" | "error" | "info" | "warning";
7625
+ type: "error" | "success" | "info" | "warning";
7618
7626
  id?: number | undefined;
7619
7627
  }[] | undefined;
7620
7628
  required?: boolean | undefined;
@@ -7633,7 +7641,7 @@ declare function init(config: AuthHeroConfig): {
7633
7641
  hint?: string | undefined;
7634
7642
  messages?: {
7635
7643
  text: string;
7636
- type: "success" | "error" | "info" | "warning";
7644
+ type: "error" | "success" | "info" | "warning";
7637
7645
  id?: number | undefined;
7638
7646
  }[] | undefined;
7639
7647
  required?: boolean | undefined;
@@ -7653,7 +7661,7 @@ declare function init(config: AuthHeroConfig): {
7653
7661
  hint?: string | undefined;
7654
7662
  messages?: {
7655
7663
  text: string;
7656
- type: "success" | "error" | "info" | "warning";
7664
+ type: "error" | "success" | "info" | "warning";
7657
7665
  id?: number | undefined;
7658
7666
  }[] | undefined;
7659
7667
  required?: boolean | undefined;
@@ -7672,7 +7680,7 @@ declare function init(config: AuthHeroConfig): {
7672
7680
  hint?: string | undefined;
7673
7681
  messages?: {
7674
7682
  text: string;
7675
- type: "success" | "error" | "info" | "warning";
7683
+ type: "error" | "success" | "info" | "warning";
7676
7684
  id?: number | undefined;
7677
7685
  }[] | undefined;
7678
7686
  required?: boolean | undefined;
@@ -7694,7 +7702,7 @@ declare function init(config: AuthHeroConfig): {
7694
7702
  hint?: string | undefined;
7695
7703
  messages?: {
7696
7704
  text: string;
7697
- type: "success" | "error" | "info" | "warning";
7705
+ type: "error" | "success" | "info" | "warning";
7698
7706
  id?: number | undefined;
7699
7707
  }[] | undefined;
7700
7708
  required?: boolean | undefined;
@@ -7716,7 +7724,7 @@ declare function init(config: AuthHeroConfig): {
7716
7724
  hint?: string | undefined;
7717
7725
  messages?: {
7718
7726
  text: string;
7719
- type: "success" | "error" | "info" | "warning";
7727
+ type: "error" | "success" | "info" | "warning";
7720
7728
  id?: number | undefined;
7721
7729
  }[] | undefined;
7722
7730
  required?: boolean | undefined;
@@ -7735,7 +7743,7 @@ declare function init(config: AuthHeroConfig): {
7735
7743
  hint?: string | undefined;
7736
7744
  messages?: {
7737
7745
  text: string;
7738
- type: "success" | "error" | "info" | "warning";
7746
+ type: "error" | "success" | "info" | "warning";
7739
7747
  id?: number | undefined;
7740
7748
  }[] | undefined;
7741
7749
  required?: boolean | undefined;
@@ -7760,7 +7768,7 @@ declare function init(config: AuthHeroConfig): {
7760
7768
  hint?: string | undefined;
7761
7769
  messages?: {
7762
7770
  text: string;
7763
- type: "success" | "error" | "info" | "warning";
7771
+ type: "error" | "success" | "info" | "warning";
7764
7772
  id?: number | undefined;
7765
7773
  }[] | undefined;
7766
7774
  required?: boolean | undefined;
@@ -7781,7 +7789,7 @@ declare function init(config: AuthHeroConfig): {
7781
7789
  hint?: string | undefined;
7782
7790
  messages?: {
7783
7791
  text: string;
7784
- type: "success" | "error" | "info" | "warning";
7792
+ type: "error" | "success" | "info" | "warning";
7785
7793
  id?: number | undefined;
7786
7794
  }[] | undefined;
7787
7795
  required?: boolean | undefined;
@@ -7802,7 +7810,7 @@ declare function init(config: AuthHeroConfig): {
7802
7810
  hint?: string | undefined;
7803
7811
  messages?: {
7804
7812
  text: string;
7805
- type: "success" | "error" | "info" | "warning";
7813
+ type: "error" | "success" | "info" | "warning";
7806
7814
  id?: number | undefined;
7807
7815
  }[] | undefined;
7808
7816
  required?: boolean | undefined;
@@ -8033,7 +8041,7 @@ declare function init(config: AuthHeroConfig): {
8033
8041
  hint?: string | undefined;
8034
8042
  messages?: {
8035
8043
  text: string;
8036
- type: "success" | "error" | "info" | "warning";
8044
+ type: "error" | "success" | "info" | "warning";
8037
8045
  id?: number | undefined;
8038
8046
  }[] | undefined;
8039
8047
  required?: boolean | undefined;
@@ -8051,7 +8059,7 @@ declare function init(config: AuthHeroConfig): {
8051
8059
  hint?: string | undefined;
8052
8060
  messages?: {
8053
8061
  text: string;
8054
- type: "success" | "error" | "info" | "warning";
8062
+ type: "error" | "success" | "info" | "warning";
8055
8063
  id?: number | undefined;
8056
8064
  }[] | undefined;
8057
8065
  required?: boolean | undefined;
@@ -8075,7 +8083,7 @@ declare function init(config: AuthHeroConfig): {
8075
8083
  hint?: string | undefined;
8076
8084
  messages?: {
8077
8085
  text: string;
8078
- type: "success" | "error" | "info" | "warning";
8086
+ type: "error" | "success" | "info" | "warning";
8079
8087
  id?: number | undefined;
8080
8088
  }[] | undefined;
8081
8089
  required?: boolean | undefined;
@@ -8099,7 +8107,7 @@ declare function init(config: AuthHeroConfig): {
8099
8107
  hint?: string | undefined;
8100
8108
  messages?: {
8101
8109
  text: string;
8102
- type: "success" | "error" | "info" | "warning";
8110
+ type: "error" | "success" | "info" | "warning";
8103
8111
  id?: number | undefined;
8104
8112
  }[] | undefined;
8105
8113
  required?: boolean | undefined;
@@ -8123,7 +8131,7 @@ declare function init(config: AuthHeroConfig): {
8123
8131
  hint?: string | undefined;
8124
8132
  messages?: {
8125
8133
  text: string;
8126
- type: "success" | "error" | "info" | "warning";
8134
+ type: "error" | "success" | "info" | "warning";
8127
8135
  id?: number | undefined;
8128
8136
  }[] | undefined;
8129
8137
  required?: boolean | undefined;
@@ -8152,7 +8160,7 @@ declare function init(config: AuthHeroConfig): {
8152
8160
  hint?: string | undefined;
8153
8161
  messages?: {
8154
8162
  text: string;
8155
- type: "success" | "error" | "info" | "warning";
8163
+ type: "error" | "success" | "info" | "warning";
8156
8164
  id?: number | undefined;
8157
8165
  }[] | undefined;
8158
8166
  required?: boolean | undefined;
@@ -8167,7 +8175,7 @@ declare function init(config: AuthHeroConfig): {
8167
8175
  hint?: string | undefined;
8168
8176
  messages?: {
8169
8177
  text: string;
8170
- type: "success" | "error" | "info" | "warning";
8178
+ type: "error" | "success" | "info" | "warning";
8171
8179
  id?: number | undefined;
8172
8180
  }[] | undefined;
8173
8181
  required?: boolean | undefined;
@@ -8188,7 +8196,7 @@ declare function init(config: AuthHeroConfig): {
8188
8196
  hint?: string | undefined;
8189
8197
  messages?: {
8190
8198
  text: string;
8191
- type: "success" | "error" | "info" | "warning";
8199
+ type: "error" | "success" | "info" | "warning";
8192
8200
  id?: number | undefined;
8193
8201
  }[] | undefined;
8194
8202
  required?: boolean | undefined;
@@ -8213,7 +8221,7 @@ declare function init(config: AuthHeroConfig): {
8213
8221
  hint?: string | undefined;
8214
8222
  messages?: {
8215
8223
  text: string;
8216
- type: "success" | "error" | "info" | "warning";
8224
+ type: "error" | "success" | "info" | "warning";
8217
8225
  id?: number | undefined;
8218
8226
  }[] | undefined;
8219
8227
  required?: boolean | undefined;
@@ -8232,7 +8240,7 @@ declare function init(config: AuthHeroConfig): {
8232
8240
  hint?: string | undefined;
8233
8241
  messages?: {
8234
8242
  text: string;
8235
- type: "success" | "error" | "info" | "warning";
8243
+ type: "error" | "success" | "info" | "warning";
8236
8244
  id?: number | undefined;
8237
8245
  }[] | undefined;
8238
8246
  required?: boolean | undefined;
@@ -8252,7 +8260,7 @@ declare function init(config: AuthHeroConfig): {
8252
8260
  hint?: string | undefined;
8253
8261
  messages?: {
8254
8262
  text: string;
8255
- type: "success" | "error" | "info" | "warning";
8263
+ type: "error" | "success" | "info" | "warning";
8256
8264
  id?: number | undefined;
8257
8265
  }[] | undefined;
8258
8266
  required?: boolean | undefined;
@@ -8271,7 +8279,7 @@ declare function init(config: AuthHeroConfig): {
8271
8279
  hint?: string | undefined;
8272
8280
  messages?: {
8273
8281
  text: string;
8274
- type: "success" | "error" | "info" | "warning";
8282
+ type: "error" | "success" | "info" | "warning";
8275
8283
  id?: number | undefined;
8276
8284
  }[] | undefined;
8277
8285
  required?: boolean | undefined;
@@ -8293,7 +8301,7 @@ declare function init(config: AuthHeroConfig): {
8293
8301
  hint?: string | undefined;
8294
8302
  messages?: {
8295
8303
  text: string;
8296
- type: "success" | "error" | "info" | "warning";
8304
+ type: "error" | "success" | "info" | "warning";
8297
8305
  id?: number | undefined;
8298
8306
  }[] | undefined;
8299
8307
  required?: boolean | undefined;
@@ -8315,7 +8323,7 @@ declare function init(config: AuthHeroConfig): {
8315
8323
  hint?: string | undefined;
8316
8324
  messages?: {
8317
8325
  text: string;
8318
- type: "success" | "error" | "info" | "warning";
8326
+ type: "error" | "success" | "info" | "warning";
8319
8327
  id?: number | undefined;
8320
8328
  }[] | undefined;
8321
8329
  required?: boolean | undefined;
@@ -8334,7 +8342,7 @@ declare function init(config: AuthHeroConfig): {
8334
8342
  hint?: string | undefined;
8335
8343
  messages?: {
8336
8344
  text: string;
8337
- type: "success" | "error" | "info" | "warning";
8345
+ type: "error" | "success" | "info" | "warning";
8338
8346
  id?: number | undefined;
8339
8347
  }[] | undefined;
8340
8348
  required?: boolean | undefined;
@@ -8359,7 +8367,7 @@ declare function init(config: AuthHeroConfig): {
8359
8367
  hint?: string | undefined;
8360
8368
  messages?: {
8361
8369
  text: string;
8362
- type: "success" | "error" | "info" | "warning";
8370
+ type: "error" | "success" | "info" | "warning";
8363
8371
  id?: number | undefined;
8364
8372
  }[] | undefined;
8365
8373
  required?: boolean | undefined;
@@ -8380,7 +8388,7 @@ declare function init(config: AuthHeroConfig): {
8380
8388
  hint?: string | undefined;
8381
8389
  messages?: {
8382
8390
  text: string;
8383
- type: "success" | "error" | "info" | "warning";
8391
+ type: "error" | "success" | "info" | "warning";
8384
8392
  id?: number | undefined;
8385
8393
  }[] | undefined;
8386
8394
  required?: boolean | undefined;
@@ -8401,7 +8409,7 @@ declare function init(config: AuthHeroConfig): {
8401
8409
  hint?: string | undefined;
8402
8410
  messages?: {
8403
8411
  text: string;
8404
- type: "success" | "error" | "info" | "warning";
8412
+ type: "error" | "success" | "info" | "warning";
8405
8413
  id?: number | undefined;
8406
8414
  }[] | undefined;
8407
8415
  required?: boolean | undefined;
@@ -8634,7 +8642,7 @@ declare function init(config: AuthHeroConfig): {
8634
8642
  hint?: string | undefined;
8635
8643
  messages?: {
8636
8644
  text: string;
8637
- type: "success" | "error" | "info" | "warning";
8645
+ type: "error" | "success" | "info" | "warning";
8638
8646
  id?: number | undefined;
8639
8647
  }[] | undefined;
8640
8648
  required?: boolean | undefined;
@@ -8652,7 +8660,7 @@ declare function init(config: AuthHeroConfig): {
8652
8660
  hint?: string | undefined;
8653
8661
  messages?: {
8654
8662
  text: string;
8655
- type: "success" | "error" | "info" | "warning";
8663
+ type: "error" | "success" | "info" | "warning";
8656
8664
  id?: number | undefined;
8657
8665
  }[] | undefined;
8658
8666
  required?: boolean | undefined;
@@ -8676,7 +8684,7 @@ declare function init(config: AuthHeroConfig): {
8676
8684
  hint?: string | undefined;
8677
8685
  messages?: {
8678
8686
  text: string;
8679
- type: "success" | "error" | "info" | "warning";
8687
+ type: "error" | "success" | "info" | "warning";
8680
8688
  id?: number | undefined;
8681
8689
  }[] | undefined;
8682
8690
  required?: boolean | undefined;
@@ -8700,7 +8708,7 @@ declare function init(config: AuthHeroConfig): {
8700
8708
  hint?: string | undefined;
8701
8709
  messages?: {
8702
8710
  text: string;
8703
- type: "success" | "error" | "info" | "warning";
8711
+ type: "error" | "success" | "info" | "warning";
8704
8712
  id?: number | undefined;
8705
8713
  }[] | undefined;
8706
8714
  required?: boolean | undefined;
@@ -8724,7 +8732,7 @@ declare function init(config: AuthHeroConfig): {
8724
8732
  hint?: string | undefined;
8725
8733
  messages?: {
8726
8734
  text: string;
8727
- type: "success" | "error" | "info" | "warning";
8735
+ type: "error" | "success" | "info" | "warning";
8728
8736
  id?: number | undefined;
8729
8737
  }[] | undefined;
8730
8738
  required?: boolean | undefined;
@@ -8749,7 +8757,7 @@ declare function init(config: AuthHeroConfig): {
8749
8757
  hint?: string | undefined;
8750
8758
  messages?: {
8751
8759
  text: string;
8752
- type: "success" | "error" | "info" | "warning";
8760
+ type: "error" | "success" | "info" | "warning";
8753
8761
  id?: number | undefined;
8754
8762
  }[] | undefined;
8755
8763
  required?: boolean | undefined;
@@ -8764,7 +8772,7 @@ declare function init(config: AuthHeroConfig): {
8764
8772
  hint?: string | undefined;
8765
8773
  messages?: {
8766
8774
  text: string;
8767
- type: "success" | "error" | "info" | "warning";
8775
+ type: "error" | "success" | "info" | "warning";
8768
8776
  id?: number | undefined;
8769
8777
  }[] | undefined;
8770
8778
  required?: boolean | undefined;
@@ -8785,7 +8793,7 @@ declare function init(config: AuthHeroConfig): {
8785
8793
  hint?: string | undefined;
8786
8794
  messages?: {
8787
8795
  text: string;
8788
- type: "success" | "error" | "info" | "warning";
8796
+ type: "error" | "success" | "info" | "warning";
8789
8797
  id?: number | undefined;
8790
8798
  }[] | undefined;
8791
8799
  required?: boolean | undefined;
@@ -8810,7 +8818,7 @@ declare function init(config: AuthHeroConfig): {
8810
8818
  hint?: string | undefined;
8811
8819
  messages?: {
8812
8820
  text: string;
8813
- type: "success" | "error" | "info" | "warning";
8821
+ type: "error" | "success" | "info" | "warning";
8814
8822
  id?: number | undefined;
8815
8823
  }[] | undefined;
8816
8824
  required?: boolean | undefined;
@@ -8829,7 +8837,7 @@ declare function init(config: AuthHeroConfig): {
8829
8837
  hint?: string | undefined;
8830
8838
  messages?: {
8831
8839
  text: string;
8832
- type: "success" | "error" | "info" | "warning";
8840
+ type: "error" | "success" | "info" | "warning";
8833
8841
  id?: number | undefined;
8834
8842
  }[] | undefined;
8835
8843
  required?: boolean | undefined;
@@ -8849,7 +8857,7 @@ declare function init(config: AuthHeroConfig): {
8849
8857
  hint?: string | undefined;
8850
8858
  messages?: {
8851
8859
  text: string;
8852
- type: "success" | "error" | "info" | "warning";
8860
+ type: "error" | "success" | "info" | "warning";
8853
8861
  id?: number | undefined;
8854
8862
  }[] | undefined;
8855
8863
  required?: boolean | undefined;
@@ -8868,7 +8876,7 @@ declare function init(config: AuthHeroConfig): {
8868
8876
  hint?: string | undefined;
8869
8877
  messages?: {
8870
8878
  text: string;
8871
- type: "success" | "error" | "info" | "warning";
8879
+ type: "error" | "success" | "info" | "warning";
8872
8880
  id?: number | undefined;
8873
8881
  }[] | undefined;
8874
8882
  required?: boolean | undefined;
@@ -8890,7 +8898,7 @@ declare function init(config: AuthHeroConfig): {
8890
8898
  hint?: string | undefined;
8891
8899
  messages?: {
8892
8900
  text: string;
8893
- type: "success" | "error" | "info" | "warning";
8901
+ type: "error" | "success" | "info" | "warning";
8894
8902
  id?: number | undefined;
8895
8903
  }[] | undefined;
8896
8904
  required?: boolean | undefined;
@@ -8912,7 +8920,7 @@ declare function init(config: AuthHeroConfig): {
8912
8920
  hint?: string | undefined;
8913
8921
  messages?: {
8914
8922
  text: string;
8915
- type: "success" | "error" | "info" | "warning";
8923
+ type: "error" | "success" | "info" | "warning";
8916
8924
  id?: number | undefined;
8917
8925
  }[] | undefined;
8918
8926
  required?: boolean | undefined;
@@ -8931,7 +8939,7 @@ declare function init(config: AuthHeroConfig): {
8931
8939
  hint?: string | undefined;
8932
8940
  messages?: {
8933
8941
  text: string;
8934
- type: "success" | "error" | "info" | "warning";
8942
+ type: "error" | "success" | "info" | "warning";
8935
8943
  id?: number | undefined;
8936
8944
  }[] | undefined;
8937
8945
  required?: boolean | undefined;
@@ -8956,7 +8964,7 @@ declare function init(config: AuthHeroConfig): {
8956
8964
  hint?: string | undefined;
8957
8965
  messages?: {
8958
8966
  text: string;
8959
- type: "success" | "error" | "info" | "warning";
8967
+ type: "error" | "success" | "info" | "warning";
8960
8968
  id?: number | undefined;
8961
8969
  }[] | undefined;
8962
8970
  required?: boolean | undefined;
@@ -8977,7 +8985,7 @@ declare function init(config: AuthHeroConfig): {
8977
8985
  hint?: string | undefined;
8978
8986
  messages?: {
8979
8987
  text: string;
8980
- type: "success" | "error" | "info" | "warning";
8988
+ type: "error" | "success" | "info" | "warning";
8981
8989
  id?: number | undefined;
8982
8990
  }[] | undefined;
8983
8991
  required?: boolean | undefined;
@@ -8998,7 +9006,7 @@ declare function init(config: AuthHeroConfig): {
8998
9006
  hint?: string | undefined;
8999
9007
  messages?: {
9000
9008
  text: string;
9001
- type: "success" | "error" | "info" | "warning";
9009
+ type: "error" | "success" | "info" | "warning";
9002
9010
  id?: number | undefined;
9003
9011
  }[] | undefined;
9004
9012
  required?: boolean | undefined;
@@ -9229,7 +9237,7 @@ declare function init(config: AuthHeroConfig): {
9229
9237
  hint?: string | undefined;
9230
9238
  messages?: {
9231
9239
  text: string;
9232
- type: "success" | "error" | "info" | "warning";
9240
+ type: "error" | "success" | "info" | "warning";
9233
9241
  id?: number | undefined;
9234
9242
  }[] | undefined;
9235
9243
  required?: boolean | undefined;
@@ -9247,7 +9255,7 @@ declare function init(config: AuthHeroConfig): {
9247
9255
  hint?: string | undefined;
9248
9256
  messages?: {
9249
9257
  text: string;
9250
- type: "success" | "error" | "info" | "warning";
9258
+ type: "error" | "success" | "info" | "warning";
9251
9259
  id?: number | undefined;
9252
9260
  }[] | undefined;
9253
9261
  required?: boolean | undefined;
@@ -9271,7 +9279,7 @@ declare function init(config: AuthHeroConfig): {
9271
9279
  hint?: string | undefined;
9272
9280
  messages?: {
9273
9281
  text: string;
9274
- type: "success" | "error" | "info" | "warning";
9282
+ type: "error" | "success" | "info" | "warning";
9275
9283
  id?: number | undefined;
9276
9284
  }[] | undefined;
9277
9285
  required?: boolean | undefined;
@@ -9295,7 +9303,7 @@ declare function init(config: AuthHeroConfig): {
9295
9303
  hint?: string | undefined;
9296
9304
  messages?: {
9297
9305
  text: string;
9298
- type: "success" | "error" | "info" | "warning";
9306
+ type: "error" | "success" | "info" | "warning";
9299
9307
  id?: number | undefined;
9300
9308
  }[] | undefined;
9301
9309
  required?: boolean | undefined;
@@ -9319,7 +9327,7 @@ declare function init(config: AuthHeroConfig): {
9319
9327
  hint?: string | undefined;
9320
9328
  messages?: {
9321
9329
  text: string;
9322
- type: "success" | "error" | "info" | "warning";
9330
+ type: "error" | "success" | "info" | "warning";
9323
9331
  id?: number | undefined;
9324
9332
  }[] | undefined;
9325
9333
  required?: boolean | undefined;
@@ -9348,7 +9356,7 @@ declare function init(config: AuthHeroConfig): {
9348
9356
  hint?: string | undefined;
9349
9357
  messages?: {
9350
9358
  text: string;
9351
- type: "success" | "error" | "info" | "warning";
9359
+ type: "error" | "success" | "info" | "warning";
9352
9360
  id?: number | undefined;
9353
9361
  }[] | undefined;
9354
9362
  required?: boolean | undefined;
@@ -9363,7 +9371,7 @@ declare function init(config: AuthHeroConfig): {
9363
9371
  hint?: string | undefined;
9364
9372
  messages?: {
9365
9373
  text: string;
9366
- type: "success" | "error" | "info" | "warning";
9374
+ type: "error" | "success" | "info" | "warning";
9367
9375
  id?: number | undefined;
9368
9376
  }[] | undefined;
9369
9377
  required?: boolean | undefined;
@@ -9384,7 +9392,7 @@ declare function init(config: AuthHeroConfig): {
9384
9392
  hint?: string | undefined;
9385
9393
  messages?: {
9386
9394
  text: string;
9387
- type: "success" | "error" | "info" | "warning";
9395
+ type: "error" | "success" | "info" | "warning";
9388
9396
  id?: number | undefined;
9389
9397
  }[] | undefined;
9390
9398
  required?: boolean | undefined;
@@ -9409,7 +9417,7 @@ declare function init(config: AuthHeroConfig): {
9409
9417
  hint?: string | undefined;
9410
9418
  messages?: {
9411
9419
  text: string;
9412
- type: "success" | "error" | "info" | "warning";
9420
+ type: "error" | "success" | "info" | "warning";
9413
9421
  id?: number | undefined;
9414
9422
  }[] | undefined;
9415
9423
  required?: boolean | undefined;
@@ -9428,7 +9436,7 @@ declare function init(config: AuthHeroConfig): {
9428
9436
  hint?: string | undefined;
9429
9437
  messages?: {
9430
9438
  text: string;
9431
- type: "success" | "error" | "info" | "warning";
9439
+ type: "error" | "success" | "info" | "warning";
9432
9440
  id?: number | undefined;
9433
9441
  }[] | undefined;
9434
9442
  required?: boolean | undefined;
@@ -9448,7 +9456,7 @@ declare function init(config: AuthHeroConfig): {
9448
9456
  hint?: string | undefined;
9449
9457
  messages?: {
9450
9458
  text: string;
9451
- type: "success" | "error" | "info" | "warning";
9459
+ type: "error" | "success" | "info" | "warning";
9452
9460
  id?: number | undefined;
9453
9461
  }[] | undefined;
9454
9462
  required?: boolean | undefined;
@@ -9467,7 +9475,7 @@ declare function init(config: AuthHeroConfig): {
9467
9475
  hint?: string | undefined;
9468
9476
  messages?: {
9469
9477
  text: string;
9470
- type: "success" | "error" | "info" | "warning";
9478
+ type: "error" | "success" | "info" | "warning";
9471
9479
  id?: number | undefined;
9472
9480
  }[] | undefined;
9473
9481
  required?: boolean | undefined;
@@ -9489,7 +9497,7 @@ declare function init(config: AuthHeroConfig): {
9489
9497
  hint?: string | undefined;
9490
9498
  messages?: {
9491
9499
  text: string;
9492
- type: "success" | "error" | "info" | "warning";
9500
+ type: "error" | "success" | "info" | "warning";
9493
9501
  id?: number | undefined;
9494
9502
  }[] | undefined;
9495
9503
  required?: boolean | undefined;
@@ -9511,7 +9519,7 @@ declare function init(config: AuthHeroConfig): {
9511
9519
  hint?: string | undefined;
9512
9520
  messages?: {
9513
9521
  text: string;
9514
- type: "success" | "error" | "info" | "warning";
9522
+ type: "error" | "success" | "info" | "warning";
9515
9523
  id?: number | undefined;
9516
9524
  }[] | undefined;
9517
9525
  required?: boolean | undefined;
@@ -9530,7 +9538,7 @@ declare function init(config: AuthHeroConfig): {
9530
9538
  hint?: string | undefined;
9531
9539
  messages?: {
9532
9540
  text: string;
9533
- type: "success" | "error" | "info" | "warning";
9541
+ type: "error" | "success" | "info" | "warning";
9534
9542
  id?: number | undefined;
9535
9543
  }[] | undefined;
9536
9544
  required?: boolean | undefined;
@@ -9555,7 +9563,7 @@ declare function init(config: AuthHeroConfig): {
9555
9563
  hint?: string | undefined;
9556
9564
  messages?: {
9557
9565
  text: string;
9558
- type: "success" | "error" | "info" | "warning";
9566
+ type: "error" | "success" | "info" | "warning";
9559
9567
  id?: number | undefined;
9560
9568
  }[] | undefined;
9561
9569
  required?: boolean | undefined;
@@ -9576,7 +9584,7 @@ declare function init(config: AuthHeroConfig): {
9576
9584
  hint?: string | undefined;
9577
9585
  messages?: {
9578
9586
  text: string;
9579
- type: "success" | "error" | "info" | "warning";
9587
+ type: "error" | "success" | "info" | "warning";
9580
9588
  id?: number | undefined;
9581
9589
  }[] | undefined;
9582
9590
  required?: boolean | undefined;
@@ -9597,7 +9605,7 @@ declare function init(config: AuthHeroConfig): {
9597
9605
  hint?: string | undefined;
9598
9606
  messages?: {
9599
9607
  text: string;
9600
- type: "success" | "error" | "info" | "warning";
9608
+ type: "error" | "success" | "info" | "warning";
9601
9609
  id?: number | undefined;
9602
9610
  }[] | undefined;
9603
9611
  required?: boolean | undefined;
@@ -9827,7 +9835,7 @@ declare function init(config: AuthHeroConfig): {
9827
9835
  };
9828
9836
  };
9829
9837
  output: {
9830
- prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9838
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9831
9839
  language: string;
9832
9840
  }[];
9833
9841
  outputFormat: "json";
@@ -9865,7 +9873,7 @@ declare function init(config: AuthHeroConfig): {
9865
9873
  $get: {
9866
9874
  input: {
9867
9875
  param: {
9868
- prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9876
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9869
9877
  language: string;
9870
9878
  };
9871
9879
  } & {
@@ -9887,7 +9895,7 @@ declare function init(config: AuthHeroConfig): {
9887
9895
  $put: {
9888
9896
  input: {
9889
9897
  param: {
9890
- prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9898
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9891
9899
  language: string;
9892
9900
  };
9893
9901
  } & {
@@ -9911,7 +9919,7 @@ declare function init(config: AuthHeroConfig): {
9911
9919
  $delete: {
9912
9920
  input: {
9913
9921
  param: {
9914
- prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9922
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9915
9923
  language: string;
9916
9924
  };
9917
9925
  } & {
@@ -10773,7 +10781,7 @@ declare function init(config: AuthHeroConfig): {
10773
10781
  };
10774
10782
  } | {
10775
10783
  mode: "inline";
10776
- status: "success" | "error";
10784
+ status: "error" | "success";
10777
10785
  connection_id: string;
10778
10786
  connection_name: string;
10779
10787
  strategy: string;
@@ -12060,7 +12068,7 @@ declare function init(config: AuthHeroConfig): {
12060
12068
  };
12061
12069
  };
12062
12070
  output: {
12063
- type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12071
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12064
12072
  date: string;
12065
12073
  isMobile: boolean;
12066
12074
  log_id: string;
@@ -12099,7 +12107,7 @@ declare function init(config: AuthHeroConfig): {
12099
12107
  limit: number;
12100
12108
  length: number;
12101
12109
  logs: {
12102
- type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12110
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12103
12111
  date: string;
12104
12112
  isMobile: boolean;
12105
12113
  log_id: string;
@@ -12153,7 +12161,7 @@ declare function init(config: AuthHeroConfig): {
12153
12161
  };
12154
12162
  };
12155
12163
  output: {
12156
- type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12164
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12157
12165
  date: string;
12158
12166
  isMobile: boolean;
12159
12167
  log_id: string;
@@ -12541,7 +12549,7 @@ declare function init(config: AuthHeroConfig): {
12541
12549
  addons?: {
12542
12550
  [x: string]: any;
12543
12551
  } | undefined;
12544
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12552
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12545
12553
  client_metadata?: {
12546
12554
  [x: string]: string;
12547
12555
  } | undefined;
@@ -12637,7 +12645,7 @@ declare function init(config: AuthHeroConfig): {
12637
12645
  addons?: {
12638
12646
  [x: string]: any;
12639
12647
  } | undefined;
12640
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12648
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12641
12649
  client_metadata?: {
12642
12650
  [x: string]: string;
12643
12651
  } | undefined;
@@ -12748,7 +12756,7 @@ declare function init(config: AuthHeroConfig): {
12748
12756
  addons?: {
12749
12757
  [x: string]: any;
12750
12758
  } | undefined;
12751
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12759
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12752
12760
  client_metadata?: {
12753
12761
  [x: string]: string;
12754
12762
  } | undefined;
@@ -12858,7 +12866,7 @@ declare function init(config: AuthHeroConfig): {
12858
12866
  custom_login_page_preview?: string | undefined;
12859
12867
  form_template?: string | undefined;
12860
12868
  addons?: Record<string, any> | undefined;
12861
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12869
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12862
12870
  client_metadata?: Record<string, string> | undefined;
12863
12871
  hide_sign_up_disabled_error?: boolean | undefined;
12864
12872
  mobile?: Record<string, any> | undefined;
@@ -12938,7 +12946,7 @@ declare function init(config: AuthHeroConfig): {
12938
12946
  addons?: {
12939
12947
  [x: string]: any;
12940
12948
  } | undefined;
12941
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12949
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12942
12950
  client_metadata?: {
12943
12951
  [x: string]: string;
12944
12952
  } | undefined;
@@ -13027,7 +13035,7 @@ declare function init(config: AuthHeroConfig): {
13027
13035
  custom_login_page_preview?: string | undefined;
13028
13036
  form_template?: string | undefined;
13029
13037
  addons?: Record<string, any> | undefined;
13030
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13038
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13031
13039
  client_metadata?: Record<string, string> | undefined;
13032
13040
  hide_sign_up_disabled_error?: boolean | undefined;
13033
13041
  mobile?: Record<string, any> | undefined;
@@ -13107,7 +13115,7 @@ declare function init(config: AuthHeroConfig): {
13107
13115
  addons?: {
13108
13116
  [x: string]: any;
13109
13117
  } | undefined;
13110
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13118
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13111
13119
  client_metadata?: {
13112
13120
  [x: string]: string;
13113
13121
  } | undefined;
@@ -14371,7 +14379,7 @@ declare function init(config: AuthHeroConfig): {
14371
14379
  };
14372
14380
  };
14373
14381
  output: {
14374
- type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14382
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14375
14383
  date: string;
14376
14384
  isMobile: boolean;
14377
14385
  log_id: string;
@@ -14410,7 +14418,7 @@ declare function init(config: AuthHeroConfig): {
14410
14418
  limit: number;
14411
14419
  length: number;
14412
14420
  logs: {
14413
- type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14421
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14414
14422
  date: string;
14415
14423
  isMobile: boolean;
14416
14424
  log_id: string;
@@ -14725,7 +14733,7 @@ declare function init(config: AuthHeroConfig): {
14725
14733
  };
14726
14734
  } & {
14727
14735
  json: {
14728
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14736
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14729
14737
  body: string;
14730
14738
  from: string;
14731
14739
  subject: string;
@@ -14746,7 +14754,7 @@ declare function init(config: AuthHeroConfig): {
14746
14754
  };
14747
14755
  } & {
14748
14756
  json: {
14749
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14757
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14750
14758
  body: string;
14751
14759
  from: string;
14752
14760
  subject: string;
@@ -14758,7 +14766,7 @@ declare function init(config: AuthHeroConfig): {
14758
14766
  };
14759
14767
  };
14760
14768
  output: {
14761
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14769
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14762
14770
  body: string;
14763
14771
  from: string;
14764
14772
  subject: string;
@@ -14781,7 +14789,7 @@ declare function init(config: AuthHeroConfig): {
14781
14789
  };
14782
14790
  };
14783
14791
  output: {
14784
- name: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14792
+ name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14785
14793
  body: string;
14786
14794
  subject: string;
14787
14795
  }[];
@@ -14794,7 +14802,7 @@ declare function init(config: AuthHeroConfig): {
14794
14802
  $get: {
14795
14803
  input: {
14796
14804
  param: {
14797
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14805
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14798
14806
  };
14799
14807
  } & {
14800
14808
  header: {
@@ -14807,7 +14815,7 @@ declare function init(config: AuthHeroConfig): {
14807
14815
  } | {
14808
14816
  input: {
14809
14817
  param: {
14810
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14818
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14811
14819
  };
14812
14820
  } & {
14813
14821
  header: {
@@ -14815,7 +14823,7 @@ declare function init(config: AuthHeroConfig): {
14815
14823
  };
14816
14824
  };
14817
14825
  output: {
14818
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14826
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14819
14827
  body: string;
14820
14828
  from: string;
14821
14829
  subject: string;
@@ -14834,7 +14842,7 @@ declare function init(config: AuthHeroConfig): {
14834
14842
  $put: {
14835
14843
  input: {
14836
14844
  param: {
14837
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14845
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14838
14846
  };
14839
14847
  } & {
14840
14848
  header: {
@@ -14842,7 +14850,7 @@ declare function init(config: AuthHeroConfig): {
14842
14850
  };
14843
14851
  } & {
14844
14852
  json: {
14845
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14853
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14846
14854
  body: string;
14847
14855
  subject: string;
14848
14856
  syntax?: "liquid" | undefined;
@@ -14854,7 +14862,7 @@ declare function init(config: AuthHeroConfig): {
14854
14862
  };
14855
14863
  };
14856
14864
  output: {
14857
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14865
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14858
14866
  body: string;
14859
14867
  from: string;
14860
14868
  subject: string;
@@ -14873,7 +14881,7 @@ declare function init(config: AuthHeroConfig): {
14873
14881
  $patch: {
14874
14882
  input: {
14875
14883
  param: {
14876
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14884
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14877
14885
  };
14878
14886
  } & {
14879
14887
  header: {
@@ -14881,7 +14889,7 @@ declare function init(config: AuthHeroConfig): {
14881
14889
  };
14882
14890
  } & {
14883
14891
  json: {
14884
- template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14892
+ template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14885
14893
  body?: string | undefined;
14886
14894
  from?: string | undefined;
14887
14895
  subject?: string | undefined;
@@ -14898,7 +14906,7 @@ declare function init(config: AuthHeroConfig): {
14898
14906
  } | {
14899
14907
  input: {
14900
14908
  param: {
14901
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14909
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14902
14910
  };
14903
14911
  } & {
14904
14912
  header: {
@@ -14906,7 +14914,7 @@ declare function init(config: AuthHeroConfig): {
14906
14914
  };
14907
14915
  } & {
14908
14916
  json: {
14909
- template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14917
+ template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14910
14918
  body?: string | undefined;
14911
14919
  from?: string | undefined;
14912
14920
  subject?: string | undefined;
@@ -14918,7 +14926,7 @@ declare function init(config: AuthHeroConfig): {
14918
14926
  };
14919
14927
  };
14920
14928
  output: {
14921
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14929
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14922
14930
  body: string;
14923
14931
  from: string;
14924
14932
  subject: string;
@@ -14937,7 +14945,7 @@ declare function init(config: AuthHeroConfig): {
14937
14945
  $delete: {
14938
14946
  input: {
14939
14947
  param: {
14940
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14948
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14941
14949
  };
14942
14950
  } & {
14943
14951
  header: {
@@ -14950,7 +14958,7 @@ declare function init(config: AuthHeroConfig): {
14950
14958
  } | {
14951
14959
  input: {
14952
14960
  param: {
14953
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14961
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14954
14962
  };
14955
14963
  } & {
14956
14964
  header: {
@@ -14967,7 +14975,7 @@ declare function init(config: AuthHeroConfig): {
14967
14975
  $post: {
14968
14976
  input: {
14969
14977
  param: {
14970
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14978
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14971
14979
  };
14972
14980
  } & {
14973
14981
  header: {
@@ -15919,7 +15927,7 @@ declare function init(config: AuthHeroConfig): {
15919
15927
  } & {
15920
15928
  json: {
15921
15929
  body?: string | undefined;
15922
- screen?: "login" | "identifier" | "signup" | "password" | undefined;
15930
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
15923
15931
  branding?: {
15924
15932
  colors?: {
15925
15933
  primary: string;
@@ -16088,7 +16096,7 @@ declare function init(config: AuthHeroConfig): {
16088
16096
  json: {
16089
16097
  bindings: {
16090
16098
  ref: {
16091
- type?: "action_name" | "action_id" | undefined;
16099
+ type?: "action_id" | "action_name" | undefined;
16092
16100
  value?: string | undefined;
16093
16101
  id?: string | undefined;
16094
16102
  name?: string | undefined;
@@ -17188,7 +17196,7 @@ declare function init(config: AuthHeroConfig): {
17188
17196
  scope?: string | undefined;
17189
17197
  grant_types?: string[] | undefined;
17190
17198
  response_types?: string[] | undefined;
17191
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
17199
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
17192
17200
  jwks_uri?: string | undefined;
17193
17201
  jwks?: Record<string, unknown> | undefined;
17194
17202
  software_id?: string | undefined;
@@ -17277,7 +17285,7 @@ declare function init(config: AuthHeroConfig): {
17277
17285
  scope?: string | undefined;
17278
17286
  grant_types?: string[] | undefined;
17279
17287
  response_types?: string[] | undefined;
17280
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
17288
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
17281
17289
  jwks_uri?: string | undefined;
17282
17290
  jwks?: Record<string, unknown> | undefined;
17283
17291
  software_id?: string | undefined;
@@ -17623,19 +17631,19 @@ declare function init(config: AuthHeroConfig): {
17623
17631
  email: string;
17624
17632
  send: "code" | "link";
17625
17633
  authParams: {
17626
- code_challenge?: string | undefined;
17627
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17628
- redirect_uri?: string | undefined;
17629
- nonce?: string | undefined;
17634
+ username?: string | undefined;
17630
17635
  state?: string | undefined;
17631
- act_as?: string | undefined;
17636
+ audience?: string | undefined;
17632
17637
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17633
17638
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17634
- audience?: string | undefined;
17635
- organization?: string | undefined;
17636
17639
  scope?: string | undefined;
17640
+ organization?: string | undefined;
17641
+ nonce?: string | undefined;
17642
+ redirect_uri?: string | undefined;
17643
+ act_as?: string | undefined;
17637
17644
  prompt?: string | undefined;
17638
- username?: string | undefined;
17645
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17646
+ code_challenge?: string | undefined;
17639
17647
  ui_locales?: string | undefined;
17640
17648
  max_age?: number | undefined;
17641
17649
  acr_values?: string | undefined;
@@ -17659,19 +17667,19 @@ declare function init(config: AuthHeroConfig): {
17659
17667
  phone_number: string;
17660
17668
  send: "code" | "link";
17661
17669
  authParams: {
17662
- code_challenge?: string | undefined;
17663
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17664
- redirect_uri?: string | undefined;
17665
- nonce?: string | undefined;
17670
+ username?: string | undefined;
17666
17671
  state?: string | undefined;
17667
- act_as?: string | undefined;
17672
+ audience?: string | undefined;
17668
17673
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17669
17674
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17670
- audience?: string | undefined;
17671
- organization?: string | undefined;
17672
17675
  scope?: string | undefined;
17676
+ organization?: string | undefined;
17677
+ nonce?: string | undefined;
17678
+ redirect_uri?: string | undefined;
17679
+ act_as?: string | undefined;
17673
17680
  prompt?: string | undefined;
17674
- username?: string | undefined;
17681
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17682
+ code_challenge?: string | undefined;
17675
17683
  ui_locales?: string | undefined;
17676
17684
  max_age?: number | undefined;
17677
17685
  acr_values?: string | undefined;
@@ -17803,14 +17811,14 @@ declare function init(config: AuthHeroConfig): {
17803
17811
  input: {
17804
17812
  form: {
17805
17813
  token: string;
17806
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17814
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17807
17815
  client_id?: string | undefined;
17808
17816
  client_secret?: string | undefined;
17809
17817
  };
17810
17818
  } & {
17811
17819
  json: {
17812
17820
  token: string;
17813
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17821
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17814
17822
  client_id?: string | undefined;
17815
17823
  client_secret?: string | undefined;
17816
17824
  };
@@ -17822,14 +17830,14 @@ declare function init(config: AuthHeroConfig): {
17822
17830
  input: {
17823
17831
  form: {
17824
17832
  token: string;
17825
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17833
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17826
17834
  client_id?: string | undefined;
17827
17835
  client_secret?: string | undefined;
17828
17836
  };
17829
17837
  } & {
17830
17838
  json: {
17831
17839
  token: string;
17832
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17840
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17833
17841
  client_id?: string | undefined;
17834
17842
  client_secret?: string | undefined;
17835
17843
  };
@@ -17844,14 +17852,14 @@ declare function init(config: AuthHeroConfig): {
17844
17852
  input: {
17845
17853
  form: {
17846
17854
  token: string;
17847
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17855
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17848
17856
  client_id?: string | undefined;
17849
17857
  client_secret?: string | undefined;
17850
17858
  };
17851
17859
  } & {
17852
17860
  json: {
17853
17861
  token: string;
17854
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17862
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17855
17863
  client_id?: string | undefined;
17856
17864
  client_secret?: string | undefined;
17857
17865
  };
@@ -17901,7 +17909,7 @@ declare function init(config: AuthHeroConfig): {
17901
17909
  client_id: string;
17902
17910
  username: string;
17903
17911
  otp: string;
17904
- realm: "email" | "sms";
17912
+ realm: "sms" | "email";
17905
17913
  } | {
17906
17914
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17907
17915
  subject_token: string;
@@ -17948,7 +17956,7 @@ declare function init(config: AuthHeroConfig): {
17948
17956
  client_id: string;
17949
17957
  username: string;
17950
17958
  otp: string;
17951
- realm: "email" | "sms";
17959
+ realm: "sms" | "email";
17952
17960
  } | {
17953
17961
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17954
17962
  subject_token: string;
@@ -18000,7 +18008,7 @@ declare function init(config: AuthHeroConfig): {
18000
18008
  client_id: string;
18001
18009
  username: string;
18002
18010
  otp: string;
18003
- realm: "email" | "sms";
18011
+ realm: "sms" | "email";
18004
18012
  } | {
18005
18013
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18006
18014
  subject_token: string;
@@ -18047,7 +18055,7 @@ declare function init(config: AuthHeroConfig): {
18047
18055
  client_id: string;
18048
18056
  username: string;
18049
18057
  otp: string;
18050
- realm: "email" | "sms";
18058
+ realm: "sms" | "email";
18051
18059
  } | {
18052
18060
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18053
18061
  subject_token: string;
@@ -18107,7 +18115,7 @@ declare function init(config: AuthHeroConfig): {
18107
18115
  client_id: string;
18108
18116
  username: string;
18109
18117
  otp: string;
18110
- realm: "email" | "sms";
18118
+ realm: "sms" | "email";
18111
18119
  } | {
18112
18120
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18113
18121
  subject_token: string;
@@ -18154,7 +18162,7 @@ declare function init(config: AuthHeroConfig): {
18154
18162
  client_id: string;
18155
18163
  username: string;
18156
18164
  otp: string;
18157
- realm: "email" | "sms";
18165
+ realm: "sms" | "email";
18158
18166
  } | {
18159
18167
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18160
18168
  subject_token: string;
@@ -18209,7 +18217,7 @@ declare function init(config: AuthHeroConfig): {
18209
18217
  client_id: string;
18210
18218
  username: string;
18211
18219
  otp: string;
18212
- realm: "email" | "sms";
18220
+ realm: "sms" | "email";
18213
18221
  } | {
18214
18222
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18215
18223
  subject_token: string;
@@ -18256,7 +18264,7 @@ declare function init(config: AuthHeroConfig): {
18256
18264
  client_id: string;
18257
18265
  username: string;
18258
18266
  otp: string;
18259
- realm: "email" | "sms";
18267
+ realm: "sms" | "email";
18260
18268
  } | {
18261
18269
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18262
18270
  subject_token: string;
@@ -18311,7 +18319,7 @@ declare function init(config: AuthHeroConfig): {
18311
18319
  client_id: string;
18312
18320
  username: string;
18313
18321
  otp: string;
18314
- realm: "email" | "sms";
18322
+ realm: "sms" | "email";
18315
18323
  } | {
18316
18324
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18317
18325
  subject_token: string;
@@ -18358,7 +18366,7 @@ declare function init(config: AuthHeroConfig): {
18358
18366
  client_id: string;
18359
18367
  username: string;
18360
18368
  otp: string;
18361
- realm: "email" | "sms";
18369
+ realm: "sms" | "email";
18362
18370
  } | {
18363
18371
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18364
18372
  subject_token: string;
@@ -19578,7 +19586,7 @@ declare function init(config: AuthHeroConfig): {
19578
19586
  $get: {
19579
19587
  input: {
19580
19588
  param: {
19581
- screen: "login" | "signup" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19589
+ 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";
19582
19590
  };
19583
19591
  } & {
19584
19592
  query: {
@@ -19594,7 +19602,7 @@ declare function init(config: AuthHeroConfig): {
19594
19602
  } | {
19595
19603
  input: {
19596
19604
  param: {
19597
- screen: "login" | "signup" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19605
+ 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";
19598
19606
  };
19599
19607
  } & {
19600
19608
  query: {
@@ -19610,7 +19618,7 @@ declare function init(config: AuthHeroConfig): {
19610
19618
  } | {
19611
19619
  input: {
19612
19620
  param: {
19613
- screen: "login" | "signup" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19621
+ 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";
19614
19622
  };
19615
19623
  } & {
19616
19624
  query: {
@@ -19630,7 +19638,7 @@ declare function init(config: AuthHeroConfig): {
19630
19638
  $post: {
19631
19639
  input: {
19632
19640
  param: {
19633
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19641
+ 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";
19634
19642
  };
19635
19643
  } & {
19636
19644
  query: {
@@ -19648,7 +19656,7 @@ declare function init(config: AuthHeroConfig): {
19648
19656
  } | {
19649
19657
  input: {
19650
19658
  param: {
19651
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19659
+ 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";
19652
19660
  };
19653
19661
  } & {
19654
19662
  query: {
@@ -19747,4 +19755,4 @@ declare function init(config: AuthHeroConfig): {
19747
19755
  };
19748
19756
 
19749
19757
  export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, backfillProxyHostsToKv, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wrapProxyAdaptersWithKvPublish };
19750
- export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WrappedProxyAdapters };
19758
+ export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WrappedProxyAdapters };