authhero 8.2.1 → 8.3.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.
@@ -1826,27 +1826,27 @@ interface InMemoryCacheConfig {
1826
1826
  */
1827
1827
  declare function createInMemoryCache(config?: InMemoryCacheConfig): CacheAdapter;
1828
1828
 
1829
- /**
1830
- * Wraps a DataAdapters instance so that sensitive credential fields are
1831
- * transparently encrypted on write and decrypted on read. Only the adapters
1832
- * that hold secrets are wrapped; everything else passes through unchanged.
1833
- *
1834
- * Encrypted columns: clients.client_secret, connections.options
1835
- * (client_secret/app_secret/twilio_token/configuration.client_secret),
1836
- * email_providers.credentials, authentication_methods.totp_secret,
1837
- * migration_sources.credentials.client_secret.
1838
- *
1839
- * clientConnections.listByClient is also wrapped so its returned Connection
1840
- * objects are decrypted — getEnrichedClient uses this path to load connections
1841
- * for the OAuth strategies.
1842
- *
1843
- * Private keys (keys.pkcs7, dkim_private_key) are intentionally NOT covered.
1844
- */
1845
- declare function createEncryptedDataAdapter(data: DataAdapters, key: CryptoKey): DataAdapters;
1846
-
1847
1829
  declare const PREFIX = "enc:v1:";
1848
1830
  type EncryptedField = `${typeof PREFIX}${string}`;
1849
1831
  declare function isEncrypted(value: string): value is EncryptedField;
1832
+ /**
1833
+ * A set of AES-256-GCM keys addressable by id. `default` decrypts (and by
1834
+ * default encrypts) legacy unkeyed `enc:v1:` values; `keys[id]` handles values
1835
+ * tagged with that id (`enc:v1:<id>:`).
1836
+ *
1837
+ * This is what lets a single database hold ciphertext under more than one key —
1838
+ * e.g. a WFP tenant's own secrets under the tenant key and inherited control
1839
+ * plane secrets under a control-plane-only key the tenant operator never holds.
1840
+ */
1841
+ interface KeyRing {
1842
+ default: CryptoKey;
1843
+ keys?: Record<string, CryptoKey>;
1844
+ }
1845
+ /**
1846
+ * The key id a keyed value was encrypted under, or `undefined` for a legacy
1847
+ * unkeyed value (or a non-encrypted plaintext).
1848
+ */
1849
+ declare function parseKeyId(value: string): string | undefined;
1850
1850
  /**
1851
1851
  * Imports a base64-encoded 32-byte key as an AES-256-GCM CryptoKey. Throws if
1852
1852
  * the decoded key is not exactly 32 bytes so a misconfigured secret fails loudly
@@ -1864,6 +1864,74 @@ declare function encryptField(plaintext: string, key: CryptoKey): Promise<Encryp
1864
1864
  * prefixed value cannot be decrypted (wrong key or corrupted ciphertext).
1865
1865
  */
1866
1866
  declare function decryptField(value: string, key: CryptoKey): Promise<string>;
1867
+ /**
1868
+ * Encrypts a value using a key ring, optionally tagging it with `keyId` so the
1869
+ * same key is selected on read. With no `keyId` the value is encrypted under the
1870
+ * ring's default key and is byte-compatible with `encryptField` (legacy form).
1871
+ */
1872
+ declare function encryptFieldWithRing(plaintext: string, ring: KeyRing, keyId?: string): Promise<EncryptedField>;
1873
+ /**
1874
+ * Decrypts a value using a key ring, selecting the key from the id embedded in
1875
+ * the ciphertext (or the default key for legacy unkeyed values). Plaintext
1876
+ * values (no `enc:v1:` prefix) are returned unchanged.
1877
+ */
1878
+ declare function decryptFieldWithRing(value: string, ring: KeyRing): Promise<string>;
1879
+
1880
+ /**
1881
+ * Resolves which key id (if any) a tenant's secrets are encrypted under.
1882
+ * Returning `undefined` uses the ring's default key and produces legacy,
1883
+ * untagged `enc:v1:` ciphertext — byte-compatible with the single-key adapter.
1884
+ *
1885
+ * The canonical use: tag rows owned by the control plane tenant with a
1886
+ * control-plane-only key id, so the same database can hold a tenant's own
1887
+ * secrets (default key) alongside inherited control plane secrets the tenant
1888
+ * operator cannot decrypt.
1889
+ */
1890
+ type EncryptKeyIdResolver = (tenantId: string) => string | undefined;
1891
+ interface EncryptionOptions {
1892
+ resolveEncryptKeyId?: EncryptKeyIdResolver;
1893
+ }
1894
+ /**
1895
+ * Wraps a DataAdapters instance so that sensitive credential fields are
1896
+ * transparently encrypted on write and decrypted on read. Only the adapters
1897
+ * that hold secrets are wrapped; everything else passes through unchanged.
1898
+ *
1899
+ * Encrypted columns: clients.client_secret, connections.options
1900
+ * (client_secret/app_secret/twilio_token/configuration.client_secret),
1901
+ * email_providers.credentials, authentication_methods.totp_secret,
1902
+ * migration_sources.credentials.client_secret.
1903
+ *
1904
+ * clientConnections.listByClient is also wrapped so its returned Connection
1905
+ * objects are decrypted — getEnrichedClient uses this path to load connections
1906
+ * for the OAuth strategies.
1907
+ *
1908
+ * Private keys (keys.pkcs7, dkim_private_key) are intentionally NOT covered.
1909
+ */
1910
+ declare function createEncryptedDataAdapter(data: DataAdapters, key: CryptoKey): DataAdapters;
1911
+ /**
1912
+ * Like {@link createEncryptedDataAdapter}, but encrypts each tenant's secrets
1913
+ * under a key selected from a {@link KeyRing}. On read, the key is chosen from
1914
+ * the id embedded in the ciphertext, so a single database can mix values
1915
+ * encrypted under different keys.
1916
+ *
1917
+ * `options.resolveEncryptKeyId(tenantId)` decides which key id new ciphertext is
1918
+ * tagged with. Return `undefined` for the ring's default key (legacy untagged
1919
+ * form). The intended use is to tag control plane tenant rows with a
1920
+ * control-plane-only key id so an inheriting tenant can hold the inherited
1921
+ * secrets at rest without being able to decrypt them.
1922
+ *
1923
+ * @example
1924
+ * ```typescript
1925
+ * const adapters = createEncryptedDataAdapterWithKeyRing(base, {
1926
+ * default: tenantKey,
1927
+ * keys: { cp: controlPlaneKey },
1928
+ * }, {
1929
+ * resolveEncryptKeyId: (tenantId) =>
1930
+ * tenantId === CONTROL_PLANE_TENANT_ID ? "cp" : undefined,
1931
+ * });
1932
+ * ```
1933
+ */
1934
+ declare function createEncryptedDataAdapterWithKeyRing(data: DataAdapters, ring: KeyRing, options?: EncryptionOptions): DataAdapters;
1867
1935
 
1868
1936
  declare const mailgunCredentialsSchema: z.ZodObject<{
1869
1937
  api_key: z.ZodString;
@@ -2756,7 +2824,7 @@ declare function init(config: AuthHeroConfig): {
2756
2824
  };
2757
2825
  } & {
2758
2826
  json: {
2759
- type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2827
+ type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2760
2828
  phone_number?: string | undefined;
2761
2829
  totp_secret?: string | undefined;
2762
2830
  credential_id?: string | undefined;
@@ -2896,7 +2964,7 @@ declare function init(config: AuthHeroConfig): {
2896
2964
  };
2897
2965
  };
2898
2966
  output: {
2899
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2967
+ name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "push-notification" | "recovery-code" | "duo";
2900
2968
  enabled: boolean;
2901
2969
  trial_expired?: boolean | undefined;
2902
2970
  }[];
@@ -3051,7 +3119,7 @@ declare function init(config: AuthHeroConfig): {
3051
3119
  $get: {
3052
3120
  input: {
3053
3121
  param: {
3054
- factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3122
+ factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "push-notification" | "recovery-code" | "duo";
3055
3123
  };
3056
3124
  } & {
3057
3125
  header: {
@@ -3059,7 +3127,7 @@ declare function init(config: AuthHeroConfig): {
3059
3127
  };
3060
3128
  };
3061
3129
  output: {
3062
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3130
+ name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "push-notification" | "recovery-code" | "duo";
3063
3131
  enabled: boolean;
3064
3132
  trial_expired?: boolean | undefined;
3065
3133
  };
@@ -3072,7 +3140,7 @@ declare function init(config: AuthHeroConfig): {
3072
3140
  $put: {
3073
3141
  input: {
3074
3142
  param: {
3075
- factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3143
+ factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "push-notification" | "recovery-code" | "duo";
3076
3144
  };
3077
3145
  } & {
3078
3146
  header: {
@@ -3084,7 +3152,7 @@ declare function init(config: AuthHeroConfig): {
3084
3152
  };
3085
3153
  };
3086
3154
  output: {
3087
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3155
+ name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "push-notification" | "recovery-code" | "duo";
3088
3156
  enabled: boolean;
3089
3157
  trial_expired?: boolean | undefined;
3090
3158
  };
@@ -3830,9 +3898,9 @@ declare function init(config: AuthHeroConfig): {
3830
3898
  email?: string | undefined;
3831
3899
  };
3832
3900
  id?: string | undefined;
3833
- connection_id?: string | undefined;
3834
3901
  app_metadata?: Record<string, any> | undefined;
3835
3902
  user_metadata?: Record<string, any> | undefined;
3903
+ connection_id?: string | undefined;
3836
3904
  roles?: string[] | undefined;
3837
3905
  ttl_sec?: number | undefined;
3838
3906
  send_invitation_email?: boolean | undefined;
@@ -4017,8 +4085,8 @@ declare function init(config: AuthHeroConfig): {
4017
4085
  };
4018
4086
  } & {
4019
4087
  json: {
4020
- assign_membership_on_login?: boolean | undefined;
4021
4088
  show_as_button?: boolean | undefined;
4089
+ assign_membership_on_login?: boolean | undefined;
4022
4090
  is_signup_enabled?: boolean | undefined;
4023
4091
  };
4024
4092
  };
@@ -5260,7 +5328,7 @@ declare function init(config: AuthHeroConfig): {
5260
5328
  hint?: string | undefined;
5261
5329
  messages?: {
5262
5330
  text: string;
5263
- type: "success" | "error" | "info" | "warning";
5331
+ type: "error" | "success" | "info" | "warning";
5264
5332
  id?: number | undefined;
5265
5333
  }[] | undefined;
5266
5334
  required?: boolean | undefined;
@@ -5278,7 +5346,7 @@ declare function init(config: AuthHeroConfig): {
5278
5346
  hint?: string | undefined;
5279
5347
  messages?: {
5280
5348
  text: string;
5281
- type: "success" | "error" | "info" | "warning";
5349
+ type: "error" | "success" | "info" | "warning";
5282
5350
  id?: number | undefined;
5283
5351
  }[] | undefined;
5284
5352
  required?: boolean | undefined;
@@ -5302,7 +5370,7 @@ declare function init(config: AuthHeroConfig): {
5302
5370
  hint?: string | undefined;
5303
5371
  messages?: {
5304
5372
  text: string;
5305
- type: "success" | "error" | "info" | "warning";
5373
+ type: "error" | "success" | "info" | "warning";
5306
5374
  id?: number | undefined;
5307
5375
  }[] | undefined;
5308
5376
  required?: boolean | undefined;
@@ -5326,7 +5394,7 @@ declare function init(config: AuthHeroConfig): {
5326
5394
  hint?: string | undefined;
5327
5395
  messages?: {
5328
5396
  text: string;
5329
- type: "success" | "error" | "info" | "warning";
5397
+ type: "error" | "success" | "info" | "warning";
5330
5398
  id?: number | undefined;
5331
5399
  }[] | undefined;
5332
5400
  required?: boolean | undefined;
@@ -5355,7 +5423,7 @@ declare function init(config: AuthHeroConfig): {
5355
5423
  hint?: string | undefined;
5356
5424
  messages?: {
5357
5425
  text: string;
5358
- type: "success" | "error" | "info" | "warning";
5426
+ type: "error" | "success" | "info" | "warning";
5359
5427
  id?: number | undefined;
5360
5428
  }[] | undefined;
5361
5429
  required?: boolean | undefined;
@@ -5370,7 +5438,7 @@ declare function init(config: AuthHeroConfig): {
5370
5438
  hint?: string | undefined;
5371
5439
  messages?: {
5372
5440
  text: string;
5373
- type: "success" | "error" | "info" | "warning";
5441
+ type: "error" | "success" | "info" | "warning";
5374
5442
  id?: number | undefined;
5375
5443
  }[] | undefined;
5376
5444
  required?: boolean | undefined;
@@ -5391,7 +5459,7 @@ declare function init(config: AuthHeroConfig): {
5391
5459
  hint?: string | undefined;
5392
5460
  messages?: {
5393
5461
  text: string;
5394
- type: "success" | "error" | "info" | "warning";
5462
+ type: "error" | "success" | "info" | "warning";
5395
5463
  id?: number | undefined;
5396
5464
  }[] | undefined;
5397
5465
  required?: boolean | undefined;
@@ -5416,7 +5484,7 @@ declare function init(config: AuthHeroConfig): {
5416
5484
  hint?: string | undefined;
5417
5485
  messages?: {
5418
5486
  text: string;
5419
- type: "success" | "error" | "info" | "warning";
5487
+ type: "error" | "success" | "info" | "warning";
5420
5488
  id?: number | undefined;
5421
5489
  }[] | undefined;
5422
5490
  required?: boolean | undefined;
@@ -5435,7 +5503,7 @@ declare function init(config: AuthHeroConfig): {
5435
5503
  hint?: string | undefined;
5436
5504
  messages?: {
5437
5505
  text: string;
5438
- type: "success" | "error" | "info" | "warning";
5506
+ type: "error" | "success" | "info" | "warning";
5439
5507
  id?: number | undefined;
5440
5508
  }[] | undefined;
5441
5509
  required?: boolean | undefined;
@@ -5455,7 +5523,7 @@ declare function init(config: AuthHeroConfig): {
5455
5523
  hint?: string | undefined;
5456
5524
  messages?: {
5457
5525
  text: string;
5458
- type: "success" | "error" | "info" | "warning";
5526
+ type: "error" | "success" | "info" | "warning";
5459
5527
  id?: number | undefined;
5460
5528
  }[] | undefined;
5461
5529
  required?: boolean | undefined;
@@ -5474,7 +5542,7 @@ declare function init(config: AuthHeroConfig): {
5474
5542
  hint?: string | undefined;
5475
5543
  messages?: {
5476
5544
  text: string;
5477
- type: "success" | "error" | "info" | "warning";
5545
+ type: "error" | "success" | "info" | "warning";
5478
5546
  id?: number | undefined;
5479
5547
  }[] | undefined;
5480
5548
  required?: boolean | undefined;
@@ -5496,7 +5564,7 @@ declare function init(config: AuthHeroConfig): {
5496
5564
  hint?: string | undefined;
5497
5565
  messages?: {
5498
5566
  text: string;
5499
- type: "success" | "error" | "info" | "warning";
5567
+ type: "error" | "success" | "info" | "warning";
5500
5568
  id?: number | undefined;
5501
5569
  }[] | undefined;
5502
5570
  required?: boolean | undefined;
@@ -5518,7 +5586,7 @@ declare function init(config: AuthHeroConfig): {
5518
5586
  hint?: string | undefined;
5519
5587
  messages?: {
5520
5588
  text: string;
5521
- type: "success" | "error" | "info" | "warning";
5589
+ type: "error" | "success" | "info" | "warning";
5522
5590
  id?: number | undefined;
5523
5591
  }[] | undefined;
5524
5592
  required?: boolean | undefined;
@@ -5537,7 +5605,7 @@ declare function init(config: AuthHeroConfig): {
5537
5605
  hint?: string | undefined;
5538
5606
  messages?: {
5539
5607
  text: string;
5540
- type: "success" | "error" | "info" | "warning";
5608
+ type: "error" | "success" | "info" | "warning";
5541
5609
  id?: number | undefined;
5542
5610
  }[] | undefined;
5543
5611
  required?: boolean | undefined;
@@ -5562,7 +5630,7 @@ declare function init(config: AuthHeroConfig): {
5562
5630
  hint?: string | undefined;
5563
5631
  messages?: {
5564
5632
  text: string;
5565
- type: "success" | "error" | "info" | "warning";
5633
+ type: "error" | "success" | "info" | "warning";
5566
5634
  id?: number | undefined;
5567
5635
  }[] | undefined;
5568
5636
  required?: boolean | undefined;
@@ -5583,7 +5651,7 @@ declare function init(config: AuthHeroConfig): {
5583
5651
  hint?: string | undefined;
5584
5652
  messages?: {
5585
5653
  text: string;
5586
- type: "success" | "error" | "info" | "warning";
5654
+ type: "error" | "success" | "info" | "warning";
5587
5655
  id?: number | undefined;
5588
5656
  }[] | undefined;
5589
5657
  required?: boolean | undefined;
@@ -5604,7 +5672,7 @@ declare function init(config: AuthHeroConfig): {
5604
5672
  hint?: string | undefined;
5605
5673
  messages?: {
5606
5674
  text: string;
5607
- type: "success" | "error" | "info" | "warning";
5675
+ type: "error" | "success" | "info" | "warning";
5608
5676
  id?: number | undefined;
5609
5677
  }[] | undefined;
5610
5678
  required?: boolean | undefined;
@@ -5837,7 +5905,7 @@ declare function init(config: AuthHeroConfig): {
5837
5905
  hint?: string | undefined;
5838
5906
  messages?: {
5839
5907
  text: string;
5840
- type: "success" | "error" | "info" | "warning";
5908
+ type: "error" | "success" | "info" | "warning";
5841
5909
  id?: number | undefined;
5842
5910
  }[] | undefined;
5843
5911
  required?: boolean | undefined;
@@ -5855,7 +5923,7 @@ declare function init(config: AuthHeroConfig): {
5855
5923
  hint?: string | undefined;
5856
5924
  messages?: {
5857
5925
  text: string;
5858
- type: "success" | "error" | "info" | "warning";
5926
+ type: "error" | "success" | "info" | "warning";
5859
5927
  id?: number | undefined;
5860
5928
  }[] | undefined;
5861
5929
  required?: boolean | undefined;
@@ -5879,7 +5947,7 @@ declare function init(config: AuthHeroConfig): {
5879
5947
  hint?: string | undefined;
5880
5948
  messages?: {
5881
5949
  text: string;
5882
- type: "success" | "error" | "info" | "warning";
5950
+ type: "error" | "success" | "info" | "warning";
5883
5951
  id?: number | undefined;
5884
5952
  }[] | undefined;
5885
5953
  required?: boolean | undefined;
@@ -5903,7 +5971,7 @@ declare function init(config: AuthHeroConfig): {
5903
5971
  hint?: string | undefined;
5904
5972
  messages?: {
5905
5973
  text: string;
5906
- type: "success" | "error" | "info" | "warning";
5974
+ type: "error" | "success" | "info" | "warning";
5907
5975
  id?: number | undefined;
5908
5976
  }[] | undefined;
5909
5977
  required?: boolean | undefined;
@@ -5932,7 +6000,7 @@ declare function init(config: AuthHeroConfig): {
5932
6000
  hint?: string | undefined;
5933
6001
  messages?: {
5934
6002
  text: string;
5935
- type: "success" | "error" | "info" | "warning";
6003
+ type: "error" | "success" | "info" | "warning";
5936
6004
  id?: number | undefined;
5937
6005
  }[] | undefined;
5938
6006
  required?: boolean | undefined;
@@ -5947,7 +6015,7 @@ declare function init(config: AuthHeroConfig): {
5947
6015
  hint?: string | undefined;
5948
6016
  messages?: {
5949
6017
  text: string;
5950
- type: "success" | "error" | "info" | "warning";
6018
+ type: "error" | "success" | "info" | "warning";
5951
6019
  id?: number | undefined;
5952
6020
  }[] | undefined;
5953
6021
  required?: boolean | undefined;
@@ -5968,7 +6036,7 @@ declare function init(config: AuthHeroConfig): {
5968
6036
  hint?: string | undefined;
5969
6037
  messages?: {
5970
6038
  text: string;
5971
- type: "success" | "error" | "info" | "warning";
6039
+ type: "error" | "success" | "info" | "warning";
5972
6040
  id?: number | undefined;
5973
6041
  }[] | undefined;
5974
6042
  required?: boolean | undefined;
@@ -5993,7 +6061,7 @@ declare function init(config: AuthHeroConfig): {
5993
6061
  hint?: string | undefined;
5994
6062
  messages?: {
5995
6063
  text: string;
5996
- type: "success" | "error" | "info" | "warning";
6064
+ type: "error" | "success" | "info" | "warning";
5997
6065
  id?: number | undefined;
5998
6066
  }[] | undefined;
5999
6067
  required?: boolean | undefined;
@@ -6012,7 +6080,7 @@ declare function init(config: AuthHeroConfig): {
6012
6080
  hint?: string | undefined;
6013
6081
  messages?: {
6014
6082
  text: string;
6015
- type: "success" | "error" | "info" | "warning";
6083
+ type: "error" | "success" | "info" | "warning";
6016
6084
  id?: number | undefined;
6017
6085
  }[] | undefined;
6018
6086
  required?: boolean | undefined;
@@ -6032,7 +6100,7 @@ declare function init(config: AuthHeroConfig): {
6032
6100
  hint?: string | undefined;
6033
6101
  messages?: {
6034
6102
  text: string;
6035
- type: "success" | "error" | "info" | "warning";
6103
+ type: "error" | "success" | "info" | "warning";
6036
6104
  id?: number | undefined;
6037
6105
  }[] | undefined;
6038
6106
  required?: boolean | undefined;
@@ -6051,7 +6119,7 @@ declare function init(config: AuthHeroConfig): {
6051
6119
  hint?: string | undefined;
6052
6120
  messages?: {
6053
6121
  text: string;
6054
- type: "success" | "error" | "info" | "warning";
6122
+ type: "error" | "success" | "info" | "warning";
6055
6123
  id?: number | undefined;
6056
6124
  }[] | undefined;
6057
6125
  required?: boolean | undefined;
@@ -6073,7 +6141,7 @@ declare function init(config: AuthHeroConfig): {
6073
6141
  hint?: string | undefined;
6074
6142
  messages?: {
6075
6143
  text: string;
6076
- type: "success" | "error" | "info" | "warning";
6144
+ type: "error" | "success" | "info" | "warning";
6077
6145
  id?: number | undefined;
6078
6146
  }[] | undefined;
6079
6147
  required?: boolean | undefined;
@@ -6095,7 +6163,7 @@ declare function init(config: AuthHeroConfig): {
6095
6163
  hint?: string | undefined;
6096
6164
  messages?: {
6097
6165
  text: string;
6098
- type: "success" | "error" | "info" | "warning";
6166
+ type: "error" | "success" | "info" | "warning";
6099
6167
  id?: number | undefined;
6100
6168
  }[] | undefined;
6101
6169
  required?: boolean | undefined;
@@ -6114,7 +6182,7 @@ declare function init(config: AuthHeroConfig): {
6114
6182
  hint?: string | undefined;
6115
6183
  messages?: {
6116
6184
  text: string;
6117
- type: "success" | "error" | "info" | "warning";
6185
+ type: "error" | "success" | "info" | "warning";
6118
6186
  id?: number | undefined;
6119
6187
  }[] | undefined;
6120
6188
  required?: boolean | undefined;
@@ -6139,7 +6207,7 @@ declare function init(config: AuthHeroConfig): {
6139
6207
  hint?: string | undefined;
6140
6208
  messages?: {
6141
6209
  text: string;
6142
- type: "success" | "error" | "info" | "warning";
6210
+ type: "error" | "success" | "info" | "warning";
6143
6211
  id?: number | undefined;
6144
6212
  }[] | undefined;
6145
6213
  required?: boolean | undefined;
@@ -6160,7 +6228,7 @@ declare function init(config: AuthHeroConfig): {
6160
6228
  hint?: string | undefined;
6161
6229
  messages?: {
6162
6230
  text: string;
6163
- type: "success" | "error" | "info" | "warning";
6231
+ type: "error" | "success" | "info" | "warning";
6164
6232
  id?: number | undefined;
6165
6233
  }[] | undefined;
6166
6234
  required?: boolean | undefined;
@@ -6181,7 +6249,7 @@ declare function init(config: AuthHeroConfig): {
6181
6249
  hint?: string | undefined;
6182
6250
  messages?: {
6183
6251
  text: string;
6184
- type: "success" | "error" | "info" | "warning";
6252
+ type: "error" | "success" | "info" | "warning";
6185
6253
  id?: number | undefined;
6186
6254
  }[] | undefined;
6187
6255
  required?: boolean | undefined;
@@ -6429,7 +6497,7 @@ declare function init(config: AuthHeroConfig): {
6429
6497
  hint?: string | undefined;
6430
6498
  messages?: {
6431
6499
  text: string;
6432
- type: "success" | "error" | "info" | "warning";
6500
+ type: "error" | "success" | "info" | "warning";
6433
6501
  id?: number | undefined;
6434
6502
  }[] | undefined;
6435
6503
  required?: boolean | undefined;
@@ -6447,7 +6515,7 @@ declare function init(config: AuthHeroConfig): {
6447
6515
  hint?: string | undefined;
6448
6516
  messages?: {
6449
6517
  text: string;
6450
- type: "success" | "error" | "info" | "warning";
6518
+ type: "error" | "success" | "info" | "warning";
6451
6519
  id?: number | undefined;
6452
6520
  }[] | undefined;
6453
6521
  required?: boolean | undefined;
@@ -6471,7 +6539,7 @@ declare function init(config: AuthHeroConfig): {
6471
6539
  hint?: string | undefined;
6472
6540
  messages?: {
6473
6541
  text: string;
6474
- type: "success" | "error" | "info" | "warning";
6542
+ type: "error" | "success" | "info" | "warning";
6475
6543
  id?: number | undefined;
6476
6544
  }[] | undefined;
6477
6545
  required?: boolean | undefined;
@@ -6495,7 +6563,7 @@ declare function init(config: AuthHeroConfig): {
6495
6563
  hint?: string | undefined;
6496
6564
  messages?: {
6497
6565
  text: string;
6498
- type: "success" | "error" | "info" | "warning";
6566
+ type: "error" | "success" | "info" | "warning";
6499
6567
  id?: number | undefined;
6500
6568
  }[] | undefined;
6501
6569
  required?: boolean | undefined;
@@ -6524,7 +6592,7 @@ declare function init(config: AuthHeroConfig): {
6524
6592
  hint?: string | undefined;
6525
6593
  messages?: {
6526
6594
  text: string;
6527
- type: "success" | "error" | "info" | "warning";
6595
+ type: "error" | "success" | "info" | "warning";
6528
6596
  id?: number | undefined;
6529
6597
  }[] | undefined;
6530
6598
  required?: boolean | undefined;
@@ -6539,7 +6607,7 @@ declare function init(config: AuthHeroConfig): {
6539
6607
  hint?: string | undefined;
6540
6608
  messages?: {
6541
6609
  text: string;
6542
- type: "success" | "error" | "info" | "warning";
6610
+ type: "error" | "success" | "info" | "warning";
6543
6611
  id?: number | undefined;
6544
6612
  }[] | undefined;
6545
6613
  required?: boolean | undefined;
@@ -6560,7 +6628,7 @@ declare function init(config: AuthHeroConfig): {
6560
6628
  hint?: string | undefined;
6561
6629
  messages?: {
6562
6630
  text: string;
6563
- type: "success" | "error" | "info" | "warning";
6631
+ type: "error" | "success" | "info" | "warning";
6564
6632
  id?: number | undefined;
6565
6633
  }[] | undefined;
6566
6634
  required?: boolean | undefined;
@@ -6585,7 +6653,7 @@ declare function init(config: AuthHeroConfig): {
6585
6653
  hint?: string | undefined;
6586
6654
  messages?: {
6587
6655
  text: string;
6588
- type: "success" | "error" | "info" | "warning";
6656
+ type: "error" | "success" | "info" | "warning";
6589
6657
  id?: number | undefined;
6590
6658
  }[] | undefined;
6591
6659
  required?: boolean | undefined;
@@ -6604,7 +6672,7 @@ declare function init(config: AuthHeroConfig): {
6604
6672
  hint?: string | undefined;
6605
6673
  messages?: {
6606
6674
  text: string;
6607
- type: "success" | "error" | "info" | "warning";
6675
+ type: "error" | "success" | "info" | "warning";
6608
6676
  id?: number | undefined;
6609
6677
  }[] | undefined;
6610
6678
  required?: boolean | undefined;
@@ -6624,7 +6692,7 @@ declare function init(config: AuthHeroConfig): {
6624
6692
  hint?: string | undefined;
6625
6693
  messages?: {
6626
6694
  text: string;
6627
- type: "success" | "error" | "info" | "warning";
6695
+ type: "error" | "success" | "info" | "warning";
6628
6696
  id?: number | undefined;
6629
6697
  }[] | undefined;
6630
6698
  required?: boolean | undefined;
@@ -6643,7 +6711,7 @@ declare function init(config: AuthHeroConfig): {
6643
6711
  hint?: string | undefined;
6644
6712
  messages?: {
6645
6713
  text: string;
6646
- type: "success" | "error" | "info" | "warning";
6714
+ type: "error" | "success" | "info" | "warning";
6647
6715
  id?: number | undefined;
6648
6716
  }[] | undefined;
6649
6717
  required?: boolean | undefined;
@@ -6665,7 +6733,7 @@ declare function init(config: AuthHeroConfig): {
6665
6733
  hint?: string | undefined;
6666
6734
  messages?: {
6667
6735
  text: string;
6668
- type: "success" | "error" | "info" | "warning";
6736
+ type: "error" | "success" | "info" | "warning";
6669
6737
  id?: number | undefined;
6670
6738
  }[] | undefined;
6671
6739
  required?: boolean | undefined;
@@ -6687,7 +6755,7 @@ declare function init(config: AuthHeroConfig): {
6687
6755
  hint?: string | undefined;
6688
6756
  messages?: {
6689
6757
  text: string;
6690
- type: "success" | "error" | "info" | "warning";
6758
+ type: "error" | "success" | "info" | "warning";
6691
6759
  id?: number | undefined;
6692
6760
  }[] | undefined;
6693
6761
  required?: boolean | undefined;
@@ -6706,7 +6774,7 @@ declare function init(config: AuthHeroConfig): {
6706
6774
  hint?: string | undefined;
6707
6775
  messages?: {
6708
6776
  text: string;
6709
- type: "success" | "error" | "info" | "warning";
6777
+ type: "error" | "success" | "info" | "warning";
6710
6778
  id?: number | undefined;
6711
6779
  }[] | undefined;
6712
6780
  required?: boolean | undefined;
@@ -6731,7 +6799,7 @@ declare function init(config: AuthHeroConfig): {
6731
6799
  hint?: string | undefined;
6732
6800
  messages?: {
6733
6801
  text: string;
6734
- type: "success" | "error" | "info" | "warning";
6802
+ type: "error" | "success" | "info" | "warning";
6735
6803
  id?: number | undefined;
6736
6804
  }[] | undefined;
6737
6805
  required?: boolean | undefined;
@@ -6752,7 +6820,7 @@ declare function init(config: AuthHeroConfig): {
6752
6820
  hint?: string | undefined;
6753
6821
  messages?: {
6754
6822
  text: string;
6755
- type: "success" | "error" | "info" | "warning";
6823
+ type: "error" | "success" | "info" | "warning";
6756
6824
  id?: number | undefined;
6757
6825
  }[] | undefined;
6758
6826
  required?: boolean | undefined;
@@ -6773,7 +6841,7 @@ declare function init(config: AuthHeroConfig): {
6773
6841
  hint?: string | undefined;
6774
6842
  messages?: {
6775
6843
  text: string;
6776
- type: "success" | "error" | "info" | "warning";
6844
+ type: "error" | "success" | "info" | "warning";
6777
6845
  id?: number | undefined;
6778
6846
  }[] | undefined;
6779
6847
  required?: boolean | undefined;
@@ -7027,7 +7095,7 @@ declare function init(config: AuthHeroConfig): {
7027
7095
  hint?: string | undefined;
7028
7096
  messages?: {
7029
7097
  text: string;
7030
- type: "success" | "error" | "info" | "warning";
7098
+ type: "error" | "success" | "info" | "warning";
7031
7099
  id?: number | undefined;
7032
7100
  }[] | undefined;
7033
7101
  required?: boolean | undefined;
@@ -7045,7 +7113,7 @@ declare function init(config: AuthHeroConfig): {
7045
7113
  hint?: string | undefined;
7046
7114
  messages?: {
7047
7115
  text: string;
7048
- type: "success" | "error" | "info" | "warning";
7116
+ type: "error" | "success" | "info" | "warning";
7049
7117
  id?: number | undefined;
7050
7118
  }[] | undefined;
7051
7119
  required?: boolean | undefined;
@@ -7069,7 +7137,7 @@ declare function init(config: AuthHeroConfig): {
7069
7137
  hint?: string | undefined;
7070
7138
  messages?: {
7071
7139
  text: string;
7072
- type: "success" | "error" | "info" | "warning";
7140
+ type: "error" | "success" | "info" | "warning";
7073
7141
  id?: number | undefined;
7074
7142
  }[] | undefined;
7075
7143
  required?: boolean | undefined;
@@ -7093,7 +7161,7 @@ declare function init(config: AuthHeroConfig): {
7093
7161
  hint?: string | undefined;
7094
7162
  messages?: {
7095
7163
  text: string;
7096
- type: "success" | "error" | "info" | "warning";
7164
+ type: "error" | "success" | "info" | "warning";
7097
7165
  id?: number | undefined;
7098
7166
  }[] | undefined;
7099
7167
  required?: boolean | undefined;
@@ -7118,7 +7186,7 @@ declare function init(config: AuthHeroConfig): {
7118
7186
  hint?: string | undefined;
7119
7187
  messages?: {
7120
7188
  text: string;
7121
- type: "success" | "error" | "info" | "warning";
7189
+ type: "error" | "success" | "info" | "warning";
7122
7190
  id?: number | undefined;
7123
7191
  }[] | undefined;
7124
7192
  required?: boolean | undefined;
@@ -7133,7 +7201,7 @@ declare function init(config: AuthHeroConfig): {
7133
7201
  hint?: string | undefined;
7134
7202
  messages?: {
7135
7203
  text: string;
7136
- type: "success" | "error" | "info" | "warning";
7204
+ type: "error" | "success" | "info" | "warning";
7137
7205
  id?: number | undefined;
7138
7206
  }[] | undefined;
7139
7207
  required?: boolean | undefined;
@@ -7154,7 +7222,7 @@ declare function init(config: AuthHeroConfig): {
7154
7222
  hint?: string | undefined;
7155
7223
  messages?: {
7156
7224
  text: string;
7157
- type: "success" | "error" | "info" | "warning";
7225
+ type: "error" | "success" | "info" | "warning";
7158
7226
  id?: number | undefined;
7159
7227
  }[] | undefined;
7160
7228
  required?: boolean | undefined;
@@ -7179,7 +7247,7 @@ declare function init(config: AuthHeroConfig): {
7179
7247
  hint?: string | undefined;
7180
7248
  messages?: {
7181
7249
  text: string;
7182
- type: "success" | "error" | "info" | "warning";
7250
+ type: "error" | "success" | "info" | "warning";
7183
7251
  id?: number | undefined;
7184
7252
  }[] | undefined;
7185
7253
  required?: boolean | undefined;
@@ -7198,7 +7266,7 @@ declare function init(config: AuthHeroConfig): {
7198
7266
  hint?: string | undefined;
7199
7267
  messages?: {
7200
7268
  text: string;
7201
- type: "success" | "error" | "info" | "warning";
7269
+ type: "error" | "success" | "info" | "warning";
7202
7270
  id?: number | undefined;
7203
7271
  }[] | undefined;
7204
7272
  required?: boolean | undefined;
@@ -7218,7 +7286,7 @@ declare function init(config: AuthHeroConfig): {
7218
7286
  hint?: string | undefined;
7219
7287
  messages?: {
7220
7288
  text: string;
7221
- type: "success" | "error" | "info" | "warning";
7289
+ type: "error" | "success" | "info" | "warning";
7222
7290
  id?: number | undefined;
7223
7291
  }[] | undefined;
7224
7292
  required?: boolean | undefined;
@@ -7237,7 +7305,7 @@ declare function init(config: AuthHeroConfig): {
7237
7305
  hint?: string | undefined;
7238
7306
  messages?: {
7239
7307
  text: string;
7240
- type: "success" | "error" | "info" | "warning";
7308
+ type: "error" | "success" | "info" | "warning";
7241
7309
  id?: number | undefined;
7242
7310
  }[] | undefined;
7243
7311
  required?: boolean | undefined;
@@ -7259,7 +7327,7 @@ declare function init(config: AuthHeroConfig): {
7259
7327
  hint?: string | undefined;
7260
7328
  messages?: {
7261
7329
  text: string;
7262
- type: "success" | "error" | "info" | "warning";
7330
+ type: "error" | "success" | "info" | "warning";
7263
7331
  id?: number | undefined;
7264
7332
  }[] | undefined;
7265
7333
  required?: boolean | undefined;
@@ -7281,7 +7349,7 @@ declare function init(config: AuthHeroConfig): {
7281
7349
  hint?: string | undefined;
7282
7350
  messages?: {
7283
7351
  text: string;
7284
- type: "success" | "error" | "info" | "warning";
7352
+ type: "error" | "success" | "info" | "warning";
7285
7353
  id?: number | undefined;
7286
7354
  }[] | undefined;
7287
7355
  required?: boolean | undefined;
@@ -7300,7 +7368,7 @@ declare function init(config: AuthHeroConfig): {
7300
7368
  hint?: string | undefined;
7301
7369
  messages?: {
7302
7370
  text: string;
7303
- type: "success" | "error" | "info" | "warning";
7371
+ type: "error" | "success" | "info" | "warning";
7304
7372
  id?: number | undefined;
7305
7373
  }[] | undefined;
7306
7374
  required?: boolean | undefined;
@@ -7325,7 +7393,7 @@ declare function init(config: AuthHeroConfig): {
7325
7393
  hint?: string | undefined;
7326
7394
  messages?: {
7327
7395
  text: string;
7328
- type: "success" | "error" | "info" | "warning";
7396
+ type: "error" | "success" | "info" | "warning";
7329
7397
  id?: number | undefined;
7330
7398
  }[] | undefined;
7331
7399
  required?: boolean | undefined;
@@ -7346,7 +7414,7 @@ declare function init(config: AuthHeroConfig): {
7346
7414
  hint?: string | undefined;
7347
7415
  messages?: {
7348
7416
  text: string;
7349
- type: "success" | "error" | "info" | "warning";
7417
+ type: "error" | "success" | "info" | "warning";
7350
7418
  id?: number | undefined;
7351
7419
  }[] | undefined;
7352
7420
  required?: boolean | undefined;
@@ -7367,7 +7435,7 @@ declare function init(config: AuthHeroConfig): {
7367
7435
  hint?: string | undefined;
7368
7436
  messages?: {
7369
7437
  text: string;
7370
- type: "success" | "error" | "info" | "warning";
7438
+ type: "error" | "success" | "info" | "warning";
7371
7439
  id?: number | undefined;
7372
7440
  }[] | undefined;
7373
7441
  required?: boolean | undefined;
@@ -7598,7 +7666,7 @@ declare function init(config: AuthHeroConfig): {
7598
7666
  hint?: string | undefined;
7599
7667
  messages?: {
7600
7668
  text: string;
7601
- type: "success" | "error" | "info" | "warning";
7669
+ type: "error" | "success" | "info" | "warning";
7602
7670
  id?: number | undefined;
7603
7671
  }[] | undefined;
7604
7672
  required?: boolean | undefined;
@@ -7616,7 +7684,7 @@ declare function init(config: AuthHeroConfig): {
7616
7684
  hint?: string | undefined;
7617
7685
  messages?: {
7618
7686
  text: string;
7619
- type: "success" | "error" | "info" | "warning";
7687
+ type: "error" | "success" | "info" | "warning";
7620
7688
  id?: number | undefined;
7621
7689
  }[] | undefined;
7622
7690
  required?: boolean | undefined;
@@ -7640,7 +7708,7 @@ declare function init(config: AuthHeroConfig): {
7640
7708
  hint?: string | undefined;
7641
7709
  messages?: {
7642
7710
  text: string;
7643
- type: "success" | "error" | "info" | "warning";
7711
+ type: "error" | "success" | "info" | "warning";
7644
7712
  id?: number | undefined;
7645
7713
  }[] | undefined;
7646
7714
  required?: boolean | undefined;
@@ -7664,7 +7732,7 @@ declare function init(config: AuthHeroConfig): {
7664
7732
  hint?: string | undefined;
7665
7733
  messages?: {
7666
7734
  text: string;
7667
- type: "success" | "error" | "info" | "warning";
7735
+ type: "error" | "success" | "info" | "warning";
7668
7736
  id?: number | undefined;
7669
7737
  }[] | undefined;
7670
7738
  required?: boolean | undefined;
@@ -7693,7 +7761,7 @@ declare function init(config: AuthHeroConfig): {
7693
7761
  hint?: string | undefined;
7694
7762
  messages?: {
7695
7763
  text: string;
7696
- type: "success" | "error" | "info" | "warning";
7764
+ type: "error" | "success" | "info" | "warning";
7697
7765
  id?: number | undefined;
7698
7766
  }[] | undefined;
7699
7767
  required?: boolean | undefined;
@@ -7708,7 +7776,7 @@ declare function init(config: AuthHeroConfig): {
7708
7776
  hint?: string | undefined;
7709
7777
  messages?: {
7710
7778
  text: string;
7711
- type: "success" | "error" | "info" | "warning";
7779
+ type: "error" | "success" | "info" | "warning";
7712
7780
  id?: number | undefined;
7713
7781
  }[] | undefined;
7714
7782
  required?: boolean | undefined;
@@ -7729,7 +7797,7 @@ declare function init(config: AuthHeroConfig): {
7729
7797
  hint?: string | undefined;
7730
7798
  messages?: {
7731
7799
  text: string;
7732
- type: "success" | "error" | "info" | "warning";
7800
+ type: "error" | "success" | "info" | "warning";
7733
7801
  id?: number | undefined;
7734
7802
  }[] | undefined;
7735
7803
  required?: boolean | undefined;
@@ -7754,7 +7822,7 @@ declare function init(config: AuthHeroConfig): {
7754
7822
  hint?: string | undefined;
7755
7823
  messages?: {
7756
7824
  text: string;
7757
- type: "success" | "error" | "info" | "warning";
7825
+ type: "error" | "success" | "info" | "warning";
7758
7826
  id?: number | undefined;
7759
7827
  }[] | undefined;
7760
7828
  required?: boolean | undefined;
@@ -7773,7 +7841,7 @@ declare function init(config: AuthHeroConfig): {
7773
7841
  hint?: string | undefined;
7774
7842
  messages?: {
7775
7843
  text: string;
7776
- type: "success" | "error" | "info" | "warning";
7844
+ type: "error" | "success" | "info" | "warning";
7777
7845
  id?: number | undefined;
7778
7846
  }[] | undefined;
7779
7847
  required?: boolean | undefined;
@@ -7793,7 +7861,7 @@ declare function init(config: AuthHeroConfig): {
7793
7861
  hint?: string | undefined;
7794
7862
  messages?: {
7795
7863
  text: string;
7796
- type: "success" | "error" | "info" | "warning";
7864
+ type: "error" | "success" | "info" | "warning";
7797
7865
  id?: number | undefined;
7798
7866
  }[] | undefined;
7799
7867
  required?: boolean | undefined;
@@ -7812,7 +7880,7 @@ declare function init(config: AuthHeroConfig): {
7812
7880
  hint?: string | undefined;
7813
7881
  messages?: {
7814
7882
  text: string;
7815
- type: "success" | "error" | "info" | "warning";
7883
+ type: "error" | "success" | "info" | "warning";
7816
7884
  id?: number | undefined;
7817
7885
  }[] | undefined;
7818
7886
  required?: boolean | undefined;
@@ -7834,7 +7902,7 @@ declare function init(config: AuthHeroConfig): {
7834
7902
  hint?: string | undefined;
7835
7903
  messages?: {
7836
7904
  text: string;
7837
- type: "success" | "error" | "info" | "warning";
7905
+ type: "error" | "success" | "info" | "warning";
7838
7906
  id?: number | undefined;
7839
7907
  }[] | undefined;
7840
7908
  required?: boolean | undefined;
@@ -7856,7 +7924,7 @@ declare function init(config: AuthHeroConfig): {
7856
7924
  hint?: string | undefined;
7857
7925
  messages?: {
7858
7926
  text: string;
7859
- type: "success" | "error" | "info" | "warning";
7927
+ type: "error" | "success" | "info" | "warning";
7860
7928
  id?: number | undefined;
7861
7929
  }[] | undefined;
7862
7930
  required?: boolean | undefined;
@@ -7875,7 +7943,7 @@ declare function init(config: AuthHeroConfig): {
7875
7943
  hint?: string | undefined;
7876
7944
  messages?: {
7877
7945
  text: string;
7878
- type: "success" | "error" | "info" | "warning";
7946
+ type: "error" | "success" | "info" | "warning";
7879
7947
  id?: number | undefined;
7880
7948
  }[] | undefined;
7881
7949
  required?: boolean | undefined;
@@ -7900,7 +7968,7 @@ declare function init(config: AuthHeroConfig): {
7900
7968
  hint?: string | undefined;
7901
7969
  messages?: {
7902
7970
  text: string;
7903
- type: "success" | "error" | "info" | "warning";
7971
+ type: "error" | "success" | "info" | "warning";
7904
7972
  id?: number | undefined;
7905
7973
  }[] | undefined;
7906
7974
  required?: boolean | undefined;
@@ -7921,7 +7989,7 @@ declare function init(config: AuthHeroConfig): {
7921
7989
  hint?: string | undefined;
7922
7990
  messages?: {
7923
7991
  text: string;
7924
- type: "success" | "error" | "info" | "warning";
7992
+ type: "error" | "success" | "info" | "warning";
7925
7993
  id?: number | undefined;
7926
7994
  }[] | undefined;
7927
7995
  required?: boolean | undefined;
@@ -7942,7 +8010,7 @@ declare function init(config: AuthHeroConfig): {
7942
8010
  hint?: string | undefined;
7943
8011
  messages?: {
7944
8012
  text: string;
7945
- type: "success" | "error" | "info" | "warning";
8013
+ type: "error" | "success" | "info" | "warning";
7946
8014
  id?: number | undefined;
7947
8015
  }[] | undefined;
7948
8016
  required?: boolean | undefined;
@@ -8175,7 +8243,7 @@ declare function init(config: AuthHeroConfig): {
8175
8243
  hint?: string | undefined;
8176
8244
  messages?: {
8177
8245
  text: string;
8178
- type: "success" | "error" | "info" | "warning";
8246
+ type: "error" | "success" | "info" | "warning";
8179
8247
  id?: number | undefined;
8180
8248
  }[] | undefined;
8181
8249
  required?: boolean | undefined;
@@ -8193,7 +8261,7 @@ declare function init(config: AuthHeroConfig): {
8193
8261
  hint?: string | undefined;
8194
8262
  messages?: {
8195
8263
  text: string;
8196
- type: "success" | "error" | "info" | "warning";
8264
+ type: "error" | "success" | "info" | "warning";
8197
8265
  id?: number | undefined;
8198
8266
  }[] | undefined;
8199
8267
  required?: boolean | undefined;
@@ -8217,7 +8285,7 @@ declare function init(config: AuthHeroConfig): {
8217
8285
  hint?: string | undefined;
8218
8286
  messages?: {
8219
8287
  text: string;
8220
- type: "success" | "error" | "info" | "warning";
8288
+ type: "error" | "success" | "info" | "warning";
8221
8289
  id?: number | undefined;
8222
8290
  }[] | undefined;
8223
8291
  required?: boolean | undefined;
@@ -8241,7 +8309,7 @@ declare function init(config: AuthHeroConfig): {
8241
8309
  hint?: string | undefined;
8242
8310
  messages?: {
8243
8311
  text: string;
8244
- type: "success" | "error" | "info" | "warning";
8312
+ type: "error" | "success" | "info" | "warning";
8245
8313
  id?: number | undefined;
8246
8314
  }[] | undefined;
8247
8315
  required?: boolean | undefined;
@@ -8266,7 +8334,7 @@ declare function init(config: AuthHeroConfig): {
8266
8334
  hint?: string | undefined;
8267
8335
  messages?: {
8268
8336
  text: string;
8269
- type: "success" | "error" | "info" | "warning";
8337
+ type: "error" | "success" | "info" | "warning";
8270
8338
  id?: number | undefined;
8271
8339
  }[] | undefined;
8272
8340
  required?: boolean | undefined;
@@ -8281,7 +8349,7 @@ declare function init(config: AuthHeroConfig): {
8281
8349
  hint?: string | undefined;
8282
8350
  messages?: {
8283
8351
  text: string;
8284
- type: "success" | "error" | "info" | "warning";
8352
+ type: "error" | "success" | "info" | "warning";
8285
8353
  id?: number | undefined;
8286
8354
  }[] | undefined;
8287
8355
  required?: boolean | undefined;
@@ -8302,7 +8370,7 @@ declare function init(config: AuthHeroConfig): {
8302
8370
  hint?: string | undefined;
8303
8371
  messages?: {
8304
8372
  text: string;
8305
- type: "success" | "error" | "info" | "warning";
8373
+ type: "error" | "success" | "info" | "warning";
8306
8374
  id?: number | undefined;
8307
8375
  }[] | undefined;
8308
8376
  required?: boolean | undefined;
@@ -8327,7 +8395,7 @@ declare function init(config: AuthHeroConfig): {
8327
8395
  hint?: string | undefined;
8328
8396
  messages?: {
8329
8397
  text: string;
8330
- type: "success" | "error" | "info" | "warning";
8398
+ type: "error" | "success" | "info" | "warning";
8331
8399
  id?: number | undefined;
8332
8400
  }[] | undefined;
8333
8401
  required?: boolean | undefined;
@@ -8346,7 +8414,7 @@ declare function init(config: AuthHeroConfig): {
8346
8414
  hint?: string | undefined;
8347
8415
  messages?: {
8348
8416
  text: string;
8349
- type: "success" | "error" | "info" | "warning";
8417
+ type: "error" | "success" | "info" | "warning";
8350
8418
  id?: number | undefined;
8351
8419
  }[] | undefined;
8352
8420
  required?: boolean | undefined;
@@ -8366,7 +8434,7 @@ declare function init(config: AuthHeroConfig): {
8366
8434
  hint?: string | undefined;
8367
8435
  messages?: {
8368
8436
  text: string;
8369
- type: "success" | "error" | "info" | "warning";
8437
+ type: "error" | "success" | "info" | "warning";
8370
8438
  id?: number | undefined;
8371
8439
  }[] | undefined;
8372
8440
  required?: boolean | undefined;
@@ -8385,7 +8453,7 @@ declare function init(config: AuthHeroConfig): {
8385
8453
  hint?: string | undefined;
8386
8454
  messages?: {
8387
8455
  text: string;
8388
- type: "success" | "error" | "info" | "warning";
8456
+ type: "error" | "success" | "info" | "warning";
8389
8457
  id?: number | undefined;
8390
8458
  }[] | undefined;
8391
8459
  required?: boolean | undefined;
@@ -8407,7 +8475,7 @@ declare function init(config: AuthHeroConfig): {
8407
8475
  hint?: string | undefined;
8408
8476
  messages?: {
8409
8477
  text: string;
8410
- type: "success" | "error" | "info" | "warning";
8478
+ type: "error" | "success" | "info" | "warning";
8411
8479
  id?: number | undefined;
8412
8480
  }[] | undefined;
8413
8481
  required?: boolean | undefined;
@@ -8429,7 +8497,7 @@ declare function init(config: AuthHeroConfig): {
8429
8497
  hint?: string | undefined;
8430
8498
  messages?: {
8431
8499
  text: string;
8432
- type: "success" | "error" | "info" | "warning";
8500
+ type: "error" | "success" | "info" | "warning";
8433
8501
  id?: number | undefined;
8434
8502
  }[] | undefined;
8435
8503
  required?: boolean | undefined;
@@ -8448,7 +8516,7 @@ declare function init(config: AuthHeroConfig): {
8448
8516
  hint?: string | undefined;
8449
8517
  messages?: {
8450
8518
  text: string;
8451
- type: "success" | "error" | "info" | "warning";
8519
+ type: "error" | "success" | "info" | "warning";
8452
8520
  id?: number | undefined;
8453
8521
  }[] | undefined;
8454
8522
  required?: boolean | undefined;
@@ -8473,7 +8541,7 @@ declare function init(config: AuthHeroConfig): {
8473
8541
  hint?: string | undefined;
8474
8542
  messages?: {
8475
8543
  text: string;
8476
- type: "success" | "error" | "info" | "warning";
8544
+ type: "error" | "success" | "info" | "warning";
8477
8545
  id?: number | undefined;
8478
8546
  }[] | undefined;
8479
8547
  required?: boolean | undefined;
@@ -8494,7 +8562,7 @@ declare function init(config: AuthHeroConfig): {
8494
8562
  hint?: string | undefined;
8495
8563
  messages?: {
8496
8564
  text: string;
8497
- type: "success" | "error" | "info" | "warning";
8565
+ type: "error" | "success" | "info" | "warning";
8498
8566
  id?: number | undefined;
8499
8567
  }[] | undefined;
8500
8568
  required?: boolean | undefined;
@@ -8515,7 +8583,7 @@ declare function init(config: AuthHeroConfig): {
8515
8583
  hint?: string | undefined;
8516
8584
  messages?: {
8517
8585
  text: string;
8518
- type: "success" | "error" | "info" | "warning";
8586
+ type: "error" | "success" | "info" | "warning";
8519
8587
  id?: number | undefined;
8520
8588
  }[] | undefined;
8521
8589
  required?: boolean | undefined;
@@ -8746,7 +8814,7 @@ declare function init(config: AuthHeroConfig): {
8746
8814
  hint?: string | undefined;
8747
8815
  messages?: {
8748
8816
  text: string;
8749
- type: "success" | "error" | "info" | "warning";
8817
+ type: "error" | "success" | "info" | "warning";
8750
8818
  id?: number | undefined;
8751
8819
  }[] | undefined;
8752
8820
  required?: boolean | undefined;
@@ -8764,7 +8832,7 @@ declare function init(config: AuthHeroConfig): {
8764
8832
  hint?: string | undefined;
8765
8833
  messages?: {
8766
8834
  text: string;
8767
- type: "success" | "error" | "info" | "warning";
8835
+ type: "error" | "success" | "info" | "warning";
8768
8836
  id?: number | undefined;
8769
8837
  }[] | undefined;
8770
8838
  required?: boolean | undefined;
@@ -8788,7 +8856,7 @@ declare function init(config: AuthHeroConfig): {
8788
8856
  hint?: string | undefined;
8789
8857
  messages?: {
8790
8858
  text: string;
8791
- type: "success" | "error" | "info" | "warning";
8859
+ type: "error" | "success" | "info" | "warning";
8792
8860
  id?: number | undefined;
8793
8861
  }[] | undefined;
8794
8862
  required?: boolean | undefined;
@@ -8812,7 +8880,7 @@ declare function init(config: AuthHeroConfig): {
8812
8880
  hint?: string | undefined;
8813
8881
  messages?: {
8814
8882
  text: string;
8815
- type: "success" | "error" | "info" | "warning";
8883
+ type: "error" | "success" | "info" | "warning";
8816
8884
  id?: number | undefined;
8817
8885
  }[] | undefined;
8818
8886
  required?: boolean | undefined;
@@ -8841,7 +8909,7 @@ declare function init(config: AuthHeroConfig): {
8841
8909
  hint?: string | undefined;
8842
8910
  messages?: {
8843
8911
  text: string;
8844
- type: "success" | "error" | "info" | "warning";
8912
+ type: "error" | "success" | "info" | "warning";
8845
8913
  id?: number | undefined;
8846
8914
  }[] | undefined;
8847
8915
  required?: boolean | undefined;
@@ -8856,7 +8924,7 @@ declare function init(config: AuthHeroConfig): {
8856
8924
  hint?: string | undefined;
8857
8925
  messages?: {
8858
8926
  text: string;
8859
- type: "success" | "error" | "info" | "warning";
8927
+ type: "error" | "success" | "info" | "warning";
8860
8928
  id?: number | undefined;
8861
8929
  }[] | undefined;
8862
8930
  required?: boolean | undefined;
@@ -8877,7 +8945,7 @@ declare function init(config: AuthHeroConfig): {
8877
8945
  hint?: string | undefined;
8878
8946
  messages?: {
8879
8947
  text: string;
8880
- type: "success" | "error" | "info" | "warning";
8948
+ type: "error" | "success" | "info" | "warning";
8881
8949
  id?: number | undefined;
8882
8950
  }[] | undefined;
8883
8951
  required?: boolean | undefined;
@@ -8902,7 +8970,7 @@ declare function init(config: AuthHeroConfig): {
8902
8970
  hint?: string | undefined;
8903
8971
  messages?: {
8904
8972
  text: string;
8905
- type: "success" | "error" | "info" | "warning";
8973
+ type: "error" | "success" | "info" | "warning";
8906
8974
  id?: number | undefined;
8907
8975
  }[] | undefined;
8908
8976
  required?: boolean | undefined;
@@ -8921,7 +8989,7 @@ declare function init(config: AuthHeroConfig): {
8921
8989
  hint?: string | undefined;
8922
8990
  messages?: {
8923
8991
  text: string;
8924
- type: "success" | "error" | "info" | "warning";
8992
+ type: "error" | "success" | "info" | "warning";
8925
8993
  id?: number | undefined;
8926
8994
  }[] | undefined;
8927
8995
  required?: boolean | undefined;
@@ -8941,7 +9009,7 @@ declare function init(config: AuthHeroConfig): {
8941
9009
  hint?: string | undefined;
8942
9010
  messages?: {
8943
9011
  text: string;
8944
- type: "success" | "error" | "info" | "warning";
9012
+ type: "error" | "success" | "info" | "warning";
8945
9013
  id?: number | undefined;
8946
9014
  }[] | undefined;
8947
9015
  required?: boolean | undefined;
@@ -8960,7 +9028,7 @@ declare function init(config: AuthHeroConfig): {
8960
9028
  hint?: string | undefined;
8961
9029
  messages?: {
8962
9030
  text: string;
8963
- type: "success" | "error" | "info" | "warning";
9031
+ type: "error" | "success" | "info" | "warning";
8964
9032
  id?: number | undefined;
8965
9033
  }[] | undefined;
8966
9034
  required?: boolean | undefined;
@@ -8982,7 +9050,7 @@ declare function init(config: AuthHeroConfig): {
8982
9050
  hint?: string | undefined;
8983
9051
  messages?: {
8984
9052
  text: string;
8985
- type: "success" | "error" | "info" | "warning";
9053
+ type: "error" | "success" | "info" | "warning";
8986
9054
  id?: number | undefined;
8987
9055
  }[] | undefined;
8988
9056
  required?: boolean | undefined;
@@ -9004,7 +9072,7 @@ declare function init(config: AuthHeroConfig): {
9004
9072
  hint?: string | undefined;
9005
9073
  messages?: {
9006
9074
  text: string;
9007
- type: "success" | "error" | "info" | "warning";
9075
+ type: "error" | "success" | "info" | "warning";
9008
9076
  id?: number | undefined;
9009
9077
  }[] | undefined;
9010
9078
  required?: boolean | undefined;
@@ -9023,7 +9091,7 @@ declare function init(config: AuthHeroConfig): {
9023
9091
  hint?: string | undefined;
9024
9092
  messages?: {
9025
9093
  text: string;
9026
- type: "success" | "error" | "info" | "warning";
9094
+ type: "error" | "success" | "info" | "warning";
9027
9095
  id?: number | undefined;
9028
9096
  }[] | undefined;
9029
9097
  required?: boolean | undefined;
@@ -9048,7 +9116,7 @@ declare function init(config: AuthHeroConfig): {
9048
9116
  hint?: string | undefined;
9049
9117
  messages?: {
9050
9118
  text: string;
9051
- type: "success" | "error" | "info" | "warning";
9119
+ type: "error" | "success" | "info" | "warning";
9052
9120
  id?: number | undefined;
9053
9121
  }[] | undefined;
9054
9122
  required?: boolean | undefined;
@@ -9069,7 +9137,7 @@ declare function init(config: AuthHeroConfig): {
9069
9137
  hint?: string | undefined;
9070
9138
  messages?: {
9071
9139
  text: string;
9072
- type: "success" | "error" | "info" | "warning";
9140
+ type: "error" | "success" | "info" | "warning";
9073
9141
  id?: number | undefined;
9074
9142
  }[] | undefined;
9075
9143
  required?: boolean | undefined;
@@ -9090,7 +9158,7 @@ declare function init(config: AuthHeroConfig): {
9090
9158
  hint?: string | undefined;
9091
9159
  messages?: {
9092
9160
  text: string;
9093
- type: "success" | "error" | "info" | "warning";
9161
+ type: "error" | "success" | "info" | "warning";
9094
9162
  id?: number | undefined;
9095
9163
  }[] | undefined;
9096
9164
  required?: boolean | undefined;
@@ -9320,7 +9388,7 @@ declare function init(config: AuthHeroConfig): {
9320
9388
  };
9321
9389
  };
9322
9390
  output: {
9323
- prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9391
+ prompt: "signup" | "status" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9324
9392
  language: string;
9325
9393
  }[];
9326
9394
  outputFormat: "json";
@@ -9358,7 +9426,7 @@ declare function init(config: AuthHeroConfig): {
9358
9426
  $get: {
9359
9427
  input: {
9360
9428
  param: {
9361
- prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9429
+ prompt: "signup" | "status" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9362
9430
  language: string;
9363
9431
  };
9364
9432
  } & {
@@ -9380,7 +9448,7 @@ declare function init(config: AuthHeroConfig): {
9380
9448
  $put: {
9381
9449
  input: {
9382
9450
  param: {
9383
- prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9451
+ prompt: "signup" | "status" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9384
9452
  language: string;
9385
9453
  };
9386
9454
  } & {
@@ -9404,7 +9472,7 @@ declare function init(config: AuthHeroConfig): {
9404
9472
  $delete: {
9405
9473
  input: {
9406
9474
  param: {
9407
- prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9475
+ prompt: "signup" | "status" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9408
9476
  language: string;
9409
9477
  };
9410
9478
  } & {
@@ -9506,7 +9574,7 @@ declare function init(config: AuthHeroConfig): {
9506
9574
  } | undefined;
9507
9575
  unique?: boolean | undefined;
9508
9576
  profile_required?: boolean | undefined;
9509
- verification_method?: "code" | "link" | undefined;
9577
+ verification_method?: "link" | "code" | undefined;
9510
9578
  } | undefined;
9511
9579
  username?: {
9512
9580
  identifier?: {
@@ -9640,7 +9708,7 @@ declare function init(config: AuthHeroConfig): {
9640
9708
  } | undefined;
9641
9709
  unique?: boolean | undefined;
9642
9710
  profile_required?: boolean | undefined;
9643
- verification_method?: "code" | "link" | undefined;
9711
+ verification_method?: "link" | "code" | undefined;
9644
9712
  } | undefined;
9645
9713
  username?: {
9646
9714
  identifier?: {
@@ -9789,7 +9857,7 @@ declare function init(config: AuthHeroConfig): {
9789
9857
  } | undefined;
9790
9858
  unique?: boolean | undefined;
9791
9859
  profile_required?: boolean | undefined;
9792
- verification_method?: "code" | "link" | undefined;
9860
+ verification_method?: "link" | "code" | undefined;
9793
9861
  } | undefined;
9794
9862
  username?: {
9795
9863
  identifier?: {
@@ -9968,7 +10036,7 @@ declare function init(config: AuthHeroConfig): {
9968
10036
  } | undefined;
9969
10037
  unique?: boolean | undefined;
9970
10038
  profile_required?: boolean | undefined;
9971
- verification_method?: "code" | "link" | undefined;
10039
+ verification_method?: "link" | "code" | undefined;
9972
10040
  } | undefined;
9973
10041
  username?: {
9974
10042
  identifier?: {
@@ -10126,7 +10194,7 @@ declare function init(config: AuthHeroConfig): {
10126
10194
  } | undefined;
10127
10195
  unique?: boolean | undefined;
10128
10196
  profile_required?: boolean | undefined;
10129
- verification_method?: "code" | "link" | undefined;
10197
+ verification_method?: "link" | "code" | undefined;
10130
10198
  } | undefined;
10131
10199
  username?: {
10132
10200
  identifier?: {
@@ -10266,7 +10334,7 @@ declare function init(config: AuthHeroConfig): {
10266
10334
  };
10267
10335
  } | {
10268
10336
  mode: "inline";
10269
- status: "success" | "error";
10337
+ status: "error" | "success";
10270
10338
  connection_id: string;
10271
10339
  connection_name: string;
10272
10340
  strategy: string;
@@ -10302,7 +10370,7 @@ declare function init(config: AuthHeroConfig): {
10302
10370
  tenant_id: string;
10303
10371
  created_at: string;
10304
10372
  updated_at: string;
10305
- deploymentStatus: "failed" | "deployed" | "not_required";
10373
+ deploymentStatus: "deployed" | "failed" | "not_required";
10306
10374
  secrets?: {
10307
10375
  [x: string]: string;
10308
10376
  } | undefined;
@@ -10392,7 +10460,7 @@ declare function init(config: AuthHeroConfig): {
10392
10460
  tenant_id: string;
10393
10461
  created_at: string;
10394
10462
  updated_at: string;
10395
- deploymentStatus: "failed" | "deployed" | "not_required";
10463
+ deploymentStatus: "deployed" | "failed" | "not_required";
10396
10464
  secrets?: {
10397
10465
  [x: string]: string;
10398
10466
  } | undefined;
@@ -10905,7 +10973,7 @@ declare function init(config: AuthHeroConfig): {
10905
10973
  log_type: string;
10906
10974
  category: "user_action" | "admin_action" | "system" | "api";
10907
10975
  actor: {
10908
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
10976
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
10909
10977
  id?: string | undefined;
10910
10978
  email?: string | undefined;
10911
10979
  org_id?: string | undefined;
@@ -11383,7 +11451,7 @@ declare function init(config: AuthHeroConfig): {
11383
11451
  [x: string]: hono_utils_types.JSONValue;
11384
11452
  };
11385
11453
  id: string;
11386
- status: "suspended" | "active" | "paused";
11454
+ status: "active" | "suspended" | "paused";
11387
11455
  filters?: {
11388
11456
  type: string;
11389
11457
  name: string;
@@ -11415,7 +11483,7 @@ declare function init(config: AuthHeroConfig): {
11415
11483
  [x: string]: hono_utils_types.JSONValue;
11416
11484
  };
11417
11485
  id: string;
11418
- status: "suspended" | "active" | "paused";
11486
+ status: "active" | "suspended" | "paused";
11419
11487
  filters?: {
11420
11488
  type: string;
11421
11489
  name: string;
@@ -11440,7 +11508,7 @@ declare function init(config: AuthHeroConfig): {
11440
11508
  name: string;
11441
11509
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
11442
11510
  sink: Record<string, unknown>;
11443
- status?: "suspended" | "active" | "paused" | undefined;
11511
+ status?: "active" | "suspended" | "paused" | undefined;
11444
11512
  filters?: {
11445
11513
  type: string;
11446
11514
  name: string;
@@ -11455,7 +11523,7 @@ declare function init(config: AuthHeroConfig): {
11455
11523
  [x: string]: hono_utils_types.JSONValue;
11456
11524
  };
11457
11525
  id: string;
11458
- status: "suspended" | "active" | "paused";
11526
+ status: "active" | "suspended" | "paused";
11459
11527
  filters?: {
11460
11528
  type: string;
11461
11529
  name: string;
@@ -11490,7 +11558,7 @@ declare function init(config: AuthHeroConfig): {
11490
11558
  }[] | undefined;
11491
11559
  isPriority?: boolean | undefined;
11492
11560
  id?: string | undefined;
11493
- status?: "suspended" | "active" | "paused" | undefined;
11561
+ status?: "active" | "suspended" | "paused" | undefined;
11494
11562
  created_at?: string | undefined;
11495
11563
  updated_at?: string | undefined;
11496
11564
  };
@@ -11502,7 +11570,7 @@ declare function init(config: AuthHeroConfig): {
11502
11570
  [x: string]: hono_utils_types.JSONValue;
11503
11571
  };
11504
11572
  id: string;
11505
- status: "suspended" | "active" | "paused";
11573
+ status: "active" | "suspended" | "paused";
11506
11574
  filters?: {
11507
11575
  type: string;
11508
11576
  name: string;
@@ -11553,7 +11621,7 @@ declare function init(config: AuthHeroConfig): {
11553
11621
  };
11554
11622
  };
11555
11623
  output: {
11556
- type: "s" | "w" | "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
11624
+ type: "i" | "sv" | "cs" | "fi" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11557
11625
  date: string;
11558
11626
  isMobile: boolean;
11559
11627
  log_id: string;
@@ -11592,7 +11660,7 @@ declare function init(config: AuthHeroConfig): {
11592
11660
  limit: number;
11593
11661
  length: number;
11594
11662
  logs: {
11595
- type: "s" | "w" | "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
11663
+ type: "i" | "sv" | "cs" | "fi" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11596
11664
  date: string;
11597
11665
  isMobile: boolean;
11598
11666
  log_id: string;
@@ -11646,7 +11714,7 @@ declare function init(config: AuthHeroConfig): {
11646
11714
  };
11647
11715
  };
11648
11716
  output: {
11649
- type: "s" | "w" | "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
11717
+ type: "i" | "sv" | "cs" | "fi" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11650
11718
  date: string;
11651
11719
  isMobile: boolean;
11652
11720
  log_id: string;
@@ -12732,7 +12800,7 @@ declare function init(config: AuthHeroConfig): {
12732
12800
  } | undefined;
12733
12801
  unique?: boolean | undefined;
12734
12802
  profile_required?: boolean | undefined;
12735
- verification_method?: "code" | "link" | undefined;
12803
+ verification_method?: "link" | "code" | undefined;
12736
12804
  } | undefined;
12737
12805
  username?: {
12738
12806
  identifier?: {
@@ -12886,7 +12954,7 @@ declare function init(config: AuthHeroConfig): {
12886
12954
  } | undefined;
12887
12955
  unique?: boolean | undefined;
12888
12956
  profile_required?: boolean | undefined;
12889
- verification_method?: "code" | "link" | undefined;
12957
+ verification_method?: "link" | "code" | undefined;
12890
12958
  } | undefined;
12891
12959
  username?: {
12892
12960
  identifier?: {
@@ -13864,7 +13932,7 @@ declare function init(config: AuthHeroConfig): {
13864
13932
  };
13865
13933
  };
13866
13934
  output: {
13867
- type: "s" | "w" | "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
13935
+ type: "i" | "sv" | "cs" | "fi" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13868
13936
  date: string;
13869
13937
  isMobile: boolean;
13870
13938
  log_id: string;
@@ -13903,7 +13971,7 @@ declare function init(config: AuthHeroConfig): {
13903
13971
  limit: number;
13904
13972
  length: number;
13905
13973
  logs: {
13906
- type: "s" | "w" | "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
13974
+ type: "i" | "sv" | "cs" | "fi" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13907
13975
  date: string;
13908
13976
  isMobile: boolean;
13909
13977
  log_id: string;
@@ -14218,7 +14286,7 @@ declare function init(config: AuthHeroConfig): {
14218
14286
  };
14219
14287
  } & {
14220
14288
  json: {
14221
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14289
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14222
14290
  body: string;
14223
14291
  from: string;
14224
14292
  subject: string;
@@ -14239,7 +14307,7 @@ declare function init(config: AuthHeroConfig): {
14239
14307
  };
14240
14308
  } & {
14241
14309
  json: {
14242
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14310
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14243
14311
  body: string;
14244
14312
  from: string;
14245
14313
  subject: string;
@@ -14251,7 +14319,7 @@ declare function init(config: AuthHeroConfig): {
14251
14319
  };
14252
14320
  };
14253
14321
  output: {
14254
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14322
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14255
14323
  body: string;
14256
14324
  from: string;
14257
14325
  subject: string;
@@ -14274,7 +14342,7 @@ declare function init(config: AuthHeroConfig): {
14274
14342
  };
14275
14343
  };
14276
14344
  output: {
14277
- name: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14345
+ name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14278
14346
  body: string;
14279
14347
  subject: string;
14280
14348
  }[];
@@ -14287,7 +14355,7 @@ declare function init(config: AuthHeroConfig): {
14287
14355
  $get: {
14288
14356
  input: {
14289
14357
  param: {
14290
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14358
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14291
14359
  };
14292
14360
  } & {
14293
14361
  header: {
@@ -14300,7 +14368,7 @@ declare function init(config: AuthHeroConfig): {
14300
14368
  } | {
14301
14369
  input: {
14302
14370
  param: {
14303
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14371
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14304
14372
  };
14305
14373
  } & {
14306
14374
  header: {
@@ -14308,7 +14376,7 @@ declare function init(config: AuthHeroConfig): {
14308
14376
  };
14309
14377
  };
14310
14378
  output: {
14311
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14379
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14312
14380
  body: string;
14313
14381
  from: string;
14314
14382
  subject: string;
@@ -14327,7 +14395,7 @@ declare function init(config: AuthHeroConfig): {
14327
14395
  $put: {
14328
14396
  input: {
14329
14397
  param: {
14330
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14398
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14331
14399
  };
14332
14400
  } & {
14333
14401
  header: {
@@ -14335,7 +14403,7 @@ declare function init(config: AuthHeroConfig): {
14335
14403
  };
14336
14404
  } & {
14337
14405
  json: {
14338
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14406
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14339
14407
  body: string;
14340
14408
  subject: string;
14341
14409
  syntax?: "liquid" | undefined;
@@ -14347,7 +14415,7 @@ declare function init(config: AuthHeroConfig): {
14347
14415
  };
14348
14416
  };
14349
14417
  output: {
14350
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14418
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14351
14419
  body: string;
14352
14420
  from: string;
14353
14421
  subject: string;
@@ -14366,7 +14434,7 @@ declare function init(config: AuthHeroConfig): {
14366
14434
  $patch: {
14367
14435
  input: {
14368
14436
  param: {
14369
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14437
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14370
14438
  };
14371
14439
  } & {
14372
14440
  header: {
@@ -14374,7 +14442,7 @@ declare function init(config: AuthHeroConfig): {
14374
14442
  };
14375
14443
  } & {
14376
14444
  json: {
14377
- template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14445
+ template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14378
14446
  body?: string | undefined;
14379
14447
  from?: string | undefined;
14380
14448
  subject?: string | undefined;
@@ -14391,7 +14459,7 @@ declare function init(config: AuthHeroConfig): {
14391
14459
  } | {
14392
14460
  input: {
14393
14461
  param: {
14394
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14462
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14395
14463
  };
14396
14464
  } & {
14397
14465
  header: {
@@ -14399,7 +14467,7 @@ declare function init(config: AuthHeroConfig): {
14399
14467
  };
14400
14468
  } & {
14401
14469
  json: {
14402
- template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14470
+ template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14403
14471
  body?: string | undefined;
14404
14472
  from?: string | undefined;
14405
14473
  subject?: string | undefined;
@@ -14411,7 +14479,7 @@ declare function init(config: AuthHeroConfig): {
14411
14479
  };
14412
14480
  };
14413
14481
  output: {
14414
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14482
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14415
14483
  body: string;
14416
14484
  from: string;
14417
14485
  subject: string;
@@ -14430,7 +14498,7 @@ declare function init(config: AuthHeroConfig): {
14430
14498
  $delete: {
14431
14499
  input: {
14432
14500
  param: {
14433
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14501
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14434
14502
  };
14435
14503
  } & {
14436
14504
  header: {
@@ -14443,7 +14511,7 @@ declare function init(config: AuthHeroConfig): {
14443
14511
  } | {
14444
14512
  input: {
14445
14513
  param: {
14446
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14514
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14447
14515
  };
14448
14516
  } & {
14449
14517
  header: {
@@ -14460,7 +14528,7 @@ declare function init(config: AuthHeroConfig): {
14460
14528
  $post: {
14461
14529
  input: {
14462
14530
  param: {
14463
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14531
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14464
14532
  };
14465
14533
  } & {
14466
14534
  header: {
@@ -14743,7 +14811,7 @@ declare function init(config: AuthHeroConfig): {
14743
14811
  type: "auth0_managed_certs" | "self_managed_certs";
14744
14812
  custom_domain_id: string;
14745
14813
  primary: boolean;
14746
- status: "pending" | "ready" | "disabled" | "pending_verification";
14814
+ status: "disabled" | "pending" | "pending_verification" | "ready";
14747
14815
  verification_method?: "txt" | undefined;
14748
14816
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14749
14817
  domain_metadata?: {
@@ -14784,7 +14852,7 @@ declare function init(config: AuthHeroConfig): {
14784
14852
  type: "auth0_managed_certs" | "self_managed_certs";
14785
14853
  custom_domain_id: string;
14786
14854
  primary: boolean;
14787
- status: "pending" | "ready" | "disabled" | "pending_verification";
14855
+ status: "disabled" | "pending" | "pending_verification" | "ready";
14788
14856
  verification_method?: "txt" | undefined;
14789
14857
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14790
14858
  domain_metadata?: {
@@ -14848,7 +14916,7 @@ declare function init(config: AuthHeroConfig): {
14848
14916
  type: "auth0_managed_certs" | "self_managed_certs";
14849
14917
  custom_domain_id: string;
14850
14918
  primary: boolean;
14851
- status: "pending" | "ready" | "disabled" | "pending_verification";
14919
+ status: "disabled" | "pending" | "pending_verification" | "ready";
14852
14920
  verification_method?: "txt" | undefined;
14853
14921
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14854
14922
  domain_metadata?: {
@@ -14895,7 +14963,7 @@ declare function init(config: AuthHeroConfig): {
14895
14963
  type: "auth0_managed_certs" | "self_managed_certs";
14896
14964
  custom_domain_id: string;
14897
14965
  primary: boolean;
14898
- status: "pending" | "ready" | "disabled" | "pending_verification";
14966
+ status: "disabled" | "pending" | "pending_verification" | "ready";
14899
14967
  verification_method?: "txt" | undefined;
14900
14968
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14901
14969
  domain_metadata?: {
@@ -14941,7 +15009,7 @@ declare function init(config: AuthHeroConfig): {
14941
15009
  type: "auth0_managed_certs" | "self_managed_certs";
14942
15010
  custom_domain_id: string;
14943
15011
  primary: boolean;
14944
- status: "pending" | "ready" | "disabled" | "pending_verification";
15012
+ status: "disabled" | "pending" | "pending_verification" | "ready";
14945
15013
  verification_method?: "txt" | undefined;
14946
15014
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14947
15015
  domain_metadata?: {
@@ -14982,7 +15050,7 @@ declare function init(config: AuthHeroConfig): {
14982
15050
  type: "auth0_managed_certs" | "self_managed_certs";
14983
15051
  custom_domain_id: string;
14984
15052
  primary: boolean;
14985
- status: "pending" | "ready" | "disabled" | "pending_verification";
15053
+ status: "disabled" | "pending" | "pending_verification" | "ready";
14986
15054
  verification_method?: "txt" | undefined;
14987
15055
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14988
15056
  domain_metadata?: {
@@ -15542,7 +15610,7 @@ declare function init(config: AuthHeroConfig): {
15542
15610
  output: {
15543
15611
  id: string;
15544
15612
  trigger_id: string;
15545
- status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
15613
+ status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
15546
15614
  results: {
15547
15615
  action_name: string;
15548
15616
  error: {
@@ -15589,7 +15657,7 @@ declare function init(config: AuthHeroConfig): {
15589
15657
  logs: {
15590
15658
  action_name: string;
15591
15659
  lines: {
15592
- level: "log" | "error" | "info" | "warn" | "debug";
15660
+ level: "error" | "log" | "info" | "warn" | "debug";
15593
15661
  message: string;
15594
15662
  }[];
15595
15663
  }[];
@@ -16256,7 +16324,7 @@ declare function init(config: AuthHeroConfig): {
16256
16324
  args: hono_utils_types.JSONValue[];
16257
16325
  }[];
16258
16326
  logs: {
16259
- level: "log" | "error" | "info" | "warn" | "debug";
16327
+ level: "error" | "log" | "info" | "warn" | "debug";
16260
16328
  message: string;
16261
16329
  }[];
16262
16330
  error?: string | undefined;
@@ -16304,7 +16372,7 @@ declare function init(config: AuthHeroConfig): {
16304
16372
  message: string;
16305
16373
  };
16306
16374
  outputFormat: "json";
16307
- status: 400;
16375
+ status: 500;
16308
16376
  } | {
16309
16377
  input: {
16310
16378
  query: {
@@ -16322,7 +16390,7 @@ declare function init(config: AuthHeroConfig): {
16322
16390
  message: string;
16323
16391
  };
16324
16392
  outputFormat: "json";
16325
- status: 500;
16393
+ status: 400;
16326
16394
  };
16327
16395
  };
16328
16396
  } & {
@@ -16360,7 +16428,7 @@ declare function init(config: AuthHeroConfig): {
16360
16428
  message: string;
16361
16429
  };
16362
16430
  outputFormat: "json";
16363
- status: 400;
16431
+ status: 500;
16364
16432
  } | {
16365
16433
  input: {
16366
16434
  form: {
@@ -16378,7 +16446,7 @@ declare function init(config: AuthHeroConfig): {
16378
16446
  message: string;
16379
16447
  };
16380
16448
  outputFormat: "json";
16381
- status: 500;
16449
+ status: 400;
16382
16450
  };
16383
16451
  };
16384
16452
  }, "/login/callback"> & hono_types.MergeSchemaPath<{
@@ -16416,7 +16484,7 @@ declare function init(config: AuthHeroConfig): {
16416
16484
  message: string;
16417
16485
  };
16418
16486
  outputFormat: "json";
16419
- status: 400;
16487
+ status: 500;
16420
16488
  } | {
16421
16489
  input: {
16422
16490
  query: {
@@ -16434,7 +16502,7 @@ declare function init(config: AuthHeroConfig): {
16434
16502
  message: string;
16435
16503
  };
16436
16504
  outputFormat: "json";
16437
- status: 500;
16505
+ status: 400;
16438
16506
  };
16439
16507
  };
16440
16508
  } & {
@@ -16472,7 +16540,7 @@ declare function init(config: AuthHeroConfig): {
16472
16540
  message: string;
16473
16541
  };
16474
16542
  outputFormat: "json";
16475
- status: 400;
16543
+ status: 500;
16476
16544
  } | {
16477
16545
  input: {
16478
16546
  form: {
@@ -16490,7 +16558,7 @@ declare function init(config: AuthHeroConfig): {
16490
16558
  message: string;
16491
16559
  };
16492
16560
  outputFormat: "json";
16493
- status: 500;
16561
+ status: 400;
16494
16562
  };
16495
16563
  };
16496
16564
  }, "/callback"> & hono_types.MergeSchemaPath<{
@@ -16987,21 +17055,21 @@ declare function init(config: AuthHeroConfig): {
16987
17055
  connection: "email";
16988
17056
  client_id: string;
16989
17057
  email: string;
16990
- send: "code" | "link";
17058
+ send: "link" | "code";
16991
17059
  authParams: {
16992
- state?: string | undefined;
16993
- code_challenge?: string | undefined;
16994
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16995
- redirect_uri?: string | undefined;
16996
- nonce?: string | undefined;
16997
- act_as?: string | undefined;
16998
17060
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16999
17061
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17000
- audience?: string | undefined;
17001
- organization?: string | undefined;
17002
17062
  scope?: string | undefined;
17003
- prompt?: string | undefined;
17004
17063
  username?: string | undefined;
17064
+ audience?: string | undefined;
17065
+ state?: string | undefined;
17066
+ prompt?: string | undefined;
17067
+ act_as?: string | undefined;
17068
+ redirect_uri?: string | undefined;
17069
+ organization?: string | undefined;
17070
+ nonce?: string | undefined;
17071
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17072
+ code_challenge?: string | undefined;
17005
17073
  ui_locales?: string | undefined;
17006
17074
  max_age?: number | undefined;
17007
17075
  acr_values?: string | undefined;
@@ -17023,21 +17091,21 @@ declare function init(config: AuthHeroConfig): {
17023
17091
  client_id: string;
17024
17092
  connection: "sms";
17025
17093
  phone_number: string;
17026
- send: "code" | "link";
17094
+ send: "link" | "code";
17027
17095
  authParams: {
17028
- state?: string | undefined;
17029
- code_challenge?: string | undefined;
17030
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17031
- redirect_uri?: string | undefined;
17032
- nonce?: string | undefined;
17033
- act_as?: string | undefined;
17034
17096
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17035
17097
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17036
- audience?: string | undefined;
17037
- organization?: string | undefined;
17038
17098
  scope?: string | undefined;
17039
- prompt?: string | undefined;
17040
17099
  username?: string | undefined;
17100
+ audience?: string | undefined;
17101
+ state?: string | undefined;
17102
+ prompt?: string | undefined;
17103
+ act_as?: string | undefined;
17104
+ redirect_uri?: string | undefined;
17105
+ organization?: string | undefined;
17106
+ nonce?: string | undefined;
17107
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17108
+ code_challenge?: string | undefined;
17041
17109
  ui_locales?: string | undefined;
17042
17110
  max_age?: number | undefined;
17043
17111
  acr_values?: string | undefined;
@@ -17102,7 +17170,7 @@ declare function init(config: AuthHeroConfig): {
17102
17170
  error_description?: string | undefined;
17103
17171
  };
17104
17172
  outputFormat: "json";
17105
- status: 400;
17173
+ status: 500;
17106
17174
  } | {
17107
17175
  input: {
17108
17176
  query: {
@@ -17123,7 +17191,7 @@ declare function init(config: AuthHeroConfig): {
17123
17191
  error_description?: string | undefined;
17124
17192
  };
17125
17193
  outputFormat: "json";
17126
- status: 500;
17194
+ status: 400;
17127
17195
  };
17128
17196
  };
17129
17197
  }, "/passwordless"> & hono_types.MergeSchemaPath<{
@@ -17169,14 +17237,14 @@ declare function init(config: AuthHeroConfig): {
17169
17237
  input: {
17170
17238
  form: {
17171
17239
  token: string;
17172
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17240
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17173
17241
  client_id?: string | undefined;
17174
17242
  client_secret?: string | undefined;
17175
17243
  };
17176
17244
  } & {
17177
17245
  json: {
17178
17246
  token: string;
17179
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17247
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17180
17248
  client_id?: string | undefined;
17181
17249
  client_secret?: string | undefined;
17182
17250
  };
@@ -17188,14 +17256,14 @@ declare function init(config: AuthHeroConfig): {
17188
17256
  input: {
17189
17257
  form: {
17190
17258
  token: string;
17191
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17259
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17192
17260
  client_id?: string | undefined;
17193
17261
  client_secret?: string | undefined;
17194
17262
  };
17195
17263
  } & {
17196
17264
  json: {
17197
17265
  token: string;
17198
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17266
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17199
17267
  client_id?: string | undefined;
17200
17268
  client_secret?: string | undefined;
17201
17269
  };
@@ -17210,14 +17278,14 @@ declare function init(config: AuthHeroConfig): {
17210
17278
  input: {
17211
17279
  form: {
17212
17280
  token: string;
17213
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17281
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17214
17282
  client_id?: string | undefined;
17215
17283
  client_secret?: string | undefined;
17216
17284
  };
17217
17285
  } & {
17218
17286
  json: {
17219
17287
  token: string;
17220
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17288
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17221
17289
  client_id?: string | undefined;
17222
17290
  client_secret?: string | undefined;
17223
17291
  };
@@ -18077,7 +18145,7 @@ declare function init(config: AuthHeroConfig): {
18077
18145
  };
18078
18146
  output: {};
18079
18147
  outputFormat: string;
18080
- status: 302;
18148
+ status: 500;
18081
18149
  } | {
18082
18150
  input: {
18083
18151
  query: {
@@ -18086,7 +18154,7 @@ declare function init(config: AuthHeroConfig): {
18086
18154
  };
18087
18155
  output: {};
18088
18156
  outputFormat: string;
18089
- status: 400;
18157
+ status: 302;
18090
18158
  } | {
18091
18159
  input: {
18092
18160
  query: {
@@ -18095,7 +18163,7 @@ declare function init(config: AuthHeroConfig): {
18095
18163
  };
18096
18164
  output: {};
18097
18165
  outputFormat: string;
18098
- status: 500;
18166
+ status: 400;
18099
18167
  };
18100
18168
  };
18101
18169
  }, "/continue"> & hono_types.MergeSchemaPath<{
@@ -18944,7 +19012,7 @@ declare function init(config: AuthHeroConfig): {
18944
19012
  $get: {
18945
19013
  input: {
18946
19014
  param: {
18947
- screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19015
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18948
19016
  };
18949
19017
  } & {
18950
19018
  query: {
@@ -18960,7 +19028,7 @@ declare function init(config: AuthHeroConfig): {
18960
19028
  } | {
18961
19029
  input: {
18962
19030
  param: {
18963
- screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19031
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18964
19032
  };
18965
19033
  } & {
18966
19034
  query: {
@@ -18976,7 +19044,7 @@ declare function init(config: AuthHeroConfig): {
18976
19044
  } | {
18977
19045
  input: {
18978
19046
  param: {
18979
- screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19047
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18980
19048
  };
18981
19049
  } & {
18982
19050
  query: {
@@ -18996,7 +19064,7 @@ declare function init(config: AuthHeroConfig): {
18996
19064
  $post: {
18997
19065
  input: {
18998
19066
  param: {
18999
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19067
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19000
19068
  };
19001
19069
  } & {
19002
19070
  query: {
@@ -19014,7 +19082,7 @@ declare function init(config: AuthHeroConfig): {
19014
19082
  } | {
19015
19083
  input: {
19016
19084
  param: {
19017
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19085
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19018
19086
  };
19019
19087
  } & {
19020
19088
  query: {
@@ -19032,7 +19100,7 @@ declare function init(config: AuthHeroConfig): {
19032
19100
  } | {
19033
19101
  input: {
19034
19102
  param: {
19035
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19103
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19036
19104
  };
19037
19105
  } & {
19038
19106
  query: {
@@ -19130,5 +19198,5 @@ declare function init(config: AuthHeroConfig): {
19130
19198
  createX509Certificate: typeof createX509Certificate;
19131
19199
  };
19132
19200
 
19133
- export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createInMemoryCache, decryptField, deepMergePatch, drainOutbox, encryptField, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, verifyControlPlaneToken, waitUntil };
19134
- export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
19201
+ export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, verifyControlPlaneToken, waitUntil };
19202
+ export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, KeyRing, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };