authhero 7.0.0 → 7.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +105 -105
  3. package/dist/authhero.d.ts +194 -209
  4. package/dist/authhero.mjs +9211 -9198
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/passwordless.d.ts +1 -1
  8. package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
  9. package/dist/types/index.d.ts +173 -191
  10. package/dist/types/routes/auth-api/index.d.ts +10 -10
  11. package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
  12. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  13. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  14. package/dist/types/routes/management-api/client-grants.d.ts +8 -8
  15. package/dist/types/routes/management-api/clients.d.ts +7 -7
  16. package/dist/types/routes/management-api/connections.d.ts +1 -1
  17. package/dist/types/routes/management-api/custom-domains.d.ts +1 -19
  18. package/dist/types/routes/management-api/forms.d.ts +119 -119
  19. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  20. package/dist/types/routes/management-api/index.d.ts +157 -175
  21. package/dist/types/routes/management-api/logs.d.ts +3 -3
  22. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  23. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  24. package/dist/types/routes/management-api/users.d.ts +2 -2
  25. package/dist/types/routes/proxy-control-plane/index.d.ts +10 -15
  26. package/dist/types/routes/proxy-control-plane/verify.d.ts +10 -5
  27. package/dist/types/routes/universal-login/common.d.ts +2 -2
  28. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  29. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  30. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  31. package/dist/types/types/AuthHeroConfig.d.ts +11 -13
  32. package/package.json +5 -5
@@ -1196,23 +1196,21 @@ interface AuthHeroConfig {
1196
1196
  * which returns the cross-tenant `ResolvedHost` for the given hostname.
1197
1197
  *
1198
1198
  * Authentication is opinionated and built in: incoming requests must
1199
- * carry a `Bearer` JWT signed by a key in `jwksUrl`, with `iss` matching
1200
- * the runtime `env.ISSUER` (strict URL equality after trailing-slash
1201
- * normalization) and the `proxy:resolve_host` scope. The matching
1202
- * client-side helper is `createHttpProxyAdapter` in `@authhero/proxy`.
1199
+ * carry a `Bearer` JWT whose `iss` is either the runtime `env.ISSUER`
1200
+ * or the host the request landed on (tenant subdomain or registered
1201
+ * custom domain). The verifier fetches `<iss>/.well-known/jwks.json` to
1202
+ * validate the signature, so each accepted host must publish its own
1203
+ * JWKS at that path. Tokens must also carry the `proxy:resolve_host`
1204
+ * scope. The matching client-side helper is `createHttpProxyAdapter`
1205
+ * in `@authhero/proxy`.
1203
1206
  */
1204
1207
  proxyControlPlane?: {
1205
1208
  resolveHost: (host: string) => Promise<_authhero_proxy.ResolvedHost | null>;
1206
1209
  /**
1207
- * JWKS document URL used to verify the bearer token. On a single-shard
1208
- * deployment this is typically `${env.ISSUER}/.well-known/jwks.json`.
1209
- */
1210
- jwksUrl: string;
1211
- /**
1212
- * Optional fetch override for `jwksUrl`. Defaults to global `fetch`.
1213
- * Hosts on Cloudflare Workers can pass
1214
- * `(url) => env.JWKS_SERVICE.fetch(url)` to route through a service
1215
- * binding instead of the public network.
1210
+ * Optional fetch override for the per-issuer JWKS document. Called
1211
+ * with the derived URL (`<iss>/.well-known/jwks.json`); defaults to
1212
+ * global `fetch`. Hosts on Cloudflare Workers can route specific
1213
+ * hosts through a service binding by inspecting the URL.
1216
1214
  */
1217
1215
  jwksFetch?: (url: string) => Promise<Response>;
1218
1216
  /**
@@ -2295,12 +2293,15 @@ type VerifyControlPlaneTokenResult = {
2295
2293
  interface VerifyControlPlaneTokenOptions {
2296
2294
  /** Compact JWS to verify. */
2297
2295
  token: string;
2298
- /** JWKS document URL. */
2299
- jwksUrl: string;
2300
2296
  /** Optional fetch override — defaults to global `fetch`. */
2301
2297
  jwksFetch?: (url: string) => Promise<Response>;
2302
- /** Expected `iss` claim (compared via {@link isAllowedIssuer}). */
2303
- expectedIssuer: string;
2298
+ /**
2299
+ * Set of acceptable `iss` claim values. Comparison is strict URL equality
2300
+ * (after trailing-slash normalization) via {@link isAllowedIssuer}. The
2301
+ * verifier fetches the per-issuer JWKS from `<iss>/.well-known/jwks.json`,
2302
+ * so any host you list here must publish its own JWKS at that path.
2303
+ */
2304
+ expectedIssuers: string[];
2304
2305
  /** Required `scope` (space-separated). Defaults to `proxy:resolve_host`. */
2305
2306
  requiredScope?: string;
2306
2307
  }
@@ -2312,7 +2313,9 @@ interface VerifyControlPlaneTokenOptions {
2312
2313
  * Accepted algs: RS256/384/512, ES256/384/512. The JWK's `alg` must match
2313
2314
  * the token header's `alg`. The token must carry the configured required
2314
2315
  * scope (`proxy:resolve_host` by default) and an `iss` that strictly equals
2315
- * `expectedIssuer` after URL normalization.
2316
+ * one of `expectedIssuers` after URL normalization. The JWKS document is
2317
+ * fetched from `<iss>/.well-known/jwks.json` AFTER the `iss` is allow-listed,
2318
+ * so an attacker cannot redirect the verifier to a JWKS they control.
2316
2319
  */
2317
2320
  declare function verifyControlPlaneToken(options: VerifyControlPlaneTokenOptions): Promise<VerifyControlPlaneTokenResult>;
2318
2321
 
@@ -2772,7 +2775,7 @@ declare function init(config: AuthHeroConfig): {
2772
2775
  };
2773
2776
  } & {
2774
2777
  json: {
2775
- type: "email" | "passkey" | "push" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
2778
+ type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2776
2779
  phone_number?: string | undefined;
2777
2780
  totp_secret?: string | undefined;
2778
2781
  credential_id?: string | undefined;
@@ -2912,7 +2915,7 @@ declare function init(config: AuthHeroConfig): {
2912
2915
  };
2913
2916
  };
2914
2917
  output: {
2915
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2918
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2916
2919
  enabled: boolean;
2917
2920
  trial_expired?: boolean | undefined;
2918
2921
  }[];
@@ -3067,7 +3070,7 @@ declare function init(config: AuthHeroConfig): {
3067
3070
  $get: {
3068
3071
  input: {
3069
3072
  param: {
3070
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3073
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3071
3074
  };
3072
3075
  } & {
3073
3076
  header: {
@@ -3075,7 +3078,7 @@ declare function init(config: AuthHeroConfig): {
3075
3078
  };
3076
3079
  };
3077
3080
  output: {
3078
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3081
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3079
3082
  enabled: boolean;
3080
3083
  trial_expired?: boolean | undefined;
3081
3084
  };
@@ -3088,7 +3091,7 @@ declare function init(config: AuthHeroConfig): {
3088
3091
  $put: {
3089
3092
  input: {
3090
3093
  param: {
3091
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3094
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3092
3095
  };
3093
3096
  } & {
3094
3097
  header: {
@@ -3100,7 +3103,7 @@ declare function init(config: AuthHeroConfig): {
3100
3103
  };
3101
3104
  };
3102
3105
  output: {
3103
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3106
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3104
3107
  enabled: boolean;
3105
3108
  trial_expired?: boolean | undefined;
3106
3109
  };
@@ -5276,7 +5279,7 @@ declare function init(config: AuthHeroConfig): {
5276
5279
  hint?: string | undefined;
5277
5280
  messages?: {
5278
5281
  text: string;
5279
- type: "success" | "error" | "info" | "warning";
5282
+ type: "error" | "success" | "info" | "warning";
5280
5283
  id?: number | undefined;
5281
5284
  }[] | undefined;
5282
5285
  required?: boolean | undefined;
@@ -5294,7 +5297,7 @@ declare function init(config: AuthHeroConfig): {
5294
5297
  hint?: string | undefined;
5295
5298
  messages?: {
5296
5299
  text: string;
5297
- type: "success" | "error" | "info" | "warning";
5300
+ type: "error" | "success" | "info" | "warning";
5298
5301
  id?: number | undefined;
5299
5302
  }[] | undefined;
5300
5303
  required?: boolean | undefined;
@@ -5318,7 +5321,7 @@ declare function init(config: AuthHeroConfig): {
5318
5321
  hint?: string | undefined;
5319
5322
  messages?: {
5320
5323
  text: string;
5321
- type: "success" | "error" | "info" | "warning";
5324
+ type: "error" | "success" | "info" | "warning";
5322
5325
  id?: number | undefined;
5323
5326
  }[] | undefined;
5324
5327
  required?: boolean | undefined;
@@ -5342,7 +5345,7 @@ declare function init(config: AuthHeroConfig): {
5342
5345
  hint?: string | undefined;
5343
5346
  messages?: {
5344
5347
  text: string;
5345
- type: "success" | "error" | "info" | "warning";
5348
+ type: "error" | "success" | "info" | "warning";
5346
5349
  id?: number | undefined;
5347
5350
  }[] | undefined;
5348
5351
  required?: boolean | undefined;
@@ -5371,7 +5374,7 @@ declare function init(config: AuthHeroConfig): {
5371
5374
  hint?: string | undefined;
5372
5375
  messages?: {
5373
5376
  text: string;
5374
- type: "success" | "error" | "info" | "warning";
5377
+ type: "error" | "success" | "info" | "warning";
5375
5378
  id?: number | undefined;
5376
5379
  }[] | undefined;
5377
5380
  required?: boolean | undefined;
@@ -5386,7 +5389,7 @@ declare function init(config: AuthHeroConfig): {
5386
5389
  hint?: string | undefined;
5387
5390
  messages?: {
5388
5391
  text: string;
5389
- type: "success" | "error" | "info" | "warning";
5392
+ type: "error" | "success" | "info" | "warning";
5390
5393
  id?: number | undefined;
5391
5394
  }[] | undefined;
5392
5395
  required?: boolean | undefined;
@@ -5407,7 +5410,7 @@ declare function init(config: AuthHeroConfig): {
5407
5410
  hint?: string | undefined;
5408
5411
  messages?: {
5409
5412
  text: string;
5410
- type: "success" | "error" | "info" | "warning";
5413
+ type: "error" | "success" | "info" | "warning";
5411
5414
  id?: number | undefined;
5412
5415
  }[] | undefined;
5413
5416
  required?: boolean | undefined;
@@ -5432,7 +5435,7 @@ declare function init(config: AuthHeroConfig): {
5432
5435
  hint?: string | undefined;
5433
5436
  messages?: {
5434
5437
  text: string;
5435
- type: "success" | "error" | "info" | "warning";
5438
+ type: "error" | "success" | "info" | "warning";
5436
5439
  id?: number | undefined;
5437
5440
  }[] | undefined;
5438
5441
  required?: boolean | undefined;
@@ -5451,7 +5454,7 @@ declare function init(config: AuthHeroConfig): {
5451
5454
  hint?: string | undefined;
5452
5455
  messages?: {
5453
5456
  text: string;
5454
- type: "success" | "error" | "info" | "warning";
5457
+ type: "error" | "success" | "info" | "warning";
5455
5458
  id?: number | undefined;
5456
5459
  }[] | undefined;
5457
5460
  required?: boolean | undefined;
@@ -5471,7 +5474,7 @@ declare function init(config: AuthHeroConfig): {
5471
5474
  hint?: string | undefined;
5472
5475
  messages?: {
5473
5476
  text: string;
5474
- type: "success" | "error" | "info" | "warning";
5477
+ type: "error" | "success" | "info" | "warning";
5475
5478
  id?: number | undefined;
5476
5479
  }[] | undefined;
5477
5480
  required?: boolean | undefined;
@@ -5490,7 +5493,7 @@ declare function init(config: AuthHeroConfig): {
5490
5493
  hint?: string | undefined;
5491
5494
  messages?: {
5492
5495
  text: string;
5493
- type: "success" | "error" | "info" | "warning";
5496
+ type: "error" | "success" | "info" | "warning";
5494
5497
  id?: number | undefined;
5495
5498
  }[] | undefined;
5496
5499
  required?: boolean | undefined;
@@ -5512,7 +5515,7 @@ declare function init(config: AuthHeroConfig): {
5512
5515
  hint?: string | undefined;
5513
5516
  messages?: {
5514
5517
  text: string;
5515
- type: "success" | "error" | "info" | "warning";
5518
+ type: "error" | "success" | "info" | "warning";
5516
5519
  id?: number | undefined;
5517
5520
  }[] | undefined;
5518
5521
  required?: boolean | undefined;
@@ -5534,7 +5537,7 @@ declare function init(config: AuthHeroConfig): {
5534
5537
  hint?: string | undefined;
5535
5538
  messages?: {
5536
5539
  text: string;
5537
- type: "success" | "error" | "info" | "warning";
5540
+ type: "error" | "success" | "info" | "warning";
5538
5541
  id?: number | undefined;
5539
5542
  }[] | undefined;
5540
5543
  required?: boolean | undefined;
@@ -5553,7 +5556,7 @@ declare function init(config: AuthHeroConfig): {
5553
5556
  hint?: string | undefined;
5554
5557
  messages?: {
5555
5558
  text: string;
5556
- type: "success" | "error" | "info" | "warning";
5559
+ type: "error" | "success" | "info" | "warning";
5557
5560
  id?: number | undefined;
5558
5561
  }[] | undefined;
5559
5562
  required?: boolean | undefined;
@@ -5578,7 +5581,7 @@ declare function init(config: AuthHeroConfig): {
5578
5581
  hint?: string | undefined;
5579
5582
  messages?: {
5580
5583
  text: string;
5581
- type: "success" | "error" | "info" | "warning";
5584
+ type: "error" | "success" | "info" | "warning";
5582
5585
  id?: number | undefined;
5583
5586
  }[] | undefined;
5584
5587
  required?: boolean | undefined;
@@ -5599,7 +5602,7 @@ declare function init(config: AuthHeroConfig): {
5599
5602
  hint?: string | undefined;
5600
5603
  messages?: {
5601
5604
  text: string;
5602
- type: "success" | "error" | "info" | "warning";
5605
+ type: "error" | "success" | "info" | "warning";
5603
5606
  id?: number | undefined;
5604
5607
  }[] | undefined;
5605
5608
  required?: boolean | undefined;
@@ -5620,7 +5623,7 @@ declare function init(config: AuthHeroConfig): {
5620
5623
  hint?: string | undefined;
5621
5624
  messages?: {
5622
5625
  text: string;
5623
- type: "success" | "error" | "info" | "warning";
5626
+ type: "error" | "success" | "info" | "warning";
5624
5627
  id?: number | undefined;
5625
5628
  }[] | undefined;
5626
5629
  required?: boolean | undefined;
@@ -5853,7 +5856,7 @@ declare function init(config: AuthHeroConfig): {
5853
5856
  hint?: string | undefined;
5854
5857
  messages?: {
5855
5858
  text: string;
5856
- type: "success" | "error" | "info" | "warning";
5859
+ type: "error" | "success" | "info" | "warning";
5857
5860
  id?: number | undefined;
5858
5861
  }[] | undefined;
5859
5862
  required?: boolean | undefined;
@@ -5871,7 +5874,7 @@ declare function init(config: AuthHeroConfig): {
5871
5874
  hint?: string | undefined;
5872
5875
  messages?: {
5873
5876
  text: string;
5874
- type: "success" | "error" | "info" | "warning";
5877
+ type: "error" | "success" | "info" | "warning";
5875
5878
  id?: number | undefined;
5876
5879
  }[] | undefined;
5877
5880
  required?: boolean | undefined;
@@ -5895,7 +5898,7 @@ declare function init(config: AuthHeroConfig): {
5895
5898
  hint?: string | undefined;
5896
5899
  messages?: {
5897
5900
  text: string;
5898
- type: "success" | "error" | "info" | "warning";
5901
+ type: "error" | "success" | "info" | "warning";
5899
5902
  id?: number | undefined;
5900
5903
  }[] | undefined;
5901
5904
  required?: boolean | undefined;
@@ -5919,7 +5922,7 @@ declare function init(config: AuthHeroConfig): {
5919
5922
  hint?: string | undefined;
5920
5923
  messages?: {
5921
5924
  text: string;
5922
- type: "success" | "error" | "info" | "warning";
5925
+ type: "error" | "success" | "info" | "warning";
5923
5926
  id?: number | undefined;
5924
5927
  }[] | undefined;
5925
5928
  required?: boolean | undefined;
@@ -5948,7 +5951,7 @@ declare function init(config: AuthHeroConfig): {
5948
5951
  hint?: string | undefined;
5949
5952
  messages?: {
5950
5953
  text: string;
5951
- type: "success" | "error" | "info" | "warning";
5954
+ type: "error" | "success" | "info" | "warning";
5952
5955
  id?: number | undefined;
5953
5956
  }[] | undefined;
5954
5957
  required?: boolean | undefined;
@@ -5963,7 +5966,7 @@ declare function init(config: AuthHeroConfig): {
5963
5966
  hint?: string | undefined;
5964
5967
  messages?: {
5965
5968
  text: string;
5966
- type: "success" | "error" | "info" | "warning";
5969
+ type: "error" | "success" | "info" | "warning";
5967
5970
  id?: number | undefined;
5968
5971
  }[] | undefined;
5969
5972
  required?: boolean | undefined;
@@ -5984,7 +5987,7 @@ declare function init(config: AuthHeroConfig): {
5984
5987
  hint?: string | undefined;
5985
5988
  messages?: {
5986
5989
  text: string;
5987
- type: "success" | "error" | "info" | "warning";
5990
+ type: "error" | "success" | "info" | "warning";
5988
5991
  id?: number | undefined;
5989
5992
  }[] | undefined;
5990
5993
  required?: boolean | undefined;
@@ -6009,7 +6012,7 @@ declare function init(config: AuthHeroConfig): {
6009
6012
  hint?: string | undefined;
6010
6013
  messages?: {
6011
6014
  text: string;
6012
- type: "success" | "error" | "info" | "warning";
6015
+ type: "error" | "success" | "info" | "warning";
6013
6016
  id?: number | undefined;
6014
6017
  }[] | undefined;
6015
6018
  required?: boolean | undefined;
@@ -6028,7 +6031,7 @@ declare function init(config: AuthHeroConfig): {
6028
6031
  hint?: string | undefined;
6029
6032
  messages?: {
6030
6033
  text: string;
6031
- type: "success" | "error" | "info" | "warning";
6034
+ type: "error" | "success" | "info" | "warning";
6032
6035
  id?: number | undefined;
6033
6036
  }[] | undefined;
6034
6037
  required?: boolean | undefined;
@@ -6048,7 +6051,7 @@ declare function init(config: AuthHeroConfig): {
6048
6051
  hint?: string | undefined;
6049
6052
  messages?: {
6050
6053
  text: string;
6051
- type: "success" | "error" | "info" | "warning";
6054
+ type: "error" | "success" | "info" | "warning";
6052
6055
  id?: number | undefined;
6053
6056
  }[] | undefined;
6054
6057
  required?: boolean | undefined;
@@ -6067,7 +6070,7 @@ declare function init(config: AuthHeroConfig): {
6067
6070
  hint?: string | undefined;
6068
6071
  messages?: {
6069
6072
  text: string;
6070
- type: "success" | "error" | "info" | "warning";
6073
+ type: "error" | "success" | "info" | "warning";
6071
6074
  id?: number | undefined;
6072
6075
  }[] | undefined;
6073
6076
  required?: boolean | undefined;
@@ -6089,7 +6092,7 @@ declare function init(config: AuthHeroConfig): {
6089
6092
  hint?: string | undefined;
6090
6093
  messages?: {
6091
6094
  text: string;
6092
- type: "success" | "error" | "info" | "warning";
6095
+ type: "error" | "success" | "info" | "warning";
6093
6096
  id?: number | undefined;
6094
6097
  }[] | undefined;
6095
6098
  required?: boolean | undefined;
@@ -6111,7 +6114,7 @@ declare function init(config: AuthHeroConfig): {
6111
6114
  hint?: string | undefined;
6112
6115
  messages?: {
6113
6116
  text: string;
6114
- type: "success" | "error" | "info" | "warning";
6117
+ type: "error" | "success" | "info" | "warning";
6115
6118
  id?: number | undefined;
6116
6119
  }[] | undefined;
6117
6120
  required?: boolean | undefined;
@@ -6130,7 +6133,7 @@ declare function init(config: AuthHeroConfig): {
6130
6133
  hint?: string | undefined;
6131
6134
  messages?: {
6132
6135
  text: string;
6133
- type: "success" | "error" | "info" | "warning";
6136
+ type: "error" | "success" | "info" | "warning";
6134
6137
  id?: number | undefined;
6135
6138
  }[] | undefined;
6136
6139
  required?: boolean | undefined;
@@ -6155,7 +6158,7 @@ declare function init(config: AuthHeroConfig): {
6155
6158
  hint?: string | undefined;
6156
6159
  messages?: {
6157
6160
  text: string;
6158
- type: "success" | "error" | "info" | "warning";
6161
+ type: "error" | "success" | "info" | "warning";
6159
6162
  id?: number | undefined;
6160
6163
  }[] | undefined;
6161
6164
  required?: boolean | undefined;
@@ -6176,7 +6179,7 @@ declare function init(config: AuthHeroConfig): {
6176
6179
  hint?: string | undefined;
6177
6180
  messages?: {
6178
6181
  text: string;
6179
- type: "success" | "error" | "info" | "warning";
6182
+ type: "error" | "success" | "info" | "warning";
6180
6183
  id?: number | undefined;
6181
6184
  }[] | undefined;
6182
6185
  required?: boolean | undefined;
@@ -6197,7 +6200,7 @@ declare function init(config: AuthHeroConfig): {
6197
6200
  hint?: string | undefined;
6198
6201
  messages?: {
6199
6202
  text: string;
6200
- type: "success" | "error" | "info" | "warning";
6203
+ type: "error" | "success" | "info" | "warning";
6201
6204
  id?: number | undefined;
6202
6205
  }[] | undefined;
6203
6206
  required?: boolean | undefined;
@@ -6445,7 +6448,7 @@ declare function init(config: AuthHeroConfig): {
6445
6448
  hint?: string | undefined;
6446
6449
  messages?: {
6447
6450
  text: string;
6448
- type: "success" | "error" | "info" | "warning";
6451
+ type: "error" | "success" | "info" | "warning";
6449
6452
  id?: number | undefined;
6450
6453
  }[] | undefined;
6451
6454
  required?: boolean | undefined;
@@ -6463,7 +6466,7 @@ declare function init(config: AuthHeroConfig): {
6463
6466
  hint?: string | undefined;
6464
6467
  messages?: {
6465
6468
  text: string;
6466
- type: "success" | "error" | "info" | "warning";
6469
+ type: "error" | "success" | "info" | "warning";
6467
6470
  id?: number | undefined;
6468
6471
  }[] | undefined;
6469
6472
  required?: boolean | undefined;
@@ -6487,7 +6490,7 @@ declare function init(config: AuthHeroConfig): {
6487
6490
  hint?: string | undefined;
6488
6491
  messages?: {
6489
6492
  text: string;
6490
- type: "success" | "error" | "info" | "warning";
6493
+ type: "error" | "success" | "info" | "warning";
6491
6494
  id?: number | undefined;
6492
6495
  }[] | undefined;
6493
6496
  required?: boolean | undefined;
@@ -6511,7 +6514,7 @@ declare function init(config: AuthHeroConfig): {
6511
6514
  hint?: string | undefined;
6512
6515
  messages?: {
6513
6516
  text: string;
6514
- type: "success" | "error" | "info" | "warning";
6517
+ type: "error" | "success" | "info" | "warning";
6515
6518
  id?: number | undefined;
6516
6519
  }[] | undefined;
6517
6520
  required?: boolean | undefined;
@@ -6540,7 +6543,7 @@ declare function init(config: AuthHeroConfig): {
6540
6543
  hint?: string | undefined;
6541
6544
  messages?: {
6542
6545
  text: string;
6543
- type: "success" | "error" | "info" | "warning";
6546
+ type: "error" | "success" | "info" | "warning";
6544
6547
  id?: number | undefined;
6545
6548
  }[] | undefined;
6546
6549
  required?: boolean | undefined;
@@ -6555,7 +6558,7 @@ declare function init(config: AuthHeroConfig): {
6555
6558
  hint?: string | undefined;
6556
6559
  messages?: {
6557
6560
  text: string;
6558
- type: "success" | "error" | "info" | "warning";
6561
+ type: "error" | "success" | "info" | "warning";
6559
6562
  id?: number | undefined;
6560
6563
  }[] | undefined;
6561
6564
  required?: boolean | undefined;
@@ -6576,7 +6579,7 @@ declare function init(config: AuthHeroConfig): {
6576
6579
  hint?: string | undefined;
6577
6580
  messages?: {
6578
6581
  text: string;
6579
- type: "success" | "error" | "info" | "warning";
6582
+ type: "error" | "success" | "info" | "warning";
6580
6583
  id?: number | undefined;
6581
6584
  }[] | undefined;
6582
6585
  required?: boolean | undefined;
@@ -6601,7 +6604,7 @@ declare function init(config: AuthHeroConfig): {
6601
6604
  hint?: string | undefined;
6602
6605
  messages?: {
6603
6606
  text: string;
6604
- type: "success" | "error" | "info" | "warning";
6607
+ type: "error" | "success" | "info" | "warning";
6605
6608
  id?: number | undefined;
6606
6609
  }[] | undefined;
6607
6610
  required?: boolean | undefined;
@@ -6620,7 +6623,7 @@ declare function init(config: AuthHeroConfig): {
6620
6623
  hint?: string | undefined;
6621
6624
  messages?: {
6622
6625
  text: string;
6623
- type: "success" | "error" | "info" | "warning";
6626
+ type: "error" | "success" | "info" | "warning";
6624
6627
  id?: number | undefined;
6625
6628
  }[] | undefined;
6626
6629
  required?: boolean | undefined;
@@ -6640,7 +6643,7 @@ declare function init(config: AuthHeroConfig): {
6640
6643
  hint?: string | undefined;
6641
6644
  messages?: {
6642
6645
  text: string;
6643
- type: "success" | "error" | "info" | "warning";
6646
+ type: "error" | "success" | "info" | "warning";
6644
6647
  id?: number | undefined;
6645
6648
  }[] | undefined;
6646
6649
  required?: boolean | undefined;
@@ -6659,7 +6662,7 @@ declare function init(config: AuthHeroConfig): {
6659
6662
  hint?: string | undefined;
6660
6663
  messages?: {
6661
6664
  text: string;
6662
- type: "success" | "error" | "info" | "warning";
6665
+ type: "error" | "success" | "info" | "warning";
6663
6666
  id?: number | undefined;
6664
6667
  }[] | undefined;
6665
6668
  required?: boolean | undefined;
@@ -6681,7 +6684,7 @@ declare function init(config: AuthHeroConfig): {
6681
6684
  hint?: string | undefined;
6682
6685
  messages?: {
6683
6686
  text: string;
6684
- type: "success" | "error" | "info" | "warning";
6687
+ type: "error" | "success" | "info" | "warning";
6685
6688
  id?: number | undefined;
6686
6689
  }[] | undefined;
6687
6690
  required?: boolean | undefined;
@@ -6703,7 +6706,7 @@ declare function init(config: AuthHeroConfig): {
6703
6706
  hint?: string | undefined;
6704
6707
  messages?: {
6705
6708
  text: string;
6706
- type: "success" | "error" | "info" | "warning";
6709
+ type: "error" | "success" | "info" | "warning";
6707
6710
  id?: number | undefined;
6708
6711
  }[] | undefined;
6709
6712
  required?: boolean | undefined;
@@ -6722,7 +6725,7 @@ declare function init(config: AuthHeroConfig): {
6722
6725
  hint?: string | undefined;
6723
6726
  messages?: {
6724
6727
  text: string;
6725
- type: "success" | "error" | "info" | "warning";
6728
+ type: "error" | "success" | "info" | "warning";
6726
6729
  id?: number | undefined;
6727
6730
  }[] | undefined;
6728
6731
  required?: boolean | undefined;
@@ -6747,7 +6750,7 @@ declare function init(config: AuthHeroConfig): {
6747
6750
  hint?: string | undefined;
6748
6751
  messages?: {
6749
6752
  text: string;
6750
- type: "success" | "error" | "info" | "warning";
6753
+ type: "error" | "success" | "info" | "warning";
6751
6754
  id?: number | undefined;
6752
6755
  }[] | undefined;
6753
6756
  required?: boolean | undefined;
@@ -6768,7 +6771,7 @@ declare function init(config: AuthHeroConfig): {
6768
6771
  hint?: string | undefined;
6769
6772
  messages?: {
6770
6773
  text: string;
6771
- type: "success" | "error" | "info" | "warning";
6774
+ type: "error" | "success" | "info" | "warning";
6772
6775
  id?: number | undefined;
6773
6776
  }[] | undefined;
6774
6777
  required?: boolean | undefined;
@@ -6789,7 +6792,7 @@ declare function init(config: AuthHeroConfig): {
6789
6792
  hint?: string | undefined;
6790
6793
  messages?: {
6791
6794
  text: string;
6792
- type: "success" | "error" | "info" | "warning";
6795
+ type: "error" | "success" | "info" | "warning";
6793
6796
  id?: number | undefined;
6794
6797
  }[] | undefined;
6795
6798
  required?: boolean | undefined;
@@ -7043,7 +7046,7 @@ declare function init(config: AuthHeroConfig): {
7043
7046
  hint?: string | undefined;
7044
7047
  messages?: {
7045
7048
  text: string;
7046
- type: "success" | "error" | "info" | "warning";
7049
+ type: "error" | "success" | "info" | "warning";
7047
7050
  id?: number | undefined;
7048
7051
  }[] | undefined;
7049
7052
  required?: boolean | undefined;
@@ -7061,7 +7064,7 @@ declare function init(config: AuthHeroConfig): {
7061
7064
  hint?: string | undefined;
7062
7065
  messages?: {
7063
7066
  text: string;
7064
- type: "success" | "error" | "info" | "warning";
7067
+ type: "error" | "success" | "info" | "warning";
7065
7068
  id?: number | undefined;
7066
7069
  }[] | undefined;
7067
7070
  required?: boolean | undefined;
@@ -7085,7 +7088,7 @@ declare function init(config: AuthHeroConfig): {
7085
7088
  hint?: string | undefined;
7086
7089
  messages?: {
7087
7090
  text: string;
7088
- type: "success" | "error" | "info" | "warning";
7091
+ type: "error" | "success" | "info" | "warning";
7089
7092
  id?: number | undefined;
7090
7093
  }[] | undefined;
7091
7094
  required?: boolean | undefined;
@@ -7109,7 +7112,7 @@ declare function init(config: AuthHeroConfig): {
7109
7112
  hint?: string | undefined;
7110
7113
  messages?: {
7111
7114
  text: string;
7112
- type: "success" | "error" | "info" | "warning";
7115
+ type: "error" | "success" | "info" | "warning";
7113
7116
  id?: number | undefined;
7114
7117
  }[] | undefined;
7115
7118
  required?: boolean | undefined;
@@ -7134,7 +7137,7 @@ declare function init(config: AuthHeroConfig): {
7134
7137
  hint?: string | undefined;
7135
7138
  messages?: {
7136
7139
  text: string;
7137
- type: "success" | "error" | "info" | "warning";
7140
+ type: "error" | "success" | "info" | "warning";
7138
7141
  id?: number | undefined;
7139
7142
  }[] | undefined;
7140
7143
  required?: boolean | undefined;
@@ -7149,7 +7152,7 @@ declare function init(config: AuthHeroConfig): {
7149
7152
  hint?: string | undefined;
7150
7153
  messages?: {
7151
7154
  text: string;
7152
- type: "success" | "error" | "info" | "warning";
7155
+ type: "error" | "success" | "info" | "warning";
7153
7156
  id?: number | undefined;
7154
7157
  }[] | undefined;
7155
7158
  required?: boolean | undefined;
@@ -7170,7 +7173,7 @@ declare function init(config: AuthHeroConfig): {
7170
7173
  hint?: string | undefined;
7171
7174
  messages?: {
7172
7175
  text: string;
7173
- type: "success" | "error" | "info" | "warning";
7176
+ type: "error" | "success" | "info" | "warning";
7174
7177
  id?: number | undefined;
7175
7178
  }[] | undefined;
7176
7179
  required?: boolean | undefined;
@@ -7195,7 +7198,7 @@ declare function init(config: AuthHeroConfig): {
7195
7198
  hint?: string | undefined;
7196
7199
  messages?: {
7197
7200
  text: string;
7198
- type: "success" | "error" | "info" | "warning";
7201
+ type: "error" | "success" | "info" | "warning";
7199
7202
  id?: number | undefined;
7200
7203
  }[] | undefined;
7201
7204
  required?: boolean | undefined;
@@ -7214,7 +7217,7 @@ declare function init(config: AuthHeroConfig): {
7214
7217
  hint?: string | undefined;
7215
7218
  messages?: {
7216
7219
  text: string;
7217
- type: "success" | "error" | "info" | "warning";
7220
+ type: "error" | "success" | "info" | "warning";
7218
7221
  id?: number | undefined;
7219
7222
  }[] | undefined;
7220
7223
  required?: boolean | undefined;
@@ -7234,7 +7237,7 @@ declare function init(config: AuthHeroConfig): {
7234
7237
  hint?: string | undefined;
7235
7238
  messages?: {
7236
7239
  text: string;
7237
- type: "success" | "error" | "info" | "warning";
7240
+ type: "error" | "success" | "info" | "warning";
7238
7241
  id?: number | undefined;
7239
7242
  }[] | undefined;
7240
7243
  required?: boolean | undefined;
@@ -7253,7 +7256,7 @@ declare function init(config: AuthHeroConfig): {
7253
7256
  hint?: string | undefined;
7254
7257
  messages?: {
7255
7258
  text: string;
7256
- type: "success" | "error" | "info" | "warning";
7259
+ type: "error" | "success" | "info" | "warning";
7257
7260
  id?: number | undefined;
7258
7261
  }[] | undefined;
7259
7262
  required?: boolean | undefined;
@@ -7275,7 +7278,7 @@ declare function init(config: AuthHeroConfig): {
7275
7278
  hint?: string | undefined;
7276
7279
  messages?: {
7277
7280
  text: string;
7278
- type: "success" | "error" | "info" | "warning";
7281
+ type: "error" | "success" | "info" | "warning";
7279
7282
  id?: number | undefined;
7280
7283
  }[] | undefined;
7281
7284
  required?: boolean | undefined;
@@ -7297,7 +7300,7 @@ declare function init(config: AuthHeroConfig): {
7297
7300
  hint?: string | undefined;
7298
7301
  messages?: {
7299
7302
  text: string;
7300
- type: "success" | "error" | "info" | "warning";
7303
+ type: "error" | "success" | "info" | "warning";
7301
7304
  id?: number | undefined;
7302
7305
  }[] | undefined;
7303
7306
  required?: boolean | undefined;
@@ -7316,7 +7319,7 @@ declare function init(config: AuthHeroConfig): {
7316
7319
  hint?: string | undefined;
7317
7320
  messages?: {
7318
7321
  text: string;
7319
- type: "success" | "error" | "info" | "warning";
7322
+ type: "error" | "success" | "info" | "warning";
7320
7323
  id?: number | undefined;
7321
7324
  }[] | undefined;
7322
7325
  required?: boolean | undefined;
@@ -7341,7 +7344,7 @@ declare function init(config: AuthHeroConfig): {
7341
7344
  hint?: string | undefined;
7342
7345
  messages?: {
7343
7346
  text: string;
7344
- type: "success" | "error" | "info" | "warning";
7347
+ type: "error" | "success" | "info" | "warning";
7345
7348
  id?: number | undefined;
7346
7349
  }[] | undefined;
7347
7350
  required?: boolean | undefined;
@@ -7362,7 +7365,7 @@ declare function init(config: AuthHeroConfig): {
7362
7365
  hint?: string | undefined;
7363
7366
  messages?: {
7364
7367
  text: string;
7365
- type: "success" | "error" | "info" | "warning";
7368
+ type: "error" | "success" | "info" | "warning";
7366
7369
  id?: number | undefined;
7367
7370
  }[] | undefined;
7368
7371
  required?: boolean | undefined;
@@ -7383,7 +7386,7 @@ declare function init(config: AuthHeroConfig): {
7383
7386
  hint?: string | undefined;
7384
7387
  messages?: {
7385
7388
  text: string;
7386
- type: "success" | "error" | "info" | "warning";
7389
+ type: "error" | "success" | "info" | "warning";
7387
7390
  id?: number | undefined;
7388
7391
  }[] | undefined;
7389
7392
  required?: boolean | undefined;
@@ -7614,7 +7617,7 @@ declare function init(config: AuthHeroConfig): {
7614
7617
  hint?: string | undefined;
7615
7618
  messages?: {
7616
7619
  text: string;
7617
- type: "success" | "error" | "info" | "warning";
7620
+ type: "error" | "success" | "info" | "warning";
7618
7621
  id?: number | undefined;
7619
7622
  }[] | undefined;
7620
7623
  required?: boolean | undefined;
@@ -7632,7 +7635,7 @@ declare function init(config: AuthHeroConfig): {
7632
7635
  hint?: string | undefined;
7633
7636
  messages?: {
7634
7637
  text: string;
7635
- type: "success" | "error" | "info" | "warning";
7638
+ type: "error" | "success" | "info" | "warning";
7636
7639
  id?: number | undefined;
7637
7640
  }[] | undefined;
7638
7641
  required?: boolean | undefined;
@@ -7656,7 +7659,7 @@ declare function init(config: AuthHeroConfig): {
7656
7659
  hint?: string | undefined;
7657
7660
  messages?: {
7658
7661
  text: string;
7659
- type: "success" | "error" | "info" | "warning";
7662
+ type: "error" | "success" | "info" | "warning";
7660
7663
  id?: number | undefined;
7661
7664
  }[] | undefined;
7662
7665
  required?: boolean | undefined;
@@ -7680,7 +7683,7 @@ declare function init(config: AuthHeroConfig): {
7680
7683
  hint?: string | undefined;
7681
7684
  messages?: {
7682
7685
  text: string;
7683
- type: "success" | "error" | "info" | "warning";
7686
+ type: "error" | "success" | "info" | "warning";
7684
7687
  id?: number | undefined;
7685
7688
  }[] | undefined;
7686
7689
  required?: boolean | undefined;
@@ -7709,7 +7712,7 @@ declare function init(config: AuthHeroConfig): {
7709
7712
  hint?: string | undefined;
7710
7713
  messages?: {
7711
7714
  text: string;
7712
- type: "success" | "error" | "info" | "warning";
7715
+ type: "error" | "success" | "info" | "warning";
7713
7716
  id?: number | undefined;
7714
7717
  }[] | undefined;
7715
7718
  required?: boolean | undefined;
@@ -7724,7 +7727,7 @@ declare function init(config: AuthHeroConfig): {
7724
7727
  hint?: string | undefined;
7725
7728
  messages?: {
7726
7729
  text: string;
7727
- type: "success" | "error" | "info" | "warning";
7730
+ type: "error" | "success" | "info" | "warning";
7728
7731
  id?: number | undefined;
7729
7732
  }[] | undefined;
7730
7733
  required?: boolean | undefined;
@@ -7745,7 +7748,7 @@ declare function init(config: AuthHeroConfig): {
7745
7748
  hint?: string | undefined;
7746
7749
  messages?: {
7747
7750
  text: string;
7748
- type: "success" | "error" | "info" | "warning";
7751
+ type: "error" | "success" | "info" | "warning";
7749
7752
  id?: number | undefined;
7750
7753
  }[] | undefined;
7751
7754
  required?: boolean | undefined;
@@ -7770,7 +7773,7 @@ declare function init(config: AuthHeroConfig): {
7770
7773
  hint?: string | undefined;
7771
7774
  messages?: {
7772
7775
  text: string;
7773
- type: "success" | "error" | "info" | "warning";
7776
+ type: "error" | "success" | "info" | "warning";
7774
7777
  id?: number | undefined;
7775
7778
  }[] | undefined;
7776
7779
  required?: boolean | undefined;
@@ -7789,7 +7792,7 @@ declare function init(config: AuthHeroConfig): {
7789
7792
  hint?: string | undefined;
7790
7793
  messages?: {
7791
7794
  text: string;
7792
- type: "success" | "error" | "info" | "warning";
7795
+ type: "error" | "success" | "info" | "warning";
7793
7796
  id?: number | undefined;
7794
7797
  }[] | undefined;
7795
7798
  required?: boolean | undefined;
@@ -7809,7 +7812,7 @@ declare function init(config: AuthHeroConfig): {
7809
7812
  hint?: string | undefined;
7810
7813
  messages?: {
7811
7814
  text: string;
7812
- type: "success" | "error" | "info" | "warning";
7815
+ type: "error" | "success" | "info" | "warning";
7813
7816
  id?: number | undefined;
7814
7817
  }[] | undefined;
7815
7818
  required?: boolean | undefined;
@@ -7828,7 +7831,7 @@ declare function init(config: AuthHeroConfig): {
7828
7831
  hint?: string | undefined;
7829
7832
  messages?: {
7830
7833
  text: string;
7831
- type: "success" | "error" | "info" | "warning";
7834
+ type: "error" | "success" | "info" | "warning";
7832
7835
  id?: number | undefined;
7833
7836
  }[] | undefined;
7834
7837
  required?: boolean | undefined;
@@ -7850,7 +7853,7 @@ declare function init(config: AuthHeroConfig): {
7850
7853
  hint?: string | undefined;
7851
7854
  messages?: {
7852
7855
  text: string;
7853
- type: "success" | "error" | "info" | "warning";
7856
+ type: "error" | "success" | "info" | "warning";
7854
7857
  id?: number | undefined;
7855
7858
  }[] | undefined;
7856
7859
  required?: boolean | undefined;
@@ -7872,7 +7875,7 @@ declare function init(config: AuthHeroConfig): {
7872
7875
  hint?: string | undefined;
7873
7876
  messages?: {
7874
7877
  text: string;
7875
- type: "success" | "error" | "info" | "warning";
7878
+ type: "error" | "success" | "info" | "warning";
7876
7879
  id?: number | undefined;
7877
7880
  }[] | undefined;
7878
7881
  required?: boolean | undefined;
@@ -7891,7 +7894,7 @@ declare function init(config: AuthHeroConfig): {
7891
7894
  hint?: string | undefined;
7892
7895
  messages?: {
7893
7896
  text: string;
7894
- type: "success" | "error" | "info" | "warning";
7897
+ type: "error" | "success" | "info" | "warning";
7895
7898
  id?: number | undefined;
7896
7899
  }[] | undefined;
7897
7900
  required?: boolean | undefined;
@@ -7916,7 +7919,7 @@ declare function init(config: AuthHeroConfig): {
7916
7919
  hint?: string | undefined;
7917
7920
  messages?: {
7918
7921
  text: string;
7919
- type: "success" | "error" | "info" | "warning";
7922
+ type: "error" | "success" | "info" | "warning";
7920
7923
  id?: number | undefined;
7921
7924
  }[] | undefined;
7922
7925
  required?: boolean | undefined;
@@ -7937,7 +7940,7 @@ declare function init(config: AuthHeroConfig): {
7937
7940
  hint?: string | undefined;
7938
7941
  messages?: {
7939
7942
  text: string;
7940
- type: "success" | "error" | "info" | "warning";
7943
+ type: "error" | "success" | "info" | "warning";
7941
7944
  id?: number | undefined;
7942
7945
  }[] | undefined;
7943
7946
  required?: boolean | undefined;
@@ -7958,7 +7961,7 @@ declare function init(config: AuthHeroConfig): {
7958
7961
  hint?: string | undefined;
7959
7962
  messages?: {
7960
7963
  text: string;
7961
- type: "success" | "error" | "info" | "warning";
7964
+ type: "error" | "success" | "info" | "warning";
7962
7965
  id?: number | undefined;
7963
7966
  }[] | undefined;
7964
7967
  required?: boolean | undefined;
@@ -8191,7 +8194,7 @@ declare function init(config: AuthHeroConfig): {
8191
8194
  hint?: string | undefined;
8192
8195
  messages?: {
8193
8196
  text: string;
8194
- type: "success" | "error" | "info" | "warning";
8197
+ type: "error" | "success" | "info" | "warning";
8195
8198
  id?: number | undefined;
8196
8199
  }[] | undefined;
8197
8200
  required?: boolean | undefined;
@@ -8209,7 +8212,7 @@ declare function init(config: AuthHeroConfig): {
8209
8212
  hint?: string | undefined;
8210
8213
  messages?: {
8211
8214
  text: string;
8212
- type: "success" | "error" | "info" | "warning";
8215
+ type: "error" | "success" | "info" | "warning";
8213
8216
  id?: number | undefined;
8214
8217
  }[] | undefined;
8215
8218
  required?: boolean | undefined;
@@ -8233,7 +8236,7 @@ declare function init(config: AuthHeroConfig): {
8233
8236
  hint?: string | undefined;
8234
8237
  messages?: {
8235
8238
  text: string;
8236
- type: "success" | "error" | "info" | "warning";
8239
+ type: "error" | "success" | "info" | "warning";
8237
8240
  id?: number | undefined;
8238
8241
  }[] | undefined;
8239
8242
  required?: boolean | undefined;
@@ -8257,7 +8260,7 @@ declare function init(config: AuthHeroConfig): {
8257
8260
  hint?: string | undefined;
8258
8261
  messages?: {
8259
8262
  text: string;
8260
- type: "success" | "error" | "info" | "warning";
8263
+ type: "error" | "success" | "info" | "warning";
8261
8264
  id?: number | undefined;
8262
8265
  }[] | undefined;
8263
8266
  required?: boolean | undefined;
@@ -8282,7 +8285,7 @@ declare function init(config: AuthHeroConfig): {
8282
8285
  hint?: string | undefined;
8283
8286
  messages?: {
8284
8287
  text: string;
8285
- type: "success" | "error" | "info" | "warning";
8288
+ type: "error" | "success" | "info" | "warning";
8286
8289
  id?: number | undefined;
8287
8290
  }[] | undefined;
8288
8291
  required?: boolean | undefined;
@@ -8297,7 +8300,7 @@ declare function init(config: AuthHeroConfig): {
8297
8300
  hint?: string | undefined;
8298
8301
  messages?: {
8299
8302
  text: string;
8300
- type: "success" | "error" | "info" | "warning";
8303
+ type: "error" | "success" | "info" | "warning";
8301
8304
  id?: number | undefined;
8302
8305
  }[] | undefined;
8303
8306
  required?: boolean | undefined;
@@ -8318,7 +8321,7 @@ declare function init(config: AuthHeroConfig): {
8318
8321
  hint?: string | undefined;
8319
8322
  messages?: {
8320
8323
  text: string;
8321
- type: "success" | "error" | "info" | "warning";
8324
+ type: "error" | "success" | "info" | "warning";
8322
8325
  id?: number | undefined;
8323
8326
  }[] | undefined;
8324
8327
  required?: boolean | undefined;
@@ -8343,7 +8346,7 @@ declare function init(config: AuthHeroConfig): {
8343
8346
  hint?: string | undefined;
8344
8347
  messages?: {
8345
8348
  text: string;
8346
- type: "success" | "error" | "info" | "warning";
8349
+ type: "error" | "success" | "info" | "warning";
8347
8350
  id?: number | undefined;
8348
8351
  }[] | undefined;
8349
8352
  required?: boolean | undefined;
@@ -8362,7 +8365,7 @@ declare function init(config: AuthHeroConfig): {
8362
8365
  hint?: string | undefined;
8363
8366
  messages?: {
8364
8367
  text: string;
8365
- type: "success" | "error" | "info" | "warning";
8368
+ type: "error" | "success" | "info" | "warning";
8366
8369
  id?: number | undefined;
8367
8370
  }[] | undefined;
8368
8371
  required?: boolean | undefined;
@@ -8382,7 +8385,7 @@ declare function init(config: AuthHeroConfig): {
8382
8385
  hint?: string | undefined;
8383
8386
  messages?: {
8384
8387
  text: string;
8385
- type: "success" | "error" | "info" | "warning";
8388
+ type: "error" | "success" | "info" | "warning";
8386
8389
  id?: number | undefined;
8387
8390
  }[] | undefined;
8388
8391
  required?: boolean | undefined;
@@ -8401,7 +8404,7 @@ declare function init(config: AuthHeroConfig): {
8401
8404
  hint?: string | undefined;
8402
8405
  messages?: {
8403
8406
  text: string;
8404
- type: "success" | "error" | "info" | "warning";
8407
+ type: "error" | "success" | "info" | "warning";
8405
8408
  id?: number | undefined;
8406
8409
  }[] | undefined;
8407
8410
  required?: boolean | undefined;
@@ -8423,7 +8426,7 @@ declare function init(config: AuthHeroConfig): {
8423
8426
  hint?: string | undefined;
8424
8427
  messages?: {
8425
8428
  text: string;
8426
- type: "success" | "error" | "info" | "warning";
8429
+ type: "error" | "success" | "info" | "warning";
8427
8430
  id?: number | undefined;
8428
8431
  }[] | undefined;
8429
8432
  required?: boolean | undefined;
@@ -8445,7 +8448,7 @@ declare function init(config: AuthHeroConfig): {
8445
8448
  hint?: string | undefined;
8446
8449
  messages?: {
8447
8450
  text: string;
8448
- type: "success" | "error" | "info" | "warning";
8451
+ type: "error" | "success" | "info" | "warning";
8449
8452
  id?: number | undefined;
8450
8453
  }[] | undefined;
8451
8454
  required?: boolean | undefined;
@@ -8464,7 +8467,7 @@ declare function init(config: AuthHeroConfig): {
8464
8467
  hint?: string | undefined;
8465
8468
  messages?: {
8466
8469
  text: string;
8467
- type: "success" | "error" | "info" | "warning";
8470
+ type: "error" | "success" | "info" | "warning";
8468
8471
  id?: number | undefined;
8469
8472
  }[] | undefined;
8470
8473
  required?: boolean | undefined;
@@ -8489,7 +8492,7 @@ declare function init(config: AuthHeroConfig): {
8489
8492
  hint?: string | undefined;
8490
8493
  messages?: {
8491
8494
  text: string;
8492
- type: "success" | "error" | "info" | "warning";
8495
+ type: "error" | "success" | "info" | "warning";
8493
8496
  id?: number | undefined;
8494
8497
  }[] | undefined;
8495
8498
  required?: boolean | undefined;
@@ -8510,7 +8513,7 @@ declare function init(config: AuthHeroConfig): {
8510
8513
  hint?: string | undefined;
8511
8514
  messages?: {
8512
8515
  text: string;
8513
- type: "success" | "error" | "info" | "warning";
8516
+ type: "error" | "success" | "info" | "warning";
8514
8517
  id?: number | undefined;
8515
8518
  }[] | undefined;
8516
8519
  required?: boolean | undefined;
@@ -8531,7 +8534,7 @@ declare function init(config: AuthHeroConfig): {
8531
8534
  hint?: string | undefined;
8532
8535
  messages?: {
8533
8536
  text: string;
8534
- type: "success" | "error" | "info" | "warning";
8537
+ type: "error" | "success" | "info" | "warning";
8535
8538
  id?: number | undefined;
8536
8539
  }[] | undefined;
8537
8540
  required?: boolean | undefined;
@@ -8762,7 +8765,7 @@ declare function init(config: AuthHeroConfig): {
8762
8765
  hint?: string | undefined;
8763
8766
  messages?: {
8764
8767
  text: string;
8765
- type: "success" | "error" | "info" | "warning";
8768
+ type: "error" | "success" | "info" | "warning";
8766
8769
  id?: number | undefined;
8767
8770
  }[] | undefined;
8768
8771
  required?: boolean | undefined;
@@ -8780,7 +8783,7 @@ declare function init(config: AuthHeroConfig): {
8780
8783
  hint?: string | undefined;
8781
8784
  messages?: {
8782
8785
  text: string;
8783
- type: "success" | "error" | "info" | "warning";
8786
+ type: "error" | "success" | "info" | "warning";
8784
8787
  id?: number | undefined;
8785
8788
  }[] | undefined;
8786
8789
  required?: boolean | undefined;
@@ -8804,7 +8807,7 @@ declare function init(config: AuthHeroConfig): {
8804
8807
  hint?: string | undefined;
8805
8808
  messages?: {
8806
8809
  text: string;
8807
- type: "success" | "error" | "info" | "warning";
8810
+ type: "error" | "success" | "info" | "warning";
8808
8811
  id?: number | undefined;
8809
8812
  }[] | undefined;
8810
8813
  required?: boolean | undefined;
@@ -8828,7 +8831,7 @@ declare function init(config: AuthHeroConfig): {
8828
8831
  hint?: string | undefined;
8829
8832
  messages?: {
8830
8833
  text: string;
8831
- type: "success" | "error" | "info" | "warning";
8834
+ type: "error" | "success" | "info" | "warning";
8832
8835
  id?: number | undefined;
8833
8836
  }[] | undefined;
8834
8837
  required?: boolean | undefined;
@@ -8857,7 +8860,7 @@ declare function init(config: AuthHeroConfig): {
8857
8860
  hint?: string | undefined;
8858
8861
  messages?: {
8859
8862
  text: string;
8860
- type: "success" | "error" | "info" | "warning";
8863
+ type: "error" | "success" | "info" | "warning";
8861
8864
  id?: number | undefined;
8862
8865
  }[] | undefined;
8863
8866
  required?: boolean | undefined;
@@ -8872,7 +8875,7 @@ declare function init(config: AuthHeroConfig): {
8872
8875
  hint?: string | undefined;
8873
8876
  messages?: {
8874
8877
  text: string;
8875
- type: "success" | "error" | "info" | "warning";
8878
+ type: "error" | "success" | "info" | "warning";
8876
8879
  id?: number | undefined;
8877
8880
  }[] | undefined;
8878
8881
  required?: boolean | undefined;
@@ -8893,7 +8896,7 @@ declare function init(config: AuthHeroConfig): {
8893
8896
  hint?: string | undefined;
8894
8897
  messages?: {
8895
8898
  text: string;
8896
- type: "success" | "error" | "info" | "warning";
8899
+ type: "error" | "success" | "info" | "warning";
8897
8900
  id?: number | undefined;
8898
8901
  }[] | undefined;
8899
8902
  required?: boolean | undefined;
@@ -8918,7 +8921,7 @@ declare function init(config: AuthHeroConfig): {
8918
8921
  hint?: string | undefined;
8919
8922
  messages?: {
8920
8923
  text: string;
8921
- type: "success" | "error" | "info" | "warning";
8924
+ type: "error" | "success" | "info" | "warning";
8922
8925
  id?: number | undefined;
8923
8926
  }[] | undefined;
8924
8927
  required?: boolean | undefined;
@@ -8937,7 +8940,7 @@ declare function init(config: AuthHeroConfig): {
8937
8940
  hint?: string | undefined;
8938
8941
  messages?: {
8939
8942
  text: string;
8940
- type: "success" | "error" | "info" | "warning";
8943
+ type: "error" | "success" | "info" | "warning";
8941
8944
  id?: number | undefined;
8942
8945
  }[] | undefined;
8943
8946
  required?: boolean | undefined;
@@ -8957,7 +8960,7 @@ declare function init(config: AuthHeroConfig): {
8957
8960
  hint?: string | undefined;
8958
8961
  messages?: {
8959
8962
  text: string;
8960
- type: "success" | "error" | "info" | "warning";
8963
+ type: "error" | "success" | "info" | "warning";
8961
8964
  id?: number | undefined;
8962
8965
  }[] | undefined;
8963
8966
  required?: boolean | undefined;
@@ -8976,7 +8979,7 @@ declare function init(config: AuthHeroConfig): {
8976
8979
  hint?: string | undefined;
8977
8980
  messages?: {
8978
8981
  text: string;
8979
- type: "success" | "error" | "info" | "warning";
8982
+ type: "error" | "success" | "info" | "warning";
8980
8983
  id?: number | undefined;
8981
8984
  }[] | undefined;
8982
8985
  required?: boolean | undefined;
@@ -8998,7 +9001,7 @@ declare function init(config: AuthHeroConfig): {
8998
9001
  hint?: string | undefined;
8999
9002
  messages?: {
9000
9003
  text: string;
9001
- type: "success" | "error" | "info" | "warning";
9004
+ type: "error" | "success" | "info" | "warning";
9002
9005
  id?: number | undefined;
9003
9006
  }[] | undefined;
9004
9007
  required?: boolean | undefined;
@@ -9020,7 +9023,7 @@ declare function init(config: AuthHeroConfig): {
9020
9023
  hint?: string | undefined;
9021
9024
  messages?: {
9022
9025
  text: string;
9023
- type: "success" | "error" | "info" | "warning";
9026
+ type: "error" | "success" | "info" | "warning";
9024
9027
  id?: number | undefined;
9025
9028
  }[] | undefined;
9026
9029
  required?: boolean | undefined;
@@ -9039,7 +9042,7 @@ declare function init(config: AuthHeroConfig): {
9039
9042
  hint?: string | undefined;
9040
9043
  messages?: {
9041
9044
  text: string;
9042
- type: "success" | "error" | "info" | "warning";
9045
+ type: "error" | "success" | "info" | "warning";
9043
9046
  id?: number | undefined;
9044
9047
  }[] | undefined;
9045
9048
  required?: boolean | undefined;
@@ -9064,7 +9067,7 @@ declare function init(config: AuthHeroConfig): {
9064
9067
  hint?: string | undefined;
9065
9068
  messages?: {
9066
9069
  text: string;
9067
- type: "success" | "error" | "info" | "warning";
9070
+ type: "error" | "success" | "info" | "warning";
9068
9071
  id?: number | undefined;
9069
9072
  }[] | undefined;
9070
9073
  required?: boolean | undefined;
@@ -9085,7 +9088,7 @@ declare function init(config: AuthHeroConfig): {
9085
9088
  hint?: string | undefined;
9086
9089
  messages?: {
9087
9090
  text: string;
9088
- type: "success" | "error" | "info" | "warning";
9091
+ type: "error" | "success" | "info" | "warning";
9089
9092
  id?: number | undefined;
9090
9093
  }[] | undefined;
9091
9094
  required?: boolean | undefined;
@@ -9106,7 +9109,7 @@ declare function init(config: AuthHeroConfig): {
9106
9109
  hint?: string | undefined;
9107
9110
  messages?: {
9108
9111
  text: string;
9109
- type: "success" | "error" | "info" | "warning";
9112
+ type: "error" | "success" | "info" | "warning";
9110
9113
  id?: number | undefined;
9111
9114
  }[] | undefined;
9112
9115
  required?: boolean | undefined;
@@ -9336,7 +9339,7 @@ declare function init(config: AuthHeroConfig): {
9336
9339
  };
9337
9340
  };
9338
9341
  output: {
9339
- prompt: "signup" | "status" | "mfa" | "organizations" | "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";
9342
+ prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9340
9343
  language: string;
9341
9344
  }[];
9342
9345
  outputFormat: "json";
@@ -9374,7 +9377,7 @@ declare function init(config: AuthHeroConfig): {
9374
9377
  $get: {
9375
9378
  input: {
9376
9379
  param: {
9377
- prompt: "signup" | "status" | "mfa" | "organizations" | "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";
9380
+ prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9378
9381
  language: string;
9379
9382
  };
9380
9383
  } & {
@@ -9396,7 +9399,7 @@ declare function init(config: AuthHeroConfig): {
9396
9399
  $put: {
9397
9400
  input: {
9398
9401
  param: {
9399
- prompt: "signup" | "status" | "mfa" | "organizations" | "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";
9402
+ prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9400
9403
  language: string;
9401
9404
  };
9402
9405
  } & {
@@ -9420,7 +9423,7 @@ declare function init(config: AuthHeroConfig): {
9420
9423
  $delete: {
9421
9424
  input: {
9422
9425
  param: {
9423
- prompt: "signup" | "status" | "mfa" | "organizations" | "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";
9426
+ prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9424
9427
  language: string;
9425
9428
  };
9426
9429
  } & {
@@ -10282,7 +10285,7 @@ declare function init(config: AuthHeroConfig): {
10282
10285
  };
10283
10286
  } | {
10284
10287
  mode: "inline";
10285
- status: "success" | "error";
10288
+ status: "error" | "success";
10286
10289
  connection_id: string;
10287
10290
  connection_name: string;
10288
10291
  strategy: string;
@@ -11169,7 +11172,7 @@ declare function init(config: AuthHeroConfig): {
11169
11172
  created_at: string;
11170
11173
  updated_at: string;
11171
11174
  name: string;
11172
- provider: "auth0" | "cognito" | "okta" | "oidc";
11175
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11173
11176
  connection: string;
11174
11177
  enabled: boolean;
11175
11178
  credentials: {
@@ -11201,7 +11204,7 @@ declare function init(config: AuthHeroConfig): {
11201
11204
  created_at: string;
11202
11205
  updated_at: string;
11203
11206
  name: string;
11204
- provider: "auth0" | "cognito" | "okta" | "oidc";
11207
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11205
11208
  connection: string;
11206
11209
  enabled: boolean;
11207
11210
  credentials: {
@@ -11227,7 +11230,7 @@ declare function init(config: AuthHeroConfig): {
11227
11230
  } & {
11228
11231
  json: {
11229
11232
  name: string;
11230
- provider: "auth0" | "cognito" | "okta" | "oidc";
11233
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11231
11234
  connection: string;
11232
11235
  credentials: {
11233
11236
  domain: string;
@@ -11244,7 +11247,7 @@ declare function init(config: AuthHeroConfig): {
11244
11247
  created_at: string;
11245
11248
  updated_at: string;
11246
11249
  name: string;
11247
- provider: "auth0" | "cognito" | "okta" | "oidc";
11250
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11248
11251
  connection: string;
11249
11252
  enabled: boolean;
11250
11253
  credentials: {
@@ -11275,7 +11278,7 @@ declare function init(config: AuthHeroConfig): {
11275
11278
  json: {
11276
11279
  id?: string | undefined;
11277
11280
  name?: string | undefined;
11278
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
11281
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
11279
11282
  connection?: string | undefined;
11280
11283
  enabled?: boolean | undefined;
11281
11284
  credentials?: {
@@ -11291,7 +11294,7 @@ declare function init(config: AuthHeroConfig): {
11291
11294
  created_at: string;
11292
11295
  updated_at: string;
11293
11296
  name: string;
11294
- provider: "auth0" | "cognito" | "okta" | "oidc";
11297
+ provider: "auth0" | "oidc" | "okta" | "cognito";
11295
11298
  connection: string;
11296
11299
  enabled: boolean;
11297
11300
  credentials: {
@@ -11509,7 +11512,7 @@ declare function init(config: AuthHeroConfig): {
11509
11512
  };
11510
11513
  };
11511
11514
  output: {
11512
- type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11515
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11513
11516
  date: string;
11514
11517
  isMobile: boolean;
11515
11518
  log_id: string;
@@ -11548,7 +11551,7 @@ declare function init(config: AuthHeroConfig): {
11548
11551
  limit: number;
11549
11552
  length: number;
11550
11553
  logs: {
11551
- type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11554
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11552
11555
  date: string;
11553
11556
  isMobile: boolean;
11554
11557
  log_id: string;
@@ -11602,7 +11605,7 @@ declare function init(config: AuthHeroConfig): {
11602
11605
  };
11603
11606
  };
11604
11607
  output: {
11605
- type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11608
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11606
11609
  date: string;
11607
11610
  isMobile: boolean;
11608
11611
  log_id: string;
@@ -11757,7 +11760,7 @@ declare function init(config: AuthHeroConfig): {
11757
11760
  audience?: string | undefined;
11758
11761
  client_id?: string | undefined;
11759
11762
  allow_any_organization?: string | undefined;
11760
- subject_type?: "client" | "user" | undefined;
11763
+ subject_type?: "user" | "client" | undefined;
11761
11764
  };
11762
11765
  } & {
11763
11766
  header: {
@@ -11772,7 +11775,7 @@ declare function init(config: AuthHeroConfig): {
11772
11775
  organization_usage?: "deny" | "allow" | "require" | undefined;
11773
11776
  allow_any_organization?: boolean | undefined;
11774
11777
  is_system?: boolean | undefined;
11775
- subject_type?: "client" | "user" | undefined;
11778
+ subject_type?: "user" | "client" | undefined;
11776
11779
  authorization_details_types?: string[] | undefined;
11777
11780
  created_at?: string | undefined;
11778
11781
  updated_at?: string | undefined;
@@ -11788,7 +11791,7 @@ declare function init(config: AuthHeroConfig): {
11788
11791
  organization_usage?: "deny" | "allow" | "require" | undefined;
11789
11792
  allow_any_organization?: boolean | undefined;
11790
11793
  is_system?: boolean | undefined;
11791
- subject_type?: "client" | "user" | undefined;
11794
+ subject_type?: "user" | "client" | undefined;
11792
11795
  authorization_details_types?: string[] | undefined;
11793
11796
  created_at?: string | undefined;
11794
11797
  updated_at?: string | undefined;
@@ -11819,7 +11822,7 @@ declare function init(config: AuthHeroConfig): {
11819
11822
  organization_usage?: "deny" | "allow" | "require" | undefined;
11820
11823
  allow_any_organization?: boolean | undefined;
11821
11824
  is_system?: boolean | undefined;
11822
- subject_type?: "client" | "user" | undefined;
11825
+ subject_type?: "user" | "client" | undefined;
11823
11826
  authorization_details_types?: string[] | undefined;
11824
11827
  created_at?: string | undefined;
11825
11828
  updated_at?: string | undefined;
@@ -11864,7 +11867,7 @@ declare function init(config: AuthHeroConfig): {
11864
11867
  organization_usage?: "deny" | "allow" | "require" | undefined;
11865
11868
  allow_any_organization?: boolean | undefined;
11866
11869
  is_system?: boolean | undefined;
11867
- subject_type?: "client" | "user" | undefined;
11870
+ subject_type?: "user" | "client" | undefined;
11868
11871
  authorization_details_types?: string[] | undefined;
11869
11872
  };
11870
11873
  };
@@ -11876,7 +11879,7 @@ declare function init(config: AuthHeroConfig): {
11876
11879
  organization_usage?: "deny" | "allow" | "require" | undefined;
11877
11880
  allow_any_organization?: boolean | undefined;
11878
11881
  is_system?: boolean | undefined;
11879
- subject_type?: "client" | "user" | undefined;
11882
+ subject_type?: "user" | "client" | undefined;
11880
11883
  authorization_details_types?: string[] | undefined;
11881
11884
  created_at?: string | undefined;
11882
11885
  updated_at?: string | undefined;
@@ -11900,7 +11903,7 @@ declare function init(config: AuthHeroConfig): {
11900
11903
  organization_usage?: "deny" | "allow" | "require" | undefined;
11901
11904
  allow_any_organization?: boolean | undefined;
11902
11905
  is_system?: boolean | undefined;
11903
- subject_type?: "client" | "user" | undefined;
11906
+ subject_type?: "user" | "client" | undefined;
11904
11907
  authorization_details_types?: string[] | undefined;
11905
11908
  };
11906
11909
  };
@@ -11912,7 +11915,7 @@ declare function init(config: AuthHeroConfig): {
11912
11915
  organization_usage?: "deny" | "allow" | "require" | undefined;
11913
11916
  allow_any_organization?: boolean | undefined;
11914
11917
  is_system?: boolean | undefined;
11915
- subject_type?: "client" | "user" | undefined;
11918
+ subject_type?: "user" | "client" | undefined;
11916
11919
  authorization_details_types?: string[] | undefined;
11917
11920
  created_at?: string | undefined;
11918
11921
  updated_at?: string | undefined;
@@ -11990,7 +11993,7 @@ declare function init(config: AuthHeroConfig): {
11990
11993
  addons?: {
11991
11994
  [x: string]: any;
11992
11995
  } | undefined;
11993
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
11996
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
11994
11997
  client_metadata?: {
11995
11998
  [x: string]: string;
11996
11999
  } | undefined;
@@ -12086,7 +12089,7 @@ declare function init(config: AuthHeroConfig): {
12086
12089
  addons?: {
12087
12090
  [x: string]: any;
12088
12091
  } | undefined;
12089
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12092
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12090
12093
  client_metadata?: {
12091
12094
  [x: string]: string;
12092
12095
  } | undefined;
@@ -12197,7 +12200,7 @@ declare function init(config: AuthHeroConfig): {
12197
12200
  addons?: {
12198
12201
  [x: string]: any;
12199
12202
  } | undefined;
12200
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12203
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12201
12204
  client_metadata?: {
12202
12205
  [x: string]: string;
12203
12206
  } | undefined;
@@ -12307,7 +12310,7 @@ declare function init(config: AuthHeroConfig): {
12307
12310
  custom_login_page_preview?: string | undefined;
12308
12311
  form_template?: string | undefined;
12309
12312
  addons?: Record<string, any> | undefined;
12310
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12313
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12311
12314
  client_metadata?: Record<string, string> | undefined;
12312
12315
  hide_sign_up_disabled_error?: boolean | undefined;
12313
12316
  mobile?: Record<string, any> | undefined;
@@ -12387,7 +12390,7 @@ declare function init(config: AuthHeroConfig): {
12387
12390
  addons?: {
12388
12391
  [x: string]: any;
12389
12392
  } | undefined;
12390
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12393
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12391
12394
  client_metadata?: {
12392
12395
  [x: string]: string;
12393
12396
  } | undefined;
@@ -12476,7 +12479,7 @@ declare function init(config: AuthHeroConfig): {
12476
12479
  custom_login_page_preview?: string | undefined;
12477
12480
  form_template?: string | undefined;
12478
12481
  addons?: Record<string, any> | undefined;
12479
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12482
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12480
12483
  client_metadata?: Record<string, string> | undefined;
12481
12484
  hide_sign_up_disabled_error?: boolean | undefined;
12482
12485
  mobile?: Record<string, any> | undefined;
@@ -12556,7 +12559,7 @@ declare function init(config: AuthHeroConfig): {
12556
12559
  addons?: {
12557
12560
  [x: string]: any;
12558
12561
  } | undefined;
12559
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12562
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12560
12563
  client_metadata?: {
12561
12564
  [x: string]: string;
12562
12565
  } | undefined;
@@ -13820,7 +13823,7 @@ declare function init(config: AuthHeroConfig): {
13820
13823
  };
13821
13824
  };
13822
13825
  output: {
13823
- type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13826
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13824
13827
  date: string;
13825
13828
  isMobile: boolean;
13826
13829
  log_id: string;
@@ -13859,7 +13862,7 @@ declare function init(config: AuthHeroConfig): {
13859
13862
  limit: number;
13860
13863
  length: number;
13861
13864
  logs: {
13862
- type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13865
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13863
13866
  date: string;
13864
13867
  isMobile: boolean;
13865
13868
  log_id: string;
@@ -14794,27 +14797,9 @@ declare function init(config: AuthHeroConfig): {
14794
14797
  };
14795
14798
  } & {
14796
14799
  json: {
14797
- domain?: string | undefined;
14798
- type?: "auth0_managed_certs" | "self_managed_certs" | undefined;
14799
- verification_method?: "txt" | undefined;
14800
+ tls_policy?: "recommended" | undefined;
14800
14801
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14801
14802
  domain_metadata?: Record<string, string> | undefined;
14802
- custom_domain_id?: string | undefined;
14803
- primary?: boolean | undefined;
14804
- status?: "disabled" | "pending" | "ready" | "pending_verification" | undefined;
14805
- origin_domain_name?: string | undefined;
14806
- verification?: {
14807
- methods: ({
14808
- name: "txt";
14809
- record: string;
14810
- domain: string;
14811
- } | {
14812
- name: "http";
14813
- http_body: string;
14814
- http_url: string;
14815
- })[];
14816
- } | undefined;
14817
- tls_policy?: string | undefined;
14818
14803
  };
14819
14804
  };
14820
14805
  output: {
@@ -16528,7 +16513,7 @@ declare function init(config: AuthHeroConfig): {
16528
16513
  scope?: string | undefined;
16529
16514
  grant_types?: string[] | undefined;
16530
16515
  response_types?: string[] | undefined;
16531
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
16516
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
16532
16517
  jwks_uri?: string | undefined;
16533
16518
  jwks?: Record<string, unknown> | undefined;
16534
16519
  software_id?: string | undefined;
@@ -16617,7 +16602,7 @@ declare function init(config: AuthHeroConfig): {
16617
16602
  scope?: string | undefined;
16618
16603
  grant_types?: string[] | undefined;
16619
16604
  response_types?: string[] | undefined;
16620
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
16605
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
16621
16606
  jwks_uri?: string | undefined;
16622
16607
  jwks?: Record<string, unknown> | undefined;
16623
16608
  software_id?: string | undefined;
@@ -16969,14 +16954,14 @@ declare function init(config: AuthHeroConfig): {
16969
16954
  username?: string | undefined;
16970
16955
  audience?: string | undefined;
16971
16956
  state?: string | undefined;
16972
- prompt?: string | undefined;
16973
- ui_locales?: string | undefined;
16974
16957
  organization?: string | undefined;
16975
- redirect_uri?: string | undefined;
16976
- act_as?: string | undefined;
16977
16958
  nonce?: string | undefined;
16959
+ act_as?: string | undefined;
16960
+ redirect_uri?: string | undefined;
16961
+ prompt?: string | undefined;
16978
16962
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16979
16963
  code_challenge?: string | undefined;
16964
+ ui_locales?: string | undefined;
16980
16965
  max_age?: number | undefined;
16981
16966
  acr_values?: string | undefined;
16982
16967
  claims?: {
@@ -17005,14 +16990,14 @@ declare function init(config: AuthHeroConfig): {
17005
16990
  username?: string | undefined;
17006
16991
  audience?: string | undefined;
17007
16992
  state?: string | undefined;
17008
- prompt?: string | undefined;
17009
- ui_locales?: string | undefined;
17010
16993
  organization?: string | undefined;
17011
- redirect_uri?: string | undefined;
17012
- act_as?: string | undefined;
17013
16994
  nonce?: string | undefined;
16995
+ act_as?: string | undefined;
16996
+ redirect_uri?: string | undefined;
16997
+ prompt?: string | undefined;
17014
16998
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17015
16999
  code_challenge?: string | undefined;
17000
+ ui_locales?: string | undefined;
17016
17001
  max_age?: number | undefined;
17017
17002
  acr_values?: string | undefined;
17018
17003
  claims?: {
@@ -18918,7 +18903,7 @@ declare function init(config: AuthHeroConfig): {
18918
18903
  $get: {
18919
18904
  input: {
18920
18905
  param: {
18921
- 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";
18906
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18922
18907
  };
18923
18908
  } & {
18924
18909
  query: {
@@ -18934,7 +18919,7 @@ declare function init(config: AuthHeroConfig): {
18934
18919
  } | {
18935
18920
  input: {
18936
18921
  param: {
18937
- 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";
18922
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18938
18923
  };
18939
18924
  } & {
18940
18925
  query: {
@@ -18950,7 +18935,7 @@ declare function init(config: AuthHeroConfig): {
18950
18935
  } | {
18951
18936
  input: {
18952
18937
  param: {
18953
- 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";
18938
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18954
18939
  };
18955
18940
  } & {
18956
18941
  query: {
@@ -18970,7 +18955,7 @@ declare function init(config: AuthHeroConfig): {
18970
18955
  $post: {
18971
18956
  input: {
18972
18957
  param: {
18973
- 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";
18958
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18974
18959
  };
18975
18960
  } & {
18976
18961
  query: {
@@ -18988,7 +18973,7 @@ declare function init(config: AuthHeroConfig): {
18988
18973
  } | {
18989
18974
  input: {
18990
18975
  param: {
18991
- 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";
18976
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18992
18977
  };
18993
18978
  } & {
18994
18979
  query: {
@@ -19006,7 +18991,7 @@ declare function init(config: AuthHeroConfig): {
19006
18991
  } | {
19007
18992
  input: {
19008
18993
  param: {
19009
- 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";
18994
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19010
18995
  };
19011
18996
  } & {
19012
18997
  query: {