authhero 8.15.0 → 8.16.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 (33) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +105 -105
  3. package/dist/authhero.d.ts +186 -185
  4. package/dist/authhero.mjs +4659 -4645
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  7. package/dist/types/constants.d.ts +1 -1
  8. package/dist/types/index.d.ts +176 -176
  9. package/dist/types/routes/auth-api/index.d.ts +4 -4
  10. package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
  11. package/dist/types/routes/auth-api/passwordless.d.ts +2 -2
  12. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  13. package/dist/types/routes/management-api/actions.d.ts +1 -1
  14. package/dist/types/routes/management-api/branding.d.ts +3 -3
  15. package/dist/types/routes/management-api/clients.d.ts +6 -6
  16. package/dist/types/routes/management-api/connections.d.ts +16 -16
  17. package/dist/types/routes/management-api/forms.d.ts +126 -126
  18. package/dist/types/routes/management-api/index.d.ts +162 -162
  19. package/dist/types/routes/management-api/logs.d.ts +3 -3
  20. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  21. package/dist/types/routes/management-api/tenants.d.ts +28 -28
  22. package/dist/types/routes/management-api/users.d.ts +2 -2
  23. package/dist/types/routes/universal-login/common.d.ts +6 -6
  24. package/dist/types/routes/universal-login/continue.d.ts +2 -2
  25. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  26. package/dist/types/routes/universal-login/identifier.d.ts +4 -4
  27. package/dist/types/routes/universal-login/impersonate.d.ts +2 -2
  28. package/dist/types/routes/universal-login/index.d.ts +8 -8
  29. package/dist/types/routes/universal-login/u2-index.d.ts +2 -2
  30. package/dist/types/routes/universal-login/u2-routes.d.ts +2 -2
  31. package/dist/types/types/AuthHeroConfig.d.ts +9 -8
  32. package/dist/types/utils/username-password-provider.d.ts +19 -5
  33. package/package.json +5 -5
@@ -1070,11 +1070,11 @@ type UserLinkingModeOption = UserLinkingMode | UserLinkingModeResolver;
1070
1070
  /**
1071
1071
  * Resolver for the per-tenant username/password provider value.
1072
1072
  *
1073
- * The native database provider has historically been written as `"auth2"`.
1074
- * Returning `"auth0"` for selected tenants lets you migrate them onto the
1075
- * `"auth0"` provider value (matching what the legacy Auth0 import format
1076
- * used) one tenant at a time. Reads always accept both values, so existing
1077
- * `auth2|*` rows keep resolving during and after the cutover.
1073
+ * The native database provider has historically been written as `"auth2"`;
1074
+ * new rows now default to `"auth0"`. Returning `"auth2"` for selected
1075
+ * tenants pins them on the legacy value during a staged cutover. Reads
1076
+ * always accept both values, so existing `auth2|*` rows keep resolving
1077
+ * during and after the cutover.
1078
1078
  *
1079
1079
  * TRANSITIONAL: this resolver and the dual-read fallback can be removed
1080
1080
  * once every tenant has been migrated to a single value.
@@ -1423,11 +1423,12 @@ interface AuthHeroConfig {
1423
1423
  userLinkingMode?: UserLinkingModeOption;
1424
1424
  /**
1425
1425
  * Per-tenant override for the username/password provider value used on
1426
- * NEW user rows. Returning `"auth0"` for a tenant migrates new signups,
1427
- * password resets, etc. onto the `auth0|*` user_id format. Existing
1426
+ * NEW user rows. Omit to write `"auth0"` for every tenant new signups,
1427
+ * password resets, etc. use the `auth0|*` user_id format. Existing
1428
1428
  * `auth2|*` rows keep working — reads accept either value.
1429
1429
  *
1430
- * Omit to keep the legacy `"auth2"` value for every tenant.
1430
+ * Returning `"auth2"` pins a tenant on the legacy value during a staged
1431
+ * cutover.
1431
1432
  *
1432
1433
  * TRANSITIONAL: this hook and the dual-read fallback in the password
1433
1434
  * flows can be removed once all tenants have been backfilled.
@@ -2826,7 +2827,7 @@ interface ResolveSigningKeysOptions {
2826
2827
  }
2827
2828
  declare function resolveSigningKeys(keys: KeysAdapter, tenantId: string, modeOption: SigningKeyModeOption | undefined, opts: ResolveSigningKeysOptions): Promise<SigningKey[]>;
2828
2829
 
2829
- declare const USERNAME_PASSWORD_PROVIDER = "auth2";
2830
+ declare const USERNAME_PASSWORD_PROVIDER = "auth0";
2830
2831
 
2831
2832
  interface EnsureUsernameOptions {
2832
2833
  /**
@@ -5633,7 +5634,7 @@ declare function init(config: AuthHeroConfig): {
5633
5634
  hint?: string | undefined;
5634
5635
  messages?: {
5635
5636
  text: string;
5636
- type: "error" | "success" | "info" | "warning";
5637
+ type: "success" | "error" | "info" | "warning";
5637
5638
  id?: number | undefined;
5638
5639
  }[] | undefined;
5639
5640
  required?: boolean | undefined;
@@ -5651,7 +5652,7 @@ declare function init(config: AuthHeroConfig): {
5651
5652
  hint?: string | undefined;
5652
5653
  messages?: {
5653
5654
  text: string;
5654
- type: "error" | "success" | "info" | "warning";
5655
+ type: "success" | "error" | "info" | "warning";
5655
5656
  id?: number | undefined;
5656
5657
  }[] | undefined;
5657
5658
  required?: boolean | undefined;
@@ -5675,7 +5676,7 @@ declare function init(config: AuthHeroConfig): {
5675
5676
  hint?: string | undefined;
5676
5677
  messages?: {
5677
5678
  text: string;
5678
- type: "error" | "success" | "info" | "warning";
5679
+ type: "success" | "error" | "info" | "warning";
5679
5680
  id?: number | undefined;
5680
5681
  }[] | undefined;
5681
5682
  required?: boolean | undefined;
@@ -5699,7 +5700,7 @@ declare function init(config: AuthHeroConfig): {
5699
5700
  hint?: string | undefined;
5700
5701
  messages?: {
5701
5702
  text: string;
5702
- type: "error" | "success" | "info" | "warning";
5703
+ type: "success" | "error" | "info" | "warning";
5703
5704
  id?: number | undefined;
5704
5705
  }[] | undefined;
5705
5706
  required?: boolean | undefined;
@@ -5723,7 +5724,7 @@ declare function init(config: AuthHeroConfig): {
5723
5724
  hint?: string | undefined;
5724
5725
  messages?: {
5725
5726
  text: string;
5726
- type: "error" | "success" | "info" | "warning";
5727
+ type: "success" | "error" | "info" | "warning";
5727
5728
  id?: number | undefined;
5728
5729
  }[] | undefined;
5729
5730
  required?: boolean | undefined;
@@ -5752,7 +5753,7 @@ declare function init(config: AuthHeroConfig): {
5752
5753
  hint?: string | undefined;
5753
5754
  messages?: {
5754
5755
  text: string;
5755
- type: "error" | "success" | "info" | "warning";
5756
+ type: "success" | "error" | "info" | "warning";
5756
5757
  id?: number | undefined;
5757
5758
  }[] | undefined;
5758
5759
  required?: boolean | undefined;
@@ -5767,7 +5768,7 @@ declare function init(config: AuthHeroConfig): {
5767
5768
  hint?: string | undefined;
5768
5769
  messages?: {
5769
5770
  text: string;
5770
- type: "error" | "success" | "info" | "warning";
5771
+ type: "success" | "error" | "info" | "warning";
5771
5772
  id?: number | undefined;
5772
5773
  }[] | undefined;
5773
5774
  required?: boolean | undefined;
@@ -5788,7 +5789,7 @@ declare function init(config: AuthHeroConfig): {
5788
5789
  hint?: string | undefined;
5789
5790
  messages?: {
5790
5791
  text: string;
5791
- type: "error" | "success" | "info" | "warning";
5792
+ type: "success" | "error" | "info" | "warning";
5792
5793
  id?: number | undefined;
5793
5794
  }[] | undefined;
5794
5795
  required?: boolean | undefined;
@@ -5813,7 +5814,7 @@ declare function init(config: AuthHeroConfig): {
5813
5814
  hint?: string | undefined;
5814
5815
  messages?: {
5815
5816
  text: string;
5816
- type: "error" | "success" | "info" | "warning";
5817
+ type: "success" | "error" | "info" | "warning";
5817
5818
  id?: number | undefined;
5818
5819
  }[] | undefined;
5819
5820
  required?: boolean | undefined;
@@ -5832,7 +5833,7 @@ declare function init(config: AuthHeroConfig): {
5832
5833
  hint?: string | undefined;
5833
5834
  messages?: {
5834
5835
  text: string;
5835
- type: "error" | "success" | "info" | "warning";
5836
+ type: "success" | "error" | "info" | "warning";
5836
5837
  id?: number | undefined;
5837
5838
  }[] | undefined;
5838
5839
  required?: boolean | undefined;
@@ -5852,7 +5853,7 @@ declare function init(config: AuthHeroConfig): {
5852
5853
  hint?: string | undefined;
5853
5854
  messages?: {
5854
5855
  text: string;
5855
- type: "error" | "success" | "info" | "warning";
5856
+ type: "success" | "error" | "info" | "warning";
5856
5857
  id?: number | undefined;
5857
5858
  }[] | undefined;
5858
5859
  required?: boolean | undefined;
@@ -5871,7 +5872,7 @@ declare function init(config: AuthHeroConfig): {
5871
5872
  hint?: string | undefined;
5872
5873
  messages?: {
5873
5874
  text: string;
5874
- type: "error" | "success" | "info" | "warning";
5875
+ type: "success" | "error" | "info" | "warning";
5875
5876
  id?: number | undefined;
5876
5877
  }[] | undefined;
5877
5878
  required?: boolean | undefined;
@@ -5893,7 +5894,7 @@ declare function init(config: AuthHeroConfig): {
5893
5894
  hint?: string | undefined;
5894
5895
  messages?: {
5895
5896
  text: string;
5896
- type: "error" | "success" | "info" | "warning";
5897
+ type: "success" | "error" | "info" | "warning";
5897
5898
  id?: number | undefined;
5898
5899
  }[] | undefined;
5899
5900
  required?: boolean | undefined;
@@ -5915,7 +5916,7 @@ declare function init(config: AuthHeroConfig): {
5915
5916
  hint?: string | undefined;
5916
5917
  messages?: {
5917
5918
  text: string;
5918
- type: "error" | "success" | "info" | "warning";
5919
+ type: "success" | "error" | "info" | "warning";
5919
5920
  id?: number | undefined;
5920
5921
  }[] | undefined;
5921
5922
  required?: boolean | undefined;
@@ -5934,7 +5935,7 @@ declare function init(config: AuthHeroConfig): {
5934
5935
  hint?: string | undefined;
5935
5936
  messages?: {
5936
5937
  text: string;
5937
- type: "error" | "success" | "info" | "warning";
5938
+ type: "success" | "error" | "info" | "warning";
5938
5939
  id?: number | undefined;
5939
5940
  }[] | undefined;
5940
5941
  required?: boolean | undefined;
@@ -5959,7 +5960,7 @@ declare function init(config: AuthHeroConfig): {
5959
5960
  hint?: string | undefined;
5960
5961
  messages?: {
5961
5962
  text: string;
5962
- type: "error" | "success" | "info" | "warning";
5963
+ type: "success" | "error" | "info" | "warning";
5963
5964
  id?: number | undefined;
5964
5965
  }[] | undefined;
5965
5966
  required?: boolean | undefined;
@@ -5980,7 +5981,7 @@ declare function init(config: AuthHeroConfig): {
5980
5981
  hint?: string | undefined;
5981
5982
  messages?: {
5982
5983
  text: string;
5983
- type: "error" | "success" | "info" | "warning";
5984
+ type: "success" | "error" | "info" | "warning";
5984
5985
  id?: number | undefined;
5985
5986
  }[] | undefined;
5986
5987
  required?: boolean | undefined;
@@ -6001,7 +6002,7 @@ declare function init(config: AuthHeroConfig): {
6001
6002
  hint?: string | undefined;
6002
6003
  messages?: {
6003
6004
  text: string;
6004
- type: "error" | "success" | "info" | "warning";
6005
+ type: "success" | "error" | "info" | "warning";
6005
6006
  id?: number | undefined;
6006
6007
  }[] | undefined;
6007
6008
  required?: boolean | undefined;
@@ -6234,7 +6235,7 @@ declare function init(config: AuthHeroConfig): {
6234
6235
  hint?: string | undefined;
6235
6236
  messages?: {
6236
6237
  text: string;
6237
- type: "error" | "success" | "info" | "warning";
6238
+ type: "success" | "error" | "info" | "warning";
6238
6239
  id?: number | undefined;
6239
6240
  }[] | undefined;
6240
6241
  required?: boolean | undefined;
@@ -6252,7 +6253,7 @@ declare function init(config: AuthHeroConfig): {
6252
6253
  hint?: string | undefined;
6253
6254
  messages?: {
6254
6255
  text: string;
6255
- type: "error" | "success" | "info" | "warning";
6256
+ type: "success" | "error" | "info" | "warning";
6256
6257
  id?: number | undefined;
6257
6258
  }[] | undefined;
6258
6259
  required?: boolean | undefined;
@@ -6276,7 +6277,7 @@ declare function init(config: AuthHeroConfig): {
6276
6277
  hint?: string | undefined;
6277
6278
  messages?: {
6278
6279
  text: string;
6279
- type: "error" | "success" | "info" | "warning";
6280
+ type: "success" | "error" | "info" | "warning";
6280
6281
  id?: number | undefined;
6281
6282
  }[] | undefined;
6282
6283
  required?: boolean | undefined;
@@ -6300,7 +6301,7 @@ declare function init(config: AuthHeroConfig): {
6300
6301
  hint?: string | undefined;
6301
6302
  messages?: {
6302
6303
  text: string;
6303
- type: "error" | "success" | "info" | "warning";
6304
+ type: "success" | "error" | "info" | "warning";
6304
6305
  id?: number | undefined;
6305
6306
  }[] | undefined;
6306
6307
  required?: boolean | undefined;
@@ -6324,7 +6325,7 @@ declare function init(config: AuthHeroConfig): {
6324
6325
  hint?: string | undefined;
6325
6326
  messages?: {
6326
6327
  text: string;
6327
- type: "error" | "success" | "info" | "warning";
6328
+ type: "success" | "error" | "info" | "warning";
6328
6329
  id?: number | undefined;
6329
6330
  }[] | undefined;
6330
6331
  required?: boolean | undefined;
@@ -6353,7 +6354,7 @@ declare function init(config: AuthHeroConfig): {
6353
6354
  hint?: string | undefined;
6354
6355
  messages?: {
6355
6356
  text: string;
6356
- type: "error" | "success" | "info" | "warning";
6357
+ type: "success" | "error" | "info" | "warning";
6357
6358
  id?: number | undefined;
6358
6359
  }[] | undefined;
6359
6360
  required?: boolean | undefined;
@@ -6368,7 +6369,7 @@ declare function init(config: AuthHeroConfig): {
6368
6369
  hint?: string | undefined;
6369
6370
  messages?: {
6370
6371
  text: string;
6371
- type: "error" | "success" | "info" | "warning";
6372
+ type: "success" | "error" | "info" | "warning";
6372
6373
  id?: number | undefined;
6373
6374
  }[] | undefined;
6374
6375
  required?: boolean | undefined;
@@ -6389,7 +6390,7 @@ declare function init(config: AuthHeroConfig): {
6389
6390
  hint?: string | undefined;
6390
6391
  messages?: {
6391
6392
  text: string;
6392
- type: "error" | "success" | "info" | "warning";
6393
+ type: "success" | "error" | "info" | "warning";
6393
6394
  id?: number | undefined;
6394
6395
  }[] | undefined;
6395
6396
  required?: boolean | undefined;
@@ -6414,7 +6415,7 @@ declare function init(config: AuthHeroConfig): {
6414
6415
  hint?: string | undefined;
6415
6416
  messages?: {
6416
6417
  text: string;
6417
- type: "error" | "success" | "info" | "warning";
6418
+ type: "success" | "error" | "info" | "warning";
6418
6419
  id?: number | undefined;
6419
6420
  }[] | undefined;
6420
6421
  required?: boolean | undefined;
@@ -6433,7 +6434,7 @@ declare function init(config: AuthHeroConfig): {
6433
6434
  hint?: string | undefined;
6434
6435
  messages?: {
6435
6436
  text: string;
6436
- type: "error" | "success" | "info" | "warning";
6437
+ type: "success" | "error" | "info" | "warning";
6437
6438
  id?: number | undefined;
6438
6439
  }[] | undefined;
6439
6440
  required?: boolean | undefined;
@@ -6453,7 +6454,7 @@ declare function init(config: AuthHeroConfig): {
6453
6454
  hint?: string | undefined;
6454
6455
  messages?: {
6455
6456
  text: string;
6456
- type: "error" | "success" | "info" | "warning";
6457
+ type: "success" | "error" | "info" | "warning";
6457
6458
  id?: number | undefined;
6458
6459
  }[] | undefined;
6459
6460
  required?: boolean | undefined;
@@ -6472,7 +6473,7 @@ declare function init(config: AuthHeroConfig): {
6472
6473
  hint?: string | undefined;
6473
6474
  messages?: {
6474
6475
  text: string;
6475
- type: "error" | "success" | "info" | "warning";
6476
+ type: "success" | "error" | "info" | "warning";
6476
6477
  id?: number | undefined;
6477
6478
  }[] | undefined;
6478
6479
  required?: boolean | undefined;
@@ -6494,7 +6495,7 @@ declare function init(config: AuthHeroConfig): {
6494
6495
  hint?: string | undefined;
6495
6496
  messages?: {
6496
6497
  text: string;
6497
- type: "error" | "success" | "info" | "warning";
6498
+ type: "success" | "error" | "info" | "warning";
6498
6499
  id?: number | undefined;
6499
6500
  }[] | undefined;
6500
6501
  required?: boolean | undefined;
@@ -6516,7 +6517,7 @@ declare function init(config: AuthHeroConfig): {
6516
6517
  hint?: string | undefined;
6517
6518
  messages?: {
6518
6519
  text: string;
6519
- type: "error" | "success" | "info" | "warning";
6520
+ type: "success" | "error" | "info" | "warning";
6520
6521
  id?: number | undefined;
6521
6522
  }[] | undefined;
6522
6523
  required?: boolean | undefined;
@@ -6535,7 +6536,7 @@ declare function init(config: AuthHeroConfig): {
6535
6536
  hint?: string | undefined;
6536
6537
  messages?: {
6537
6538
  text: string;
6538
- type: "error" | "success" | "info" | "warning";
6539
+ type: "success" | "error" | "info" | "warning";
6539
6540
  id?: number | undefined;
6540
6541
  }[] | undefined;
6541
6542
  required?: boolean | undefined;
@@ -6560,7 +6561,7 @@ declare function init(config: AuthHeroConfig): {
6560
6561
  hint?: string | undefined;
6561
6562
  messages?: {
6562
6563
  text: string;
6563
- type: "error" | "success" | "info" | "warning";
6564
+ type: "success" | "error" | "info" | "warning";
6564
6565
  id?: number | undefined;
6565
6566
  }[] | undefined;
6566
6567
  required?: boolean | undefined;
@@ -6581,7 +6582,7 @@ declare function init(config: AuthHeroConfig): {
6581
6582
  hint?: string | undefined;
6582
6583
  messages?: {
6583
6584
  text: string;
6584
- type: "error" | "success" | "info" | "warning";
6585
+ type: "success" | "error" | "info" | "warning";
6585
6586
  id?: number | undefined;
6586
6587
  }[] | undefined;
6587
6588
  required?: boolean | undefined;
@@ -6602,7 +6603,7 @@ declare function init(config: AuthHeroConfig): {
6602
6603
  hint?: string | undefined;
6603
6604
  messages?: {
6604
6605
  text: string;
6605
- type: "error" | "success" | "info" | "warning";
6606
+ type: "success" | "error" | "info" | "warning";
6606
6607
  id?: number | undefined;
6607
6608
  }[] | undefined;
6608
6609
  required?: boolean | undefined;
@@ -6850,7 +6851,7 @@ declare function init(config: AuthHeroConfig): {
6850
6851
  hint?: string | undefined;
6851
6852
  messages?: {
6852
6853
  text: string;
6853
- type: "error" | "success" | "info" | "warning";
6854
+ type: "success" | "error" | "info" | "warning";
6854
6855
  id?: number | undefined;
6855
6856
  }[] | undefined;
6856
6857
  required?: boolean | undefined;
@@ -6868,7 +6869,7 @@ declare function init(config: AuthHeroConfig): {
6868
6869
  hint?: string | undefined;
6869
6870
  messages?: {
6870
6871
  text: string;
6871
- type: "error" | "success" | "info" | "warning";
6872
+ type: "success" | "error" | "info" | "warning";
6872
6873
  id?: number | undefined;
6873
6874
  }[] | undefined;
6874
6875
  required?: boolean | undefined;
@@ -6892,7 +6893,7 @@ declare function init(config: AuthHeroConfig): {
6892
6893
  hint?: string | undefined;
6893
6894
  messages?: {
6894
6895
  text: string;
6895
- type: "error" | "success" | "info" | "warning";
6896
+ type: "success" | "error" | "info" | "warning";
6896
6897
  id?: number | undefined;
6897
6898
  }[] | undefined;
6898
6899
  required?: boolean | undefined;
@@ -6916,7 +6917,7 @@ declare function init(config: AuthHeroConfig): {
6916
6917
  hint?: string | undefined;
6917
6918
  messages?: {
6918
6919
  text: string;
6919
- type: "error" | "success" | "info" | "warning";
6920
+ type: "success" | "error" | "info" | "warning";
6920
6921
  id?: number | undefined;
6921
6922
  }[] | undefined;
6922
6923
  required?: boolean | undefined;
@@ -6940,7 +6941,7 @@ declare function init(config: AuthHeroConfig): {
6940
6941
  hint?: string | undefined;
6941
6942
  messages?: {
6942
6943
  text: string;
6943
- type: "error" | "success" | "info" | "warning";
6944
+ type: "success" | "error" | "info" | "warning";
6944
6945
  id?: number | undefined;
6945
6946
  }[] | undefined;
6946
6947
  required?: boolean | undefined;
@@ -6969,7 +6970,7 @@ declare function init(config: AuthHeroConfig): {
6969
6970
  hint?: string | undefined;
6970
6971
  messages?: {
6971
6972
  text: string;
6972
- type: "error" | "success" | "info" | "warning";
6973
+ type: "success" | "error" | "info" | "warning";
6973
6974
  id?: number | undefined;
6974
6975
  }[] | undefined;
6975
6976
  required?: boolean | undefined;
@@ -6984,7 +6985,7 @@ declare function init(config: AuthHeroConfig): {
6984
6985
  hint?: string | undefined;
6985
6986
  messages?: {
6986
6987
  text: string;
6987
- type: "error" | "success" | "info" | "warning";
6988
+ type: "success" | "error" | "info" | "warning";
6988
6989
  id?: number | undefined;
6989
6990
  }[] | undefined;
6990
6991
  required?: boolean | undefined;
@@ -7005,7 +7006,7 @@ declare function init(config: AuthHeroConfig): {
7005
7006
  hint?: string | undefined;
7006
7007
  messages?: {
7007
7008
  text: string;
7008
- type: "error" | "success" | "info" | "warning";
7009
+ type: "success" | "error" | "info" | "warning";
7009
7010
  id?: number | undefined;
7010
7011
  }[] | undefined;
7011
7012
  required?: boolean | undefined;
@@ -7030,7 +7031,7 @@ declare function init(config: AuthHeroConfig): {
7030
7031
  hint?: string | undefined;
7031
7032
  messages?: {
7032
7033
  text: string;
7033
- type: "error" | "success" | "info" | "warning";
7034
+ type: "success" | "error" | "info" | "warning";
7034
7035
  id?: number | undefined;
7035
7036
  }[] | undefined;
7036
7037
  required?: boolean | undefined;
@@ -7049,7 +7050,7 @@ declare function init(config: AuthHeroConfig): {
7049
7050
  hint?: string | undefined;
7050
7051
  messages?: {
7051
7052
  text: string;
7052
- type: "error" | "success" | "info" | "warning";
7053
+ type: "success" | "error" | "info" | "warning";
7053
7054
  id?: number | undefined;
7054
7055
  }[] | undefined;
7055
7056
  required?: boolean | undefined;
@@ -7069,7 +7070,7 @@ declare function init(config: AuthHeroConfig): {
7069
7070
  hint?: string | undefined;
7070
7071
  messages?: {
7071
7072
  text: string;
7072
- type: "error" | "success" | "info" | "warning";
7073
+ type: "success" | "error" | "info" | "warning";
7073
7074
  id?: number | undefined;
7074
7075
  }[] | undefined;
7075
7076
  required?: boolean | undefined;
@@ -7088,7 +7089,7 @@ declare function init(config: AuthHeroConfig): {
7088
7089
  hint?: string | undefined;
7089
7090
  messages?: {
7090
7091
  text: string;
7091
- type: "error" | "success" | "info" | "warning";
7092
+ type: "success" | "error" | "info" | "warning";
7092
7093
  id?: number | undefined;
7093
7094
  }[] | undefined;
7094
7095
  required?: boolean | undefined;
@@ -7110,7 +7111,7 @@ declare function init(config: AuthHeroConfig): {
7110
7111
  hint?: string | undefined;
7111
7112
  messages?: {
7112
7113
  text: string;
7113
- type: "error" | "success" | "info" | "warning";
7114
+ type: "success" | "error" | "info" | "warning";
7114
7115
  id?: number | undefined;
7115
7116
  }[] | undefined;
7116
7117
  required?: boolean | undefined;
@@ -7132,7 +7133,7 @@ declare function init(config: AuthHeroConfig): {
7132
7133
  hint?: string | undefined;
7133
7134
  messages?: {
7134
7135
  text: string;
7135
- type: "error" | "success" | "info" | "warning";
7136
+ type: "success" | "error" | "info" | "warning";
7136
7137
  id?: number | undefined;
7137
7138
  }[] | undefined;
7138
7139
  required?: boolean | undefined;
@@ -7151,7 +7152,7 @@ declare function init(config: AuthHeroConfig): {
7151
7152
  hint?: string | undefined;
7152
7153
  messages?: {
7153
7154
  text: string;
7154
- type: "error" | "success" | "info" | "warning";
7155
+ type: "success" | "error" | "info" | "warning";
7155
7156
  id?: number | undefined;
7156
7157
  }[] | undefined;
7157
7158
  required?: boolean | undefined;
@@ -7176,7 +7177,7 @@ declare function init(config: AuthHeroConfig): {
7176
7177
  hint?: string | undefined;
7177
7178
  messages?: {
7178
7179
  text: string;
7179
- type: "error" | "success" | "info" | "warning";
7180
+ type: "success" | "error" | "info" | "warning";
7180
7181
  id?: number | undefined;
7181
7182
  }[] | undefined;
7182
7183
  required?: boolean | undefined;
@@ -7197,7 +7198,7 @@ declare function init(config: AuthHeroConfig): {
7197
7198
  hint?: string | undefined;
7198
7199
  messages?: {
7199
7200
  text: string;
7200
- type: "error" | "success" | "info" | "warning";
7201
+ type: "success" | "error" | "info" | "warning";
7201
7202
  id?: number | undefined;
7202
7203
  }[] | undefined;
7203
7204
  required?: boolean | undefined;
@@ -7218,7 +7219,7 @@ declare function init(config: AuthHeroConfig): {
7218
7219
  hint?: string | undefined;
7219
7220
  messages?: {
7220
7221
  text: string;
7221
- type: "error" | "success" | "info" | "warning";
7222
+ type: "success" | "error" | "info" | "warning";
7222
7223
  id?: number | undefined;
7223
7224
  }[] | undefined;
7224
7225
  required?: boolean | undefined;
@@ -7472,7 +7473,7 @@ declare function init(config: AuthHeroConfig): {
7472
7473
  hint?: string | undefined;
7473
7474
  messages?: {
7474
7475
  text: string;
7475
- type: "error" | "success" | "info" | "warning";
7476
+ type: "success" | "error" | "info" | "warning";
7476
7477
  id?: number | undefined;
7477
7478
  }[] | undefined;
7478
7479
  required?: boolean | undefined;
@@ -7490,7 +7491,7 @@ declare function init(config: AuthHeroConfig): {
7490
7491
  hint?: string | undefined;
7491
7492
  messages?: {
7492
7493
  text: string;
7493
- type: "error" | "success" | "info" | "warning";
7494
+ type: "success" | "error" | "info" | "warning";
7494
7495
  id?: number | undefined;
7495
7496
  }[] | undefined;
7496
7497
  required?: boolean | undefined;
@@ -7514,7 +7515,7 @@ declare function init(config: AuthHeroConfig): {
7514
7515
  hint?: string | undefined;
7515
7516
  messages?: {
7516
7517
  text: string;
7517
- type: "error" | "success" | "info" | "warning";
7518
+ type: "success" | "error" | "info" | "warning";
7518
7519
  id?: number | undefined;
7519
7520
  }[] | undefined;
7520
7521
  required?: boolean | undefined;
@@ -7538,7 +7539,7 @@ declare function init(config: AuthHeroConfig): {
7538
7539
  hint?: string | undefined;
7539
7540
  messages?: {
7540
7541
  text: string;
7541
- type: "error" | "success" | "info" | "warning";
7542
+ type: "success" | "error" | "info" | "warning";
7542
7543
  id?: number | undefined;
7543
7544
  }[] | undefined;
7544
7545
  required?: boolean | undefined;
@@ -7562,7 +7563,7 @@ declare function init(config: AuthHeroConfig): {
7562
7563
  hint?: string | undefined;
7563
7564
  messages?: {
7564
7565
  text: string;
7565
- type: "error" | "success" | "info" | "warning";
7566
+ type: "success" | "error" | "info" | "warning";
7566
7567
  id?: number | undefined;
7567
7568
  }[] | undefined;
7568
7569
  required?: boolean | undefined;
@@ -7587,7 +7588,7 @@ declare function init(config: AuthHeroConfig): {
7587
7588
  hint?: string | undefined;
7588
7589
  messages?: {
7589
7590
  text: string;
7590
- type: "error" | "success" | "info" | "warning";
7591
+ type: "success" | "error" | "info" | "warning";
7591
7592
  id?: number | undefined;
7592
7593
  }[] | undefined;
7593
7594
  required?: boolean | undefined;
@@ -7602,7 +7603,7 @@ declare function init(config: AuthHeroConfig): {
7602
7603
  hint?: string | undefined;
7603
7604
  messages?: {
7604
7605
  text: string;
7605
- type: "error" | "success" | "info" | "warning";
7606
+ type: "success" | "error" | "info" | "warning";
7606
7607
  id?: number | undefined;
7607
7608
  }[] | undefined;
7608
7609
  required?: boolean | undefined;
@@ -7623,7 +7624,7 @@ declare function init(config: AuthHeroConfig): {
7623
7624
  hint?: string | undefined;
7624
7625
  messages?: {
7625
7626
  text: string;
7626
- type: "error" | "success" | "info" | "warning";
7627
+ type: "success" | "error" | "info" | "warning";
7627
7628
  id?: number | undefined;
7628
7629
  }[] | undefined;
7629
7630
  required?: boolean | undefined;
@@ -7648,7 +7649,7 @@ declare function init(config: AuthHeroConfig): {
7648
7649
  hint?: string | undefined;
7649
7650
  messages?: {
7650
7651
  text: string;
7651
- type: "error" | "success" | "info" | "warning";
7652
+ type: "success" | "error" | "info" | "warning";
7652
7653
  id?: number | undefined;
7653
7654
  }[] | undefined;
7654
7655
  required?: boolean | undefined;
@@ -7667,7 +7668,7 @@ declare function init(config: AuthHeroConfig): {
7667
7668
  hint?: string | undefined;
7668
7669
  messages?: {
7669
7670
  text: string;
7670
- type: "error" | "success" | "info" | "warning";
7671
+ type: "success" | "error" | "info" | "warning";
7671
7672
  id?: number | undefined;
7672
7673
  }[] | undefined;
7673
7674
  required?: boolean | undefined;
@@ -7687,7 +7688,7 @@ declare function init(config: AuthHeroConfig): {
7687
7688
  hint?: string | undefined;
7688
7689
  messages?: {
7689
7690
  text: string;
7690
- type: "error" | "success" | "info" | "warning";
7691
+ type: "success" | "error" | "info" | "warning";
7691
7692
  id?: number | undefined;
7692
7693
  }[] | undefined;
7693
7694
  required?: boolean | undefined;
@@ -7706,7 +7707,7 @@ declare function init(config: AuthHeroConfig): {
7706
7707
  hint?: string | undefined;
7707
7708
  messages?: {
7708
7709
  text: string;
7709
- type: "error" | "success" | "info" | "warning";
7710
+ type: "success" | "error" | "info" | "warning";
7710
7711
  id?: number | undefined;
7711
7712
  }[] | undefined;
7712
7713
  required?: boolean | undefined;
@@ -7728,7 +7729,7 @@ declare function init(config: AuthHeroConfig): {
7728
7729
  hint?: string | undefined;
7729
7730
  messages?: {
7730
7731
  text: string;
7731
- type: "error" | "success" | "info" | "warning";
7732
+ type: "success" | "error" | "info" | "warning";
7732
7733
  id?: number | undefined;
7733
7734
  }[] | undefined;
7734
7735
  required?: boolean | undefined;
@@ -7750,7 +7751,7 @@ declare function init(config: AuthHeroConfig): {
7750
7751
  hint?: string | undefined;
7751
7752
  messages?: {
7752
7753
  text: string;
7753
- type: "error" | "success" | "info" | "warning";
7754
+ type: "success" | "error" | "info" | "warning";
7754
7755
  id?: number | undefined;
7755
7756
  }[] | undefined;
7756
7757
  required?: boolean | undefined;
@@ -7769,7 +7770,7 @@ declare function init(config: AuthHeroConfig): {
7769
7770
  hint?: string | undefined;
7770
7771
  messages?: {
7771
7772
  text: string;
7772
- type: "error" | "success" | "info" | "warning";
7773
+ type: "success" | "error" | "info" | "warning";
7773
7774
  id?: number | undefined;
7774
7775
  }[] | undefined;
7775
7776
  required?: boolean | undefined;
@@ -7794,7 +7795,7 @@ declare function init(config: AuthHeroConfig): {
7794
7795
  hint?: string | undefined;
7795
7796
  messages?: {
7796
7797
  text: string;
7797
- type: "error" | "success" | "info" | "warning";
7798
+ type: "success" | "error" | "info" | "warning";
7798
7799
  id?: number | undefined;
7799
7800
  }[] | undefined;
7800
7801
  required?: boolean | undefined;
@@ -7815,7 +7816,7 @@ declare function init(config: AuthHeroConfig): {
7815
7816
  hint?: string | undefined;
7816
7817
  messages?: {
7817
7818
  text: string;
7818
- type: "error" | "success" | "info" | "warning";
7819
+ type: "success" | "error" | "info" | "warning";
7819
7820
  id?: number | undefined;
7820
7821
  }[] | undefined;
7821
7822
  required?: boolean | undefined;
@@ -7836,7 +7837,7 @@ declare function init(config: AuthHeroConfig): {
7836
7837
  hint?: string | undefined;
7837
7838
  messages?: {
7838
7839
  text: string;
7839
- type: "error" | "success" | "info" | "warning";
7840
+ type: "success" | "error" | "info" | "warning";
7840
7841
  id?: number | undefined;
7841
7842
  }[] | undefined;
7842
7843
  required?: boolean | undefined;
@@ -8067,7 +8068,7 @@ declare function init(config: AuthHeroConfig): {
8067
8068
  hint?: string | undefined;
8068
8069
  messages?: {
8069
8070
  text: string;
8070
- type: "error" | "success" | "info" | "warning";
8071
+ type: "success" | "error" | "info" | "warning";
8071
8072
  id?: number | undefined;
8072
8073
  }[] | undefined;
8073
8074
  required?: boolean | undefined;
@@ -8085,7 +8086,7 @@ declare function init(config: AuthHeroConfig): {
8085
8086
  hint?: string | undefined;
8086
8087
  messages?: {
8087
8088
  text: string;
8088
- type: "error" | "success" | "info" | "warning";
8089
+ type: "success" | "error" | "info" | "warning";
8089
8090
  id?: number | undefined;
8090
8091
  }[] | undefined;
8091
8092
  required?: boolean | undefined;
@@ -8109,7 +8110,7 @@ declare function init(config: AuthHeroConfig): {
8109
8110
  hint?: string | undefined;
8110
8111
  messages?: {
8111
8112
  text: string;
8112
- type: "error" | "success" | "info" | "warning";
8113
+ type: "success" | "error" | "info" | "warning";
8113
8114
  id?: number | undefined;
8114
8115
  }[] | undefined;
8115
8116
  required?: boolean | undefined;
@@ -8133,7 +8134,7 @@ declare function init(config: AuthHeroConfig): {
8133
8134
  hint?: string | undefined;
8134
8135
  messages?: {
8135
8136
  text: string;
8136
- type: "error" | "success" | "info" | "warning";
8137
+ type: "success" | "error" | "info" | "warning";
8137
8138
  id?: number | undefined;
8138
8139
  }[] | undefined;
8139
8140
  required?: boolean | undefined;
@@ -8157,7 +8158,7 @@ declare function init(config: AuthHeroConfig): {
8157
8158
  hint?: string | undefined;
8158
8159
  messages?: {
8159
8160
  text: string;
8160
- type: "error" | "success" | "info" | "warning";
8161
+ type: "success" | "error" | "info" | "warning";
8161
8162
  id?: number | undefined;
8162
8163
  }[] | undefined;
8163
8164
  required?: boolean | undefined;
@@ -8186,7 +8187,7 @@ declare function init(config: AuthHeroConfig): {
8186
8187
  hint?: string | undefined;
8187
8188
  messages?: {
8188
8189
  text: string;
8189
- type: "error" | "success" | "info" | "warning";
8190
+ type: "success" | "error" | "info" | "warning";
8190
8191
  id?: number | undefined;
8191
8192
  }[] | undefined;
8192
8193
  required?: boolean | undefined;
@@ -8201,7 +8202,7 @@ declare function init(config: AuthHeroConfig): {
8201
8202
  hint?: string | undefined;
8202
8203
  messages?: {
8203
8204
  text: string;
8204
- type: "error" | "success" | "info" | "warning";
8205
+ type: "success" | "error" | "info" | "warning";
8205
8206
  id?: number | undefined;
8206
8207
  }[] | undefined;
8207
8208
  required?: boolean | undefined;
@@ -8222,7 +8223,7 @@ declare function init(config: AuthHeroConfig): {
8222
8223
  hint?: string | undefined;
8223
8224
  messages?: {
8224
8225
  text: string;
8225
- type: "error" | "success" | "info" | "warning";
8226
+ type: "success" | "error" | "info" | "warning";
8226
8227
  id?: number | undefined;
8227
8228
  }[] | undefined;
8228
8229
  required?: boolean | undefined;
@@ -8247,7 +8248,7 @@ declare function init(config: AuthHeroConfig): {
8247
8248
  hint?: string | undefined;
8248
8249
  messages?: {
8249
8250
  text: string;
8250
- type: "error" | "success" | "info" | "warning";
8251
+ type: "success" | "error" | "info" | "warning";
8251
8252
  id?: number | undefined;
8252
8253
  }[] | undefined;
8253
8254
  required?: boolean | undefined;
@@ -8266,7 +8267,7 @@ declare function init(config: AuthHeroConfig): {
8266
8267
  hint?: string | undefined;
8267
8268
  messages?: {
8268
8269
  text: string;
8269
- type: "error" | "success" | "info" | "warning";
8270
+ type: "success" | "error" | "info" | "warning";
8270
8271
  id?: number | undefined;
8271
8272
  }[] | undefined;
8272
8273
  required?: boolean | undefined;
@@ -8286,7 +8287,7 @@ declare function init(config: AuthHeroConfig): {
8286
8287
  hint?: string | undefined;
8287
8288
  messages?: {
8288
8289
  text: string;
8289
- type: "error" | "success" | "info" | "warning";
8290
+ type: "success" | "error" | "info" | "warning";
8290
8291
  id?: number | undefined;
8291
8292
  }[] | undefined;
8292
8293
  required?: boolean | undefined;
@@ -8305,7 +8306,7 @@ declare function init(config: AuthHeroConfig): {
8305
8306
  hint?: string | undefined;
8306
8307
  messages?: {
8307
8308
  text: string;
8308
- type: "error" | "success" | "info" | "warning";
8309
+ type: "success" | "error" | "info" | "warning";
8309
8310
  id?: number | undefined;
8310
8311
  }[] | undefined;
8311
8312
  required?: boolean | undefined;
@@ -8327,7 +8328,7 @@ declare function init(config: AuthHeroConfig): {
8327
8328
  hint?: string | undefined;
8328
8329
  messages?: {
8329
8330
  text: string;
8330
- type: "error" | "success" | "info" | "warning";
8331
+ type: "success" | "error" | "info" | "warning";
8331
8332
  id?: number | undefined;
8332
8333
  }[] | undefined;
8333
8334
  required?: boolean | undefined;
@@ -8349,7 +8350,7 @@ declare function init(config: AuthHeroConfig): {
8349
8350
  hint?: string | undefined;
8350
8351
  messages?: {
8351
8352
  text: string;
8352
- type: "error" | "success" | "info" | "warning";
8353
+ type: "success" | "error" | "info" | "warning";
8353
8354
  id?: number | undefined;
8354
8355
  }[] | undefined;
8355
8356
  required?: boolean | undefined;
@@ -8368,7 +8369,7 @@ declare function init(config: AuthHeroConfig): {
8368
8369
  hint?: string | undefined;
8369
8370
  messages?: {
8370
8371
  text: string;
8371
- type: "error" | "success" | "info" | "warning";
8372
+ type: "success" | "error" | "info" | "warning";
8372
8373
  id?: number | undefined;
8373
8374
  }[] | undefined;
8374
8375
  required?: boolean | undefined;
@@ -8393,7 +8394,7 @@ declare function init(config: AuthHeroConfig): {
8393
8394
  hint?: string | undefined;
8394
8395
  messages?: {
8395
8396
  text: string;
8396
- type: "error" | "success" | "info" | "warning";
8397
+ type: "success" | "error" | "info" | "warning";
8397
8398
  id?: number | undefined;
8398
8399
  }[] | undefined;
8399
8400
  required?: boolean | undefined;
@@ -8414,7 +8415,7 @@ declare function init(config: AuthHeroConfig): {
8414
8415
  hint?: string | undefined;
8415
8416
  messages?: {
8416
8417
  text: string;
8417
- type: "error" | "success" | "info" | "warning";
8418
+ type: "success" | "error" | "info" | "warning";
8418
8419
  id?: number | undefined;
8419
8420
  }[] | undefined;
8420
8421
  required?: boolean | undefined;
@@ -8435,7 +8436,7 @@ declare function init(config: AuthHeroConfig): {
8435
8436
  hint?: string | undefined;
8436
8437
  messages?: {
8437
8438
  text: string;
8438
- type: "error" | "success" | "info" | "warning";
8439
+ type: "success" | "error" | "info" | "warning";
8439
8440
  id?: number | undefined;
8440
8441
  }[] | undefined;
8441
8442
  required?: boolean | undefined;
@@ -8668,7 +8669,7 @@ declare function init(config: AuthHeroConfig): {
8668
8669
  hint?: string | undefined;
8669
8670
  messages?: {
8670
8671
  text: string;
8671
- type: "error" | "success" | "info" | "warning";
8672
+ type: "success" | "error" | "info" | "warning";
8672
8673
  id?: number | undefined;
8673
8674
  }[] | undefined;
8674
8675
  required?: boolean | undefined;
@@ -8686,7 +8687,7 @@ declare function init(config: AuthHeroConfig): {
8686
8687
  hint?: string | undefined;
8687
8688
  messages?: {
8688
8689
  text: string;
8689
- type: "error" | "success" | "info" | "warning";
8690
+ type: "success" | "error" | "info" | "warning";
8690
8691
  id?: number | undefined;
8691
8692
  }[] | undefined;
8692
8693
  required?: boolean | undefined;
@@ -8710,7 +8711,7 @@ declare function init(config: AuthHeroConfig): {
8710
8711
  hint?: string | undefined;
8711
8712
  messages?: {
8712
8713
  text: string;
8713
- type: "error" | "success" | "info" | "warning";
8714
+ type: "success" | "error" | "info" | "warning";
8714
8715
  id?: number | undefined;
8715
8716
  }[] | undefined;
8716
8717
  required?: boolean | undefined;
@@ -8734,7 +8735,7 @@ declare function init(config: AuthHeroConfig): {
8734
8735
  hint?: string | undefined;
8735
8736
  messages?: {
8736
8737
  text: string;
8737
- type: "error" | "success" | "info" | "warning";
8738
+ type: "success" | "error" | "info" | "warning";
8738
8739
  id?: number | undefined;
8739
8740
  }[] | undefined;
8740
8741
  required?: boolean | undefined;
@@ -8758,7 +8759,7 @@ declare function init(config: AuthHeroConfig): {
8758
8759
  hint?: string | undefined;
8759
8760
  messages?: {
8760
8761
  text: string;
8761
- type: "error" | "success" | "info" | "warning";
8762
+ type: "success" | "error" | "info" | "warning";
8762
8763
  id?: number | undefined;
8763
8764
  }[] | undefined;
8764
8765
  required?: boolean | undefined;
@@ -8783,7 +8784,7 @@ declare function init(config: AuthHeroConfig): {
8783
8784
  hint?: string | undefined;
8784
8785
  messages?: {
8785
8786
  text: string;
8786
- type: "error" | "success" | "info" | "warning";
8787
+ type: "success" | "error" | "info" | "warning";
8787
8788
  id?: number | undefined;
8788
8789
  }[] | undefined;
8789
8790
  required?: boolean | undefined;
@@ -8798,7 +8799,7 @@ declare function init(config: AuthHeroConfig): {
8798
8799
  hint?: string | undefined;
8799
8800
  messages?: {
8800
8801
  text: string;
8801
- type: "error" | "success" | "info" | "warning";
8802
+ type: "success" | "error" | "info" | "warning";
8802
8803
  id?: number | undefined;
8803
8804
  }[] | undefined;
8804
8805
  required?: boolean | undefined;
@@ -8819,7 +8820,7 @@ declare function init(config: AuthHeroConfig): {
8819
8820
  hint?: string | undefined;
8820
8821
  messages?: {
8821
8822
  text: string;
8822
- type: "error" | "success" | "info" | "warning";
8823
+ type: "success" | "error" | "info" | "warning";
8823
8824
  id?: number | undefined;
8824
8825
  }[] | undefined;
8825
8826
  required?: boolean | undefined;
@@ -8844,7 +8845,7 @@ declare function init(config: AuthHeroConfig): {
8844
8845
  hint?: string | undefined;
8845
8846
  messages?: {
8846
8847
  text: string;
8847
- type: "error" | "success" | "info" | "warning";
8848
+ type: "success" | "error" | "info" | "warning";
8848
8849
  id?: number | undefined;
8849
8850
  }[] | undefined;
8850
8851
  required?: boolean | undefined;
@@ -8863,7 +8864,7 @@ declare function init(config: AuthHeroConfig): {
8863
8864
  hint?: string | undefined;
8864
8865
  messages?: {
8865
8866
  text: string;
8866
- type: "error" | "success" | "info" | "warning";
8867
+ type: "success" | "error" | "info" | "warning";
8867
8868
  id?: number | undefined;
8868
8869
  }[] | undefined;
8869
8870
  required?: boolean | undefined;
@@ -8883,7 +8884,7 @@ declare function init(config: AuthHeroConfig): {
8883
8884
  hint?: string | undefined;
8884
8885
  messages?: {
8885
8886
  text: string;
8886
- type: "error" | "success" | "info" | "warning";
8887
+ type: "success" | "error" | "info" | "warning";
8887
8888
  id?: number | undefined;
8888
8889
  }[] | undefined;
8889
8890
  required?: boolean | undefined;
@@ -8902,7 +8903,7 @@ declare function init(config: AuthHeroConfig): {
8902
8903
  hint?: string | undefined;
8903
8904
  messages?: {
8904
8905
  text: string;
8905
- type: "error" | "success" | "info" | "warning";
8906
+ type: "success" | "error" | "info" | "warning";
8906
8907
  id?: number | undefined;
8907
8908
  }[] | undefined;
8908
8909
  required?: boolean | undefined;
@@ -8924,7 +8925,7 @@ declare function init(config: AuthHeroConfig): {
8924
8925
  hint?: string | undefined;
8925
8926
  messages?: {
8926
8927
  text: string;
8927
- type: "error" | "success" | "info" | "warning";
8928
+ type: "success" | "error" | "info" | "warning";
8928
8929
  id?: number | undefined;
8929
8930
  }[] | undefined;
8930
8931
  required?: boolean | undefined;
@@ -8946,7 +8947,7 @@ declare function init(config: AuthHeroConfig): {
8946
8947
  hint?: string | undefined;
8947
8948
  messages?: {
8948
8949
  text: string;
8949
- type: "error" | "success" | "info" | "warning";
8950
+ type: "success" | "error" | "info" | "warning";
8950
8951
  id?: number | undefined;
8951
8952
  }[] | undefined;
8952
8953
  required?: boolean | undefined;
@@ -8965,7 +8966,7 @@ declare function init(config: AuthHeroConfig): {
8965
8966
  hint?: string | undefined;
8966
8967
  messages?: {
8967
8968
  text: string;
8968
- type: "error" | "success" | "info" | "warning";
8969
+ type: "success" | "error" | "info" | "warning";
8969
8970
  id?: number | undefined;
8970
8971
  }[] | undefined;
8971
8972
  required?: boolean | undefined;
@@ -8990,7 +8991,7 @@ declare function init(config: AuthHeroConfig): {
8990
8991
  hint?: string | undefined;
8991
8992
  messages?: {
8992
8993
  text: string;
8993
- type: "error" | "success" | "info" | "warning";
8994
+ type: "success" | "error" | "info" | "warning";
8994
8995
  id?: number | undefined;
8995
8996
  }[] | undefined;
8996
8997
  required?: boolean | undefined;
@@ -9011,7 +9012,7 @@ declare function init(config: AuthHeroConfig): {
9011
9012
  hint?: string | undefined;
9012
9013
  messages?: {
9013
9014
  text: string;
9014
- type: "error" | "success" | "info" | "warning";
9015
+ type: "success" | "error" | "info" | "warning";
9015
9016
  id?: number | undefined;
9016
9017
  }[] | undefined;
9017
9018
  required?: boolean | undefined;
@@ -9032,7 +9033,7 @@ declare function init(config: AuthHeroConfig): {
9032
9033
  hint?: string | undefined;
9033
9034
  messages?: {
9034
9035
  text: string;
9035
- type: "error" | "success" | "info" | "warning";
9036
+ type: "success" | "error" | "info" | "warning";
9036
9037
  id?: number | undefined;
9037
9038
  }[] | undefined;
9038
9039
  required?: boolean | undefined;
@@ -9263,7 +9264,7 @@ declare function init(config: AuthHeroConfig): {
9263
9264
  hint?: string | undefined;
9264
9265
  messages?: {
9265
9266
  text: string;
9266
- type: "error" | "success" | "info" | "warning";
9267
+ type: "success" | "error" | "info" | "warning";
9267
9268
  id?: number | undefined;
9268
9269
  }[] | undefined;
9269
9270
  required?: boolean | undefined;
@@ -9281,7 +9282,7 @@ declare function init(config: AuthHeroConfig): {
9281
9282
  hint?: string | undefined;
9282
9283
  messages?: {
9283
9284
  text: string;
9284
- type: "error" | "success" | "info" | "warning";
9285
+ type: "success" | "error" | "info" | "warning";
9285
9286
  id?: number | undefined;
9286
9287
  }[] | undefined;
9287
9288
  required?: boolean | undefined;
@@ -9305,7 +9306,7 @@ declare function init(config: AuthHeroConfig): {
9305
9306
  hint?: string | undefined;
9306
9307
  messages?: {
9307
9308
  text: string;
9308
- type: "error" | "success" | "info" | "warning";
9309
+ type: "success" | "error" | "info" | "warning";
9309
9310
  id?: number | undefined;
9310
9311
  }[] | undefined;
9311
9312
  required?: boolean | undefined;
@@ -9329,7 +9330,7 @@ declare function init(config: AuthHeroConfig): {
9329
9330
  hint?: string | undefined;
9330
9331
  messages?: {
9331
9332
  text: string;
9332
- type: "error" | "success" | "info" | "warning";
9333
+ type: "success" | "error" | "info" | "warning";
9333
9334
  id?: number | undefined;
9334
9335
  }[] | undefined;
9335
9336
  required?: boolean | undefined;
@@ -9353,7 +9354,7 @@ declare function init(config: AuthHeroConfig): {
9353
9354
  hint?: string | undefined;
9354
9355
  messages?: {
9355
9356
  text: string;
9356
- type: "error" | "success" | "info" | "warning";
9357
+ type: "success" | "error" | "info" | "warning";
9357
9358
  id?: number | undefined;
9358
9359
  }[] | undefined;
9359
9360
  required?: boolean | undefined;
@@ -9382,7 +9383,7 @@ declare function init(config: AuthHeroConfig): {
9382
9383
  hint?: string | undefined;
9383
9384
  messages?: {
9384
9385
  text: string;
9385
- type: "error" | "success" | "info" | "warning";
9386
+ type: "success" | "error" | "info" | "warning";
9386
9387
  id?: number | undefined;
9387
9388
  }[] | undefined;
9388
9389
  required?: boolean | undefined;
@@ -9397,7 +9398,7 @@ declare function init(config: AuthHeroConfig): {
9397
9398
  hint?: string | undefined;
9398
9399
  messages?: {
9399
9400
  text: string;
9400
- type: "error" | "success" | "info" | "warning";
9401
+ type: "success" | "error" | "info" | "warning";
9401
9402
  id?: number | undefined;
9402
9403
  }[] | undefined;
9403
9404
  required?: boolean | undefined;
@@ -9418,7 +9419,7 @@ declare function init(config: AuthHeroConfig): {
9418
9419
  hint?: string | undefined;
9419
9420
  messages?: {
9420
9421
  text: string;
9421
- type: "error" | "success" | "info" | "warning";
9422
+ type: "success" | "error" | "info" | "warning";
9422
9423
  id?: number | undefined;
9423
9424
  }[] | undefined;
9424
9425
  required?: boolean | undefined;
@@ -9443,7 +9444,7 @@ declare function init(config: AuthHeroConfig): {
9443
9444
  hint?: string | undefined;
9444
9445
  messages?: {
9445
9446
  text: string;
9446
- type: "error" | "success" | "info" | "warning";
9447
+ type: "success" | "error" | "info" | "warning";
9447
9448
  id?: number | undefined;
9448
9449
  }[] | undefined;
9449
9450
  required?: boolean | undefined;
@@ -9462,7 +9463,7 @@ declare function init(config: AuthHeroConfig): {
9462
9463
  hint?: string | undefined;
9463
9464
  messages?: {
9464
9465
  text: string;
9465
- type: "error" | "success" | "info" | "warning";
9466
+ type: "success" | "error" | "info" | "warning";
9466
9467
  id?: number | undefined;
9467
9468
  }[] | undefined;
9468
9469
  required?: boolean | undefined;
@@ -9482,7 +9483,7 @@ declare function init(config: AuthHeroConfig): {
9482
9483
  hint?: string | undefined;
9483
9484
  messages?: {
9484
9485
  text: string;
9485
- type: "error" | "success" | "info" | "warning";
9486
+ type: "success" | "error" | "info" | "warning";
9486
9487
  id?: number | undefined;
9487
9488
  }[] | undefined;
9488
9489
  required?: boolean | undefined;
@@ -9501,7 +9502,7 @@ declare function init(config: AuthHeroConfig): {
9501
9502
  hint?: string | undefined;
9502
9503
  messages?: {
9503
9504
  text: string;
9504
- type: "error" | "success" | "info" | "warning";
9505
+ type: "success" | "error" | "info" | "warning";
9505
9506
  id?: number | undefined;
9506
9507
  }[] | undefined;
9507
9508
  required?: boolean | undefined;
@@ -9523,7 +9524,7 @@ declare function init(config: AuthHeroConfig): {
9523
9524
  hint?: string | undefined;
9524
9525
  messages?: {
9525
9526
  text: string;
9526
- type: "error" | "success" | "info" | "warning";
9527
+ type: "success" | "error" | "info" | "warning";
9527
9528
  id?: number | undefined;
9528
9529
  }[] | undefined;
9529
9530
  required?: boolean | undefined;
@@ -9545,7 +9546,7 @@ declare function init(config: AuthHeroConfig): {
9545
9546
  hint?: string | undefined;
9546
9547
  messages?: {
9547
9548
  text: string;
9548
- type: "error" | "success" | "info" | "warning";
9549
+ type: "success" | "error" | "info" | "warning";
9549
9550
  id?: number | undefined;
9550
9551
  }[] | undefined;
9551
9552
  required?: boolean | undefined;
@@ -9564,7 +9565,7 @@ declare function init(config: AuthHeroConfig): {
9564
9565
  hint?: string | undefined;
9565
9566
  messages?: {
9566
9567
  text: string;
9567
- type: "error" | "success" | "info" | "warning";
9568
+ type: "success" | "error" | "info" | "warning";
9568
9569
  id?: number | undefined;
9569
9570
  }[] | undefined;
9570
9571
  required?: boolean | undefined;
@@ -9589,7 +9590,7 @@ declare function init(config: AuthHeroConfig): {
9589
9590
  hint?: string | undefined;
9590
9591
  messages?: {
9591
9592
  text: string;
9592
- type: "error" | "success" | "info" | "warning";
9593
+ type: "success" | "error" | "info" | "warning";
9593
9594
  id?: number | undefined;
9594
9595
  }[] | undefined;
9595
9596
  required?: boolean | undefined;
@@ -9610,7 +9611,7 @@ declare function init(config: AuthHeroConfig): {
9610
9611
  hint?: string | undefined;
9611
9612
  messages?: {
9612
9613
  text: string;
9613
- type: "error" | "success" | "info" | "warning";
9614
+ type: "success" | "error" | "info" | "warning";
9614
9615
  id?: number | undefined;
9615
9616
  }[] | undefined;
9616
9617
  required?: boolean | undefined;
@@ -9631,7 +9632,7 @@ declare function init(config: AuthHeroConfig): {
9631
9632
  hint?: string | undefined;
9632
9633
  messages?: {
9633
9634
  text: string;
9634
- type: "error" | "success" | "info" | "warning";
9635
+ type: "success" | "error" | "info" | "warning";
9635
9636
  id?: number | undefined;
9636
9637
  }[] | undefined;
9637
9638
  required?: boolean | undefined;
@@ -9861,7 +9862,7 @@ declare function init(config: AuthHeroConfig): {
9861
9862
  };
9862
9863
  };
9863
9864
  output: {
9864
- 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";
9865
+ prompt: "mfa" | "organizations" | "signup" | "status" | "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";
9865
9866
  language: string;
9866
9867
  }[];
9867
9868
  outputFormat: "json";
@@ -9899,7 +9900,7 @@ declare function init(config: AuthHeroConfig): {
9899
9900
  $get: {
9900
9901
  input: {
9901
9902
  param: {
9902
- 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";
9903
+ prompt: "mfa" | "organizations" | "signup" | "status" | "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";
9903
9904
  language: string;
9904
9905
  };
9905
9906
  } & {
@@ -9921,7 +9922,7 @@ declare function init(config: AuthHeroConfig): {
9921
9922
  $put: {
9922
9923
  input: {
9923
9924
  param: {
9924
- 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";
9925
+ prompt: "mfa" | "organizations" | "signup" | "status" | "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";
9925
9926
  language: string;
9926
9927
  };
9927
9928
  } & {
@@ -9945,7 +9946,7 @@ declare function init(config: AuthHeroConfig): {
9945
9946
  $delete: {
9946
9947
  input: {
9947
9948
  param: {
9948
- 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";
9949
+ prompt: "mfa" | "organizations" | "signup" | "status" | "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";
9949
9950
  language: string;
9950
9951
  };
9951
9952
  } & {
@@ -10037,7 +10038,7 @@ declare function init(config: AuthHeroConfig): {
10037
10038
  active?: boolean | undefined;
10038
10039
  } | undefined;
10039
10040
  signup?: {
10040
- status?: "optional" | "required" | "disabled" | undefined;
10041
+ status?: "required" | "optional" | "disabled" | undefined;
10041
10042
  verification?: {
10042
10043
  active?: boolean | undefined;
10043
10044
  } | undefined;
@@ -10054,7 +10055,7 @@ declare function init(config: AuthHeroConfig): {
10054
10055
  active?: boolean | undefined;
10055
10056
  } | undefined;
10056
10057
  signup?: {
10057
- status?: "optional" | "required" | "disabled" | undefined;
10058
+ status?: "required" | "optional" | "disabled" | undefined;
10058
10059
  } | undefined;
10059
10060
  validation?: {
10060
10061
  max_length?: number | undefined;
@@ -10071,7 +10072,7 @@ declare function init(config: AuthHeroConfig): {
10071
10072
  active?: boolean | undefined;
10072
10073
  } | undefined;
10073
10074
  signup?: {
10074
- status?: "optional" | "required" | "disabled" | undefined;
10075
+ status?: "required" | "optional" | "disabled" | undefined;
10075
10076
  } | undefined;
10076
10077
  } | undefined;
10077
10078
  } | undefined;
@@ -10171,7 +10172,7 @@ declare function init(config: AuthHeroConfig): {
10171
10172
  active?: boolean | undefined;
10172
10173
  } | undefined;
10173
10174
  signup?: {
10174
- status?: "optional" | "required" | "disabled" | undefined;
10175
+ status?: "required" | "optional" | "disabled" | undefined;
10175
10176
  verification?: {
10176
10177
  active?: boolean | undefined;
10177
10178
  } | undefined;
@@ -10188,7 +10189,7 @@ declare function init(config: AuthHeroConfig): {
10188
10189
  active?: boolean | undefined;
10189
10190
  } | undefined;
10190
10191
  signup?: {
10191
- status?: "optional" | "required" | "disabled" | undefined;
10192
+ status?: "required" | "optional" | "disabled" | undefined;
10192
10193
  } | undefined;
10193
10194
  validation?: {
10194
10195
  max_length?: number | undefined;
@@ -10205,7 +10206,7 @@ declare function init(config: AuthHeroConfig): {
10205
10206
  active?: boolean | undefined;
10206
10207
  } | undefined;
10207
10208
  signup?: {
10208
- status?: "optional" | "required" | "disabled" | undefined;
10209
+ status?: "required" | "optional" | "disabled" | undefined;
10209
10210
  } | undefined;
10210
10211
  } | undefined;
10211
10212
  } | undefined;
@@ -10320,7 +10321,7 @@ declare function init(config: AuthHeroConfig): {
10320
10321
  active?: boolean | undefined;
10321
10322
  } | undefined;
10322
10323
  signup?: {
10323
- status?: "optional" | "required" | "disabled" | undefined;
10324
+ status?: "required" | "optional" | "disabled" | undefined;
10324
10325
  verification?: {
10325
10326
  active?: boolean | undefined;
10326
10327
  } | undefined;
@@ -10337,7 +10338,7 @@ declare function init(config: AuthHeroConfig): {
10337
10338
  active?: boolean | undefined;
10338
10339
  } | undefined;
10339
10340
  signup?: {
10340
- status?: "optional" | "required" | "disabled" | undefined;
10341
+ status?: "required" | "optional" | "disabled" | undefined;
10341
10342
  } | undefined;
10342
10343
  validation?: {
10343
10344
  max_length?: number | undefined;
@@ -10354,7 +10355,7 @@ declare function init(config: AuthHeroConfig): {
10354
10355
  active?: boolean | undefined;
10355
10356
  } | undefined;
10356
10357
  signup?: {
10357
- status?: "optional" | "required" | "disabled" | undefined;
10358
+ status?: "required" | "optional" | "disabled" | undefined;
10358
10359
  } | undefined;
10359
10360
  } | undefined;
10360
10361
  } | undefined;
@@ -10499,7 +10500,7 @@ declare function init(config: AuthHeroConfig): {
10499
10500
  active?: boolean | undefined;
10500
10501
  } | undefined;
10501
10502
  signup?: {
10502
- status?: "optional" | "required" | "disabled" | undefined;
10503
+ status?: "required" | "optional" | "disabled" | undefined;
10503
10504
  verification?: {
10504
10505
  active?: boolean | undefined;
10505
10506
  } | undefined;
@@ -10516,7 +10517,7 @@ declare function init(config: AuthHeroConfig): {
10516
10517
  active?: boolean | undefined;
10517
10518
  } | undefined;
10518
10519
  signup?: {
10519
- status?: "optional" | "required" | "disabled" | undefined;
10520
+ status?: "required" | "optional" | "disabled" | undefined;
10520
10521
  } | undefined;
10521
10522
  validation?: {
10522
10523
  max_length?: number | undefined;
@@ -10533,7 +10534,7 @@ declare function init(config: AuthHeroConfig): {
10533
10534
  active?: boolean | undefined;
10534
10535
  } | undefined;
10535
10536
  signup?: {
10536
- status?: "optional" | "required" | "disabled" | undefined;
10537
+ status?: "required" | "optional" | "disabled" | undefined;
10537
10538
  } | undefined;
10538
10539
  } | undefined;
10539
10540
  } | undefined;
@@ -10657,7 +10658,7 @@ declare function init(config: AuthHeroConfig): {
10657
10658
  active?: boolean | undefined;
10658
10659
  } | undefined;
10659
10660
  signup?: {
10660
- status?: "optional" | "required" | "disabled" | undefined;
10661
+ status?: "required" | "optional" | "disabled" | undefined;
10661
10662
  verification?: {
10662
10663
  active?: boolean | undefined;
10663
10664
  } | undefined;
@@ -10674,7 +10675,7 @@ declare function init(config: AuthHeroConfig): {
10674
10675
  active?: boolean | undefined;
10675
10676
  } | undefined;
10676
10677
  signup?: {
10677
- status?: "optional" | "required" | "disabled" | undefined;
10678
+ status?: "required" | "optional" | "disabled" | undefined;
10678
10679
  } | undefined;
10679
10680
  validation?: {
10680
10681
  max_length?: number | undefined;
@@ -10691,7 +10692,7 @@ declare function init(config: AuthHeroConfig): {
10691
10692
  active?: boolean | undefined;
10692
10693
  } | undefined;
10693
10694
  signup?: {
10694
- status?: "optional" | "required" | "disabled" | undefined;
10695
+ status?: "required" | "optional" | "disabled" | undefined;
10695
10696
  } | undefined;
10696
10697
  } | undefined;
10697
10698
  } | undefined;
@@ -10807,7 +10808,7 @@ declare function init(config: AuthHeroConfig): {
10807
10808
  };
10808
10809
  } | {
10809
10810
  mode: "inline";
10810
- status: "error" | "success";
10811
+ status: "success" | "error";
10811
10812
  connection_id: string;
10812
10813
  connection_name: string;
10813
10814
  strategy: string;
@@ -12094,7 +12095,7 @@ declare function init(config: AuthHeroConfig): {
12094
12095
  };
12095
12096
  };
12096
12097
  output: {
12097
- 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";
12098
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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" | "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";
12098
12099
  date: string;
12099
12100
  isMobile: boolean;
12100
12101
  log_id: string;
@@ -12133,7 +12134,7 @@ declare function init(config: AuthHeroConfig): {
12133
12134
  limit: number;
12134
12135
  length: number;
12135
12136
  logs: {
12136
- 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";
12137
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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" | "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";
12137
12138
  date: string;
12138
12139
  isMobile: boolean;
12139
12140
  log_id: string;
@@ -12187,7 +12188,7 @@ declare function init(config: AuthHeroConfig): {
12187
12188
  };
12188
12189
  };
12189
12190
  output: {
12190
- 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";
12191
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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" | "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";
12191
12192
  date: string;
12192
12193
  isMobile: boolean;
12193
12194
  log_id: string;
@@ -13263,7 +13264,7 @@ declare function init(config: AuthHeroConfig): {
13263
13264
  active?: boolean | undefined;
13264
13265
  } | undefined;
13265
13266
  signup?: {
13266
- status?: "optional" | "required" | "disabled" | undefined;
13267
+ status?: "required" | "optional" | "disabled" | undefined;
13267
13268
  verification?: {
13268
13269
  active?: boolean | undefined;
13269
13270
  } | undefined;
@@ -13280,7 +13281,7 @@ declare function init(config: AuthHeroConfig): {
13280
13281
  active?: boolean | undefined;
13281
13282
  } | undefined;
13282
13283
  signup?: {
13283
- status?: "optional" | "required" | "disabled" | undefined;
13284
+ status?: "required" | "optional" | "disabled" | undefined;
13284
13285
  } | undefined;
13285
13286
  validation?: {
13286
13287
  max_length?: number | undefined;
@@ -13297,7 +13298,7 @@ declare function init(config: AuthHeroConfig): {
13297
13298
  active?: boolean | undefined;
13298
13299
  } | undefined;
13299
13300
  signup?: {
13300
- status?: "optional" | "required" | "disabled" | undefined;
13301
+ status?: "required" | "optional" | "disabled" | undefined;
13301
13302
  } | undefined;
13302
13303
  } | undefined;
13303
13304
  } | undefined;
@@ -13417,7 +13418,7 @@ declare function init(config: AuthHeroConfig): {
13417
13418
  active?: boolean | undefined;
13418
13419
  } | undefined;
13419
13420
  signup?: {
13420
- status?: "optional" | "required" | "disabled" | undefined;
13421
+ status?: "required" | "optional" | "disabled" | undefined;
13421
13422
  verification?: {
13422
13423
  active?: boolean | undefined;
13423
13424
  } | undefined;
@@ -13434,7 +13435,7 @@ declare function init(config: AuthHeroConfig): {
13434
13435
  active?: boolean | undefined;
13435
13436
  } | undefined;
13436
13437
  signup?: {
13437
- status?: "optional" | "required" | "disabled" | undefined;
13438
+ status?: "required" | "optional" | "disabled" | undefined;
13438
13439
  } | undefined;
13439
13440
  validation?: {
13440
13441
  max_length?: number | undefined;
@@ -13451,7 +13452,7 @@ declare function init(config: AuthHeroConfig): {
13451
13452
  active?: boolean | undefined;
13452
13453
  } | undefined;
13453
13454
  signup?: {
13454
- status?: "optional" | "required" | "disabled" | undefined;
13455
+ status?: "required" | "optional" | "disabled" | undefined;
13455
13456
  } | undefined;
13456
13457
  } | undefined;
13457
13458
  } | undefined;
@@ -14405,7 +14406,7 @@ declare function init(config: AuthHeroConfig): {
14405
14406
  };
14406
14407
  };
14407
14408
  output: {
14408
- 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";
14409
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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" | "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";
14409
14410
  date: string;
14410
14411
  isMobile: boolean;
14411
14412
  log_id: string;
@@ -14444,7 +14445,7 @@ declare function init(config: AuthHeroConfig): {
14444
14445
  limit: number;
14445
14446
  length: number;
14446
14447
  logs: {
14447
- 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";
14448
+ type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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" | "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";
14448
14449
  date: string;
14449
14450
  isMobile: boolean;
14450
14451
  log_id: string;
@@ -15914,7 +15915,7 @@ declare function init(config: AuthHeroConfig): {
15914
15915
  };
15915
15916
  output: {};
15916
15917
  outputFormat: string;
15917
- status: 204;
15918
+ status: 400;
15918
15919
  } | {
15919
15920
  input: {
15920
15921
  header: {
@@ -15927,7 +15928,7 @@ declare function init(config: AuthHeroConfig): {
15927
15928
  };
15928
15929
  output: {};
15929
15930
  outputFormat: string;
15930
- status: 400;
15931
+ status: 204;
15931
15932
  };
15932
15933
  };
15933
15934
  } & {
@@ -15953,7 +15954,7 @@ declare function init(config: AuthHeroConfig): {
15953
15954
  } & {
15954
15955
  json: {
15955
15956
  body?: string | undefined;
15956
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
15957
+ screen?: "password" | "identifier" | "signup" | "login" | undefined;
15957
15958
  branding?: {
15958
15959
  colors?: {
15959
15960
  primary: string;
@@ -16244,7 +16245,7 @@ declare function init(config: AuthHeroConfig): {
16244
16245
  logs: {
16245
16246
  action_name: string;
16246
16247
  lines: {
16247
- level: "log" | "error" | "info" | "warn" | "debug";
16248
+ level: "error" | "log" | "info" | "warn" | "debug";
16248
16249
  message: string;
16249
16250
  }[];
16250
16251
  }[];
@@ -16911,7 +16912,7 @@ declare function init(config: AuthHeroConfig): {
16911
16912
  args: hono_utils_types.JSONValue[];
16912
16913
  }[];
16913
16914
  logs: {
16914
- level: "log" | "error" | "info" | "warn" | "debug";
16915
+ level: "error" | "log" | "info" | "warn" | "debug";
16915
16916
  message: string;
16916
16917
  }[];
16917
16918
  error?: string | undefined;
@@ -17665,8 +17666,8 @@ declare function init(config: AuthHeroConfig): {
17665
17666
  scope?: string | undefined;
17666
17667
  organization?: string | undefined;
17667
17668
  nonce?: string | undefined;
17668
- redirect_uri?: string | undefined;
17669
17669
  act_as?: string | undefined;
17670
+ redirect_uri?: string | undefined;
17670
17671
  prompt?: string | undefined;
17671
17672
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17672
17673
  code_challenge?: string | undefined;
@@ -17701,8 +17702,8 @@ declare function init(config: AuthHeroConfig): {
17701
17702
  scope?: string | undefined;
17702
17703
  organization?: string | undefined;
17703
17704
  nonce?: string | undefined;
17704
- redirect_uri?: string | undefined;
17705
17705
  act_as?: string | undefined;
17706
+ redirect_uri?: string | undefined;
17706
17707
  prompt?: string | undefined;
17707
17708
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17708
17709
  code_challenge?: string | undefined;
@@ -18624,7 +18625,7 @@ declare function init(config: AuthHeroConfig): {
18624
18625
  };
18625
18626
  output: {};
18626
18627
  outputFormat: string;
18627
- status: 302;
18628
+ status: 400;
18628
18629
  } | {
18629
18630
  input: {
18630
18631
  query: {
@@ -18638,7 +18639,7 @@ declare function init(config: AuthHeroConfig): {
18638
18639
  };
18639
18640
  output: {};
18640
18641
  outputFormat: string;
18641
- status: 400;
18642
+ status: 302;
18642
18643
  };
18643
18644
  };
18644
18645
  }, "/oidc/logout"> & hono_types.MergeSchemaPath<{
@@ -18745,7 +18746,7 @@ declare function init(config: AuthHeroConfig): {
18745
18746
  };
18746
18747
  output: {};
18747
18748
  outputFormat: string;
18748
- status: 302;
18749
+ status: 400;
18749
18750
  } | {
18750
18751
  input: {
18751
18752
  query: {
@@ -18754,7 +18755,7 @@ declare function init(config: AuthHeroConfig): {
18754
18755
  };
18755
18756
  output: {};
18756
18757
  outputFormat: string;
18757
- status: 400;
18758
+ status: 302;
18758
18759
  } | {
18759
18760
  input: {
18760
18761
  query: {
@@ -18883,7 +18884,7 @@ declare function init(config: AuthHeroConfig): {
18883
18884
  };
18884
18885
  output: {};
18885
18886
  outputFormat: string;
18886
- status: 302;
18887
+ status: 400;
18887
18888
  } | {
18888
18889
  input: {
18889
18890
  query: {
@@ -18896,7 +18897,7 @@ declare function init(config: AuthHeroConfig): {
18896
18897
  };
18897
18898
  output: {};
18898
18899
  outputFormat: string;
18899
- status: 400;
18900
+ status: 302;
18900
18901
  };
18901
18902
  };
18902
18903
  }, "/impersonate"> & hono_types.MergeSchemaPath<{
@@ -19233,12 +19234,12 @@ declare function init(config: AuthHeroConfig): {
19233
19234
  } & {
19234
19235
  form: {
19235
19236
  username: string;
19236
- login_selection?: "code" | "password" | undefined;
19237
+ login_selection?: "password" | "code" | undefined;
19237
19238
  };
19238
19239
  };
19239
19240
  output: {};
19240
19241
  outputFormat: string;
19241
- status: 302;
19242
+ status: 400;
19242
19243
  } | {
19243
19244
  input: {
19244
19245
  query: {
@@ -19247,12 +19248,12 @@ declare function init(config: AuthHeroConfig): {
19247
19248
  } & {
19248
19249
  form: {
19249
19250
  username: string;
19250
- login_selection?: "code" | "password" | undefined;
19251
+ login_selection?: "password" | "code" | undefined;
19251
19252
  };
19252
19253
  };
19253
19254
  output: {};
19254
19255
  outputFormat: string;
19255
- status: 400;
19256
+ status: 302;
19256
19257
  };
19257
19258
  };
19258
19259
  }, "/login/identifier"> & hono_types.MergeSchemaPath<{
@@ -19640,7 +19641,7 @@ declare function init(config: AuthHeroConfig): {
19640
19641
  };
19641
19642
  output: {};
19642
19643
  outputFormat: string;
19643
- status: 302;
19644
+ status: 400;
19644
19645
  } | {
19645
19646
  input: {
19646
19647
  param: {
@@ -19656,7 +19657,7 @@ declare function init(config: AuthHeroConfig): {
19656
19657
  };
19657
19658
  output: {};
19658
19659
  outputFormat: string;
19659
- status: 400;
19660
+ status: 302;
19660
19661
  };
19661
19662
  };
19662
19663
  } & {