authhero 8.18.0 → 8.19.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 (37) hide show
  1. package/dist/authhero.cjs +112 -112
  2. package/dist/authhero.d.ts +316 -238
  3. package/dist/authhero.mjs +10529 -10428
  4. package/dist/tsconfig.types.tsbuildinfo +1 -1
  5. package/dist/types/authentication-flows/passwordless.d.ts +4 -4
  6. package/dist/types/helpers/audit-target-types.d.ts +6 -0
  7. package/dist/types/helpers/default-destinations.d.ts +14 -4
  8. package/dist/types/helpers/outbox-destinations/code-hooks.d.ts +56 -0
  9. package/dist/types/helpers/password-connection.d.ts +16 -0
  10. package/dist/types/helpers/run-outbox-relay.d.ts +8 -1
  11. package/dist/types/hooks/codehooks.d.ts +78 -9
  12. package/dist/types/index.d.ts +235 -234
  13. package/dist/types/routes/auth-api/index.d.ts +22 -22
  14. package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
  15. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  16. package/dist/types/routes/auth-api/token.d.ts +10 -10
  17. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  18. package/dist/types/routes/management-api/clients.d.ts +9 -9
  19. package/dist/types/routes/management-api/connections.d.ts +6 -6
  20. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  21. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  22. package/dist/types/routes/management-api/forms.d.ts +126 -126
  23. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  24. package/dist/types/routes/management-api/hooks.d.ts +24 -24
  25. package/dist/types/routes/management-api/index.d.ts +211 -211
  26. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  27. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  28. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  29. package/dist/types/routes/management-api/roles.d.ts +6 -6
  30. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  31. package/dist/types/routes/management-api/tenants.d.ts +1 -1
  32. package/dist/types/routes/management-api/users.d.ts +2 -2
  33. package/dist/types/routes/universal-login/common.d.ts +4 -4
  34. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  35. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  36. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  37. package/package.json +5 -5
@@ -2261,10 +2261,12 @@ declare class WebhookDestination implements EventDestination {
2261
2261
 
2262
2262
  interface CreateDefaultDestinationsConfig {
2263
2263
  /**
2264
- * Data adapter — only the `logs`, `hooks`, `users`, and `logStreams`
2265
- * adapters are used by the built-in destinations.
2264
+ * Data adapter — the `logs`, `hooks`, `users`, and `logStreams` adapters are
2265
+ * used by the built-in destinations. When `codeExecutor` is set, the
2266
+ * `actions`, `hookCode`, and `actionExecutions` adapters are also required so
2267
+ * `CodeHookDestination` can resolve and run tenant code hooks.
2266
2268
  */
2267
- dataAdapter: Pick<DataAdapters, "logs" | "hooks" | "users" | "logStreams">;
2269
+ dataAdapter: Pick<DataAdapters, "logs" | "hooks" | "users" | "logStreams"> & Partial<Pick<DataAdapters, "actions" | "hookCode" | "actionExecutions" | "multiTenancyConfig">>;
2268
2270
  /**
2269
2271
  * Produces a Bearer access token for the given tenant, used when POSTing
2270
2272
  * `hook.*` events to the configured webhook URLs.
@@ -2294,6 +2296,14 @@ interface CreateDefaultDestinationsConfig {
2294
2296
  * deliveries don't diverge from inline per-request ones.
2295
2297
  */
2296
2298
  webhookInvoker?: WebhookInvoker;
2299
+ /**
2300
+ * Code executor — same instance passed to `init({ codeExecutor })`. When
2301
+ * provided (and `dataAdapter` carries `actions`, `hookCode`, and
2302
+ * `actionExecutions`), a `CodeHookDestination` is added so cron-drained
2303
+ * `hook.*` events also run tenant code hooks. Without it, code hooks that
2304
+ * failed per-request delivery would be silently skipped on retry.
2305
+ */
2306
+ codeExecutor?: CodeExecutor;
2297
2307
  }
2298
2308
  /**
2299
2309
  * Build the same array of outbox destinations that authhero's per-request
@@ -2411,6 +2421,13 @@ interface RunOutboxRelayConfig {
2411
2421
  maxRetries?: number;
2412
2422
  /** Webhook HTTP timeout (ms), when the default invoker is used. */
2413
2423
  webhookTimeoutMs?: number;
2424
+ /**
2425
+ * Optional code executor — same instance passed to `init({ codeExecutor })`.
2426
+ * When provided, cron-drained `hook.*` events also run tenant code hooks, so
2427
+ * a code hook that failed per-request delivery is retried rather than
2428
+ * silently skipped.
2429
+ */
2430
+ codeExecutor?: CodeExecutor;
2414
2431
  }
2415
2432
  /**
2416
2433
  * One-call outbox relay for cron / scheduled handlers.
@@ -2465,6 +2482,67 @@ declare class LogsDestination implements EventDestination {
2465
2482
  }[]): Promise<void>;
2466
2483
  }
2467
2484
 
2485
+ /**
2486
+ * The subset of `DataAdapters` needed to resolve and run a code hook and to
2487
+ * persist its execution record. Narrowed so `CodeHookDestination` and the cron
2488
+ * `createDefaultDestinations` helper can construct it without depending on the
2489
+ * full adapter surface.
2490
+ */
2491
+ type CodeHookData = Pick<DataAdapters, "hooks" | "actions" | "hookCode" | "actionExecutions" | "multiTenancyConfig">;
2492
+
2493
+ interface CodeHookInvocation {
2494
+ eventId: string;
2495
+ tenantId: string;
2496
+ triggerId: string;
2497
+ /** Serialized user snapshot from the audit event (`target.after`). */
2498
+ user?: unknown;
2499
+ /** Serialized request context from the audit event. */
2500
+ request?: unknown;
2501
+ }
2502
+ /**
2503
+ * Delivers `hook.*` outbox events to tenant-authored **code hooks** (actions)
2504
+ * for the matching `trigger_id`. Runs alongside `WebhookDestination` — both
2505
+ * accept the same `hook.*` events — so a single registration/deletion event
2506
+ * fans out to webhooks *and* code hooks. The fan-out is not retried
2507
+ * independently: the relay retries the whole outbox event, running its
2508
+ * destinations in order and stopping at the first failure, so a code-hook
2509
+ * failure here causes earlier destinations (e.g. webhooks) to run again on the
2510
+ * retry. Every destination on the event must therefore be idempotent.
2511
+ *
2512
+ * Reliability model: unlike the previous inline execution (best-effort,
2513
+ * at-most-once, failures logged and dropped), code hooks delivered here are
2514
+ * **at-least-once**. If any code hook for the trigger fails, `deliver` throws
2515
+ * so the relay retries the whole event with backoff and, after `maxRetries`,
2516
+ * dead-letters it. A retry re-runs every code hook for the trigger, so the
2517
+ * event id is passed to user code as `event.idempotency_key` for dedupe.
2518
+ *
2519
+ * Must be listed AFTER `WebhookDestination` and BEFORE
2520
+ * `RegistrationFinalizerDestination` so `registration_completed_at` is only
2521
+ * flipped on a pass where every webhook *and* code hook succeeded.
2522
+ *
2523
+ * Constructed per-request (via `getDestinations(ctx)`) so it can close over
2524
+ * `ctx.env.codeExecutor`. The same class is used by the cron `drainOutbox`
2525
+ * safety net when a `codeExecutor` is supplied to `createDefaultDestinations`.
2526
+ * When no executor is configured, code hooks cannot run (nor be deployed), so
2527
+ * `deliver` is a no-op success — matching the inline `handleCodeHook` which
2528
+ * returns `null` without an executor.
2529
+ */
2530
+ declare class CodeHookDestination implements EventDestination {
2531
+ name: string;
2532
+ private data;
2533
+ private codeExecutor?;
2534
+ constructor(data: CodeHookData, codeExecutor?: CodeExecutor);
2535
+ accepts(event: AuditEvent): boolean;
2536
+ transform(event: AuditEvent): CodeHookInvocation;
2537
+ deliver(invocations: CodeHookInvocation[]): Promise<void>;
2538
+ /**
2539
+ * Fetch every hook for the tenant, paging past the adapter's default page
2540
+ * size. `hooks.list` returns only the first page by default, so a tenant with
2541
+ * more enabled code hooks than one page would silently skip the rest.
2542
+ */
2543
+ private listAllHooks;
2544
+ }
2545
+
2468
2546
  interface FinalizationTask {
2469
2547
  tenantId: string;
2470
2548
  userId: string;
@@ -4268,11 +4346,11 @@ declare function init(config: AuthHeroConfig): {
4268
4346
  invitee: {
4269
4347
  email?: string | undefined;
4270
4348
  };
4349
+ roles?: string[] | undefined;
4271
4350
  id?: string | undefined;
4272
4351
  app_metadata?: Record<string, any> | undefined;
4273
4352
  user_metadata?: Record<string, any> | undefined;
4274
4353
  connection_id?: string | undefined;
4275
- roles?: string[] | undefined;
4276
4354
  ttl_sec?: number | undefined;
4277
4355
  send_invitation_email?: boolean | undefined;
4278
4356
  };
@@ -5699,7 +5777,7 @@ declare function init(config: AuthHeroConfig): {
5699
5777
  hint?: string | undefined;
5700
5778
  messages?: {
5701
5779
  text: string;
5702
- type: "error" | "success" | "info" | "warning";
5780
+ type: "success" | "error" | "info" | "warning";
5703
5781
  id?: number | undefined;
5704
5782
  }[] | undefined;
5705
5783
  required?: boolean | undefined;
@@ -5717,7 +5795,7 @@ declare function init(config: AuthHeroConfig): {
5717
5795
  hint?: string | undefined;
5718
5796
  messages?: {
5719
5797
  text: string;
5720
- type: "error" | "success" | "info" | "warning";
5798
+ type: "success" | "error" | "info" | "warning";
5721
5799
  id?: number | undefined;
5722
5800
  }[] | undefined;
5723
5801
  required?: boolean | undefined;
@@ -5741,7 +5819,7 @@ declare function init(config: AuthHeroConfig): {
5741
5819
  hint?: string | undefined;
5742
5820
  messages?: {
5743
5821
  text: string;
5744
- type: "error" | "success" | "info" | "warning";
5822
+ type: "success" | "error" | "info" | "warning";
5745
5823
  id?: number | undefined;
5746
5824
  }[] | undefined;
5747
5825
  required?: boolean | undefined;
@@ -5765,7 +5843,7 @@ declare function init(config: AuthHeroConfig): {
5765
5843
  hint?: string | undefined;
5766
5844
  messages?: {
5767
5845
  text: string;
5768
- type: "error" | "success" | "info" | "warning";
5846
+ type: "success" | "error" | "info" | "warning";
5769
5847
  id?: number | undefined;
5770
5848
  }[] | undefined;
5771
5849
  required?: boolean | undefined;
@@ -5789,7 +5867,7 @@ declare function init(config: AuthHeroConfig): {
5789
5867
  hint?: string | undefined;
5790
5868
  messages?: {
5791
5869
  text: string;
5792
- type: "error" | "success" | "info" | "warning";
5870
+ type: "success" | "error" | "info" | "warning";
5793
5871
  id?: number | undefined;
5794
5872
  }[] | undefined;
5795
5873
  required?: boolean | undefined;
@@ -5818,7 +5896,7 @@ declare function init(config: AuthHeroConfig): {
5818
5896
  hint?: string | undefined;
5819
5897
  messages?: {
5820
5898
  text: string;
5821
- type: "error" | "success" | "info" | "warning";
5899
+ type: "success" | "error" | "info" | "warning";
5822
5900
  id?: number | undefined;
5823
5901
  }[] | undefined;
5824
5902
  required?: boolean | undefined;
@@ -5833,7 +5911,7 @@ declare function init(config: AuthHeroConfig): {
5833
5911
  hint?: string | undefined;
5834
5912
  messages?: {
5835
5913
  text: string;
5836
- type: "error" | "success" | "info" | "warning";
5914
+ type: "success" | "error" | "info" | "warning";
5837
5915
  id?: number | undefined;
5838
5916
  }[] | undefined;
5839
5917
  required?: boolean | undefined;
@@ -5854,7 +5932,7 @@ declare function init(config: AuthHeroConfig): {
5854
5932
  hint?: string | undefined;
5855
5933
  messages?: {
5856
5934
  text: string;
5857
- type: "error" | "success" | "info" | "warning";
5935
+ type: "success" | "error" | "info" | "warning";
5858
5936
  id?: number | undefined;
5859
5937
  }[] | undefined;
5860
5938
  required?: boolean | undefined;
@@ -5879,7 +5957,7 @@ declare function init(config: AuthHeroConfig): {
5879
5957
  hint?: string | undefined;
5880
5958
  messages?: {
5881
5959
  text: string;
5882
- type: "error" | "success" | "info" | "warning";
5960
+ type: "success" | "error" | "info" | "warning";
5883
5961
  id?: number | undefined;
5884
5962
  }[] | undefined;
5885
5963
  required?: boolean | undefined;
@@ -5898,7 +5976,7 @@ declare function init(config: AuthHeroConfig): {
5898
5976
  hint?: string | undefined;
5899
5977
  messages?: {
5900
5978
  text: string;
5901
- type: "error" | "success" | "info" | "warning";
5979
+ type: "success" | "error" | "info" | "warning";
5902
5980
  id?: number | undefined;
5903
5981
  }[] | undefined;
5904
5982
  required?: boolean | undefined;
@@ -5918,7 +5996,7 @@ declare function init(config: AuthHeroConfig): {
5918
5996
  hint?: string | undefined;
5919
5997
  messages?: {
5920
5998
  text: string;
5921
- type: "error" | "success" | "info" | "warning";
5999
+ type: "success" | "error" | "info" | "warning";
5922
6000
  id?: number | undefined;
5923
6001
  }[] | undefined;
5924
6002
  required?: boolean | undefined;
@@ -5937,7 +6015,7 @@ declare function init(config: AuthHeroConfig): {
5937
6015
  hint?: string | undefined;
5938
6016
  messages?: {
5939
6017
  text: string;
5940
- type: "error" | "success" | "info" | "warning";
6018
+ type: "success" | "error" | "info" | "warning";
5941
6019
  id?: number | undefined;
5942
6020
  }[] | undefined;
5943
6021
  required?: boolean | undefined;
@@ -5959,7 +6037,7 @@ declare function init(config: AuthHeroConfig): {
5959
6037
  hint?: string | undefined;
5960
6038
  messages?: {
5961
6039
  text: string;
5962
- type: "error" | "success" | "info" | "warning";
6040
+ type: "success" | "error" | "info" | "warning";
5963
6041
  id?: number | undefined;
5964
6042
  }[] | undefined;
5965
6043
  required?: boolean | undefined;
@@ -5981,7 +6059,7 @@ declare function init(config: AuthHeroConfig): {
5981
6059
  hint?: string | undefined;
5982
6060
  messages?: {
5983
6061
  text: string;
5984
- type: "error" | "success" | "info" | "warning";
6062
+ type: "success" | "error" | "info" | "warning";
5985
6063
  id?: number | undefined;
5986
6064
  }[] | undefined;
5987
6065
  required?: boolean | undefined;
@@ -6000,7 +6078,7 @@ declare function init(config: AuthHeroConfig): {
6000
6078
  hint?: string | undefined;
6001
6079
  messages?: {
6002
6080
  text: string;
6003
- type: "error" | "success" | "info" | "warning";
6081
+ type: "success" | "error" | "info" | "warning";
6004
6082
  id?: number | undefined;
6005
6083
  }[] | undefined;
6006
6084
  required?: boolean | undefined;
@@ -6025,7 +6103,7 @@ declare function init(config: AuthHeroConfig): {
6025
6103
  hint?: string | undefined;
6026
6104
  messages?: {
6027
6105
  text: string;
6028
- type: "error" | "success" | "info" | "warning";
6106
+ type: "success" | "error" | "info" | "warning";
6029
6107
  id?: number | undefined;
6030
6108
  }[] | undefined;
6031
6109
  required?: boolean | undefined;
@@ -6046,7 +6124,7 @@ declare function init(config: AuthHeroConfig): {
6046
6124
  hint?: string | undefined;
6047
6125
  messages?: {
6048
6126
  text: string;
6049
- type: "error" | "success" | "info" | "warning";
6127
+ type: "success" | "error" | "info" | "warning";
6050
6128
  id?: number | undefined;
6051
6129
  }[] | undefined;
6052
6130
  required?: boolean | undefined;
@@ -6067,7 +6145,7 @@ declare function init(config: AuthHeroConfig): {
6067
6145
  hint?: string | undefined;
6068
6146
  messages?: {
6069
6147
  text: string;
6070
- type: "error" | "success" | "info" | "warning";
6148
+ type: "success" | "error" | "info" | "warning";
6071
6149
  id?: number | undefined;
6072
6150
  }[] | undefined;
6073
6151
  required?: boolean | undefined;
@@ -6300,7 +6378,7 @@ declare function init(config: AuthHeroConfig): {
6300
6378
  hint?: string | undefined;
6301
6379
  messages?: {
6302
6380
  text: string;
6303
- type: "error" | "success" | "info" | "warning";
6381
+ type: "success" | "error" | "info" | "warning";
6304
6382
  id?: number | undefined;
6305
6383
  }[] | undefined;
6306
6384
  required?: boolean | undefined;
@@ -6318,7 +6396,7 @@ declare function init(config: AuthHeroConfig): {
6318
6396
  hint?: string | undefined;
6319
6397
  messages?: {
6320
6398
  text: string;
6321
- type: "error" | "success" | "info" | "warning";
6399
+ type: "success" | "error" | "info" | "warning";
6322
6400
  id?: number | undefined;
6323
6401
  }[] | undefined;
6324
6402
  required?: boolean | undefined;
@@ -6342,7 +6420,7 @@ declare function init(config: AuthHeroConfig): {
6342
6420
  hint?: string | undefined;
6343
6421
  messages?: {
6344
6422
  text: string;
6345
- type: "error" | "success" | "info" | "warning";
6423
+ type: "success" | "error" | "info" | "warning";
6346
6424
  id?: number | undefined;
6347
6425
  }[] | undefined;
6348
6426
  required?: boolean | undefined;
@@ -6366,7 +6444,7 @@ declare function init(config: AuthHeroConfig): {
6366
6444
  hint?: string | undefined;
6367
6445
  messages?: {
6368
6446
  text: string;
6369
- type: "error" | "success" | "info" | "warning";
6447
+ type: "success" | "error" | "info" | "warning";
6370
6448
  id?: number | undefined;
6371
6449
  }[] | undefined;
6372
6450
  required?: boolean | undefined;
@@ -6390,7 +6468,7 @@ declare function init(config: AuthHeroConfig): {
6390
6468
  hint?: string | undefined;
6391
6469
  messages?: {
6392
6470
  text: string;
6393
- type: "error" | "success" | "info" | "warning";
6471
+ type: "success" | "error" | "info" | "warning";
6394
6472
  id?: number | undefined;
6395
6473
  }[] | undefined;
6396
6474
  required?: boolean | undefined;
@@ -6419,7 +6497,7 @@ declare function init(config: AuthHeroConfig): {
6419
6497
  hint?: string | undefined;
6420
6498
  messages?: {
6421
6499
  text: string;
6422
- type: "error" | "success" | "info" | "warning";
6500
+ type: "success" | "error" | "info" | "warning";
6423
6501
  id?: number | undefined;
6424
6502
  }[] | undefined;
6425
6503
  required?: boolean | undefined;
@@ -6434,7 +6512,7 @@ declare function init(config: AuthHeroConfig): {
6434
6512
  hint?: string | undefined;
6435
6513
  messages?: {
6436
6514
  text: string;
6437
- type: "error" | "success" | "info" | "warning";
6515
+ type: "success" | "error" | "info" | "warning";
6438
6516
  id?: number | undefined;
6439
6517
  }[] | undefined;
6440
6518
  required?: boolean | undefined;
@@ -6455,7 +6533,7 @@ declare function init(config: AuthHeroConfig): {
6455
6533
  hint?: string | undefined;
6456
6534
  messages?: {
6457
6535
  text: string;
6458
- type: "error" | "success" | "info" | "warning";
6536
+ type: "success" | "error" | "info" | "warning";
6459
6537
  id?: number | undefined;
6460
6538
  }[] | undefined;
6461
6539
  required?: boolean | undefined;
@@ -6480,7 +6558,7 @@ declare function init(config: AuthHeroConfig): {
6480
6558
  hint?: string | undefined;
6481
6559
  messages?: {
6482
6560
  text: string;
6483
- type: "error" | "success" | "info" | "warning";
6561
+ type: "success" | "error" | "info" | "warning";
6484
6562
  id?: number | undefined;
6485
6563
  }[] | undefined;
6486
6564
  required?: boolean | undefined;
@@ -6499,7 +6577,7 @@ declare function init(config: AuthHeroConfig): {
6499
6577
  hint?: string | undefined;
6500
6578
  messages?: {
6501
6579
  text: string;
6502
- type: "error" | "success" | "info" | "warning";
6580
+ type: "success" | "error" | "info" | "warning";
6503
6581
  id?: number | undefined;
6504
6582
  }[] | undefined;
6505
6583
  required?: boolean | undefined;
@@ -6519,7 +6597,7 @@ declare function init(config: AuthHeroConfig): {
6519
6597
  hint?: string | undefined;
6520
6598
  messages?: {
6521
6599
  text: string;
6522
- type: "error" | "success" | "info" | "warning";
6600
+ type: "success" | "error" | "info" | "warning";
6523
6601
  id?: number | undefined;
6524
6602
  }[] | undefined;
6525
6603
  required?: boolean | undefined;
@@ -6538,7 +6616,7 @@ declare function init(config: AuthHeroConfig): {
6538
6616
  hint?: string | undefined;
6539
6617
  messages?: {
6540
6618
  text: string;
6541
- type: "error" | "success" | "info" | "warning";
6619
+ type: "success" | "error" | "info" | "warning";
6542
6620
  id?: number | undefined;
6543
6621
  }[] | undefined;
6544
6622
  required?: boolean | undefined;
@@ -6560,7 +6638,7 @@ declare function init(config: AuthHeroConfig): {
6560
6638
  hint?: string | undefined;
6561
6639
  messages?: {
6562
6640
  text: string;
6563
- type: "error" | "success" | "info" | "warning";
6641
+ type: "success" | "error" | "info" | "warning";
6564
6642
  id?: number | undefined;
6565
6643
  }[] | undefined;
6566
6644
  required?: boolean | undefined;
@@ -6582,7 +6660,7 @@ declare function init(config: AuthHeroConfig): {
6582
6660
  hint?: string | undefined;
6583
6661
  messages?: {
6584
6662
  text: string;
6585
- type: "error" | "success" | "info" | "warning";
6663
+ type: "success" | "error" | "info" | "warning";
6586
6664
  id?: number | undefined;
6587
6665
  }[] | undefined;
6588
6666
  required?: boolean | undefined;
@@ -6601,7 +6679,7 @@ declare function init(config: AuthHeroConfig): {
6601
6679
  hint?: string | undefined;
6602
6680
  messages?: {
6603
6681
  text: string;
6604
- type: "error" | "success" | "info" | "warning";
6682
+ type: "success" | "error" | "info" | "warning";
6605
6683
  id?: number | undefined;
6606
6684
  }[] | undefined;
6607
6685
  required?: boolean | undefined;
@@ -6626,7 +6704,7 @@ declare function init(config: AuthHeroConfig): {
6626
6704
  hint?: string | undefined;
6627
6705
  messages?: {
6628
6706
  text: string;
6629
- type: "error" | "success" | "info" | "warning";
6707
+ type: "success" | "error" | "info" | "warning";
6630
6708
  id?: number | undefined;
6631
6709
  }[] | undefined;
6632
6710
  required?: boolean | undefined;
@@ -6647,7 +6725,7 @@ declare function init(config: AuthHeroConfig): {
6647
6725
  hint?: string | undefined;
6648
6726
  messages?: {
6649
6727
  text: string;
6650
- type: "error" | "success" | "info" | "warning";
6728
+ type: "success" | "error" | "info" | "warning";
6651
6729
  id?: number | undefined;
6652
6730
  }[] | undefined;
6653
6731
  required?: boolean | undefined;
@@ -6668,7 +6746,7 @@ declare function init(config: AuthHeroConfig): {
6668
6746
  hint?: string | undefined;
6669
6747
  messages?: {
6670
6748
  text: string;
6671
- type: "error" | "success" | "info" | "warning";
6749
+ type: "success" | "error" | "info" | "warning";
6672
6750
  id?: number | undefined;
6673
6751
  }[] | undefined;
6674
6752
  required?: boolean | undefined;
@@ -6916,7 +6994,7 @@ declare function init(config: AuthHeroConfig): {
6916
6994
  hint?: string | undefined;
6917
6995
  messages?: {
6918
6996
  text: string;
6919
- type: "error" | "success" | "info" | "warning";
6997
+ type: "success" | "error" | "info" | "warning";
6920
6998
  id?: number | undefined;
6921
6999
  }[] | undefined;
6922
7000
  required?: boolean | undefined;
@@ -6934,7 +7012,7 @@ declare function init(config: AuthHeroConfig): {
6934
7012
  hint?: string | undefined;
6935
7013
  messages?: {
6936
7014
  text: string;
6937
- type: "error" | "success" | "info" | "warning";
7015
+ type: "success" | "error" | "info" | "warning";
6938
7016
  id?: number | undefined;
6939
7017
  }[] | undefined;
6940
7018
  required?: boolean | undefined;
@@ -6958,7 +7036,7 @@ declare function init(config: AuthHeroConfig): {
6958
7036
  hint?: string | undefined;
6959
7037
  messages?: {
6960
7038
  text: string;
6961
- type: "error" | "success" | "info" | "warning";
7039
+ type: "success" | "error" | "info" | "warning";
6962
7040
  id?: number | undefined;
6963
7041
  }[] | undefined;
6964
7042
  required?: boolean | undefined;
@@ -6982,7 +7060,7 @@ declare function init(config: AuthHeroConfig): {
6982
7060
  hint?: string | undefined;
6983
7061
  messages?: {
6984
7062
  text: string;
6985
- type: "error" | "success" | "info" | "warning";
7063
+ type: "success" | "error" | "info" | "warning";
6986
7064
  id?: number | undefined;
6987
7065
  }[] | undefined;
6988
7066
  required?: boolean | undefined;
@@ -7006,7 +7084,7 @@ declare function init(config: AuthHeroConfig): {
7006
7084
  hint?: string | undefined;
7007
7085
  messages?: {
7008
7086
  text: string;
7009
- type: "error" | "success" | "info" | "warning";
7087
+ type: "success" | "error" | "info" | "warning";
7010
7088
  id?: number | undefined;
7011
7089
  }[] | undefined;
7012
7090
  required?: boolean | undefined;
@@ -7035,7 +7113,7 @@ declare function init(config: AuthHeroConfig): {
7035
7113
  hint?: string | undefined;
7036
7114
  messages?: {
7037
7115
  text: string;
7038
- type: "error" | "success" | "info" | "warning";
7116
+ type: "success" | "error" | "info" | "warning";
7039
7117
  id?: number | undefined;
7040
7118
  }[] | undefined;
7041
7119
  required?: boolean | undefined;
@@ -7050,7 +7128,7 @@ declare function init(config: AuthHeroConfig): {
7050
7128
  hint?: string | undefined;
7051
7129
  messages?: {
7052
7130
  text: string;
7053
- type: "error" | "success" | "info" | "warning";
7131
+ type: "success" | "error" | "info" | "warning";
7054
7132
  id?: number | undefined;
7055
7133
  }[] | undefined;
7056
7134
  required?: boolean | undefined;
@@ -7071,7 +7149,7 @@ declare function init(config: AuthHeroConfig): {
7071
7149
  hint?: string | undefined;
7072
7150
  messages?: {
7073
7151
  text: string;
7074
- type: "error" | "success" | "info" | "warning";
7152
+ type: "success" | "error" | "info" | "warning";
7075
7153
  id?: number | undefined;
7076
7154
  }[] | undefined;
7077
7155
  required?: boolean | undefined;
@@ -7096,7 +7174,7 @@ declare function init(config: AuthHeroConfig): {
7096
7174
  hint?: string | undefined;
7097
7175
  messages?: {
7098
7176
  text: string;
7099
- type: "error" | "success" | "info" | "warning";
7177
+ type: "success" | "error" | "info" | "warning";
7100
7178
  id?: number | undefined;
7101
7179
  }[] | undefined;
7102
7180
  required?: boolean | undefined;
@@ -7115,7 +7193,7 @@ declare function init(config: AuthHeroConfig): {
7115
7193
  hint?: string | undefined;
7116
7194
  messages?: {
7117
7195
  text: string;
7118
- type: "error" | "success" | "info" | "warning";
7196
+ type: "success" | "error" | "info" | "warning";
7119
7197
  id?: number | undefined;
7120
7198
  }[] | undefined;
7121
7199
  required?: boolean | undefined;
@@ -7135,7 +7213,7 @@ declare function init(config: AuthHeroConfig): {
7135
7213
  hint?: string | undefined;
7136
7214
  messages?: {
7137
7215
  text: string;
7138
- type: "error" | "success" | "info" | "warning";
7216
+ type: "success" | "error" | "info" | "warning";
7139
7217
  id?: number | undefined;
7140
7218
  }[] | undefined;
7141
7219
  required?: boolean | undefined;
@@ -7154,7 +7232,7 @@ declare function init(config: AuthHeroConfig): {
7154
7232
  hint?: string | undefined;
7155
7233
  messages?: {
7156
7234
  text: string;
7157
- type: "error" | "success" | "info" | "warning";
7235
+ type: "success" | "error" | "info" | "warning";
7158
7236
  id?: number | undefined;
7159
7237
  }[] | undefined;
7160
7238
  required?: boolean | undefined;
@@ -7176,7 +7254,7 @@ declare function init(config: AuthHeroConfig): {
7176
7254
  hint?: string | undefined;
7177
7255
  messages?: {
7178
7256
  text: string;
7179
- type: "error" | "success" | "info" | "warning";
7257
+ type: "success" | "error" | "info" | "warning";
7180
7258
  id?: number | undefined;
7181
7259
  }[] | undefined;
7182
7260
  required?: boolean | undefined;
@@ -7198,7 +7276,7 @@ declare function init(config: AuthHeroConfig): {
7198
7276
  hint?: string | undefined;
7199
7277
  messages?: {
7200
7278
  text: string;
7201
- type: "error" | "success" | "info" | "warning";
7279
+ type: "success" | "error" | "info" | "warning";
7202
7280
  id?: number | undefined;
7203
7281
  }[] | undefined;
7204
7282
  required?: boolean | undefined;
@@ -7217,7 +7295,7 @@ declare function init(config: AuthHeroConfig): {
7217
7295
  hint?: string | undefined;
7218
7296
  messages?: {
7219
7297
  text: string;
7220
- type: "error" | "success" | "info" | "warning";
7298
+ type: "success" | "error" | "info" | "warning";
7221
7299
  id?: number | undefined;
7222
7300
  }[] | undefined;
7223
7301
  required?: boolean | undefined;
@@ -7242,7 +7320,7 @@ declare function init(config: AuthHeroConfig): {
7242
7320
  hint?: string | undefined;
7243
7321
  messages?: {
7244
7322
  text: string;
7245
- type: "error" | "success" | "info" | "warning";
7323
+ type: "success" | "error" | "info" | "warning";
7246
7324
  id?: number | undefined;
7247
7325
  }[] | undefined;
7248
7326
  required?: boolean | undefined;
@@ -7263,7 +7341,7 @@ declare function init(config: AuthHeroConfig): {
7263
7341
  hint?: string | undefined;
7264
7342
  messages?: {
7265
7343
  text: string;
7266
- type: "error" | "success" | "info" | "warning";
7344
+ type: "success" | "error" | "info" | "warning";
7267
7345
  id?: number | undefined;
7268
7346
  }[] | undefined;
7269
7347
  required?: boolean | undefined;
@@ -7284,7 +7362,7 @@ declare function init(config: AuthHeroConfig): {
7284
7362
  hint?: string | undefined;
7285
7363
  messages?: {
7286
7364
  text: string;
7287
- type: "error" | "success" | "info" | "warning";
7365
+ type: "success" | "error" | "info" | "warning";
7288
7366
  id?: number | undefined;
7289
7367
  }[] | undefined;
7290
7368
  required?: boolean | undefined;
@@ -7538,7 +7616,7 @@ declare function init(config: AuthHeroConfig): {
7538
7616
  hint?: string | undefined;
7539
7617
  messages?: {
7540
7618
  text: string;
7541
- type: "error" | "success" | "info" | "warning";
7619
+ type: "success" | "error" | "info" | "warning";
7542
7620
  id?: number | undefined;
7543
7621
  }[] | undefined;
7544
7622
  required?: boolean | undefined;
@@ -7556,7 +7634,7 @@ declare function init(config: AuthHeroConfig): {
7556
7634
  hint?: string | undefined;
7557
7635
  messages?: {
7558
7636
  text: string;
7559
- type: "error" | "success" | "info" | "warning";
7637
+ type: "success" | "error" | "info" | "warning";
7560
7638
  id?: number | undefined;
7561
7639
  }[] | undefined;
7562
7640
  required?: boolean | undefined;
@@ -7580,7 +7658,7 @@ declare function init(config: AuthHeroConfig): {
7580
7658
  hint?: string | undefined;
7581
7659
  messages?: {
7582
7660
  text: string;
7583
- type: "error" | "success" | "info" | "warning";
7661
+ type: "success" | "error" | "info" | "warning";
7584
7662
  id?: number | undefined;
7585
7663
  }[] | undefined;
7586
7664
  required?: boolean | undefined;
@@ -7604,7 +7682,7 @@ declare function init(config: AuthHeroConfig): {
7604
7682
  hint?: string | undefined;
7605
7683
  messages?: {
7606
7684
  text: string;
7607
- type: "error" | "success" | "info" | "warning";
7685
+ type: "success" | "error" | "info" | "warning";
7608
7686
  id?: number | undefined;
7609
7687
  }[] | undefined;
7610
7688
  required?: boolean | undefined;
@@ -7628,7 +7706,7 @@ declare function init(config: AuthHeroConfig): {
7628
7706
  hint?: string | undefined;
7629
7707
  messages?: {
7630
7708
  text: string;
7631
- type: "error" | "success" | "info" | "warning";
7709
+ type: "success" | "error" | "info" | "warning";
7632
7710
  id?: number | undefined;
7633
7711
  }[] | undefined;
7634
7712
  required?: boolean | undefined;
@@ -7653,7 +7731,7 @@ declare function init(config: AuthHeroConfig): {
7653
7731
  hint?: string | undefined;
7654
7732
  messages?: {
7655
7733
  text: string;
7656
- type: "error" | "success" | "info" | "warning";
7734
+ type: "success" | "error" | "info" | "warning";
7657
7735
  id?: number | undefined;
7658
7736
  }[] | undefined;
7659
7737
  required?: boolean | undefined;
@@ -7668,7 +7746,7 @@ declare function init(config: AuthHeroConfig): {
7668
7746
  hint?: string | undefined;
7669
7747
  messages?: {
7670
7748
  text: string;
7671
- type: "error" | "success" | "info" | "warning";
7749
+ type: "success" | "error" | "info" | "warning";
7672
7750
  id?: number | undefined;
7673
7751
  }[] | undefined;
7674
7752
  required?: boolean | undefined;
@@ -7689,7 +7767,7 @@ declare function init(config: AuthHeroConfig): {
7689
7767
  hint?: string | undefined;
7690
7768
  messages?: {
7691
7769
  text: string;
7692
- type: "error" | "success" | "info" | "warning";
7770
+ type: "success" | "error" | "info" | "warning";
7693
7771
  id?: number | undefined;
7694
7772
  }[] | undefined;
7695
7773
  required?: boolean | undefined;
@@ -7714,7 +7792,7 @@ declare function init(config: AuthHeroConfig): {
7714
7792
  hint?: string | undefined;
7715
7793
  messages?: {
7716
7794
  text: string;
7717
- type: "error" | "success" | "info" | "warning";
7795
+ type: "success" | "error" | "info" | "warning";
7718
7796
  id?: number | undefined;
7719
7797
  }[] | undefined;
7720
7798
  required?: boolean | undefined;
@@ -7733,7 +7811,7 @@ declare function init(config: AuthHeroConfig): {
7733
7811
  hint?: string | undefined;
7734
7812
  messages?: {
7735
7813
  text: string;
7736
- type: "error" | "success" | "info" | "warning";
7814
+ type: "success" | "error" | "info" | "warning";
7737
7815
  id?: number | undefined;
7738
7816
  }[] | undefined;
7739
7817
  required?: boolean | undefined;
@@ -7753,7 +7831,7 @@ declare function init(config: AuthHeroConfig): {
7753
7831
  hint?: string | undefined;
7754
7832
  messages?: {
7755
7833
  text: string;
7756
- type: "error" | "success" | "info" | "warning";
7834
+ type: "success" | "error" | "info" | "warning";
7757
7835
  id?: number | undefined;
7758
7836
  }[] | undefined;
7759
7837
  required?: boolean | undefined;
@@ -7772,7 +7850,7 @@ declare function init(config: AuthHeroConfig): {
7772
7850
  hint?: string | undefined;
7773
7851
  messages?: {
7774
7852
  text: string;
7775
- type: "error" | "success" | "info" | "warning";
7853
+ type: "success" | "error" | "info" | "warning";
7776
7854
  id?: number | undefined;
7777
7855
  }[] | undefined;
7778
7856
  required?: boolean | undefined;
@@ -7794,7 +7872,7 @@ declare function init(config: AuthHeroConfig): {
7794
7872
  hint?: string | undefined;
7795
7873
  messages?: {
7796
7874
  text: string;
7797
- type: "error" | "success" | "info" | "warning";
7875
+ type: "success" | "error" | "info" | "warning";
7798
7876
  id?: number | undefined;
7799
7877
  }[] | undefined;
7800
7878
  required?: boolean | undefined;
@@ -7816,7 +7894,7 @@ declare function init(config: AuthHeroConfig): {
7816
7894
  hint?: string | undefined;
7817
7895
  messages?: {
7818
7896
  text: string;
7819
- type: "error" | "success" | "info" | "warning";
7897
+ type: "success" | "error" | "info" | "warning";
7820
7898
  id?: number | undefined;
7821
7899
  }[] | undefined;
7822
7900
  required?: boolean | undefined;
@@ -7835,7 +7913,7 @@ declare function init(config: AuthHeroConfig): {
7835
7913
  hint?: string | undefined;
7836
7914
  messages?: {
7837
7915
  text: string;
7838
- type: "error" | "success" | "info" | "warning";
7916
+ type: "success" | "error" | "info" | "warning";
7839
7917
  id?: number | undefined;
7840
7918
  }[] | undefined;
7841
7919
  required?: boolean | undefined;
@@ -7860,7 +7938,7 @@ declare function init(config: AuthHeroConfig): {
7860
7938
  hint?: string | undefined;
7861
7939
  messages?: {
7862
7940
  text: string;
7863
- type: "error" | "success" | "info" | "warning";
7941
+ type: "success" | "error" | "info" | "warning";
7864
7942
  id?: number | undefined;
7865
7943
  }[] | undefined;
7866
7944
  required?: boolean | undefined;
@@ -7881,7 +7959,7 @@ declare function init(config: AuthHeroConfig): {
7881
7959
  hint?: string | undefined;
7882
7960
  messages?: {
7883
7961
  text: string;
7884
- type: "error" | "success" | "info" | "warning";
7962
+ type: "success" | "error" | "info" | "warning";
7885
7963
  id?: number | undefined;
7886
7964
  }[] | undefined;
7887
7965
  required?: boolean | undefined;
@@ -7902,7 +7980,7 @@ declare function init(config: AuthHeroConfig): {
7902
7980
  hint?: string | undefined;
7903
7981
  messages?: {
7904
7982
  text: string;
7905
- type: "error" | "success" | "info" | "warning";
7983
+ type: "success" | "error" | "info" | "warning";
7906
7984
  id?: number | undefined;
7907
7985
  }[] | undefined;
7908
7986
  required?: boolean | undefined;
@@ -8133,7 +8211,7 @@ declare function init(config: AuthHeroConfig): {
8133
8211
  hint?: string | undefined;
8134
8212
  messages?: {
8135
8213
  text: string;
8136
- type: "error" | "success" | "info" | "warning";
8214
+ type: "success" | "error" | "info" | "warning";
8137
8215
  id?: number | undefined;
8138
8216
  }[] | undefined;
8139
8217
  required?: boolean | undefined;
@@ -8151,7 +8229,7 @@ declare function init(config: AuthHeroConfig): {
8151
8229
  hint?: string | undefined;
8152
8230
  messages?: {
8153
8231
  text: string;
8154
- type: "error" | "success" | "info" | "warning";
8232
+ type: "success" | "error" | "info" | "warning";
8155
8233
  id?: number | undefined;
8156
8234
  }[] | undefined;
8157
8235
  required?: boolean | undefined;
@@ -8175,7 +8253,7 @@ declare function init(config: AuthHeroConfig): {
8175
8253
  hint?: string | undefined;
8176
8254
  messages?: {
8177
8255
  text: string;
8178
- type: "error" | "success" | "info" | "warning";
8256
+ type: "success" | "error" | "info" | "warning";
8179
8257
  id?: number | undefined;
8180
8258
  }[] | undefined;
8181
8259
  required?: boolean | undefined;
@@ -8199,7 +8277,7 @@ declare function init(config: AuthHeroConfig): {
8199
8277
  hint?: string | undefined;
8200
8278
  messages?: {
8201
8279
  text: string;
8202
- type: "error" | "success" | "info" | "warning";
8280
+ type: "success" | "error" | "info" | "warning";
8203
8281
  id?: number | undefined;
8204
8282
  }[] | undefined;
8205
8283
  required?: boolean | undefined;
@@ -8223,7 +8301,7 @@ declare function init(config: AuthHeroConfig): {
8223
8301
  hint?: string | undefined;
8224
8302
  messages?: {
8225
8303
  text: string;
8226
- type: "error" | "success" | "info" | "warning";
8304
+ type: "success" | "error" | "info" | "warning";
8227
8305
  id?: number | undefined;
8228
8306
  }[] | undefined;
8229
8307
  required?: boolean | undefined;
@@ -8252,7 +8330,7 @@ declare function init(config: AuthHeroConfig): {
8252
8330
  hint?: string | undefined;
8253
8331
  messages?: {
8254
8332
  text: string;
8255
- type: "error" | "success" | "info" | "warning";
8333
+ type: "success" | "error" | "info" | "warning";
8256
8334
  id?: number | undefined;
8257
8335
  }[] | undefined;
8258
8336
  required?: boolean | undefined;
@@ -8267,7 +8345,7 @@ declare function init(config: AuthHeroConfig): {
8267
8345
  hint?: string | undefined;
8268
8346
  messages?: {
8269
8347
  text: string;
8270
- type: "error" | "success" | "info" | "warning";
8348
+ type: "success" | "error" | "info" | "warning";
8271
8349
  id?: number | undefined;
8272
8350
  }[] | undefined;
8273
8351
  required?: boolean | undefined;
@@ -8288,7 +8366,7 @@ declare function init(config: AuthHeroConfig): {
8288
8366
  hint?: string | undefined;
8289
8367
  messages?: {
8290
8368
  text: string;
8291
- type: "error" | "success" | "info" | "warning";
8369
+ type: "success" | "error" | "info" | "warning";
8292
8370
  id?: number | undefined;
8293
8371
  }[] | undefined;
8294
8372
  required?: boolean | undefined;
@@ -8313,7 +8391,7 @@ declare function init(config: AuthHeroConfig): {
8313
8391
  hint?: string | undefined;
8314
8392
  messages?: {
8315
8393
  text: string;
8316
- type: "error" | "success" | "info" | "warning";
8394
+ type: "success" | "error" | "info" | "warning";
8317
8395
  id?: number | undefined;
8318
8396
  }[] | undefined;
8319
8397
  required?: boolean | undefined;
@@ -8332,7 +8410,7 @@ declare function init(config: AuthHeroConfig): {
8332
8410
  hint?: string | undefined;
8333
8411
  messages?: {
8334
8412
  text: string;
8335
- type: "error" | "success" | "info" | "warning";
8413
+ type: "success" | "error" | "info" | "warning";
8336
8414
  id?: number | undefined;
8337
8415
  }[] | undefined;
8338
8416
  required?: boolean | undefined;
@@ -8352,7 +8430,7 @@ declare function init(config: AuthHeroConfig): {
8352
8430
  hint?: string | undefined;
8353
8431
  messages?: {
8354
8432
  text: string;
8355
- type: "error" | "success" | "info" | "warning";
8433
+ type: "success" | "error" | "info" | "warning";
8356
8434
  id?: number | undefined;
8357
8435
  }[] | undefined;
8358
8436
  required?: boolean | undefined;
@@ -8371,7 +8449,7 @@ declare function init(config: AuthHeroConfig): {
8371
8449
  hint?: string | undefined;
8372
8450
  messages?: {
8373
8451
  text: string;
8374
- type: "error" | "success" | "info" | "warning";
8452
+ type: "success" | "error" | "info" | "warning";
8375
8453
  id?: number | undefined;
8376
8454
  }[] | undefined;
8377
8455
  required?: boolean | undefined;
@@ -8393,7 +8471,7 @@ declare function init(config: AuthHeroConfig): {
8393
8471
  hint?: string | undefined;
8394
8472
  messages?: {
8395
8473
  text: string;
8396
- type: "error" | "success" | "info" | "warning";
8474
+ type: "success" | "error" | "info" | "warning";
8397
8475
  id?: number | undefined;
8398
8476
  }[] | undefined;
8399
8477
  required?: boolean | undefined;
@@ -8415,7 +8493,7 @@ declare function init(config: AuthHeroConfig): {
8415
8493
  hint?: string | undefined;
8416
8494
  messages?: {
8417
8495
  text: string;
8418
- type: "error" | "success" | "info" | "warning";
8496
+ type: "success" | "error" | "info" | "warning";
8419
8497
  id?: number | undefined;
8420
8498
  }[] | undefined;
8421
8499
  required?: boolean | undefined;
@@ -8434,7 +8512,7 @@ declare function init(config: AuthHeroConfig): {
8434
8512
  hint?: string | undefined;
8435
8513
  messages?: {
8436
8514
  text: string;
8437
- type: "error" | "success" | "info" | "warning";
8515
+ type: "success" | "error" | "info" | "warning";
8438
8516
  id?: number | undefined;
8439
8517
  }[] | undefined;
8440
8518
  required?: boolean | undefined;
@@ -8459,7 +8537,7 @@ declare function init(config: AuthHeroConfig): {
8459
8537
  hint?: string | undefined;
8460
8538
  messages?: {
8461
8539
  text: string;
8462
- type: "error" | "success" | "info" | "warning";
8540
+ type: "success" | "error" | "info" | "warning";
8463
8541
  id?: number | undefined;
8464
8542
  }[] | undefined;
8465
8543
  required?: boolean | undefined;
@@ -8480,7 +8558,7 @@ declare function init(config: AuthHeroConfig): {
8480
8558
  hint?: string | undefined;
8481
8559
  messages?: {
8482
8560
  text: string;
8483
- type: "error" | "success" | "info" | "warning";
8561
+ type: "success" | "error" | "info" | "warning";
8484
8562
  id?: number | undefined;
8485
8563
  }[] | undefined;
8486
8564
  required?: boolean | undefined;
@@ -8501,7 +8579,7 @@ declare function init(config: AuthHeroConfig): {
8501
8579
  hint?: string | undefined;
8502
8580
  messages?: {
8503
8581
  text: string;
8504
- type: "error" | "success" | "info" | "warning";
8582
+ type: "success" | "error" | "info" | "warning";
8505
8583
  id?: number | undefined;
8506
8584
  }[] | undefined;
8507
8585
  required?: boolean | undefined;
@@ -8734,7 +8812,7 @@ declare function init(config: AuthHeroConfig): {
8734
8812
  hint?: string | undefined;
8735
8813
  messages?: {
8736
8814
  text: string;
8737
- type: "error" | "success" | "info" | "warning";
8815
+ type: "success" | "error" | "info" | "warning";
8738
8816
  id?: number | undefined;
8739
8817
  }[] | undefined;
8740
8818
  required?: boolean | undefined;
@@ -8752,7 +8830,7 @@ declare function init(config: AuthHeroConfig): {
8752
8830
  hint?: string | undefined;
8753
8831
  messages?: {
8754
8832
  text: string;
8755
- type: "error" | "success" | "info" | "warning";
8833
+ type: "success" | "error" | "info" | "warning";
8756
8834
  id?: number | undefined;
8757
8835
  }[] | undefined;
8758
8836
  required?: boolean | undefined;
@@ -8776,7 +8854,7 @@ declare function init(config: AuthHeroConfig): {
8776
8854
  hint?: string | undefined;
8777
8855
  messages?: {
8778
8856
  text: string;
8779
- type: "error" | "success" | "info" | "warning";
8857
+ type: "success" | "error" | "info" | "warning";
8780
8858
  id?: number | undefined;
8781
8859
  }[] | undefined;
8782
8860
  required?: boolean | undefined;
@@ -8800,7 +8878,7 @@ declare function init(config: AuthHeroConfig): {
8800
8878
  hint?: string | undefined;
8801
8879
  messages?: {
8802
8880
  text: string;
8803
- type: "error" | "success" | "info" | "warning";
8881
+ type: "success" | "error" | "info" | "warning";
8804
8882
  id?: number | undefined;
8805
8883
  }[] | undefined;
8806
8884
  required?: boolean | undefined;
@@ -8824,7 +8902,7 @@ declare function init(config: AuthHeroConfig): {
8824
8902
  hint?: string | undefined;
8825
8903
  messages?: {
8826
8904
  text: string;
8827
- type: "error" | "success" | "info" | "warning";
8905
+ type: "success" | "error" | "info" | "warning";
8828
8906
  id?: number | undefined;
8829
8907
  }[] | undefined;
8830
8908
  required?: boolean | undefined;
@@ -8849,7 +8927,7 @@ declare function init(config: AuthHeroConfig): {
8849
8927
  hint?: string | undefined;
8850
8928
  messages?: {
8851
8929
  text: string;
8852
- type: "error" | "success" | "info" | "warning";
8930
+ type: "success" | "error" | "info" | "warning";
8853
8931
  id?: number | undefined;
8854
8932
  }[] | undefined;
8855
8933
  required?: boolean | undefined;
@@ -8864,7 +8942,7 @@ declare function init(config: AuthHeroConfig): {
8864
8942
  hint?: string | undefined;
8865
8943
  messages?: {
8866
8944
  text: string;
8867
- type: "error" | "success" | "info" | "warning";
8945
+ type: "success" | "error" | "info" | "warning";
8868
8946
  id?: number | undefined;
8869
8947
  }[] | undefined;
8870
8948
  required?: boolean | undefined;
@@ -8885,7 +8963,7 @@ declare function init(config: AuthHeroConfig): {
8885
8963
  hint?: string | undefined;
8886
8964
  messages?: {
8887
8965
  text: string;
8888
- type: "error" | "success" | "info" | "warning";
8966
+ type: "success" | "error" | "info" | "warning";
8889
8967
  id?: number | undefined;
8890
8968
  }[] | undefined;
8891
8969
  required?: boolean | undefined;
@@ -8910,7 +8988,7 @@ declare function init(config: AuthHeroConfig): {
8910
8988
  hint?: string | undefined;
8911
8989
  messages?: {
8912
8990
  text: string;
8913
- type: "error" | "success" | "info" | "warning";
8991
+ type: "success" | "error" | "info" | "warning";
8914
8992
  id?: number | undefined;
8915
8993
  }[] | undefined;
8916
8994
  required?: boolean | undefined;
@@ -8929,7 +9007,7 @@ declare function init(config: AuthHeroConfig): {
8929
9007
  hint?: string | undefined;
8930
9008
  messages?: {
8931
9009
  text: string;
8932
- type: "error" | "success" | "info" | "warning";
9010
+ type: "success" | "error" | "info" | "warning";
8933
9011
  id?: number | undefined;
8934
9012
  }[] | undefined;
8935
9013
  required?: boolean | undefined;
@@ -8949,7 +9027,7 @@ declare function init(config: AuthHeroConfig): {
8949
9027
  hint?: string | undefined;
8950
9028
  messages?: {
8951
9029
  text: string;
8952
- type: "error" | "success" | "info" | "warning";
9030
+ type: "success" | "error" | "info" | "warning";
8953
9031
  id?: number | undefined;
8954
9032
  }[] | undefined;
8955
9033
  required?: boolean | undefined;
@@ -8968,7 +9046,7 @@ declare function init(config: AuthHeroConfig): {
8968
9046
  hint?: string | undefined;
8969
9047
  messages?: {
8970
9048
  text: string;
8971
- type: "error" | "success" | "info" | "warning";
9049
+ type: "success" | "error" | "info" | "warning";
8972
9050
  id?: number | undefined;
8973
9051
  }[] | undefined;
8974
9052
  required?: boolean | undefined;
@@ -8990,7 +9068,7 @@ declare function init(config: AuthHeroConfig): {
8990
9068
  hint?: string | undefined;
8991
9069
  messages?: {
8992
9070
  text: string;
8993
- type: "error" | "success" | "info" | "warning";
9071
+ type: "success" | "error" | "info" | "warning";
8994
9072
  id?: number | undefined;
8995
9073
  }[] | undefined;
8996
9074
  required?: boolean | undefined;
@@ -9012,7 +9090,7 @@ declare function init(config: AuthHeroConfig): {
9012
9090
  hint?: string | undefined;
9013
9091
  messages?: {
9014
9092
  text: string;
9015
- type: "error" | "success" | "info" | "warning";
9093
+ type: "success" | "error" | "info" | "warning";
9016
9094
  id?: number | undefined;
9017
9095
  }[] | undefined;
9018
9096
  required?: boolean | undefined;
@@ -9031,7 +9109,7 @@ declare function init(config: AuthHeroConfig): {
9031
9109
  hint?: string | undefined;
9032
9110
  messages?: {
9033
9111
  text: string;
9034
- type: "error" | "success" | "info" | "warning";
9112
+ type: "success" | "error" | "info" | "warning";
9035
9113
  id?: number | undefined;
9036
9114
  }[] | undefined;
9037
9115
  required?: boolean | undefined;
@@ -9056,7 +9134,7 @@ declare function init(config: AuthHeroConfig): {
9056
9134
  hint?: string | undefined;
9057
9135
  messages?: {
9058
9136
  text: string;
9059
- type: "error" | "success" | "info" | "warning";
9137
+ type: "success" | "error" | "info" | "warning";
9060
9138
  id?: number | undefined;
9061
9139
  }[] | undefined;
9062
9140
  required?: boolean | undefined;
@@ -9077,7 +9155,7 @@ declare function init(config: AuthHeroConfig): {
9077
9155
  hint?: string | undefined;
9078
9156
  messages?: {
9079
9157
  text: string;
9080
- type: "error" | "success" | "info" | "warning";
9158
+ type: "success" | "error" | "info" | "warning";
9081
9159
  id?: number | undefined;
9082
9160
  }[] | undefined;
9083
9161
  required?: boolean | undefined;
@@ -9098,7 +9176,7 @@ declare function init(config: AuthHeroConfig): {
9098
9176
  hint?: string | undefined;
9099
9177
  messages?: {
9100
9178
  text: string;
9101
- type: "error" | "success" | "info" | "warning";
9179
+ type: "success" | "error" | "info" | "warning";
9102
9180
  id?: number | undefined;
9103
9181
  }[] | undefined;
9104
9182
  required?: boolean | undefined;
@@ -9329,7 +9407,7 @@ declare function init(config: AuthHeroConfig): {
9329
9407
  hint?: string | undefined;
9330
9408
  messages?: {
9331
9409
  text: string;
9332
- type: "error" | "success" | "info" | "warning";
9410
+ type: "success" | "error" | "info" | "warning";
9333
9411
  id?: number | undefined;
9334
9412
  }[] | undefined;
9335
9413
  required?: boolean | undefined;
@@ -9347,7 +9425,7 @@ declare function init(config: AuthHeroConfig): {
9347
9425
  hint?: string | undefined;
9348
9426
  messages?: {
9349
9427
  text: string;
9350
- type: "error" | "success" | "info" | "warning";
9428
+ type: "success" | "error" | "info" | "warning";
9351
9429
  id?: number | undefined;
9352
9430
  }[] | undefined;
9353
9431
  required?: boolean | undefined;
@@ -9371,7 +9449,7 @@ declare function init(config: AuthHeroConfig): {
9371
9449
  hint?: string | undefined;
9372
9450
  messages?: {
9373
9451
  text: string;
9374
- type: "error" | "success" | "info" | "warning";
9452
+ type: "success" | "error" | "info" | "warning";
9375
9453
  id?: number | undefined;
9376
9454
  }[] | undefined;
9377
9455
  required?: boolean | undefined;
@@ -9395,7 +9473,7 @@ declare function init(config: AuthHeroConfig): {
9395
9473
  hint?: string | undefined;
9396
9474
  messages?: {
9397
9475
  text: string;
9398
- type: "error" | "success" | "info" | "warning";
9476
+ type: "success" | "error" | "info" | "warning";
9399
9477
  id?: number | undefined;
9400
9478
  }[] | undefined;
9401
9479
  required?: boolean | undefined;
@@ -9419,7 +9497,7 @@ declare function init(config: AuthHeroConfig): {
9419
9497
  hint?: string | undefined;
9420
9498
  messages?: {
9421
9499
  text: string;
9422
- type: "error" | "success" | "info" | "warning";
9500
+ type: "success" | "error" | "info" | "warning";
9423
9501
  id?: number | undefined;
9424
9502
  }[] | undefined;
9425
9503
  required?: boolean | undefined;
@@ -9448,7 +9526,7 @@ declare function init(config: AuthHeroConfig): {
9448
9526
  hint?: string | undefined;
9449
9527
  messages?: {
9450
9528
  text: string;
9451
- type: "error" | "success" | "info" | "warning";
9529
+ type: "success" | "error" | "info" | "warning";
9452
9530
  id?: number | undefined;
9453
9531
  }[] | undefined;
9454
9532
  required?: boolean | undefined;
@@ -9463,7 +9541,7 @@ declare function init(config: AuthHeroConfig): {
9463
9541
  hint?: string | undefined;
9464
9542
  messages?: {
9465
9543
  text: string;
9466
- type: "error" | "success" | "info" | "warning";
9544
+ type: "success" | "error" | "info" | "warning";
9467
9545
  id?: number | undefined;
9468
9546
  }[] | undefined;
9469
9547
  required?: boolean | undefined;
@@ -9484,7 +9562,7 @@ declare function init(config: AuthHeroConfig): {
9484
9562
  hint?: string | undefined;
9485
9563
  messages?: {
9486
9564
  text: string;
9487
- type: "error" | "success" | "info" | "warning";
9565
+ type: "success" | "error" | "info" | "warning";
9488
9566
  id?: number | undefined;
9489
9567
  }[] | undefined;
9490
9568
  required?: boolean | undefined;
@@ -9509,7 +9587,7 @@ declare function init(config: AuthHeroConfig): {
9509
9587
  hint?: string | undefined;
9510
9588
  messages?: {
9511
9589
  text: string;
9512
- type: "error" | "success" | "info" | "warning";
9590
+ type: "success" | "error" | "info" | "warning";
9513
9591
  id?: number | undefined;
9514
9592
  }[] | undefined;
9515
9593
  required?: boolean | undefined;
@@ -9528,7 +9606,7 @@ declare function init(config: AuthHeroConfig): {
9528
9606
  hint?: string | undefined;
9529
9607
  messages?: {
9530
9608
  text: string;
9531
- type: "error" | "success" | "info" | "warning";
9609
+ type: "success" | "error" | "info" | "warning";
9532
9610
  id?: number | undefined;
9533
9611
  }[] | undefined;
9534
9612
  required?: boolean | undefined;
@@ -9548,7 +9626,7 @@ declare function init(config: AuthHeroConfig): {
9548
9626
  hint?: string | undefined;
9549
9627
  messages?: {
9550
9628
  text: string;
9551
- type: "error" | "success" | "info" | "warning";
9629
+ type: "success" | "error" | "info" | "warning";
9552
9630
  id?: number | undefined;
9553
9631
  }[] | undefined;
9554
9632
  required?: boolean | undefined;
@@ -9567,7 +9645,7 @@ declare function init(config: AuthHeroConfig): {
9567
9645
  hint?: string | undefined;
9568
9646
  messages?: {
9569
9647
  text: string;
9570
- type: "error" | "success" | "info" | "warning";
9648
+ type: "success" | "error" | "info" | "warning";
9571
9649
  id?: number | undefined;
9572
9650
  }[] | undefined;
9573
9651
  required?: boolean | undefined;
@@ -9589,7 +9667,7 @@ declare function init(config: AuthHeroConfig): {
9589
9667
  hint?: string | undefined;
9590
9668
  messages?: {
9591
9669
  text: string;
9592
- type: "error" | "success" | "info" | "warning";
9670
+ type: "success" | "error" | "info" | "warning";
9593
9671
  id?: number | undefined;
9594
9672
  }[] | undefined;
9595
9673
  required?: boolean | undefined;
@@ -9611,7 +9689,7 @@ declare function init(config: AuthHeroConfig): {
9611
9689
  hint?: string | undefined;
9612
9690
  messages?: {
9613
9691
  text: string;
9614
- type: "error" | "success" | "info" | "warning";
9692
+ type: "success" | "error" | "info" | "warning";
9615
9693
  id?: number | undefined;
9616
9694
  }[] | undefined;
9617
9695
  required?: boolean | undefined;
@@ -9630,7 +9708,7 @@ declare function init(config: AuthHeroConfig): {
9630
9708
  hint?: string | undefined;
9631
9709
  messages?: {
9632
9710
  text: string;
9633
- type: "error" | "success" | "info" | "warning";
9711
+ type: "success" | "error" | "info" | "warning";
9634
9712
  id?: number | undefined;
9635
9713
  }[] | undefined;
9636
9714
  required?: boolean | undefined;
@@ -9655,7 +9733,7 @@ declare function init(config: AuthHeroConfig): {
9655
9733
  hint?: string | undefined;
9656
9734
  messages?: {
9657
9735
  text: string;
9658
- type: "error" | "success" | "info" | "warning";
9736
+ type: "success" | "error" | "info" | "warning";
9659
9737
  id?: number | undefined;
9660
9738
  }[] | undefined;
9661
9739
  required?: boolean | undefined;
@@ -9676,7 +9754,7 @@ declare function init(config: AuthHeroConfig): {
9676
9754
  hint?: string | undefined;
9677
9755
  messages?: {
9678
9756
  text: string;
9679
- type: "error" | "success" | "info" | "warning";
9757
+ type: "success" | "error" | "info" | "warning";
9680
9758
  id?: number | undefined;
9681
9759
  }[] | undefined;
9682
9760
  required?: boolean | undefined;
@@ -9697,7 +9775,7 @@ declare function init(config: AuthHeroConfig): {
9697
9775
  hint?: string | undefined;
9698
9776
  messages?: {
9699
9777
  text: string;
9700
- type: "error" | "success" | "info" | "warning";
9778
+ type: "success" | "error" | "info" | "warning";
9701
9779
  id?: number | undefined;
9702
9780
  }[] | undefined;
9703
9781
  required?: boolean | undefined;
@@ -9927,7 +10005,7 @@ declare function init(config: AuthHeroConfig): {
9927
10005
  };
9928
10006
  };
9929
10007
  output: {
9930
- prompt: "status" | "organizations" | "signup" | "mfa" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10008
+ prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "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";
9931
10009
  language: string;
9932
10010
  }[];
9933
10011
  outputFormat: "json";
@@ -9965,7 +10043,7 @@ declare function init(config: AuthHeroConfig): {
9965
10043
  $get: {
9966
10044
  input: {
9967
10045
  param: {
9968
- prompt: "status" | "organizations" | "signup" | "mfa" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10046
+ prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "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";
9969
10047
  language: string;
9970
10048
  };
9971
10049
  } & {
@@ -9987,7 +10065,7 @@ declare function init(config: AuthHeroConfig): {
9987
10065
  $put: {
9988
10066
  input: {
9989
10067
  param: {
9990
- prompt: "status" | "organizations" | "signup" | "mfa" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10068
+ prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "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";
9991
10069
  language: string;
9992
10070
  };
9993
10071
  } & {
@@ -10011,7 +10089,7 @@ declare function init(config: AuthHeroConfig): {
10011
10089
  $delete: {
10012
10090
  input: {
10013
10091
  param: {
10014
- prompt: "status" | "organizations" | "signup" | "mfa" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10092
+ prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "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";
10015
10093
  language: string;
10016
10094
  };
10017
10095
  } & {
@@ -10103,7 +10181,7 @@ declare function init(config: AuthHeroConfig): {
10103
10181
  active?: boolean | undefined;
10104
10182
  } | undefined;
10105
10183
  signup?: {
10106
- status?: "required" | "optional" | "disabled" | undefined;
10184
+ status?: "optional" | "required" | "disabled" | undefined;
10107
10185
  verification?: {
10108
10186
  active?: boolean | undefined;
10109
10187
  } | undefined;
@@ -10120,7 +10198,7 @@ declare function init(config: AuthHeroConfig): {
10120
10198
  active?: boolean | undefined;
10121
10199
  } | undefined;
10122
10200
  signup?: {
10123
- status?: "required" | "optional" | "disabled" | undefined;
10201
+ status?: "optional" | "required" | "disabled" | undefined;
10124
10202
  } | undefined;
10125
10203
  validation?: {
10126
10204
  max_length?: number | undefined;
@@ -10137,7 +10215,7 @@ declare function init(config: AuthHeroConfig): {
10137
10215
  active?: boolean | undefined;
10138
10216
  } | undefined;
10139
10217
  signup?: {
10140
- status?: "required" | "optional" | "disabled" | undefined;
10218
+ status?: "optional" | "required" | "disabled" | undefined;
10141
10219
  } | undefined;
10142
10220
  } | undefined;
10143
10221
  } | undefined;
@@ -10237,7 +10315,7 @@ declare function init(config: AuthHeroConfig): {
10237
10315
  active?: boolean | undefined;
10238
10316
  } | undefined;
10239
10317
  signup?: {
10240
- status?: "required" | "optional" | "disabled" | undefined;
10318
+ status?: "optional" | "required" | "disabled" | undefined;
10241
10319
  verification?: {
10242
10320
  active?: boolean | undefined;
10243
10321
  } | undefined;
@@ -10254,7 +10332,7 @@ declare function init(config: AuthHeroConfig): {
10254
10332
  active?: boolean | undefined;
10255
10333
  } | undefined;
10256
10334
  signup?: {
10257
- status?: "required" | "optional" | "disabled" | undefined;
10335
+ status?: "optional" | "required" | "disabled" | undefined;
10258
10336
  } | undefined;
10259
10337
  validation?: {
10260
10338
  max_length?: number | undefined;
@@ -10271,7 +10349,7 @@ declare function init(config: AuthHeroConfig): {
10271
10349
  active?: boolean | undefined;
10272
10350
  } | undefined;
10273
10351
  signup?: {
10274
- status?: "required" | "optional" | "disabled" | undefined;
10352
+ status?: "optional" | "required" | "disabled" | undefined;
10275
10353
  } | undefined;
10276
10354
  } | undefined;
10277
10355
  } | undefined;
@@ -10386,7 +10464,7 @@ declare function init(config: AuthHeroConfig): {
10386
10464
  active?: boolean | undefined;
10387
10465
  } | undefined;
10388
10466
  signup?: {
10389
- status?: "required" | "optional" | "disabled" | undefined;
10467
+ status?: "optional" | "required" | "disabled" | undefined;
10390
10468
  verification?: {
10391
10469
  active?: boolean | undefined;
10392
10470
  } | undefined;
@@ -10403,7 +10481,7 @@ declare function init(config: AuthHeroConfig): {
10403
10481
  active?: boolean | undefined;
10404
10482
  } | undefined;
10405
10483
  signup?: {
10406
- status?: "required" | "optional" | "disabled" | undefined;
10484
+ status?: "optional" | "required" | "disabled" | undefined;
10407
10485
  } | undefined;
10408
10486
  validation?: {
10409
10487
  max_length?: number | undefined;
@@ -10420,7 +10498,7 @@ declare function init(config: AuthHeroConfig): {
10420
10498
  active?: boolean | undefined;
10421
10499
  } | undefined;
10422
10500
  signup?: {
10423
- status?: "required" | "optional" | "disabled" | undefined;
10501
+ status?: "optional" | "required" | "disabled" | undefined;
10424
10502
  } | undefined;
10425
10503
  } | undefined;
10426
10504
  } | undefined;
@@ -10565,7 +10643,7 @@ declare function init(config: AuthHeroConfig): {
10565
10643
  active?: boolean | undefined;
10566
10644
  } | undefined;
10567
10645
  signup?: {
10568
- status?: "required" | "optional" | "disabled" | undefined;
10646
+ status?: "optional" | "required" | "disabled" | undefined;
10569
10647
  verification?: {
10570
10648
  active?: boolean | undefined;
10571
10649
  } | undefined;
@@ -10582,7 +10660,7 @@ declare function init(config: AuthHeroConfig): {
10582
10660
  active?: boolean | undefined;
10583
10661
  } | undefined;
10584
10662
  signup?: {
10585
- status?: "required" | "optional" | "disabled" | undefined;
10663
+ status?: "optional" | "required" | "disabled" | undefined;
10586
10664
  } | undefined;
10587
10665
  validation?: {
10588
10666
  max_length?: number | undefined;
@@ -10599,7 +10677,7 @@ declare function init(config: AuthHeroConfig): {
10599
10677
  active?: boolean | undefined;
10600
10678
  } | undefined;
10601
10679
  signup?: {
10602
- status?: "required" | "optional" | "disabled" | undefined;
10680
+ status?: "optional" | "required" | "disabled" | undefined;
10603
10681
  } | undefined;
10604
10682
  } | undefined;
10605
10683
  } | undefined;
@@ -10723,7 +10801,7 @@ declare function init(config: AuthHeroConfig): {
10723
10801
  active?: boolean | undefined;
10724
10802
  } | undefined;
10725
10803
  signup?: {
10726
- status?: "required" | "optional" | "disabled" | undefined;
10804
+ status?: "optional" | "required" | "disabled" | undefined;
10727
10805
  verification?: {
10728
10806
  active?: boolean | undefined;
10729
10807
  } | undefined;
@@ -10740,7 +10818,7 @@ declare function init(config: AuthHeroConfig): {
10740
10818
  active?: boolean | undefined;
10741
10819
  } | undefined;
10742
10820
  signup?: {
10743
- status?: "required" | "optional" | "disabled" | undefined;
10821
+ status?: "optional" | "required" | "disabled" | undefined;
10744
10822
  } | undefined;
10745
10823
  validation?: {
10746
10824
  max_length?: number | undefined;
@@ -10757,7 +10835,7 @@ declare function init(config: AuthHeroConfig): {
10757
10835
  active?: boolean | undefined;
10758
10836
  } | undefined;
10759
10837
  signup?: {
10760
- status?: "required" | "optional" | "disabled" | undefined;
10838
+ status?: "optional" | "required" | "disabled" | undefined;
10761
10839
  } | undefined;
10762
10840
  } | undefined;
10763
10841
  } | undefined;
@@ -10873,7 +10951,7 @@ declare function init(config: AuthHeroConfig): {
10873
10951
  };
10874
10952
  } | {
10875
10953
  mode: "inline";
10876
- status: "error" | "success";
10954
+ status: "success" | "error";
10877
10955
  connection_id: string;
10878
10956
  connection_name: string;
10879
10957
  strategy: string;
@@ -10909,7 +10987,7 @@ declare function init(config: AuthHeroConfig): {
10909
10987
  tenant_id: string;
10910
10988
  created_at: string;
10911
10989
  updated_at: string;
10912
- deploymentStatus: "failed" | "deployed" | "not_required";
10990
+ deploymentStatus: "deployed" | "failed" | "not_required";
10913
10991
  secrets?: {
10914
10992
  [x: string]: string;
10915
10993
  } | undefined;
@@ -10999,7 +11077,7 @@ declare function init(config: AuthHeroConfig): {
10999
11077
  tenant_id: string;
11000
11078
  created_at: string;
11001
11079
  updated_at: string;
11002
- deploymentStatus: "failed" | "deployed" | "not_required";
11080
+ deploymentStatus: "deployed" | "failed" | "not_required";
11003
11081
  secrets?: {
11004
11082
  [x: string]: string;
11005
11083
  } | undefined;
@@ -11047,7 +11125,7 @@ declare function init(config: AuthHeroConfig): {
11047
11125
  };
11048
11126
  };
11049
11127
  output: ({
11050
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11128
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11051
11129
  enabled: boolean;
11052
11130
  synchronous: boolean;
11053
11131
  created_at: string;
@@ -11059,7 +11137,7 @@ declare function init(config: AuthHeroConfig): {
11059
11137
  [x: string]: hono_utils_types.JSONValue;
11060
11138
  } | undefined;
11061
11139
  } | {
11062
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11140
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11063
11141
  enabled: boolean;
11064
11142
  synchronous: boolean;
11065
11143
  created_at: string;
@@ -11071,7 +11149,7 @@ declare function init(config: AuthHeroConfig): {
11071
11149
  [x: string]: hono_utils_types.JSONValue;
11072
11150
  } | undefined;
11073
11151
  } | {
11074
- trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
11152
+ trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
11075
11153
  enabled: boolean;
11076
11154
  synchronous: boolean;
11077
11155
  created_at: string;
@@ -11083,7 +11161,7 @@ declare function init(config: AuthHeroConfig): {
11083
11161
  [x: string]: hono_utils_types.JSONValue;
11084
11162
  } | undefined;
11085
11163
  } | {
11086
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
11164
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
11087
11165
  enabled: boolean;
11088
11166
  synchronous: boolean;
11089
11167
  created_at: string;
@@ -11099,7 +11177,7 @@ declare function init(config: AuthHeroConfig): {
11099
11177
  limit: number;
11100
11178
  length: number;
11101
11179
  hooks: ({
11102
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11180
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11103
11181
  enabled: boolean;
11104
11182
  synchronous: boolean;
11105
11183
  created_at: string;
@@ -11111,7 +11189,7 @@ declare function init(config: AuthHeroConfig): {
11111
11189
  [x: string]: hono_utils_types.JSONValue;
11112
11190
  } | undefined;
11113
11191
  } | {
11114
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11192
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11115
11193
  enabled: boolean;
11116
11194
  synchronous: boolean;
11117
11195
  created_at: string;
@@ -11123,7 +11201,7 @@ declare function init(config: AuthHeroConfig): {
11123
11201
  [x: string]: hono_utils_types.JSONValue;
11124
11202
  } | undefined;
11125
11203
  } | {
11126
- trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
11204
+ trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
11127
11205
  enabled: boolean;
11128
11206
  synchronous: boolean;
11129
11207
  created_at: string;
@@ -11135,7 +11213,7 @@ declare function init(config: AuthHeroConfig): {
11135
11213
  [x: string]: hono_utils_types.JSONValue;
11136
11214
  } | undefined;
11137
11215
  } | {
11138
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
11216
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
11139
11217
  enabled: boolean;
11140
11218
  synchronous: boolean;
11141
11219
  created_at: string;
@@ -11162,7 +11240,7 @@ declare function init(config: AuthHeroConfig): {
11162
11240
  };
11163
11241
  } & {
11164
11242
  json: {
11165
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11243
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11166
11244
  url: string;
11167
11245
  enabled?: boolean | undefined;
11168
11246
  synchronous?: boolean | undefined;
@@ -11170,7 +11248,7 @@ declare function init(config: AuthHeroConfig): {
11170
11248
  hook_id?: string | undefined;
11171
11249
  metadata?: Record<string, unknown> | undefined;
11172
11250
  } | {
11173
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11251
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11174
11252
  form_id: string;
11175
11253
  enabled?: boolean | undefined;
11176
11254
  synchronous?: boolean | undefined;
@@ -11178,7 +11256,7 @@ declare function init(config: AuthHeroConfig): {
11178
11256
  hook_id?: string | undefined;
11179
11257
  metadata?: Record<string, unknown> | undefined;
11180
11258
  } | {
11181
- trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
11259
+ trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
11182
11260
  template_id: "ensure-username" | "set-preferred-username" | "account-linking";
11183
11261
  enabled?: boolean | undefined;
11184
11262
  synchronous?: boolean | undefined;
@@ -11186,7 +11264,7 @@ declare function init(config: AuthHeroConfig): {
11186
11264
  hook_id?: string | undefined;
11187
11265
  metadata?: Record<string, unknown> | undefined;
11188
11266
  } | {
11189
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
11267
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
11190
11268
  code_id: string;
11191
11269
  enabled?: boolean | undefined;
11192
11270
  synchronous?: boolean | undefined;
@@ -11196,7 +11274,7 @@ declare function init(config: AuthHeroConfig): {
11196
11274
  };
11197
11275
  };
11198
11276
  output: {
11199
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11277
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11200
11278
  enabled: boolean;
11201
11279
  synchronous: boolean;
11202
11280
  created_at: string;
@@ -11208,7 +11286,7 @@ declare function init(config: AuthHeroConfig): {
11208
11286
  [x: string]: hono_utils_types.JSONValue;
11209
11287
  } | undefined;
11210
11288
  } | {
11211
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11289
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11212
11290
  enabled: boolean;
11213
11291
  synchronous: boolean;
11214
11292
  created_at: string;
@@ -11220,7 +11298,7 @@ declare function init(config: AuthHeroConfig): {
11220
11298
  [x: string]: hono_utils_types.JSONValue;
11221
11299
  } | undefined;
11222
11300
  } | {
11223
- trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
11301
+ trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
11224
11302
  enabled: boolean;
11225
11303
  synchronous: boolean;
11226
11304
  created_at: string;
@@ -11232,7 +11310,7 @@ declare function init(config: AuthHeroConfig): {
11232
11310
  [x: string]: hono_utils_types.JSONValue;
11233
11311
  } | undefined;
11234
11312
  } | {
11235
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
11313
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
11236
11314
  enabled: boolean;
11237
11315
  synchronous: boolean;
11238
11316
  created_at: string;
@@ -11278,7 +11356,7 @@ declare function init(config: AuthHeroConfig): {
11278
11356
  json: unknown;
11279
11357
  };
11280
11358
  output: {
11281
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11359
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11282
11360
  enabled: boolean;
11283
11361
  synchronous: boolean;
11284
11362
  created_at: string;
@@ -11290,7 +11368,7 @@ declare function init(config: AuthHeroConfig): {
11290
11368
  [x: string]: hono_utils_types.JSONValue;
11291
11369
  } | undefined;
11292
11370
  } | {
11293
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11371
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11294
11372
  enabled: boolean;
11295
11373
  synchronous: boolean;
11296
11374
  created_at: string;
@@ -11302,7 +11380,7 @@ declare function init(config: AuthHeroConfig): {
11302
11380
  [x: string]: hono_utils_types.JSONValue;
11303
11381
  } | undefined;
11304
11382
  } | {
11305
- trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
11383
+ trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
11306
11384
  enabled: boolean;
11307
11385
  synchronous: boolean;
11308
11386
  created_at: string;
@@ -11314,7 +11392,7 @@ declare function init(config: AuthHeroConfig): {
11314
11392
  [x: string]: hono_utils_types.JSONValue;
11315
11393
  } | undefined;
11316
11394
  } | {
11317
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
11395
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
11318
11396
  enabled: boolean;
11319
11397
  synchronous: boolean;
11320
11398
  created_at: string;
@@ -11356,7 +11434,7 @@ declare function init(config: AuthHeroConfig): {
11356
11434
  };
11357
11435
  };
11358
11436
  output: {
11359
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11437
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11360
11438
  enabled: boolean;
11361
11439
  synchronous: boolean;
11362
11440
  created_at: string;
@@ -11368,7 +11446,7 @@ declare function init(config: AuthHeroConfig): {
11368
11446
  [x: string]: hono_utils_types.JSONValue;
11369
11447
  } | undefined;
11370
11448
  } | {
11371
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11449
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
11372
11450
  enabled: boolean;
11373
11451
  synchronous: boolean;
11374
11452
  created_at: string;
@@ -11380,7 +11458,7 @@ declare function init(config: AuthHeroConfig): {
11380
11458
  [x: string]: hono_utils_types.JSONValue;
11381
11459
  } | undefined;
11382
11460
  } | {
11383
- trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
11461
+ trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
11384
11462
  enabled: boolean;
11385
11463
  synchronous: boolean;
11386
11464
  created_at: string;
@@ -11392,7 +11470,7 @@ declare function init(config: AuthHeroConfig): {
11392
11470
  [x: string]: hono_utils_types.JSONValue;
11393
11471
  } | undefined;
11394
11472
  } | {
11395
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
11473
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
11396
11474
  enabled: boolean;
11397
11475
  synchronous: boolean;
11398
11476
  created_at: string;
@@ -11510,9 +11588,9 @@ declare function init(config: AuthHeroConfig): {
11510
11588
  tenant_id: string;
11511
11589
  event_type: string;
11512
11590
  log_type: string;
11513
- category: "user_action" | "admin_action" | "system" | "api";
11591
+ category: "api" | "user_action" | "admin_action" | "system";
11514
11592
  actor: {
11515
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
11593
+ type: "user" | "system" | "client_credentials" | "admin" | "api_key";
11516
11594
  id?: string | undefined;
11517
11595
  email?: string | undefined;
11518
11596
  org_id?: string | undefined;
@@ -11992,7 +12070,7 @@ declare function init(config: AuthHeroConfig): {
11992
12070
  [x: string]: hono_utils_types.JSONValue;
11993
12071
  };
11994
12072
  id: string;
11995
- status: "active" | "suspended" | "paused";
12073
+ status: "suspended" | "active" | "paused";
11996
12074
  filters?: {
11997
12075
  type: string;
11998
12076
  name: string;
@@ -12024,7 +12102,7 @@ declare function init(config: AuthHeroConfig): {
12024
12102
  [x: string]: hono_utils_types.JSONValue;
12025
12103
  };
12026
12104
  id: string;
12027
- status: "active" | "suspended" | "paused";
12105
+ status: "suspended" | "active" | "paused";
12028
12106
  filters?: {
12029
12107
  type: string;
12030
12108
  name: string;
@@ -12049,7 +12127,7 @@ declare function init(config: AuthHeroConfig): {
12049
12127
  name: string;
12050
12128
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
12051
12129
  sink: Record<string, unknown>;
12052
- status?: "active" | "suspended" | "paused" | undefined;
12130
+ status?: "suspended" | "active" | "paused" | undefined;
12053
12131
  filters?: {
12054
12132
  type: string;
12055
12133
  name: string;
@@ -12064,7 +12142,7 @@ declare function init(config: AuthHeroConfig): {
12064
12142
  [x: string]: hono_utils_types.JSONValue;
12065
12143
  };
12066
12144
  id: string;
12067
- status: "active" | "suspended" | "paused";
12145
+ status: "suspended" | "active" | "paused";
12068
12146
  filters?: {
12069
12147
  type: string;
12070
12148
  name: string;
@@ -12099,7 +12177,7 @@ declare function init(config: AuthHeroConfig): {
12099
12177
  }[] | undefined;
12100
12178
  isPriority?: boolean | undefined;
12101
12179
  id?: string | undefined;
12102
- status?: "active" | "suspended" | "paused" | undefined;
12180
+ status?: "suspended" | "active" | "paused" | undefined;
12103
12181
  created_at?: string | undefined;
12104
12182
  updated_at?: string | undefined;
12105
12183
  };
@@ -12111,7 +12189,7 @@ declare function init(config: AuthHeroConfig): {
12111
12189
  [x: string]: hono_utils_types.JSONValue;
12112
12190
  };
12113
12191
  id: string;
12114
- status: "active" | "suspended" | "paused";
12192
+ status: "suspended" | "active" | "paused";
12115
12193
  filters?: {
12116
12194
  type: string;
12117
12195
  name: string;
@@ -12162,7 +12240,7 @@ declare function init(config: AuthHeroConfig): {
12162
12240
  };
12163
12241
  };
12164
12242
  output: {
12165
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12243
+ type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12166
12244
  date: string;
12167
12245
  isMobile: boolean;
12168
12246
  log_id: string;
@@ -12201,7 +12279,7 @@ declare function init(config: AuthHeroConfig): {
12201
12279
  limit: number;
12202
12280
  length: number;
12203
12281
  logs: {
12204
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12282
+ type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12205
12283
  date: string;
12206
12284
  isMobile: boolean;
12207
12285
  log_id: string;
@@ -12255,7 +12333,7 @@ declare function init(config: AuthHeroConfig): {
12255
12333
  };
12256
12334
  };
12257
12335
  output: {
12258
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12336
+ type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12259
12337
  date: string;
12260
12338
  isMobile: boolean;
12261
12339
  log_id: string;
@@ -12410,7 +12488,7 @@ declare function init(config: AuthHeroConfig): {
12410
12488
  audience?: string | undefined;
12411
12489
  client_id?: string | undefined;
12412
12490
  allow_any_organization?: string | undefined;
12413
- subject_type?: "user" | "client" | undefined;
12491
+ subject_type?: "client" | "user" | undefined;
12414
12492
  };
12415
12493
  } & {
12416
12494
  header: {
@@ -12425,7 +12503,7 @@ declare function init(config: AuthHeroConfig): {
12425
12503
  organization_usage?: "deny" | "allow" | "require" | undefined;
12426
12504
  allow_any_organization?: boolean | undefined;
12427
12505
  is_system?: boolean | undefined;
12428
- subject_type?: "user" | "client" | undefined;
12506
+ subject_type?: "client" | "user" | undefined;
12429
12507
  authorization_details_types?: string[] | undefined;
12430
12508
  created_at?: string | undefined;
12431
12509
  updated_at?: string | undefined;
@@ -12441,7 +12519,7 @@ declare function init(config: AuthHeroConfig): {
12441
12519
  organization_usage?: "deny" | "allow" | "require" | undefined;
12442
12520
  allow_any_organization?: boolean | undefined;
12443
12521
  is_system?: boolean | undefined;
12444
- subject_type?: "user" | "client" | undefined;
12522
+ subject_type?: "client" | "user" | undefined;
12445
12523
  authorization_details_types?: string[] | undefined;
12446
12524
  created_at?: string | undefined;
12447
12525
  updated_at?: string | undefined;
@@ -12472,7 +12550,7 @@ declare function init(config: AuthHeroConfig): {
12472
12550
  organization_usage?: "deny" | "allow" | "require" | undefined;
12473
12551
  allow_any_organization?: boolean | undefined;
12474
12552
  is_system?: boolean | undefined;
12475
- subject_type?: "user" | "client" | undefined;
12553
+ subject_type?: "client" | "user" | undefined;
12476
12554
  authorization_details_types?: string[] | undefined;
12477
12555
  created_at?: string | undefined;
12478
12556
  updated_at?: string | undefined;
@@ -12517,7 +12595,7 @@ declare function init(config: AuthHeroConfig): {
12517
12595
  organization_usage?: "deny" | "allow" | "require" | undefined;
12518
12596
  allow_any_organization?: boolean | undefined;
12519
12597
  is_system?: boolean | undefined;
12520
- subject_type?: "user" | "client" | undefined;
12598
+ subject_type?: "client" | "user" | undefined;
12521
12599
  authorization_details_types?: string[] | undefined;
12522
12600
  };
12523
12601
  };
@@ -12529,7 +12607,7 @@ declare function init(config: AuthHeroConfig): {
12529
12607
  organization_usage?: "deny" | "allow" | "require" | undefined;
12530
12608
  allow_any_organization?: boolean | undefined;
12531
12609
  is_system?: boolean | undefined;
12532
- subject_type?: "user" | "client" | undefined;
12610
+ subject_type?: "client" | "user" | undefined;
12533
12611
  authorization_details_types?: string[] | undefined;
12534
12612
  created_at?: string | undefined;
12535
12613
  updated_at?: string | undefined;
@@ -12553,7 +12631,7 @@ declare function init(config: AuthHeroConfig): {
12553
12631
  organization_usage?: "deny" | "allow" | "require" | undefined;
12554
12632
  allow_any_organization?: boolean | undefined;
12555
12633
  is_system?: boolean | undefined;
12556
- subject_type?: "user" | "client" | undefined;
12634
+ subject_type?: "client" | "user" | undefined;
12557
12635
  authorization_details_types?: string[] | undefined;
12558
12636
  };
12559
12637
  };
@@ -12565,7 +12643,7 @@ declare function init(config: AuthHeroConfig): {
12565
12643
  organization_usage?: "deny" | "allow" | "require" | undefined;
12566
12644
  allow_any_organization?: boolean | undefined;
12567
12645
  is_system?: boolean | undefined;
12568
- subject_type?: "user" | "client" | undefined;
12646
+ subject_type?: "client" | "user" | undefined;
12569
12647
  authorization_details_types?: string[] | undefined;
12570
12648
  created_at?: string | undefined;
12571
12649
  updated_at?: string | undefined;
@@ -13331,7 +13409,7 @@ declare function init(config: AuthHeroConfig): {
13331
13409
  active?: boolean | undefined;
13332
13410
  } | undefined;
13333
13411
  signup?: {
13334
- status?: "required" | "optional" | "disabled" | undefined;
13412
+ status?: "optional" | "required" | "disabled" | undefined;
13335
13413
  verification?: {
13336
13414
  active?: boolean | undefined;
13337
13415
  } | undefined;
@@ -13348,7 +13426,7 @@ declare function init(config: AuthHeroConfig): {
13348
13426
  active?: boolean | undefined;
13349
13427
  } | undefined;
13350
13428
  signup?: {
13351
- status?: "required" | "optional" | "disabled" | undefined;
13429
+ status?: "optional" | "required" | "disabled" | undefined;
13352
13430
  } | undefined;
13353
13431
  validation?: {
13354
13432
  max_length?: number | undefined;
@@ -13365,7 +13443,7 @@ declare function init(config: AuthHeroConfig): {
13365
13443
  active?: boolean | undefined;
13366
13444
  } | undefined;
13367
13445
  signup?: {
13368
- status?: "required" | "optional" | "disabled" | undefined;
13446
+ status?: "optional" | "required" | "disabled" | undefined;
13369
13447
  } | undefined;
13370
13448
  } | undefined;
13371
13449
  } | undefined;
@@ -13485,7 +13563,7 @@ declare function init(config: AuthHeroConfig): {
13485
13563
  active?: boolean | undefined;
13486
13564
  } | undefined;
13487
13565
  signup?: {
13488
- status?: "required" | "optional" | "disabled" | undefined;
13566
+ status?: "optional" | "required" | "disabled" | undefined;
13489
13567
  verification?: {
13490
13568
  active?: boolean | undefined;
13491
13569
  } | undefined;
@@ -13502,7 +13580,7 @@ declare function init(config: AuthHeroConfig): {
13502
13580
  active?: boolean | undefined;
13503
13581
  } | undefined;
13504
13582
  signup?: {
13505
- status?: "required" | "optional" | "disabled" | undefined;
13583
+ status?: "optional" | "required" | "disabled" | undefined;
13506
13584
  } | undefined;
13507
13585
  validation?: {
13508
13586
  max_length?: number | undefined;
@@ -13519,7 +13597,7 @@ declare function init(config: AuthHeroConfig): {
13519
13597
  active?: boolean | undefined;
13520
13598
  } | undefined;
13521
13599
  signup?: {
13522
- status?: "required" | "optional" | "disabled" | undefined;
13600
+ status?: "optional" | "required" | "disabled" | undefined;
13523
13601
  } | undefined;
13524
13602
  } | undefined;
13525
13603
  } | undefined;
@@ -14473,7 +14551,7 @@ declare function init(config: AuthHeroConfig): {
14473
14551
  };
14474
14552
  };
14475
14553
  output: {
14476
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14554
+ type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14477
14555
  date: string;
14478
14556
  isMobile: boolean;
14479
14557
  log_id: string;
@@ -14512,7 +14590,7 @@ declare function init(config: AuthHeroConfig): {
14512
14590
  limit: number;
14513
14591
  length: number;
14514
14592
  logs: {
14515
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14593
+ type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14516
14594
  date: string;
14517
14595
  isMobile: boolean;
14518
14596
  log_id: string;
@@ -15354,7 +15432,7 @@ declare function init(config: AuthHeroConfig): {
15354
15432
  type: "auth0_managed_certs" | "self_managed_certs";
15355
15433
  custom_domain_id: string;
15356
15434
  primary: boolean;
15357
- status: "disabled" | "pending" | "ready" | "pending_verification";
15435
+ status: "pending" | "ready" | "disabled" | "pending_verification";
15358
15436
  verification_method?: "txt" | undefined;
15359
15437
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15360
15438
  domain_metadata?: {
@@ -15395,7 +15473,7 @@ declare function init(config: AuthHeroConfig): {
15395
15473
  type: "auth0_managed_certs" | "self_managed_certs";
15396
15474
  custom_domain_id: string;
15397
15475
  primary: boolean;
15398
- status: "disabled" | "pending" | "ready" | "pending_verification";
15476
+ status: "pending" | "ready" | "disabled" | "pending_verification";
15399
15477
  verification_method?: "txt" | undefined;
15400
15478
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15401
15479
  domain_metadata?: {
@@ -15459,7 +15537,7 @@ declare function init(config: AuthHeroConfig): {
15459
15537
  type: "auth0_managed_certs" | "self_managed_certs";
15460
15538
  custom_domain_id: string;
15461
15539
  primary: boolean;
15462
- status: "disabled" | "pending" | "ready" | "pending_verification";
15540
+ status: "pending" | "ready" | "disabled" | "pending_verification";
15463
15541
  verification_method?: "txt" | undefined;
15464
15542
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15465
15543
  domain_metadata?: {
@@ -15506,7 +15584,7 @@ declare function init(config: AuthHeroConfig): {
15506
15584
  type: "auth0_managed_certs" | "self_managed_certs";
15507
15585
  custom_domain_id: string;
15508
15586
  primary: boolean;
15509
- status: "disabled" | "pending" | "ready" | "pending_verification";
15587
+ status: "pending" | "ready" | "disabled" | "pending_verification";
15510
15588
  verification_method?: "txt" | undefined;
15511
15589
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15512
15590
  domain_metadata?: {
@@ -15552,7 +15630,7 @@ declare function init(config: AuthHeroConfig): {
15552
15630
  type: "auth0_managed_certs" | "self_managed_certs";
15553
15631
  custom_domain_id: string;
15554
15632
  primary: boolean;
15555
- status: "disabled" | "pending" | "ready" | "pending_verification";
15633
+ status: "pending" | "ready" | "disabled" | "pending_verification";
15556
15634
  verification_method?: "txt" | undefined;
15557
15635
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15558
15636
  domain_metadata?: {
@@ -15593,7 +15671,7 @@ declare function init(config: AuthHeroConfig): {
15593
15671
  type: "auth0_managed_certs" | "self_managed_certs";
15594
15672
  custom_domain_id: string;
15595
15673
  primary: boolean;
15596
- status: "disabled" | "pending" | "ready" | "pending_verification";
15674
+ status: "pending" | "ready" | "disabled" | "pending_verification";
15597
15675
  verification_method?: "txt" | undefined;
15598
15676
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15599
15677
  domain_metadata?: {
@@ -16023,7 +16101,7 @@ declare function init(config: AuthHeroConfig): {
16023
16101
  } & {
16024
16102
  json: {
16025
16103
  body?: string | undefined;
16026
- screen?: "password" | "identifier" | "signup" | "login" | undefined;
16104
+ screen?: "password" | "login" | "identifier" | "signup" | undefined;
16027
16105
  branding?: {
16028
16106
  colors?: {
16029
16107
  primary: string;
@@ -16192,7 +16270,7 @@ declare function init(config: AuthHeroConfig): {
16192
16270
  json: {
16193
16271
  bindings: {
16194
16272
  ref: {
16195
- type?: "action_id" | "action_name" | undefined;
16273
+ type?: "action_name" | "action_id" | undefined;
16196
16274
  value?: string | undefined;
16197
16275
  id?: string | undefined;
16198
16276
  name?: string | undefined;
@@ -16267,7 +16345,7 @@ declare function init(config: AuthHeroConfig): {
16267
16345
  output: {
16268
16346
  id: string;
16269
16347
  trigger_id: string;
16270
- status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
16348
+ status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
16271
16349
  results: {
16272
16350
  action_name: string;
16273
16351
  error: {
@@ -16314,7 +16392,7 @@ declare function init(config: AuthHeroConfig): {
16314
16392
  logs: {
16315
16393
  action_name: string;
16316
16394
  lines: {
16317
- level: "error" | "log" | "debug" | "info" | "warn";
16395
+ level: "error" | "log" | "info" | "warn" | "debug";
16318
16396
  message: string;
16319
16397
  }[];
16320
16398
  }[];
@@ -16981,7 +17059,7 @@ declare function init(config: AuthHeroConfig): {
16981
17059
  args: hono_utils_types.JSONValue[];
16982
17060
  }[];
16983
17061
  logs: {
16984
- level: "error" | "log" | "debug" | "info" | "warn";
17062
+ level: "error" | "log" | "info" | "warn" | "debug";
16985
17063
  message: string;
16986
17064
  }[];
16987
17065
  error?: string | undefined;
@@ -17728,19 +17806,19 @@ declare function init(config: AuthHeroConfig): {
17728
17806
  send: "code" | "link";
17729
17807
  authParams: {
17730
17808
  username?: string | undefined;
17731
- audience?: string | undefined;
17732
17809
  scope?: string | undefined;
17810
+ audience?: string | undefined;
17811
+ organization?: string | undefined;
17733
17812
  state?: string | undefined;
17734
17813
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17735
17814
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17736
- act_as?: string | undefined;
17815
+ prompt?: string | undefined;
17816
+ ui_locales?: string | undefined;
17737
17817
  redirect_uri?: string | undefined;
17738
- organization?: string | undefined;
17818
+ act_as?: string | undefined;
17739
17819
  nonce?: string | undefined;
17740
- prompt?: string | undefined;
17741
17820
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17742
17821
  code_challenge?: string | undefined;
17743
- ui_locales?: string | undefined;
17744
17822
  max_age?: number | undefined;
17745
17823
  acr_values?: string | undefined;
17746
17824
  claims?: {
@@ -17764,19 +17842,19 @@ declare function init(config: AuthHeroConfig): {
17764
17842
  send: "code" | "link";
17765
17843
  authParams: {
17766
17844
  username?: string | undefined;
17767
- audience?: string | undefined;
17768
17845
  scope?: string | undefined;
17846
+ audience?: string | undefined;
17847
+ organization?: string | undefined;
17769
17848
  state?: string | undefined;
17770
17849
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17771
17850
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17772
- act_as?: string | undefined;
17851
+ prompt?: string | undefined;
17852
+ ui_locales?: string | undefined;
17773
17853
  redirect_uri?: string | undefined;
17774
- organization?: string | undefined;
17854
+ act_as?: string | undefined;
17775
17855
  nonce?: string | undefined;
17776
- prompt?: string | undefined;
17777
17856
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17778
17857
  code_challenge?: string | undefined;
17779
- ui_locales?: string | undefined;
17780
17858
  max_age?: number | undefined;
17781
17859
  acr_values?: string | undefined;
17782
17860
  claims?: {
@@ -17907,14 +17985,14 @@ declare function init(config: AuthHeroConfig): {
17907
17985
  input: {
17908
17986
  form: {
17909
17987
  token: string;
17910
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17988
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17911
17989
  client_id?: string | undefined;
17912
17990
  client_secret?: string | undefined;
17913
17991
  };
17914
17992
  } & {
17915
17993
  json: {
17916
17994
  token: string;
17917
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17995
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17918
17996
  client_id?: string | undefined;
17919
17997
  client_secret?: string | undefined;
17920
17998
  };
@@ -17926,14 +18004,14 @@ declare function init(config: AuthHeroConfig): {
17926
18004
  input: {
17927
18005
  form: {
17928
18006
  token: string;
17929
- token_type_hint?: "access_token" | "refresh_token" | undefined;
18007
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17930
18008
  client_id?: string | undefined;
17931
18009
  client_secret?: string | undefined;
17932
18010
  };
17933
18011
  } & {
17934
18012
  json: {
17935
18013
  token: string;
17936
- token_type_hint?: "access_token" | "refresh_token" | undefined;
18014
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17937
18015
  client_id?: string | undefined;
17938
18016
  client_secret?: string | undefined;
17939
18017
  };
@@ -17948,14 +18026,14 @@ declare function init(config: AuthHeroConfig): {
17948
18026
  input: {
17949
18027
  form: {
17950
18028
  token: string;
17951
- token_type_hint?: "access_token" | "refresh_token" | undefined;
18029
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17952
18030
  client_id?: string | undefined;
17953
18031
  client_secret?: string | undefined;
17954
18032
  };
17955
18033
  } & {
17956
18034
  json: {
17957
18035
  token: string;
17958
- token_type_hint?: "access_token" | "refresh_token" | undefined;
18036
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17959
18037
  client_id?: string | undefined;
17960
18038
  client_secret?: string | undefined;
17961
18039
  };
@@ -19303,7 +19381,7 @@ declare function init(config: AuthHeroConfig): {
19303
19381
  } & {
19304
19382
  form: {
19305
19383
  username: string;
19306
- login_selection?: "password" | "code" | undefined;
19384
+ login_selection?: "code" | "password" | undefined;
19307
19385
  };
19308
19386
  };
19309
19387
  output: {};
@@ -19317,7 +19395,7 @@ declare function init(config: AuthHeroConfig): {
19317
19395
  } & {
19318
19396
  form: {
19319
19397
  username: string;
19320
- login_selection?: "password" | "code" | undefined;
19398
+ login_selection?: "code" | "password" | undefined;
19321
19399
  };
19322
19400
  };
19323
19401
  output: {};
@@ -19682,7 +19760,7 @@ declare function init(config: AuthHeroConfig): {
19682
19760
  $get: {
19683
19761
  input: {
19684
19762
  param: {
19685
- 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";
19763
+ screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19686
19764
  };
19687
19765
  } & {
19688
19766
  query: {
@@ -19698,7 +19776,7 @@ declare function init(config: AuthHeroConfig): {
19698
19776
  } | {
19699
19777
  input: {
19700
19778
  param: {
19701
- 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";
19779
+ screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19702
19780
  };
19703
19781
  } & {
19704
19782
  query: {
@@ -19714,7 +19792,7 @@ declare function init(config: AuthHeroConfig): {
19714
19792
  } | {
19715
19793
  input: {
19716
19794
  param: {
19717
- 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";
19795
+ screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19718
19796
  };
19719
19797
  } & {
19720
19798
  query: {
@@ -19734,7 +19812,7 @@ declare function init(config: AuthHeroConfig): {
19734
19812
  $post: {
19735
19813
  input: {
19736
19814
  param: {
19737
- 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";
19815
+ screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19738
19816
  };
19739
19817
  } & {
19740
19818
  query: {
@@ -19752,7 +19830,7 @@ declare function init(config: AuthHeroConfig): {
19752
19830
  } | {
19753
19831
  input: {
19754
19832
  param: {
19755
- 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";
19833
+ screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19756
19834
  };
19757
19835
  } & {
19758
19836
  query: {
@@ -19850,5 +19928,5 @@ declare function init(config: AuthHeroConfig): {
19850
19928
  createX509Certificate: typeof createX509Certificate;
19851
19929
  };
19852
19930
 
19853
- 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, backfillProxyHostsToKv, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, isInteractiveClient, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, provisionDefaultClients, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wrapProxyAdaptersWithKvPublish };
19931
+ export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, CodeHookDestination, 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, backfillProxyHostsToKv, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, isInteractiveClient, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, provisionDefaultClients, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wrapProxyAdaptersWithKvPublish };
19854
19932
  export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementApiScope, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ProvisionDefaultClientsOptions, ProvisionDefaultClientsResult, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantOperationExecutorBinding, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WrappedProxyAdapters };