authhero 7.2.2 → 8.0.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 (31) hide show
  1. package/dist/authhero.cjs +105 -105
  2. package/dist/authhero.d.ts +156 -202
  3. package/dist/authhero.mjs +8867 -8551
  4. package/dist/stats.html +1 -1
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  7. package/dist/types/helpers/bundle-write-purge.d.ts +16 -0
  8. package/dist/types/helpers/client-bundle.d.ts +51 -0
  9. package/dist/types/helpers/request-scoped-dedup.d.ts +8 -0
  10. package/dist/types/helpers/with-client-bundle.d.ts +31 -0
  11. package/dist/types/index.d.ts +153 -155
  12. package/dist/types/routes/auth-api/index.d.ts +9 -9
  13. package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
  14. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  15. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  16. package/dist/types/routes/management-api/clients.d.ts +7 -7
  17. package/dist/types/routes/management-api/connections.d.ts +1 -1
  18. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  19. package/dist/types/routes/management-api/forms.d.ts +119 -119
  20. package/dist/types/routes/management-api/index.d.ts +138 -138
  21. package/dist/types/routes/management-api/logs.d.ts +3 -3
  22. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  23. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  24. package/dist/types/routes/management-api/users.d.ts +2 -2
  25. package/dist/types/routes/universal-login/common.d.ts +2 -2
  26. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  27. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  28. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  29. package/dist/types/types/AuthHeroConfig.d.ts +0 -12
  30. package/dist/types/utils/jwks.d.ts +2 -2
  31. package/package.json +5 -4
@@ -1,7 +1,7 @@
1
1
  import * as hono_utils_http_status from 'hono/utils/http-status';
2
2
  import * as hono_utils_types from 'hono/utils/types';
3
3
  import * as _authhero_adapter_interfaces from '@authhero/adapter-interfaces';
4
- import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, CustomDomain, ProxyRoute, Tenant, TenantsDataAdapter, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, CreateTenantParams, Hook, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, LogsDataAdapter, LogInsert, UserDataAdapter, CustomDomainsAdapter, ProxyRoutesAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
4
+ import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, CustomDomain, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, LogsDataAdapter, LogInsert, UserDataAdapter, CustomDomainsAdapter, ProxyRoutesAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
5
5
  export * from '@authhero/adapter-interfaces';
6
6
  import * as hono_types from 'hono/types';
7
7
  import { z, OpenAPIHono } from '@hono/zod-openapi';
@@ -883,41 +883,6 @@ declare function createAuthMiddleware(app: OpenAPIHono<{
883
883
  Variables: any;
884
884
  }>, next: Next) => Promise<void>;
885
885
 
886
- interface TenantProvisionerContext {
887
- tenants: TenantsDataAdapter;
888
- }
889
- /**
890
- * Drives a tenant from `provisioning_state: "pending"` to `"ready"` or
891
- * `"failed"`. Owns whatever side effects are required to make the tenant
892
- * actually serve traffic — creating a D1, uploading a worker to a dispatch
893
- * namespace, wiring secrets, etc. — and writes the resulting state back via
894
- * `ctx.tenants.update(...)`.
895
- *
896
- * Contract:
897
- * - Implementations MUST be idempotent. The same tenant may be passed in
898
- * twice if a previous run crashed mid-flight, the API is retried, or an
899
- * operator manually re-triggers provisioning.
900
- * - `provision()` MUST resolve (not reject) even on failure. Errors should
901
- * be captured into `provisioning_error` and the state set to `"failed"`
902
- * so the admin UI can render a useful message.
903
- * - `provision()` should be safe to schedule via `ctx.executionCtx.waitUntil`
904
- * on Cloudflare Workers — it must not depend on the originating request
905
- * surviving.
906
- */
907
- interface TenantProvisioner {
908
- provision(tenant: Tenant, ctx: TenantProvisionerContext): Promise<void>;
909
- }
910
-
911
- /**
912
- * Default provisioner. Flips `provisioning_state` to `"ready"` and clears any
913
- * prior error, doing nothing else. Correct for `deployment_type: "shared"`
914
- * tenants (the historical default) and useful as a stand-in until the
915
- * Cloudflare WFP provisioner is wired in.
916
- */
917
- declare class NoopTenantProvisioner implements TenantProvisioner {
918
- provision(tenant: Tenant, ctx: TenantProvisionerContext): Promise<void>;
919
- }
920
-
921
886
  /**
922
887
  * Parameters passed to a custom webhook invoker function.
923
888
  */
@@ -1240,17 +1205,6 @@ interface AuthHeroConfig {
1240
1205
  /** Per-request timeout for the sync POST (default: 10_000ms). */
1241
1206
  timeoutMs?: number;
1242
1207
  };
1243
- /**
1244
- * Optional tenant provisioner. Drives a tenant from
1245
- * `provisioning_state: "pending"` to `"ready"` or `"failed"` whenever a
1246
- * tenant is created or re-provisioned via the management API. For shared
1247
- * tenants this is effectively a no-op; for `wfp` tenants the provisioner
1248
- * uploads the worker to a Cloudflare dispatch namespace, creates any
1249
- * per-tenant D1, and wires bindings. When omitted, `NoopTenantProvisioner`
1250
- * is used — adequate for single-deployment installs where every tenant is
1251
- * `shared`.
1252
- */
1253
- provisioner?: TenantProvisioner;
1254
1208
  /**
1255
1209
  * Optional powered-by logo to display at the bottom left of the login widget.
1256
1210
  * This is only configurable in code, not stored in the database.
@@ -3843,11 +3797,11 @@ declare function init(config: AuthHeroConfig): {
3843
3797
  invitee: {
3844
3798
  email?: string | undefined;
3845
3799
  };
3846
- roles?: string[] | undefined;
3847
3800
  id?: string | undefined;
3848
3801
  app_metadata?: Record<string, any> | undefined;
3849
3802
  user_metadata?: Record<string, any> | undefined;
3850
3803
  connection_id?: string | undefined;
3804
+ roles?: string[] | undefined;
3851
3805
  ttl_sec?: number | undefined;
3852
3806
  send_invitation_email?: boolean | undefined;
3853
3807
  };
@@ -5274,7 +5228,7 @@ declare function init(config: AuthHeroConfig): {
5274
5228
  hint?: string | undefined;
5275
5229
  messages?: {
5276
5230
  text: string;
5277
- type: "success" | "error" | "info" | "warning";
5231
+ type: "error" | "success" | "info" | "warning";
5278
5232
  id?: number | undefined;
5279
5233
  }[] | undefined;
5280
5234
  required?: boolean | undefined;
@@ -5292,7 +5246,7 @@ declare function init(config: AuthHeroConfig): {
5292
5246
  hint?: string | undefined;
5293
5247
  messages?: {
5294
5248
  text: string;
5295
- type: "success" | "error" | "info" | "warning";
5249
+ type: "error" | "success" | "info" | "warning";
5296
5250
  id?: number | undefined;
5297
5251
  }[] | undefined;
5298
5252
  required?: boolean | undefined;
@@ -5316,7 +5270,7 @@ declare function init(config: AuthHeroConfig): {
5316
5270
  hint?: string | undefined;
5317
5271
  messages?: {
5318
5272
  text: string;
5319
- type: "success" | "error" | "info" | "warning";
5273
+ type: "error" | "success" | "info" | "warning";
5320
5274
  id?: number | undefined;
5321
5275
  }[] | undefined;
5322
5276
  required?: boolean | undefined;
@@ -5340,7 +5294,7 @@ declare function init(config: AuthHeroConfig): {
5340
5294
  hint?: string | undefined;
5341
5295
  messages?: {
5342
5296
  text: string;
5343
- type: "success" | "error" | "info" | "warning";
5297
+ type: "error" | "success" | "info" | "warning";
5344
5298
  id?: number | undefined;
5345
5299
  }[] | undefined;
5346
5300
  required?: boolean | undefined;
@@ -5369,7 +5323,7 @@ declare function init(config: AuthHeroConfig): {
5369
5323
  hint?: string | undefined;
5370
5324
  messages?: {
5371
5325
  text: string;
5372
- type: "success" | "error" | "info" | "warning";
5326
+ type: "error" | "success" | "info" | "warning";
5373
5327
  id?: number | undefined;
5374
5328
  }[] | undefined;
5375
5329
  required?: boolean | undefined;
@@ -5384,7 +5338,7 @@ declare function init(config: AuthHeroConfig): {
5384
5338
  hint?: string | undefined;
5385
5339
  messages?: {
5386
5340
  text: string;
5387
- type: "success" | "error" | "info" | "warning";
5341
+ type: "error" | "success" | "info" | "warning";
5388
5342
  id?: number | undefined;
5389
5343
  }[] | undefined;
5390
5344
  required?: boolean | undefined;
@@ -5405,7 +5359,7 @@ declare function init(config: AuthHeroConfig): {
5405
5359
  hint?: string | undefined;
5406
5360
  messages?: {
5407
5361
  text: string;
5408
- type: "success" | "error" | "info" | "warning";
5362
+ type: "error" | "success" | "info" | "warning";
5409
5363
  id?: number | undefined;
5410
5364
  }[] | undefined;
5411
5365
  required?: boolean | undefined;
@@ -5430,7 +5384,7 @@ declare function init(config: AuthHeroConfig): {
5430
5384
  hint?: string | undefined;
5431
5385
  messages?: {
5432
5386
  text: string;
5433
- type: "success" | "error" | "info" | "warning";
5387
+ type: "error" | "success" | "info" | "warning";
5434
5388
  id?: number | undefined;
5435
5389
  }[] | undefined;
5436
5390
  required?: boolean | undefined;
@@ -5449,7 +5403,7 @@ declare function init(config: AuthHeroConfig): {
5449
5403
  hint?: string | undefined;
5450
5404
  messages?: {
5451
5405
  text: string;
5452
- type: "success" | "error" | "info" | "warning";
5406
+ type: "error" | "success" | "info" | "warning";
5453
5407
  id?: number | undefined;
5454
5408
  }[] | undefined;
5455
5409
  required?: boolean | undefined;
@@ -5469,7 +5423,7 @@ declare function init(config: AuthHeroConfig): {
5469
5423
  hint?: string | undefined;
5470
5424
  messages?: {
5471
5425
  text: string;
5472
- type: "success" | "error" | "info" | "warning";
5426
+ type: "error" | "success" | "info" | "warning";
5473
5427
  id?: number | undefined;
5474
5428
  }[] | undefined;
5475
5429
  required?: boolean | undefined;
@@ -5488,7 +5442,7 @@ declare function init(config: AuthHeroConfig): {
5488
5442
  hint?: string | undefined;
5489
5443
  messages?: {
5490
5444
  text: string;
5491
- type: "success" | "error" | "info" | "warning";
5445
+ type: "error" | "success" | "info" | "warning";
5492
5446
  id?: number | undefined;
5493
5447
  }[] | undefined;
5494
5448
  required?: boolean | undefined;
@@ -5510,7 +5464,7 @@ declare function init(config: AuthHeroConfig): {
5510
5464
  hint?: string | undefined;
5511
5465
  messages?: {
5512
5466
  text: string;
5513
- type: "success" | "error" | "info" | "warning";
5467
+ type: "error" | "success" | "info" | "warning";
5514
5468
  id?: number | undefined;
5515
5469
  }[] | undefined;
5516
5470
  required?: boolean | undefined;
@@ -5532,7 +5486,7 @@ declare function init(config: AuthHeroConfig): {
5532
5486
  hint?: string | undefined;
5533
5487
  messages?: {
5534
5488
  text: string;
5535
- type: "success" | "error" | "info" | "warning";
5489
+ type: "error" | "success" | "info" | "warning";
5536
5490
  id?: number | undefined;
5537
5491
  }[] | undefined;
5538
5492
  required?: boolean | undefined;
@@ -5551,7 +5505,7 @@ declare function init(config: AuthHeroConfig): {
5551
5505
  hint?: string | undefined;
5552
5506
  messages?: {
5553
5507
  text: string;
5554
- type: "success" | "error" | "info" | "warning";
5508
+ type: "error" | "success" | "info" | "warning";
5555
5509
  id?: number | undefined;
5556
5510
  }[] | undefined;
5557
5511
  required?: boolean | undefined;
@@ -5576,7 +5530,7 @@ declare function init(config: AuthHeroConfig): {
5576
5530
  hint?: string | undefined;
5577
5531
  messages?: {
5578
5532
  text: string;
5579
- type: "success" | "error" | "info" | "warning";
5533
+ type: "error" | "success" | "info" | "warning";
5580
5534
  id?: number | undefined;
5581
5535
  }[] | undefined;
5582
5536
  required?: boolean | undefined;
@@ -5597,7 +5551,7 @@ declare function init(config: AuthHeroConfig): {
5597
5551
  hint?: string | undefined;
5598
5552
  messages?: {
5599
5553
  text: string;
5600
- type: "success" | "error" | "info" | "warning";
5554
+ type: "error" | "success" | "info" | "warning";
5601
5555
  id?: number | undefined;
5602
5556
  }[] | undefined;
5603
5557
  required?: boolean | undefined;
@@ -5618,7 +5572,7 @@ declare function init(config: AuthHeroConfig): {
5618
5572
  hint?: string | undefined;
5619
5573
  messages?: {
5620
5574
  text: string;
5621
- type: "success" | "error" | "info" | "warning";
5575
+ type: "error" | "success" | "info" | "warning";
5622
5576
  id?: number | undefined;
5623
5577
  }[] | undefined;
5624
5578
  required?: boolean | undefined;
@@ -5851,7 +5805,7 @@ declare function init(config: AuthHeroConfig): {
5851
5805
  hint?: string | undefined;
5852
5806
  messages?: {
5853
5807
  text: string;
5854
- type: "success" | "error" | "info" | "warning";
5808
+ type: "error" | "success" | "info" | "warning";
5855
5809
  id?: number | undefined;
5856
5810
  }[] | undefined;
5857
5811
  required?: boolean | undefined;
@@ -5869,7 +5823,7 @@ declare function init(config: AuthHeroConfig): {
5869
5823
  hint?: string | undefined;
5870
5824
  messages?: {
5871
5825
  text: string;
5872
- type: "success" | "error" | "info" | "warning";
5826
+ type: "error" | "success" | "info" | "warning";
5873
5827
  id?: number | undefined;
5874
5828
  }[] | undefined;
5875
5829
  required?: boolean | undefined;
@@ -5893,7 +5847,7 @@ declare function init(config: AuthHeroConfig): {
5893
5847
  hint?: string | undefined;
5894
5848
  messages?: {
5895
5849
  text: string;
5896
- type: "success" | "error" | "info" | "warning";
5850
+ type: "error" | "success" | "info" | "warning";
5897
5851
  id?: number | undefined;
5898
5852
  }[] | undefined;
5899
5853
  required?: boolean | undefined;
@@ -5917,7 +5871,7 @@ declare function init(config: AuthHeroConfig): {
5917
5871
  hint?: string | undefined;
5918
5872
  messages?: {
5919
5873
  text: string;
5920
- type: "success" | "error" | "info" | "warning";
5874
+ type: "error" | "success" | "info" | "warning";
5921
5875
  id?: number | undefined;
5922
5876
  }[] | undefined;
5923
5877
  required?: boolean | undefined;
@@ -5946,7 +5900,7 @@ declare function init(config: AuthHeroConfig): {
5946
5900
  hint?: string | undefined;
5947
5901
  messages?: {
5948
5902
  text: string;
5949
- type: "success" | "error" | "info" | "warning";
5903
+ type: "error" | "success" | "info" | "warning";
5950
5904
  id?: number | undefined;
5951
5905
  }[] | undefined;
5952
5906
  required?: boolean | undefined;
@@ -5961,7 +5915,7 @@ declare function init(config: AuthHeroConfig): {
5961
5915
  hint?: string | undefined;
5962
5916
  messages?: {
5963
5917
  text: string;
5964
- type: "success" | "error" | "info" | "warning";
5918
+ type: "error" | "success" | "info" | "warning";
5965
5919
  id?: number | undefined;
5966
5920
  }[] | undefined;
5967
5921
  required?: boolean | undefined;
@@ -5982,7 +5936,7 @@ declare function init(config: AuthHeroConfig): {
5982
5936
  hint?: string | undefined;
5983
5937
  messages?: {
5984
5938
  text: string;
5985
- type: "success" | "error" | "info" | "warning";
5939
+ type: "error" | "success" | "info" | "warning";
5986
5940
  id?: number | undefined;
5987
5941
  }[] | undefined;
5988
5942
  required?: boolean | undefined;
@@ -6007,7 +5961,7 @@ declare function init(config: AuthHeroConfig): {
6007
5961
  hint?: string | undefined;
6008
5962
  messages?: {
6009
5963
  text: string;
6010
- type: "success" | "error" | "info" | "warning";
5964
+ type: "error" | "success" | "info" | "warning";
6011
5965
  id?: number | undefined;
6012
5966
  }[] | undefined;
6013
5967
  required?: boolean | undefined;
@@ -6026,7 +5980,7 @@ declare function init(config: AuthHeroConfig): {
6026
5980
  hint?: string | undefined;
6027
5981
  messages?: {
6028
5982
  text: string;
6029
- type: "success" | "error" | "info" | "warning";
5983
+ type: "error" | "success" | "info" | "warning";
6030
5984
  id?: number | undefined;
6031
5985
  }[] | undefined;
6032
5986
  required?: boolean | undefined;
@@ -6046,7 +6000,7 @@ declare function init(config: AuthHeroConfig): {
6046
6000
  hint?: string | undefined;
6047
6001
  messages?: {
6048
6002
  text: string;
6049
- type: "success" | "error" | "info" | "warning";
6003
+ type: "error" | "success" | "info" | "warning";
6050
6004
  id?: number | undefined;
6051
6005
  }[] | undefined;
6052
6006
  required?: boolean | undefined;
@@ -6065,7 +6019,7 @@ declare function init(config: AuthHeroConfig): {
6065
6019
  hint?: string | undefined;
6066
6020
  messages?: {
6067
6021
  text: string;
6068
- type: "success" | "error" | "info" | "warning";
6022
+ type: "error" | "success" | "info" | "warning";
6069
6023
  id?: number | undefined;
6070
6024
  }[] | undefined;
6071
6025
  required?: boolean | undefined;
@@ -6087,7 +6041,7 @@ declare function init(config: AuthHeroConfig): {
6087
6041
  hint?: string | undefined;
6088
6042
  messages?: {
6089
6043
  text: string;
6090
- type: "success" | "error" | "info" | "warning";
6044
+ type: "error" | "success" | "info" | "warning";
6091
6045
  id?: number | undefined;
6092
6046
  }[] | undefined;
6093
6047
  required?: boolean | undefined;
@@ -6109,7 +6063,7 @@ declare function init(config: AuthHeroConfig): {
6109
6063
  hint?: string | undefined;
6110
6064
  messages?: {
6111
6065
  text: string;
6112
- type: "success" | "error" | "info" | "warning";
6066
+ type: "error" | "success" | "info" | "warning";
6113
6067
  id?: number | undefined;
6114
6068
  }[] | undefined;
6115
6069
  required?: boolean | undefined;
@@ -6128,7 +6082,7 @@ declare function init(config: AuthHeroConfig): {
6128
6082
  hint?: string | undefined;
6129
6083
  messages?: {
6130
6084
  text: string;
6131
- type: "success" | "error" | "info" | "warning";
6085
+ type: "error" | "success" | "info" | "warning";
6132
6086
  id?: number | undefined;
6133
6087
  }[] | undefined;
6134
6088
  required?: boolean | undefined;
@@ -6153,7 +6107,7 @@ declare function init(config: AuthHeroConfig): {
6153
6107
  hint?: string | undefined;
6154
6108
  messages?: {
6155
6109
  text: string;
6156
- type: "success" | "error" | "info" | "warning";
6110
+ type: "error" | "success" | "info" | "warning";
6157
6111
  id?: number | undefined;
6158
6112
  }[] | undefined;
6159
6113
  required?: boolean | undefined;
@@ -6174,7 +6128,7 @@ declare function init(config: AuthHeroConfig): {
6174
6128
  hint?: string | undefined;
6175
6129
  messages?: {
6176
6130
  text: string;
6177
- type: "success" | "error" | "info" | "warning";
6131
+ type: "error" | "success" | "info" | "warning";
6178
6132
  id?: number | undefined;
6179
6133
  }[] | undefined;
6180
6134
  required?: boolean | undefined;
@@ -6195,7 +6149,7 @@ declare function init(config: AuthHeroConfig): {
6195
6149
  hint?: string | undefined;
6196
6150
  messages?: {
6197
6151
  text: string;
6198
- type: "success" | "error" | "info" | "warning";
6152
+ type: "error" | "success" | "info" | "warning";
6199
6153
  id?: number | undefined;
6200
6154
  }[] | undefined;
6201
6155
  required?: boolean | undefined;
@@ -6443,7 +6397,7 @@ declare function init(config: AuthHeroConfig): {
6443
6397
  hint?: string | undefined;
6444
6398
  messages?: {
6445
6399
  text: string;
6446
- type: "success" | "error" | "info" | "warning";
6400
+ type: "error" | "success" | "info" | "warning";
6447
6401
  id?: number | undefined;
6448
6402
  }[] | undefined;
6449
6403
  required?: boolean | undefined;
@@ -6461,7 +6415,7 @@ declare function init(config: AuthHeroConfig): {
6461
6415
  hint?: string | undefined;
6462
6416
  messages?: {
6463
6417
  text: string;
6464
- type: "success" | "error" | "info" | "warning";
6418
+ type: "error" | "success" | "info" | "warning";
6465
6419
  id?: number | undefined;
6466
6420
  }[] | undefined;
6467
6421
  required?: boolean | undefined;
@@ -6485,7 +6439,7 @@ declare function init(config: AuthHeroConfig): {
6485
6439
  hint?: string | undefined;
6486
6440
  messages?: {
6487
6441
  text: string;
6488
- type: "success" | "error" | "info" | "warning";
6442
+ type: "error" | "success" | "info" | "warning";
6489
6443
  id?: number | undefined;
6490
6444
  }[] | undefined;
6491
6445
  required?: boolean | undefined;
@@ -6509,7 +6463,7 @@ declare function init(config: AuthHeroConfig): {
6509
6463
  hint?: string | undefined;
6510
6464
  messages?: {
6511
6465
  text: string;
6512
- type: "success" | "error" | "info" | "warning";
6466
+ type: "error" | "success" | "info" | "warning";
6513
6467
  id?: number | undefined;
6514
6468
  }[] | undefined;
6515
6469
  required?: boolean | undefined;
@@ -6538,7 +6492,7 @@ declare function init(config: AuthHeroConfig): {
6538
6492
  hint?: string | undefined;
6539
6493
  messages?: {
6540
6494
  text: string;
6541
- type: "success" | "error" | "info" | "warning";
6495
+ type: "error" | "success" | "info" | "warning";
6542
6496
  id?: number | undefined;
6543
6497
  }[] | undefined;
6544
6498
  required?: boolean | undefined;
@@ -6553,7 +6507,7 @@ declare function init(config: AuthHeroConfig): {
6553
6507
  hint?: string | undefined;
6554
6508
  messages?: {
6555
6509
  text: string;
6556
- type: "success" | "error" | "info" | "warning";
6510
+ type: "error" | "success" | "info" | "warning";
6557
6511
  id?: number | undefined;
6558
6512
  }[] | undefined;
6559
6513
  required?: boolean | undefined;
@@ -6574,7 +6528,7 @@ declare function init(config: AuthHeroConfig): {
6574
6528
  hint?: string | undefined;
6575
6529
  messages?: {
6576
6530
  text: string;
6577
- type: "success" | "error" | "info" | "warning";
6531
+ type: "error" | "success" | "info" | "warning";
6578
6532
  id?: number | undefined;
6579
6533
  }[] | undefined;
6580
6534
  required?: boolean | undefined;
@@ -6599,7 +6553,7 @@ declare function init(config: AuthHeroConfig): {
6599
6553
  hint?: string | undefined;
6600
6554
  messages?: {
6601
6555
  text: string;
6602
- type: "success" | "error" | "info" | "warning";
6556
+ type: "error" | "success" | "info" | "warning";
6603
6557
  id?: number | undefined;
6604
6558
  }[] | undefined;
6605
6559
  required?: boolean | undefined;
@@ -6618,7 +6572,7 @@ declare function init(config: AuthHeroConfig): {
6618
6572
  hint?: string | undefined;
6619
6573
  messages?: {
6620
6574
  text: string;
6621
- type: "success" | "error" | "info" | "warning";
6575
+ type: "error" | "success" | "info" | "warning";
6622
6576
  id?: number | undefined;
6623
6577
  }[] | undefined;
6624
6578
  required?: boolean | undefined;
@@ -6638,7 +6592,7 @@ declare function init(config: AuthHeroConfig): {
6638
6592
  hint?: string | undefined;
6639
6593
  messages?: {
6640
6594
  text: string;
6641
- type: "success" | "error" | "info" | "warning";
6595
+ type: "error" | "success" | "info" | "warning";
6642
6596
  id?: number | undefined;
6643
6597
  }[] | undefined;
6644
6598
  required?: boolean | undefined;
@@ -6657,7 +6611,7 @@ declare function init(config: AuthHeroConfig): {
6657
6611
  hint?: string | undefined;
6658
6612
  messages?: {
6659
6613
  text: string;
6660
- type: "success" | "error" | "info" | "warning";
6614
+ type: "error" | "success" | "info" | "warning";
6661
6615
  id?: number | undefined;
6662
6616
  }[] | undefined;
6663
6617
  required?: boolean | undefined;
@@ -6679,7 +6633,7 @@ declare function init(config: AuthHeroConfig): {
6679
6633
  hint?: string | undefined;
6680
6634
  messages?: {
6681
6635
  text: string;
6682
- type: "success" | "error" | "info" | "warning";
6636
+ type: "error" | "success" | "info" | "warning";
6683
6637
  id?: number | undefined;
6684
6638
  }[] | undefined;
6685
6639
  required?: boolean | undefined;
@@ -6701,7 +6655,7 @@ declare function init(config: AuthHeroConfig): {
6701
6655
  hint?: string | undefined;
6702
6656
  messages?: {
6703
6657
  text: string;
6704
- type: "success" | "error" | "info" | "warning";
6658
+ type: "error" | "success" | "info" | "warning";
6705
6659
  id?: number | undefined;
6706
6660
  }[] | undefined;
6707
6661
  required?: boolean | undefined;
@@ -6720,7 +6674,7 @@ declare function init(config: AuthHeroConfig): {
6720
6674
  hint?: string | undefined;
6721
6675
  messages?: {
6722
6676
  text: string;
6723
- type: "success" | "error" | "info" | "warning";
6677
+ type: "error" | "success" | "info" | "warning";
6724
6678
  id?: number | undefined;
6725
6679
  }[] | undefined;
6726
6680
  required?: boolean | undefined;
@@ -6745,7 +6699,7 @@ declare function init(config: AuthHeroConfig): {
6745
6699
  hint?: string | undefined;
6746
6700
  messages?: {
6747
6701
  text: string;
6748
- type: "success" | "error" | "info" | "warning";
6702
+ type: "error" | "success" | "info" | "warning";
6749
6703
  id?: number | undefined;
6750
6704
  }[] | undefined;
6751
6705
  required?: boolean | undefined;
@@ -6766,7 +6720,7 @@ declare function init(config: AuthHeroConfig): {
6766
6720
  hint?: string | undefined;
6767
6721
  messages?: {
6768
6722
  text: string;
6769
- type: "success" | "error" | "info" | "warning";
6723
+ type: "error" | "success" | "info" | "warning";
6770
6724
  id?: number | undefined;
6771
6725
  }[] | undefined;
6772
6726
  required?: boolean | undefined;
@@ -6787,7 +6741,7 @@ declare function init(config: AuthHeroConfig): {
6787
6741
  hint?: string | undefined;
6788
6742
  messages?: {
6789
6743
  text: string;
6790
- type: "success" | "error" | "info" | "warning";
6744
+ type: "error" | "success" | "info" | "warning";
6791
6745
  id?: number | undefined;
6792
6746
  }[] | undefined;
6793
6747
  required?: boolean | undefined;
@@ -7041,7 +6995,7 @@ declare function init(config: AuthHeroConfig): {
7041
6995
  hint?: string | undefined;
7042
6996
  messages?: {
7043
6997
  text: string;
7044
- type: "success" | "error" | "info" | "warning";
6998
+ type: "error" | "success" | "info" | "warning";
7045
6999
  id?: number | undefined;
7046
7000
  }[] | undefined;
7047
7001
  required?: boolean | undefined;
@@ -7059,7 +7013,7 @@ declare function init(config: AuthHeroConfig): {
7059
7013
  hint?: string | undefined;
7060
7014
  messages?: {
7061
7015
  text: string;
7062
- type: "success" | "error" | "info" | "warning";
7016
+ type: "error" | "success" | "info" | "warning";
7063
7017
  id?: number | undefined;
7064
7018
  }[] | undefined;
7065
7019
  required?: boolean | undefined;
@@ -7083,7 +7037,7 @@ declare function init(config: AuthHeroConfig): {
7083
7037
  hint?: string | undefined;
7084
7038
  messages?: {
7085
7039
  text: string;
7086
- type: "success" | "error" | "info" | "warning";
7040
+ type: "error" | "success" | "info" | "warning";
7087
7041
  id?: number | undefined;
7088
7042
  }[] | undefined;
7089
7043
  required?: boolean | undefined;
@@ -7107,7 +7061,7 @@ declare function init(config: AuthHeroConfig): {
7107
7061
  hint?: string | undefined;
7108
7062
  messages?: {
7109
7063
  text: string;
7110
- type: "success" | "error" | "info" | "warning";
7064
+ type: "error" | "success" | "info" | "warning";
7111
7065
  id?: number | undefined;
7112
7066
  }[] | undefined;
7113
7067
  required?: boolean | undefined;
@@ -7132,7 +7086,7 @@ declare function init(config: AuthHeroConfig): {
7132
7086
  hint?: string | undefined;
7133
7087
  messages?: {
7134
7088
  text: string;
7135
- type: "success" | "error" | "info" | "warning";
7089
+ type: "error" | "success" | "info" | "warning";
7136
7090
  id?: number | undefined;
7137
7091
  }[] | undefined;
7138
7092
  required?: boolean | undefined;
@@ -7147,7 +7101,7 @@ declare function init(config: AuthHeroConfig): {
7147
7101
  hint?: string | undefined;
7148
7102
  messages?: {
7149
7103
  text: string;
7150
- type: "success" | "error" | "info" | "warning";
7104
+ type: "error" | "success" | "info" | "warning";
7151
7105
  id?: number | undefined;
7152
7106
  }[] | undefined;
7153
7107
  required?: boolean | undefined;
@@ -7168,7 +7122,7 @@ declare function init(config: AuthHeroConfig): {
7168
7122
  hint?: string | undefined;
7169
7123
  messages?: {
7170
7124
  text: string;
7171
- type: "success" | "error" | "info" | "warning";
7125
+ type: "error" | "success" | "info" | "warning";
7172
7126
  id?: number | undefined;
7173
7127
  }[] | undefined;
7174
7128
  required?: boolean | undefined;
@@ -7193,7 +7147,7 @@ declare function init(config: AuthHeroConfig): {
7193
7147
  hint?: string | undefined;
7194
7148
  messages?: {
7195
7149
  text: string;
7196
- type: "success" | "error" | "info" | "warning";
7150
+ type: "error" | "success" | "info" | "warning";
7197
7151
  id?: number | undefined;
7198
7152
  }[] | undefined;
7199
7153
  required?: boolean | undefined;
@@ -7212,7 +7166,7 @@ declare function init(config: AuthHeroConfig): {
7212
7166
  hint?: string | undefined;
7213
7167
  messages?: {
7214
7168
  text: string;
7215
- type: "success" | "error" | "info" | "warning";
7169
+ type: "error" | "success" | "info" | "warning";
7216
7170
  id?: number | undefined;
7217
7171
  }[] | undefined;
7218
7172
  required?: boolean | undefined;
@@ -7232,7 +7186,7 @@ declare function init(config: AuthHeroConfig): {
7232
7186
  hint?: string | undefined;
7233
7187
  messages?: {
7234
7188
  text: string;
7235
- type: "success" | "error" | "info" | "warning";
7189
+ type: "error" | "success" | "info" | "warning";
7236
7190
  id?: number | undefined;
7237
7191
  }[] | undefined;
7238
7192
  required?: boolean | undefined;
@@ -7251,7 +7205,7 @@ declare function init(config: AuthHeroConfig): {
7251
7205
  hint?: string | undefined;
7252
7206
  messages?: {
7253
7207
  text: string;
7254
- type: "success" | "error" | "info" | "warning";
7208
+ type: "error" | "success" | "info" | "warning";
7255
7209
  id?: number | undefined;
7256
7210
  }[] | undefined;
7257
7211
  required?: boolean | undefined;
@@ -7273,7 +7227,7 @@ declare function init(config: AuthHeroConfig): {
7273
7227
  hint?: string | undefined;
7274
7228
  messages?: {
7275
7229
  text: string;
7276
- type: "success" | "error" | "info" | "warning";
7230
+ type: "error" | "success" | "info" | "warning";
7277
7231
  id?: number | undefined;
7278
7232
  }[] | undefined;
7279
7233
  required?: boolean | undefined;
@@ -7295,7 +7249,7 @@ declare function init(config: AuthHeroConfig): {
7295
7249
  hint?: string | undefined;
7296
7250
  messages?: {
7297
7251
  text: string;
7298
- type: "success" | "error" | "info" | "warning";
7252
+ type: "error" | "success" | "info" | "warning";
7299
7253
  id?: number | undefined;
7300
7254
  }[] | undefined;
7301
7255
  required?: boolean | undefined;
@@ -7314,7 +7268,7 @@ declare function init(config: AuthHeroConfig): {
7314
7268
  hint?: string | undefined;
7315
7269
  messages?: {
7316
7270
  text: string;
7317
- type: "success" | "error" | "info" | "warning";
7271
+ type: "error" | "success" | "info" | "warning";
7318
7272
  id?: number | undefined;
7319
7273
  }[] | undefined;
7320
7274
  required?: boolean | undefined;
@@ -7339,7 +7293,7 @@ declare function init(config: AuthHeroConfig): {
7339
7293
  hint?: string | undefined;
7340
7294
  messages?: {
7341
7295
  text: string;
7342
- type: "success" | "error" | "info" | "warning";
7296
+ type: "error" | "success" | "info" | "warning";
7343
7297
  id?: number | undefined;
7344
7298
  }[] | undefined;
7345
7299
  required?: boolean | undefined;
@@ -7360,7 +7314,7 @@ declare function init(config: AuthHeroConfig): {
7360
7314
  hint?: string | undefined;
7361
7315
  messages?: {
7362
7316
  text: string;
7363
- type: "success" | "error" | "info" | "warning";
7317
+ type: "error" | "success" | "info" | "warning";
7364
7318
  id?: number | undefined;
7365
7319
  }[] | undefined;
7366
7320
  required?: boolean | undefined;
@@ -7381,7 +7335,7 @@ declare function init(config: AuthHeroConfig): {
7381
7335
  hint?: string | undefined;
7382
7336
  messages?: {
7383
7337
  text: string;
7384
- type: "success" | "error" | "info" | "warning";
7338
+ type: "error" | "success" | "info" | "warning";
7385
7339
  id?: number | undefined;
7386
7340
  }[] | undefined;
7387
7341
  required?: boolean | undefined;
@@ -7612,7 +7566,7 @@ declare function init(config: AuthHeroConfig): {
7612
7566
  hint?: string | undefined;
7613
7567
  messages?: {
7614
7568
  text: string;
7615
- type: "success" | "error" | "info" | "warning";
7569
+ type: "error" | "success" | "info" | "warning";
7616
7570
  id?: number | undefined;
7617
7571
  }[] | undefined;
7618
7572
  required?: boolean | undefined;
@@ -7630,7 +7584,7 @@ declare function init(config: AuthHeroConfig): {
7630
7584
  hint?: string | undefined;
7631
7585
  messages?: {
7632
7586
  text: string;
7633
- type: "success" | "error" | "info" | "warning";
7587
+ type: "error" | "success" | "info" | "warning";
7634
7588
  id?: number | undefined;
7635
7589
  }[] | undefined;
7636
7590
  required?: boolean | undefined;
@@ -7654,7 +7608,7 @@ declare function init(config: AuthHeroConfig): {
7654
7608
  hint?: string | undefined;
7655
7609
  messages?: {
7656
7610
  text: string;
7657
- type: "success" | "error" | "info" | "warning";
7611
+ type: "error" | "success" | "info" | "warning";
7658
7612
  id?: number | undefined;
7659
7613
  }[] | undefined;
7660
7614
  required?: boolean | undefined;
@@ -7678,7 +7632,7 @@ declare function init(config: AuthHeroConfig): {
7678
7632
  hint?: string | undefined;
7679
7633
  messages?: {
7680
7634
  text: string;
7681
- type: "success" | "error" | "info" | "warning";
7635
+ type: "error" | "success" | "info" | "warning";
7682
7636
  id?: number | undefined;
7683
7637
  }[] | undefined;
7684
7638
  required?: boolean | undefined;
@@ -7707,7 +7661,7 @@ declare function init(config: AuthHeroConfig): {
7707
7661
  hint?: string | undefined;
7708
7662
  messages?: {
7709
7663
  text: string;
7710
- type: "success" | "error" | "info" | "warning";
7664
+ type: "error" | "success" | "info" | "warning";
7711
7665
  id?: number | undefined;
7712
7666
  }[] | undefined;
7713
7667
  required?: boolean | undefined;
@@ -7722,7 +7676,7 @@ declare function init(config: AuthHeroConfig): {
7722
7676
  hint?: string | undefined;
7723
7677
  messages?: {
7724
7678
  text: string;
7725
- type: "success" | "error" | "info" | "warning";
7679
+ type: "error" | "success" | "info" | "warning";
7726
7680
  id?: number | undefined;
7727
7681
  }[] | undefined;
7728
7682
  required?: boolean | undefined;
@@ -7743,7 +7697,7 @@ declare function init(config: AuthHeroConfig): {
7743
7697
  hint?: string | undefined;
7744
7698
  messages?: {
7745
7699
  text: string;
7746
- type: "success" | "error" | "info" | "warning";
7700
+ type: "error" | "success" | "info" | "warning";
7747
7701
  id?: number | undefined;
7748
7702
  }[] | undefined;
7749
7703
  required?: boolean | undefined;
@@ -7768,7 +7722,7 @@ declare function init(config: AuthHeroConfig): {
7768
7722
  hint?: string | undefined;
7769
7723
  messages?: {
7770
7724
  text: string;
7771
- type: "success" | "error" | "info" | "warning";
7725
+ type: "error" | "success" | "info" | "warning";
7772
7726
  id?: number | undefined;
7773
7727
  }[] | undefined;
7774
7728
  required?: boolean | undefined;
@@ -7787,7 +7741,7 @@ declare function init(config: AuthHeroConfig): {
7787
7741
  hint?: string | undefined;
7788
7742
  messages?: {
7789
7743
  text: string;
7790
- type: "success" | "error" | "info" | "warning";
7744
+ type: "error" | "success" | "info" | "warning";
7791
7745
  id?: number | undefined;
7792
7746
  }[] | undefined;
7793
7747
  required?: boolean | undefined;
@@ -7807,7 +7761,7 @@ declare function init(config: AuthHeroConfig): {
7807
7761
  hint?: string | undefined;
7808
7762
  messages?: {
7809
7763
  text: string;
7810
- type: "success" | "error" | "info" | "warning";
7764
+ type: "error" | "success" | "info" | "warning";
7811
7765
  id?: number | undefined;
7812
7766
  }[] | undefined;
7813
7767
  required?: boolean | undefined;
@@ -7826,7 +7780,7 @@ declare function init(config: AuthHeroConfig): {
7826
7780
  hint?: string | undefined;
7827
7781
  messages?: {
7828
7782
  text: string;
7829
- type: "success" | "error" | "info" | "warning";
7783
+ type: "error" | "success" | "info" | "warning";
7830
7784
  id?: number | undefined;
7831
7785
  }[] | undefined;
7832
7786
  required?: boolean | undefined;
@@ -7848,7 +7802,7 @@ declare function init(config: AuthHeroConfig): {
7848
7802
  hint?: string | undefined;
7849
7803
  messages?: {
7850
7804
  text: string;
7851
- type: "success" | "error" | "info" | "warning";
7805
+ type: "error" | "success" | "info" | "warning";
7852
7806
  id?: number | undefined;
7853
7807
  }[] | undefined;
7854
7808
  required?: boolean | undefined;
@@ -7870,7 +7824,7 @@ declare function init(config: AuthHeroConfig): {
7870
7824
  hint?: string | undefined;
7871
7825
  messages?: {
7872
7826
  text: string;
7873
- type: "success" | "error" | "info" | "warning";
7827
+ type: "error" | "success" | "info" | "warning";
7874
7828
  id?: number | undefined;
7875
7829
  }[] | undefined;
7876
7830
  required?: boolean | undefined;
@@ -7889,7 +7843,7 @@ declare function init(config: AuthHeroConfig): {
7889
7843
  hint?: string | undefined;
7890
7844
  messages?: {
7891
7845
  text: string;
7892
- type: "success" | "error" | "info" | "warning";
7846
+ type: "error" | "success" | "info" | "warning";
7893
7847
  id?: number | undefined;
7894
7848
  }[] | undefined;
7895
7849
  required?: boolean | undefined;
@@ -7914,7 +7868,7 @@ declare function init(config: AuthHeroConfig): {
7914
7868
  hint?: string | undefined;
7915
7869
  messages?: {
7916
7870
  text: string;
7917
- type: "success" | "error" | "info" | "warning";
7871
+ type: "error" | "success" | "info" | "warning";
7918
7872
  id?: number | undefined;
7919
7873
  }[] | undefined;
7920
7874
  required?: boolean | undefined;
@@ -7935,7 +7889,7 @@ declare function init(config: AuthHeroConfig): {
7935
7889
  hint?: string | undefined;
7936
7890
  messages?: {
7937
7891
  text: string;
7938
- type: "success" | "error" | "info" | "warning";
7892
+ type: "error" | "success" | "info" | "warning";
7939
7893
  id?: number | undefined;
7940
7894
  }[] | undefined;
7941
7895
  required?: boolean | undefined;
@@ -7956,7 +7910,7 @@ declare function init(config: AuthHeroConfig): {
7956
7910
  hint?: string | undefined;
7957
7911
  messages?: {
7958
7912
  text: string;
7959
- type: "success" | "error" | "info" | "warning";
7913
+ type: "error" | "success" | "info" | "warning";
7960
7914
  id?: number | undefined;
7961
7915
  }[] | undefined;
7962
7916
  required?: boolean | undefined;
@@ -8189,7 +8143,7 @@ declare function init(config: AuthHeroConfig): {
8189
8143
  hint?: string | undefined;
8190
8144
  messages?: {
8191
8145
  text: string;
8192
- type: "success" | "error" | "info" | "warning";
8146
+ type: "error" | "success" | "info" | "warning";
8193
8147
  id?: number | undefined;
8194
8148
  }[] | undefined;
8195
8149
  required?: boolean | undefined;
@@ -8207,7 +8161,7 @@ declare function init(config: AuthHeroConfig): {
8207
8161
  hint?: string | undefined;
8208
8162
  messages?: {
8209
8163
  text: string;
8210
- type: "success" | "error" | "info" | "warning";
8164
+ type: "error" | "success" | "info" | "warning";
8211
8165
  id?: number | undefined;
8212
8166
  }[] | undefined;
8213
8167
  required?: boolean | undefined;
@@ -8231,7 +8185,7 @@ declare function init(config: AuthHeroConfig): {
8231
8185
  hint?: string | undefined;
8232
8186
  messages?: {
8233
8187
  text: string;
8234
- type: "success" | "error" | "info" | "warning";
8188
+ type: "error" | "success" | "info" | "warning";
8235
8189
  id?: number | undefined;
8236
8190
  }[] | undefined;
8237
8191
  required?: boolean | undefined;
@@ -8255,7 +8209,7 @@ declare function init(config: AuthHeroConfig): {
8255
8209
  hint?: string | undefined;
8256
8210
  messages?: {
8257
8211
  text: string;
8258
- type: "success" | "error" | "info" | "warning";
8212
+ type: "error" | "success" | "info" | "warning";
8259
8213
  id?: number | undefined;
8260
8214
  }[] | undefined;
8261
8215
  required?: boolean | undefined;
@@ -8280,7 +8234,7 @@ declare function init(config: AuthHeroConfig): {
8280
8234
  hint?: string | undefined;
8281
8235
  messages?: {
8282
8236
  text: string;
8283
- type: "success" | "error" | "info" | "warning";
8237
+ type: "error" | "success" | "info" | "warning";
8284
8238
  id?: number | undefined;
8285
8239
  }[] | undefined;
8286
8240
  required?: boolean | undefined;
@@ -8295,7 +8249,7 @@ declare function init(config: AuthHeroConfig): {
8295
8249
  hint?: string | undefined;
8296
8250
  messages?: {
8297
8251
  text: string;
8298
- type: "success" | "error" | "info" | "warning";
8252
+ type: "error" | "success" | "info" | "warning";
8299
8253
  id?: number | undefined;
8300
8254
  }[] | undefined;
8301
8255
  required?: boolean | undefined;
@@ -8316,7 +8270,7 @@ declare function init(config: AuthHeroConfig): {
8316
8270
  hint?: string | undefined;
8317
8271
  messages?: {
8318
8272
  text: string;
8319
- type: "success" | "error" | "info" | "warning";
8273
+ type: "error" | "success" | "info" | "warning";
8320
8274
  id?: number | undefined;
8321
8275
  }[] | undefined;
8322
8276
  required?: boolean | undefined;
@@ -8341,7 +8295,7 @@ declare function init(config: AuthHeroConfig): {
8341
8295
  hint?: string | undefined;
8342
8296
  messages?: {
8343
8297
  text: string;
8344
- type: "success" | "error" | "info" | "warning";
8298
+ type: "error" | "success" | "info" | "warning";
8345
8299
  id?: number | undefined;
8346
8300
  }[] | undefined;
8347
8301
  required?: boolean | undefined;
@@ -8360,7 +8314,7 @@ declare function init(config: AuthHeroConfig): {
8360
8314
  hint?: string | undefined;
8361
8315
  messages?: {
8362
8316
  text: string;
8363
- type: "success" | "error" | "info" | "warning";
8317
+ type: "error" | "success" | "info" | "warning";
8364
8318
  id?: number | undefined;
8365
8319
  }[] | undefined;
8366
8320
  required?: boolean | undefined;
@@ -8380,7 +8334,7 @@ declare function init(config: AuthHeroConfig): {
8380
8334
  hint?: string | undefined;
8381
8335
  messages?: {
8382
8336
  text: string;
8383
- type: "success" | "error" | "info" | "warning";
8337
+ type: "error" | "success" | "info" | "warning";
8384
8338
  id?: number | undefined;
8385
8339
  }[] | undefined;
8386
8340
  required?: boolean | undefined;
@@ -8399,7 +8353,7 @@ declare function init(config: AuthHeroConfig): {
8399
8353
  hint?: string | undefined;
8400
8354
  messages?: {
8401
8355
  text: string;
8402
- type: "success" | "error" | "info" | "warning";
8356
+ type: "error" | "success" | "info" | "warning";
8403
8357
  id?: number | undefined;
8404
8358
  }[] | undefined;
8405
8359
  required?: boolean | undefined;
@@ -8421,7 +8375,7 @@ declare function init(config: AuthHeroConfig): {
8421
8375
  hint?: string | undefined;
8422
8376
  messages?: {
8423
8377
  text: string;
8424
- type: "success" | "error" | "info" | "warning";
8378
+ type: "error" | "success" | "info" | "warning";
8425
8379
  id?: number | undefined;
8426
8380
  }[] | undefined;
8427
8381
  required?: boolean | undefined;
@@ -8443,7 +8397,7 @@ declare function init(config: AuthHeroConfig): {
8443
8397
  hint?: string | undefined;
8444
8398
  messages?: {
8445
8399
  text: string;
8446
- type: "success" | "error" | "info" | "warning";
8400
+ type: "error" | "success" | "info" | "warning";
8447
8401
  id?: number | undefined;
8448
8402
  }[] | undefined;
8449
8403
  required?: boolean | undefined;
@@ -8462,7 +8416,7 @@ declare function init(config: AuthHeroConfig): {
8462
8416
  hint?: string | undefined;
8463
8417
  messages?: {
8464
8418
  text: string;
8465
- type: "success" | "error" | "info" | "warning";
8419
+ type: "error" | "success" | "info" | "warning";
8466
8420
  id?: number | undefined;
8467
8421
  }[] | undefined;
8468
8422
  required?: boolean | undefined;
@@ -8487,7 +8441,7 @@ declare function init(config: AuthHeroConfig): {
8487
8441
  hint?: string | undefined;
8488
8442
  messages?: {
8489
8443
  text: string;
8490
- type: "success" | "error" | "info" | "warning";
8444
+ type: "error" | "success" | "info" | "warning";
8491
8445
  id?: number | undefined;
8492
8446
  }[] | undefined;
8493
8447
  required?: boolean | undefined;
@@ -8508,7 +8462,7 @@ declare function init(config: AuthHeroConfig): {
8508
8462
  hint?: string | undefined;
8509
8463
  messages?: {
8510
8464
  text: string;
8511
- type: "success" | "error" | "info" | "warning";
8465
+ type: "error" | "success" | "info" | "warning";
8512
8466
  id?: number | undefined;
8513
8467
  }[] | undefined;
8514
8468
  required?: boolean | undefined;
@@ -8529,7 +8483,7 @@ declare function init(config: AuthHeroConfig): {
8529
8483
  hint?: string | undefined;
8530
8484
  messages?: {
8531
8485
  text: string;
8532
- type: "success" | "error" | "info" | "warning";
8486
+ type: "error" | "success" | "info" | "warning";
8533
8487
  id?: number | undefined;
8534
8488
  }[] | undefined;
8535
8489
  required?: boolean | undefined;
@@ -8760,7 +8714,7 @@ declare function init(config: AuthHeroConfig): {
8760
8714
  hint?: string | undefined;
8761
8715
  messages?: {
8762
8716
  text: string;
8763
- type: "success" | "error" | "info" | "warning";
8717
+ type: "error" | "success" | "info" | "warning";
8764
8718
  id?: number | undefined;
8765
8719
  }[] | undefined;
8766
8720
  required?: boolean | undefined;
@@ -8778,7 +8732,7 @@ declare function init(config: AuthHeroConfig): {
8778
8732
  hint?: string | undefined;
8779
8733
  messages?: {
8780
8734
  text: string;
8781
- type: "success" | "error" | "info" | "warning";
8735
+ type: "error" | "success" | "info" | "warning";
8782
8736
  id?: number | undefined;
8783
8737
  }[] | undefined;
8784
8738
  required?: boolean | undefined;
@@ -8802,7 +8756,7 @@ declare function init(config: AuthHeroConfig): {
8802
8756
  hint?: string | undefined;
8803
8757
  messages?: {
8804
8758
  text: string;
8805
- type: "success" | "error" | "info" | "warning";
8759
+ type: "error" | "success" | "info" | "warning";
8806
8760
  id?: number | undefined;
8807
8761
  }[] | undefined;
8808
8762
  required?: boolean | undefined;
@@ -8826,7 +8780,7 @@ declare function init(config: AuthHeroConfig): {
8826
8780
  hint?: string | undefined;
8827
8781
  messages?: {
8828
8782
  text: string;
8829
- type: "success" | "error" | "info" | "warning";
8783
+ type: "error" | "success" | "info" | "warning";
8830
8784
  id?: number | undefined;
8831
8785
  }[] | undefined;
8832
8786
  required?: boolean | undefined;
@@ -8855,7 +8809,7 @@ declare function init(config: AuthHeroConfig): {
8855
8809
  hint?: string | undefined;
8856
8810
  messages?: {
8857
8811
  text: string;
8858
- type: "success" | "error" | "info" | "warning";
8812
+ type: "error" | "success" | "info" | "warning";
8859
8813
  id?: number | undefined;
8860
8814
  }[] | undefined;
8861
8815
  required?: boolean | undefined;
@@ -8870,7 +8824,7 @@ declare function init(config: AuthHeroConfig): {
8870
8824
  hint?: string | undefined;
8871
8825
  messages?: {
8872
8826
  text: string;
8873
- type: "success" | "error" | "info" | "warning";
8827
+ type: "error" | "success" | "info" | "warning";
8874
8828
  id?: number | undefined;
8875
8829
  }[] | undefined;
8876
8830
  required?: boolean | undefined;
@@ -8891,7 +8845,7 @@ declare function init(config: AuthHeroConfig): {
8891
8845
  hint?: string | undefined;
8892
8846
  messages?: {
8893
8847
  text: string;
8894
- type: "success" | "error" | "info" | "warning";
8848
+ type: "error" | "success" | "info" | "warning";
8895
8849
  id?: number | undefined;
8896
8850
  }[] | undefined;
8897
8851
  required?: boolean | undefined;
@@ -8916,7 +8870,7 @@ declare function init(config: AuthHeroConfig): {
8916
8870
  hint?: string | undefined;
8917
8871
  messages?: {
8918
8872
  text: string;
8919
- type: "success" | "error" | "info" | "warning";
8873
+ type: "error" | "success" | "info" | "warning";
8920
8874
  id?: number | undefined;
8921
8875
  }[] | undefined;
8922
8876
  required?: boolean | undefined;
@@ -8935,7 +8889,7 @@ declare function init(config: AuthHeroConfig): {
8935
8889
  hint?: string | undefined;
8936
8890
  messages?: {
8937
8891
  text: string;
8938
- type: "success" | "error" | "info" | "warning";
8892
+ type: "error" | "success" | "info" | "warning";
8939
8893
  id?: number | undefined;
8940
8894
  }[] | undefined;
8941
8895
  required?: boolean | undefined;
@@ -8955,7 +8909,7 @@ declare function init(config: AuthHeroConfig): {
8955
8909
  hint?: string | undefined;
8956
8910
  messages?: {
8957
8911
  text: string;
8958
- type: "success" | "error" | "info" | "warning";
8912
+ type: "error" | "success" | "info" | "warning";
8959
8913
  id?: number | undefined;
8960
8914
  }[] | undefined;
8961
8915
  required?: boolean | undefined;
@@ -8974,7 +8928,7 @@ declare function init(config: AuthHeroConfig): {
8974
8928
  hint?: string | undefined;
8975
8929
  messages?: {
8976
8930
  text: string;
8977
- type: "success" | "error" | "info" | "warning";
8931
+ type: "error" | "success" | "info" | "warning";
8978
8932
  id?: number | undefined;
8979
8933
  }[] | undefined;
8980
8934
  required?: boolean | undefined;
@@ -8996,7 +8950,7 @@ declare function init(config: AuthHeroConfig): {
8996
8950
  hint?: string | undefined;
8997
8951
  messages?: {
8998
8952
  text: string;
8999
- type: "success" | "error" | "info" | "warning";
8953
+ type: "error" | "success" | "info" | "warning";
9000
8954
  id?: number | undefined;
9001
8955
  }[] | undefined;
9002
8956
  required?: boolean | undefined;
@@ -9018,7 +8972,7 @@ declare function init(config: AuthHeroConfig): {
9018
8972
  hint?: string | undefined;
9019
8973
  messages?: {
9020
8974
  text: string;
9021
- type: "success" | "error" | "info" | "warning";
8975
+ type: "error" | "success" | "info" | "warning";
9022
8976
  id?: number | undefined;
9023
8977
  }[] | undefined;
9024
8978
  required?: boolean | undefined;
@@ -9037,7 +8991,7 @@ declare function init(config: AuthHeroConfig): {
9037
8991
  hint?: string | undefined;
9038
8992
  messages?: {
9039
8993
  text: string;
9040
- type: "success" | "error" | "info" | "warning";
8994
+ type: "error" | "success" | "info" | "warning";
9041
8995
  id?: number | undefined;
9042
8996
  }[] | undefined;
9043
8997
  required?: boolean | undefined;
@@ -9062,7 +9016,7 @@ declare function init(config: AuthHeroConfig): {
9062
9016
  hint?: string | undefined;
9063
9017
  messages?: {
9064
9018
  text: string;
9065
- type: "success" | "error" | "info" | "warning";
9019
+ type: "error" | "success" | "info" | "warning";
9066
9020
  id?: number | undefined;
9067
9021
  }[] | undefined;
9068
9022
  required?: boolean | undefined;
@@ -9083,7 +9037,7 @@ declare function init(config: AuthHeroConfig): {
9083
9037
  hint?: string | undefined;
9084
9038
  messages?: {
9085
9039
  text: string;
9086
- type: "success" | "error" | "info" | "warning";
9040
+ type: "error" | "success" | "info" | "warning";
9087
9041
  id?: number | undefined;
9088
9042
  }[] | undefined;
9089
9043
  required?: boolean | undefined;
@@ -9104,7 +9058,7 @@ declare function init(config: AuthHeroConfig): {
9104
9058
  hint?: string | undefined;
9105
9059
  messages?: {
9106
9060
  text: string;
9107
- type: "success" | "error" | "info" | "warning";
9061
+ type: "error" | "success" | "info" | "warning";
9108
9062
  id?: number | undefined;
9109
9063
  }[] | undefined;
9110
9064
  required?: boolean | undefined;
@@ -9334,7 +9288,7 @@ declare function init(config: AuthHeroConfig): {
9334
9288
  };
9335
9289
  };
9336
9290
  output: {
9337
- prompt: "organizations" | "mfa" | "signup" | "status" | "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";
9291
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9338
9292
  language: string;
9339
9293
  }[];
9340
9294
  outputFormat: "json";
@@ -9372,7 +9326,7 @@ declare function init(config: AuthHeroConfig): {
9372
9326
  $get: {
9373
9327
  input: {
9374
9328
  param: {
9375
- prompt: "organizations" | "mfa" | "signup" | "status" | "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";
9329
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9376
9330
  language: string;
9377
9331
  };
9378
9332
  } & {
@@ -9394,7 +9348,7 @@ declare function init(config: AuthHeroConfig): {
9394
9348
  $put: {
9395
9349
  input: {
9396
9350
  param: {
9397
- prompt: "organizations" | "mfa" | "signup" | "status" | "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";
9351
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9398
9352
  language: string;
9399
9353
  };
9400
9354
  } & {
@@ -9418,7 +9372,7 @@ declare function init(config: AuthHeroConfig): {
9418
9372
  $delete: {
9419
9373
  input: {
9420
9374
  param: {
9421
- prompt: "organizations" | "mfa" | "signup" | "status" | "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";
9375
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9422
9376
  language: string;
9423
9377
  };
9424
9378
  } & {
@@ -10280,7 +10234,7 @@ declare function init(config: AuthHeroConfig): {
10280
10234
  };
10281
10235
  } | {
10282
10236
  mode: "inline";
10283
- status: "success" | "error";
10237
+ status: "error" | "success";
10284
10238
  connection_id: string;
10285
10239
  connection_name: string;
10286
10240
  strategy: string;
@@ -10859,7 +10813,7 @@ declare function init(config: AuthHeroConfig): {
10859
10813
  log_type: string;
10860
10814
  category: "user_action" | "admin_action" | "system" | "api";
10861
10815
  actor: {
10862
- type: "client_credentials" | "user" | "system" | "admin" | "api_key";
10816
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
10863
10817
  id?: string | undefined;
10864
10818
  email?: string | undefined;
10865
10819
  org_id?: string | undefined;
@@ -11507,7 +11461,7 @@ declare function init(config: AuthHeroConfig): {
11507
11461
  };
11508
11462
  };
11509
11463
  output: {
11510
- type: "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11464
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11511
11465
  date: string;
11512
11466
  isMobile: boolean;
11513
11467
  log_id: string;
@@ -11546,7 +11500,7 @@ declare function init(config: AuthHeroConfig): {
11546
11500
  limit: number;
11547
11501
  length: number;
11548
11502
  logs: {
11549
- type: "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11503
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11550
11504
  date: string;
11551
11505
  isMobile: boolean;
11552
11506
  log_id: string;
@@ -11600,7 +11554,7 @@ declare function init(config: AuthHeroConfig): {
11600
11554
  };
11601
11555
  };
11602
11556
  output: {
11603
- type: "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11557
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11604
11558
  date: string;
11605
11559
  isMobile: boolean;
11606
11560
  log_id: string;
@@ -11988,7 +11942,7 @@ declare function init(config: AuthHeroConfig): {
11988
11942
  addons?: {
11989
11943
  [x: string]: any;
11990
11944
  } | undefined;
11991
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
11945
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
11992
11946
  client_metadata?: {
11993
11947
  [x: string]: string;
11994
11948
  } | undefined;
@@ -12084,7 +12038,7 @@ declare function init(config: AuthHeroConfig): {
12084
12038
  addons?: {
12085
12039
  [x: string]: any;
12086
12040
  } | undefined;
12087
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12041
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12088
12042
  client_metadata?: {
12089
12043
  [x: string]: string;
12090
12044
  } | undefined;
@@ -12195,7 +12149,7 @@ declare function init(config: AuthHeroConfig): {
12195
12149
  addons?: {
12196
12150
  [x: string]: any;
12197
12151
  } | undefined;
12198
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12152
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12199
12153
  client_metadata?: {
12200
12154
  [x: string]: string;
12201
12155
  } | undefined;
@@ -12305,7 +12259,7 @@ declare function init(config: AuthHeroConfig): {
12305
12259
  custom_login_page_preview?: string | undefined;
12306
12260
  form_template?: string | undefined;
12307
12261
  addons?: Record<string, any> | undefined;
12308
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12262
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12309
12263
  client_metadata?: Record<string, string> | undefined;
12310
12264
  hide_sign_up_disabled_error?: boolean | undefined;
12311
12265
  mobile?: Record<string, any> | undefined;
@@ -12385,7 +12339,7 @@ declare function init(config: AuthHeroConfig): {
12385
12339
  addons?: {
12386
12340
  [x: string]: any;
12387
12341
  } | undefined;
12388
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12342
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12389
12343
  client_metadata?: {
12390
12344
  [x: string]: string;
12391
12345
  } | undefined;
@@ -12474,7 +12428,7 @@ declare function init(config: AuthHeroConfig): {
12474
12428
  custom_login_page_preview?: string | undefined;
12475
12429
  form_template?: string | undefined;
12476
12430
  addons?: Record<string, any> | undefined;
12477
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12431
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12478
12432
  client_metadata?: Record<string, string> | undefined;
12479
12433
  hide_sign_up_disabled_error?: boolean | undefined;
12480
12434
  mobile?: Record<string, any> | undefined;
@@ -12554,7 +12508,7 @@ declare function init(config: AuthHeroConfig): {
12554
12508
  addons?: {
12555
12509
  [x: string]: any;
12556
12510
  } | undefined;
12557
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12511
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12558
12512
  client_metadata?: {
12559
12513
  [x: string]: string;
12560
12514
  } | undefined;
@@ -13818,7 +13772,7 @@ declare function init(config: AuthHeroConfig): {
13818
13772
  };
13819
13773
  };
13820
13774
  output: {
13821
- type: "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13775
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13822
13776
  date: string;
13823
13777
  isMobile: boolean;
13824
13778
  log_id: string;
@@ -13857,7 +13811,7 @@ declare function init(config: AuthHeroConfig): {
13857
13811
  limit: number;
13858
13812
  length: number;
13859
13813
  logs: {
13860
- type: "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13814
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13861
13815
  date: string;
13862
13816
  isMobile: boolean;
13863
13817
  log_id: string;
@@ -16508,7 +16462,7 @@ declare function init(config: AuthHeroConfig): {
16508
16462
  scope?: string | undefined;
16509
16463
  grant_types?: string[] | undefined;
16510
16464
  response_types?: string[] | undefined;
16511
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16465
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
16512
16466
  jwks_uri?: string | undefined;
16513
16467
  jwks?: Record<string, unknown> | undefined;
16514
16468
  software_id?: string | undefined;
@@ -16597,7 +16551,7 @@ declare function init(config: AuthHeroConfig): {
16597
16551
  scope?: string | undefined;
16598
16552
  grant_types?: string[] | undefined;
16599
16553
  response_types?: string[] | undefined;
16600
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16554
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
16601
16555
  jwks_uri?: string | undefined;
16602
16556
  jwks?: Record<string, unknown> | undefined;
16603
16557
  software_id?: string | undefined;
@@ -16943,16 +16897,16 @@ declare function init(config: AuthHeroConfig): {
16943
16897
  email: string;
16944
16898
  send: "code" | "link";
16945
16899
  authParams: {
16900
+ username?: string | undefined;
16901
+ state?: string | undefined;
16946
16902
  audience?: string | undefined;
16947
16903
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16948
16904
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16949
16905
  scope?: string | undefined;
16950
- username?: string | undefined;
16951
16906
  organization?: string | undefined;
16952
- state?: string | undefined;
16953
16907
  nonce?: string | undefined;
16954
- act_as?: string | undefined;
16955
16908
  redirect_uri?: string | undefined;
16909
+ act_as?: string | undefined;
16956
16910
  prompt?: string | undefined;
16957
16911
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16958
16912
  code_challenge?: string | undefined;
@@ -16979,16 +16933,16 @@ declare function init(config: AuthHeroConfig): {
16979
16933
  phone_number: string;
16980
16934
  send: "code" | "link";
16981
16935
  authParams: {
16936
+ username?: string | undefined;
16937
+ state?: string | undefined;
16982
16938
  audience?: string | undefined;
16983
16939
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16984
16940
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16985
16941
  scope?: string | undefined;
16986
- username?: string | undefined;
16987
16942
  organization?: string | undefined;
16988
- state?: string | undefined;
16989
16943
  nonce?: string | undefined;
16990
- act_as?: string | undefined;
16991
16944
  redirect_uri?: string | undefined;
16945
+ act_as?: string | undefined;
16992
16946
  prompt?: string | undefined;
16993
16947
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16994
16948
  code_challenge?: string | undefined;
@@ -17707,7 +17661,7 @@ declare function init(config: AuthHeroConfig): {
17707
17661
  output: {
17708
17662
  keys: {
17709
17663
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
17710
- kty: "RSA" | "EC" | "oct";
17664
+ kty: "EC" | "RSA" | "oct";
17711
17665
  kid?: string | undefined;
17712
17666
  use?: "sig" | "enc" | undefined;
17713
17667
  n?: string | undefined;
@@ -18898,7 +18852,7 @@ declare function init(config: AuthHeroConfig): {
18898
18852
  $get: {
18899
18853
  input: {
18900
18854
  param: {
18901
- screen: "signup" | "account" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18855
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18902
18856
  };
18903
18857
  } & {
18904
18858
  query: {
@@ -18914,7 +18868,7 @@ declare function init(config: AuthHeroConfig): {
18914
18868
  } | {
18915
18869
  input: {
18916
18870
  param: {
18917
- screen: "signup" | "account" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18871
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18918
18872
  };
18919
18873
  } & {
18920
18874
  query: {
@@ -18930,7 +18884,7 @@ declare function init(config: AuthHeroConfig): {
18930
18884
  } | {
18931
18885
  input: {
18932
18886
  param: {
18933
- screen: "signup" | "account" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18887
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18934
18888
  };
18935
18889
  } & {
18936
18890
  query: {
@@ -18950,7 +18904,7 @@ declare function init(config: AuthHeroConfig): {
18950
18904
  $post: {
18951
18905
  input: {
18952
18906
  param: {
18953
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18907
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18954
18908
  };
18955
18909
  } & {
18956
18910
  query: {
@@ -18968,7 +18922,7 @@ declare function init(config: AuthHeroConfig): {
18968
18922
  } | {
18969
18923
  input: {
18970
18924
  param: {
18971
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18925
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18972
18926
  };
18973
18927
  } & {
18974
18928
  query: {
@@ -18986,7 +18940,7 @@ declare function init(config: AuthHeroConfig): {
18986
18940
  } | {
18987
18941
  input: {
18988
18942
  param: {
18989
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18943
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18990
18944
  };
18991
18945
  } & {
18992
18946
  query: {
@@ -19084,5 +19038,5 @@ declare function init(config: AuthHeroConfig): {
19084
19038
  createX509Certificate: typeof createX509Certificate;
19085
19039
  };
19086
19040
 
19087
- 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, NoopTenantProvisioner, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createInMemoryCache, decryptField, deepMergePatch, drainOutbox, encryptField, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, verifyControlPlaneToken, waitUntil };
19088
- export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantProvisioner, TenantProvisionerContext, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
19041
+ export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createInMemoryCache, decryptField, deepMergePatch, drainOutbox, encryptField, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, verifyControlPlaneToken, waitUntil };
19042
+ export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };