authhero 5.14.0 → 5.15.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 (42) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +107 -107
  3. package/dist/authhero.d.ts +239 -218
  4. package/dist/authhero.mjs +8465 -8305
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/adapters/createEncryptedDataAdapter.d.ts +4 -0
  8. package/dist/types/authentication-flows/password.d.ts +1 -1
  9. package/dist/types/authentication-flows/passwordless.d.ts +4 -3
  10. package/dist/types/emails/index.d.ts +1 -1
  11. package/dist/types/helpers/client.d.ts +1 -0
  12. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  13. package/dist/types/index.d.ts +234 -218
  14. package/dist/types/routes/auth-api/index.d.ts +23 -23
  15. package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
  16. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  17. package/dist/types/routes/auth-api/token.d.ts +10 -10
  18. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  19. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  20. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  21. package/dist/types/routes/management-api/clients.d.ts +7 -7
  22. package/dist/types/routes/management-api/connections.d.ts +1 -1
  23. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  24. package/dist/types/routes/management-api/email-templates.d.ts +14 -14
  25. package/dist/types/routes/management-api/forms.d.ts +119 -119
  26. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  27. package/dist/types/routes/management-api/hooks.d.ts +24 -24
  28. package/dist/types/routes/management-api/index.d.ts +189 -189
  29. package/dist/types/routes/management-api/logs.d.ts +3 -3
  30. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  31. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  32. package/dist/types/routes/management-api/tenants.d.ts +3 -0
  33. package/dist/types/routes/management-api/users.d.ts +2 -2
  34. package/dist/types/routes/universal-login/common.d.ts +6 -2
  35. package/dist/types/routes/universal-login/error-page.d.ts +2 -1
  36. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  37. package/dist/types/routes/universal-login/u2-index.d.ts +22 -6
  38. package/dist/types/routes/universal-login/u2-routes.d.ts +22 -6
  39. package/dist/types/state-machines/login-session.d.ts +1 -1
  40. package/dist/types/utils/jwks.d.ts +2 -2
  41. package/dist/types/variables.d.ts +1 -1
  42. package/package.json +5 -5
@@ -250,6 +250,7 @@ declare const enrichedClientSchema: z.ZodObject<{
250
250
  trust_azure_adfs_email_verified_connection_property: z.ZodOptional<z.ZodBoolean>;
251
251
  use_scope_descriptions_for_consent: z.ZodOptional<z.ZodBoolean>;
252
252
  inherit_global_permissions_in_organizations: z.ZodOptional<z.ZodBoolean>;
253
+ restrict_undefined_scopes: z.ZodOptional<z.ZodBoolean>;
253
254
  }, z.core.$strip>>;
254
255
  sandbox_version: z.ZodOptional<z.ZodString>;
255
256
  legacy_sandbox_version: z.ZodOptional<z.ZodString>;
@@ -1632,6 +1633,10 @@ declare function createInMemoryCache(config?: InMemoryCacheConfig): CacheAdapter
1632
1633
  * email_providers.credentials, authentication_methods.totp_secret,
1633
1634
  * migration_sources.credentials.client_secret.
1634
1635
  *
1636
+ * clientConnections.listByClient is also wrapped so its returned Connection
1637
+ * objects are decrypted — getEnrichedClient uses this path to load connections
1638
+ * for the OAuth strategies.
1639
+ *
1635
1640
  * Private keys (keys.pkcs7, dkim_private_key) are intentionally NOT covered.
1636
1641
  */
1637
1642
  declare function createEncryptedDataAdapter(data: DataAdapters, key: CryptoKey): DataAdapters;
@@ -2460,7 +2465,7 @@ declare function init(config: AuthHeroConfig): {
2460
2465
  };
2461
2466
  } & {
2462
2467
  json: {
2463
- type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
2468
+ type: "email" | "phone" | "push" | "passkey" | "totp" | "webauthn-roaming" | "webauthn-platform";
2464
2469
  phone_number?: string | undefined;
2465
2470
  totp_secret?: string | undefined;
2466
2471
  credential_id?: string | undefined;
@@ -2600,7 +2605,7 @@ declare function init(config: AuthHeroConfig): {
2600
2605
  };
2601
2606
  };
2602
2607
  output: {
2603
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2608
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2604
2609
  enabled: boolean;
2605
2610
  trial_expired?: boolean | undefined;
2606
2611
  }[];
@@ -2755,7 +2760,7 @@ declare function init(config: AuthHeroConfig): {
2755
2760
  $get: {
2756
2761
  input: {
2757
2762
  param: {
2758
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2763
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2759
2764
  };
2760
2765
  } & {
2761
2766
  header: {
@@ -2763,7 +2768,7 @@ declare function init(config: AuthHeroConfig): {
2763
2768
  };
2764
2769
  };
2765
2770
  output: {
2766
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2771
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2767
2772
  enabled: boolean;
2768
2773
  trial_expired?: boolean | undefined;
2769
2774
  };
@@ -2776,7 +2781,7 @@ declare function init(config: AuthHeroConfig): {
2776
2781
  $put: {
2777
2782
  input: {
2778
2783
  param: {
2779
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2784
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2780
2785
  };
2781
2786
  } & {
2782
2787
  header: {
@@ -2788,7 +2793,7 @@ declare function init(config: AuthHeroConfig): {
2788
2793
  };
2789
2794
  };
2790
2795
  output: {
2791
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2796
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2792
2797
  enabled: boolean;
2793
2798
  trial_expired?: boolean | undefined;
2794
2799
  };
@@ -3533,9 +3538,9 @@ declare function init(config: AuthHeroConfig): {
3533
3538
  invitee: {
3534
3539
  email?: string | undefined;
3535
3540
  };
3536
- id?: string | undefined;
3537
3541
  app_metadata?: Record<string, any> | undefined;
3538
3542
  user_metadata?: Record<string, any> | undefined;
3543
+ id?: string | undefined;
3539
3544
  connection_id?: string | undefined;
3540
3545
  roles?: string[] | undefined;
3541
3546
  ttl_sec?: number | undefined;
@@ -3721,8 +3726,8 @@ declare function init(config: AuthHeroConfig): {
3721
3726
  };
3722
3727
  } & {
3723
3728
  json: {
3724
- show_as_button?: boolean | undefined;
3725
3729
  assign_membership_on_login?: boolean | undefined;
3730
+ show_as_button?: boolean | undefined;
3726
3731
  is_signup_enabled?: boolean | undefined;
3727
3732
  };
3728
3733
  };
@@ -4964,7 +4969,7 @@ declare function init(config: AuthHeroConfig): {
4964
4969
  hint?: string | undefined;
4965
4970
  messages?: {
4966
4971
  text: string;
4967
- type: "error" | "success" | "info" | "warning";
4972
+ type: "success" | "error" | "info" | "warning";
4968
4973
  id?: number | undefined;
4969
4974
  }[] | undefined;
4970
4975
  required?: boolean | undefined;
@@ -4982,7 +4987,7 @@ declare function init(config: AuthHeroConfig): {
4982
4987
  hint?: string | undefined;
4983
4988
  messages?: {
4984
4989
  text: string;
4985
- type: "error" | "success" | "info" | "warning";
4990
+ type: "success" | "error" | "info" | "warning";
4986
4991
  id?: number | undefined;
4987
4992
  }[] | undefined;
4988
4993
  required?: boolean | undefined;
@@ -5006,7 +5011,7 @@ declare function init(config: AuthHeroConfig): {
5006
5011
  hint?: string | undefined;
5007
5012
  messages?: {
5008
5013
  text: string;
5009
- type: "error" | "success" | "info" | "warning";
5014
+ type: "success" | "error" | "info" | "warning";
5010
5015
  id?: number | undefined;
5011
5016
  }[] | undefined;
5012
5017
  required?: boolean | undefined;
@@ -5030,7 +5035,7 @@ declare function init(config: AuthHeroConfig): {
5030
5035
  hint?: string | undefined;
5031
5036
  messages?: {
5032
5037
  text: string;
5033
- type: "error" | "success" | "info" | "warning";
5038
+ type: "success" | "error" | "info" | "warning";
5034
5039
  id?: number | undefined;
5035
5040
  }[] | undefined;
5036
5041
  required?: boolean | undefined;
@@ -5059,7 +5064,7 @@ declare function init(config: AuthHeroConfig): {
5059
5064
  hint?: string | undefined;
5060
5065
  messages?: {
5061
5066
  text: string;
5062
- type: "error" | "success" | "info" | "warning";
5067
+ type: "success" | "error" | "info" | "warning";
5063
5068
  id?: number | undefined;
5064
5069
  }[] | undefined;
5065
5070
  required?: boolean | undefined;
@@ -5074,7 +5079,7 @@ declare function init(config: AuthHeroConfig): {
5074
5079
  hint?: string | undefined;
5075
5080
  messages?: {
5076
5081
  text: string;
5077
- type: "error" | "success" | "info" | "warning";
5082
+ type: "success" | "error" | "info" | "warning";
5078
5083
  id?: number | undefined;
5079
5084
  }[] | undefined;
5080
5085
  required?: boolean | undefined;
@@ -5095,7 +5100,7 @@ declare function init(config: AuthHeroConfig): {
5095
5100
  hint?: string | undefined;
5096
5101
  messages?: {
5097
5102
  text: string;
5098
- type: "error" | "success" | "info" | "warning";
5103
+ type: "success" | "error" | "info" | "warning";
5099
5104
  id?: number | undefined;
5100
5105
  }[] | undefined;
5101
5106
  required?: boolean | undefined;
@@ -5120,7 +5125,7 @@ declare function init(config: AuthHeroConfig): {
5120
5125
  hint?: string | undefined;
5121
5126
  messages?: {
5122
5127
  text: string;
5123
- type: "error" | "success" | "info" | "warning";
5128
+ type: "success" | "error" | "info" | "warning";
5124
5129
  id?: number | undefined;
5125
5130
  }[] | undefined;
5126
5131
  required?: boolean | undefined;
@@ -5139,7 +5144,7 @@ declare function init(config: AuthHeroConfig): {
5139
5144
  hint?: string | undefined;
5140
5145
  messages?: {
5141
5146
  text: string;
5142
- type: "error" | "success" | "info" | "warning";
5147
+ type: "success" | "error" | "info" | "warning";
5143
5148
  id?: number | undefined;
5144
5149
  }[] | undefined;
5145
5150
  required?: boolean | undefined;
@@ -5159,7 +5164,7 @@ declare function init(config: AuthHeroConfig): {
5159
5164
  hint?: string | undefined;
5160
5165
  messages?: {
5161
5166
  text: string;
5162
- type: "error" | "success" | "info" | "warning";
5167
+ type: "success" | "error" | "info" | "warning";
5163
5168
  id?: number | undefined;
5164
5169
  }[] | undefined;
5165
5170
  required?: boolean | undefined;
@@ -5178,7 +5183,7 @@ declare function init(config: AuthHeroConfig): {
5178
5183
  hint?: string | undefined;
5179
5184
  messages?: {
5180
5185
  text: string;
5181
- type: "error" | "success" | "info" | "warning";
5186
+ type: "success" | "error" | "info" | "warning";
5182
5187
  id?: number | undefined;
5183
5188
  }[] | undefined;
5184
5189
  required?: boolean | undefined;
@@ -5200,7 +5205,7 @@ declare function init(config: AuthHeroConfig): {
5200
5205
  hint?: string | undefined;
5201
5206
  messages?: {
5202
5207
  text: string;
5203
- type: "error" | "success" | "info" | "warning";
5208
+ type: "success" | "error" | "info" | "warning";
5204
5209
  id?: number | undefined;
5205
5210
  }[] | undefined;
5206
5211
  required?: boolean | undefined;
@@ -5222,7 +5227,7 @@ declare function init(config: AuthHeroConfig): {
5222
5227
  hint?: string | undefined;
5223
5228
  messages?: {
5224
5229
  text: string;
5225
- type: "error" | "success" | "info" | "warning";
5230
+ type: "success" | "error" | "info" | "warning";
5226
5231
  id?: number | undefined;
5227
5232
  }[] | undefined;
5228
5233
  required?: boolean | undefined;
@@ -5241,7 +5246,7 @@ declare function init(config: AuthHeroConfig): {
5241
5246
  hint?: string | undefined;
5242
5247
  messages?: {
5243
5248
  text: string;
5244
- type: "error" | "success" | "info" | "warning";
5249
+ type: "success" | "error" | "info" | "warning";
5245
5250
  id?: number | undefined;
5246
5251
  }[] | undefined;
5247
5252
  required?: boolean | undefined;
@@ -5266,7 +5271,7 @@ declare function init(config: AuthHeroConfig): {
5266
5271
  hint?: string | undefined;
5267
5272
  messages?: {
5268
5273
  text: string;
5269
- type: "error" | "success" | "info" | "warning";
5274
+ type: "success" | "error" | "info" | "warning";
5270
5275
  id?: number | undefined;
5271
5276
  }[] | undefined;
5272
5277
  required?: boolean | undefined;
@@ -5287,7 +5292,7 @@ declare function init(config: AuthHeroConfig): {
5287
5292
  hint?: string | undefined;
5288
5293
  messages?: {
5289
5294
  text: string;
5290
- type: "error" | "success" | "info" | "warning";
5295
+ type: "success" | "error" | "info" | "warning";
5291
5296
  id?: number | undefined;
5292
5297
  }[] | undefined;
5293
5298
  required?: boolean | undefined;
@@ -5308,7 +5313,7 @@ declare function init(config: AuthHeroConfig): {
5308
5313
  hint?: string | undefined;
5309
5314
  messages?: {
5310
5315
  text: string;
5311
- type: "error" | "success" | "info" | "warning";
5316
+ type: "success" | "error" | "info" | "warning";
5312
5317
  id?: number | undefined;
5313
5318
  }[] | undefined;
5314
5319
  required?: boolean | undefined;
@@ -5541,7 +5546,7 @@ declare function init(config: AuthHeroConfig): {
5541
5546
  hint?: string | undefined;
5542
5547
  messages?: {
5543
5548
  text: string;
5544
- type: "error" | "success" | "info" | "warning";
5549
+ type: "success" | "error" | "info" | "warning";
5545
5550
  id?: number | undefined;
5546
5551
  }[] | undefined;
5547
5552
  required?: boolean | undefined;
@@ -5559,7 +5564,7 @@ declare function init(config: AuthHeroConfig): {
5559
5564
  hint?: string | undefined;
5560
5565
  messages?: {
5561
5566
  text: string;
5562
- type: "error" | "success" | "info" | "warning";
5567
+ type: "success" | "error" | "info" | "warning";
5563
5568
  id?: number | undefined;
5564
5569
  }[] | undefined;
5565
5570
  required?: boolean | undefined;
@@ -5583,7 +5588,7 @@ declare function init(config: AuthHeroConfig): {
5583
5588
  hint?: string | undefined;
5584
5589
  messages?: {
5585
5590
  text: string;
5586
- type: "error" | "success" | "info" | "warning";
5591
+ type: "success" | "error" | "info" | "warning";
5587
5592
  id?: number | undefined;
5588
5593
  }[] | undefined;
5589
5594
  required?: boolean | undefined;
@@ -5607,7 +5612,7 @@ declare function init(config: AuthHeroConfig): {
5607
5612
  hint?: string | undefined;
5608
5613
  messages?: {
5609
5614
  text: string;
5610
- type: "error" | "success" | "info" | "warning";
5615
+ type: "success" | "error" | "info" | "warning";
5611
5616
  id?: number | undefined;
5612
5617
  }[] | undefined;
5613
5618
  required?: boolean | undefined;
@@ -5636,7 +5641,7 @@ declare function init(config: AuthHeroConfig): {
5636
5641
  hint?: string | undefined;
5637
5642
  messages?: {
5638
5643
  text: string;
5639
- type: "error" | "success" | "info" | "warning";
5644
+ type: "success" | "error" | "info" | "warning";
5640
5645
  id?: number | undefined;
5641
5646
  }[] | undefined;
5642
5647
  required?: boolean | undefined;
@@ -5651,7 +5656,7 @@ declare function init(config: AuthHeroConfig): {
5651
5656
  hint?: string | undefined;
5652
5657
  messages?: {
5653
5658
  text: string;
5654
- type: "error" | "success" | "info" | "warning";
5659
+ type: "success" | "error" | "info" | "warning";
5655
5660
  id?: number | undefined;
5656
5661
  }[] | undefined;
5657
5662
  required?: boolean | undefined;
@@ -5672,7 +5677,7 @@ declare function init(config: AuthHeroConfig): {
5672
5677
  hint?: string | undefined;
5673
5678
  messages?: {
5674
5679
  text: string;
5675
- type: "error" | "success" | "info" | "warning";
5680
+ type: "success" | "error" | "info" | "warning";
5676
5681
  id?: number | undefined;
5677
5682
  }[] | undefined;
5678
5683
  required?: boolean | undefined;
@@ -5697,7 +5702,7 @@ declare function init(config: AuthHeroConfig): {
5697
5702
  hint?: string | undefined;
5698
5703
  messages?: {
5699
5704
  text: string;
5700
- type: "error" | "success" | "info" | "warning";
5705
+ type: "success" | "error" | "info" | "warning";
5701
5706
  id?: number | undefined;
5702
5707
  }[] | undefined;
5703
5708
  required?: boolean | undefined;
@@ -5716,7 +5721,7 @@ declare function init(config: AuthHeroConfig): {
5716
5721
  hint?: string | undefined;
5717
5722
  messages?: {
5718
5723
  text: string;
5719
- type: "error" | "success" | "info" | "warning";
5724
+ type: "success" | "error" | "info" | "warning";
5720
5725
  id?: number | undefined;
5721
5726
  }[] | undefined;
5722
5727
  required?: boolean | undefined;
@@ -5736,7 +5741,7 @@ declare function init(config: AuthHeroConfig): {
5736
5741
  hint?: string | undefined;
5737
5742
  messages?: {
5738
5743
  text: string;
5739
- type: "error" | "success" | "info" | "warning";
5744
+ type: "success" | "error" | "info" | "warning";
5740
5745
  id?: number | undefined;
5741
5746
  }[] | undefined;
5742
5747
  required?: boolean | undefined;
@@ -5755,7 +5760,7 @@ declare function init(config: AuthHeroConfig): {
5755
5760
  hint?: string | undefined;
5756
5761
  messages?: {
5757
5762
  text: string;
5758
- type: "error" | "success" | "info" | "warning";
5763
+ type: "success" | "error" | "info" | "warning";
5759
5764
  id?: number | undefined;
5760
5765
  }[] | undefined;
5761
5766
  required?: boolean | undefined;
@@ -5777,7 +5782,7 @@ declare function init(config: AuthHeroConfig): {
5777
5782
  hint?: string | undefined;
5778
5783
  messages?: {
5779
5784
  text: string;
5780
- type: "error" | "success" | "info" | "warning";
5785
+ type: "success" | "error" | "info" | "warning";
5781
5786
  id?: number | undefined;
5782
5787
  }[] | undefined;
5783
5788
  required?: boolean | undefined;
@@ -5799,7 +5804,7 @@ declare function init(config: AuthHeroConfig): {
5799
5804
  hint?: string | undefined;
5800
5805
  messages?: {
5801
5806
  text: string;
5802
- type: "error" | "success" | "info" | "warning";
5807
+ type: "success" | "error" | "info" | "warning";
5803
5808
  id?: number | undefined;
5804
5809
  }[] | undefined;
5805
5810
  required?: boolean | undefined;
@@ -5818,7 +5823,7 @@ declare function init(config: AuthHeroConfig): {
5818
5823
  hint?: string | undefined;
5819
5824
  messages?: {
5820
5825
  text: string;
5821
- type: "error" | "success" | "info" | "warning";
5826
+ type: "success" | "error" | "info" | "warning";
5822
5827
  id?: number | undefined;
5823
5828
  }[] | undefined;
5824
5829
  required?: boolean | undefined;
@@ -5843,7 +5848,7 @@ declare function init(config: AuthHeroConfig): {
5843
5848
  hint?: string | undefined;
5844
5849
  messages?: {
5845
5850
  text: string;
5846
- type: "error" | "success" | "info" | "warning";
5851
+ type: "success" | "error" | "info" | "warning";
5847
5852
  id?: number | undefined;
5848
5853
  }[] | undefined;
5849
5854
  required?: boolean | undefined;
@@ -5864,7 +5869,7 @@ declare function init(config: AuthHeroConfig): {
5864
5869
  hint?: string | undefined;
5865
5870
  messages?: {
5866
5871
  text: string;
5867
- type: "error" | "success" | "info" | "warning";
5872
+ type: "success" | "error" | "info" | "warning";
5868
5873
  id?: number | undefined;
5869
5874
  }[] | undefined;
5870
5875
  required?: boolean | undefined;
@@ -5885,7 +5890,7 @@ declare function init(config: AuthHeroConfig): {
5885
5890
  hint?: string | undefined;
5886
5891
  messages?: {
5887
5892
  text: string;
5888
- type: "error" | "success" | "info" | "warning";
5893
+ type: "success" | "error" | "info" | "warning";
5889
5894
  id?: number | undefined;
5890
5895
  }[] | undefined;
5891
5896
  required?: boolean | undefined;
@@ -6133,7 +6138,7 @@ declare function init(config: AuthHeroConfig): {
6133
6138
  hint?: string | undefined;
6134
6139
  messages?: {
6135
6140
  text: string;
6136
- type: "error" | "success" | "info" | "warning";
6141
+ type: "success" | "error" | "info" | "warning";
6137
6142
  id?: number | undefined;
6138
6143
  }[] | undefined;
6139
6144
  required?: boolean | undefined;
@@ -6151,7 +6156,7 @@ declare function init(config: AuthHeroConfig): {
6151
6156
  hint?: string | undefined;
6152
6157
  messages?: {
6153
6158
  text: string;
6154
- type: "error" | "success" | "info" | "warning";
6159
+ type: "success" | "error" | "info" | "warning";
6155
6160
  id?: number | undefined;
6156
6161
  }[] | undefined;
6157
6162
  required?: boolean | undefined;
@@ -6175,7 +6180,7 @@ declare function init(config: AuthHeroConfig): {
6175
6180
  hint?: string | undefined;
6176
6181
  messages?: {
6177
6182
  text: string;
6178
- type: "error" | "success" | "info" | "warning";
6183
+ type: "success" | "error" | "info" | "warning";
6179
6184
  id?: number | undefined;
6180
6185
  }[] | undefined;
6181
6186
  required?: boolean | undefined;
@@ -6199,7 +6204,7 @@ declare function init(config: AuthHeroConfig): {
6199
6204
  hint?: string | undefined;
6200
6205
  messages?: {
6201
6206
  text: string;
6202
- type: "error" | "success" | "info" | "warning";
6207
+ type: "success" | "error" | "info" | "warning";
6203
6208
  id?: number | undefined;
6204
6209
  }[] | undefined;
6205
6210
  required?: boolean | undefined;
@@ -6228,7 +6233,7 @@ declare function init(config: AuthHeroConfig): {
6228
6233
  hint?: string | undefined;
6229
6234
  messages?: {
6230
6235
  text: string;
6231
- type: "error" | "success" | "info" | "warning";
6236
+ type: "success" | "error" | "info" | "warning";
6232
6237
  id?: number | undefined;
6233
6238
  }[] | undefined;
6234
6239
  required?: boolean | undefined;
@@ -6243,7 +6248,7 @@ declare function init(config: AuthHeroConfig): {
6243
6248
  hint?: string | undefined;
6244
6249
  messages?: {
6245
6250
  text: string;
6246
- type: "error" | "success" | "info" | "warning";
6251
+ type: "success" | "error" | "info" | "warning";
6247
6252
  id?: number | undefined;
6248
6253
  }[] | undefined;
6249
6254
  required?: boolean | undefined;
@@ -6264,7 +6269,7 @@ declare function init(config: AuthHeroConfig): {
6264
6269
  hint?: string | undefined;
6265
6270
  messages?: {
6266
6271
  text: string;
6267
- type: "error" | "success" | "info" | "warning";
6272
+ type: "success" | "error" | "info" | "warning";
6268
6273
  id?: number | undefined;
6269
6274
  }[] | undefined;
6270
6275
  required?: boolean | undefined;
@@ -6289,7 +6294,7 @@ declare function init(config: AuthHeroConfig): {
6289
6294
  hint?: string | undefined;
6290
6295
  messages?: {
6291
6296
  text: string;
6292
- type: "error" | "success" | "info" | "warning";
6297
+ type: "success" | "error" | "info" | "warning";
6293
6298
  id?: number | undefined;
6294
6299
  }[] | undefined;
6295
6300
  required?: boolean | undefined;
@@ -6308,7 +6313,7 @@ declare function init(config: AuthHeroConfig): {
6308
6313
  hint?: string | undefined;
6309
6314
  messages?: {
6310
6315
  text: string;
6311
- type: "error" | "success" | "info" | "warning";
6316
+ type: "success" | "error" | "info" | "warning";
6312
6317
  id?: number | undefined;
6313
6318
  }[] | undefined;
6314
6319
  required?: boolean | undefined;
@@ -6328,7 +6333,7 @@ declare function init(config: AuthHeroConfig): {
6328
6333
  hint?: string | undefined;
6329
6334
  messages?: {
6330
6335
  text: string;
6331
- type: "error" | "success" | "info" | "warning";
6336
+ type: "success" | "error" | "info" | "warning";
6332
6337
  id?: number | undefined;
6333
6338
  }[] | undefined;
6334
6339
  required?: boolean | undefined;
@@ -6347,7 +6352,7 @@ declare function init(config: AuthHeroConfig): {
6347
6352
  hint?: string | undefined;
6348
6353
  messages?: {
6349
6354
  text: string;
6350
- type: "error" | "success" | "info" | "warning";
6355
+ type: "success" | "error" | "info" | "warning";
6351
6356
  id?: number | undefined;
6352
6357
  }[] | undefined;
6353
6358
  required?: boolean | undefined;
@@ -6369,7 +6374,7 @@ declare function init(config: AuthHeroConfig): {
6369
6374
  hint?: string | undefined;
6370
6375
  messages?: {
6371
6376
  text: string;
6372
- type: "error" | "success" | "info" | "warning";
6377
+ type: "success" | "error" | "info" | "warning";
6373
6378
  id?: number | undefined;
6374
6379
  }[] | undefined;
6375
6380
  required?: boolean | undefined;
@@ -6391,7 +6396,7 @@ declare function init(config: AuthHeroConfig): {
6391
6396
  hint?: string | undefined;
6392
6397
  messages?: {
6393
6398
  text: string;
6394
- type: "error" | "success" | "info" | "warning";
6399
+ type: "success" | "error" | "info" | "warning";
6395
6400
  id?: number | undefined;
6396
6401
  }[] | undefined;
6397
6402
  required?: boolean | undefined;
@@ -6410,7 +6415,7 @@ declare function init(config: AuthHeroConfig): {
6410
6415
  hint?: string | undefined;
6411
6416
  messages?: {
6412
6417
  text: string;
6413
- type: "error" | "success" | "info" | "warning";
6418
+ type: "success" | "error" | "info" | "warning";
6414
6419
  id?: number | undefined;
6415
6420
  }[] | undefined;
6416
6421
  required?: boolean | undefined;
@@ -6435,7 +6440,7 @@ declare function init(config: AuthHeroConfig): {
6435
6440
  hint?: string | undefined;
6436
6441
  messages?: {
6437
6442
  text: string;
6438
- type: "error" | "success" | "info" | "warning";
6443
+ type: "success" | "error" | "info" | "warning";
6439
6444
  id?: number | undefined;
6440
6445
  }[] | undefined;
6441
6446
  required?: boolean | undefined;
@@ -6456,7 +6461,7 @@ declare function init(config: AuthHeroConfig): {
6456
6461
  hint?: string | undefined;
6457
6462
  messages?: {
6458
6463
  text: string;
6459
- type: "error" | "success" | "info" | "warning";
6464
+ type: "success" | "error" | "info" | "warning";
6460
6465
  id?: number | undefined;
6461
6466
  }[] | undefined;
6462
6467
  required?: boolean | undefined;
@@ -6477,7 +6482,7 @@ declare function init(config: AuthHeroConfig): {
6477
6482
  hint?: string | undefined;
6478
6483
  messages?: {
6479
6484
  text: string;
6480
- type: "error" | "success" | "info" | "warning";
6485
+ type: "success" | "error" | "info" | "warning";
6481
6486
  id?: number | undefined;
6482
6487
  }[] | undefined;
6483
6488
  required?: boolean | undefined;
@@ -6731,7 +6736,7 @@ declare function init(config: AuthHeroConfig): {
6731
6736
  hint?: string | undefined;
6732
6737
  messages?: {
6733
6738
  text: string;
6734
- type: "error" | "success" | "info" | "warning";
6739
+ type: "success" | "error" | "info" | "warning";
6735
6740
  id?: number | undefined;
6736
6741
  }[] | undefined;
6737
6742
  required?: boolean | undefined;
@@ -6749,7 +6754,7 @@ declare function init(config: AuthHeroConfig): {
6749
6754
  hint?: string | undefined;
6750
6755
  messages?: {
6751
6756
  text: string;
6752
- type: "error" | "success" | "info" | "warning";
6757
+ type: "success" | "error" | "info" | "warning";
6753
6758
  id?: number | undefined;
6754
6759
  }[] | undefined;
6755
6760
  required?: boolean | undefined;
@@ -6773,7 +6778,7 @@ declare function init(config: AuthHeroConfig): {
6773
6778
  hint?: string | undefined;
6774
6779
  messages?: {
6775
6780
  text: string;
6776
- type: "error" | "success" | "info" | "warning";
6781
+ type: "success" | "error" | "info" | "warning";
6777
6782
  id?: number | undefined;
6778
6783
  }[] | undefined;
6779
6784
  required?: boolean | undefined;
@@ -6797,7 +6802,7 @@ declare function init(config: AuthHeroConfig): {
6797
6802
  hint?: string | undefined;
6798
6803
  messages?: {
6799
6804
  text: string;
6800
- type: "error" | "success" | "info" | "warning";
6805
+ type: "success" | "error" | "info" | "warning";
6801
6806
  id?: number | undefined;
6802
6807
  }[] | undefined;
6803
6808
  required?: boolean | undefined;
@@ -6822,7 +6827,7 @@ declare function init(config: AuthHeroConfig): {
6822
6827
  hint?: string | undefined;
6823
6828
  messages?: {
6824
6829
  text: string;
6825
- type: "error" | "success" | "info" | "warning";
6830
+ type: "success" | "error" | "info" | "warning";
6826
6831
  id?: number | undefined;
6827
6832
  }[] | undefined;
6828
6833
  required?: boolean | undefined;
@@ -6837,7 +6842,7 @@ declare function init(config: AuthHeroConfig): {
6837
6842
  hint?: string | undefined;
6838
6843
  messages?: {
6839
6844
  text: string;
6840
- type: "error" | "success" | "info" | "warning";
6845
+ type: "success" | "error" | "info" | "warning";
6841
6846
  id?: number | undefined;
6842
6847
  }[] | undefined;
6843
6848
  required?: boolean | undefined;
@@ -6858,7 +6863,7 @@ declare function init(config: AuthHeroConfig): {
6858
6863
  hint?: string | undefined;
6859
6864
  messages?: {
6860
6865
  text: string;
6861
- type: "error" | "success" | "info" | "warning";
6866
+ type: "success" | "error" | "info" | "warning";
6862
6867
  id?: number | undefined;
6863
6868
  }[] | undefined;
6864
6869
  required?: boolean | undefined;
@@ -6883,7 +6888,7 @@ declare function init(config: AuthHeroConfig): {
6883
6888
  hint?: string | undefined;
6884
6889
  messages?: {
6885
6890
  text: string;
6886
- type: "error" | "success" | "info" | "warning";
6891
+ type: "success" | "error" | "info" | "warning";
6887
6892
  id?: number | undefined;
6888
6893
  }[] | undefined;
6889
6894
  required?: boolean | undefined;
@@ -6902,7 +6907,7 @@ declare function init(config: AuthHeroConfig): {
6902
6907
  hint?: string | undefined;
6903
6908
  messages?: {
6904
6909
  text: string;
6905
- type: "error" | "success" | "info" | "warning";
6910
+ type: "success" | "error" | "info" | "warning";
6906
6911
  id?: number | undefined;
6907
6912
  }[] | undefined;
6908
6913
  required?: boolean | undefined;
@@ -6922,7 +6927,7 @@ declare function init(config: AuthHeroConfig): {
6922
6927
  hint?: string | undefined;
6923
6928
  messages?: {
6924
6929
  text: string;
6925
- type: "error" | "success" | "info" | "warning";
6930
+ type: "success" | "error" | "info" | "warning";
6926
6931
  id?: number | undefined;
6927
6932
  }[] | undefined;
6928
6933
  required?: boolean | undefined;
@@ -6941,7 +6946,7 @@ declare function init(config: AuthHeroConfig): {
6941
6946
  hint?: string | undefined;
6942
6947
  messages?: {
6943
6948
  text: string;
6944
- type: "error" | "success" | "info" | "warning";
6949
+ type: "success" | "error" | "info" | "warning";
6945
6950
  id?: number | undefined;
6946
6951
  }[] | undefined;
6947
6952
  required?: boolean | undefined;
@@ -6963,7 +6968,7 @@ declare function init(config: AuthHeroConfig): {
6963
6968
  hint?: string | undefined;
6964
6969
  messages?: {
6965
6970
  text: string;
6966
- type: "error" | "success" | "info" | "warning";
6971
+ type: "success" | "error" | "info" | "warning";
6967
6972
  id?: number | undefined;
6968
6973
  }[] | undefined;
6969
6974
  required?: boolean | undefined;
@@ -6985,7 +6990,7 @@ declare function init(config: AuthHeroConfig): {
6985
6990
  hint?: string | undefined;
6986
6991
  messages?: {
6987
6992
  text: string;
6988
- type: "error" | "success" | "info" | "warning";
6993
+ type: "success" | "error" | "info" | "warning";
6989
6994
  id?: number | undefined;
6990
6995
  }[] | undefined;
6991
6996
  required?: boolean | undefined;
@@ -7004,7 +7009,7 @@ declare function init(config: AuthHeroConfig): {
7004
7009
  hint?: string | undefined;
7005
7010
  messages?: {
7006
7011
  text: string;
7007
- type: "error" | "success" | "info" | "warning";
7012
+ type: "success" | "error" | "info" | "warning";
7008
7013
  id?: number | undefined;
7009
7014
  }[] | undefined;
7010
7015
  required?: boolean | undefined;
@@ -7029,7 +7034,7 @@ declare function init(config: AuthHeroConfig): {
7029
7034
  hint?: string | undefined;
7030
7035
  messages?: {
7031
7036
  text: string;
7032
- type: "error" | "success" | "info" | "warning";
7037
+ type: "success" | "error" | "info" | "warning";
7033
7038
  id?: number | undefined;
7034
7039
  }[] | undefined;
7035
7040
  required?: boolean | undefined;
@@ -7050,7 +7055,7 @@ declare function init(config: AuthHeroConfig): {
7050
7055
  hint?: string | undefined;
7051
7056
  messages?: {
7052
7057
  text: string;
7053
- type: "error" | "success" | "info" | "warning";
7058
+ type: "success" | "error" | "info" | "warning";
7054
7059
  id?: number | undefined;
7055
7060
  }[] | undefined;
7056
7061
  required?: boolean | undefined;
@@ -7071,7 +7076,7 @@ declare function init(config: AuthHeroConfig): {
7071
7076
  hint?: string | undefined;
7072
7077
  messages?: {
7073
7078
  text: string;
7074
- type: "error" | "success" | "info" | "warning";
7079
+ type: "success" | "error" | "info" | "warning";
7075
7080
  id?: number | undefined;
7076
7081
  }[] | undefined;
7077
7082
  required?: boolean | undefined;
@@ -7302,7 +7307,7 @@ declare function init(config: AuthHeroConfig): {
7302
7307
  hint?: string | undefined;
7303
7308
  messages?: {
7304
7309
  text: string;
7305
- type: "error" | "success" | "info" | "warning";
7310
+ type: "success" | "error" | "info" | "warning";
7306
7311
  id?: number | undefined;
7307
7312
  }[] | undefined;
7308
7313
  required?: boolean | undefined;
@@ -7320,7 +7325,7 @@ declare function init(config: AuthHeroConfig): {
7320
7325
  hint?: string | undefined;
7321
7326
  messages?: {
7322
7327
  text: string;
7323
- type: "error" | "success" | "info" | "warning";
7328
+ type: "success" | "error" | "info" | "warning";
7324
7329
  id?: number | undefined;
7325
7330
  }[] | undefined;
7326
7331
  required?: boolean | undefined;
@@ -7344,7 +7349,7 @@ declare function init(config: AuthHeroConfig): {
7344
7349
  hint?: string | undefined;
7345
7350
  messages?: {
7346
7351
  text: string;
7347
- type: "error" | "success" | "info" | "warning";
7352
+ type: "success" | "error" | "info" | "warning";
7348
7353
  id?: number | undefined;
7349
7354
  }[] | undefined;
7350
7355
  required?: boolean | undefined;
@@ -7368,7 +7373,7 @@ declare function init(config: AuthHeroConfig): {
7368
7373
  hint?: string | undefined;
7369
7374
  messages?: {
7370
7375
  text: string;
7371
- type: "error" | "success" | "info" | "warning";
7376
+ type: "success" | "error" | "info" | "warning";
7372
7377
  id?: number | undefined;
7373
7378
  }[] | undefined;
7374
7379
  required?: boolean | undefined;
@@ -7397,7 +7402,7 @@ declare function init(config: AuthHeroConfig): {
7397
7402
  hint?: string | undefined;
7398
7403
  messages?: {
7399
7404
  text: string;
7400
- type: "error" | "success" | "info" | "warning";
7405
+ type: "success" | "error" | "info" | "warning";
7401
7406
  id?: number | undefined;
7402
7407
  }[] | undefined;
7403
7408
  required?: boolean | undefined;
@@ -7412,7 +7417,7 @@ declare function init(config: AuthHeroConfig): {
7412
7417
  hint?: string | undefined;
7413
7418
  messages?: {
7414
7419
  text: string;
7415
- type: "error" | "success" | "info" | "warning";
7420
+ type: "success" | "error" | "info" | "warning";
7416
7421
  id?: number | undefined;
7417
7422
  }[] | undefined;
7418
7423
  required?: boolean | undefined;
@@ -7433,7 +7438,7 @@ declare function init(config: AuthHeroConfig): {
7433
7438
  hint?: string | undefined;
7434
7439
  messages?: {
7435
7440
  text: string;
7436
- type: "error" | "success" | "info" | "warning";
7441
+ type: "success" | "error" | "info" | "warning";
7437
7442
  id?: number | undefined;
7438
7443
  }[] | undefined;
7439
7444
  required?: boolean | undefined;
@@ -7458,7 +7463,7 @@ declare function init(config: AuthHeroConfig): {
7458
7463
  hint?: string | undefined;
7459
7464
  messages?: {
7460
7465
  text: string;
7461
- type: "error" | "success" | "info" | "warning";
7466
+ type: "success" | "error" | "info" | "warning";
7462
7467
  id?: number | undefined;
7463
7468
  }[] | undefined;
7464
7469
  required?: boolean | undefined;
@@ -7477,7 +7482,7 @@ declare function init(config: AuthHeroConfig): {
7477
7482
  hint?: string | undefined;
7478
7483
  messages?: {
7479
7484
  text: string;
7480
- type: "error" | "success" | "info" | "warning";
7485
+ type: "success" | "error" | "info" | "warning";
7481
7486
  id?: number | undefined;
7482
7487
  }[] | undefined;
7483
7488
  required?: boolean | undefined;
@@ -7497,7 +7502,7 @@ declare function init(config: AuthHeroConfig): {
7497
7502
  hint?: string | undefined;
7498
7503
  messages?: {
7499
7504
  text: string;
7500
- type: "error" | "success" | "info" | "warning";
7505
+ type: "success" | "error" | "info" | "warning";
7501
7506
  id?: number | undefined;
7502
7507
  }[] | undefined;
7503
7508
  required?: boolean | undefined;
@@ -7516,7 +7521,7 @@ declare function init(config: AuthHeroConfig): {
7516
7521
  hint?: string | undefined;
7517
7522
  messages?: {
7518
7523
  text: string;
7519
- type: "error" | "success" | "info" | "warning";
7524
+ type: "success" | "error" | "info" | "warning";
7520
7525
  id?: number | undefined;
7521
7526
  }[] | undefined;
7522
7527
  required?: boolean | undefined;
@@ -7538,7 +7543,7 @@ declare function init(config: AuthHeroConfig): {
7538
7543
  hint?: string | undefined;
7539
7544
  messages?: {
7540
7545
  text: string;
7541
- type: "error" | "success" | "info" | "warning";
7546
+ type: "success" | "error" | "info" | "warning";
7542
7547
  id?: number | undefined;
7543
7548
  }[] | undefined;
7544
7549
  required?: boolean | undefined;
@@ -7560,7 +7565,7 @@ declare function init(config: AuthHeroConfig): {
7560
7565
  hint?: string | undefined;
7561
7566
  messages?: {
7562
7567
  text: string;
7563
- type: "error" | "success" | "info" | "warning";
7568
+ type: "success" | "error" | "info" | "warning";
7564
7569
  id?: number | undefined;
7565
7570
  }[] | undefined;
7566
7571
  required?: boolean | undefined;
@@ -7579,7 +7584,7 @@ declare function init(config: AuthHeroConfig): {
7579
7584
  hint?: string | undefined;
7580
7585
  messages?: {
7581
7586
  text: string;
7582
- type: "error" | "success" | "info" | "warning";
7587
+ type: "success" | "error" | "info" | "warning";
7583
7588
  id?: number | undefined;
7584
7589
  }[] | undefined;
7585
7590
  required?: boolean | undefined;
@@ -7604,7 +7609,7 @@ declare function init(config: AuthHeroConfig): {
7604
7609
  hint?: string | undefined;
7605
7610
  messages?: {
7606
7611
  text: string;
7607
- type: "error" | "success" | "info" | "warning";
7612
+ type: "success" | "error" | "info" | "warning";
7608
7613
  id?: number | undefined;
7609
7614
  }[] | undefined;
7610
7615
  required?: boolean | undefined;
@@ -7625,7 +7630,7 @@ declare function init(config: AuthHeroConfig): {
7625
7630
  hint?: string | undefined;
7626
7631
  messages?: {
7627
7632
  text: string;
7628
- type: "error" | "success" | "info" | "warning";
7633
+ type: "success" | "error" | "info" | "warning";
7629
7634
  id?: number | undefined;
7630
7635
  }[] | undefined;
7631
7636
  required?: boolean | undefined;
@@ -7646,7 +7651,7 @@ declare function init(config: AuthHeroConfig): {
7646
7651
  hint?: string | undefined;
7647
7652
  messages?: {
7648
7653
  text: string;
7649
- type: "error" | "success" | "info" | "warning";
7654
+ type: "success" | "error" | "info" | "warning";
7650
7655
  id?: number | undefined;
7651
7656
  }[] | undefined;
7652
7657
  required?: boolean | undefined;
@@ -7879,7 +7884,7 @@ declare function init(config: AuthHeroConfig): {
7879
7884
  hint?: string | undefined;
7880
7885
  messages?: {
7881
7886
  text: string;
7882
- type: "error" | "success" | "info" | "warning";
7887
+ type: "success" | "error" | "info" | "warning";
7883
7888
  id?: number | undefined;
7884
7889
  }[] | undefined;
7885
7890
  required?: boolean | undefined;
@@ -7897,7 +7902,7 @@ declare function init(config: AuthHeroConfig): {
7897
7902
  hint?: string | undefined;
7898
7903
  messages?: {
7899
7904
  text: string;
7900
- type: "error" | "success" | "info" | "warning";
7905
+ type: "success" | "error" | "info" | "warning";
7901
7906
  id?: number | undefined;
7902
7907
  }[] | undefined;
7903
7908
  required?: boolean | undefined;
@@ -7921,7 +7926,7 @@ declare function init(config: AuthHeroConfig): {
7921
7926
  hint?: string | undefined;
7922
7927
  messages?: {
7923
7928
  text: string;
7924
- type: "error" | "success" | "info" | "warning";
7929
+ type: "success" | "error" | "info" | "warning";
7925
7930
  id?: number | undefined;
7926
7931
  }[] | undefined;
7927
7932
  required?: boolean | undefined;
@@ -7945,7 +7950,7 @@ declare function init(config: AuthHeroConfig): {
7945
7950
  hint?: string | undefined;
7946
7951
  messages?: {
7947
7952
  text: string;
7948
- type: "error" | "success" | "info" | "warning";
7953
+ type: "success" | "error" | "info" | "warning";
7949
7954
  id?: number | undefined;
7950
7955
  }[] | undefined;
7951
7956
  required?: boolean | undefined;
@@ -7970,7 +7975,7 @@ declare function init(config: AuthHeroConfig): {
7970
7975
  hint?: string | undefined;
7971
7976
  messages?: {
7972
7977
  text: string;
7973
- type: "error" | "success" | "info" | "warning";
7978
+ type: "success" | "error" | "info" | "warning";
7974
7979
  id?: number | undefined;
7975
7980
  }[] | undefined;
7976
7981
  required?: boolean | undefined;
@@ -7985,7 +7990,7 @@ declare function init(config: AuthHeroConfig): {
7985
7990
  hint?: string | undefined;
7986
7991
  messages?: {
7987
7992
  text: string;
7988
- type: "error" | "success" | "info" | "warning";
7993
+ type: "success" | "error" | "info" | "warning";
7989
7994
  id?: number | undefined;
7990
7995
  }[] | undefined;
7991
7996
  required?: boolean | undefined;
@@ -8006,7 +8011,7 @@ declare function init(config: AuthHeroConfig): {
8006
8011
  hint?: string | undefined;
8007
8012
  messages?: {
8008
8013
  text: string;
8009
- type: "error" | "success" | "info" | "warning";
8014
+ type: "success" | "error" | "info" | "warning";
8010
8015
  id?: number | undefined;
8011
8016
  }[] | undefined;
8012
8017
  required?: boolean | undefined;
@@ -8031,7 +8036,7 @@ declare function init(config: AuthHeroConfig): {
8031
8036
  hint?: string | undefined;
8032
8037
  messages?: {
8033
8038
  text: string;
8034
- type: "error" | "success" | "info" | "warning";
8039
+ type: "success" | "error" | "info" | "warning";
8035
8040
  id?: number | undefined;
8036
8041
  }[] | undefined;
8037
8042
  required?: boolean | undefined;
@@ -8050,7 +8055,7 @@ declare function init(config: AuthHeroConfig): {
8050
8055
  hint?: string | undefined;
8051
8056
  messages?: {
8052
8057
  text: string;
8053
- type: "error" | "success" | "info" | "warning";
8058
+ type: "success" | "error" | "info" | "warning";
8054
8059
  id?: number | undefined;
8055
8060
  }[] | undefined;
8056
8061
  required?: boolean | undefined;
@@ -8070,7 +8075,7 @@ declare function init(config: AuthHeroConfig): {
8070
8075
  hint?: string | undefined;
8071
8076
  messages?: {
8072
8077
  text: string;
8073
- type: "error" | "success" | "info" | "warning";
8078
+ type: "success" | "error" | "info" | "warning";
8074
8079
  id?: number | undefined;
8075
8080
  }[] | undefined;
8076
8081
  required?: boolean | undefined;
@@ -8089,7 +8094,7 @@ declare function init(config: AuthHeroConfig): {
8089
8094
  hint?: string | undefined;
8090
8095
  messages?: {
8091
8096
  text: string;
8092
- type: "error" | "success" | "info" | "warning";
8097
+ type: "success" | "error" | "info" | "warning";
8093
8098
  id?: number | undefined;
8094
8099
  }[] | undefined;
8095
8100
  required?: boolean | undefined;
@@ -8111,7 +8116,7 @@ declare function init(config: AuthHeroConfig): {
8111
8116
  hint?: string | undefined;
8112
8117
  messages?: {
8113
8118
  text: string;
8114
- type: "error" | "success" | "info" | "warning";
8119
+ type: "success" | "error" | "info" | "warning";
8115
8120
  id?: number | undefined;
8116
8121
  }[] | undefined;
8117
8122
  required?: boolean | undefined;
@@ -8133,7 +8138,7 @@ declare function init(config: AuthHeroConfig): {
8133
8138
  hint?: string | undefined;
8134
8139
  messages?: {
8135
8140
  text: string;
8136
- type: "error" | "success" | "info" | "warning";
8141
+ type: "success" | "error" | "info" | "warning";
8137
8142
  id?: number | undefined;
8138
8143
  }[] | undefined;
8139
8144
  required?: boolean | undefined;
@@ -8152,7 +8157,7 @@ declare function init(config: AuthHeroConfig): {
8152
8157
  hint?: string | undefined;
8153
8158
  messages?: {
8154
8159
  text: string;
8155
- type: "error" | "success" | "info" | "warning";
8160
+ type: "success" | "error" | "info" | "warning";
8156
8161
  id?: number | undefined;
8157
8162
  }[] | undefined;
8158
8163
  required?: boolean | undefined;
@@ -8177,7 +8182,7 @@ declare function init(config: AuthHeroConfig): {
8177
8182
  hint?: string | undefined;
8178
8183
  messages?: {
8179
8184
  text: string;
8180
- type: "error" | "success" | "info" | "warning";
8185
+ type: "success" | "error" | "info" | "warning";
8181
8186
  id?: number | undefined;
8182
8187
  }[] | undefined;
8183
8188
  required?: boolean | undefined;
@@ -8198,7 +8203,7 @@ declare function init(config: AuthHeroConfig): {
8198
8203
  hint?: string | undefined;
8199
8204
  messages?: {
8200
8205
  text: string;
8201
- type: "error" | "success" | "info" | "warning";
8206
+ type: "success" | "error" | "info" | "warning";
8202
8207
  id?: number | undefined;
8203
8208
  }[] | undefined;
8204
8209
  required?: boolean | undefined;
@@ -8219,7 +8224,7 @@ declare function init(config: AuthHeroConfig): {
8219
8224
  hint?: string | undefined;
8220
8225
  messages?: {
8221
8226
  text: string;
8222
- type: "error" | "success" | "info" | "warning";
8227
+ type: "success" | "error" | "info" | "warning";
8223
8228
  id?: number | undefined;
8224
8229
  }[] | undefined;
8225
8230
  required?: boolean | undefined;
@@ -8450,7 +8455,7 @@ declare function init(config: AuthHeroConfig): {
8450
8455
  hint?: string | undefined;
8451
8456
  messages?: {
8452
8457
  text: string;
8453
- type: "error" | "success" | "info" | "warning";
8458
+ type: "success" | "error" | "info" | "warning";
8454
8459
  id?: number | undefined;
8455
8460
  }[] | undefined;
8456
8461
  required?: boolean | undefined;
@@ -8468,7 +8473,7 @@ declare function init(config: AuthHeroConfig): {
8468
8473
  hint?: string | undefined;
8469
8474
  messages?: {
8470
8475
  text: string;
8471
- type: "error" | "success" | "info" | "warning";
8476
+ type: "success" | "error" | "info" | "warning";
8472
8477
  id?: number | undefined;
8473
8478
  }[] | undefined;
8474
8479
  required?: boolean | undefined;
@@ -8492,7 +8497,7 @@ declare function init(config: AuthHeroConfig): {
8492
8497
  hint?: string | undefined;
8493
8498
  messages?: {
8494
8499
  text: string;
8495
- type: "error" | "success" | "info" | "warning";
8500
+ type: "success" | "error" | "info" | "warning";
8496
8501
  id?: number | undefined;
8497
8502
  }[] | undefined;
8498
8503
  required?: boolean | undefined;
@@ -8516,7 +8521,7 @@ declare function init(config: AuthHeroConfig): {
8516
8521
  hint?: string | undefined;
8517
8522
  messages?: {
8518
8523
  text: string;
8519
- type: "error" | "success" | "info" | "warning";
8524
+ type: "success" | "error" | "info" | "warning";
8520
8525
  id?: number | undefined;
8521
8526
  }[] | undefined;
8522
8527
  required?: boolean | undefined;
@@ -8545,7 +8550,7 @@ declare function init(config: AuthHeroConfig): {
8545
8550
  hint?: string | undefined;
8546
8551
  messages?: {
8547
8552
  text: string;
8548
- type: "error" | "success" | "info" | "warning";
8553
+ type: "success" | "error" | "info" | "warning";
8549
8554
  id?: number | undefined;
8550
8555
  }[] | undefined;
8551
8556
  required?: boolean | undefined;
@@ -8560,7 +8565,7 @@ declare function init(config: AuthHeroConfig): {
8560
8565
  hint?: string | undefined;
8561
8566
  messages?: {
8562
8567
  text: string;
8563
- type: "error" | "success" | "info" | "warning";
8568
+ type: "success" | "error" | "info" | "warning";
8564
8569
  id?: number | undefined;
8565
8570
  }[] | undefined;
8566
8571
  required?: boolean | undefined;
@@ -8581,7 +8586,7 @@ declare function init(config: AuthHeroConfig): {
8581
8586
  hint?: string | undefined;
8582
8587
  messages?: {
8583
8588
  text: string;
8584
- type: "error" | "success" | "info" | "warning";
8589
+ type: "success" | "error" | "info" | "warning";
8585
8590
  id?: number | undefined;
8586
8591
  }[] | undefined;
8587
8592
  required?: boolean | undefined;
@@ -8606,7 +8611,7 @@ declare function init(config: AuthHeroConfig): {
8606
8611
  hint?: string | undefined;
8607
8612
  messages?: {
8608
8613
  text: string;
8609
- type: "error" | "success" | "info" | "warning";
8614
+ type: "success" | "error" | "info" | "warning";
8610
8615
  id?: number | undefined;
8611
8616
  }[] | undefined;
8612
8617
  required?: boolean | undefined;
@@ -8625,7 +8630,7 @@ declare function init(config: AuthHeroConfig): {
8625
8630
  hint?: string | undefined;
8626
8631
  messages?: {
8627
8632
  text: string;
8628
- type: "error" | "success" | "info" | "warning";
8633
+ type: "success" | "error" | "info" | "warning";
8629
8634
  id?: number | undefined;
8630
8635
  }[] | undefined;
8631
8636
  required?: boolean | undefined;
@@ -8645,7 +8650,7 @@ declare function init(config: AuthHeroConfig): {
8645
8650
  hint?: string | undefined;
8646
8651
  messages?: {
8647
8652
  text: string;
8648
- type: "error" | "success" | "info" | "warning";
8653
+ type: "success" | "error" | "info" | "warning";
8649
8654
  id?: number | undefined;
8650
8655
  }[] | undefined;
8651
8656
  required?: boolean | undefined;
@@ -8664,7 +8669,7 @@ declare function init(config: AuthHeroConfig): {
8664
8669
  hint?: string | undefined;
8665
8670
  messages?: {
8666
8671
  text: string;
8667
- type: "error" | "success" | "info" | "warning";
8672
+ type: "success" | "error" | "info" | "warning";
8668
8673
  id?: number | undefined;
8669
8674
  }[] | undefined;
8670
8675
  required?: boolean | undefined;
@@ -8686,7 +8691,7 @@ declare function init(config: AuthHeroConfig): {
8686
8691
  hint?: string | undefined;
8687
8692
  messages?: {
8688
8693
  text: string;
8689
- type: "error" | "success" | "info" | "warning";
8694
+ type: "success" | "error" | "info" | "warning";
8690
8695
  id?: number | undefined;
8691
8696
  }[] | undefined;
8692
8697
  required?: boolean | undefined;
@@ -8708,7 +8713,7 @@ declare function init(config: AuthHeroConfig): {
8708
8713
  hint?: string | undefined;
8709
8714
  messages?: {
8710
8715
  text: string;
8711
- type: "error" | "success" | "info" | "warning";
8716
+ type: "success" | "error" | "info" | "warning";
8712
8717
  id?: number | undefined;
8713
8718
  }[] | undefined;
8714
8719
  required?: boolean | undefined;
@@ -8727,7 +8732,7 @@ declare function init(config: AuthHeroConfig): {
8727
8732
  hint?: string | undefined;
8728
8733
  messages?: {
8729
8734
  text: string;
8730
- type: "error" | "success" | "info" | "warning";
8735
+ type: "success" | "error" | "info" | "warning";
8731
8736
  id?: number | undefined;
8732
8737
  }[] | undefined;
8733
8738
  required?: boolean | undefined;
@@ -8752,7 +8757,7 @@ declare function init(config: AuthHeroConfig): {
8752
8757
  hint?: string | undefined;
8753
8758
  messages?: {
8754
8759
  text: string;
8755
- type: "error" | "success" | "info" | "warning";
8760
+ type: "success" | "error" | "info" | "warning";
8756
8761
  id?: number | undefined;
8757
8762
  }[] | undefined;
8758
8763
  required?: boolean | undefined;
@@ -8773,7 +8778,7 @@ declare function init(config: AuthHeroConfig): {
8773
8778
  hint?: string | undefined;
8774
8779
  messages?: {
8775
8780
  text: string;
8776
- type: "error" | "success" | "info" | "warning";
8781
+ type: "success" | "error" | "info" | "warning";
8777
8782
  id?: number | undefined;
8778
8783
  }[] | undefined;
8779
8784
  required?: boolean | undefined;
@@ -8794,7 +8799,7 @@ declare function init(config: AuthHeroConfig): {
8794
8799
  hint?: string | undefined;
8795
8800
  messages?: {
8796
8801
  text: string;
8797
- type: "error" | "success" | "info" | "warning";
8802
+ type: "success" | "error" | "info" | "warning";
8798
8803
  id?: number | undefined;
8799
8804
  }[] | undefined;
8800
8805
  required?: boolean | undefined;
@@ -9024,7 +9029,7 @@ declare function init(config: AuthHeroConfig): {
9024
9029
  };
9025
9030
  };
9026
9031
  output: {
9027
- prompt: "status" | "mfa" | "organizations" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9032
+ prompt: "mfa" | "organizations" | "status" | "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";
9028
9033
  language: string;
9029
9034
  }[];
9030
9035
  outputFormat: "json";
@@ -9062,7 +9067,7 @@ declare function init(config: AuthHeroConfig): {
9062
9067
  $get: {
9063
9068
  input: {
9064
9069
  param: {
9065
- prompt: "status" | "mfa" | "organizations" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9070
+ prompt: "mfa" | "organizations" | "status" | "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";
9066
9071
  language: string;
9067
9072
  };
9068
9073
  } & {
@@ -9084,7 +9089,7 @@ declare function init(config: AuthHeroConfig): {
9084
9089
  $put: {
9085
9090
  input: {
9086
9091
  param: {
9087
- prompt: "status" | "mfa" | "organizations" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9092
+ prompt: "mfa" | "organizations" | "status" | "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";
9088
9093
  language: string;
9089
9094
  };
9090
9095
  } & {
@@ -9108,7 +9113,7 @@ declare function init(config: AuthHeroConfig): {
9108
9113
  $delete: {
9109
9114
  input: {
9110
9115
  param: {
9111
- prompt: "status" | "mfa" | "organizations" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9116
+ prompt: "mfa" | "organizations" | "status" | "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";
9112
9117
  language: string;
9113
9118
  };
9114
9119
  } & {
@@ -9970,7 +9975,7 @@ declare function init(config: AuthHeroConfig): {
9970
9975
  };
9971
9976
  } | {
9972
9977
  mode: "inline";
9973
- status: "error" | "success";
9978
+ status: "success" | "error";
9974
9979
  connection_id: string;
9975
9980
  connection_name: string;
9976
9981
  strategy: string;
@@ -10144,7 +10149,7 @@ declare function init(config: AuthHeroConfig): {
10144
10149
  };
10145
10150
  };
10146
10151
  output: ({
10147
- trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10152
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10148
10153
  enabled: boolean;
10149
10154
  synchronous: boolean;
10150
10155
  created_at: string;
@@ -10156,7 +10161,7 @@ declare function init(config: AuthHeroConfig): {
10156
10161
  [x: string]: hono_utils_types.JSONValue;
10157
10162
  } | undefined;
10158
10163
  } | {
10159
- trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10164
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10160
10165
  enabled: boolean;
10161
10166
  synchronous: boolean;
10162
10167
  created_at: string;
@@ -10168,7 +10173,7 @@ declare function init(config: AuthHeroConfig): {
10168
10173
  [x: string]: hono_utils_types.JSONValue;
10169
10174
  } | undefined;
10170
10175
  } | {
10171
- trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
10176
+ trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
10172
10177
  enabled: boolean;
10173
10178
  synchronous: boolean;
10174
10179
  created_at: string;
@@ -10180,7 +10185,7 @@ declare function init(config: AuthHeroConfig): {
10180
10185
  [x: string]: hono_utils_types.JSONValue;
10181
10186
  } | undefined;
10182
10187
  } | {
10183
- trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
10188
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
10184
10189
  enabled: boolean;
10185
10190
  synchronous: boolean;
10186
10191
  created_at: string;
@@ -10196,7 +10201,7 @@ declare function init(config: AuthHeroConfig): {
10196
10201
  limit: number;
10197
10202
  length: number;
10198
10203
  hooks: ({
10199
- trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10204
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10200
10205
  enabled: boolean;
10201
10206
  synchronous: boolean;
10202
10207
  created_at: string;
@@ -10208,7 +10213,7 @@ declare function init(config: AuthHeroConfig): {
10208
10213
  [x: string]: hono_utils_types.JSONValue;
10209
10214
  } | undefined;
10210
10215
  } | {
10211
- trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10216
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10212
10217
  enabled: boolean;
10213
10218
  synchronous: boolean;
10214
10219
  created_at: string;
@@ -10220,7 +10225,7 @@ declare function init(config: AuthHeroConfig): {
10220
10225
  [x: string]: hono_utils_types.JSONValue;
10221
10226
  } | undefined;
10222
10227
  } | {
10223
- trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
10228
+ trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
10224
10229
  enabled: boolean;
10225
10230
  synchronous: boolean;
10226
10231
  created_at: string;
@@ -10232,7 +10237,7 @@ declare function init(config: AuthHeroConfig): {
10232
10237
  [x: string]: hono_utils_types.JSONValue;
10233
10238
  } | undefined;
10234
10239
  } | {
10235
- trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
10240
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
10236
10241
  enabled: boolean;
10237
10242
  synchronous: boolean;
10238
10243
  created_at: string;
@@ -10259,7 +10264,7 @@ declare function init(config: AuthHeroConfig): {
10259
10264
  };
10260
10265
  } & {
10261
10266
  json: {
10262
- trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10267
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10263
10268
  url: string;
10264
10269
  enabled?: boolean | undefined;
10265
10270
  synchronous?: boolean | undefined;
@@ -10267,7 +10272,7 @@ declare function init(config: AuthHeroConfig): {
10267
10272
  hook_id?: string | undefined;
10268
10273
  metadata?: Record<string, unknown> | undefined;
10269
10274
  } | {
10270
- trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10275
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10271
10276
  form_id: string;
10272
10277
  enabled?: boolean | undefined;
10273
10278
  synchronous?: boolean | undefined;
@@ -10275,7 +10280,7 @@ declare function init(config: AuthHeroConfig): {
10275
10280
  hook_id?: string | undefined;
10276
10281
  metadata?: Record<string, unknown> | undefined;
10277
10282
  } | {
10278
- trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
10283
+ trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
10279
10284
  template_id: "ensure-username" | "set-preferred-username" | "account-linking";
10280
10285
  enabled?: boolean | undefined;
10281
10286
  synchronous?: boolean | undefined;
@@ -10283,7 +10288,7 @@ declare function init(config: AuthHeroConfig): {
10283
10288
  hook_id?: string | undefined;
10284
10289
  metadata?: Record<string, unknown> | undefined;
10285
10290
  } | {
10286
- trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
10291
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
10287
10292
  code_id: string;
10288
10293
  enabled?: boolean | undefined;
10289
10294
  synchronous?: boolean | undefined;
@@ -10293,7 +10298,7 @@ declare function init(config: AuthHeroConfig): {
10293
10298
  };
10294
10299
  };
10295
10300
  output: {
10296
- trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10301
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10297
10302
  enabled: boolean;
10298
10303
  synchronous: boolean;
10299
10304
  created_at: string;
@@ -10305,7 +10310,7 @@ declare function init(config: AuthHeroConfig): {
10305
10310
  [x: string]: hono_utils_types.JSONValue;
10306
10311
  } | undefined;
10307
10312
  } | {
10308
- trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10313
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10309
10314
  enabled: boolean;
10310
10315
  synchronous: boolean;
10311
10316
  created_at: string;
@@ -10317,7 +10322,7 @@ declare function init(config: AuthHeroConfig): {
10317
10322
  [x: string]: hono_utils_types.JSONValue;
10318
10323
  } | undefined;
10319
10324
  } | {
10320
- trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
10325
+ trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
10321
10326
  enabled: boolean;
10322
10327
  synchronous: boolean;
10323
10328
  created_at: string;
@@ -10329,7 +10334,7 @@ declare function init(config: AuthHeroConfig): {
10329
10334
  [x: string]: hono_utils_types.JSONValue;
10330
10335
  } | undefined;
10331
10336
  } | {
10332
- trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
10337
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
10333
10338
  enabled: boolean;
10334
10339
  synchronous: boolean;
10335
10340
  created_at: string;
@@ -10375,7 +10380,7 @@ declare function init(config: AuthHeroConfig): {
10375
10380
  json: unknown;
10376
10381
  };
10377
10382
  output: {
10378
- trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10383
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10379
10384
  enabled: boolean;
10380
10385
  synchronous: boolean;
10381
10386
  created_at: string;
@@ -10387,7 +10392,7 @@ declare function init(config: AuthHeroConfig): {
10387
10392
  [x: string]: hono_utils_types.JSONValue;
10388
10393
  } | undefined;
10389
10394
  } | {
10390
- trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10395
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10391
10396
  enabled: boolean;
10392
10397
  synchronous: boolean;
10393
10398
  created_at: string;
@@ -10399,7 +10404,7 @@ declare function init(config: AuthHeroConfig): {
10399
10404
  [x: string]: hono_utils_types.JSONValue;
10400
10405
  } | undefined;
10401
10406
  } | {
10402
- trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
10407
+ trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
10403
10408
  enabled: boolean;
10404
10409
  synchronous: boolean;
10405
10410
  created_at: string;
@@ -10411,7 +10416,7 @@ declare function init(config: AuthHeroConfig): {
10411
10416
  [x: string]: hono_utils_types.JSONValue;
10412
10417
  } | undefined;
10413
10418
  } | {
10414
- trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
10419
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
10415
10420
  enabled: boolean;
10416
10421
  synchronous: boolean;
10417
10422
  created_at: string;
@@ -10453,7 +10458,7 @@ declare function init(config: AuthHeroConfig): {
10453
10458
  };
10454
10459
  };
10455
10460
  output: {
10456
- trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10461
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10457
10462
  enabled: boolean;
10458
10463
  synchronous: boolean;
10459
10464
  created_at: string;
@@ -10465,7 +10470,7 @@ declare function init(config: AuthHeroConfig): {
10465
10470
  [x: string]: hono_utils_types.JSONValue;
10466
10471
  } | undefined;
10467
10472
  } | {
10468
- trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10473
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
10469
10474
  enabled: boolean;
10470
10475
  synchronous: boolean;
10471
10476
  created_at: string;
@@ -10477,7 +10482,7 @@ declare function init(config: AuthHeroConfig): {
10477
10482
  [x: string]: hono_utils_types.JSONValue;
10478
10483
  } | undefined;
10479
10484
  } | {
10480
- trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
10485
+ trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
10481
10486
  enabled: boolean;
10482
10487
  synchronous: boolean;
10483
10488
  created_at: string;
@@ -10489,7 +10494,7 @@ declare function init(config: AuthHeroConfig): {
10489
10494
  [x: string]: hono_utils_types.JSONValue;
10490
10495
  } | undefined;
10491
10496
  } | {
10492
- trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
10497
+ trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
10493
10498
  enabled: boolean;
10494
10499
  synchronous: boolean;
10495
10500
  created_at: string;
@@ -11197,7 +11202,7 @@ declare function init(config: AuthHeroConfig): {
11197
11202
  };
11198
11203
  };
11199
11204
  output: {
11200
- type: "fc" | "fd" | "fn" | "i" | "fh" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11205
+ type: "fn" | "i" | "feacft" | "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" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11201
11206
  date: string;
11202
11207
  isMobile: boolean;
11203
11208
  log_id: string;
@@ -11236,7 +11241,7 @@ declare function init(config: AuthHeroConfig): {
11236
11241
  limit: number;
11237
11242
  length: number;
11238
11243
  logs: {
11239
- type: "fc" | "fd" | "fn" | "i" | "fh" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11244
+ type: "fn" | "i" | "feacft" | "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" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11240
11245
  date: string;
11241
11246
  isMobile: boolean;
11242
11247
  log_id: string;
@@ -11290,7 +11295,7 @@ declare function init(config: AuthHeroConfig): {
11290
11295
  };
11291
11296
  };
11292
11297
  output: {
11293
- type: "fc" | "fd" | "fn" | "i" | "fh" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11298
+ type: "fn" | "i" | "feacft" | "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" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11294
11299
  date: string;
11295
11300
  isMobile: boolean;
11296
11301
  log_id: string;
@@ -11604,7 +11609,7 @@ declare function init(config: AuthHeroConfig): {
11604
11609
  addons?: {
11605
11610
  [x: string]: any;
11606
11611
  } | undefined;
11607
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
11612
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
11608
11613
  client_metadata?: {
11609
11614
  [x: string]: string;
11610
11615
  } | undefined;
@@ -11700,7 +11705,7 @@ declare function init(config: AuthHeroConfig): {
11700
11705
  addons?: {
11701
11706
  [x: string]: any;
11702
11707
  } | undefined;
11703
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
11708
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
11704
11709
  client_metadata?: {
11705
11710
  [x: string]: string;
11706
11711
  } | undefined;
@@ -11811,7 +11816,7 @@ declare function init(config: AuthHeroConfig): {
11811
11816
  addons?: {
11812
11817
  [x: string]: any;
11813
11818
  } | undefined;
11814
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
11819
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
11815
11820
  client_metadata?: {
11816
11821
  [x: string]: string;
11817
11822
  } | undefined;
@@ -11921,7 +11926,7 @@ declare function init(config: AuthHeroConfig): {
11921
11926
  custom_login_page_preview?: string | undefined;
11922
11927
  form_template?: string | undefined;
11923
11928
  addons?: Record<string, any> | undefined;
11924
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
11929
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
11925
11930
  client_metadata?: Record<string, string> | undefined;
11926
11931
  hide_sign_up_disabled_error?: boolean | undefined;
11927
11932
  mobile?: Record<string, any> | undefined;
@@ -12001,7 +12006,7 @@ declare function init(config: AuthHeroConfig): {
12001
12006
  addons?: {
12002
12007
  [x: string]: any;
12003
12008
  } | undefined;
12004
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12009
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12005
12010
  client_metadata?: {
12006
12011
  [x: string]: string;
12007
12012
  } | undefined;
@@ -12090,7 +12095,7 @@ declare function init(config: AuthHeroConfig): {
12090
12095
  custom_login_page_preview?: string | undefined;
12091
12096
  form_template?: string | undefined;
12092
12097
  addons?: Record<string, any> | undefined;
12093
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12098
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12094
12099
  client_metadata?: Record<string, string> | undefined;
12095
12100
  hide_sign_up_disabled_error?: boolean | undefined;
12096
12101
  mobile?: Record<string, any> | undefined;
@@ -12170,7 +12175,7 @@ declare function init(config: AuthHeroConfig): {
12170
12175
  addons?: {
12171
12176
  [x: string]: any;
12172
12177
  } | undefined;
12173
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12178
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12174
12179
  client_metadata?: {
12175
12180
  [x: string]: string;
12176
12181
  } | undefined;
@@ -13434,7 +13439,7 @@ declare function init(config: AuthHeroConfig): {
13434
13439
  };
13435
13440
  };
13436
13441
  output: {
13437
- type: "fc" | "fd" | "fn" | "i" | "fh" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
13442
+ type: "fn" | "i" | "feacft" | "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" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
13438
13443
  date: string;
13439
13444
  isMobile: boolean;
13440
13445
  log_id: string;
@@ -13473,7 +13478,7 @@ declare function init(config: AuthHeroConfig): {
13473
13478
  limit: number;
13474
13479
  length: number;
13475
13480
  logs: {
13476
- type: "fc" | "fd" | "fn" | "i" | "fh" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
13481
+ type: "fn" | "i" | "feacft" | "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" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
13477
13482
  date: string;
13478
13483
  isMobile: boolean;
13479
13484
  log_id: string;
@@ -13788,7 +13793,7 @@ declare function init(config: AuthHeroConfig): {
13788
13793
  };
13789
13794
  } & {
13790
13795
  json: {
13791
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13796
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13792
13797
  body: string;
13793
13798
  from: string;
13794
13799
  subject: string;
@@ -13809,7 +13814,7 @@ declare function init(config: AuthHeroConfig): {
13809
13814
  };
13810
13815
  } & {
13811
13816
  json: {
13812
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13817
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13813
13818
  body: string;
13814
13819
  from: string;
13815
13820
  subject: string;
@@ -13821,7 +13826,7 @@ declare function init(config: AuthHeroConfig): {
13821
13826
  };
13822
13827
  };
13823
13828
  output: {
13824
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13829
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13825
13830
  body: string;
13826
13831
  from: string;
13827
13832
  subject: string;
@@ -13840,7 +13845,7 @@ declare function init(config: AuthHeroConfig): {
13840
13845
  $get: {
13841
13846
  input: {
13842
13847
  param: {
13843
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13848
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13844
13849
  };
13845
13850
  } & {
13846
13851
  header: {
@@ -13853,7 +13858,7 @@ declare function init(config: AuthHeroConfig): {
13853
13858
  } | {
13854
13859
  input: {
13855
13860
  param: {
13856
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13861
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13857
13862
  };
13858
13863
  } & {
13859
13864
  header: {
@@ -13861,7 +13866,7 @@ declare function init(config: AuthHeroConfig): {
13861
13866
  };
13862
13867
  };
13863
13868
  output: {
13864
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13869
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13865
13870
  body: string;
13866
13871
  from: string;
13867
13872
  subject: string;
@@ -13880,7 +13885,7 @@ declare function init(config: AuthHeroConfig): {
13880
13885
  $put: {
13881
13886
  input: {
13882
13887
  param: {
13883
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13888
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13884
13889
  };
13885
13890
  } & {
13886
13891
  header: {
@@ -13888,7 +13893,7 @@ declare function init(config: AuthHeroConfig): {
13888
13893
  };
13889
13894
  } & {
13890
13895
  json: {
13891
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13896
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13892
13897
  body: string;
13893
13898
  from: string;
13894
13899
  subject: string;
@@ -13900,7 +13905,7 @@ declare function init(config: AuthHeroConfig): {
13900
13905
  };
13901
13906
  };
13902
13907
  output: {
13903
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13908
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13904
13909
  body: string;
13905
13910
  from: string;
13906
13911
  subject: string;
@@ -13919,7 +13924,7 @@ declare function init(config: AuthHeroConfig): {
13919
13924
  $patch: {
13920
13925
  input: {
13921
13926
  param: {
13922
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13927
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13923
13928
  };
13924
13929
  } & {
13925
13930
  header: {
@@ -13927,7 +13932,7 @@ declare function init(config: AuthHeroConfig): {
13927
13932
  };
13928
13933
  } & {
13929
13934
  json: {
13930
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
13935
+ template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
13931
13936
  body?: string | undefined;
13932
13937
  from?: string | undefined;
13933
13938
  subject?: string | undefined;
@@ -13944,7 +13949,7 @@ declare function init(config: AuthHeroConfig): {
13944
13949
  } | {
13945
13950
  input: {
13946
13951
  param: {
13947
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13952
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13948
13953
  };
13949
13954
  } & {
13950
13955
  header: {
@@ -13952,7 +13957,7 @@ declare function init(config: AuthHeroConfig): {
13952
13957
  };
13953
13958
  } & {
13954
13959
  json: {
13955
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
13960
+ template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
13956
13961
  body?: string | undefined;
13957
13962
  from?: string | undefined;
13958
13963
  subject?: string | undefined;
@@ -13964,7 +13969,7 @@ declare function init(config: AuthHeroConfig): {
13964
13969
  };
13965
13970
  };
13966
13971
  output: {
13967
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13972
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13968
13973
  body: string;
13969
13974
  from: string;
13970
13975
  subject: string;
@@ -14239,7 +14244,7 @@ declare function init(config: AuthHeroConfig): {
14239
14244
  type: "auth0_managed_certs" | "self_managed_certs";
14240
14245
  custom_domain_id: string;
14241
14246
  primary: boolean;
14242
- status: "disabled" | "pending" | "pending_verification" | "ready";
14247
+ status: "pending" | "disabled" | "pending_verification" | "ready";
14243
14248
  verification_method?: "txt" | undefined;
14244
14249
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14245
14250
  domain_metadata?: {
@@ -14280,7 +14285,7 @@ declare function init(config: AuthHeroConfig): {
14280
14285
  type: "auth0_managed_certs" | "self_managed_certs";
14281
14286
  custom_domain_id: string;
14282
14287
  primary: boolean;
14283
- status: "disabled" | "pending" | "pending_verification" | "ready";
14288
+ status: "pending" | "disabled" | "pending_verification" | "ready";
14284
14289
  verification_method?: "txt" | undefined;
14285
14290
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14286
14291
  domain_metadata?: {
@@ -14341,7 +14346,7 @@ declare function init(config: AuthHeroConfig): {
14341
14346
  domain_metadata?: Record<string, string> | undefined;
14342
14347
  custom_domain_id?: string | undefined;
14343
14348
  primary?: boolean | undefined;
14344
- status?: "disabled" | "pending" | "pending_verification" | "ready" | undefined;
14349
+ status?: "pending" | "disabled" | "pending_verification" | "ready" | undefined;
14345
14350
  origin_domain_name?: string | undefined;
14346
14351
  verification?: {
14347
14352
  methods: ({
@@ -14362,7 +14367,7 @@ declare function init(config: AuthHeroConfig): {
14362
14367
  type: "auth0_managed_certs" | "self_managed_certs";
14363
14368
  custom_domain_id: string;
14364
14369
  primary: boolean;
14365
- status: "disabled" | "pending" | "pending_verification" | "ready";
14370
+ status: "pending" | "disabled" | "pending_verification" | "ready";
14366
14371
  verification_method?: "txt" | undefined;
14367
14372
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14368
14373
  domain_metadata?: {
@@ -14409,7 +14414,7 @@ declare function init(config: AuthHeroConfig): {
14409
14414
  type: "auth0_managed_certs" | "self_managed_certs";
14410
14415
  custom_domain_id: string;
14411
14416
  primary: boolean;
14412
- status: "disabled" | "pending" | "pending_verification" | "ready";
14417
+ status: "pending" | "disabled" | "pending_verification" | "ready";
14413
14418
  verification_method?: "txt" | undefined;
14414
14419
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14415
14420
  domain_metadata?: {
@@ -14450,7 +14455,7 @@ declare function init(config: AuthHeroConfig): {
14450
14455
  type: "auth0_managed_certs" | "self_managed_certs";
14451
14456
  custom_domain_id: string;
14452
14457
  primary: boolean;
14453
- status: "disabled" | "pending" | "pending_verification" | "ready";
14458
+ status: "pending" | "disabled" | "pending_verification" | "ready";
14454
14459
  verification_method?: "txt" | undefined;
14455
14460
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14456
14461
  domain_metadata?: {
@@ -15010,7 +15015,7 @@ declare function init(config: AuthHeroConfig): {
15010
15015
  output: {
15011
15016
  id: string;
15012
15017
  trigger_id: string;
15013
- status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
15018
+ status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
15014
15019
  results: {
15015
15020
  action_name: string;
15016
15021
  error: {
@@ -16022,7 +16027,7 @@ declare function init(config: AuthHeroConfig): {
16022
16027
  scope?: string | undefined;
16023
16028
  grant_types?: string[] | undefined;
16024
16029
  response_types?: string[] | undefined;
16025
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
16030
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16026
16031
  jwks_uri?: string | undefined;
16027
16032
  jwks?: Record<string, unknown> | undefined;
16028
16033
  software_id?: string | undefined;
@@ -16111,7 +16116,7 @@ declare function init(config: AuthHeroConfig): {
16111
16116
  scope?: string | undefined;
16112
16117
  grant_types?: string[] | undefined;
16113
16118
  response_types?: string[] | undefined;
16114
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
16119
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16115
16120
  jwks_uri?: string | undefined;
16116
16121
  jwks?: Record<string, unknown> | undefined;
16117
16122
  software_id?: string | undefined;
@@ -16457,19 +16462,19 @@ declare function init(config: AuthHeroConfig): {
16457
16462
  email: string;
16458
16463
  send: "code" | "link";
16459
16464
  authParams: {
16460
- audience?: string | undefined;
16465
+ act_as?: string | undefined;
16461
16466
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16462
16467
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16463
- scope?: string | undefined;
16464
- username?: string | undefined;
16465
- state?: string | undefined;
16466
- act_as?: string | undefined;
16467
16468
  redirect_uri?: string | undefined;
16469
+ audience?: string | undefined;
16468
16470
  organization?: string | undefined;
16471
+ state?: string | undefined;
16469
16472
  nonce?: string | undefined;
16473
+ scope?: string | undefined;
16470
16474
  prompt?: string | undefined;
16471
16475
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16472
16476
  code_challenge?: string | undefined;
16477
+ username?: string | undefined;
16473
16478
  ui_locales?: string | undefined;
16474
16479
  max_age?: number | undefined;
16475
16480
  acr_values?: string | undefined;
@@ -16493,19 +16498,19 @@ declare function init(config: AuthHeroConfig): {
16493
16498
  phone_number: string;
16494
16499
  send: "code" | "link";
16495
16500
  authParams: {
16496
- audience?: string | undefined;
16501
+ act_as?: string | undefined;
16497
16502
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16498
16503
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16499
- scope?: string | undefined;
16500
- username?: string | undefined;
16501
- state?: string | undefined;
16502
- act_as?: string | undefined;
16503
16504
  redirect_uri?: string | undefined;
16505
+ audience?: string | undefined;
16504
16506
  organization?: string | undefined;
16507
+ state?: string | undefined;
16505
16508
  nonce?: string | undefined;
16509
+ scope?: string | undefined;
16506
16510
  prompt?: string | undefined;
16507
16511
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16508
16512
  code_challenge?: string | undefined;
16513
+ username?: string | undefined;
16509
16514
  ui_locales?: string | undefined;
16510
16515
  max_age?: number | undefined;
16511
16516
  acr_values?: string | undefined;
@@ -16735,7 +16740,7 @@ declare function init(config: AuthHeroConfig): {
16735
16740
  client_id: string;
16736
16741
  username: string;
16737
16742
  otp: string;
16738
- realm: "sms" | "email";
16743
+ realm: "email" | "sms";
16739
16744
  };
16740
16745
  } & {
16741
16746
  json: {
@@ -16771,7 +16776,7 @@ declare function init(config: AuthHeroConfig): {
16771
16776
  client_id: string;
16772
16777
  username: string;
16773
16778
  otp: string;
16774
- realm: "sms" | "email";
16779
+ realm: "email" | "sms";
16775
16780
  };
16776
16781
  };
16777
16782
  output: {};
@@ -16812,7 +16817,7 @@ declare function init(config: AuthHeroConfig): {
16812
16817
  client_id: string;
16813
16818
  username: string;
16814
16819
  otp: string;
16815
- realm: "sms" | "email";
16820
+ realm: "email" | "sms";
16816
16821
  };
16817
16822
  } & {
16818
16823
  json: {
@@ -16848,7 +16853,7 @@ declare function init(config: AuthHeroConfig): {
16848
16853
  client_id: string;
16849
16854
  username: string;
16850
16855
  otp: string;
16851
- realm: "sms" | "email";
16856
+ realm: "email" | "sms";
16852
16857
  };
16853
16858
  };
16854
16859
  output: {
@@ -16897,7 +16902,7 @@ declare function init(config: AuthHeroConfig): {
16897
16902
  client_id: string;
16898
16903
  username: string;
16899
16904
  otp: string;
16900
- realm: "sms" | "email";
16905
+ realm: "email" | "sms";
16901
16906
  };
16902
16907
  } & {
16903
16908
  json: {
@@ -16933,7 +16938,7 @@ declare function init(config: AuthHeroConfig): {
16933
16938
  client_id: string;
16934
16939
  username: string;
16935
16940
  otp: string;
16936
- realm: "sms" | "email";
16941
+ realm: "email" | "sms";
16937
16942
  };
16938
16943
  };
16939
16944
  output: {
@@ -16977,7 +16982,7 @@ declare function init(config: AuthHeroConfig): {
16977
16982
  client_id: string;
16978
16983
  username: string;
16979
16984
  otp: string;
16980
- realm: "sms" | "email";
16985
+ realm: "email" | "sms";
16981
16986
  };
16982
16987
  } & {
16983
16988
  json: {
@@ -17013,7 +17018,7 @@ declare function init(config: AuthHeroConfig): {
17013
17018
  client_id: string;
17014
17019
  username: string;
17015
17020
  otp: string;
17016
- realm: "sms" | "email";
17021
+ realm: "email" | "sms";
17017
17022
  };
17018
17023
  };
17019
17024
  output: {
@@ -17057,7 +17062,7 @@ declare function init(config: AuthHeroConfig): {
17057
17062
  client_id: string;
17058
17063
  username: string;
17059
17064
  otp: string;
17060
- realm: "sms" | "email";
17065
+ realm: "email" | "sms";
17061
17066
  };
17062
17067
  } & {
17063
17068
  json: {
@@ -17093,7 +17098,7 @@ declare function init(config: AuthHeroConfig): {
17093
17098
  client_id: string;
17094
17099
  username: string;
17095
17100
  otp: string;
17096
- realm: "sms" | "email";
17101
+ realm: "email" | "sms";
17097
17102
  };
17098
17103
  };
17099
17104
  output: {
@@ -17112,7 +17117,7 @@ declare function init(config: AuthHeroConfig): {
17112
17117
  keys: {
17113
17118
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
17114
17119
  kid: string;
17115
- kty: "EC" | "RSA" | "oct";
17120
+ kty: "RSA" | "EC" | "oct";
17116
17121
  use?: "sig" | "enc" | undefined;
17117
17122
  n?: string | undefined;
17118
17123
  e?: string | undefined;
@@ -18158,6 +18163,22 @@ declare function init(config: AuthHeroConfig): {
18158
18163
  Bindings: Bindings;
18159
18164
  Variables: Variables;
18160
18165
  }, hono_types.MergeSchemaPath<{
18166
+ "/info": {
18167
+ $get: {
18168
+ input: {
18169
+ query: {
18170
+ state?: string | undefined;
18171
+ code?: string | undefined;
18172
+ error?: string | undefined;
18173
+ error_description?: string | undefined;
18174
+ };
18175
+ };
18176
+ output: Response;
18177
+ outputFormat: "json";
18178
+ status: hono_utils_http_status.StatusCode;
18179
+ };
18180
+ };
18181
+ } & {
18161
18182
  "/guardian/enroll": {
18162
18183
  $get: {
18163
18184
  input: {
@@ -18286,7 +18307,7 @@ declare function init(config: AuthHeroConfig): {
18286
18307
  $get: {
18287
18308
  input: {
18288
18309
  param: {
18289
- screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18310
+ screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18290
18311
  };
18291
18312
  } & {
18292
18313
  query: {
@@ -18302,7 +18323,7 @@ declare function init(config: AuthHeroConfig): {
18302
18323
  } | {
18303
18324
  input: {
18304
18325
  param: {
18305
- screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18326
+ screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18306
18327
  };
18307
18328
  } & {
18308
18329
  query: {
@@ -18318,7 +18339,7 @@ declare function init(config: AuthHeroConfig): {
18318
18339
  } | {
18319
18340
  input: {
18320
18341
  param: {
18321
- screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18342
+ screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18322
18343
  };
18323
18344
  } & {
18324
18345
  query: {
@@ -18338,7 +18359,7 @@ declare function init(config: AuthHeroConfig): {
18338
18359
  $post: {
18339
18360
  input: {
18340
18361
  param: {
18341
- screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18362
+ screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18342
18363
  };
18343
18364
  } & {
18344
18365
  query: {
@@ -18356,7 +18377,7 @@ declare function init(config: AuthHeroConfig): {
18356
18377
  } | {
18357
18378
  input: {
18358
18379
  param: {
18359
- screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18380
+ screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18360
18381
  };
18361
18382
  } & {
18362
18383
  query: {
@@ -18374,7 +18395,7 @@ declare function init(config: AuthHeroConfig): {
18374
18395
  } | {
18375
18396
  input: {
18376
18397
  param: {
18377
- screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18398
+ screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18378
18399
  };
18379
18400
  } & {
18380
18401
  query: {