authhero 8.7.1 → 8.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
  2. package/dist/assets/u/widget/index.esm.js +1 -1
  3. package/dist/assets/u/widget/p-52a70476.entry.js +1 -0
  4. package/dist/authhero.cjs +104 -103
  5. package/dist/authhero.d.ts +256 -212
  6. package/dist/authhero.mjs +9669 -9519
  7. package/dist/stats.html +1 -1
  8. package/dist/tsconfig.types.tsbuildinfo +1 -1
  9. package/dist/types/authentication-flows/passwordless.d.ts +4 -3
  10. package/dist/types/helpers/client.d.ts +1 -0
  11. package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
  12. package/dist/types/helpers/mutable-response.d.ts +38 -0
  13. package/dist/types/index.d.ts +194 -211
  14. package/dist/types/routes/auth-api/index.d.ts +26 -26
  15. package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
  16. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  17. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  18. package/dist/types/routes/auth-api/token.d.ts +10 -10
  19. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  20. package/dist/types/routes/management-api/clients.d.ts +7 -7
  21. package/dist/types/routes/management-api/connections.d.ts +1 -1
  22. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  23. package/dist/types/routes/management-api/forms.d.ts +126 -126
  24. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  25. package/dist/types/routes/management-api/index.d.ts +162 -162
  26. package/dist/types/routes/management-api/logs.d.ts +3 -3
  27. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  28. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  29. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  30. package/dist/types/routes/management-api/tenants.d.ts +207 -3
  31. package/dist/types/routes/management-api/users.d.ts +2 -2
  32. package/dist/types/routes/universal-login/common.d.ts +6 -2
  33. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  34. package/dist/types/routes/universal-login/screens/connect-authz.d.ts +41 -0
  35. package/dist/types/routes/universal-login/u2-index.d.ts +5 -23
  36. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -23
  37. package/dist/types/routes/universal-login/u2-widget-page.d.ts +6 -0
  38. package/dist/types/types/AuthHeroConfig.d.ts +21 -0
  39. package/dist/types/types/Bindings.d.ts +1 -0
  40. package/dist/types/types/IdToken.d.ts +2 -2
  41. package/package.json +5 -5
  42. package/dist/assets/u/widget/p-5a319adc.entry.js +0 -1
@@ -322,6 +322,7 @@ declare const enrichedClientSchema: z.ZodObject<{
322
322
  provisioning_state_changed_at: z.ZodOptional<z.ZodString>;
323
323
  bundle_configuration: z.ZodOptional<z.ZodString>;
324
324
  worker_version: z.ZodOptional<z.ZodString>;
325
+ database_version: z.ZodOptional<z.ZodString>;
325
326
  worker_script_name: z.ZodOptional<z.ZodString>;
326
327
  storage_kind: z.ZodOptional<z.ZodEnum<{
327
328
  own_d1: "own_d1";
@@ -1258,6 +1259,27 @@ interface AuthHeroConfig {
1258
1259
  * ```
1259
1260
  */
1260
1261
  tenantDispatch?: MiddlewareHandler;
1262
+ /**
1263
+ * Optional handler that re-provisions (upgrades) an existing WFP tenant onto
1264
+ * the control plane's current worker bundle + migrations. When set, the
1265
+ * management API exposes `POST /api/v2/tenants/{id}/redeploy` (control-plane
1266
+ * only), which invokes this handler and returns the refreshed tenant row with
1267
+ * its updated `worker_version` / `bundle_configuration` / `database_version`.
1268
+ *
1269
+ * Kept as a generic `(tenantId) => Promise<void>` so authhero core carries no
1270
+ * Cloudflare / dispatch-namespace dependency. Wire it to
1271
+ * `@authhero/cloudflare-adapter`'s provisioning hook:
1272
+ *
1273
+ * @example
1274
+ * ```typescript
1275
+ * const hook = createWfpTenantProvisioningHook({ provisioner, tenants });
1276
+ * const { app } = init({
1277
+ * dataAdapter,
1278
+ * tenantUpgrade: hook.onUpgrade,
1279
+ * });
1280
+ * ```
1281
+ */
1282
+ tenantUpgrade?: (tenantId: string) => Promise<void>;
1261
1283
  /**
1262
1284
  * Optional powered-by logo to display at the bottom left of the login widget.
1263
1285
  * This is only configurable in code, not stored in the database.
@@ -1522,6 +1544,7 @@ type Bindings = {
1522
1544
  };
1523
1545
  codeExecutor?: CodeExecutor;
1524
1546
  webhookInvoker?: WebhookInvoker;
1547
+ tenantUpgrade?: (tenantId: string) => Promise<void>;
1525
1548
  outbox?: OutboxConfig;
1526
1549
  userLinkingMode?: UserLinkingModeOption;
1527
1550
  usernamePasswordProvider?: UsernamePasswordProviderResolver;
@@ -2067,6 +2090,45 @@ declare class PostmarkEmailService implements EmailServiceAdapter {
2067
2090
  */
2068
2091
  declare function waitUntil(ctx: Context, promise: Promise<unknown>): void;
2069
2092
 
2093
+ /**
2094
+ * Normalizing a response so middleware can write headers onto it.
2095
+ *
2096
+ * A response that the worker *received* — from `fetch()`, a Workers-for-Platforms
2097
+ * dispatch (`DISPATCHER.get(name).fetch()`), the Cache API, or R2 — carries an
2098
+ * *immutable* header guard. Calling `headers.set()` / `headers.append()` on it
2099
+ * throws `TypeError: Can't modify immutable headers.`. Responses built in-worker
2100
+ * (`c.json()`, `c.text()`, `new Response(...)`) are mutable.
2101
+ *
2102
+ * Any middleware that annotates the response after `next()` (CORS, Server-Timing,
2103
+ * `Preference-Applied`, …) must therefore tolerate an immutable response. Rather
2104
+ * than guard each write with a try/catch, normalize once: re-wrapping is cheap
2105
+ * (the body stream is passed through, not copied) and deterministic, so there is
2106
+ * nothing to detect.
2107
+ */
2108
+ /**
2109
+ * Return a response whose headers are mutable. A received response is re-wrapped
2110
+ * into a fresh `Response` (which has the mutable "response" header guard); an
2111
+ * already-mutable response is re-wrapped too, harmlessly, preserving every header
2112
+ * already set on it.
2113
+ *
2114
+ * A `101 Switching Protocols` upgrade is returned untouched: it carries a
2115
+ * `webSocket` handle that reconstruction would drop, breaking the upgrade. Its
2116
+ * headers stay immutable, so callers must not write to an upgrade response.
2117
+ */
2118
+ declare function toMutableResponse(res: Response): Response;
2119
+ /**
2120
+ * Ensure `c.res` is safe to write headers onto, re-wrapping a received
2121
+ * (immutable) response in place. Typed structurally so it accepts any Hono
2122
+ * `Context` regardless of its `Bindings`/`Variables` generics.
2123
+ *
2124
+ * Note the 101 carve-out in {@link toMutableResponse}: for an upgrade response
2125
+ * this is a no-op and the headers remain immutable, so a caller that may face a
2126
+ * 101 must still skip its header writes for it.
2127
+ */
2128
+ declare function ensureMutableResponse(c: {
2129
+ res: Response;
2130
+ }): void;
2131
+
2070
2132
  interface UserSessionCleanupParams {
2071
2133
  tenantId?: string;
2072
2134
  userId?: string;
@@ -2915,7 +2977,7 @@ declare function init(config: AuthHeroConfig): {
2915
2977
  };
2916
2978
  } & {
2917
2979
  json: {
2918
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2980
+ type: "email" | "passkey" | "push" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
2919
2981
  phone_number?: string | undefined;
2920
2982
  totp_secret?: string | undefined;
2921
2983
  credential_id?: string | undefined;
@@ -3055,7 +3117,7 @@ declare function init(config: AuthHeroConfig): {
3055
3117
  };
3056
3118
  };
3057
3119
  output: {
3058
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3120
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3059
3121
  enabled: boolean;
3060
3122
  trial_expired?: boolean | undefined;
3061
3123
  }[];
@@ -3210,7 +3272,7 @@ declare function init(config: AuthHeroConfig): {
3210
3272
  $get: {
3211
3273
  input: {
3212
3274
  param: {
3213
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3275
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3214
3276
  };
3215
3277
  } & {
3216
3278
  header: {
@@ -3218,7 +3280,7 @@ declare function init(config: AuthHeroConfig): {
3218
3280
  };
3219
3281
  };
3220
3282
  output: {
3221
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3283
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3222
3284
  enabled: boolean;
3223
3285
  trial_expired?: boolean | undefined;
3224
3286
  };
@@ -3231,7 +3293,7 @@ declare function init(config: AuthHeroConfig): {
3231
3293
  $put: {
3232
3294
  input: {
3233
3295
  param: {
3234
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3296
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3235
3297
  };
3236
3298
  } & {
3237
3299
  header: {
@@ -3243,7 +3305,7 @@ declare function init(config: AuthHeroConfig): {
3243
3305
  };
3244
3306
  };
3245
3307
  output: {
3246
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3308
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3247
3309
  enabled: boolean;
3248
3310
  trial_expired?: boolean | undefined;
3249
3311
  };
@@ -3989,10 +4051,10 @@ declare function init(config: AuthHeroConfig): {
3989
4051
  email?: string | undefined;
3990
4052
  };
3991
4053
  id?: string | undefined;
4054
+ roles?: string[] | undefined;
3992
4055
  app_metadata?: Record<string, any> | undefined;
3993
4056
  user_metadata?: Record<string, any> | undefined;
3994
4057
  connection_id?: string | undefined;
3995
- roles?: string[] | undefined;
3996
4058
  ttl_sec?: number | undefined;
3997
4059
  send_invitation_email?: boolean | undefined;
3998
4060
  };
@@ -5419,7 +5481,7 @@ declare function init(config: AuthHeroConfig): {
5419
5481
  hint?: string | undefined;
5420
5482
  messages?: {
5421
5483
  text: string;
5422
- type: "error" | "success" | "info" | "warning";
5484
+ type: "success" | "error" | "info" | "warning";
5423
5485
  id?: number | undefined;
5424
5486
  }[] | undefined;
5425
5487
  required?: boolean | undefined;
@@ -5437,7 +5499,7 @@ declare function init(config: AuthHeroConfig): {
5437
5499
  hint?: string | undefined;
5438
5500
  messages?: {
5439
5501
  text: string;
5440
- type: "error" | "success" | "info" | "warning";
5502
+ type: "success" | "error" | "info" | "warning";
5441
5503
  id?: number | undefined;
5442
5504
  }[] | undefined;
5443
5505
  required?: boolean | undefined;
@@ -5461,7 +5523,7 @@ declare function init(config: AuthHeroConfig): {
5461
5523
  hint?: string | undefined;
5462
5524
  messages?: {
5463
5525
  text: string;
5464
- type: "error" | "success" | "info" | "warning";
5526
+ type: "success" | "error" | "info" | "warning";
5465
5527
  id?: number | undefined;
5466
5528
  }[] | undefined;
5467
5529
  required?: boolean | undefined;
@@ -5485,7 +5547,7 @@ declare function init(config: AuthHeroConfig): {
5485
5547
  hint?: string | undefined;
5486
5548
  messages?: {
5487
5549
  text: string;
5488
- type: "error" | "success" | "info" | "warning";
5550
+ type: "success" | "error" | "info" | "warning";
5489
5551
  id?: number | undefined;
5490
5552
  }[] | undefined;
5491
5553
  required?: boolean | undefined;
@@ -5509,7 +5571,7 @@ declare function init(config: AuthHeroConfig): {
5509
5571
  hint?: string | undefined;
5510
5572
  messages?: {
5511
5573
  text: string;
5512
- type: "error" | "success" | "info" | "warning";
5574
+ type: "success" | "error" | "info" | "warning";
5513
5575
  id?: number | undefined;
5514
5576
  }[] | undefined;
5515
5577
  required?: boolean | undefined;
@@ -5538,7 +5600,7 @@ declare function init(config: AuthHeroConfig): {
5538
5600
  hint?: string | undefined;
5539
5601
  messages?: {
5540
5602
  text: string;
5541
- type: "error" | "success" | "info" | "warning";
5603
+ type: "success" | "error" | "info" | "warning";
5542
5604
  id?: number | undefined;
5543
5605
  }[] | undefined;
5544
5606
  required?: boolean | undefined;
@@ -5553,7 +5615,7 @@ declare function init(config: AuthHeroConfig): {
5553
5615
  hint?: string | undefined;
5554
5616
  messages?: {
5555
5617
  text: string;
5556
- type: "error" | "success" | "info" | "warning";
5618
+ type: "success" | "error" | "info" | "warning";
5557
5619
  id?: number | undefined;
5558
5620
  }[] | undefined;
5559
5621
  required?: boolean | undefined;
@@ -5574,7 +5636,7 @@ declare function init(config: AuthHeroConfig): {
5574
5636
  hint?: string | undefined;
5575
5637
  messages?: {
5576
5638
  text: string;
5577
- type: "error" | "success" | "info" | "warning";
5639
+ type: "success" | "error" | "info" | "warning";
5578
5640
  id?: number | undefined;
5579
5641
  }[] | undefined;
5580
5642
  required?: boolean | undefined;
@@ -5599,7 +5661,7 @@ declare function init(config: AuthHeroConfig): {
5599
5661
  hint?: string | undefined;
5600
5662
  messages?: {
5601
5663
  text: string;
5602
- type: "error" | "success" | "info" | "warning";
5664
+ type: "success" | "error" | "info" | "warning";
5603
5665
  id?: number | undefined;
5604
5666
  }[] | undefined;
5605
5667
  required?: boolean | undefined;
@@ -5618,7 +5680,7 @@ declare function init(config: AuthHeroConfig): {
5618
5680
  hint?: string | undefined;
5619
5681
  messages?: {
5620
5682
  text: string;
5621
- type: "error" | "success" | "info" | "warning";
5683
+ type: "success" | "error" | "info" | "warning";
5622
5684
  id?: number | undefined;
5623
5685
  }[] | undefined;
5624
5686
  required?: boolean | undefined;
@@ -5638,7 +5700,7 @@ declare function init(config: AuthHeroConfig): {
5638
5700
  hint?: string | undefined;
5639
5701
  messages?: {
5640
5702
  text: string;
5641
- type: "error" | "success" | "info" | "warning";
5703
+ type: "success" | "error" | "info" | "warning";
5642
5704
  id?: number | undefined;
5643
5705
  }[] | undefined;
5644
5706
  required?: boolean | undefined;
@@ -5657,7 +5719,7 @@ declare function init(config: AuthHeroConfig): {
5657
5719
  hint?: string | undefined;
5658
5720
  messages?: {
5659
5721
  text: string;
5660
- type: "error" | "success" | "info" | "warning";
5722
+ type: "success" | "error" | "info" | "warning";
5661
5723
  id?: number | undefined;
5662
5724
  }[] | undefined;
5663
5725
  required?: boolean | undefined;
@@ -5679,7 +5741,7 @@ declare function init(config: AuthHeroConfig): {
5679
5741
  hint?: string | undefined;
5680
5742
  messages?: {
5681
5743
  text: string;
5682
- type: "error" | "success" | "info" | "warning";
5744
+ type: "success" | "error" | "info" | "warning";
5683
5745
  id?: number | undefined;
5684
5746
  }[] | undefined;
5685
5747
  required?: boolean | undefined;
@@ -5701,7 +5763,7 @@ declare function init(config: AuthHeroConfig): {
5701
5763
  hint?: string | undefined;
5702
5764
  messages?: {
5703
5765
  text: string;
5704
- type: "error" | "success" | "info" | "warning";
5766
+ type: "success" | "error" | "info" | "warning";
5705
5767
  id?: number | undefined;
5706
5768
  }[] | undefined;
5707
5769
  required?: boolean | undefined;
@@ -5720,7 +5782,7 @@ declare function init(config: AuthHeroConfig): {
5720
5782
  hint?: string | undefined;
5721
5783
  messages?: {
5722
5784
  text: string;
5723
- type: "error" | "success" | "info" | "warning";
5785
+ type: "success" | "error" | "info" | "warning";
5724
5786
  id?: number | undefined;
5725
5787
  }[] | undefined;
5726
5788
  required?: boolean | undefined;
@@ -5745,7 +5807,7 @@ declare function init(config: AuthHeroConfig): {
5745
5807
  hint?: string | undefined;
5746
5808
  messages?: {
5747
5809
  text: string;
5748
- type: "error" | "success" | "info" | "warning";
5810
+ type: "success" | "error" | "info" | "warning";
5749
5811
  id?: number | undefined;
5750
5812
  }[] | undefined;
5751
5813
  required?: boolean | undefined;
@@ -5766,7 +5828,7 @@ declare function init(config: AuthHeroConfig): {
5766
5828
  hint?: string | undefined;
5767
5829
  messages?: {
5768
5830
  text: string;
5769
- type: "error" | "success" | "info" | "warning";
5831
+ type: "success" | "error" | "info" | "warning";
5770
5832
  id?: number | undefined;
5771
5833
  }[] | undefined;
5772
5834
  required?: boolean | undefined;
@@ -5787,7 +5849,7 @@ declare function init(config: AuthHeroConfig): {
5787
5849
  hint?: string | undefined;
5788
5850
  messages?: {
5789
5851
  text: string;
5790
- type: "error" | "success" | "info" | "warning";
5852
+ type: "success" | "error" | "info" | "warning";
5791
5853
  id?: number | undefined;
5792
5854
  }[] | undefined;
5793
5855
  required?: boolean | undefined;
@@ -6020,7 +6082,7 @@ declare function init(config: AuthHeroConfig): {
6020
6082
  hint?: string | undefined;
6021
6083
  messages?: {
6022
6084
  text: string;
6023
- type: "error" | "success" | "info" | "warning";
6085
+ type: "success" | "error" | "info" | "warning";
6024
6086
  id?: number | undefined;
6025
6087
  }[] | undefined;
6026
6088
  required?: boolean | undefined;
@@ -6038,7 +6100,7 @@ declare function init(config: AuthHeroConfig): {
6038
6100
  hint?: string | undefined;
6039
6101
  messages?: {
6040
6102
  text: string;
6041
- type: "error" | "success" | "info" | "warning";
6103
+ type: "success" | "error" | "info" | "warning";
6042
6104
  id?: number | undefined;
6043
6105
  }[] | undefined;
6044
6106
  required?: boolean | undefined;
@@ -6062,7 +6124,7 @@ declare function init(config: AuthHeroConfig): {
6062
6124
  hint?: string | undefined;
6063
6125
  messages?: {
6064
6126
  text: string;
6065
- type: "error" | "success" | "info" | "warning";
6127
+ type: "success" | "error" | "info" | "warning";
6066
6128
  id?: number | undefined;
6067
6129
  }[] | undefined;
6068
6130
  required?: boolean | undefined;
@@ -6086,7 +6148,7 @@ declare function init(config: AuthHeroConfig): {
6086
6148
  hint?: string | undefined;
6087
6149
  messages?: {
6088
6150
  text: string;
6089
- type: "error" | "success" | "info" | "warning";
6151
+ type: "success" | "error" | "info" | "warning";
6090
6152
  id?: number | undefined;
6091
6153
  }[] | undefined;
6092
6154
  required?: boolean | undefined;
@@ -6110,7 +6172,7 @@ declare function init(config: AuthHeroConfig): {
6110
6172
  hint?: string | undefined;
6111
6173
  messages?: {
6112
6174
  text: string;
6113
- type: "error" | "success" | "info" | "warning";
6175
+ type: "success" | "error" | "info" | "warning";
6114
6176
  id?: number | undefined;
6115
6177
  }[] | undefined;
6116
6178
  required?: boolean | undefined;
@@ -6139,7 +6201,7 @@ declare function init(config: AuthHeroConfig): {
6139
6201
  hint?: string | undefined;
6140
6202
  messages?: {
6141
6203
  text: string;
6142
- type: "error" | "success" | "info" | "warning";
6204
+ type: "success" | "error" | "info" | "warning";
6143
6205
  id?: number | undefined;
6144
6206
  }[] | undefined;
6145
6207
  required?: boolean | undefined;
@@ -6154,7 +6216,7 @@ declare function init(config: AuthHeroConfig): {
6154
6216
  hint?: string | undefined;
6155
6217
  messages?: {
6156
6218
  text: string;
6157
- type: "error" | "success" | "info" | "warning";
6219
+ type: "success" | "error" | "info" | "warning";
6158
6220
  id?: number | undefined;
6159
6221
  }[] | undefined;
6160
6222
  required?: boolean | undefined;
@@ -6175,7 +6237,7 @@ declare function init(config: AuthHeroConfig): {
6175
6237
  hint?: string | undefined;
6176
6238
  messages?: {
6177
6239
  text: string;
6178
- type: "error" | "success" | "info" | "warning";
6240
+ type: "success" | "error" | "info" | "warning";
6179
6241
  id?: number | undefined;
6180
6242
  }[] | undefined;
6181
6243
  required?: boolean | undefined;
@@ -6200,7 +6262,7 @@ declare function init(config: AuthHeroConfig): {
6200
6262
  hint?: string | undefined;
6201
6263
  messages?: {
6202
6264
  text: string;
6203
- type: "error" | "success" | "info" | "warning";
6265
+ type: "success" | "error" | "info" | "warning";
6204
6266
  id?: number | undefined;
6205
6267
  }[] | undefined;
6206
6268
  required?: boolean | undefined;
@@ -6219,7 +6281,7 @@ declare function init(config: AuthHeroConfig): {
6219
6281
  hint?: string | undefined;
6220
6282
  messages?: {
6221
6283
  text: string;
6222
- type: "error" | "success" | "info" | "warning";
6284
+ type: "success" | "error" | "info" | "warning";
6223
6285
  id?: number | undefined;
6224
6286
  }[] | undefined;
6225
6287
  required?: boolean | undefined;
@@ -6239,7 +6301,7 @@ declare function init(config: AuthHeroConfig): {
6239
6301
  hint?: string | undefined;
6240
6302
  messages?: {
6241
6303
  text: string;
6242
- type: "error" | "success" | "info" | "warning";
6304
+ type: "success" | "error" | "info" | "warning";
6243
6305
  id?: number | undefined;
6244
6306
  }[] | undefined;
6245
6307
  required?: boolean | undefined;
@@ -6258,7 +6320,7 @@ declare function init(config: AuthHeroConfig): {
6258
6320
  hint?: string | undefined;
6259
6321
  messages?: {
6260
6322
  text: string;
6261
- type: "error" | "success" | "info" | "warning";
6323
+ type: "success" | "error" | "info" | "warning";
6262
6324
  id?: number | undefined;
6263
6325
  }[] | undefined;
6264
6326
  required?: boolean | undefined;
@@ -6280,7 +6342,7 @@ declare function init(config: AuthHeroConfig): {
6280
6342
  hint?: string | undefined;
6281
6343
  messages?: {
6282
6344
  text: string;
6283
- type: "error" | "success" | "info" | "warning";
6345
+ type: "success" | "error" | "info" | "warning";
6284
6346
  id?: number | undefined;
6285
6347
  }[] | undefined;
6286
6348
  required?: boolean | undefined;
@@ -6302,7 +6364,7 @@ declare function init(config: AuthHeroConfig): {
6302
6364
  hint?: string | undefined;
6303
6365
  messages?: {
6304
6366
  text: string;
6305
- type: "error" | "success" | "info" | "warning";
6367
+ type: "success" | "error" | "info" | "warning";
6306
6368
  id?: number | undefined;
6307
6369
  }[] | undefined;
6308
6370
  required?: boolean | undefined;
@@ -6321,7 +6383,7 @@ declare function init(config: AuthHeroConfig): {
6321
6383
  hint?: string | undefined;
6322
6384
  messages?: {
6323
6385
  text: string;
6324
- type: "error" | "success" | "info" | "warning";
6386
+ type: "success" | "error" | "info" | "warning";
6325
6387
  id?: number | undefined;
6326
6388
  }[] | undefined;
6327
6389
  required?: boolean | undefined;
@@ -6346,7 +6408,7 @@ declare function init(config: AuthHeroConfig): {
6346
6408
  hint?: string | undefined;
6347
6409
  messages?: {
6348
6410
  text: string;
6349
- type: "error" | "success" | "info" | "warning";
6411
+ type: "success" | "error" | "info" | "warning";
6350
6412
  id?: number | undefined;
6351
6413
  }[] | undefined;
6352
6414
  required?: boolean | undefined;
@@ -6367,7 +6429,7 @@ declare function init(config: AuthHeroConfig): {
6367
6429
  hint?: string | undefined;
6368
6430
  messages?: {
6369
6431
  text: string;
6370
- type: "error" | "success" | "info" | "warning";
6432
+ type: "success" | "error" | "info" | "warning";
6371
6433
  id?: number | undefined;
6372
6434
  }[] | undefined;
6373
6435
  required?: boolean | undefined;
@@ -6388,7 +6450,7 @@ declare function init(config: AuthHeroConfig): {
6388
6450
  hint?: string | undefined;
6389
6451
  messages?: {
6390
6452
  text: string;
6391
- type: "error" | "success" | "info" | "warning";
6453
+ type: "success" | "error" | "info" | "warning";
6392
6454
  id?: number | undefined;
6393
6455
  }[] | undefined;
6394
6456
  required?: boolean | undefined;
@@ -6636,7 +6698,7 @@ declare function init(config: AuthHeroConfig): {
6636
6698
  hint?: string | undefined;
6637
6699
  messages?: {
6638
6700
  text: string;
6639
- type: "error" | "success" | "info" | "warning";
6701
+ type: "success" | "error" | "info" | "warning";
6640
6702
  id?: number | undefined;
6641
6703
  }[] | undefined;
6642
6704
  required?: boolean | undefined;
@@ -6654,7 +6716,7 @@ declare function init(config: AuthHeroConfig): {
6654
6716
  hint?: string | undefined;
6655
6717
  messages?: {
6656
6718
  text: string;
6657
- type: "error" | "success" | "info" | "warning";
6719
+ type: "success" | "error" | "info" | "warning";
6658
6720
  id?: number | undefined;
6659
6721
  }[] | undefined;
6660
6722
  required?: boolean | undefined;
@@ -6678,7 +6740,7 @@ declare function init(config: AuthHeroConfig): {
6678
6740
  hint?: string | undefined;
6679
6741
  messages?: {
6680
6742
  text: string;
6681
- type: "error" | "success" | "info" | "warning";
6743
+ type: "success" | "error" | "info" | "warning";
6682
6744
  id?: number | undefined;
6683
6745
  }[] | undefined;
6684
6746
  required?: boolean | undefined;
@@ -6702,7 +6764,7 @@ declare function init(config: AuthHeroConfig): {
6702
6764
  hint?: string | undefined;
6703
6765
  messages?: {
6704
6766
  text: string;
6705
- type: "error" | "success" | "info" | "warning";
6767
+ type: "success" | "error" | "info" | "warning";
6706
6768
  id?: number | undefined;
6707
6769
  }[] | undefined;
6708
6770
  required?: boolean | undefined;
@@ -6726,7 +6788,7 @@ declare function init(config: AuthHeroConfig): {
6726
6788
  hint?: string | undefined;
6727
6789
  messages?: {
6728
6790
  text: string;
6729
- type: "error" | "success" | "info" | "warning";
6791
+ type: "success" | "error" | "info" | "warning";
6730
6792
  id?: number | undefined;
6731
6793
  }[] | undefined;
6732
6794
  required?: boolean | undefined;
@@ -6755,7 +6817,7 @@ declare function init(config: AuthHeroConfig): {
6755
6817
  hint?: string | undefined;
6756
6818
  messages?: {
6757
6819
  text: string;
6758
- type: "error" | "success" | "info" | "warning";
6820
+ type: "success" | "error" | "info" | "warning";
6759
6821
  id?: number | undefined;
6760
6822
  }[] | undefined;
6761
6823
  required?: boolean | undefined;
@@ -6770,7 +6832,7 @@ declare function init(config: AuthHeroConfig): {
6770
6832
  hint?: string | undefined;
6771
6833
  messages?: {
6772
6834
  text: string;
6773
- type: "error" | "success" | "info" | "warning";
6835
+ type: "success" | "error" | "info" | "warning";
6774
6836
  id?: number | undefined;
6775
6837
  }[] | undefined;
6776
6838
  required?: boolean | undefined;
@@ -6791,7 +6853,7 @@ declare function init(config: AuthHeroConfig): {
6791
6853
  hint?: string | undefined;
6792
6854
  messages?: {
6793
6855
  text: string;
6794
- type: "error" | "success" | "info" | "warning";
6856
+ type: "success" | "error" | "info" | "warning";
6795
6857
  id?: number | undefined;
6796
6858
  }[] | undefined;
6797
6859
  required?: boolean | undefined;
@@ -6816,7 +6878,7 @@ declare function init(config: AuthHeroConfig): {
6816
6878
  hint?: string | undefined;
6817
6879
  messages?: {
6818
6880
  text: string;
6819
- type: "error" | "success" | "info" | "warning";
6881
+ type: "success" | "error" | "info" | "warning";
6820
6882
  id?: number | undefined;
6821
6883
  }[] | undefined;
6822
6884
  required?: boolean | undefined;
@@ -6835,7 +6897,7 @@ declare function init(config: AuthHeroConfig): {
6835
6897
  hint?: string | undefined;
6836
6898
  messages?: {
6837
6899
  text: string;
6838
- type: "error" | "success" | "info" | "warning";
6900
+ type: "success" | "error" | "info" | "warning";
6839
6901
  id?: number | undefined;
6840
6902
  }[] | undefined;
6841
6903
  required?: boolean | undefined;
@@ -6855,7 +6917,7 @@ declare function init(config: AuthHeroConfig): {
6855
6917
  hint?: string | undefined;
6856
6918
  messages?: {
6857
6919
  text: string;
6858
- type: "error" | "success" | "info" | "warning";
6920
+ type: "success" | "error" | "info" | "warning";
6859
6921
  id?: number | undefined;
6860
6922
  }[] | undefined;
6861
6923
  required?: boolean | undefined;
@@ -6874,7 +6936,7 @@ declare function init(config: AuthHeroConfig): {
6874
6936
  hint?: string | undefined;
6875
6937
  messages?: {
6876
6938
  text: string;
6877
- type: "error" | "success" | "info" | "warning";
6939
+ type: "success" | "error" | "info" | "warning";
6878
6940
  id?: number | undefined;
6879
6941
  }[] | undefined;
6880
6942
  required?: boolean | undefined;
@@ -6896,7 +6958,7 @@ declare function init(config: AuthHeroConfig): {
6896
6958
  hint?: string | undefined;
6897
6959
  messages?: {
6898
6960
  text: string;
6899
- type: "error" | "success" | "info" | "warning";
6961
+ type: "success" | "error" | "info" | "warning";
6900
6962
  id?: number | undefined;
6901
6963
  }[] | undefined;
6902
6964
  required?: boolean | undefined;
@@ -6918,7 +6980,7 @@ declare function init(config: AuthHeroConfig): {
6918
6980
  hint?: string | undefined;
6919
6981
  messages?: {
6920
6982
  text: string;
6921
- type: "error" | "success" | "info" | "warning";
6983
+ type: "success" | "error" | "info" | "warning";
6922
6984
  id?: number | undefined;
6923
6985
  }[] | undefined;
6924
6986
  required?: boolean | undefined;
@@ -6937,7 +6999,7 @@ declare function init(config: AuthHeroConfig): {
6937
6999
  hint?: string | undefined;
6938
7000
  messages?: {
6939
7001
  text: string;
6940
- type: "error" | "success" | "info" | "warning";
7002
+ type: "success" | "error" | "info" | "warning";
6941
7003
  id?: number | undefined;
6942
7004
  }[] | undefined;
6943
7005
  required?: boolean | undefined;
@@ -6962,7 +7024,7 @@ declare function init(config: AuthHeroConfig): {
6962
7024
  hint?: string | undefined;
6963
7025
  messages?: {
6964
7026
  text: string;
6965
- type: "error" | "success" | "info" | "warning";
7027
+ type: "success" | "error" | "info" | "warning";
6966
7028
  id?: number | undefined;
6967
7029
  }[] | undefined;
6968
7030
  required?: boolean | undefined;
@@ -6983,7 +7045,7 @@ declare function init(config: AuthHeroConfig): {
6983
7045
  hint?: string | undefined;
6984
7046
  messages?: {
6985
7047
  text: string;
6986
- type: "error" | "success" | "info" | "warning";
7048
+ type: "success" | "error" | "info" | "warning";
6987
7049
  id?: number | undefined;
6988
7050
  }[] | undefined;
6989
7051
  required?: boolean | undefined;
@@ -7004,7 +7066,7 @@ declare function init(config: AuthHeroConfig): {
7004
7066
  hint?: string | undefined;
7005
7067
  messages?: {
7006
7068
  text: string;
7007
- type: "error" | "success" | "info" | "warning";
7069
+ type: "success" | "error" | "info" | "warning";
7008
7070
  id?: number | undefined;
7009
7071
  }[] | undefined;
7010
7072
  required?: boolean | undefined;
@@ -7258,7 +7320,7 @@ declare function init(config: AuthHeroConfig): {
7258
7320
  hint?: string | undefined;
7259
7321
  messages?: {
7260
7322
  text: string;
7261
- type: "error" | "success" | "info" | "warning";
7323
+ type: "success" | "error" | "info" | "warning";
7262
7324
  id?: number | undefined;
7263
7325
  }[] | undefined;
7264
7326
  required?: boolean | undefined;
@@ -7276,7 +7338,7 @@ declare function init(config: AuthHeroConfig): {
7276
7338
  hint?: string | undefined;
7277
7339
  messages?: {
7278
7340
  text: string;
7279
- type: "error" | "success" | "info" | "warning";
7341
+ type: "success" | "error" | "info" | "warning";
7280
7342
  id?: number | undefined;
7281
7343
  }[] | undefined;
7282
7344
  required?: boolean | undefined;
@@ -7300,7 +7362,7 @@ declare function init(config: AuthHeroConfig): {
7300
7362
  hint?: string | undefined;
7301
7363
  messages?: {
7302
7364
  text: string;
7303
- type: "error" | "success" | "info" | "warning";
7365
+ type: "success" | "error" | "info" | "warning";
7304
7366
  id?: number | undefined;
7305
7367
  }[] | undefined;
7306
7368
  required?: boolean | undefined;
@@ -7324,7 +7386,7 @@ declare function init(config: AuthHeroConfig): {
7324
7386
  hint?: string | undefined;
7325
7387
  messages?: {
7326
7388
  text: string;
7327
- type: "error" | "success" | "info" | "warning";
7389
+ type: "success" | "error" | "info" | "warning";
7328
7390
  id?: number | undefined;
7329
7391
  }[] | undefined;
7330
7392
  required?: boolean | undefined;
@@ -7348,7 +7410,7 @@ declare function init(config: AuthHeroConfig): {
7348
7410
  hint?: string | undefined;
7349
7411
  messages?: {
7350
7412
  text: string;
7351
- type: "error" | "success" | "info" | "warning";
7413
+ type: "success" | "error" | "info" | "warning";
7352
7414
  id?: number | undefined;
7353
7415
  }[] | undefined;
7354
7416
  required?: boolean | undefined;
@@ -7373,7 +7435,7 @@ declare function init(config: AuthHeroConfig): {
7373
7435
  hint?: string | undefined;
7374
7436
  messages?: {
7375
7437
  text: string;
7376
- type: "error" | "success" | "info" | "warning";
7438
+ type: "success" | "error" | "info" | "warning";
7377
7439
  id?: number | undefined;
7378
7440
  }[] | undefined;
7379
7441
  required?: boolean | undefined;
@@ -7388,7 +7450,7 @@ declare function init(config: AuthHeroConfig): {
7388
7450
  hint?: string | undefined;
7389
7451
  messages?: {
7390
7452
  text: string;
7391
- type: "error" | "success" | "info" | "warning";
7453
+ type: "success" | "error" | "info" | "warning";
7392
7454
  id?: number | undefined;
7393
7455
  }[] | undefined;
7394
7456
  required?: boolean | undefined;
@@ -7409,7 +7471,7 @@ declare function init(config: AuthHeroConfig): {
7409
7471
  hint?: string | undefined;
7410
7472
  messages?: {
7411
7473
  text: string;
7412
- type: "error" | "success" | "info" | "warning";
7474
+ type: "success" | "error" | "info" | "warning";
7413
7475
  id?: number | undefined;
7414
7476
  }[] | undefined;
7415
7477
  required?: boolean | undefined;
@@ -7434,7 +7496,7 @@ declare function init(config: AuthHeroConfig): {
7434
7496
  hint?: string | undefined;
7435
7497
  messages?: {
7436
7498
  text: string;
7437
- type: "error" | "success" | "info" | "warning";
7499
+ type: "success" | "error" | "info" | "warning";
7438
7500
  id?: number | undefined;
7439
7501
  }[] | undefined;
7440
7502
  required?: boolean | undefined;
@@ -7453,7 +7515,7 @@ declare function init(config: AuthHeroConfig): {
7453
7515
  hint?: string | undefined;
7454
7516
  messages?: {
7455
7517
  text: string;
7456
- type: "error" | "success" | "info" | "warning";
7518
+ type: "success" | "error" | "info" | "warning";
7457
7519
  id?: number | undefined;
7458
7520
  }[] | undefined;
7459
7521
  required?: boolean | undefined;
@@ -7473,7 +7535,7 @@ declare function init(config: AuthHeroConfig): {
7473
7535
  hint?: string | undefined;
7474
7536
  messages?: {
7475
7537
  text: string;
7476
- type: "error" | "success" | "info" | "warning";
7538
+ type: "success" | "error" | "info" | "warning";
7477
7539
  id?: number | undefined;
7478
7540
  }[] | undefined;
7479
7541
  required?: boolean | undefined;
@@ -7492,7 +7554,7 @@ declare function init(config: AuthHeroConfig): {
7492
7554
  hint?: string | undefined;
7493
7555
  messages?: {
7494
7556
  text: string;
7495
- type: "error" | "success" | "info" | "warning";
7557
+ type: "success" | "error" | "info" | "warning";
7496
7558
  id?: number | undefined;
7497
7559
  }[] | undefined;
7498
7560
  required?: boolean | undefined;
@@ -7514,7 +7576,7 @@ declare function init(config: AuthHeroConfig): {
7514
7576
  hint?: string | undefined;
7515
7577
  messages?: {
7516
7578
  text: string;
7517
- type: "error" | "success" | "info" | "warning";
7579
+ type: "success" | "error" | "info" | "warning";
7518
7580
  id?: number | undefined;
7519
7581
  }[] | undefined;
7520
7582
  required?: boolean | undefined;
@@ -7536,7 +7598,7 @@ declare function init(config: AuthHeroConfig): {
7536
7598
  hint?: string | undefined;
7537
7599
  messages?: {
7538
7600
  text: string;
7539
- type: "error" | "success" | "info" | "warning";
7601
+ type: "success" | "error" | "info" | "warning";
7540
7602
  id?: number | undefined;
7541
7603
  }[] | undefined;
7542
7604
  required?: boolean | undefined;
@@ -7555,7 +7617,7 @@ declare function init(config: AuthHeroConfig): {
7555
7617
  hint?: string | undefined;
7556
7618
  messages?: {
7557
7619
  text: string;
7558
- type: "error" | "success" | "info" | "warning";
7620
+ type: "success" | "error" | "info" | "warning";
7559
7621
  id?: number | undefined;
7560
7622
  }[] | undefined;
7561
7623
  required?: boolean | undefined;
@@ -7580,7 +7642,7 @@ declare function init(config: AuthHeroConfig): {
7580
7642
  hint?: string | undefined;
7581
7643
  messages?: {
7582
7644
  text: string;
7583
- type: "error" | "success" | "info" | "warning";
7645
+ type: "success" | "error" | "info" | "warning";
7584
7646
  id?: number | undefined;
7585
7647
  }[] | undefined;
7586
7648
  required?: boolean | undefined;
@@ -7601,7 +7663,7 @@ declare function init(config: AuthHeroConfig): {
7601
7663
  hint?: string | undefined;
7602
7664
  messages?: {
7603
7665
  text: string;
7604
- type: "error" | "success" | "info" | "warning";
7666
+ type: "success" | "error" | "info" | "warning";
7605
7667
  id?: number | undefined;
7606
7668
  }[] | undefined;
7607
7669
  required?: boolean | undefined;
@@ -7622,7 +7684,7 @@ declare function init(config: AuthHeroConfig): {
7622
7684
  hint?: string | undefined;
7623
7685
  messages?: {
7624
7686
  text: string;
7625
- type: "error" | "success" | "info" | "warning";
7687
+ type: "success" | "error" | "info" | "warning";
7626
7688
  id?: number | undefined;
7627
7689
  }[] | undefined;
7628
7690
  required?: boolean | undefined;
@@ -7853,7 +7915,7 @@ declare function init(config: AuthHeroConfig): {
7853
7915
  hint?: string | undefined;
7854
7916
  messages?: {
7855
7917
  text: string;
7856
- type: "error" | "success" | "info" | "warning";
7918
+ type: "success" | "error" | "info" | "warning";
7857
7919
  id?: number | undefined;
7858
7920
  }[] | undefined;
7859
7921
  required?: boolean | undefined;
@@ -7871,7 +7933,7 @@ declare function init(config: AuthHeroConfig): {
7871
7933
  hint?: string | undefined;
7872
7934
  messages?: {
7873
7935
  text: string;
7874
- type: "error" | "success" | "info" | "warning";
7936
+ type: "success" | "error" | "info" | "warning";
7875
7937
  id?: number | undefined;
7876
7938
  }[] | undefined;
7877
7939
  required?: boolean | undefined;
@@ -7895,7 +7957,7 @@ declare function init(config: AuthHeroConfig): {
7895
7957
  hint?: string | undefined;
7896
7958
  messages?: {
7897
7959
  text: string;
7898
- type: "error" | "success" | "info" | "warning";
7960
+ type: "success" | "error" | "info" | "warning";
7899
7961
  id?: number | undefined;
7900
7962
  }[] | undefined;
7901
7963
  required?: boolean | undefined;
@@ -7919,7 +7981,7 @@ declare function init(config: AuthHeroConfig): {
7919
7981
  hint?: string | undefined;
7920
7982
  messages?: {
7921
7983
  text: string;
7922
- type: "error" | "success" | "info" | "warning";
7984
+ type: "success" | "error" | "info" | "warning";
7923
7985
  id?: number | undefined;
7924
7986
  }[] | undefined;
7925
7987
  required?: boolean | undefined;
@@ -7943,7 +8005,7 @@ declare function init(config: AuthHeroConfig): {
7943
8005
  hint?: string | undefined;
7944
8006
  messages?: {
7945
8007
  text: string;
7946
- type: "error" | "success" | "info" | "warning";
8008
+ type: "success" | "error" | "info" | "warning";
7947
8009
  id?: number | undefined;
7948
8010
  }[] | undefined;
7949
8011
  required?: boolean | undefined;
@@ -7972,7 +8034,7 @@ declare function init(config: AuthHeroConfig): {
7972
8034
  hint?: string | undefined;
7973
8035
  messages?: {
7974
8036
  text: string;
7975
- type: "error" | "success" | "info" | "warning";
8037
+ type: "success" | "error" | "info" | "warning";
7976
8038
  id?: number | undefined;
7977
8039
  }[] | undefined;
7978
8040
  required?: boolean | undefined;
@@ -7987,7 +8049,7 @@ declare function init(config: AuthHeroConfig): {
7987
8049
  hint?: string | undefined;
7988
8050
  messages?: {
7989
8051
  text: string;
7990
- type: "error" | "success" | "info" | "warning";
8052
+ type: "success" | "error" | "info" | "warning";
7991
8053
  id?: number | undefined;
7992
8054
  }[] | undefined;
7993
8055
  required?: boolean | undefined;
@@ -8008,7 +8070,7 @@ declare function init(config: AuthHeroConfig): {
8008
8070
  hint?: string | undefined;
8009
8071
  messages?: {
8010
8072
  text: string;
8011
- type: "error" | "success" | "info" | "warning";
8073
+ type: "success" | "error" | "info" | "warning";
8012
8074
  id?: number | undefined;
8013
8075
  }[] | undefined;
8014
8076
  required?: boolean | undefined;
@@ -8033,7 +8095,7 @@ declare function init(config: AuthHeroConfig): {
8033
8095
  hint?: string | undefined;
8034
8096
  messages?: {
8035
8097
  text: string;
8036
- type: "error" | "success" | "info" | "warning";
8098
+ type: "success" | "error" | "info" | "warning";
8037
8099
  id?: number | undefined;
8038
8100
  }[] | undefined;
8039
8101
  required?: boolean | undefined;
@@ -8052,7 +8114,7 @@ declare function init(config: AuthHeroConfig): {
8052
8114
  hint?: string | undefined;
8053
8115
  messages?: {
8054
8116
  text: string;
8055
- type: "error" | "success" | "info" | "warning";
8117
+ type: "success" | "error" | "info" | "warning";
8056
8118
  id?: number | undefined;
8057
8119
  }[] | undefined;
8058
8120
  required?: boolean | undefined;
@@ -8072,7 +8134,7 @@ declare function init(config: AuthHeroConfig): {
8072
8134
  hint?: string | undefined;
8073
8135
  messages?: {
8074
8136
  text: string;
8075
- type: "error" | "success" | "info" | "warning";
8137
+ type: "success" | "error" | "info" | "warning";
8076
8138
  id?: number | undefined;
8077
8139
  }[] | undefined;
8078
8140
  required?: boolean | undefined;
@@ -8091,7 +8153,7 @@ declare function init(config: AuthHeroConfig): {
8091
8153
  hint?: string | undefined;
8092
8154
  messages?: {
8093
8155
  text: string;
8094
- type: "error" | "success" | "info" | "warning";
8156
+ type: "success" | "error" | "info" | "warning";
8095
8157
  id?: number | undefined;
8096
8158
  }[] | undefined;
8097
8159
  required?: boolean | undefined;
@@ -8113,7 +8175,7 @@ declare function init(config: AuthHeroConfig): {
8113
8175
  hint?: string | undefined;
8114
8176
  messages?: {
8115
8177
  text: string;
8116
- type: "error" | "success" | "info" | "warning";
8178
+ type: "success" | "error" | "info" | "warning";
8117
8179
  id?: number | undefined;
8118
8180
  }[] | undefined;
8119
8181
  required?: boolean | undefined;
@@ -8135,7 +8197,7 @@ declare function init(config: AuthHeroConfig): {
8135
8197
  hint?: string | undefined;
8136
8198
  messages?: {
8137
8199
  text: string;
8138
- type: "error" | "success" | "info" | "warning";
8200
+ type: "success" | "error" | "info" | "warning";
8139
8201
  id?: number | undefined;
8140
8202
  }[] | undefined;
8141
8203
  required?: boolean | undefined;
@@ -8154,7 +8216,7 @@ declare function init(config: AuthHeroConfig): {
8154
8216
  hint?: string | undefined;
8155
8217
  messages?: {
8156
8218
  text: string;
8157
- type: "error" | "success" | "info" | "warning";
8219
+ type: "success" | "error" | "info" | "warning";
8158
8220
  id?: number | undefined;
8159
8221
  }[] | undefined;
8160
8222
  required?: boolean | undefined;
@@ -8179,7 +8241,7 @@ declare function init(config: AuthHeroConfig): {
8179
8241
  hint?: string | undefined;
8180
8242
  messages?: {
8181
8243
  text: string;
8182
- type: "error" | "success" | "info" | "warning";
8244
+ type: "success" | "error" | "info" | "warning";
8183
8245
  id?: number | undefined;
8184
8246
  }[] | undefined;
8185
8247
  required?: boolean | undefined;
@@ -8200,7 +8262,7 @@ declare function init(config: AuthHeroConfig): {
8200
8262
  hint?: string | undefined;
8201
8263
  messages?: {
8202
8264
  text: string;
8203
- type: "error" | "success" | "info" | "warning";
8265
+ type: "success" | "error" | "info" | "warning";
8204
8266
  id?: number | undefined;
8205
8267
  }[] | undefined;
8206
8268
  required?: boolean | undefined;
@@ -8221,7 +8283,7 @@ declare function init(config: AuthHeroConfig): {
8221
8283
  hint?: string | undefined;
8222
8284
  messages?: {
8223
8285
  text: string;
8224
- type: "error" | "success" | "info" | "warning";
8286
+ type: "success" | "error" | "info" | "warning";
8225
8287
  id?: number | undefined;
8226
8288
  }[] | undefined;
8227
8289
  required?: boolean | undefined;
@@ -8454,7 +8516,7 @@ declare function init(config: AuthHeroConfig): {
8454
8516
  hint?: string | undefined;
8455
8517
  messages?: {
8456
8518
  text: string;
8457
- type: "error" | "success" | "info" | "warning";
8519
+ type: "success" | "error" | "info" | "warning";
8458
8520
  id?: number | undefined;
8459
8521
  }[] | undefined;
8460
8522
  required?: boolean | undefined;
@@ -8472,7 +8534,7 @@ declare function init(config: AuthHeroConfig): {
8472
8534
  hint?: string | undefined;
8473
8535
  messages?: {
8474
8536
  text: string;
8475
- type: "error" | "success" | "info" | "warning";
8537
+ type: "success" | "error" | "info" | "warning";
8476
8538
  id?: number | undefined;
8477
8539
  }[] | undefined;
8478
8540
  required?: boolean | undefined;
@@ -8496,7 +8558,7 @@ declare function init(config: AuthHeroConfig): {
8496
8558
  hint?: string | undefined;
8497
8559
  messages?: {
8498
8560
  text: string;
8499
- type: "error" | "success" | "info" | "warning";
8561
+ type: "success" | "error" | "info" | "warning";
8500
8562
  id?: number | undefined;
8501
8563
  }[] | undefined;
8502
8564
  required?: boolean | undefined;
@@ -8520,7 +8582,7 @@ declare function init(config: AuthHeroConfig): {
8520
8582
  hint?: string | undefined;
8521
8583
  messages?: {
8522
8584
  text: string;
8523
- type: "error" | "success" | "info" | "warning";
8585
+ type: "success" | "error" | "info" | "warning";
8524
8586
  id?: number | undefined;
8525
8587
  }[] | undefined;
8526
8588
  required?: boolean | undefined;
@@ -8544,7 +8606,7 @@ declare function init(config: AuthHeroConfig): {
8544
8606
  hint?: string | undefined;
8545
8607
  messages?: {
8546
8608
  text: string;
8547
- type: "error" | "success" | "info" | "warning";
8609
+ type: "success" | "error" | "info" | "warning";
8548
8610
  id?: number | undefined;
8549
8611
  }[] | undefined;
8550
8612
  required?: boolean | undefined;
@@ -8569,7 +8631,7 @@ declare function init(config: AuthHeroConfig): {
8569
8631
  hint?: string | undefined;
8570
8632
  messages?: {
8571
8633
  text: string;
8572
- type: "error" | "success" | "info" | "warning";
8634
+ type: "success" | "error" | "info" | "warning";
8573
8635
  id?: number | undefined;
8574
8636
  }[] | undefined;
8575
8637
  required?: boolean | undefined;
@@ -8584,7 +8646,7 @@ declare function init(config: AuthHeroConfig): {
8584
8646
  hint?: string | undefined;
8585
8647
  messages?: {
8586
8648
  text: string;
8587
- type: "error" | "success" | "info" | "warning";
8649
+ type: "success" | "error" | "info" | "warning";
8588
8650
  id?: number | undefined;
8589
8651
  }[] | undefined;
8590
8652
  required?: boolean | undefined;
@@ -8605,7 +8667,7 @@ declare function init(config: AuthHeroConfig): {
8605
8667
  hint?: string | undefined;
8606
8668
  messages?: {
8607
8669
  text: string;
8608
- type: "error" | "success" | "info" | "warning";
8670
+ type: "success" | "error" | "info" | "warning";
8609
8671
  id?: number | undefined;
8610
8672
  }[] | undefined;
8611
8673
  required?: boolean | undefined;
@@ -8630,7 +8692,7 @@ declare function init(config: AuthHeroConfig): {
8630
8692
  hint?: string | undefined;
8631
8693
  messages?: {
8632
8694
  text: string;
8633
- type: "error" | "success" | "info" | "warning";
8695
+ type: "success" | "error" | "info" | "warning";
8634
8696
  id?: number | undefined;
8635
8697
  }[] | undefined;
8636
8698
  required?: boolean | undefined;
@@ -8649,7 +8711,7 @@ declare function init(config: AuthHeroConfig): {
8649
8711
  hint?: string | undefined;
8650
8712
  messages?: {
8651
8713
  text: string;
8652
- type: "error" | "success" | "info" | "warning";
8714
+ type: "success" | "error" | "info" | "warning";
8653
8715
  id?: number | undefined;
8654
8716
  }[] | undefined;
8655
8717
  required?: boolean | undefined;
@@ -8669,7 +8731,7 @@ declare function init(config: AuthHeroConfig): {
8669
8731
  hint?: string | undefined;
8670
8732
  messages?: {
8671
8733
  text: string;
8672
- type: "error" | "success" | "info" | "warning";
8734
+ type: "success" | "error" | "info" | "warning";
8673
8735
  id?: number | undefined;
8674
8736
  }[] | undefined;
8675
8737
  required?: boolean | undefined;
@@ -8688,7 +8750,7 @@ declare function init(config: AuthHeroConfig): {
8688
8750
  hint?: string | undefined;
8689
8751
  messages?: {
8690
8752
  text: string;
8691
- type: "error" | "success" | "info" | "warning";
8753
+ type: "success" | "error" | "info" | "warning";
8692
8754
  id?: number | undefined;
8693
8755
  }[] | undefined;
8694
8756
  required?: boolean | undefined;
@@ -8710,7 +8772,7 @@ declare function init(config: AuthHeroConfig): {
8710
8772
  hint?: string | undefined;
8711
8773
  messages?: {
8712
8774
  text: string;
8713
- type: "error" | "success" | "info" | "warning";
8775
+ type: "success" | "error" | "info" | "warning";
8714
8776
  id?: number | undefined;
8715
8777
  }[] | undefined;
8716
8778
  required?: boolean | undefined;
@@ -8732,7 +8794,7 @@ declare function init(config: AuthHeroConfig): {
8732
8794
  hint?: string | undefined;
8733
8795
  messages?: {
8734
8796
  text: string;
8735
- type: "error" | "success" | "info" | "warning";
8797
+ type: "success" | "error" | "info" | "warning";
8736
8798
  id?: number | undefined;
8737
8799
  }[] | undefined;
8738
8800
  required?: boolean | undefined;
@@ -8751,7 +8813,7 @@ declare function init(config: AuthHeroConfig): {
8751
8813
  hint?: string | undefined;
8752
8814
  messages?: {
8753
8815
  text: string;
8754
- type: "error" | "success" | "info" | "warning";
8816
+ type: "success" | "error" | "info" | "warning";
8755
8817
  id?: number | undefined;
8756
8818
  }[] | undefined;
8757
8819
  required?: boolean | undefined;
@@ -8776,7 +8838,7 @@ declare function init(config: AuthHeroConfig): {
8776
8838
  hint?: string | undefined;
8777
8839
  messages?: {
8778
8840
  text: string;
8779
- type: "error" | "success" | "info" | "warning";
8841
+ type: "success" | "error" | "info" | "warning";
8780
8842
  id?: number | undefined;
8781
8843
  }[] | undefined;
8782
8844
  required?: boolean | undefined;
@@ -8797,7 +8859,7 @@ declare function init(config: AuthHeroConfig): {
8797
8859
  hint?: string | undefined;
8798
8860
  messages?: {
8799
8861
  text: string;
8800
- type: "error" | "success" | "info" | "warning";
8862
+ type: "success" | "error" | "info" | "warning";
8801
8863
  id?: number | undefined;
8802
8864
  }[] | undefined;
8803
8865
  required?: boolean | undefined;
@@ -8818,7 +8880,7 @@ declare function init(config: AuthHeroConfig): {
8818
8880
  hint?: string | undefined;
8819
8881
  messages?: {
8820
8882
  text: string;
8821
- type: "error" | "success" | "info" | "warning";
8883
+ type: "success" | "error" | "info" | "warning";
8822
8884
  id?: number | undefined;
8823
8885
  }[] | undefined;
8824
8886
  required?: boolean | undefined;
@@ -9049,7 +9111,7 @@ declare function init(config: AuthHeroConfig): {
9049
9111
  hint?: string | undefined;
9050
9112
  messages?: {
9051
9113
  text: string;
9052
- type: "error" | "success" | "info" | "warning";
9114
+ type: "success" | "error" | "info" | "warning";
9053
9115
  id?: number | undefined;
9054
9116
  }[] | undefined;
9055
9117
  required?: boolean | undefined;
@@ -9067,7 +9129,7 @@ declare function init(config: AuthHeroConfig): {
9067
9129
  hint?: string | undefined;
9068
9130
  messages?: {
9069
9131
  text: string;
9070
- type: "error" | "success" | "info" | "warning";
9132
+ type: "success" | "error" | "info" | "warning";
9071
9133
  id?: number | undefined;
9072
9134
  }[] | undefined;
9073
9135
  required?: boolean | undefined;
@@ -9091,7 +9153,7 @@ declare function init(config: AuthHeroConfig): {
9091
9153
  hint?: string | undefined;
9092
9154
  messages?: {
9093
9155
  text: string;
9094
- type: "error" | "success" | "info" | "warning";
9156
+ type: "success" | "error" | "info" | "warning";
9095
9157
  id?: number | undefined;
9096
9158
  }[] | undefined;
9097
9159
  required?: boolean | undefined;
@@ -9115,7 +9177,7 @@ declare function init(config: AuthHeroConfig): {
9115
9177
  hint?: string | undefined;
9116
9178
  messages?: {
9117
9179
  text: string;
9118
- type: "error" | "success" | "info" | "warning";
9180
+ type: "success" | "error" | "info" | "warning";
9119
9181
  id?: number | undefined;
9120
9182
  }[] | undefined;
9121
9183
  required?: boolean | undefined;
@@ -9139,7 +9201,7 @@ declare function init(config: AuthHeroConfig): {
9139
9201
  hint?: string | undefined;
9140
9202
  messages?: {
9141
9203
  text: string;
9142
- type: "error" | "success" | "info" | "warning";
9204
+ type: "success" | "error" | "info" | "warning";
9143
9205
  id?: number | undefined;
9144
9206
  }[] | undefined;
9145
9207
  required?: boolean | undefined;
@@ -9168,7 +9230,7 @@ declare function init(config: AuthHeroConfig): {
9168
9230
  hint?: string | undefined;
9169
9231
  messages?: {
9170
9232
  text: string;
9171
- type: "error" | "success" | "info" | "warning";
9233
+ type: "success" | "error" | "info" | "warning";
9172
9234
  id?: number | undefined;
9173
9235
  }[] | undefined;
9174
9236
  required?: boolean | undefined;
@@ -9183,7 +9245,7 @@ declare function init(config: AuthHeroConfig): {
9183
9245
  hint?: string | undefined;
9184
9246
  messages?: {
9185
9247
  text: string;
9186
- type: "error" | "success" | "info" | "warning";
9248
+ type: "success" | "error" | "info" | "warning";
9187
9249
  id?: number | undefined;
9188
9250
  }[] | undefined;
9189
9251
  required?: boolean | undefined;
@@ -9204,7 +9266,7 @@ declare function init(config: AuthHeroConfig): {
9204
9266
  hint?: string | undefined;
9205
9267
  messages?: {
9206
9268
  text: string;
9207
- type: "error" | "success" | "info" | "warning";
9269
+ type: "success" | "error" | "info" | "warning";
9208
9270
  id?: number | undefined;
9209
9271
  }[] | undefined;
9210
9272
  required?: boolean | undefined;
@@ -9229,7 +9291,7 @@ declare function init(config: AuthHeroConfig): {
9229
9291
  hint?: string | undefined;
9230
9292
  messages?: {
9231
9293
  text: string;
9232
- type: "error" | "success" | "info" | "warning";
9294
+ type: "success" | "error" | "info" | "warning";
9233
9295
  id?: number | undefined;
9234
9296
  }[] | undefined;
9235
9297
  required?: boolean | undefined;
@@ -9248,7 +9310,7 @@ declare function init(config: AuthHeroConfig): {
9248
9310
  hint?: string | undefined;
9249
9311
  messages?: {
9250
9312
  text: string;
9251
- type: "error" | "success" | "info" | "warning";
9313
+ type: "success" | "error" | "info" | "warning";
9252
9314
  id?: number | undefined;
9253
9315
  }[] | undefined;
9254
9316
  required?: boolean | undefined;
@@ -9268,7 +9330,7 @@ declare function init(config: AuthHeroConfig): {
9268
9330
  hint?: string | undefined;
9269
9331
  messages?: {
9270
9332
  text: string;
9271
- type: "error" | "success" | "info" | "warning";
9333
+ type: "success" | "error" | "info" | "warning";
9272
9334
  id?: number | undefined;
9273
9335
  }[] | undefined;
9274
9336
  required?: boolean | undefined;
@@ -9287,7 +9349,7 @@ declare function init(config: AuthHeroConfig): {
9287
9349
  hint?: string | undefined;
9288
9350
  messages?: {
9289
9351
  text: string;
9290
- type: "error" | "success" | "info" | "warning";
9352
+ type: "success" | "error" | "info" | "warning";
9291
9353
  id?: number | undefined;
9292
9354
  }[] | undefined;
9293
9355
  required?: boolean | undefined;
@@ -9309,7 +9371,7 @@ declare function init(config: AuthHeroConfig): {
9309
9371
  hint?: string | undefined;
9310
9372
  messages?: {
9311
9373
  text: string;
9312
- type: "error" | "success" | "info" | "warning";
9374
+ type: "success" | "error" | "info" | "warning";
9313
9375
  id?: number | undefined;
9314
9376
  }[] | undefined;
9315
9377
  required?: boolean | undefined;
@@ -9331,7 +9393,7 @@ declare function init(config: AuthHeroConfig): {
9331
9393
  hint?: string | undefined;
9332
9394
  messages?: {
9333
9395
  text: string;
9334
- type: "error" | "success" | "info" | "warning";
9396
+ type: "success" | "error" | "info" | "warning";
9335
9397
  id?: number | undefined;
9336
9398
  }[] | undefined;
9337
9399
  required?: boolean | undefined;
@@ -9350,7 +9412,7 @@ declare function init(config: AuthHeroConfig): {
9350
9412
  hint?: string | undefined;
9351
9413
  messages?: {
9352
9414
  text: string;
9353
- type: "error" | "success" | "info" | "warning";
9415
+ type: "success" | "error" | "info" | "warning";
9354
9416
  id?: number | undefined;
9355
9417
  }[] | undefined;
9356
9418
  required?: boolean | undefined;
@@ -9375,7 +9437,7 @@ declare function init(config: AuthHeroConfig): {
9375
9437
  hint?: string | undefined;
9376
9438
  messages?: {
9377
9439
  text: string;
9378
- type: "error" | "success" | "info" | "warning";
9440
+ type: "success" | "error" | "info" | "warning";
9379
9441
  id?: number | undefined;
9380
9442
  }[] | undefined;
9381
9443
  required?: boolean | undefined;
@@ -9396,7 +9458,7 @@ declare function init(config: AuthHeroConfig): {
9396
9458
  hint?: string | undefined;
9397
9459
  messages?: {
9398
9460
  text: string;
9399
- type: "error" | "success" | "info" | "warning";
9461
+ type: "success" | "error" | "info" | "warning";
9400
9462
  id?: number | undefined;
9401
9463
  }[] | undefined;
9402
9464
  required?: boolean | undefined;
@@ -9417,7 +9479,7 @@ declare function init(config: AuthHeroConfig): {
9417
9479
  hint?: string | undefined;
9418
9480
  messages?: {
9419
9481
  text: string;
9420
- type: "error" | "success" | "info" | "warning";
9482
+ type: "success" | "error" | "info" | "warning";
9421
9483
  id?: number | undefined;
9422
9484
  }[] | undefined;
9423
9485
  required?: boolean | undefined;
@@ -9647,7 +9709,7 @@ declare function init(config: AuthHeroConfig): {
9647
9709
  };
9648
9710
  };
9649
9711
  output: {
9650
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9712
+ 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";
9651
9713
  language: string;
9652
9714
  }[];
9653
9715
  outputFormat: "json";
@@ -9685,7 +9747,7 @@ declare function init(config: AuthHeroConfig): {
9685
9747
  $get: {
9686
9748
  input: {
9687
9749
  param: {
9688
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9750
+ 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";
9689
9751
  language: string;
9690
9752
  };
9691
9753
  } & {
@@ -9707,7 +9769,7 @@ declare function init(config: AuthHeroConfig): {
9707
9769
  $put: {
9708
9770
  input: {
9709
9771
  param: {
9710
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9772
+ 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";
9711
9773
  language: string;
9712
9774
  };
9713
9775
  } & {
@@ -9731,7 +9793,7 @@ declare function init(config: AuthHeroConfig): {
9731
9793
  $delete: {
9732
9794
  input: {
9733
9795
  param: {
9734
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9796
+ 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";
9735
9797
  language: string;
9736
9798
  };
9737
9799
  } & {
@@ -10593,7 +10655,7 @@ declare function init(config: AuthHeroConfig): {
10593
10655
  };
10594
10656
  } | {
10595
10657
  mode: "inline";
10596
- status: "error" | "success";
10658
+ status: "success" | "error";
10597
10659
  connection_id: string;
10598
10660
  connection_name: string;
10599
10661
  strategy: string;
@@ -11540,7 +11602,7 @@ declare function init(config: AuthHeroConfig): {
11540
11602
  created_at: string;
11541
11603
  updated_at: string;
11542
11604
  name: string;
11543
- provider: "auth0" | "oidc" | "okta" | "cognito";
11605
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11544
11606
  connection: string;
11545
11607
  enabled: boolean;
11546
11608
  credentials: {
@@ -11572,7 +11634,7 @@ declare function init(config: AuthHeroConfig): {
11572
11634
  created_at: string;
11573
11635
  updated_at: string;
11574
11636
  name: string;
11575
- provider: "auth0" | "oidc" | "okta" | "cognito";
11637
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11576
11638
  connection: string;
11577
11639
  enabled: boolean;
11578
11640
  credentials: {
@@ -11598,7 +11660,7 @@ declare function init(config: AuthHeroConfig): {
11598
11660
  } & {
11599
11661
  json: {
11600
11662
  name: string;
11601
- provider: "auth0" | "oidc" | "okta" | "cognito";
11663
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11602
11664
  connection: string;
11603
11665
  credentials: {
11604
11666
  domain: string;
@@ -11615,7 +11677,7 @@ declare function init(config: AuthHeroConfig): {
11615
11677
  created_at: string;
11616
11678
  updated_at: string;
11617
11679
  name: string;
11618
- provider: "auth0" | "oidc" | "okta" | "cognito";
11680
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11619
11681
  connection: string;
11620
11682
  enabled: boolean;
11621
11683
  credentials: {
@@ -11646,7 +11708,7 @@ declare function init(config: AuthHeroConfig): {
11646
11708
  json: {
11647
11709
  id?: string | undefined;
11648
11710
  name?: string | undefined;
11649
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
11711
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
11650
11712
  connection?: string | undefined;
11651
11713
  enabled?: boolean | undefined;
11652
11714
  credentials?: {
@@ -11662,7 +11724,7 @@ declare function init(config: AuthHeroConfig): {
11662
11724
  created_at: string;
11663
11725
  updated_at: string;
11664
11726
  name: string;
11665
- provider: "auth0" | "oidc" | "okta" | "cognito";
11727
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11666
11728
  connection: string;
11667
11729
  enabled: boolean;
11668
11730
  credentials: {
@@ -11880,7 +11942,7 @@ declare function init(config: AuthHeroConfig): {
11880
11942
  };
11881
11943
  };
11882
11944
  output: {
11883
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11945
+ 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";
11884
11946
  date: string;
11885
11947
  isMobile: boolean;
11886
11948
  log_id: string;
@@ -11919,7 +11981,7 @@ declare function init(config: AuthHeroConfig): {
11919
11981
  limit: number;
11920
11982
  length: number;
11921
11983
  logs: {
11922
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11984
+ 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";
11923
11985
  date: string;
11924
11986
  isMobile: boolean;
11925
11987
  log_id: string;
@@ -11973,7 +12035,7 @@ declare function init(config: AuthHeroConfig): {
11973
12035
  };
11974
12036
  };
11975
12037
  output: {
11976
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12038
+ 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";
11977
12039
  date: string;
11978
12040
  isMobile: boolean;
11979
12041
  log_id: string;
@@ -12361,7 +12423,7 @@ declare function init(config: AuthHeroConfig): {
12361
12423
  addons?: {
12362
12424
  [x: string]: any;
12363
12425
  } | undefined;
12364
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12426
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12365
12427
  client_metadata?: {
12366
12428
  [x: string]: string;
12367
12429
  } | undefined;
@@ -12457,7 +12519,7 @@ declare function init(config: AuthHeroConfig): {
12457
12519
  addons?: {
12458
12520
  [x: string]: any;
12459
12521
  } | undefined;
12460
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12522
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12461
12523
  client_metadata?: {
12462
12524
  [x: string]: string;
12463
12525
  } | undefined;
@@ -12568,7 +12630,7 @@ declare function init(config: AuthHeroConfig): {
12568
12630
  addons?: {
12569
12631
  [x: string]: any;
12570
12632
  } | undefined;
12571
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12633
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12572
12634
  client_metadata?: {
12573
12635
  [x: string]: string;
12574
12636
  } | undefined;
@@ -12678,7 +12740,7 @@ declare function init(config: AuthHeroConfig): {
12678
12740
  custom_login_page_preview?: string | undefined;
12679
12741
  form_template?: string | undefined;
12680
12742
  addons?: Record<string, any> | undefined;
12681
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12743
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12682
12744
  client_metadata?: Record<string, string> | undefined;
12683
12745
  hide_sign_up_disabled_error?: boolean | undefined;
12684
12746
  mobile?: Record<string, any> | undefined;
@@ -12758,7 +12820,7 @@ declare function init(config: AuthHeroConfig): {
12758
12820
  addons?: {
12759
12821
  [x: string]: any;
12760
12822
  } | undefined;
12761
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12823
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12762
12824
  client_metadata?: {
12763
12825
  [x: string]: string;
12764
12826
  } | undefined;
@@ -12847,7 +12909,7 @@ declare function init(config: AuthHeroConfig): {
12847
12909
  custom_login_page_preview?: string | undefined;
12848
12910
  form_template?: string | undefined;
12849
12911
  addons?: Record<string, any> | undefined;
12850
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12912
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12851
12913
  client_metadata?: Record<string, string> | undefined;
12852
12914
  hide_sign_up_disabled_error?: boolean | undefined;
12853
12915
  mobile?: Record<string, any> | undefined;
@@ -12927,7 +12989,7 @@ declare function init(config: AuthHeroConfig): {
12927
12989
  addons?: {
12928
12990
  [x: string]: any;
12929
12991
  } | undefined;
12930
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12992
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12931
12993
  client_metadata?: {
12932
12994
  [x: string]: string;
12933
12995
  } | undefined;
@@ -14191,7 +14253,7 @@ declare function init(config: AuthHeroConfig): {
14191
14253
  };
14192
14254
  };
14193
14255
  output: {
14194
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14256
+ 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";
14195
14257
  date: string;
14196
14258
  isMobile: boolean;
14197
14259
  log_id: string;
@@ -14230,7 +14292,7 @@ declare function init(config: AuthHeroConfig): {
14230
14292
  limit: number;
14231
14293
  length: number;
14232
14294
  logs: {
14233
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14295
+ 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";
14234
14296
  date: string;
14235
14297
  isMobile: boolean;
14236
14298
  log_id: string;
@@ -15070,7 +15132,7 @@ declare function init(config: AuthHeroConfig): {
15070
15132
  type: "auth0_managed_certs" | "self_managed_certs";
15071
15133
  custom_domain_id: string;
15072
15134
  primary: boolean;
15073
- status: "pending" | "ready" | "disabled" | "pending_verification";
15135
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15074
15136
  verification_method?: "txt" | undefined;
15075
15137
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15076
15138
  domain_metadata?: {
@@ -15111,7 +15173,7 @@ declare function init(config: AuthHeroConfig): {
15111
15173
  type: "auth0_managed_certs" | "self_managed_certs";
15112
15174
  custom_domain_id: string;
15113
15175
  primary: boolean;
15114
- status: "pending" | "ready" | "disabled" | "pending_verification";
15176
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15115
15177
  verification_method?: "txt" | undefined;
15116
15178
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15117
15179
  domain_metadata?: {
@@ -15175,7 +15237,7 @@ declare function init(config: AuthHeroConfig): {
15175
15237
  type: "auth0_managed_certs" | "self_managed_certs";
15176
15238
  custom_domain_id: string;
15177
15239
  primary: boolean;
15178
- status: "pending" | "ready" | "disabled" | "pending_verification";
15240
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15179
15241
  verification_method?: "txt" | undefined;
15180
15242
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15181
15243
  domain_metadata?: {
@@ -15222,7 +15284,7 @@ declare function init(config: AuthHeroConfig): {
15222
15284
  type: "auth0_managed_certs" | "self_managed_certs";
15223
15285
  custom_domain_id: string;
15224
15286
  primary: boolean;
15225
- status: "pending" | "ready" | "disabled" | "pending_verification";
15287
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15226
15288
  verification_method?: "txt" | undefined;
15227
15289
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15228
15290
  domain_metadata?: {
@@ -15268,7 +15330,7 @@ declare function init(config: AuthHeroConfig): {
15268
15330
  type: "auth0_managed_certs" | "self_managed_certs";
15269
15331
  custom_domain_id: string;
15270
15332
  primary: boolean;
15271
- status: "pending" | "ready" | "disabled" | "pending_verification";
15333
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15272
15334
  verification_method?: "txt" | undefined;
15273
15335
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15274
15336
  domain_metadata?: {
@@ -15309,7 +15371,7 @@ declare function init(config: AuthHeroConfig): {
15309
15371
  type: "auth0_managed_certs" | "self_managed_certs";
15310
15372
  custom_domain_id: string;
15311
15373
  primary: boolean;
15312
- status: "pending" | "ready" | "disabled" | "pending_verification";
15374
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15313
15375
  verification_method?: "txt" | undefined;
15314
15376
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15315
15377
  domain_metadata?: {
@@ -16995,7 +17057,7 @@ declare function init(config: AuthHeroConfig): {
16995
17057
  scope?: string | undefined;
16996
17058
  grant_types?: string[] | undefined;
16997
17059
  response_types?: string[] | undefined;
16998
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
17060
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
16999
17061
  jwks_uri?: string | undefined;
17000
17062
  jwks?: Record<string, unknown> | undefined;
17001
17063
  software_id?: string | undefined;
@@ -17084,7 +17146,7 @@ declare function init(config: AuthHeroConfig): {
17084
17146
  scope?: string | undefined;
17085
17147
  grant_types?: string[] | undefined;
17086
17148
  response_types?: string[] | undefined;
17087
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
17149
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
17088
17150
  jwks_uri?: string | undefined;
17089
17151
  jwks?: Record<string, unknown> | undefined;
17090
17152
  software_id?: string | undefined;
@@ -17432,18 +17494,18 @@ declare function init(config: AuthHeroConfig): {
17432
17494
  authParams: {
17433
17495
  username?: string | undefined;
17434
17496
  state?: string | undefined;
17435
- audience?: string | undefined;
17436
17497
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17437
17498
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17438
17499
  scope?: string | undefined;
17500
+ audience?: string | undefined;
17501
+ prompt?: string | undefined;
17502
+ ui_locales?: string | undefined;
17439
17503
  organization?: string | undefined;
17440
- nonce?: string | undefined;
17441
17504
  redirect_uri?: string | undefined;
17442
17505
  act_as?: string | undefined;
17443
- prompt?: string | undefined;
17506
+ nonce?: string | undefined;
17444
17507
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17445
17508
  code_challenge?: string | undefined;
17446
- ui_locales?: string | undefined;
17447
17509
  max_age?: number | undefined;
17448
17510
  acr_values?: string | undefined;
17449
17511
  claims?: {
@@ -17468,18 +17530,18 @@ declare function init(config: AuthHeroConfig): {
17468
17530
  authParams: {
17469
17531
  username?: string | undefined;
17470
17532
  state?: string | undefined;
17471
- audience?: string | undefined;
17472
17533
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17473
17534
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17474
17535
  scope?: string | undefined;
17536
+ audience?: string | undefined;
17537
+ prompt?: string | undefined;
17538
+ ui_locales?: string | undefined;
17475
17539
  organization?: string | undefined;
17476
- nonce?: string | undefined;
17477
17540
  redirect_uri?: string | undefined;
17478
17541
  act_as?: string | undefined;
17479
- prompt?: string | undefined;
17542
+ nonce?: string | undefined;
17480
17543
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17481
17544
  code_challenge?: string | undefined;
17482
- ui_locales?: string | undefined;
17483
17545
  max_age?: number | undefined;
17484
17546
  acr_values?: string | undefined;
17485
17547
  claims?: {
@@ -17610,14 +17672,14 @@ declare function init(config: AuthHeroConfig): {
17610
17672
  input: {
17611
17673
  form: {
17612
17674
  token: string;
17613
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17675
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17614
17676
  client_id?: string | undefined;
17615
17677
  client_secret?: string | undefined;
17616
17678
  };
17617
17679
  } & {
17618
17680
  json: {
17619
17681
  token: string;
17620
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17682
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17621
17683
  client_id?: string | undefined;
17622
17684
  client_secret?: string | undefined;
17623
17685
  };
@@ -17629,14 +17691,14 @@ declare function init(config: AuthHeroConfig): {
17629
17691
  input: {
17630
17692
  form: {
17631
17693
  token: string;
17632
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17694
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17633
17695
  client_id?: string | undefined;
17634
17696
  client_secret?: string | undefined;
17635
17697
  };
17636
17698
  } & {
17637
17699
  json: {
17638
17700
  token: string;
17639
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17701
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17640
17702
  client_id?: string | undefined;
17641
17703
  client_secret?: string | undefined;
17642
17704
  };
@@ -17651,14 +17713,14 @@ declare function init(config: AuthHeroConfig): {
17651
17713
  input: {
17652
17714
  form: {
17653
17715
  token: string;
17654
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17716
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17655
17717
  client_id?: string | undefined;
17656
17718
  client_secret?: string | undefined;
17657
17719
  };
17658
17720
  } & {
17659
17721
  json: {
17660
17722
  token: string;
17661
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17723
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17662
17724
  client_id?: string | undefined;
17663
17725
  client_secret?: string | undefined;
17664
17726
  };
@@ -17708,7 +17770,7 @@ declare function init(config: AuthHeroConfig): {
17708
17770
  client_id: string;
17709
17771
  username: string;
17710
17772
  otp: string;
17711
- realm: "sms" | "email";
17773
+ realm: "email" | "sms";
17712
17774
  } | {
17713
17775
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17714
17776
  subject_token: string;
@@ -17755,7 +17817,7 @@ declare function init(config: AuthHeroConfig): {
17755
17817
  client_id: string;
17756
17818
  username: string;
17757
17819
  otp: string;
17758
- realm: "sms" | "email";
17820
+ realm: "email" | "sms";
17759
17821
  } | {
17760
17822
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17761
17823
  subject_token: string;
@@ -17807,7 +17869,7 @@ declare function init(config: AuthHeroConfig): {
17807
17869
  client_id: string;
17808
17870
  username: string;
17809
17871
  otp: string;
17810
- realm: "sms" | "email";
17872
+ realm: "email" | "sms";
17811
17873
  } | {
17812
17874
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17813
17875
  subject_token: string;
@@ -17854,7 +17916,7 @@ declare function init(config: AuthHeroConfig): {
17854
17916
  client_id: string;
17855
17917
  username: string;
17856
17918
  otp: string;
17857
- realm: "sms" | "email";
17919
+ realm: "email" | "sms";
17858
17920
  } | {
17859
17921
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17860
17922
  subject_token: string;
@@ -17914,7 +17976,7 @@ declare function init(config: AuthHeroConfig): {
17914
17976
  client_id: string;
17915
17977
  username: string;
17916
17978
  otp: string;
17917
- realm: "sms" | "email";
17979
+ realm: "email" | "sms";
17918
17980
  } | {
17919
17981
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17920
17982
  subject_token: string;
@@ -17961,7 +18023,7 @@ declare function init(config: AuthHeroConfig): {
17961
18023
  client_id: string;
17962
18024
  username: string;
17963
18025
  otp: string;
17964
- realm: "sms" | "email";
18026
+ realm: "email" | "sms";
17965
18027
  } | {
17966
18028
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17967
18029
  subject_token: string;
@@ -18016,7 +18078,7 @@ declare function init(config: AuthHeroConfig): {
18016
18078
  client_id: string;
18017
18079
  username: string;
18018
18080
  otp: string;
18019
- realm: "sms" | "email";
18081
+ realm: "email" | "sms";
18020
18082
  } | {
18021
18083
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18022
18084
  subject_token: string;
@@ -18063,7 +18125,7 @@ declare function init(config: AuthHeroConfig): {
18063
18125
  client_id: string;
18064
18126
  username: string;
18065
18127
  otp: string;
18066
- realm: "sms" | "email";
18128
+ realm: "email" | "sms";
18067
18129
  } | {
18068
18130
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18069
18131
  subject_token: string;
@@ -18118,7 +18180,7 @@ declare function init(config: AuthHeroConfig): {
18118
18180
  client_id: string;
18119
18181
  username: string;
18120
18182
  otp: string;
18121
- realm: "sms" | "email";
18183
+ realm: "email" | "sms";
18122
18184
  } | {
18123
18185
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18124
18186
  subject_token: string;
@@ -18165,7 +18227,7 @@ declare function init(config: AuthHeroConfig): {
18165
18227
  client_id: string;
18166
18228
  username: string;
18167
18229
  otp: string;
18168
- realm: "sms" | "email";
18230
+ realm: "email" | "sms";
18169
18231
  } | {
18170
18232
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18171
18233
  subject_token: string;
@@ -19385,7 +19447,7 @@ declare function init(config: AuthHeroConfig): {
19385
19447
  $get: {
19386
19448
  input: {
19387
19449
  param: {
19388
- 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";
19450
+ 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";
19389
19451
  };
19390
19452
  } & {
19391
19453
  query: {
@@ -19401,7 +19463,7 @@ declare function init(config: AuthHeroConfig): {
19401
19463
  } | {
19402
19464
  input: {
19403
19465
  param: {
19404
- 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";
19466
+ 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";
19405
19467
  };
19406
19468
  } & {
19407
19469
  query: {
@@ -19417,7 +19479,7 @@ declare function init(config: AuthHeroConfig): {
19417
19479
  } | {
19418
19480
  input: {
19419
19481
  param: {
19420
- 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";
19482
+ 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";
19421
19483
  };
19422
19484
  } & {
19423
19485
  query: {
@@ -19437,7 +19499,7 @@ declare function init(config: AuthHeroConfig): {
19437
19499
  $post: {
19438
19500
  input: {
19439
19501
  param: {
19440
- 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";
19502
+ 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";
19441
19503
  };
19442
19504
  } & {
19443
19505
  query: {
@@ -19455,7 +19517,7 @@ declare function init(config: AuthHeroConfig): {
19455
19517
  } | {
19456
19518
  input: {
19457
19519
  param: {
19458
- 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";
19520
+ 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";
19459
19521
  };
19460
19522
  } & {
19461
19523
  query: {
@@ -19470,24 +19532,6 @@ declare function init(config: AuthHeroConfig): {
19470
19532
  output: {};
19471
19533
  outputFormat: string;
19472
19534
  status: 302;
19473
- } | {
19474
- input: {
19475
- param: {
19476
- 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";
19477
- };
19478
- } & {
19479
- query: {
19480
- state: string;
19481
- error?: string | undefined;
19482
- error_description?: string | undefined;
19483
- ui_locales?: string | undefined;
19484
- };
19485
- } & {
19486
- form: Record<string, string>;
19487
- };
19488
- output: {};
19489
- outputFormat: string;
19490
- status: 400;
19491
19535
  };
19492
19536
  };
19493
19537
  }, "/"> & hono_types.MergeSchemaPath<{
@@ -19571,5 +19615,5 @@ declare function init(config: AuthHeroConfig): {
19571
19615
  createX509Certificate: typeof createX509Certificate;
19572
19616
  };
19573
19617
 
19574
- export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, verifyControlPlaneToken, waitUntil };
19618
+ export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil };
19575
19619
  export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };