authhero 5.12.0 → 5.13.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 (38) hide show
  1. package/dist/authhero.cjs +129 -129
  2. package/dist/authhero.d.ts +244 -208
  3. package/dist/authhero.mjs +9954 -9757
  4. package/dist/stats.html +1 -1
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/adapters/createEncryptedDataAdapter.d.ts +14 -0
  7. package/dist/types/adapters/index.d.ts +2 -0
  8. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  9. package/dist/types/helpers/custom-domain.d.ts +8 -0
  10. package/dist/types/index.d.ts +207 -207
  11. package/dist/types/routes/auth-api/index.d.ts +12 -12
  12. package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
  13. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  14. package/dist/types/routes/management-api/action-executions.d.ts +2 -2
  15. package/dist/types/routes/management-api/actions.d.ts +1 -1
  16. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  17. package/dist/types/routes/management-api/client-grants.d.ts +8 -8
  18. package/dist/types/routes/management-api/clients.d.ts +6 -6
  19. package/dist/types/routes/management-api/connections.d.ts +16 -16
  20. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  21. package/dist/types/routes/management-api/email-templates.d.ts +14 -14
  22. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  23. package/dist/types/routes/management-api/forms.d.ts +119 -119
  24. package/dist/types/routes/management-api/index.d.ts +190 -190
  25. package/dist/types/routes/management-api/logs.d.ts +3 -3
  26. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  27. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  28. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  29. package/dist/types/routes/management-api/users.d.ts +2 -2
  30. package/dist/types/routes/universal-login/common.d.ts +6 -6
  31. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  32. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  33. package/dist/types/routes/universal-login/index.d.ts +2 -2
  34. package/dist/types/routes/universal-login/u2-index.d.ts +3 -3
  35. package/dist/types/routes/universal-login/u2-routes.d.ts +3 -3
  36. package/dist/types/types/Bindings.d.ts +1 -0
  37. package/dist/types/utils/field-encryption.d.ts +21 -0
  38. package/package.json +3 -3
@@ -1240,6 +1240,7 @@ type Bindings = {
1240
1240
  ISSUER: string;
1241
1241
  UNIVERSAL_LOGIN_URL?: string;
1242
1242
  OAUTH_API_URL?: string;
1243
+ ENCRYPTION_KEY?: string;
1243
1244
  data: DataAdapters;
1244
1245
  hooks?: Hooks;
1245
1246
  /**
@@ -1620,6 +1621,41 @@ interface InMemoryCacheConfig {
1620
1621
  */
1621
1622
  declare function createInMemoryCache(config?: InMemoryCacheConfig): CacheAdapter;
1622
1623
 
1624
+ /**
1625
+ * Wraps a DataAdapters instance so that sensitive credential fields are
1626
+ * transparently encrypted on write and decrypted on read. Only the adapters
1627
+ * that hold secrets are wrapped; everything else passes through unchanged.
1628
+ *
1629
+ * Encrypted columns: clients.client_secret, connections.options
1630
+ * (client_secret/app_secret/twilio_token/configuration.client_secret),
1631
+ * email_providers.credentials, authentication_methods.totp_secret,
1632
+ * migration_sources.credentials.client_secret.
1633
+ *
1634
+ * Private keys (keys.pkcs7, dkim_private_key) are intentionally NOT covered.
1635
+ */
1636
+ declare function createEncryptedDataAdapter(data: DataAdapters, key: CryptoKey): DataAdapters;
1637
+
1638
+ declare const PREFIX = "enc:v1:";
1639
+ type EncryptedField = `${typeof PREFIX}${string}`;
1640
+ declare function isEncrypted(value: string): value is EncryptedField;
1641
+ /**
1642
+ * Imports a base64-encoded 32-byte key as an AES-256-GCM CryptoKey. Throws if
1643
+ * the decoded key is not exactly 32 bytes so a misconfigured secret fails loudly
1644
+ * at boot rather than silently weakening encryption.
1645
+ */
1646
+ declare function loadEncryptionKey(b64: string): Promise<CryptoKey>;
1647
+ /**
1648
+ * Encrypts a string with AES-256-GCM using a fresh random IV. The output is
1649
+ * `enc:v1:<base64url(iv ‖ ciphertext ‖ tag)>`.
1650
+ */
1651
+ declare function encryptField(plaintext: string, key: CryptoKey): Promise<EncryptedField>;
1652
+ /**
1653
+ * Decrypts a value produced by `encryptField`. Values without the `enc:v1:`
1654
+ * prefix are assumed to be legacy plaintext and returned unchanged. Throws if a
1655
+ * prefixed value cannot be decrypted (wrong key or corrupted ciphertext).
1656
+ */
1657
+ declare function decryptField(value: string, key: CryptoKey): Promise<string>;
1658
+
1623
1659
  declare const mailgunCredentialsSchema: z.ZodObject<{
1624
1660
  api_key: z.ZodString;
1625
1661
  domain: z.ZodString;
@@ -2423,7 +2459,7 @@ declare function init(config: AuthHeroConfig): {
2423
2459
  };
2424
2460
  } & {
2425
2461
  json: {
2426
- type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2462
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2427
2463
  phone_number?: string | undefined;
2428
2464
  totp_secret?: string | undefined;
2429
2465
  credential_id?: string | undefined;
@@ -3497,10 +3533,10 @@ declare function init(config: AuthHeroConfig): {
3497
3533
  email?: string | undefined;
3498
3534
  };
3499
3535
  id?: string | undefined;
3536
+ connection_id?: string | undefined;
3500
3537
  app_metadata?: Record<string, any> | undefined;
3501
3538
  user_metadata?: Record<string, any> | undefined;
3502
3539
  roles?: string[] | undefined;
3503
- connection_id?: string | undefined;
3504
3540
  ttl_sec?: number | undefined;
3505
3541
  send_invitation_email?: boolean | undefined;
3506
3542
  };
@@ -4927,7 +4963,7 @@ declare function init(config: AuthHeroConfig): {
4927
4963
  hint?: string | undefined;
4928
4964
  messages?: {
4929
4965
  text: string;
4930
- type: "success" | "error" | "info" | "warning";
4966
+ type: "error" | "success" | "info" | "warning";
4931
4967
  id?: number | undefined;
4932
4968
  }[] | undefined;
4933
4969
  required?: boolean | undefined;
@@ -4945,7 +4981,7 @@ declare function init(config: AuthHeroConfig): {
4945
4981
  hint?: string | undefined;
4946
4982
  messages?: {
4947
4983
  text: string;
4948
- type: "success" | "error" | "info" | "warning";
4984
+ type: "error" | "success" | "info" | "warning";
4949
4985
  id?: number | undefined;
4950
4986
  }[] | undefined;
4951
4987
  required?: boolean | undefined;
@@ -4969,7 +5005,7 @@ declare function init(config: AuthHeroConfig): {
4969
5005
  hint?: string | undefined;
4970
5006
  messages?: {
4971
5007
  text: string;
4972
- type: "success" | "error" | "info" | "warning";
5008
+ type: "error" | "success" | "info" | "warning";
4973
5009
  id?: number | undefined;
4974
5010
  }[] | undefined;
4975
5011
  required?: boolean | undefined;
@@ -4993,7 +5029,7 @@ declare function init(config: AuthHeroConfig): {
4993
5029
  hint?: string | undefined;
4994
5030
  messages?: {
4995
5031
  text: string;
4996
- type: "success" | "error" | "info" | "warning";
5032
+ type: "error" | "success" | "info" | "warning";
4997
5033
  id?: number | undefined;
4998
5034
  }[] | undefined;
4999
5035
  required?: boolean | undefined;
@@ -5022,7 +5058,7 @@ declare function init(config: AuthHeroConfig): {
5022
5058
  hint?: string | undefined;
5023
5059
  messages?: {
5024
5060
  text: string;
5025
- type: "success" | "error" | "info" | "warning";
5061
+ type: "error" | "success" | "info" | "warning";
5026
5062
  id?: number | undefined;
5027
5063
  }[] | undefined;
5028
5064
  required?: boolean | undefined;
@@ -5037,7 +5073,7 @@ declare function init(config: AuthHeroConfig): {
5037
5073
  hint?: string | undefined;
5038
5074
  messages?: {
5039
5075
  text: string;
5040
- type: "success" | "error" | "info" | "warning";
5076
+ type: "error" | "success" | "info" | "warning";
5041
5077
  id?: number | undefined;
5042
5078
  }[] | undefined;
5043
5079
  required?: boolean | undefined;
@@ -5058,7 +5094,7 @@ declare function init(config: AuthHeroConfig): {
5058
5094
  hint?: string | undefined;
5059
5095
  messages?: {
5060
5096
  text: string;
5061
- type: "success" | "error" | "info" | "warning";
5097
+ type: "error" | "success" | "info" | "warning";
5062
5098
  id?: number | undefined;
5063
5099
  }[] | undefined;
5064
5100
  required?: boolean | undefined;
@@ -5083,7 +5119,7 @@ declare function init(config: AuthHeroConfig): {
5083
5119
  hint?: string | undefined;
5084
5120
  messages?: {
5085
5121
  text: string;
5086
- type: "success" | "error" | "info" | "warning";
5122
+ type: "error" | "success" | "info" | "warning";
5087
5123
  id?: number | undefined;
5088
5124
  }[] | undefined;
5089
5125
  required?: boolean | undefined;
@@ -5102,7 +5138,7 @@ declare function init(config: AuthHeroConfig): {
5102
5138
  hint?: string | undefined;
5103
5139
  messages?: {
5104
5140
  text: string;
5105
- type: "success" | "error" | "info" | "warning";
5141
+ type: "error" | "success" | "info" | "warning";
5106
5142
  id?: number | undefined;
5107
5143
  }[] | undefined;
5108
5144
  required?: boolean | undefined;
@@ -5122,7 +5158,7 @@ declare function init(config: AuthHeroConfig): {
5122
5158
  hint?: string | undefined;
5123
5159
  messages?: {
5124
5160
  text: string;
5125
- type: "success" | "error" | "info" | "warning";
5161
+ type: "error" | "success" | "info" | "warning";
5126
5162
  id?: number | undefined;
5127
5163
  }[] | undefined;
5128
5164
  required?: boolean | undefined;
@@ -5141,7 +5177,7 @@ declare function init(config: AuthHeroConfig): {
5141
5177
  hint?: string | undefined;
5142
5178
  messages?: {
5143
5179
  text: string;
5144
- type: "success" | "error" | "info" | "warning";
5180
+ type: "error" | "success" | "info" | "warning";
5145
5181
  id?: number | undefined;
5146
5182
  }[] | undefined;
5147
5183
  required?: boolean | undefined;
@@ -5163,7 +5199,7 @@ declare function init(config: AuthHeroConfig): {
5163
5199
  hint?: string | undefined;
5164
5200
  messages?: {
5165
5201
  text: string;
5166
- type: "success" | "error" | "info" | "warning";
5202
+ type: "error" | "success" | "info" | "warning";
5167
5203
  id?: number | undefined;
5168
5204
  }[] | undefined;
5169
5205
  required?: boolean | undefined;
@@ -5185,7 +5221,7 @@ declare function init(config: AuthHeroConfig): {
5185
5221
  hint?: string | undefined;
5186
5222
  messages?: {
5187
5223
  text: string;
5188
- type: "success" | "error" | "info" | "warning";
5224
+ type: "error" | "success" | "info" | "warning";
5189
5225
  id?: number | undefined;
5190
5226
  }[] | undefined;
5191
5227
  required?: boolean | undefined;
@@ -5204,7 +5240,7 @@ declare function init(config: AuthHeroConfig): {
5204
5240
  hint?: string | undefined;
5205
5241
  messages?: {
5206
5242
  text: string;
5207
- type: "success" | "error" | "info" | "warning";
5243
+ type: "error" | "success" | "info" | "warning";
5208
5244
  id?: number | undefined;
5209
5245
  }[] | undefined;
5210
5246
  required?: boolean | undefined;
@@ -5229,7 +5265,7 @@ declare function init(config: AuthHeroConfig): {
5229
5265
  hint?: string | undefined;
5230
5266
  messages?: {
5231
5267
  text: string;
5232
- type: "success" | "error" | "info" | "warning";
5268
+ type: "error" | "success" | "info" | "warning";
5233
5269
  id?: number | undefined;
5234
5270
  }[] | undefined;
5235
5271
  required?: boolean | undefined;
@@ -5250,7 +5286,7 @@ declare function init(config: AuthHeroConfig): {
5250
5286
  hint?: string | undefined;
5251
5287
  messages?: {
5252
5288
  text: string;
5253
- type: "success" | "error" | "info" | "warning";
5289
+ type: "error" | "success" | "info" | "warning";
5254
5290
  id?: number | undefined;
5255
5291
  }[] | undefined;
5256
5292
  required?: boolean | undefined;
@@ -5271,7 +5307,7 @@ declare function init(config: AuthHeroConfig): {
5271
5307
  hint?: string | undefined;
5272
5308
  messages?: {
5273
5309
  text: string;
5274
- type: "success" | "error" | "info" | "warning";
5310
+ type: "error" | "success" | "info" | "warning";
5275
5311
  id?: number | undefined;
5276
5312
  }[] | undefined;
5277
5313
  required?: boolean | undefined;
@@ -5504,7 +5540,7 @@ declare function init(config: AuthHeroConfig): {
5504
5540
  hint?: string | undefined;
5505
5541
  messages?: {
5506
5542
  text: string;
5507
- type: "success" | "error" | "info" | "warning";
5543
+ type: "error" | "success" | "info" | "warning";
5508
5544
  id?: number | undefined;
5509
5545
  }[] | undefined;
5510
5546
  required?: boolean | undefined;
@@ -5522,7 +5558,7 @@ declare function init(config: AuthHeroConfig): {
5522
5558
  hint?: string | undefined;
5523
5559
  messages?: {
5524
5560
  text: string;
5525
- type: "success" | "error" | "info" | "warning";
5561
+ type: "error" | "success" | "info" | "warning";
5526
5562
  id?: number | undefined;
5527
5563
  }[] | undefined;
5528
5564
  required?: boolean | undefined;
@@ -5546,7 +5582,7 @@ declare function init(config: AuthHeroConfig): {
5546
5582
  hint?: string | undefined;
5547
5583
  messages?: {
5548
5584
  text: string;
5549
- type: "success" | "error" | "info" | "warning";
5585
+ type: "error" | "success" | "info" | "warning";
5550
5586
  id?: number | undefined;
5551
5587
  }[] | undefined;
5552
5588
  required?: boolean | undefined;
@@ -5570,7 +5606,7 @@ declare function init(config: AuthHeroConfig): {
5570
5606
  hint?: string | undefined;
5571
5607
  messages?: {
5572
5608
  text: string;
5573
- type: "success" | "error" | "info" | "warning";
5609
+ type: "error" | "success" | "info" | "warning";
5574
5610
  id?: number | undefined;
5575
5611
  }[] | undefined;
5576
5612
  required?: boolean | undefined;
@@ -5599,7 +5635,7 @@ declare function init(config: AuthHeroConfig): {
5599
5635
  hint?: string | undefined;
5600
5636
  messages?: {
5601
5637
  text: string;
5602
- type: "success" | "error" | "info" | "warning";
5638
+ type: "error" | "success" | "info" | "warning";
5603
5639
  id?: number | undefined;
5604
5640
  }[] | undefined;
5605
5641
  required?: boolean | undefined;
@@ -5614,7 +5650,7 @@ declare function init(config: AuthHeroConfig): {
5614
5650
  hint?: string | undefined;
5615
5651
  messages?: {
5616
5652
  text: string;
5617
- type: "success" | "error" | "info" | "warning";
5653
+ type: "error" | "success" | "info" | "warning";
5618
5654
  id?: number | undefined;
5619
5655
  }[] | undefined;
5620
5656
  required?: boolean | undefined;
@@ -5635,7 +5671,7 @@ declare function init(config: AuthHeroConfig): {
5635
5671
  hint?: string | undefined;
5636
5672
  messages?: {
5637
5673
  text: string;
5638
- type: "success" | "error" | "info" | "warning";
5674
+ type: "error" | "success" | "info" | "warning";
5639
5675
  id?: number | undefined;
5640
5676
  }[] | undefined;
5641
5677
  required?: boolean | undefined;
@@ -5660,7 +5696,7 @@ declare function init(config: AuthHeroConfig): {
5660
5696
  hint?: string | undefined;
5661
5697
  messages?: {
5662
5698
  text: string;
5663
- type: "success" | "error" | "info" | "warning";
5699
+ type: "error" | "success" | "info" | "warning";
5664
5700
  id?: number | undefined;
5665
5701
  }[] | undefined;
5666
5702
  required?: boolean | undefined;
@@ -5679,7 +5715,7 @@ declare function init(config: AuthHeroConfig): {
5679
5715
  hint?: string | undefined;
5680
5716
  messages?: {
5681
5717
  text: string;
5682
- type: "success" | "error" | "info" | "warning";
5718
+ type: "error" | "success" | "info" | "warning";
5683
5719
  id?: number | undefined;
5684
5720
  }[] | undefined;
5685
5721
  required?: boolean | undefined;
@@ -5699,7 +5735,7 @@ declare function init(config: AuthHeroConfig): {
5699
5735
  hint?: string | undefined;
5700
5736
  messages?: {
5701
5737
  text: string;
5702
- type: "success" | "error" | "info" | "warning";
5738
+ type: "error" | "success" | "info" | "warning";
5703
5739
  id?: number | undefined;
5704
5740
  }[] | undefined;
5705
5741
  required?: boolean | undefined;
@@ -5718,7 +5754,7 @@ declare function init(config: AuthHeroConfig): {
5718
5754
  hint?: string | undefined;
5719
5755
  messages?: {
5720
5756
  text: string;
5721
- type: "success" | "error" | "info" | "warning";
5757
+ type: "error" | "success" | "info" | "warning";
5722
5758
  id?: number | undefined;
5723
5759
  }[] | undefined;
5724
5760
  required?: boolean | undefined;
@@ -5740,7 +5776,7 @@ declare function init(config: AuthHeroConfig): {
5740
5776
  hint?: string | undefined;
5741
5777
  messages?: {
5742
5778
  text: string;
5743
- type: "success" | "error" | "info" | "warning";
5779
+ type: "error" | "success" | "info" | "warning";
5744
5780
  id?: number | undefined;
5745
5781
  }[] | undefined;
5746
5782
  required?: boolean | undefined;
@@ -5762,7 +5798,7 @@ declare function init(config: AuthHeroConfig): {
5762
5798
  hint?: string | undefined;
5763
5799
  messages?: {
5764
5800
  text: string;
5765
- type: "success" | "error" | "info" | "warning";
5801
+ type: "error" | "success" | "info" | "warning";
5766
5802
  id?: number | undefined;
5767
5803
  }[] | undefined;
5768
5804
  required?: boolean | undefined;
@@ -5781,7 +5817,7 @@ declare function init(config: AuthHeroConfig): {
5781
5817
  hint?: string | undefined;
5782
5818
  messages?: {
5783
5819
  text: string;
5784
- type: "success" | "error" | "info" | "warning";
5820
+ type: "error" | "success" | "info" | "warning";
5785
5821
  id?: number | undefined;
5786
5822
  }[] | undefined;
5787
5823
  required?: boolean | undefined;
@@ -5806,7 +5842,7 @@ declare function init(config: AuthHeroConfig): {
5806
5842
  hint?: string | undefined;
5807
5843
  messages?: {
5808
5844
  text: string;
5809
- type: "success" | "error" | "info" | "warning";
5845
+ type: "error" | "success" | "info" | "warning";
5810
5846
  id?: number | undefined;
5811
5847
  }[] | undefined;
5812
5848
  required?: boolean | undefined;
@@ -5827,7 +5863,7 @@ declare function init(config: AuthHeroConfig): {
5827
5863
  hint?: string | undefined;
5828
5864
  messages?: {
5829
5865
  text: string;
5830
- type: "success" | "error" | "info" | "warning";
5866
+ type: "error" | "success" | "info" | "warning";
5831
5867
  id?: number | undefined;
5832
5868
  }[] | undefined;
5833
5869
  required?: boolean | undefined;
@@ -5848,7 +5884,7 @@ declare function init(config: AuthHeroConfig): {
5848
5884
  hint?: string | undefined;
5849
5885
  messages?: {
5850
5886
  text: string;
5851
- type: "success" | "error" | "info" | "warning";
5887
+ type: "error" | "success" | "info" | "warning";
5852
5888
  id?: number | undefined;
5853
5889
  }[] | undefined;
5854
5890
  required?: boolean | undefined;
@@ -6096,7 +6132,7 @@ declare function init(config: AuthHeroConfig): {
6096
6132
  hint?: string | undefined;
6097
6133
  messages?: {
6098
6134
  text: string;
6099
- type: "success" | "error" | "info" | "warning";
6135
+ type: "error" | "success" | "info" | "warning";
6100
6136
  id?: number | undefined;
6101
6137
  }[] | undefined;
6102
6138
  required?: boolean | undefined;
@@ -6114,7 +6150,7 @@ declare function init(config: AuthHeroConfig): {
6114
6150
  hint?: string | undefined;
6115
6151
  messages?: {
6116
6152
  text: string;
6117
- type: "success" | "error" | "info" | "warning";
6153
+ type: "error" | "success" | "info" | "warning";
6118
6154
  id?: number | undefined;
6119
6155
  }[] | undefined;
6120
6156
  required?: boolean | undefined;
@@ -6138,7 +6174,7 @@ declare function init(config: AuthHeroConfig): {
6138
6174
  hint?: string | undefined;
6139
6175
  messages?: {
6140
6176
  text: string;
6141
- type: "success" | "error" | "info" | "warning";
6177
+ type: "error" | "success" | "info" | "warning";
6142
6178
  id?: number | undefined;
6143
6179
  }[] | undefined;
6144
6180
  required?: boolean | undefined;
@@ -6162,7 +6198,7 @@ declare function init(config: AuthHeroConfig): {
6162
6198
  hint?: string | undefined;
6163
6199
  messages?: {
6164
6200
  text: string;
6165
- type: "success" | "error" | "info" | "warning";
6201
+ type: "error" | "success" | "info" | "warning";
6166
6202
  id?: number | undefined;
6167
6203
  }[] | undefined;
6168
6204
  required?: boolean | undefined;
@@ -6191,7 +6227,7 @@ declare function init(config: AuthHeroConfig): {
6191
6227
  hint?: string | undefined;
6192
6228
  messages?: {
6193
6229
  text: string;
6194
- type: "success" | "error" | "info" | "warning";
6230
+ type: "error" | "success" | "info" | "warning";
6195
6231
  id?: number | undefined;
6196
6232
  }[] | undefined;
6197
6233
  required?: boolean | undefined;
@@ -6206,7 +6242,7 @@ declare function init(config: AuthHeroConfig): {
6206
6242
  hint?: string | undefined;
6207
6243
  messages?: {
6208
6244
  text: string;
6209
- type: "success" | "error" | "info" | "warning";
6245
+ type: "error" | "success" | "info" | "warning";
6210
6246
  id?: number | undefined;
6211
6247
  }[] | undefined;
6212
6248
  required?: boolean | undefined;
@@ -6227,7 +6263,7 @@ declare function init(config: AuthHeroConfig): {
6227
6263
  hint?: string | undefined;
6228
6264
  messages?: {
6229
6265
  text: string;
6230
- type: "success" | "error" | "info" | "warning";
6266
+ type: "error" | "success" | "info" | "warning";
6231
6267
  id?: number | undefined;
6232
6268
  }[] | undefined;
6233
6269
  required?: boolean | undefined;
@@ -6252,7 +6288,7 @@ declare function init(config: AuthHeroConfig): {
6252
6288
  hint?: string | undefined;
6253
6289
  messages?: {
6254
6290
  text: string;
6255
- type: "success" | "error" | "info" | "warning";
6291
+ type: "error" | "success" | "info" | "warning";
6256
6292
  id?: number | undefined;
6257
6293
  }[] | undefined;
6258
6294
  required?: boolean | undefined;
@@ -6271,7 +6307,7 @@ declare function init(config: AuthHeroConfig): {
6271
6307
  hint?: string | undefined;
6272
6308
  messages?: {
6273
6309
  text: string;
6274
- type: "success" | "error" | "info" | "warning";
6310
+ type: "error" | "success" | "info" | "warning";
6275
6311
  id?: number | undefined;
6276
6312
  }[] | undefined;
6277
6313
  required?: boolean | undefined;
@@ -6291,7 +6327,7 @@ declare function init(config: AuthHeroConfig): {
6291
6327
  hint?: string | undefined;
6292
6328
  messages?: {
6293
6329
  text: string;
6294
- type: "success" | "error" | "info" | "warning";
6330
+ type: "error" | "success" | "info" | "warning";
6295
6331
  id?: number | undefined;
6296
6332
  }[] | undefined;
6297
6333
  required?: boolean | undefined;
@@ -6310,7 +6346,7 @@ declare function init(config: AuthHeroConfig): {
6310
6346
  hint?: string | undefined;
6311
6347
  messages?: {
6312
6348
  text: string;
6313
- type: "success" | "error" | "info" | "warning";
6349
+ type: "error" | "success" | "info" | "warning";
6314
6350
  id?: number | undefined;
6315
6351
  }[] | undefined;
6316
6352
  required?: boolean | undefined;
@@ -6332,7 +6368,7 @@ declare function init(config: AuthHeroConfig): {
6332
6368
  hint?: string | undefined;
6333
6369
  messages?: {
6334
6370
  text: string;
6335
- type: "success" | "error" | "info" | "warning";
6371
+ type: "error" | "success" | "info" | "warning";
6336
6372
  id?: number | undefined;
6337
6373
  }[] | undefined;
6338
6374
  required?: boolean | undefined;
@@ -6354,7 +6390,7 @@ declare function init(config: AuthHeroConfig): {
6354
6390
  hint?: string | undefined;
6355
6391
  messages?: {
6356
6392
  text: string;
6357
- type: "success" | "error" | "info" | "warning";
6393
+ type: "error" | "success" | "info" | "warning";
6358
6394
  id?: number | undefined;
6359
6395
  }[] | undefined;
6360
6396
  required?: boolean | undefined;
@@ -6373,7 +6409,7 @@ declare function init(config: AuthHeroConfig): {
6373
6409
  hint?: string | undefined;
6374
6410
  messages?: {
6375
6411
  text: string;
6376
- type: "success" | "error" | "info" | "warning";
6412
+ type: "error" | "success" | "info" | "warning";
6377
6413
  id?: number | undefined;
6378
6414
  }[] | undefined;
6379
6415
  required?: boolean | undefined;
@@ -6398,7 +6434,7 @@ declare function init(config: AuthHeroConfig): {
6398
6434
  hint?: string | undefined;
6399
6435
  messages?: {
6400
6436
  text: string;
6401
- type: "success" | "error" | "info" | "warning";
6437
+ type: "error" | "success" | "info" | "warning";
6402
6438
  id?: number | undefined;
6403
6439
  }[] | undefined;
6404
6440
  required?: boolean | undefined;
@@ -6419,7 +6455,7 @@ declare function init(config: AuthHeroConfig): {
6419
6455
  hint?: string | undefined;
6420
6456
  messages?: {
6421
6457
  text: string;
6422
- type: "success" | "error" | "info" | "warning";
6458
+ type: "error" | "success" | "info" | "warning";
6423
6459
  id?: number | undefined;
6424
6460
  }[] | undefined;
6425
6461
  required?: boolean | undefined;
@@ -6440,7 +6476,7 @@ declare function init(config: AuthHeroConfig): {
6440
6476
  hint?: string | undefined;
6441
6477
  messages?: {
6442
6478
  text: string;
6443
- type: "success" | "error" | "info" | "warning";
6479
+ type: "error" | "success" | "info" | "warning";
6444
6480
  id?: number | undefined;
6445
6481
  }[] | undefined;
6446
6482
  required?: boolean | undefined;
@@ -6694,7 +6730,7 @@ declare function init(config: AuthHeroConfig): {
6694
6730
  hint?: string | undefined;
6695
6731
  messages?: {
6696
6732
  text: string;
6697
- type: "success" | "error" | "info" | "warning";
6733
+ type: "error" | "success" | "info" | "warning";
6698
6734
  id?: number | undefined;
6699
6735
  }[] | undefined;
6700
6736
  required?: boolean | undefined;
@@ -6712,7 +6748,7 @@ declare function init(config: AuthHeroConfig): {
6712
6748
  hint?: string | undefined;
6713
6749
  messages?: {
6714
6750
  text: string;
6715
- type: "success" | "error" | "info" | "warning";
6751
+ type: "error" | "success" | "info" | "warning";
6716
6752
  id?: number | undefined;
6717
6753
  }[] | undefined;
6718
6754
  required?: boolean | undefined;
@@ -6736,7 +6772,7 @@ declare function init(config: AuthHeroConfig): {
6736
6772
  hint?: string | undefined;
6737
6773
  messages?: {
6738
6774
  text: string;
6739
- type: "success" | "error" | "info" | "warning";
6775
+ type: "error" | "success" | "info" | "warning";
6740
6776
  id?: number | undefined;
6741
6777
  }[] | undefined;
6742
6778
  required?: boolean | undefined;
@@ -6760,7 +6796,7 @@ declare function init(config: AuthHeroConfig): {
6760
6796
  hint?: string | undefined;
6761
6797
  messages?: {
6762
6798
  text: string;
6763
- type: "success" | "error" | "info" | "warning";
6799
+ type: "error" | "success" | "info" | "warning";
6764
6800
  id?: number | undefined;
6765
6801
  }[] | undefined;
6766
6802
  required?: boolean | undefined;
@@ -6785,7 +6821,7 @@ declare function init(config: AuthHeroConfig): {
6785
6821
  hint?: string | undefined;
6786
6822
  messages?: {
6787
6823
  text: string;
6788
- type: "success" | "error" | "info" | "warning";
6824
+ type: "error" | "success" | "info" | "warning";
6789
6825
  id?: number | undefined;
6790
6826
  }[] | undefined;
6791
6827
  required?: boolean | undefined;
@@ -6800,7 +6836,7 @@ declare function init(config: AuthHeroConfig): {
6800
6836
  hint?: string | undefined;
6801
6837
  messages?: {
6802
6838
  text: string;
6803
- type: "success" | "error" | "info" | "warning";
6839
+ type: "error" | "success" | "info" | "warning";
6804
6840
  id?: number | undefined;
6805
6841
  }[] | undefined;
6806
6842
  required?: boolean | undefined;
@@ -6821,7 +6857,7 @@ declare function init(config: AuthHeroConfig): {
6821
6857
  hint?: string | undefined;
6822
6858
  messages?: {
6823
6859
  text: string;
6824
- type: "success" | "error" | "info" | "warning";
6860
+ type: "error" | "success" | "info" | "warning";
6825
6861
  id?: number | undefined;
6826
6862
  }[] | undefined;
6827
6863
  required?: boolean | undefined;
@@ -6846,7 +6882,7 @@ declare function init(config: AuthHeroConfig): {
6846
6882
  hint?: string | undefined;
6847
6883
  messages?: {
6848
6884
  text: string;
6849
- type: "success" | "error" | "info" | "warning";
6885
+ type: "error" | "success" | "info" | "warning";
6850
6886
  id?: number | undefined;
6851
6887
  }[] | undefined;
6852
6888
  required?: boolean | undefined;
@@ -6865,7 +6901,7 @@ declare function init(config: AuthHeroConfig): {
6865
6901
  hint?: string | undefined;
6866
6902
  messages?: {
6867
6903
  text: string;
6868
- type: "success" | "error" | "info" | "warning";
6904
+ type: "error" | "success" | "info" | "warning";
6869
6905
  id?: number | undefined;
6870
6906
  }[] | undefined;
6871
6907
  required?: boolean | undefined;
@@ -6885,7 +6921,7 @@ declare function init(config: AuthHeroConfig): {
6885
6921
  hint?: string | undefined;
6886
6922
  messages?: {
6887
6923
  text: string;
6888
- type: "success" | "error" | "info" | "warning";
6924
+ type: "error" | "success" | "info" | "warning";
6889
6925
  id?: number | undefined;
6890
6926
  }[] | undefined;
6891
6927
  required?: boolean | undefined;
@@ -6904,7 +6940,7 @@ declare function init(config: AuthHeroConfig): {
6904
6940
  hint?: string | undefined;
6905
6941
  messages?: {
6906
6942
  text: string;
6907
- type: "success" | "error" | "info" | "warning";
6943
+ type: "error" | "success" | "info" | "warning";
6908
6944
  id?: number | undefined;
6909
6945
  }[] | undefined;
6910
6946
  required?: boolean | undefined;
@@ -6926,7 +6962,7 @@ declare function init(config: AuthHeroConfig): {
6926
6962
  hint?: string | undefined;
6927
6963
  messages?: {
6928
6964
  text: string;
6929
- type: "success" | "error" | "info" | "warning";
6965
+ type: "error" | "success" | "info" | "warning";
6930
6966
  id?: number | undefined;
6931
6967
  }[] | undefined;
6932
6968
  required?: boolean | undefined;
@@ -6948,7 +6984,7 @@ declare function init(config: AuthHeroConfig): {
6948
6984
  hint?: string | undefined;
6949
6985
  messages?: {
6950
6986
  text: string;
6951
- type: "success" | "error" | "info" | "warning";
6987
+ type: "error" | "success" | "info" | "warning";
6952
6988
  id?: number | undefined;
6953
6989
  }[] | undefined;
6954
6990
  required?: boolean | undefined;
@@ -6967,7 +7003,7 @@ declare function init(config: AuthHeroConfig): {
6967
7003
  hint?: string | undefined;
6968
7004
  messages?: {
6969
7005
  text: string;
6970
- type: "success" | "error" | "info" | "warning";
7006
+ type: "error" | "success" | "info" | "warning";
6971
7007
  id?: number | undefined;
6972
7008
  }[] | undefined;
6973
7009
  required?: boolean | undefined;
@@ -6992,7 +7028,7 @@ declare function init(config: AuthHeroConfig): {
6992
7028
  hint?: string | undefined;
6993
7029
  messages?: {
6994
7030
  text: string;
6995
- type: "success" | "error" | "info" | "warning";
7031
+ type: "error" | "success" | "info" | "warning";
6996
7032
  id?: number | undefined;
6997
7033
  }[] | undefined;
6998
7034
  required?: boolean | undefined;
@@ -7013,7 +7049,7 @@ declare function init(config: AuthHeroConfig): {
7013
7049
  hint?: string | undefined;
7014
7050
  messages?: {
7015
7051
  text: string;
7016
- type: "success" | "error" | "info" | "warning";
7052
+ type: "error" | "success" | "info" | "warning";
7017
7053
  id?: number | undefined;
7018
7054
  }[] | undefined;
7019
7055
  required?: boolean | undefined;
@@ -7034,7 +7070,7 @@ declare function init(config: AuthHeroConfig): {
7034
7070
  hint?: string | undefined;
7035
7071
  messages?: {
7036
7072
  text: string;
7037
- type: "success" | "error" | "info" | "warning";
7073
+ type: "error" | "success" | "info" | "warning";
7038
7074
  id?: number | undefined;
7039
7075
  }[] | undefined;
7040
7076
  required?: boolean | undefined;
@@ -7265,7 +7301,7 @@ declare function init(config: AuthHeroConfig): {
7265
7301
  hint?: string | undefined;
7266
7302
  messages?: {
7267
7303
  text: string;
7268
- type: "success" | "error" | "info" | "warning";
7304
+ type: "error" | "success" | "info" | "warning";
7269
7305
  id?: number | undefined;
7270
7306
  }[] | undefined;
7271
7307
  required?: boolean | undefined;
@@ -7283,7 +7319,7 @@ declare function init(config: AuthHeroConfig): {
7283
7319
  hint?: string | undefined;
7284
7320
  messages?: {
7285
7321
  text: string;
7286
- type: "success" | "error" | "info" | "warning";
7322
+ type: "error" | "success" | "info" | "warning";
7287
7323
  id?: number | undefined;
7288
7324
  }[] | undefined;
7289
7325
  required?: boolean | undefined;
@@ -7307,7 +7343,7 @@ declare function init(config: AuthHeroConfig): {
7307
7343
  hint?: string | undefined;
7308
7344
  messages?: {
7309
7345
  text: string;
7310
- type: "success" | "error" | "info" | "warning";
7346
+ type: "error" | "success" | "info" | "warning";
7311
7347
  id?: number | undefined;
7312
7348
  }[] | undefined;
7313
7349
  required?: boolean | undefined;
@@ -7331,7 +7367,7 @@ declare function init(config: AuthHeroConfig): {
7331
7367
  hint?: string | undefined;
7332
7368
  messages?: {
7333
7369
  text: string;
7334
- type: "success" | "error" | "info" | "warning";
7370
+ type: "error" | "success" | "info" | "warning";
7335
7371
  id?: number | undefined;
7336
7372
  }[] | undefined;
7337
7373
  required?: boolean | undefined;
@@ -7360,7 +7396,7 @@ declare function init(config: AuthHeroConfig): {
7360
7396
  hint?: string | undefined;
7361
7397
  messages?: {
7362
7398
  text: string;
7363
- type: "success" | "error" | "info" | "warning";
7399
+ type: "error" | "success" | "info" | "warning";
7364
7400
  id?: number | undefined;
7365
7401
  }[] | undefined;
7366
7402
  required?: boolean | undefined;
@@ -7375,7 +7411,7 @@ declare function init(config: AuthHeroConfig): {
7375
7411
  hint?: string | undefined;
7376
7412
  messages?: {
7377
7413
  text: string;
7378
- type: "success" | "error" | "info" | "warning";
7414
+ type: "error" | "success" | "info" | "warning";
7379
7415
  id?: number | undefined;
7380
7416
  }[] | undefined;
7381
7417
  required?: boolean | undefined;
@@ -7396,7 +7432,7 @@ declare function init(config: AuthHeroConfig): {
7396
7432
  hint?: string | undefined;
7397
7433
  messages?: {
7398
7434
  text: string;
7399
- type: "success" | "error" | "info" | "warning";
7435
+ type: "error" | "success" | "info" | "warning";
7400
7436
  id?: number | undefined;
7401
7437
  }[] | undefined;
7402
7438
  required?: boolean | undefined;
@@ -7421,7 +7457,7 @@ declare function init(config: AuthHeroConfig): {
7421
7457
  hint?: string | undefined;
7422
7458
  messages?: {
7423
7459
  text: string;
7424
- type: "success" | "error" | "info" | "warning";
7460
+ type: "error" | "success" | "info" | "warning";
7425
7461
  id?: number | undefined;
7426
7462
  }[] | undefined;
7427
7463
  required?: boolean | undefined;
@@ -7440,7 +7476,7 @@ declare function init(config: AuthHeroConfig): {
7440
7476
  hint?: string | undefined;
7441
7477
  messages?: {
7442
7478
  text: string;
7443
- type: "success" | "error" | "info" | "warning";
7479
+ type: "error" | "success" | "info" | "warning";
7444
7480
  id?: number | undefined;
7445
7481
  }[] | undefined;
7446
7482
  required?: boolean | undefined;
@@ -7460,7 +7496,7 @@ declare function init(config: AuthHeroConfig): {
7460
7496
  hint?: string | undefined;
7461
7497
  messages?: {
7462
7498
  text: string;
7463
- type: "success" | "error" | "info" | "warning";
7499
+ type: "error" | "success" | "info" | "warning";
7464
7500
  id?: number | undefined;
7465
7501
  }[] | undefined;
7466
7502
  required?: boolean | undefined;
@@ -7479,7 +7515,7 @@ declare function init(config: AuthHeroConfig): {
7479
7515
  hint?: string | undefined;
7480
7516
  messages?: {
7481
7517
  text: string;
7482
- type: "success" | "error" | "info" | "warning";
7518
+ type: "error" | "success" | "info" | "warning";
7483
7519
  id?: number | undefined;
7484
7520
  }[] | undefined;
7485
7521
  required?: boolean | undefined;
@@ -7501,7 +7537,7 @@ declare function init(config: AuthHeroConfig): {
7501
7537
  hint?: string | undefined;
7502
7538
  messages?: {
7503
7539
  text: string;
7504
- type: "success" | "error" | "info" | "warning";
7540
+ type: "error" | "success" | "info" | "warning";
7505
7541
  id?: number | undefined;
7506
7542
  }[] | undefined;
7507
7543
  required?: boolean | undefined;
@@ -7523,7 +7559,7 @@ declare function init(config: AuthHeroConfig): {
7523
7559
  hint?: string | undefined;
7524
7560
  messages?: {
7525
7561
  text: string;
7526
- type: "success" | "error" | "info" | "warning";
7562
+ type: "error" | "success" | "info" | "warning";
7527
7563
  id?: number | undefined;
7528
7564
  }[] | undefined;
7529
7565
  required?: boolean | undefined;
@@ -7542,7 +7578,7 @@ declare function init(config: AuthHeroConfig): {
7542
7578
  hint?: string | undefined;
7543
7579
  messages?: {
7544
7580
  text: string;
7545
- type: "success" | "error" | "info" | "warning";
7581
+ type: "error" | "success" | "info" | "warning";
7546
7582
  id?: number | undefined;
7547
7583
  }[] | undefined;
7548
7584
  required?: boolean | undefined;
@@ -7567,7 +7603,7 @@ declare function init(config: AuthHeroConfig): {
7567
7603
  hint?: string | undefined;
7568
7604
  messages?: {
7569
7605
  text: string;
7570
- type: "success" | "error" | "info" | "warning";
7606
+ type: "error" | "success" | "info" | "warning";
7571
7607
  id?: number | undefined;
7572
7608
  }[] | undefined;
7573
7609
  required?: boolean | undefined;
@@ -7588,7 +7624,7 @@ declare function init(config: AuthHeroConfig): {
7588
7624
  hint?: string | undefined;
7589
7625
  messages?: {
7590
7626
  text: string;
7591
- type: "success" | "error" | "info" | "warning";
7627
+ type: "error" | "success" | "info" | "warning";
7592
7628
  id?: number | undefined;
7593
7629
  }[] | undefined;
7594
7630
  required?: boolean | undefined;
@@ -7609,7 +7645,7 @@ declare function init(config: AuthHeroConfig): {
7609
7645
  hint?: string | undefined;
7610
7646
  messages?: {
7611
7647
  text: string;
7612
- type: "success" | "error" | "info" | "warning";
7648
+ type: "error" | "success" | "info" | "warning";
7613
7649
  id?: number | undefined;
7614
7650
  }[] | undefined;
7615
7651
  required?: boolean | undefined;
@@ -7842,7 +7878,7 @@ declare function init(config: AuthHeroConfig): {
7842
7878
  hint?: string | undefined;
7843
7879
  messages?: {
7844
7880
  text: string;
7845
- type: "success" | "error" | "info" | "warning";
7881
+ type: "error" | "success" | "info" | "warning";
7846
7882
  id?: number | undefined;
7847
7883
  }[] | undefined;
7848
7884
  required?: boolean | undefined;
@@ -7860,7 +7896,7 @@ declare function init(config: AuthHeroConfig): {
7860
7896
  hint?: string | undefined;
7861
7897
  messages?: {
7862
7898
  text: string;
7863
- type: "success" | "error" | "info" | "warning";
7899
+ type: "error" | "success" | "info" | "warning";
7864
7900
  id?: number | undefined;
7865
7901
  }[] | undefined;
7866
7902
  required?: boolean | undefined;
@@ -7884,7 +7920,7 @@ declare function init(config: AuthHeroConfig): {
7884
7920
  hint?: string | undefined;
7885
7921
  messages?: {
7886
7922
  text: string;
7887
- type: "success" | "error" | "info" | "warning";
7923
+ type: "error" | "success" | "info" | "warning";
7888
7924
  id?: number | undefined;
7889
7925
  }[] | undefined;
7890
7926
  required?: boolean | undefined;
@@ -7908,7 +7944,7 @@ declare function init(config: AuthHeroConfig): {
7908
7944
  hint?: string | undefined;
7909
7945
  messages?: {
7910
7946
  text: string;
7911
- type: "success" | "error" | "info" | "warning";
7947
+ type: "error" | "success" | "info" | "warning";
7912
7948
  id?: number | undefined;
7913
7949
  }[] | undefined;
7914
7950
  required?: boolean | undefined;
@@ -7933,7 +7969,7 @@ declare function init(config: AuthHeroConfig): {
7933
7969
  hint?: string | undefined;
7934
7970
  messages?: {
7935
7971
  text: string;
7936
- type: "success" | "error" | "info" | "warning";
7972
+ type: "error" | "success" | "info" | "warning";
7937
7973
  id?: number | undefined;
7938
7974
  }[] | undefined;
7939
7975
  required?: boolean | undefined;
@@ -7948,7 +7984,7 @@ declare function init(config: AuthHeroConfig): {
7948
7984
  hint?: string | undefined;
7949
7985
  messages?: {
7950
7986
  text: string;
7951
- type: "success" | "error" | "info" | "warning";
7987
+ type: "error" | "success" | "info" | "warning";
7952
7988
  id?: number | undefined;
7953
7989
  }[] | undefined;
7954
7990
  required?: boolean | undefined;
@@ -7969,7 +8005,7 @@ declare function init(config: AuthHeroConfig): {
7969
8005
  hint?: string | undefined;
7970
8006
  messages?: {
7971
8007
  text: string;
7972
- type: "success" | "error" | "info" | "warning";
8008
+ type: "error" | "success" | "info" | "warning";
7973
8009
  id?: number | undefined;
7974
8010
  }[] | undefined;
7975
8011
  required?: boolean | undefined;
@@ -7994,7 +8030,7 @@ declare function init(config: AuthHeroConfig): {
7994
8030
  hint?: string | undefined;
7995
8031
  messages?: {
7996
8032
  text: string;
7997
- type: "success" | "error" | "info" | "warning";
8033
+ type: "error" | "success" | "info" | "warning";
7998
8034
  id?: number | undefined;
7999
8035
  }[] | undefined;
8000
8036
  required?: boolean | undefined;
@@ -8013,7 +8049,7 @@ declare function init(config: AuthHeroConfig): {
8013
8049
  hint?: string | undefined;
8014
8050
  messages?: {
8015
8051
  text: string;
8016
- type: "success" | "error" | "info" | "warning";
8052
+ type: "error" | "success" | "info" | "warning";
8017
8053
  id?: number | undefined;
8018
8054
  }[] | undefined;
8019
8055
  required?: boolean | undefined;
@@ -8033,7 +8069,7 @@ declare function init(config: AuthHeroConfig): {
8033
8069
  hint?: string | undefined;
8034
8070
  messages?: {
8035
8071
  text: string;
8036
- type: "success" | "error" | "info" | "warning";
8072
+ type: "error" | "success" | "info" | "warning";
8037
8073
  id?: number | undefined;
8038
8074
  }[] | undefined;
8039
8075
  required?: boolean | undefined;
@@ -8052,7 +8088,7 @@ declare function init(config: AuthHeroConfig): {
8052
8088
  hint?: string | undefined;
8053
8089
  messages?: {
8054
8090
  text: string;
8055
- type: "success" | "error" | "info" | "warning";
8091
+ type: "error" | "success" | "info" | "warning";
8056
8092
  id?: number | undefined;
8057
8093
  }[] | undefined;
8058
8094
  required?: boolean | undefined;
@@ -8074,7 +8110,7 @@ declare function init(config: AuthHeroConfig): {
8074
8110
  hint?: string | undefined;
8075
8111
  messages?: {
8076
8112
  text: string;
8077
- type: "success" | "error" | "info" | "warning";
8113
+ type: "error" | "success" | "info" | "warning";
8078
8114
  id?: number | undefined;
8079
8115
  }[] | undefined;
8080
8116
  required?: boolean | undefined;
@@ -8096,7 +8132,7 @@ declare function init(config: AuthHeroConfig): {
8096
8132
  hint?: string | undefined;
8097
8133
  messages?: {
8098
8134
  text: string;
8099
- type: "success" | "error" | "info" | "warning";
8135
+ type: "error" | "success" | "info" | "warning";
8100
8136
  id?: number | undefined;
8101
8137
  }[] | undefined;
8102
8138
  required?: boolean | undefined;
@@ -8115,7 +8151,7 @@ declare function init(config: AuthHeroConfig): {
8115
8151
  hint?: string | undefined;
8116
8152
  messages?: {
8117
8153
  text: string;
8118
- type: "success" | "error" | "info" | "warning";
8154
+ type: "error" | "success" | "info" | "warning";
8119
8155
  id?: number | undefined;
8120
8156
  }[] | undefined;
8121
8157
  required?: boolean | undefined;
@@ -8140,7 +8176,7 @@ declare function init(config: AuthHeroConfig): {
8140
8176
  hint?: string | undefined;
8141
8177
  messages?: {
8142
8178
  text: string;
8143
- type: "success" | "error" | "info" | "warning";
8179
+ type: "error" | "success" | "info" | "warning";
8144
8180
  id?: number | undefined;
8145
8181
  }[] | undefined;
8146
8182
  required?: boolean | undefined;
@@ -8161,7 +8197,7 @@ declare function init(config: AuthHeroConfig): {
8161
8197
  hint?: string | undefined;
8162
8198
  messages?: {
8163
8199
  text: string;
8164
- type: "success" | "error" | "info" | "warning";
8200
+ type: "error" | "success" | "info" | "warning";
8165
8201
  id?: number | undefined;
8166
8202
  }[] | undefined;
8167
8203
  required?: boolean | undefined;
@@ -8182,7 +8218,7 @@ declare function init(config: AuthHeroConfig): {
8182
8218
  hint?: string | undefined;
8183
8219
  messages?: {
8184
8220
  text: string;
8185
- type: "success" | "error" | "info" | "warning";
8221
+ type: "error" | "success" | "info" | "warning";
8186
8222
  id?: number | undefined;
8187
8223
  }[] | undefined;
8188
8224
  required?: boolean | undefined;
@@ -8413,7 +8449,7 @@ declare function init(config: AuthHeroConfig): {
8413
8449
  hint?: string | undefined;
8414
8450
  messages?: {
8415
8451
  text: string;
8416
- type: "success" | "error" | "info" | "warning";
8452
+ type: "error" | "success" | "info" | "warning";
8417
8453
  id?: number | undefined;
8418
8454
  }[] | undefined;
8419
8455
  required?: boolean | undefined;
@@ -8431,7 +8467,7 @@ declare function init(config: AuthHeroConfig): {
8431
8467
  hint?: string | undefined;
8432
8468
  messages?: {
8433
8469
  text: string;
8434
- type: "success" | "error" | "info" | "warning";
8470
+ type: "error" | "success" | "info" | "warning";
8435
8471
  id?: number | undefined;
8436
8472
  }[] | undefined;
8437
8473
  required?: boolean | undefined;
@@ -8455,7 +8491,7 @@ declare function init(config: AuthHeroConfig): {
8455
8491
  hint?: string | undefined;
8456
8492
  messages?: {
8457
8493
  text: string;
8458
- type: "success" | "error" | "info" | "warning";
8494
+ type: "error" | "success" | "info" | "warning";
8459
8495
  id?: number | undefined;
8460
8496
  }[] | undefined;
8461
8497
  required?: boolean | undefined;
@@ -8479,7 +8515,7 @@ declare function init(config: AuthHeroConfig): {
8479
8515
  hint?: string | undefined;
8480
8516
  messages?: {
8481
8517
  text: string;
8482
- type: "success" | "error" | "info" | "warning";
8518
+ type: "error" | "success" | "info" | "warning";
8483
8519
  id?: number | undefined;
8484
8520
  }[] | undefined;
8485
8521
  required?: boolean | undefined;
@@ -8508,7 +8544,7 @@ declare function init(config: AuthHeroConfig): {
8508
8544
  hint?: string | undefined;
8509
8545
  messages?: {
8510
8546
  text: string;
8511
- type: "success" | "error" | "info" | "warning";
8547
+ type: "error" | "success" | "info" | "warning";
8512
8548
  id?: number | undefined;
8513
8549
  }[] | undefined;
8514
8550
  required?: boolean | undefined;
@@ -8523,7 +8559,7 @@ declare function init(config: AuthHeroConfig): {
8523
8559
  hint?: string | undefined;
8524
8560
  messages?: {
8525
8561
  text: string;
8526
- type: "success" | "error" | "info" | "warning";
8562
+ type: "error" | "success" | "info" | "warning";
8527
8563
  id?: number | undefined;
8528
8564
  }[] | undefined;
8529
8565
  required?: boolean | undefined;
@@ -8544,7 +8580,7 @@ declare function init(config: AuthHeroConfig): {
8544
8580
  hint?: string | undefined;
8545
8581
  messages?: {
8546
8582
  text: string;
8547
- type: "success" | "error" | "info" | "warning";
8583
+ type: "error" | "success" | "info" | "warning";
8548
8584
  id?: number | undefined;
8549
8585
  }[] | undefined;
8550
8586
  required?: boolean | undefined;
@@ -8569,7 +8605,7 @@ declare function init(config: AuthHeroConfig): {
8569
8605
  hint?: string | undefined;
8570
8606
  messages?: {
8571
8607
  text: string;
8572
- type: "success" | "error" | "info" | "warning";
8608
+ type: "error" | "success" | "info" | "warning";
8573
8609
  id?: number | undefined;
8574
8610
  }[] | undefined;
8575
8611
  required?: boolean | undefined;
@@ -8588,7 +8624,7 @@ declare function init(config: AuthHeroConfig): {
8588
8624
  hint?: string | undefined;
8589
8625
  messages?: {
8590
8626
  text: string;
8591
- type: "success" | "error" | "info" | "warning";
8627
+ type: "error" | "success" | "info" | "warning";
8592
8628
  id?: number | undefined;
8593
8629
  }[] | undefined;
8594
8630
  required?: boolean | undefined;
@@ -8608,7 +8644,7 @@ declare function init(config: AuthHeroConfig): {
8608
8644
  hint?: string | undefined;
8609
8645
  messages?: {
8610
8646
  text: string;
8611
- type: "success" | "error" | "info" | "warning";
8647
+ type: "error" | "success" | "info" | "warning";
8612
8648
  id?: number | undefined;
8613
8649
  }[] | undefined;
8614
8650
  required?: boolean | undefined;
@@ -8627,7 +8663,7 @@ declare function init(config: AuthHeroConfig): {
8627
8663
  hint?: string | undefined;
8628
8664
  messages?: {
8629
8665
  text: string;
8630
- type: "success" | "error" | "info" | "warning";
8666
+ type: "error" | "success" | "info" | "warning";
8631
8667
  id?: number | undefined;
8632
8668
  }[] | undefined;
8633
8669
  required?: boolean | undefined;
@@ -8649,7 +8685,7 @@ declare function init(config: AuthHeroConfig): {
8649
8685
  hint?: string | undefined;
8650
8686
  messages?: {
8651
8687
  text: string;
8652
- type: "success" | "error" | "info" | "warning";
8688
+ type: "error" | "success" | "info" | "warning";
8653
8689
  id?: number | undefined;
8654
8690
  }[] | undefined;
8655
8691
  required?: boolean | undefined;
@@ -8671,7 +8707,7 @@ declare function init(config: AuthHeroConfig): {
8671
8707
  hint?: string | undefined;
8672
8708
  messages?: {
8673
8709
  text: string;
8674
- type: "success" | "error" | "info" | "warning";
8710
+ type: "error" | "success" | "info" | "warning";
8675
8711
  id?: number | undefined;
8676
8712
  }[] | undefined;
8677
8713
  required?: boolean | undefined;
@@ -8690,7 +8726,7 @@ declare function init(config: AuthHeroConfig): {
8690
8726
  hint?: string | undefined;
8691
8727
  messages?: {
8692
8728
  text: string;
8693
- type: "success" | "error" | "info" | "warning";
8729
+ type: "error" | "success" | "info" | "warning";
8694
8730
  id?: number | undefined;
8695
8731
  }[] | undefined;
8696
8732
  required?: boolean | undefined;
@@ -8715,7 +8751,7 @@ declare function init(config: AuthHeroConfig): {
8715
8751
  hint?: string | undefined;
8716
8752
  messages?: {
8717
8753
  text: string;
8718
- type: "success" | "error" | "info" | "warning";
8754
+ type: "error" | "success" | "info" | "warning";
8719
8755
  id?: number | undefined;
8720
8756
  }[] | undefined;
8721
8757
  required?: boolean | undefined;
@@ -8736,7 +8772,7 @@ declare function init(config: AuthHeroConfig): {
8736
8772
  hint?: string | undefined;
8737
8773
  messages?: {
8738
8774
  text: string;
8739
- type: "success" | "error" | "info" | "warning";
8775
+ type: "error" | "success" | "info" | "warning";
8740
8776
  id?: number | undefined;
8741
8777
  }[] | undefined;
8742
8778
  required?: boolean | undefined;
@@ -8757,7 +8793,7 @@ declare function init(config: AuthHeroConfig): {
8757
8793
  hint?: string | undefined;
8758
8794
  messages?: {
8759
8795
  text: string;
8760
- type: "success" | "error" | "info" | "warning";
8796
+ type: "error" | "success" | "info" | "warning";
8761
8797
  id?: number | undefined;
8762
8798
  }[] | undefined;
8763
8799
  required?: boolean | undefined;
@@ -8987,7 +9023,7 @@ declare function init(config: AuthHeroConfig): {
8987
9023
  };
8988
9024
  };
8989
9025
  output: {
8990
- prompt: "signup" | "status" | "mfa" | "organizations" | "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";
9026
+ prompt: "status" | "signup" | "mfa" | "organizations" | "common" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
8991
9027
  language: string;
8992
9028
  }[];
8993
9029
  outputFormat: "json";
@@ -9025,7 +9061,7 @@ declare function init(config: AuthHeroConfig): {
9025
9061
  $get: {
9026
9062
  input: {
9027
9063
  param: {
9028
- prompt: "signup" | "status" | "mfa" | "organizations" | "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";
9064
+ prompt: "status" | "signup" | "mfa" | "organizations" | "common" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9029
9065
  language: string;
9030
9066
  };
9031
9067
  } & {
@@ -9047,7 +9083,7 @@ declare function init(config: AuthHeroConfig): {
9047
9083
  $put: {
9048
9084
  input: {
9049
9085
  param: {
9050
- prompt: "signup" | "status" | "mfa" | "organizations" | "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";
9086
+ prompt: "status" | "signup" | "mfa" | "organizations" | "common" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9051
9087
  language: string;
9052
9088
  };
9053
9089
  } & {
@@ -9071,7 +9107,7 @@ declare function init(config: AuthHeroConfig): {
9071
9107
  $delete: {
9072
9108
  input: {
9073
9109
  param: {
9074
- prompt: "signup" | "status" | "mfa" | "organizations" | "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";
9110
+ prompt: "status" | "signup" | "mfa" | "organizations" | "common" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9075
9111
  language: string;
9076
9112
  };
9077
9113
  } & {
@@ -9163,7 +9199,7 @@ declare function init(config: AuthHeroConfig): {
9163
9199
  active?: boolean | undefined;
9164
9200
  } | undefined;
9165
9201
  signup?: {
9166
- status?: "optional" | "required" | "disabled" | undefined;
9202
+ status?: "optional" | "disabled" | "required" | undefined;
9167
9203
  verification?: {
9168
9204
  active?: boolean | undefined;
9169
9205
  } | undefined;
@@ -9180,7 +9216,7 @@ declare function init(config: AuthHeroConfig): {
9180
9216
  active?: boolean | undefined;
9181
9217
  } | undefined;
9182
9218
  signup?: {
9183
- status?: "optional" | "required" | "disabled" | undefined;
9219
+ status?: "optional" | "disabled" | "required" | undefined;
9184
9220
  } | undefined;
9185
9221
  validation?: {
9186
9222
  max_length?: number | undefined;
@@ -9197,7 +9233,7 @@ declare function init(config: AuthHeroConfig): {
9197
9233
  active?: boolean | undefined;
9198
9234
  } | undefined;
9199
9235
  signup?: {
9200
- status?: "optional" | "required" | "disabled" | undefined;
9236
+ status?: "optional" | "disabled" | "required" | undefined;
9201
9237
  } | undefined;
9202
9238
  } | undefined;
9203
9239
  } | undefined;
@@ -9297,7 +9333,7 @@ declare function init(config: AuthHeroConfig): {
9297
9333
  active?: boolean | undefined;
9298
9334
  } | undefined;
9299
9335
  signup?: {
9300
- status?: "optional" | "required" | "disabled" | undefined;
9336
+ status?: "optional" | "disabled" | "required" | undefined;
9301
9337
  verification?: {
9302
9338
  active?: boolean | undefined;
9303
9339
  } | undefined;
@@ -9314,7 +9350,7 @@ declare function init(config: AuthHeroConfig): {
9314
9350
  active?: boolean | undefined;
9315
9351
  } | undefined;
9316
9352
  signup?: {
9317
- status?: "optional" | "required" | "disabled" | undefined;
9353
+ status?: "optional" | "disabled" | "required" | undefined;
9318
9354
  } | undefined;
9319
9355
  validation?: {
9320
9356
  max_length?: number | undefined;
@@ -9331,7 +9367,7 @@ declare function init(config: AuthHeroConfig): {
9331
9367
  active?: boolean | undefined;
9332
9368
  } | undefined;
9333
9369
  signup?: {
9334
- status?: "optional" | "required" | "disabled" | undefined;
9370
+ status?: "optional" | "disabled" | "required" | undefined;
9335
9371
  } | undefined;
9336
9372
  } | undefined;
9337
9373
  } | undefined;
@@ -9446,7 +9482,7 @@ declare function init(config: AuthHeroConfig): {
9446
9482
  active?: boolean | undefined;
9447
9483
  } | undefined;
9448
9484
  signup?: {
9449
- status?: "optional" | "required" | "disabled" | undefined;
9485
+ status?: "optional" | "disabled" | "required" | undefined;
9450
9486
  verification?: {
9451
9487
  active?: boolean | undefined;
9452
9488
  } | undefined;
@@ -9463,7 +9499,7 @@ declare function init(config: AuthHeroConfig): {
9463
9499
  active?: boolean | undefined;
9464
9500
  } | undefined;
9465
9501
  signup?: {
9466
- status?: "optional" | "required" | "disabled" | undefined;
9502
+ status?: "optional" | "disabled" | "required" | undefined;
9467
9503
  } | undefined;
9468
9504
  validation?: {
9469
9505
  max_length?: number | undefined;
@@ -9480,7 +9516,7 @@ declare function init(config: AuthHeroConfig): {
9480
9516
  active?: boolean | undefined;
9481
9517
  } | undefined;
9482
9518
  signup?: {
9483
- status?: "optional" | "required" | "disabled" | undefined;
9519
+ status?: "optional" | "disabled" | "required" | undefined;
9484
9520
  } | undefined;
9485
9521
  } | undefined;
9486
9522
  } | undefined;
@@ -9625,7 +9661,7 @@ declare function init(config: AuthHeroConfig): {
9625
9661
  active?: boolean | undefined;
9626
9662
  } | undefined;
9627
9663
  signup?: {
9628
- status?: "optional" | "required" | "disabled" | undefined;
9664
+ status?: "optional" | "disabled" | "required" | undefined;
9629
9665
  verification?: {
9630
9666
  active?: boolean | undefined;
9631
9667
  } | undefined;
@@ -9642,7 +9678,7 @@ declare function init(config: AuthHeroConfig): {
9642
9678
  active?: boolean | undefined;
9643
9679
  } | undefined;
9644
9680
  signup?: {
9645
- status?: "optional" | "required" | "disabled" | undefined;
9681
+ status?: "optional" | "disabled" | "required" | undefined;
9646
9682
  } | undefined;
9647
9683
  validation?: {
9648
9684
  max_length?: number | undefined;
@@ -9659,7 +9695,7 @@ declare function init(config: AuthHeroConfig): {
9659
9695
  active?: boolean | undefined;
9660
9696
  } | undefined;
9661
9697
  signup?: {
9662
- status?: "optional" | "required" | "disabled" | undefined;
9698
+ status?: "optional" | "disabled" | "required" | undefined;
9663
9699
  } | undefined;
9664
9700
  } | undefined;
9665
9701
  } | undefined;
@@ -9783,7 +9819,7 @@ declare function init(config: AuthHeroConfig): {
9783
9819
  active?: boolean | undefined;
9784
9820
  } | undefined;
9785
9821
  signup?: {
9786
- status?: "optional" | "required" | "disabled" | undefined;
9822
+ status?: "optional" | "disabled" | "required" | undefined;
9787
9823
  verification?: {
9788
9824
  active?: boolean | undefined;
9789
9825
  } | undefined;
@@ -9800,7 +9836,7 @@ declare function init(config: AuthHeroConfig): {
9800
9836
  active?: boolean | undefined;
9801
9837
  } | undefined;
9802
9838
  signup?: {
9803
- status?: "optional" | "required" | "disabled" | undefined;
9839
+ status?: "optional" | "disabled" | "required" | undefined;
9804
9840
  } | undefined;
9805
9841
  validation?: {
9806
9842
  max_length?: number | undefined;
@@ -9817,7 +9853,7 @@ declare function init(config: AuthHeroConfig): {
9817
9853
  active?: boolean | undefined;
9818
9854
  } | undefined;
9819
9855
  signup?: {
9820
- status?: "optional" | "required" | "disabled" | undefined;
9856
+ status?: "optional" | "disabled" | "required" | undefined;
9821
9857
  } | undefined;
9822
9858
  } | undefined;
9823
9859
  } | undefined;
@@ -9933,7 +9969,7 @@ declare function init(config: AuthHeroConfig): {
9933
9969
  };
9934
9970
  } | {
9935
9971
  mode: "inline";
9936
- status: "success" | "error";
9972
+ status: "error" | "success";
9937
9973
  connection_id: string;
9938
9974
  connection_name: string;
9939
9975
  strategy: string;
@@ -10512,7 +10548,7 @@ declare function init(config: AuthHeroConfig): {
10512
10548
  log_type: string;
10513
10549
  category: "user_action" | "admin_action" | "system" | "api";
10514
10550
  actor: {
10515
- type: "client_credentials" | "user" | "system" | "admin" | "api_key";
10551
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
10516
10552
  id?: string | undefined;
10517
10553
  email?: string | undefined;
10518
10554
  org_id?: string | undefined;
@@ -10820,7 +10856,7 @@ declare function init(config: AuthHeroConfig): {
10820
10856
  created_at: string;
10821
10857
  updated_at: string;
10822
10858
  name: string;
10823
- provider: "auth0" | "oidc" | "cognito" | "okta";
10859
+ provider: "auth0" | "cognito" | "okta" | "oidc";
10824
10860
  connection: string;
10825
10861
  enabled: boolean;
10826
10862
  credentials: {
@@ -10852,7 +10888,7 @@ declare function init(config: AuthHeroConfig): {
10852
10888
  created_at: string;
10853
10889
  updated_at: string;
10854
10890
  name: string;
10855
- provider: "auth0" | "oidc" | "cognito" | "okta";
10891
+ provider: "auth0" | "cognito" | "okta" | "oidc";
10856
10892
  connection: string;
10857
10893
  enabled: boolean;
10858
10894
  credentials: {
@@ -10878,7 +10914,7 @@ declare function init(config: AuthHeroConfig): {
10878
10914
  } & {
10879
10915
  json: {
10880
10916
  name: string;
10881
- provider: "auth0" | "oidc" | "cognito" | "okta";
10917
+ provider: "auth0" | "cognito" | "okta" | "oidc";
10882
10918
  connection: string;
10883
10919
  credentials: {
10884
10920
  domain: string;
@@ -10895,7 +10931,7 @@ declare function init(config: AuthHeroConfig): {
10895
10931
  created_at: string;
10896
10932
  updated_at: string;
10897
10933
  name: string;
10898
- provider: "auth0" | "oidc" | "cognito" | "okta";
10934
+ provider: "auth0" | "cognito" | "okta" | "oidc";
10899
10935
  connection: string;
10900
10936
  enabled: boolean;
10901
10937
  credentials: {
@@ -10926,7 +10962,7 @@ declare function init(config: AuthHeroConfig): {
10926
10962
  json: {
10927
10963
  id?: string | undefined;
10928
10964
  name?: string | undefined;
10929
- provider?: "auth0" | "oidc" | "cognito" | "okta" | undefined;
10965
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
10930
10966
  connection?: string | undefined;
10931
10967
  enabled?: boolean | undefined;
10932
10968
  credentials?: {
@@ -10942,7 +10978,7 @@ declare function init(config: AuthHeroConfig): {
10942
10978
  created_at: string;
10943
10979
  updated_at: string;
10944
10980
  name: string;
10945
- provider: "auth0" | "oidc" | "cognito" | "okta";
10981
+ provider: "auth0" | "cognito" | "okta" | "oidc";
10946
10982
  connection: string;
10947
10983
  enabled: boolean;
10948
10984
  credentials: {
@@ -11160,7 +11196,7 @@ declare function init(config: AuthHeroConfig): {
11160
11196
  };
11161
11197
  };
11162
11198
  output: {
11163
- type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11199
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11164
11200
  date: string;
11165
11201
  isMobile: boolean;
11166
11202
  log_id: string;
@@ -11199,7 +11235,7 @@ declare function init(config: AuthHeroConfig): {
11199
11235
  limit: number;
11200
11236
  length: number;
11201
11237
  logs: {
11202
- type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11238
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11203
11239
  date: string;
11204
11240
  isMobile: boolean;
11205
11241
  log_id: string;
@@ -11253,7 +11289,7 @@ declare function init(config: AuthHeroConfig): {
11253
11289
  };
11254
11290
  };
11255
11291
  output: {
11256
- type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11292
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11257
11293
  date: string;
11258
11294
  isMobile: boolean;
11259
11295
  log_id: string;
@@ -11334,7 +11370,7 @@ declare function init(config: AuthHeroConfig): {
11334
11370
  audience?: string | undefined;
11335
11371
  client_id?: string | undefined;
11336
11372
  allow_any_organization?: string | undefined;
11337
- subject_type?: "client" | "user" | undefined;
11373
+ subject_type?: "user" | "client" | undefined;
11338
11374
  };
11339
11375
  } & {
11340
11376
  header: {
@@ -11349,7 +11385,7 @@ declare function init(config: AuthHeroConfig): {
11349
11385
  organization_usage?: "deny" | "allow" | "require" | undefined;
11350
11386
  allow_any_organization?: boolean | undefined;
11351
11387
  is_system?: boolean | undefined;
11352
- subject_type?: "client" | "user" | undefined;
11388
+ subject_type?: "user" | "client" | undefined;
11353
11389
  authorization_details_types?: string[] | undefined;
11354
11390
  created_at?: string | undefined;
11355
11391
  updated_at?: string | undefined;
@@ -11365,7 +11401,7 @@ declare function init(config: AuthHeroConfig): {
11365
11401
  organization_usage?: "deny" | "allow" | "require" | undefined;
11366
11402
  allow_any_organization?: boolean | undefined;
11367
11403
  is_system?: boolean | undefined;
11368
- subject_type?: "client" | "user" | undefined;
11404
+ subject_type?: "user" | "client" | undefined;
11369
11405
  authorization_details_types?: string[] | undefined;
11370
11406
  created_at?: string | undefined;
11371
11407
  updated_at?: string | undefined;
@@ -11396,7 +11432,7 @@ declare function init(config: AuthHeroConfig): {
11396
11432
  organization_usage?: "deny" | "allow" | "require" | undefined;
11397
11433
  allow_any_organization?: boolean | undefined;
11398
11434
  is_system?: boolean | undefined;
11399
- subject_type?: "client" | "user" | undefined;
11435
+ subject_type?: "user" | "client" | undefined;
11400
11436
  authorization_details_types?: string[] | undefined;
11401
11437
  created_at?: string | undefined;
11402
11438
  updated_at?: string | undefined;
@@ -11441,7 +11477,7 @@ declare function init(config: AuthHeroConfig): {
11441
11477
  organization_usage?: "deny" | "allow" | "require" | undefined;
11442
11478
  allow_any_organization?: boolean | undefined;
11443
11479
  is_system?: boolean | undefined;
11444
- subject_type?: "client" | "user" | undefined;
11480
+ subject_type?: "user" | "client" | undefined;
11445
11481
  authorization_details_types?: string[] | undefined;
11446
11482
  };
11447
11483
  };
@@ -11453,7 +11489,7 @@ declare function init(config: AuthHeroConfig): {
11453
11489
  organization_usage?: "deny" | "allow" | "require" | undefined;
11454
11490
  allow_any_organization?: boolean | undefined;
11455
11491
  is_system?: boolean | undefined;
11456
- subject_type?: "client" | "user" | undefined;
11492
+ subject_type?: "user" | "client" | undefined;
11457
11493
  authorization_details_types?: string[] | undefined;
11458
11494
  created_at?: string | undefined;
11459
11495
  updated_at?: string | undefined;
@@ -11477,7 +11513,7 @@ declare function init(config: AuthHeroConfig): {
11477
11513
  organization_usage?: "deny" | "allow" | "require" | undefined;
11478
11514
  allow_any_organization?: boolean | undefined;
11479
11515
  is_system?: boolean | undefined;
11480
- subject_type?: "client" | "user" | undefined;
11516
+ subject_type?: "user" | "client" | undefined;
11481
11517
  authorization_details_types?: string[] | undefined;
11482
11518
  };
11483
11519
  };
@@ -11489,7 +11525,7 @@ declare function init(config: AuthHeroConfig): {
11489
11525
  organization_usage?: "deny" | "allow" | "require" | undefined;
11490
11526
  allow_any_organization?: boolean | undefined;
11491
11527
  is_system?: boolean | undefined;
11492
- subject_type?: "client" | "user" | undefined;
11528
+ subject_type?: "user" | "client" | undefined;
11493
11529
  authorization_details_types?: string[] | undefined;
11494
11530
  created_at?: string | undefined;
11495
11531
  updated_at?: string | undefined;
@@ -12255,7 +12291,7 @@ declare function init(config: AuthHeroConfig): {
12255
12291
  active?: boolean | undefined;
12256
12292
  } | undefined;
12257
12293
  signup?: {
12258
- status?: "optional" | "required" | "disabled" | undefined;
12294
+ status?: "optional" | "disabled" | "required" | undefined;
12259
12295
  verification?: {
12260
12296
  active?: boolean | undefined;
12261
12297
  } | undefined;
@@ -12272,7 +12308,7 @@ declare function init(config: AuthHeroConfig): {
12272
12308
  active?: boolean | undefined;
12273
12309
  } | undefined;
12274
12310
  signup?: {
12275
- status?: "optional" | "required" | "disabled" | undefined;
12311
+ status?: "optional" | "disabled" | "required" | undefined;
12276
12312
  } | undefined;
12277
12313
  validation?: {
12278
12314
  max_length?: number | undefined;
@@ -12289,7 +12325,7 @@ declare function init(config: AuthHeroConfig): {
12289
12325
  active?: boolean | undefined;
12290
12326
  } | undefined;
12291
12327
  signup?: {
12292
- status?: "optional" | "required" | "disabled" | undefined;
12328
+ status?: "optional" | "disabled" | "required" | undefined;
12293
12329
  } | undefined;
12294
12330
  } | undefined;
12295
12331
  } | undefined;
@@ -12409,7 +12445,7 @@ declare function init(config: AuthHeroConfig): {
12409
12445
  active?: boolean | undefined;
12410
12446
  } | undefined;
12411
12447
  signup?: {
12412
- status?: "optional" | "required" | "disabled" | undefined;
12448
+ status?: "optional" | "disabled" | "required" | undefined;
12413
12449
  verification?: {
12414
12450
  active?: boolean | undefined;
12415
12451
  } | undefined;
@@ -12426,7 +12462,7 @@ declare function init(config: AuthHeroConfig): {
12426
12462
  active?: boolean | undefined;
12427
12463
  } | undefined;
12428
12464
  signup?: {
12429
- status?: "optional" | "required" | "disabled" | undefined;
12465
+ status?: "optional" | "disabled" | "required" | undefined;
12430
12466
  } | undefined;
12431
12467
  validation?: {
12432
12468
  max_length?: number | undefined;
@@ -12443,7 +12479,7 @@ declare function init(config: AuthHeroConfig): {
12443
12479
  active?: boolean | undefined;
12444
12480
  } | undefined;
12445
12481
  signup?: {
12446
- status?: "optional" | "required" | "disabled" | undefined;
12482
+ status?: "optional" | "disabled" | "required" | undefined;
12447
12483
  } | undefined;
12448
12484
  } | undefined;
12449
12485
  } | undefined;
@@ -13397,7 +13433,7 @@ declare function init(config: AuthHeroConfig): {
13397
13433
  };
13398
13434
  };
13399
13435
  output: {
13400
- type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
13436
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
13401
13437
  date: string;
13402
13438
  isMobile: boolean;
13403
13439
  log_id: string;
@@ -13436,7 +13472,7 @@ declare function init(config: AuthHeroConfig): {
13436
13472
  limit: number;
13437
13473
  length: number;
13438
13474
  logs: {
13439
- type: "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
13475
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
13440
13476
  date: string;
13441
13477
  isMobile: boolean;
13442
13478
  log_id: string;
@@ -13751,7 +13787,7 @@ declare function init(config: AuthHeroConfig): {
13751
13787
  };
13752
13788
  } & {
13753
13789
  json: {
13754
- 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";
13790
+ 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";
13755
13791
  body: string;
13756
13792
  from: string;
13757
13793
  subject: string;
@@ -13772,7 +13808,7 @@ declare function init(config: AuthHeroConfig): {
13772
13808
  };
13773
13809
  } & {
13774
13810
  json: {
13775
- 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";
13811
+ 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";
13776
13812
  body: string;
13777
13813
  from: string;
13778
13814
  subject: string;
@@ -13784,7 +13820,7 @@ declare function init(config: AuthHeroConfig): {
13784
13820
  };
13785
13821
  };
13786
13822
  output: {
13787
- 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";
13823
+ 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";
13788
13824
  body: string;
13789
13825
  from: string;
13790
13826
  subject: string;
@@ -13803,7 +13839,7 @@ declare function init(config: AuthHeroConfig): {
13803
13839
  $get: {
13804
13840
  input: {
13805
13841
  param: {
13806
- 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";
13842
+ 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";
13807
13843
  };
13808
13844
  } & {
13809
13845
  header: {
@@ -13816,7 +13852,7 @@ declare function init(config: AuthHeroConfig): {
13816
13852
  } | {
13817
13853
  input: {
13818
13854
  param: {
13819
- 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";
13855
+ 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";
13820
13856
  };
13821
13857
  } & {
13822
13858
  header: {
@@ -13824,7 +13860,7 @@ declare function init(config: AuthHeroConfig): {
13824
13860
  };
13825
13861
  };
13826
13862
  output: {
13827
- 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";
13863
+ 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";
13828
13864
  body: string;
13829
13865
  from: string;
13830
13866
  subject: string;
@@ -13843,7 +13879,7 @@ declare function init(config: AuthHeroConfig): {
13843
13879
  $put: {
13844
13880
  input: {
13845
13881
  param: {
13846
- 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";
13882
+ 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";
13847
13883
  };
13848
13884
  } & {
13849
13885
  header: {
@@ -13851,7 +13887,7 @@ declare function init(config: AuthHeroConfig): {
13851
13887
  };
13852
13888
  } & {
13853
13889
  json: {
13854
- 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";
13890
+ 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";
13855
13891
  body: string;
13856
13892
  from: string;
13857
13893
  subject: string;
@@ -13863,7 +13899,7 @@ declare function init(config: AuthHeroConfig): {
13863
13899
  };
13864
13900
  };
13865
13901
  output: {
13866
- 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";
13902
+ 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";
13867
13903
  body: string;
13868
13904
  from: string;
13869
13905
  subject: string;
@@ -13882,7 +13918,7 @@ declare function init(config: AuthHeroConfig): {
13882
13918
  $patch: {
13883
13919
  input: {
13884
13920
  param: {
13885
- 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";
13921
+ 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";
13886
13922
  };
13887
13923
  } & {
13888
13924
  header: {
@@ -13890,7 +13926,7 @@ declare function init(config: AuthHeroConfig): {
13890
13926
  };
13891
13927
  } & {
13892
13928
  json: {
13893
- 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;
13929
+ 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;
13894
13930
  body?: string | undefined;
13895
13931
  from?: string | undefined;
13896
13932
  subject?: string | undefined;
@@ -13907,7 +13943,7 @@ declare function init(config: AuthHeroConfig): {
13907
13943
  } | {
13908
13944
  input: {
13909
13945
  param: {
13910
- 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";
13946
+ 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";
13911
13947
  };
13912
13948
  } & {
13913
13949
  header: {
@@ -13915,7 +13951,7 @@ declare function init(config: AuthHeroConfig): {
13915
13951
  };
13916
13952
  } & {
13917
13953
  json: {
13918
- 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;
13954
+ 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;
13919
13955
  body?: string | undefined;
13920
13956
  from?: string | undefined;
13921
13957
  subject?: string | undefined;
@@ -13927,7 +13963,7 @@ declare function init(config: AuthHeroConfig): {
13927
13963
  };
13928
13964
  };
13929
13965
  output: {
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";
13966
+ 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";
13931
13967
  body: string;
13932
13968
  from: string;
13933
13969
  subject: string;
@@ -14202,7 +14238,7 @@ declare function init(config: AuthHeroConfig): {
14202
14238
  type: "auth0_managed_certs" | "self_managed_certs";
14203
14239
  custom_domain_id: string;
14204
14240
  primary: boolean;
14205
- status: "disabled" | "pending" | "pending_verification" | "ready";
14241
+ status: "pending" | "disabled" | "pending_verification" | "ready";
14206
14242
  verification_method?: "txt" | undefined;
14207
14243
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14208
14244
  domain_metadata?: {
@@ -14243,7 +14279,7 @@ declare function init(config: AuthHeroConfig): {
14243
14279
  type: "auth0_managed_certs" | "self_managed_certs";
14244
14280
  custom_domain_id: string;
14245
14281
  primary: boolean;
14246
- status: "disabled" | "pending" | "pending_verification" | "ready";
14282
+ status: "pending" | "disabled" | "pending_verification" | "ready";
14247
14283
  verification_method?: "txt" | undefined;
14248
14284
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14249
14285
  domain_metadata?: {
@@ -14304,7 +14340,7 @@ declare function init(config: AuthHeroConfig): {
14304
14340
  domain_metadata?: Record<string, string> | undefined;
14305
14341
  custom_domain_id?: string | undefined;
14306
14342
  primary?: boolean | undefined;
14307
- status?: "disabled" | "pending" | "pending_verification" | "ready" | undefined;
14343
+ status?: "pending" | "disabled" | "pending_verification" | "ready" | undefined;
14308
14344
  origin_domain_name?: string | undefined;
14309
14345
  verification?: {
14310
14346
  methods: ({
@@ -14325,7 +14361,7 @@ declare function init(config: AuthHeroConfig): {
14325
14361
  type: "auth0_managed_certs" | "self_managed_certs";
14326
14362
  custom_domain_id: string;
14327
14363
  primary: boolean;
14328
- status: "disabled" | "pending" | "pending_verification" | "ready";
14364
+ status: "pending" | "disabled" | "pending_verification" | "ready";
14329
14365
  verification_method?: "txt" | undefined;
14330
14366
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14331
14367
  domain_metadata?: {
@@ -14372,7 +14408,7 @@ declare function init(config: AuthHeroConfig): {
14372
14408
  type: "auth0_managed_certs" | "self_managed_certs";
14373
14409
  custom_domain_id: string;
14374
14410
  primary: boolean;
14375
- status: "disabled" | "pending" | "pending_verification" | "ready";
14411
+ status: "pending" | "disabled" | "pending_verification" | "ready";
14376
14412
  verification_method?: "txt" | undefined;
14377
14413
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14378
14414
  domain_metadata?: {
@@ -14413,7 +14449,7 @@ declare function init(config: AuthHeroConfig): {
14413
14449
  type: "auth0_managed_certs" | "self_managed_certs";
14414
14450
  custom_domain_id: string;
14415
14451
  primary: boolean;
14416
- status: "disabled" | "pending" | "pending_verification" | "ready";
14452
+ status: "pending" | "disabled" | "pending_verification" | "ready";
14417
14453
  verification_method?: "txt" | undefined;
14418
14454
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14419
14455
  domain_metadata?: {
@@ -14973,7 +15009,7 @@ declare function init(config: AuthHeroConfig): {
14973
15009
  output: {
14974
15010
  id: string;
14975
15011
  trigger_id: string;
14976
- status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
15012
+ status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
14977
15013
  results: {
14978
15014
  action_name: string;
14979
15015
  error: {
@@ -15020,7 +15056,7 @@ declare function init(config: AuthHeroConfig): {
15020
15056
  logs: {
15021
15057
  action_name: string;
15022
15058
  lines: {
15023
- level: "log" | "error" | "info" | "warn" | "debug";
15059
+ level: "error" | "log" | "debug" | "info" | "warn";
15024
15060
  message: string;
15025
15061
  }[];
15026
15062
  }[];
@@ -15687,7 +15723,7 @@ declare function init(config: AuthHeroConfig): {
15687
15723
  args: hono_utils_types.JSONValue[];
15688
15724
  }[];
15689
15725
  logs: {
15690
- level: "log" | "error" | "info" | "warn" | "debug";
15726
+ level: "error" | "log" | "debug" | "info" | "warn";
15691
15727
  message: string;
15692
15728
  }[];
15693
15729
  error?: string | undefined;
@@ -16424,12 +16460,12 @@ declare function init(config: AuthHeroConfig): {
16424
16460
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16425
16461
  scope?: string | undefined;
16426
16462
  username?: string | undefined;
16427
- audience?: string | undefined;
16428
16463
  state?: string | undefined;
16464
+ act_as?: string | undefined;
16465
+ redirect_uri?: string | undefined;
16466
+ audience?: string | undefined;
16429
16467
  organization?: string | undefined;
16430
16468
  nonce?: string | undefined;
16431
- redirect_uri?: string | undefined;
16432
- act_as?: string | undefined;
16433
16469
  prompt?: string | undefined;
16434
16470
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16435
16471
  code_challenge?: string | undefined;
@@ -16460,12 +16496,12 @@ declare function init(config: AuthHeroConfig): {
16460
16496
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16461
16497
  scope?: string | undefined;
16462
16498
  username?: string | undefined;
16463
- audience?: string | undefined;
16464
16499
  state?: string | undefined;
16500
+ act_as?: string | undefined;
16501
+ redirect_uri?: string | undefined;
16502
+ audience?: string | undefined;
16465
16503
  organization?: string | undefined;
16466
16504
  nonce?: string | undefined;
16467
- redirect_uri?: string | undefined;
16468
- act_as?: string | undefined;
16469
16505
  prompt?: string | undefined;
16470
16506
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16471
16507
  code_challenge?: string | undefined;
@@ -16600,14 +16636,14 @@ declare function init(config: AuthHeroConfig): {
16600
16636
  input: {
16601
16637
  form: {
16602
16638
  token: string;
16603
- token_type_hint?: "access_token" | "refresh_token" | undefined;
16639
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
16604
16640
  client_id?: string | undefined;
16605
16641
  client_secret?: string | undefined;
16606
16642
  };
16607
16643
  } & {
16608
16644
  json: {
16609
16645
  token: string;
16610
- token_type_hint?: "access_token" | "refresh_token" | undefined;
16646
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
16611
16647
  client_id?: string | undefined;
16612
16648
  client_secret?: string | undefined;
16613
16649
  };
@@ -16619,14 +16655,14 @@ declare function init(config: AuthHeroConfig): {
16619
16655
  input: {
16620
16656
  form: {
16621
16657
  token: string;
16622
- token_type_hint?: "access_token" | "refresh_token" | undefined;
16658
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
16623
16659
  client_id?: string | undefined;
16624
16660
  client_secret?: string | undefined;
16625
16661
  };
16626
16662
  } & {
16627
16663
  json: {
16628
16664
  token: string;
16629
- token_type_hint?: "access_token" | "refresh_token" | undefined;
16665
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
16630
16666
  client_id?: string | undefined;
16631
16667
  client_secret?: string | undefined;
16632
16668
  };
@@ -16641,14 +16677,14 @@ declare function init(config: AuthHeroConfig): {
16641
16677
  input: {
16642
16678
  form: {
16643
16679
  token: string;
16644
- token_type_hint?: "access_token" | "refresh_token" | undefined;
16680
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
16645
16681
  client_id?: string | undefined;
16646
16682
  client_secret?: string | undefined;
16647
16683
  };
16648
16684
  } & {
16649
16685
  json: {
16650
16686
  token: string;
16651
- token_type_hint?: "access_token" | "refresh_token" | undefined;
16687
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
16652
16688
  client_id?: string | undefined;
16653
16689
  client_secret?: string | undefined;
16654
16690
  };
@@ -17852,7 +17888,7 @@ declare function init(config: AuthHeroConfig): {
17852
17888
  } & {
17853
17889
  form: {
17854
17890
  username: string;
17855
- login_selection?: "code" | "password" | undefined;
17891
+ login_selection?: "password" | "code" | undefined;
17856
17892
  };
17857
17893
  };
17858
17894
  output: {};
@@ -17866,7 +17902,7 @@ declare function init(config: AuthHeroConfig): {
17866
17902
  } & {
17867
17903
  form: {
17868
17904
  username: string;
17869
- login_selection?: "code" | "password" | undefined;
17905
+ login_selection?: "password" | "code" | undefined;
17870
17906
  };
17871
17907
  };
17872
17908
  output: {};
@@ -18215,7 +18251,7 @@ declare function init(config: AuthHeroConfig): {
18215
18251
  $get: {
18216
18252
  input: {
18217
18253
  param: {
18218
- 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";
18254
+ screen: "signup" | "account" | "login" | "reset-password" | "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";
18219
18255
  };
18220
18256
  } & {
18221
18257
  query: {
@@ -18231,7 +18267,7 @@ declare function init(config: AuthHeroConfig): {
18231
18267
  } | {
18232
18268
  input: {
18233
18269
  param: {
18234
- 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";
18270
+ screen: "signup" | "account" | "login" | "reset-password" | "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";
18235
18271
  };
18236
18272
  } & {
18237
18273
  query: {
@@ -18247,7 +18283,7 @@ declare function init(config: AuthHeroConfig): {
18247
18283
  } | {
18248
18284
  input: {
18249
18285
  param: {
18250
- 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";
18286
+ screen: "signup" | "account" | "login" | "reset-password" | "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";
18251
18287
  };
18252
18288
  } & {
18253
18289
  query: {
@@ -18401,5 +18437,5 @@ declare function init(config: AuthHeroConfig): {
18401
18437
  createX509Certificate: typeof createX509Certificate;
18402
18438
  };
18403
18439
 
18404
- export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createAuthMiddleware, createDefaultDestinations, createInMemoryCache, deepMergePatch, drainOutbox, fetchAll, init, injectTailwindCSS, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, waitUntil };
18440
+ export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createInMemoryCache, decryptField, deepMergePatch, drainOutbox, encryptField, fetchAll, init, injectTailwindCSS, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, waitUntil };
18405
18441
  export type { AuthHeroConfig, CreateDefaultDestinationsConfig, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };