authhero 5.20.0 → 5.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +17 -17
  3. package/dist/authhero.d.ts +314 -248
  4. package/dist/authhero.mjs +105 -66
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/passwordless.d.ts +12 -3
  8. package/dist/types/helpers/client.d.ts +20 -0
  9. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  10. package/dist/types/index.d.ts +247 -245
  11. package/dist/types/provisioning/index.d.ts +2 -0
  12. package/dist/types/provisioning/noop-provisioner.d.ts +11 -0
  13. package/dist/types/provisioning/provisioner.d.ts +25 -0
  14. package/dist/types/routes/auth-api/index.d.ts +30 -30
  15. package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
  16. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  17. package/dist/types/routes/auth-api/token.d.ts +10 -10
  18. package/dist/types/routes/auth-api/well-known.d.ts +2 -2
  19. package/dist/types/routes/management-api/actions.d.ts +3 -3
  20. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  21. package/dist/types/routes/management-api/client-grants.d.ts +8 -8
  22. package/dist/types/routes/management-api/clients.d.ts +7 -7
  23. package/dist/types/routes/management-api/connections.d.ts +1 -1
  24. package/dist/types/routes/management-api/custom-domains.d.ts +7 -7
  25. package/dist/types/routes/management-api/email-templates.d.ts +33 -33
  26. package/dist/types/routes/management-api/forms.d.ts +126 -126
  27. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  28. package/dist/types/routes/management-api/hook-code.d.ts +2 -2
  29. package/dist/types/routes/management-api/index.d.ts +209 -209
  30. package/dist/types/routes/management-api/logs.d.ts +3 -3
  31. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  32. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  33. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  34. package/dist/types/routes/management-api/tenants.d.ts +27 -0
  35. package/dist/types/routes/management-api/users.d.ts +2 -2
  36. package/dist/types/routes/universal-login/common.d.ts +38 -2
  37. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  38. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  39. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  40. package/dist/types/types/AuthHeroConfig.d.ts +12 -0
  41. package/dist/types/utils/jwks.d.ts +4 -4
  42. package/package.json +5 -5
@@ -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, 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';
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';
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';
@@ -304,6 +304,26 @@ declare const enrichedClientSchema: z.ZodObject<{
304
304
  }, z.core.$strip>>>;
305
305
  pushed_authorization_requests_supported: z.ZodOptional<z.ZodBoolean>;
306
306
  authorization_response_iss_parameter_supported: z.ZodOptional<z.ZodBoolean>;
307
+ deployment_type: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
308
+ shared: "shared";
309
+ wfp: "wfp";
310
+ }>>>;
311
+ provisioning_state: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
312
+ pending: "pending";
313
+ ready: "ready";
314
+ failed: "failed";
315
+ }>>>;
316
+ provisioning_error: z.ZodOptional<z.ZodString>;
317
+ provisioning_state_changed_at: z.ZodOptional<z.ZodString>;
318
+ bundle_configuration: z.ZodOptional<z.ZodString>;
319
+ worker_version: z.ZodOptional<z.ZodString>;
320
+ worker_script_name: z.ZodOptional<z.ZodString>;
321
+ storage_kind: z.ZodOptional<z.ZodEnum<{
322
+ own_d1: "own_d1";
323
+ existing_d1: "existing_d1";
324
+ shared_planetscale: "shared_planetscale";
325
+ }>>;
326
+ d1_database_id: z.ZodOptional<z.ZodString>;
307
327
  attack_protection: z.ZodOptional<z.ZodObject<{
308
328
  breached_password_detection: z.ZodOptional<z.ZodObject<{
309
329
  enabled: z.ZodOptional<z.ZodBoolean>;
@@ -862,6 +882,41 @@ declare function createAuthMiddleware(app: OpenAPIHono<{
862
882
  Variables: any;
863
883
  }>, next: Next) => Promise<void>;
864
884
 
885
+ interface TenantProvisionerContext {
886
+ tenants: TenantsDataAdapter;
887
+ }
888
+ /**
889
+ * Drives a tenant from `provisioning_state: "pending"` to `"ready"` or
890
+ * `"failed"`. Owns whatever side effects are required to make the tenant
891
+ * actually serve traffic — creating a D1, uploading a worker to a dispatch
892
+ * namespace, wiring secrets, etc. — and writes the resulting state back via
893
+ * `ctx.tenants.update(...)`.
894
+ *
895
+ * Contract:
896
+ * - Implementations MUST be idempotent. The same tenant may be passed in
897
+ * twice if a previous run crashed mid-flight, the API is retried, or an
898
+ * operator manually re-triggers provisioning.
899
+ * - `provision()` MUST resolve (not reject) even on failure. Errors should
900
+ * be captured into `provisioning_error` and the state set to `"failed"`
901
+ * so the admin UI can render a useful message.
902
+ * - `provision()` should be safe to schedule via `ctx.executionCtx.waitUntil`
903
+ * on Cloudflare Workers — it must not depend on the originating request
904
+ * surviving.
905
+ */
906
+ interface TenantProvisioner {
907
+ provision(tenant: Tenant, ctx: TenantProvisionerContext): Promise<void>;
908
+ }
909
+
910
+ /**
911
+ * Default provisioner. Flips `provisioning_state` to `"ready"` and clears any
912
+ * prior error, doing nothing else. Correct for `deployment_type: "shared"`
913
+ * tenants (the historical default) and useful as a stand-in until the
914
+ * Cloudflare WFP provisioner is wired in.
915
+ */
916
+ declare class NoopTenantProvisioner implements TenantProvisioner {
917
+ provision(tenant: Tenant, ctx: TenantProvisionerContext): Promise<void>;
918
+ }
919
+
865
920
  /**
866
921
  * Parameters passed to a custom webhook invoker function.
867
922
  */
@@ -1174,6 +1229,17 @@ interface AuthHeroConfig {
1174
1229
  /** Per-request timeout for the sync POST (default: 10_000ms). */
1175
1230
  timeoutMs?: number;
1176
1231
  };
1232
+ /**
1233
+ * Optional tenant provisioner. Drives a tenant from
1234
+ * `provisioning_state: "pending"` to `"ready"` or `"failed"` whenever a
1235
+ * tenant is created or re-provisioned via the management API. For shared
1236
+ * tenants this is effectively a no-op; for `wfp` tenants the provisioner
1237
+ * uploads the worker to a Cloudflare dispatch namespace, creates any
1238
+ * per-tenant D1, and wires bindings. When omitted, `NoopTenantProvisioner`
1239
+ * is used — adequate for single-deployment installs where every tenant is
1240
+ * `shared`.
1241
+ */
1242
+ provisioner?: TenantProvisioner;
1177
1243
  /**
1178
1244
  * Optional powered-by logo to display at the bottom left of the login widget.
1179
1245
  * This is only configurable in code, not stored in the database.
@@ -2655,7 +2721,7 @@ declare function init(config: AuthHeroConfig): {
2655
2721
  };
2656
2722
  } & {
2657
2723
  json: {
2658
- type: "push" | "email" | "phone" | "passkey" | "totp" | "webauthn-roaming" | "webauthn-platform";
2724
+ type: "email" | "passkey" | "push" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
2659
2725
  phone_number?: string | undefined;
2660
2726
  totp_secret?: string | undefined;
2661
2727
  credential_id?: string | undefined;
@@ -2795,7 +2861,7 @@ declare function init(config: AuthHeroConfig): {
2795
2861
  };
2796
2862
  };
2797
2863
  output: {
2798
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2864
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2799
2865
  enabled: boolean;
2800
2866
  trial_expired?: boolean | undefined;
2801
2867
  }[];
@@ -2950,7 +3016,7 @@ declare function init(config: AuthHeroConfig): {
2950
3016
  $get: {
2951
3017
  input: {
2952
3018
  param: {
2953
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3019
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2954
3020
  };
2955
3021
  } & {
2956
3022
  header: {
@@ -2958,7 +3024,7 @@ declare function init(config: AuthHeroConfig): {
2958
3024
  };
2959
3025
  };
2960
3026
  output: {
2961
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3027
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2962
3028
  enabled: boolean;
2963
3029
  trial_expired?: boolean | undefined;
2964
3030
  };
@@ -2971,7 +3037,7 @@ declare function init(config: AuthHeroConfig): {
2971
3037
  $put: {
2972
3038
  input: {
2973
3039
  param: {
2974
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3040
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2975
3041
  };
2976
3042
  } & {
2977
3043
  header: {
@@ -2983,7 +3049,7 @@ declare function init(config: AuthHeroConfig): {
2983
3049
  };
2984
3050
  };
2985
3051
  output: {
2986
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3052
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2987
3053
  enabled: boolean;
2988
3054
  trial_expired?: boolean | undefined;
2989
3055
  };
@@ -3728,9 +3794,9 @@ declare function init(config: AuthHeroConfig): {
3728
3794
  invitee: {
3729
3795
  email?: string | undefined;
3730
3796
  };
3797
+ id?: string | undefined;
3731
3798
  app_metadata?: Record<string, any> | undefined;
3732
3799
  user_metadata?: Record<string, any> | undefined;
3733
- id?: string | undefined;
3734
3800
  connection_id?: string | undefined;
3735
3801
  roles?: string[] | undefined;
3736
3802
  ttl_sec?: number | undefined;
@@ -5159,7 +5225,7 @@ declare function init(config: AuthHeroConfig): {
5159
5225
  hint?: string | undefined;
5160
5226
  messages?: {
5161
5227
  text: string;
5162
- type: "success" | "error" | "info" | "warning";
5228
+ type: "error" | "success" | "info" | "warning";
5163
5229
  id?: number | undefined;
5164
5230
  }[] | undefined;
5165
5231
  required?: boolean | undefined;
@@ -5177,7 +5243,7 @@ declare function init(config: AuthHeroConfig): {
5177
5243
  hint?: string | undefined;
5178
5244
  messages?: {
5179
5245
  text: string;
5180
- type: "success" | "error" | "info" | "warning";
5246
+ type: "error" | "success" | "info" | "warning";
5181
5247
  id?: number | undefined;
5182
5248
  }[] | undefined;
5183
5249
  required?: boolean | undefined;
@@ -5201,7 +5267,7 @@ declare function init(config: AuthHeroConfig): {
5201
5267
  hint?: string | undefined;
5202
5268
  messages?: {
5203
5269
  text: string;
5204
- type: "success" | "error" | "info" | "warning";
5270
+ type: "error" | "success" | "info" | "warning";
5205
5271
  id?: number | undefined;
5206
5272
  }[] | undefined;
5207
5273
  required?: boolean | undefined;
@@ -5211,7 +5277,7 @@ declare function init(config: AuthHeroConfig): {
5211
5277
  value: string;
5212
5278
  label: string;
5213
5279
  }[] | undefined;
5214
- display?: "checkbox" | "radio" | undefined;
5280
+ display?: "radio" | "checkbox" | undefined;
5215
5281
  multiple?: boolean | undefined;
5216
5282
  default_value?: string | string[] | undefined;
5217
5283
  } | undefined;
@@ -5225,7 +5291,7 @@ declare function init(config: AuthHeroConfig): {
5225
5291
  hint?: string | undefined;
5226
5292
  messages?: {
5227
5293
  text: string;
5228
- type: "success" | "error" | "info" | "warning";
5294
+ type: "error" | "success" | "info" | "warning";
5229
5295
  id?: number | undefined;
5230
5296
  }[] | undefined;
5231
5297
  required?: boolean | undefined;
@@ -5254,7 +5320,7 @@ declare function init(config: AuthHeroConfig): {
5254
5320
  hint?: string | undefined;
5255
5321
  messages?: {
5256
5322
  text: string;
5257
- type: "success" | "error" | "info" | "warning";
5323
+ type: "error" | "success" | "info" | "warning";
5258
5324
  id?: number | undefined;
5259
5325
  }[] | undefined;
5260
5326
  required?: boolean | undefined;
@@ -5269,7 +5335,7 @@ declare function init(config: AuthHeroConfig): {
5269
5335
  hint?: string | undefined;
5270
5336
  messages?: {
5271
5337
  text: string;
5272
- type: "success" | "error" | "info" | "warning";
5338
+ type: "error" | "success" | "info" | "warning";
5273
5339
  id?: number | undefined;
5274
5340
  }[] | undefined;
5275
5341
  required?: boolean | undefined;
@@ -5290,7 +5356,7 @@ declare function init(config: AuthHeroConfig): {
5290
5356
  hint?: string | undefined;
5291
5357
  messages?: {
5292
5358
  text: string;
5293
- type: "success" | "error" | "info" | "warning";
5359
+ type: "error" | "success" | "info" | "warning";
5294
5360
  id?: number | undefined;
5295
5361
  }[] | undefined;
5296
5362
  required?: boolean | undefined;
@@ -5315,7 +5381,7 @@ declare function init(config: AuthHeroConfig): {
5315
5381
  hint?: string | undefined;
5316
5382
  messages?: {
5317
5383
  text: string;
5318
- type: "success" | "error" | "info" | "warning";
5384
+ type: "error" | "success" | "info" | "warning";
5319
5385
  id?: number | undefined;
5320
5386
  }[] | undefined;
5321
5387
  required?: boolean | undefined;
@@ -5334,7 +5400,7 @@ declare function init(config: AuthHeroConfig): {
5334
5400
  hint?: string | undefined;
5335
5401
  messages?: {
5336
5402
  text: string;
5337
- type: "success" | "error" | "info" | "warning";
5403
+ type: "error" | "success" | "info" | "warning";
5338
5404
  id?: number | undefined;
5339
5405
  }[] | undefined;
5340
5406
  required?: boolean | undefined;
@@ -5354,7 +5420,7 @@ declare function init(config: AuthHeroConfig): {
5354
5420
  hint?: string | undefined;
5355
5421
  messages?: {
5356
5422
  text: string;
5357
- type: "success" | "error" | "info" | "warning";
5423
+ type: "error" | "success" | "info" | "warning";
5358
5424
  id?: number | undefined;
5359
5425
  }[] | undefined;
5360
5426
  required?: boolean | undefined;
@@ -5373,7 +5439,7 @@ declare function init(config: AuthHeroConfig): {
5373
5439
  hint?: string | undefined;
5374
5440
  messages?: {
5375
5441
  text: string;
5376
- type: "success" | "error" | "info" | "warning";
5442
+ type: "error" | "success" | "info" | "warning";
5377
5443
  id?: number | undefined;
5378
5444
  }[] | undefined;
5379
5445
  required?: boolean | undefined;
@@ -5395,7 +5461,7 @@ declare function init(config: AuthHeroConfig): {
5395
5461
  hint?: string | undefined;
5396
5462
  messages?: {
5397
5463
  text: string;
5398
- type: "success" | "error" | "info" | "warning";
5464
+ type: "error" | "success" | "info" | "warning";
5399
5465
  id?: number | undefined;
5400
5466
  }[] | undefined;
5401
5467
  required?: boolean | undefined;
@@ -5417,7 +5483,7 @@ declare function init(config: AuthHeroConfig): {
5417
5483
  hint?: string | undefined;
5418
5484
  messages?: {
5419
5485
  text: string;
5420
- type: "success" | "error" | "info" | "warning";
5486
+ type: "error" | "success" | "info" | "warning";
5421
5487
  id?: number | undefined;
5422
5488
  }[] | undefined;
5423
5489
  required?: boolean | undefined;
@@ -5436,7 +5502,7 @@ declare function init(config: AuthHeroConfig): {
5436
5502
  hint?: string | undefined;
5437
5503
  messages?: {
5438
5504
  text: string;
5439
- type: "success" | "error" | "info" | "warning";
5505
+ type: "error" | "success" | "info" | "warning";
5440
5506
  id?: number | undefined;
5441
5507
  }[] | undefined;
5442
5508
  required?: boolean | undefined;
@@ -5461,7 +5527,7 @@ declare function init(config: AuthHeroConfig): {
5461
5527
  hint?: string | undefined;
5462
5528
  messages?: {
5463
5529
  text: string;
5464
- type: "success" | "error" | "info" | "warning";
5530
+ type: "error" | "success" | "info" | "warning";
5465
5531
  id?: number | undefined;
5466
5532
  }[] | undefined;
5467
5533
  required?: boolean | undefined;
@@ -5482,7 +5548,7 @@ declare function init(config: AuthHeroConfig): {
5482
5548
  hint?: string | undefined;
5483
5549
  messages?: {
5484
5550
  text: string;
5485
- type: "success" | "error" | "info" | "warning";
5551
+ type: "error" | "success" | "info" | "warning";
5486
5552
  id?: number | undefined;
5487
5553
  }[] | undefined;
5488
5554
  required?: boolean | undefined;
@@ -5503,7 +5569,7 @@ declare function init(config: AuthHeroConfig): {
5503
5569
  hint?: string | undefined;
5504
5570
  messages?: {
5505
5571
  text: string;
5506
- type: "success" | "error" | "info" | "warning";
5572
+ type: "error" | "success" | "info" | "warning";
5507
5573
  id?: number | undefined;
5508
5574
  }[] | undefined;
5509
5575
  required?: boolean | undefined;
@@ -5736,7 +5802,7 @@ declare function init(config: AuthHeroConfig): {
5736
5802
  hint?: string | undefined;
5737
5803
  messages?: {
5738
5804
  text: string;
5739
- type: "success" | "error" | "info" | "warning";
5805
+ type: "error" | "success" | "info" | "warning";
5740
5806
  id?: number | undefined;
5741
5807
  }[] | undefined;
5742
5808
  required?: boolean | undefined;
@@ -5754,7 +5820,7 @@ declare function init(config: AuthHeroConfig): {
5754
5820
  hint?: string | undefined;
5755
5821
  messages?: {
5756
5822
  text: string;
5757
- type: "success" | "error" | "info" | "warning";
5823
+ type: "error" | "success" | "info" | "warning";
5758
5824
  id?: number | undefined;
5759
5825
  }[] | undefined;
5760
5826
  required?: boolean | undefined;
@@ -5778,7 +5844,7 @@ declare function init(config: AuthHeroConfig): {
5778
5844
  hint?: string | undefined;
5779
5845
  messages?: {
5780
5846
  text: string;
5781
- type: "success" | "error" | "info" | "warning";
5847
+ type: "error" | "success" | "info" | "warning";
5782
5848
  id?: number | undefined;
5783
5849
  }[] | undefined;
5784
5850
  required?: boolean | undefined;
@@ -5788,7 +5854,7 @@ declare function init(config: AuthHeroConfig): {
5788
5854
  value: string;
5789
5855
  label: string;
5790
5856
  }[] | undefined;
5791
- display?: "checkbox" | "radio" | undefined;
5857
+ display?: "radio" | "checkbox" | undefined;
5792
5858
  multiple?: boolean | undefined;
5793
5859
  default_value?: string | string[] | undefined;
5794
5860
  } | undefined;
@@ -5802,7 +5868,7 @@ declare function init(config: AuthHeroConfig): {
5802
5868
  hint?: string | undefined;
5803
5869
  messages?: {
5804
5870
  text: string;
5805
- type: "success" | "error" | "info" | "warning";
5871
+ type: "error" | "success" | "info" | "warning";
5806
5872
  id?: number | undefined;
5807
5873
  }[] | undefined;
5808
5874
  required?: boolean | undefined;
@@ -5831,7 +5897,7 @@ declare function init(config: AuthHeroConfig): {
5831
5897
  hint?: string | undefined;
5832
5898
  messages?: {
5833
5899
  text: string;
5834
- type: "success" | "error" | "info" | "warning";
5900
+ type: "error" | "success" | "info" | "warning";
5835
5901
  id?: number | undefined;
5836
5902
  }[] | undefined;
5837
5903
  required?: boolean | undefined;
@@ -5846,7 +5912,7 @@ declare function init(config: AuthHeroConfig): {
5846
5912
  hint?: string | undefined;
5847
5913
  messages?: {
5848
5914
  text: string;
5849
- type: "success" | "error" | "info" | "warning";
5915
+ type: "error" | "success" | "info" | "warning";
5850
5916
  id?: number | undefined;
5851
5917
  }[] | undefined;
5852
5918
  required?: boolean | undefined;
@@ -5867,7 +5933,7 @@ declare function init(config: AuthHeroConfig): {
5867
5933
  hint?: string | undefined;
5868
5934
  messages?: {
5869
5935
  text: string;
5870
- type: "success" | "error" | "info" | "warning";
5936
+ type: "error" | "success" | "info" | "warning";
5871
5937
  id?: number | undefined;
5872
5938
  }[] | undefined;
5873
5939
  required?: boolean | undefined;
@@ -5892,7 +5958,7 @@ declare function init(config: AuthHeroConfig): {
5892
5958
  hint?: string | undefined;
5893
5959
  messages?: {
5894
5960
  text: string;
5895
- type: "success" | "error" | "info" | "warning";
5961
+ type: "error" | "success" | "info" | "warning";
5896
5962
  id?: number | undefined;
5897
5963
  }[] | undefined;
5898
5964
  required?: boolean | undefined;
@@ -5911,7 +5977,7 @@ declare function init(config: AuthHeroConfig): {
5911
5977
  hint?: string | undefined;
5912
5978
  messages?: {
5913
5979
  text: string;
5914
- type: "success" | "error" | "info" | "warning";
5980
+ type: "error" | "success" | "info" | "warning";
5915
5981
  id?: number | undefined;
5916
5982
  }[] | undefined;
5917
5983
  required?: boolean | undefined;
@@ -5931,7 +5997,7 @@ declare function init(config: AuthHeroConfig): {
5931
5997
  hint?: string | undefined;
5932
5998
  messages?: {
5933
5999
  text: string;
5934
- type: "success" | "error" | "info" | "warning";
6000
+ type: "error" | "success" | "info" | "warning";
5935
6001
  id?: number | undefined;
5936
6002
  }[] | undefined;
5937
6003
  required?: boolean | undefined;
@@ -5950,7 +6016,7 @@ declare function init(config: AuthHeroConfig): {
5950
6016
  hint?: string | undefined;
5951
6017
  messages?: {
5952
6018
  text: string;
5953
- type: "success" | "error" | "info" | "warning";
6019
+ type: "error" | "success" | "info" | "warning";
5954
6020
  id?: number | undefined;
5955
6021
  }[] | undefined;
5956
6022
  required?: boolean | undefined;
@@ -5972,7 +6038,7 @@ declare function init(config: AuthHeroConfig): {
5972
6038
  hint?: string | undefined;
5973
6039
  messages?: {
5974
6040
  text: string;
5975
- type: "success" | "error" | "info" | "warning";
6041
+ type: "error" | "success" | "info" | "warning";
5976
6042
  id?: number | undefined;
5977
6043
  }[] | undefined;
5978
6044
  required?: boolean | undefined;
@@ -5994,7 +6060,7 @@ declare function init(config: AuthHeroConfig): {
5994
6060
  hint?: string | undefined;
5995
6061
  messages?: {
5996
6062
  text: string;
5997
- type: "success" | "error" | "info" | "warning";
6063
+ type: "error" | "success" | "info" | "warning";
5998
6064
  id?: number | undefined;
5999
6065
  }[] | undefined;
6000
6066
  required?: boolean | undefined;
@@ -6013,7 +6079,7 @@ declare function init(config: AuthHeroConfig): {
6013
6079
  hint?: string | undefined;
6014
6080
  messages?: {
6015
6081
  text: string;
6016
- type: "success" | "error" | "info" | "warning";
6082
+ type: "error" | "success" | "info" | "warning";
6017
6083
  id?: number | undefined;
6018
6084
  }[] | undefined;
6019
6085
  required?: boolean | undefined;
@@ -6038,7 +6104,7 @@ declare function init(config: AuthHeroConfig): {
6038
6104
  hint?: string | undefined;
6039
6105
  messages?: {
6040
6106
  text: string;
6041
- type: "success" | "error" | "info" | "warning";
6107
+ type: "error" | "success" | "info" | "warning";
6042
6108
  id?: number | undefined;
6043
6109
  }[] | undefined;
6044
6110
  required?: boolean | undefined;
@@ -6059,7 +6125,7 @@ declare function init(config: AuthHeroConfig): {
6059
6125
  hint?: string | undefined;
6060
6126
  messages?: {
6061
6127
  text: string;
6062
- type: "success" | "error" | "info" | "warning";
6128
+ type: "error" | "success" | "info" | "warning";
6063
6129
  id?: number | undefined;
6064
6130
  }[] | undefined;
6065
6131
  required?: boolean | undefined;
@@ -6080,7 +6146,7 @@ declare function init(config: AuthHeroConfig): {
6080
6146
  hint?: string | undefined;
6081
6147
  messages?: {
6082
6148
  text: string;
6083
- type: "success" | "error" | "info" | "warning";
6149
+ type: "error" | "success" | "info" | "warning";
6084
6150
  id?: number | undefined;
6085
6151
  }[] | undefined;
6086
6152
  required?: boolean | undefined;
@@ -6328,7 +6394,7 @@ declare function init(config: AuthHeroConfig): {
6328
6394
  hint?: string | undefined;
6329
6395
  messages?: {
6330
6396
  text: string;
6331
- type: "success" | "error" | "info" | "warning";
6397
+ type: "error" | "success" | "info" | "warning";
6332
6398
  id?: number | undefined;
6333
6399
  }[] | undefined;
6334
6400
  required?: boolean | undefined;
@@ -6346,7 +6412,7 @@ declare function init(config: AuthHeroConfig): {
6346
6412
  hint?: string | undefined;
6347
6413
  messages?: {
6348
6414
  text: string;
6349
- type: "success" | "error" | "info" | "warning";
6415
+ type: "error" | "success" | "info" | "warning";
6350
6416
  id?: number | undefined;
6351
6417
  }[] | undefined;
6352
6418
  required?: boolean | undefined;
@@ -6370,7 +6436,7 @@ declare function init(config: AuthHeroConfig): {
6370
6436
  hint?: string | undefined;
6371
6437
  messages?: {
6372
6438
  text: string;
6373
- type: "success" | "error" | "info" | "warning";
6439
+ type: "error" | "success" | "info" | "warning";
6374
6440
  id?: number | undefined;
6375
6441
  }[] | undefined;
6376
6442
  required?: boolean | undefined;
@@ -6380,7 +6446,7 @@ declare function init(config: AuthHeroConfig): {
6380
6446
  value: string;
6381
6447
  label: string;
6382
6448
  }[] | undefined;
6383
- display?: "checkbox" | "radio" | undefined;
6449
+ display?: "radio" | "checkbox" | undefined;
6384
6450
  multiple?: boolean | undefined;
6385
6451
  default_value?: string | string[] | undefined;
6386
6452
  } | undefined;
@@ -6394,7 +6460,7 @@ declare function init(config: AuthHeroConfig): {
6394
6460
  hint?: string | undefined;
6395
6461
  messages?: {
6396
6462
  text: string;
6397
- type: "success" | "error" | "info" | "warning";
6463
+ type: "error" | "success" | "info" | "warning";
6398
6464
  id?: number | undefined;
6399
6465
  }[] | undefined;
6400
6466
  required?: boolean | undefined;
@@ -6423,7 +6489,7 @@ declare function init(config: AuthHeroConfig): {
6423
6489
  hint?: string | undefined;
6424
6490
  messages?: {
6425
6491
  text: string;
6426
- type: "success" | "error" | "info" | "warning";
6492
+ type: "error" | "success" | "info" | "warning";
6427
6493
  id?: number | undefined;
6428
6494
  }[] | undefined;
6429
6495
  required?: boolean | undefined;
@@ -6438,7 +6504,7 @@ declare function init(config: AuthHeroConfig): {
6438
6504
  hint?: string | undefined;
6439
6505
  messages?: {
6440
6506
  text: string;
6441
- type: "success" | "error" | "info" | "warning";
6507
+ type: "error" | "success" | "info" | "warning";
6442
6508
  id?: number | undefined;
6443
6509
  }[] | undefined;
6444
6510
  required?: boolean | undefined;
@@ -6459,7 +6525,7 @@ declare function init(config: AuthHeroConfig): {
6459
6525
  hint?: string | undefined;
6460
6526
  messages?: {
6461
6527
  text: string;
6462
- type: "success" | "error" | "info" | "warning";
6528
+ type: "error" | "success" | "info" | "warning";
6463
6529
  id?: number | undefined;
6464
6530
  }[] | undefined;
6465
6531
  required?: boolean | undefined;
@@ -6484,7 +6550,7 @@ declare function init(config: AuthHeroConfig): {
6484
6550
  hint?: string | undefined;
6485
6551
  messages?: {
6486
6552
  text: string;
6487
- type: "success" | "error" | "info" | "warning";
6553
+ type: "error" | "success" | "info" | "warning";
6488
6554
  id?: number | undefined;
6489
6555
  }[] | undefined;
6490
6556
  required?: boolean | undefined;
@@ -6503,7 +6569,7 @@ declare function init(config: AuthHeroConfig): {
6503
6569
  hint?: string | undefined;
6504
6570
  messages?: {
6505
6571
  text: string;
6506
- type: "success" | "error" | "info" | "warning";
6572
+ type: "error" | "success" | "info" | "warning";
6507
6573
  id?: number | undefined;
6508
6574
  }[] | undefined;
6509
6575
  required?: boolean | undefined;
@@ -6523,7 +6589,7 @@ declare function init(config: AuthHeroConfig): {
6523
6589
  hint?: string | undefined;
6524
6590
  messages?: {
6525
6591
  text: string;
6526
- type: "success" | "error" | "info" | "warning";
6592
+ type: "error" | "success" | "info" | "warning";
6527
6593
  id?: number | undefined;
6528
6594
  }[] | undefined;
6529
6595
  required?: boolean | undefined;
@@ -6542,7 +6608,7 @@ declare function init(config: AuthHeroConfig): {
6542
6608
  hint?: string | undefined;
6543
6609
  messages?: {
6544
6610
  text: string;
6545
- type: "success" | "error" | "info" | "warning";
6611
+ type: "error" | "success" | "info" | "warning";
6546
6612
  id?: number | undefined;
6547
6613
  }[] | undefined;
6548
6614
  required?: boolean | undefined;
@@ -6564,7 +6630,7 @@ declare function init(config: AuthHeroConfig): {
6564
6630
  hint?: string | undefined;
6565
6631
  messages?: {
6566
6632
  text: string;
6567
- type: "success" | "error" | "info" | "warning";
6633
+ type: "error" | "success" | "info" | "warning";
6568
6634
  id?: number | undefined;
6569
6635
  }[] | undefined;
6570
6636
  required?: boolean | undefined;
@@ -6586,7 +6652,7 @@ declare function init(config: AuthHeroConfig): {
6586
6652
  hint?: string | undefined;
6587
6653
  messages?: {
6588
6654
  text: string;
6589
- type: "success" | "error" | "info" | "warning";
6655
+ type: "error" | "success" | "info" | "warning";
6590
6656
  id?: number | undefined;
6591
6657
  }[] | undefined;
6592
6658
  required?: boolean | undefined;
@@ -6605,7 +6671,7 @@ declare function init(config: AuthHeroConfig): {
6605
6671
  hint?: string | undefined;
6606
6672
  messages?: {
6607
6673
  text: string;
6608
- type: "success" | "error" | "info" | "warning";
6674
+ type: "error" | "success" | "info" | "warning";
6609
6675
  id?: number | undefined;
6610
6676
  }[] | undefined;
6611
6677
  required?: boolean | undefined;
@@ -6630,7 +6696,7 @@ declare function init(config: AuthHeroConfig): {
6630
6696
  hint?: string | undefined;
6631
6697
  messages?: {
6632
6698
  text: string;
6633
- type: "success" | "error" | "info" | "warning";
6699
+ type: "error" | "success" | "info" | "warning";
6634
6700
  id?: number | undefined;
6635
6701
  }[] | undefined;
6636
6702
  required?: boolean | undefined;
@@ -6651,7 +6717,7 @@ declare function init(config: AuthHeroConfig): {
6651
6717
  hint?: string | undefined;
6652
6718
  messages?: {
6653
6719
  text: string;
6654
- type: "success" | "error" | "info" | "warning";
6720
+ type: "error" | "success" | "info" | "warning";
6655
6721
  id?: number | undefined;
6656
6722
  }[] | undefined;
6657
6723
  required?: boolean | undefined;
@@ -6672,7 +6738,7 @@ declare function init(config: AuthHeroConfig): {
6672
6738
  hint?: string | undefined;
6673
6739
  messages?: {
6674
6740
  text: string;
6675
- type: "success" | "error" | "info" | "warning";
6741
+ type: "error" | "success" | "info" | "warning";
6676
6742
  id?: number | undefined;
6677
6743
  }[] | undefined;
6678
6744
  required?: boolean | undefined;
@@ -6926,7 +6992,7 @@ declare function init(config: AuthHeroConfig): {
6926
6992
  hint?: string | undefined;
6927
6993
  messages?: {
6928
6994
  text: string;
6929
- type: "success" | "error" | "info" | "warning";
6995
+ type: "error" | "success" | "info" | "warning";
6930
6996
  id?: number | undefined;
6931
6997
  }[] | undefined;
6932
6998
  required?: boolean | undefined;
@@ -6944,7 +7010,7 @@ declare function init(config: AuthHeroConfig): {
6944
7010
  hint?: string | undefined;
6945
7011
  messages?: {
6946
7012
  text: string;
6947
- type: "success" | "error" | "info" | "warning";
7013
+ type: "error" | "success" | "info" | "warning";
6948
7014
  id?: number | undefined;
6949
7015
  }[] | undefined;
6950
7016
  required?: boolean | undefined;
@@ -6968,7 +7034,7 @@ declare function init(config: AuthHeroConfig): {
6968
7034
  hint?: string | undefined;
6969
7035
  messages?: {
6970
7036
  text: string;
6971
- type: "success" | "error" | "info" | "warning";
7037
+ type: "error" | "success" | "info" | "warning";
6972
7038
  id?: number | undefined;
6973
7039
  }[] | undefined;
6974
7040
  required?: boolean | undefined;
@@ -6978,7 +7044,7 @@ declare function init(config: AuthHeroConfig): {
6978
7044
  value: string;
6979
7045
  label: string;
6980
7046
  }[] | undefined;
6981
- display?: "checkbox" | "radio" | undefined;
7047
+ display?: "radio" | "checkbox" | undefined;
6982
7048
  multiple?: boolean | undefined;
6983
7049
  default_value?: string | string[] | undefined;
6984
7050
  } | undefined;
@@ -6992,7 +7058,7 @@ declare function init(config: AuthHeroConfig): {
6992
7058
  hint?: string | undefined;
6993
7059
  messages?: {
6994
7060
  text: string;
6995
- type: "success" | "error" | "info" | "warning";
7061
+ type: "error" | "success" | "info" | "warning";
6996
7062
  id?: number | undefined;
6997
7063
  }[] | undefined;
6998
7064
  required?: boolean | undefined;
@@ -7017,7 +7083,7 @@ declare function init(config: AuthHeroConfig): {
7017
7083
  hint?: string | undefined;
7018
7084
  messages?: {
7019
7085
  text: string;
7020
- type: "success" | "error" | "info" | "warning";
7086
+ type: "error" | "success" | "info" | "warning";
7021
7087
  id?: number | undefined;
7022
7088
  }[] | undefined;
7023
7089
  required?: boolean | undefined;
@@ -7032,7 +7098,7 @@ declare function init(config: AuthHeroConfig): {
7032
7098
  hint?: string | undefined;
7033
7099
  messages?: {
7034
7100
  text: string;
7035
- type: "success" | "error" | "info" | "warning";
7101
+ type: "error" | "success" | "info" | "warning";
7036
7102
  id?: number | undefined;
7037
7103
  }[] | undefined;
7038
7104
  required?: boolean | undefined;
@@ -7053,7 +7119,7 @@ declare function init(config: AuthHeroConfig): {
7053
7119
  hint?: string | undefined;
7054
7120
  messages?: {
7055
7121
  text: string;
7056
- type: "success" | "error" | "info" | "warning";
7122
+ type: "error" | "success" | "info" | "warning";
7057
7123
  id?: number | undefined;
7058
7124
  }[] | undefined;
7059
7125
  required?: boolean | undefined;
@@ -7078,7 +7144,7 @@ declare function init(config: AuthHeroConfig): {
7078
7144
  hint?: string | undefined;
7079
7145
  messages?: {
7080
7146
  text: string;
7081
- type: "success" | "error" | "info" | "warning";
7147
+ type: "error" | "success" | "info" | "warning";
7082
7148
  id?: number | undefined;
7083
7149
  }[] | undefined;
7084
7150
  required?: boolean | undefined;
@@ -7097,7 +7163,7 @@ declare function init(config: AuthHeroConfig): {
7097
7163
  hint?: string | undefined;
7098
7164
  messages?: {
7099
7165
  text: string;
7100
- type: "success" | "error" | "info" | "warning";
7166
+ type: "error" | "success" | "info" | "warning";
7101
7167
  id?: number | undefined;
7102
7168
  }[] | undefined;
7103
7169
  required?: boolean | undefined;
@@ -7117,7 +7183,7 @@ declare function init(config: AuthHeroConfig): {
7117
7183
  hint?: string | undefined;
7118
7184
  messages?: {
7119
7185
  text: string;
7120
- type: "success" | "error" | "info" | "warning";
7186
+ type: "error" | "success" | "info" | "warning";
7121
7187
  id?: number | undefined;
7122
7188
  }[] | undefined;
7123
7189
  required?: boolean | undefined;
@@ -7136,7 +7202,7 @@ declare function init(config: AuthHeroConfig): {
7136
7202
  hint?: string | undefined;
7137
7203
  messages?: {
7138
7204
  text: string;
7139
- type: "success" | "error" | "info" | "warning";
7205
+ type: "error" | "success" | "info" | "warning";
7140
7206
  id?: number | undefined;
7141
7207
  }[] | undefined;
7142
7208
  required?: boolean | undefined;
@@ -7158,7 +7224,7 @@ declare function init(config: AuthHeroConfig): {
7158
7224
  hint?: string | undefined;
7159
7225
  messages?: {
7160
7226
  text: string;
7161
- type: "success" | "error" | "info" | "warning";
7227
+ type: "error" | "success" | "info" | "warning";
7162
7228
  id?: number | undefined;
7163
7229
  }[] | undefined;
7164
7230
  required?: boolean | undefined;
@@ -7180,7 +7246,7 @@ declare function init(config: AuthHeroConfig): {
7180
7246
  hint?: string | undefined;
7181
7247
  messages?: {
7182
7248
  text: string;
7183
- type: "success" | "error" | "info" | "warning";
7249
+ type: "error" | "success" | "info" | "warning";
7184
7250
  id?: number | undefined;
7185
7251
  }[] | undefined;
7186
7252
  required?: boolean | undefined;
@@ -7199,7 +7265,7 @@ declare function init(config: AuthHeroConfig): {
7199
7265
  hint?: string | undefined;
7200
7266
  messages?: {
7201
7267
  text: string;
7202
- type: "success" | "error" | "info" | "warning";
7268
+ type: "error" | "success" | "info" | "warning";
7203
7269
  id?: number | undefined;
7204
7270
  }[] | undefined;
7205
7271
  required?: boolean | undefined;
@@ -7224,7 +7290,7 @@ declare function init(config: AuthHeroConfig): {
7224
7290
  hint?: string | undefined;
7225
7291
  messages?: {
7226
7292
  text: string;
7227
- type: "success" | "error" | "info" | "warning";
7293
+ type: "error" | "success" | "info" | "warning";
7228
7294
  id?: number | undefined;
7229
7295
  }[] | undefined;
7230
7296
  required?: boolean | undefined;
@@ -7245,7 +7311,7 @@ declare function init(config: AuthHeroConfig): {
7245
7311
  hint?: string | undefined;
7246
7312
  messages?: {
7247
7313
  text: string;
7248
- type: "success" | "error" | "info" | "warning";
7314
+ type: "error" | "success" | "info" | "warning";
7249
7315
  id?: number | undefined;
7250
7316
  }[] | undefined;
7251
7317
  required?: boolean | undefined;
@@ -7266,7 +7332,7 @@ declare function init(config: AuthHeroConfig): {
7266
7332
  hint?: string | undefined;
7267
7333
  messages?: {
7268
7334
  text: string;
7269
- type: "success" | "error" | "info" | "warning";
7335
+ type: "error" | "success" | "info" | "warning";
7270
7336
  id?: number | undefined;
7271
7337
  }[] | undefined;
7272
7338
  required?: boolean | undefined;
@@ -7497,7 +7563,7 @@ declare function init(config: AuthHeroConfig): {
7497
7563
  hint?: string | undefined;
7498
7564
  messages?: {
7499
7565
  text: string;
7500
- type: "success" | "error" | "info" | "warning";
7566
+ type: "error" | "success" | "info" | "warning";
7501
7567
  id?: number | undefined;
7502
7568
  }[] | undefined;
7503
7569
  required?: boolean | undefined;
@@ -7515,7 +7581,7 @@ declare function init(config: AuthHeroConfig): {
7515
7581
  hint?: string | undefined;
7516
7582
  messages?: {
7517
7583
  text: string;
7518
- type: "success" | "error" | "info" | "warning";
7584
+ type: "error" | "success" | "info" | "warning";
7519
7585
  id?: number | undefined;
7520
7586
  }[] | undefined;
7521
7587
  required?: boolean | undefined;
@@ -7539,7 +7605,7 @@ declare function init(config: AuthHeroConfig): {
7539
7605
  hint?: string | undefined;
7540
7606
  messages?: {
7541
7607
  text: string;
7542
- type: "success" | "error" | "info" | "warning";
7608
+ type: "error" | "success" | "info" | "warning";
7543
7609
  id?: number | undefined;
7544
7610
  }[] | undefined;
7545
7611
  required?: boolean | undefined;
@@ -7549,7 +7615,7 @@ declare function init(config: AuthHeroConfig): {
7549
7615
  value: string;
7550
7616
  label: string;
7551
7617
  }[] | undefined;
7552
- display?: "checkbox" | "radio" | undefined;
7618
+ display?: "radio" | "checkbox" | undefined;
7553
7619
  multiple?: boolean | undefined;
7554
7620
  default_value?: string | string[] | undefined;
7555
7621
  } | undefined;
@@ -7563,7 +7629,7 @@ declare function init(config: AuthHeroConfig): {
7563
7629
  hint?: string | undefined;
7564
7630
  messages?: {
7565
7631
  text: string;
7566
- type: "success" | "error" | "info" | "warning";
7632
+ type: "error" | "success" | "info" | "warning";
7567
7633
  id?: number | undefined;
7568
7634
  }[] | undefined;
7569
7635
  required?: boolean | undefined;
@@ -7592,7 +7658,7 @@ declare function init(config: AuthHeroConfig): {
7592
7658
  hint?: string | undefined;
7593
7659
  messages?: {
7594
7660
  text: string;
7595
- type: "success" | "error" | "info" | "warning";
7661
+ type: "error" | "success" | "info" | "warning";
7596
7662
  id?: number | undefined;
7597
7663
  }[] | undefined;
7598
7664
  required?: boolean | undefined;
@@ -7607,7 +7673,7 @@ declare function init(config: AuthHeroConfig): {
7607
7673
  hint?: string | undefined;
7608
7674
  messages?: {
7609
7675
  text: string;
7610
- type: "success" | "error" | "info" | "warning";
7676
+ type: "error" | "success" | "info" | "warning";
7611
7677
  id?: number | undefined;
7612
7678
  }[] | undefined;
7613
7679
  required?: boolean | undefined;
@@ -7628,7 +7694,7 @@ declare function init(config: AuthHeroConfig): {
7628
7694
  hint?: string | undefined;
7629
7695
  messages?: {
7630
7696
  text: string;
7631
- type: "success" | "error" | "info" | "warning";
7697
+ type: "error" | "success" | "info" | "warning";
7632
7698
  id?: number | undefined;
7633
7699
  }[] | undefined;
7634
7700
  required?: boolean | undefined;
@@ -7653,7 +7719,7 @@ declare function init(config: AuthHeroConfig): {
7653
7719
  hint?: string | undefined;
7654
7720
  messages?: {
7655
7721
  text: string;
7656
- type: "success" | "error" | "info" | "warning";
7722
+ type: "error" | "success" | "info" | "warning";
7657
7723
  id?: number | undefined;
7658
7724
  }[] | undefined;
7659
7725
  required?: boolean | undefined;
@@ -7672,7 +7738,7 @@ declare function init(config: AuthHeroConfig): {
7672
7738
  hint?: string | undefined;
7673
7739
  messages?: {
7674
7740
  text: string;
7675
- type: "success" | "error" | "info" | "warning";
7741
+ type: "error" | "success" | "info" | "warning";
7676
7742
  id?: number | undefined;
7677
7743
  }[] | undefined;
7678
7744
  required?: boolean | undefined;
@@ -7692,7 +7758,7 @@ declare function init(config: AuthHeroConfig): {
7692
7758
  hint?: string | undefined;
7693
7759
  messages?: {
7694
7760
  text: string;
7695
- type: "success" | "error" | "info" | "warning";
7761
+ type: "error" | "success" | "info" | "warning";
7696
7762
  id?: number | undefined;
7697
7763
  }[] | undefined;
7698
7764
  required?: boolean | undefined;
@@ -7711,7 +7777,7 @@ declare function init(config: AuthHeroConfig): {
7711
7777
  hint?: string | undefined;
7712
7778
  messages?: {
7713
7779
  text: string;
7714
- type: "success" | "error" | "info" | "warning";
7780
+ type: "error" | "success" | "info" | "warning";
7715
7781
  id?: number | undefined;
7716
7782
  }[] | undefined;
7717
7783
  required?: boolean | undefined;
@@ -7733,7 +7799,7 @@ declare function init(config: AuthHeroConfig): {
7733
7799
  hint?: string | undefined;
7734
7800
  messages?: {
7735
7801
  text: string;
7736
- type: "success" | "error" | "info" | "warning";
7802
+ type: "error" | "success" | "info" | "warning";
7737
7803
  id?: number | undefined;
7738
7804
  }[] | undefined;
7739
7805
  required?: boolean | undefined;
@@ -7755,7 +7821,7 @@ declare function init(config: AuthHeroConfig): {
7755
7821
  hint?: string | undefined;
7756
7822
  messages?: {
7757
7823
  text: string;
7758
- type: "success" | "error" | "info" | "warning";
7824
+ type: "error" | "success" | "info" | "warning";
7759
7825
  id?: number | undefined;
7760
7826
  }[] | undefined;
7761
7827
  required?: boolean | undefined;
@@ -7774,7 +7840,7 @@ declare function init(config: AuthHeroConfig): {
7774
7840
  hint?: string | undefined;
7775
7841
  messages?: {
7776
7842
  text: string;
7777
- type: "success" | "error" | "info" | "warning";
7843
+ type: "error" | "success" | "info" | "warning";
7778
7844
  id?: number | undefined;
7779
7845
  }[] | undefined;
7780
7846
  required?: boolean | undefined;
@@ -7799,7 +7865,7 @@ declare function init(config: AuthHeroConfig): {
7799
7865
  hint?: string | undefined;
7800
7866
  messages?: {
7801
7867
  text: string;
7802
- type: "success" | "error" | "info" | "warning";
7868
+ type: "error" | "success" | "info" | "warning";
7803
7869
  id?: number | undefined;
7804
7870
  }[] | undefined;
7805
7871
  required?: boolean | undefined;
@@ -7820,7 +7886,7 @@ declare function init(config: AuthHeroConfig): {
7820
7886
  hint?: string | undefined;
7821
7887
  messages?: {
7822
7888
  text: string;
7823
- type: "success" | "error" | "info" | "warning";
7889
+ type: "error" | "success" | "info" | "warning";
7824
7890
  id?: number | undefined;
7825
7891
  }[] | undefined;
7826
7892
  required?: boolean | undefined;
@@ -7841,7 +7907,7 @@ declare function init(config: AuthHeroConfig): {
7841
7907
  hint?: string | undefined;
7842
7908
  messages?: {
7843
7909
  text: string;
7844
- type: "success" | "error" | "info" | "warning";
7910
+ type: "error" | "success" | "info" | "warning";
7845
7911
  id?: number | undefined;
7846
7912
  }[] | undefined;
7847
7913
  required?: boolean | undefined;
@@ -8074,7 +8140,7 @@ declare function init(config: AuthHeroConfig): {
8074
8140
  hint?: string | undefined;
8075
8141
  messages?: {
8076
8142
  text: string;
8077
- type: "success" | "error" | "info" | "warning";
8143
+ type: "error" | "success" | "info" | "warning";
8078
8144
  id?: number | undefined;
8079
8145
  }[] | undefined;
8080
8146
  required?: boolean | undefined;
@@ -8092,7 +8158,7 @@ declare function init(config: AuthHeroConfig): {
8092
8158
  hint?: string | undefined;
8093
8159
  messages?: {
8094
8160
  text: string;
8095
- type: "success" | "error" | "info" | "warning";
8161
+ type: "error" | "success" | "info" | "warning";
8096
8162
  id?: number | undefined;
8097
8163
  }[] | undefined;
8098
8164
  required?: boolean | undefined;
@@ -8116,7 +8182,7 @@ declare function init(config: AuthHeroConfig): {
8116
8182
  hint?: string | undefined;
8117
8183
  messages?: {
8118
8184
  text: string;
8119
- type: "success" | "error" | "info" | "warning";
8185
+ type: "error" | "success" | "info" | "warning";
8120
8186
  id?: number | undefined;
8121
8187
  }[] | undefined;
8122
8188
  required?: boolean | undefined;
@@ -8126,7 +8192,7 @@ declare function init(config: AuthHeroConfig): {
8126
8192
  value: string;
8127
8193
  label: string;
8128
8194
  }[] | undefined;
8129
- display?: "checkbox" | "radio" | undefined;
8195
+ display?: "radio" | "checkbox" | undefined;
8130
8196
  multiple?: boolean | undefined;
8131
8197
  default_value?: string | string[] | undefined;
8132
8198
  } | undefined;
@@ -8140,7 +8206,7 @@ declare function init(config: AuthHeroConfig): {
8140
8206
  hint?: string | undefined;
8141
8207
  messages?: {
8142
8208
  text: string;
8143
- type: "success" | "error" | "info" | "warning";
8209
+ type: "error" | "success" | "info" | "warning";
8144
8210
  id?: number | undefined;
8145
8211
  }[] | undefined;
8146
8212
  required?: boolean | undefined;
@@ -8165,7 +8231,7 @@ declare function init(config: AuthHeroConfig): {
8165
8231
  hint?: string | undefined;
8166
8232
  messages?: {
8167
8233
  text: string;
8168
- type: "success" | "error" | "info" | "warning";
8234
+ type: "error" | "success" | "info" | "warning";
8169
8235
  id?: number | undefined;
8170
8236
  }[] | undefined;
8171
8237
  required?: boolean | undefined;
@@ -8180,7 +8246,7 @@ declare function init(config: AuthHeroConfig): {
8180
8246
  hint?: string | undefined;
8181
8247
  messages?: {
8182
8248
  text: string;
8183
- type: "success" | "error" | "info" | "warning";
8249
+ type: "error" | "success" | "info" | "warning";
8184
8250
  id?: number | undefined;
8185
8251
  }[] | undefined;
8186
8252
  required?: boolean | undefined;
@@ -8201,7 +8267,7 @@ declare function init(config: AuthHeroConfig): {
8201
8267
  hint?: string | undefined;
8202
8268
  messages?: {
8203
8269
  text: string;
8204
- type: "success" | "error" | "info" | "warning";
8270
+ type: "error" | "success" | "info" | "warning";
8205
8271
  id?: number | undefined;
8206
8272
  }[] | undefined;
8207
8273
  required?: boolean | undefined;
@@ -8226,7 +8292,7 @@ declare function init(config: AuthHeroConfig): {
8226
8292
  hint?: string | undefined;
8227
8293
  messages?: {
8228
8294
  text: string;
8229
- type: "success" | "error" | "info" | "warning";
8295
+ type: "error" | "success" | "info" | "warning";
8230
8296
  id?: number | undefined;
8231
8297
  }[] | undefined;
8232
8298
  required?: boolean | undefined;
@@ -8245,7 +8311,7 @@ declare function init(config: AuthHeroConfig): {
8245
8311
  hint?: string | undefined;
8246
8312
  messages?: {
8247
8313
  text: string;
8248
- type: "success" | "error" | "info" | "warning";
8314
+ type: "error" | "success" | "info" | "warning";
8249
8315
  id?: number | undefined;
8250
8316
  }[] | undefined;
8251
8317
  required?: boolean | undefined;
@@ -8265,7 +8331,7 @@ declare function init(config: AuthHeroConfig): {
8265
8331
  hint?: string | undefined;
8266
8332
  messages?: {
8267
8333
  text: string;
8268
- type: "success" | "error" | "info" | "warning";
8334
+ type: "error" | "success" | "info" | "warning";
8269
8335
  id?: number | undefined;
8270
8336
  }[] | undefined;
8271
8337
  required?: boolean | undefined;
@@ -8284,7 +8350,7 @@ declare function init(config: AuthHeroConfig): {
8284
8350
  hint?: string | undefined;
8285
8351
  messages?: {
8286
8352
  text: string;
8287
- type: "success" | "error" | "info" | "warning";
8353
+ type: "error" | "success" | "info" | "warning";
8288
8354
  id?: number | undefined;
8289
8355
  }[] | undefined;
8290
8356
  required?: boolean | undefined;
@@ -8306,7 +8372,7 @@ declare function init(config: AuthHeroConfig): {
8306
8372
  hint?: string | undefined;
8307
8373
  messages?: {
8308
8374
  text: string;
8309
- type: "success" | "error" | "info" | "warning";
8375
+ type: "error" | "success" | "info" | "warning";
8310
8376
  id?: number | undefined;
8311
8377
  }[] | undefined;
8312
8378
  required?: boolean | undefined;
@@ -8328,7 +8394,7 @@ declare function init(config: AuthHeroConfig): {
8328
8394
  hint?: string | undefined;
8329
8395
  messages?: {
8330
8396
  text: string;
8331
- type: "success" | "error" | "info" | "warning";
8397
+ type: "error" | "success" | "info" | "warning";
8332
8398
  id?: number | undefined;
8333
8399
  }[] | undefined;
8334
8400
  required?: boolean | undefined;
@@ -8347,7 +8413,7 @@ declare function init(config: AuthHeroConfig): {
8347
8413
  hint?: string | undefined;
8348
8414
  messages?: {
8349
8415
  text: string;
8350
- type: "success" | "error" | "info" | "warning";
8416
+ type: "error" | "success" | "info" | "warning";
8351
8417
  id?: number | undefined;
8352
8418
  }[] | undefined;
8353
8419
  required?: boolean | undefined;
@@ -8372,7 +8438,7 @@ declare function init(config: AuthHeroConfig): {
8372
8438
  hint?: string | undefined;
8373
8439
  messages?: {
8374
8440
  text: string;
8375
- type: "success" | "error" | "info" | "warning";
8441
+ type: "error" | "success" | "info" | "warning";
8376
8442
  id?: number | undefined;
8377
8443
  }[] | undefined;
8378
8444
  required?: boolean | undefined;
@@ -8393,7 +8459,7 @@ declare function init(config: AuthHeroConfig): {
8393
8459
  hint?: string | undefined;
8394
8460
  messages?: {
8395
8461
  text: string;
8396
- type: "success" | "error" | "info" | "warning";
8462
+ type: "error" | "success" | "info" | "warning";
8397
8463
  id?: number | undefined;
8398
8464
  }[] | undefined;
8399
8465
  required?: boolean | undefined;
@@ -8414,7 +8480,7 @@ declare function init(config: AuthHeroConfig): {
8414
8480
  hint?: string | undefined;
8415
8481
  messages?: {
8416
8482
  text: string;
8417
- type: "success" | "error" | "info" | "warning";
8483
+ type: "error" | "success" | "info" | "warning";
8418
8484
  id?: number | undefined;
8419
8485
  }[] | undefined;
8420
8486
  required?: boolean | undefined;
@@ -8645,7 +8711,7 @@ declare function init(config: AuthHeroConfig): {
8645
8711
  hint?: string | undefined;
8646
8712
  messages?: {
8647
8713
  text: string;
8648
- type: "success" | "error" | "info" | "warning";
8714
+ type: "error" | "success" | "info" | "warning";
8649
8715
  id?: number | undefined;
8650
8716
  }[] | undefined;
8651
8717
  required?: boolean | undefined;
@@ -8663,7 +8729,7 @@ declare function init(config: AuthHeroConfig): {
8663
8729
  hint?: string | undefined;
8664
8730
  messages?: {
8665
8731
  text: string;
8666
- type: "success" | "error" | "info" | "warning";
8732
+ type: "error" | "success" | "info" | "warning";
8667
8733
  id?: number | undefined;
8668
8734
  }[] | undefined;
8669
8735
  required?: boolean | undefined;
@@ -8687,7 +8753,7 @@ declare function init(config: AuthHeroConfig): {
8687
8753
  hint?: string | undefined;
8688
8754
  messages?: {
8689
8755
  text: string;
8690
- type: "success" | "error" | "info" | "warning";
8756
+ type: "error" | "success" | "info" | "warning";
8691
8757
  id?: number | undefined;
8692
8758
  }[] | undefined;
8693
8759
  required?: boolean | undefined;
@@ -8697,7 +8763,7 @@ declare function init(config: AuthHeroConfig): {
8697
8763
  value: string;
8698
8764
  label: string;
8699
8765
  }[] | undefined;
8700
- display?: "checkbox" | "radio" | undefined;
8766
+ display?: "radio" | "checkbox" | undefined;
8701
8767
  multiple?: boolean | undefined;
8702
8768
  default_value?: string | string[] | undefined;
8703
8769
  } | undefined;
@@ -8711,7 +8777,7 @@ declare function init(config: AuthHeroConfig): {
8711
8777
  hint?: string | undefined;
8712
8778
  messages?: {
8713
8779
  text: string;
8714
- type: "success" | "error" | "info" | "warning";
8780
+ type: "error" | "success" | "info" | "warning";
8715
8781
  id?: number | undefined;
8716
8782
  }[] | undefined;
8717
8783
  required?: boolean | undefined;
@@ -8740,7 +8806,7 @@ declare function init(config: AuthHeroConfig): {
8740
8806
  hint?: string | undefined;
8741
8807
  messages?: {
8742
8808
  text: string;
8743
- type: "success" | "error" | "info" | "warning";
8809
+ type: "error" | "success" | "info" | "warning";
8744
8810
  id?: number | undefined;
8745
8811
  }[] | undefined;
8746
8812
  required?: boolean | undefined;
@@ -8755,7 +8821,7 @@ declare function init(config: AuthHeroConfig): {
8755
8821
  hint?: string | undefined;
8756
8822
  messages?: {
8757
8823
  text: string;
8758
- type: "success" | "error" | "info" | "warning";
8824
+ type: "error" | "success" | "info" | "warning";
8759
8825
  id?: number | undefined;
8760
8826
  }[] | undefined;
8761
8827
  required?: boolean | undefined;
@@ -8776,7 +8842,7 @@ declare function init(config: AuthHeroConfig): {
8776
8842
  hint?: string | undefined;
8777
8843
  messages?: {
8778
8844
  text: string;
8779
- type: "success" | "error" | "info" | "warning";
8845
+ type: "error" | "success" | "info" | "warning";
8780
8846
  id?: number | undefined;
8781
8847
  }[] | undefined;
8782
8848
  required?: boolean | undefined;
@@ -8801,7 +8867,7 @@ declare function init(config: AuthHeroConfig): {
8801
8867
  hint?: string | undefined;
8802
8868
  messages?: {
8803
8869
  text: string;
8804
- type: "success" | "error" | "info" | "warning";
8870
+ type: "error" | "success" | "info" | "warning";
8805
8871
  id?: number | undefined;
8806
8872
  }[] | undefined;
8807
8873
  required?: boolean | undefined;
@@ -8820,7 +8886,7 @@ declare function init(config: AuthHeroConfig): {
8820
8886
  hint?: string | undefined;
8821
8887
  messages?: {
8822
8888
  text: string;
8823
- type: "success" | "error" | "info" | "warning";
8889
+ type: "error" | "success" | "info" | "warning";
8824
8890
  id?: number | undefined;
8825
8891
  }[] | undefined;
8826
8892
  required?: boolean | undefined;
@@ -8840,7 +8906,7 @@ declare function init(config: AuthHeroConfig): {
8840
8906
  hint?: string | undefined;
8841
8907
  messages?: {
8842
8908
  text: string;
8843
- type: "success" | "error" | "info" | "warning";
8909
+ type: "error" | "success" | "info" | "warning";
8844
8910
  id?: number | undefined;
8845
8911
  }[] | undefined;
8846
8912
  required?: boolean | undefined;
@@ -8859,7 +8925,7 @@ declare function init(config: AuthHeroConfig): {
8859
8925
  hint?: string | undefined;
8860
8926
  messages?: {
8861
8927
  text: string;
8862
- type: "success" | "error" | "info" | "warning";
8928
+ type: "error" | "success" | "info" | "warning";
8863
8929
  id?: number | undefined;
8864
8930
  }[] | undefined;
8865
8931
  required?: boolean | undefined;
@@ -8881,7 +8947,7 @@ declare function init(config: AuthHeroConfig): {
8881
8947
  hint?: string | undefined;
8882
8948
  messages?: {
8883
8949
  text: string;
8884
- type: "success" | "error" | "info" | "warning";
8950
+ type: "error" | "success" | "info" | "warning";
8885
8951
  id?: number | undefined;
8886
8952
  }[] | undefined;
8887
8953
  required?: boolean | undefined;
@@ -8903,7 +8969,7 @@ declare function init(config: AuthHeroConfig): {
8903
8969
  hint?: string | undefined;
8904
8970
  messages?: {
8905
8971
  text: string;
8906
- type: "success" | "error" | "info" | "warning";
8972
+ type: "error" | "success" | "info" | "warning";
8907
8973
  id?: number | undefined;
8908
8974
  }[] | undefined;
8909
8975
  required?: boolean | undefined;
@@ -8922,7 +8988,7 @@ declare function init(config: AuthHeroConfig): {
8922
8988
  hint?: string | undefined;
8923
8989
  messages?: {
8924
8990
  text: string;
8925
- type: "success" | "error" | "info" | "warning";
8991
+ type: "error" | "success" | "info" | "warning";
8926
8992
  id?: number | undefined;
8927
8993
  }[] | undefined;
8928
8994
  required?: boolean | undefined;
@@ -8947,7 +9013,7 @@ declare function init(config: AuthHeroConfig): {
8947
9013
  hint?: string | undefined;
8948
9014
  messages?: {
8949
9015
  text: string;
8950
- type: "success" | "error" | "info" | "warning";
9016
+ type: "error" | "success" | "info" | "warning";
8951
9017
  id?: number | undefined;
8952
9018
  }[] | undefined;
8953
9019
  required?: boolean | undefined;
@@ -8968,7 +9034,7 @@ declare function init(config: AuthHeroConfig): {
8968
9034
  hint?: string | undefined;
8969
9035
  messages?: {
8970
9036
  text: string;
8971
- type: "success" | "error" | "info" | "warning";
9037
+ type: "error" | "success" | "info" | "warning";
8972
9038
  id?: number | undefined;
8973
9039
  }[] | undefined;
8974
9040
  required?: boolean | undefined;
@@ -8989,7 +9055,7 @@ declare function init(config: AuthHeroConfig): {
8989
9055
  hint?: string | undefined;
8990
9056
  messages?: {
8991
9057
  text: string;
8992
- type: "success" | "error" | "info" | "warning";
9058
+ type: "error" | "success" | "info" | "warning";
8993
9059
  id?: number | undefined;
8994
9060
  }[] | undefined;
8995
9061
  required?: boolean | undefined;
@@ -9219,7 +9285,7 @@ declare function init(config: AuthHeroConfig): {
9219
9285
  };
9220
9286
  };
9221
9287
  output: {
9222
- prompt: "mfa" | "organizations" | "status" | "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";
9288
+ prompt: "mfa" | "organizations" | "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";
9223
9289
  language: string;
9224
9290
  }[];
9225
9291
  outputFormat: "json";
@@ -9257,7 +9323,7 @@ declare function init(config: AuthHeroConfig): {
9257
9323
  $get: {
9258
9324
  input: {
9259
9325
  param: {
9260
- prompt: "mfa" | "organizations" | "status" | "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";
9326
+ prompt: "mfa" | "organizations" | "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";
9261
9327
  language: string;
9262
9328
  };
9263
9329
  } & {
@@ -9279,7 +9345,7 @@ declare function init(config: AuthHeroConfig): {
9279
9345
  $put: {
9280
9346
  input: {
9281
9347
  param: {
9282
- prompt: "mfa" | "organizations" | "status" | "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";
9348
+ prompt: "mfa" | "organizations" | "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";
9283
9349
  language: string;
9284
9350
  };
9285
9351
  } & {
@@ -9303,7 +9369,7 @@ declare function init(config: AuthHeroConfig): {
9303
9369
  $delete: {
9304
9370
  input: {
9305
9371
  param: {
9306
- prompt: "mfa" | "organizations" | "status" | "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";
9372
+ prompt: "mfa" | "organizations" | "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";
9307
9373
  language: string;
9308
9374
  };
9309
9375
  } & {
@@ -10165,7 +10231,7 @@ declare function init(config: AuthHeroConfig): {
10165
10231
  };
10166
10232
  } | {
10167
10233
  mode: "inline";
10168
- status: "success" | "error";
10234
+ status: "error" | "success";
10169
10235
  connection_id: string;
10170
10236
  connection_name: string;
10171
10237
  strategy: string;
@@ -10201,7 +10267,7 @@ declare function init(config: AuthHeroConfig): {
10201
10267
  tenant_id: string;
10202
10268
  created_at: string;
10203
10269
  updated_at: string;
10204
- deploymentStatus: "deployed" | "failed" | "not_required";
10270
+ deploymentStatus: "failed" | "deployed" | "not_required";
10205
10271
  secrets?: {
10206
10272
  [x: string]: string;
10207
10273
  } | undefined;
@@ -10291,7 +10357,7 @@ declare function init(config: AuthHeroConfig): {
10291
10357
  tenant_id: string;
10292
10358
  created_at: string;
10293
10359
  updated_at: string;
10294
- deploymentStatus: "deployed" | "failed" | "not_required";
10360
+ deploymentStatus: "failed" | "deployed" | "not_required";
10295
10361
  secrets?: {
10296
10362
  [x: string]: string;
10297
10363
  } | undefined;
@@ -11052,7 +11118,7 @@ declare function init(config: AuthHeroConfig): {
11052
11118
  created_at: string;
11053
11119
  updated_at: string;
11054
11120
  name: string;
11055
- provider: "auth0" | "oidc" | "cognito" | "okta";
11121
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11056
11122
  connection: string;
11057
11123
  enabled: boolean;
11058
11124
  credentials: {
@@ -11084,7 +11150,7 @@ declare function init(config: AuthHeroConfig): {
11084
11150
  created_at: string;
11085
11151
  updated_at: string;
11086
11152
  name: string;
11087
- provider: "auth0" | "oidc" | "cognito" | "okta";
11153
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11088
11154
  connection: string;
11089
11155
  enabled: boolean;
11090
11156
  credentials: {
@@ -11110,7 +11176,7 @@ declare function init(config: AuthHeroConfig): {
11110
11176
  } & {
11111
11177
  json: {
11112
11178
  name: string;
11113
- provider: "auth0" | "oidc" | "cognito" | "okta";
11179
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11114
11180
  connection: string;
11115
11181
  credentials: {
11116
11182
  domain: string;
@@ -11127,7 +11193,7 @@ declare function init(config: AuthHeroConfig): {
11127
11193
  created_at: string;
11128
11194
  updated_at: string;
11129
11195
  name: string;
11130
- provider: "auth0" | "oidc" | "cognito" | "okta";
11196
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11131
11197
  connection: string;
11132
11198
  enabled: boolean;
11133
11199
  credentials: {
@@ -11158,7 +11224,7 @@ declare function init(config: AuthHeroConfig): {
11158
11224
  json: {
11159
11225
  id?: string | undefined;
11160
11226
  name?: string | undefined;
11161
- provider?: "auth0" | "oidc" | "cognito" | "okta" | undefined;
11227
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
11162
11228
  connection?: string | undefined;
11163
11229
  enabled?: boolean | undefined;
11164
11230
  credentials?: {
@@ -11174,7 +11240,7 @@ declare function init(config: AuthHeroConfig): {
11174
11240
  created_at: string;
11175
11241
  updated_at: string;
11176
11242
  name: string;
11177
- provider: "auth0" | "oidc" | "cognito" | "okta";
11243
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11178
11244
  connection: string;
11179
11245
  enabled: boolean;
11180
11246
  credentials: {
@@ -11392,7 +11458,7 @@ declare function init(config: AuthHeroConfig): {
11392
11458
  };
11393
11459
  };
11394
11460
  output: {
11395
- type: "s" | "w" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
11461
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11396
11462
  date: string;
11397
11463
  isMobile: boolean;
11398
11464
  log_id: string;
@@ -11431,7 +11497,7 @@ declare function init(config: AuthHeroConfig): {
11431
11497
  limit: number;
11432
11498
  length: number;
11433
11499
  logs: {
11434
- type: "s" | "w" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
11500
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11435
11501
  date: string;
11436
11502
  isMobile: boolean;
11437
11503
  log_id: string;
@@ -11485,7 +11551,7 @@ declare function init(config: AuthHeroConfig): {
11485
11551
  };
11486
11552
  };
11487
11553
  output: {
11488
- type: "s" | "w" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
11554
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11489
11555
  date: string;
11490
11556
  isMobile: boolean;
11491
11557
  log_id: string;
@@ -11640,7 +11706,7 @@ declare function init(config: AuthHeroConfig): {
11640
11706
  audience?: string | undefined;
11641
11707
  client_id?: string | undefined;
11642
11708
  allow_any_organization?: string | undefined;
11643
- subject_type?: "user" | "client" | undefined;
11709
+ subject_type?: "client" | "user" | undefined;
11644
11710
  };
11645
11711
  } & {
11646
11712
  header: {
@@ -11655,7 +11721,7 @@ declare function init(config: AuthHeroConfig): {
11655
11721
  organization_usage?: "deny" | "allow" | "require" | undefined;
11656
11722
  allow_any_organization?: boolean | undefined;
11657
11723
  is_system?: boolean | undefined;
11658
- subject_type?: "user" | "client" | undefined;
11724
+ subject_type?: "client" | "user" | undefined;
11659
11725
  authorization_details_types?: string[] | undefined;
11660
11726
  created_at?: string | undefined;
11661
11727
  updated_at?: string | undefined;
@@ -11671,7 +11737,7 @@ declare function init(config: AuthHeroConfig): {
11671
11737
  organization_usage?: "deny" | "allow" | "require" | undefined;
11672
11738
  allow_any_organization?: boolean | undefined;
11673
11739
  is_system?: boolean | undefined;
11674
- subject_type?: "user" | "client" | undefined;
11740
+ subject_type?: "client" | "user" | undefined;
11675
11741
  authorization_details_types?: string[] | undefined;
11676
11742
  created_at?: string | undefined;
11677
11743
  updated_at?: string | undefined;
@@ -11702,7 +11768,7 @@ declare function init(config: AuthHeroConfig): {
11702
11768
  organization_usage?: "deny" | "allow" | "require" | undefined;
11703
11769
  allow_any_organization?: boolean | undefined;
11704
11770
  is_system?: boolean | undefined;
11705
- subject_type?: "user" | "client" | undefined;
11771
+ subject_type?: "client" | "user" | undefined;
11706
11772
  authorization_details_types?: string[] | undefined;
11707
11773
  created_at?: string | undefined;
11708
11774
  updated_at?: string | undefined;
@@ -11747,7 +11813,7 @@ declare function init(config: AuthHeroConfig): {
11747
11813
  organization_usage?: "deny" | "allow" | "require" | undefined;
11748
11814
  allow_any_organization?: boolean | undefined;
11749
11815
  is_system?: boolean | undefined;
11750
- subject_type?: "user" | "client" | undefined;
11816
+ subject_type?: "client" | "user" | undefined;
11751
11817
  authorization_details_types?: string[] | undefined;
11752
11818
  };
11753
11819
  };
@@ -11759,7 +11825,7 @@ declare function init(config: AuthHeroConfig): {
11759
11825
  organization_usage?: "deny" | "allow" | "require" | undefined;
11760
11826
  allow_any_organization?: boolean | undefined;
11761
11827
  is_system?: boolean | undefined;
11762
- subject_type?: "user" | "client" | undefined;
11828
+ subject_type?: "client" | "user" | undefined;
11763
11829
  authorization_details_types?: string[] | undefined;
11764
11830
  created_at?: string | undefined;
11765
11831
  updated_at?: string | undefined;
@@ -11783,7 +11849,7 @@ declare function init(config: AuthHeroConfig): {
11783
11849
  organization_usage?: "deny" | "allow" | "require" | undefined;
11784
11850
  allow_any_organization?: boolean | undefined;
11785
11851
  is_system?: boolean | undefined;
11786
- subject_type?: "user" | "client" | undefined;
11852
+ subject_type?: "client" | "user" | undefined;
11787
11853
  authorization_details_types?: string[] | undefined;
11788
11854
  };
11789
11855
  };
@@ -11795,7 +11861,7 @@ declare function init(config: AuthHeroConfig): {
11795
11861
  organization_usage?: "deny" | "allow" | "require" | undefined;
11796
11862
  allow_any_organization?: boolean | undefined;
11797
11863
  is_system?: boolean | undefined;
11798
- subject_type?: "user" | "client" | undefined;
11864
+ subject_type?: "client" | "user" | undefined;
11799
11865
  authorization_details_types?: string[] | undefined;
11800
11866
  created_at?: string | undefined;
11801
11867
  updated_at?: string | undefined;
@@ -11873,7 +11939,7 @@ declare function init(config: AuthHeroConfig): {
11873
11939
  addons?: {
11874
11940
  [x: string]: any;
11875
11941
  } | undefined;
11876
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
11942
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
11877
11943
  client_metadata?: {
11878
11944
  [x: string]: string;
11879
11945
  } | undefined;
@@ -11969,7 +12035,7 @@ declare function init(config: AuthHeroConfig): {
11969
12035
  addons?: {
11970
12036
  [x: string]: any;
11971
12037
  } | undefined;
11972
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12038
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
11973
12039
  client_metadata?: {
11974
12040
  [x: string]: string;
11975
12041
  } | undefined;
@@ -12080,7 +12146,7 @@ declare function init(config: AuthHeroConfig): {
12080
12146
  addons?: {
12081
12147
  [x: string]: any;
12082
12148
  } | undefined;
12083
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12149
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12084
12150
  client_metadata?: {
12085
12151
  [x: string]: string;
12086
12152
  } | undefined;
@@ -12190,7 +12256,7 @@ declare function init(config: AuthHeroConfig): {
12190
12256
  custom_login_page_preview?: string | undefined;
12191
12257
  form_template?: string | undefined;
12192
12258
  addons?: Record<string, any> | undefined;
12193
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12259
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12194
12260
  client_metadata?: Record<string, string> | undefined;
12195
12261
  hide_sign_up_disabled_error?: boolean | undefined;
12196
12262
  mobile?: Record<string, any> | undefined;
@@ -12270,7 +12336,7 @@ declare function init(config: AuthHeroConfig): {
12270
12336
  addons?: {
12271
12337
  [x: string]: any;
12272
12338
  } | undefined;
12273
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12339
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12274
12340
  client_metadata?: {
12275
12341
  [x: string]: string;
12276
12342
  } | undefined;
@@ -12359,7 +12425,7 @@ declare function init(config: AuthHeroConfig): {
12359
12425
  custom_login_page_preview?: string | undefined;
12360
12426
  form_template?: string | undefined;
12361
12427
  addons?: Record<string, any> | undefined;
12362
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12428
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12363
12429
  client_metadata?: Record<string, string> | undefined;
12364
12430
  hide_sign_up_disabled_error?: boolean | undefined;
12365
12431
  mobile?: Record<string, any> | undefined;
@@ -12439,7 +12505,7 @@ declare function init(config: AuthHeroConfig): {
12439
12505
  addons?: {
12440
12506
  [x: string]: any;
12441
12507
  } | undefined;
12442
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12508
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12443
12509
  client_metadata?: {
12444
12510
  [x: string]: string;
12445
12511
  } | undefined;
@@ -13703,7 +13769,7 @@ declare function init(config: AuthHeroConfig): {
13703
13769
  };
13704
13770
  };
13705
13771
  output: {
13706
- type: "s" | "w" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
13772
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13707
13773
  date: string;
13708
13774
  isMobile: boolean;
13709
13775
  log_id: string;
@@ -13742,7 +13808,7 @@ declare function init(config: AuthHeroConfig): {
13742
13808
  limit: number;
13743
13809
  length: number;
13744
13810
  logs: {
13745
- type: "s" | "w" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
13811
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13746
13812
  date: string;
13747
13813
  isMobile: boolean;
13748
13814
  log_id: string;
@@ -14057,7 +14123,7 @@ declare function init(config: AuthHeroConfig): {
14057
14123
  };
14058
14124
  } & {
14059
14125
  json: {
14060
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14126
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14061
14127
  body: string;
14062
14128
  from: string;
14063
14129
  subject: string;
@@ -14068,19 +14134,9 @@ declare function init(config: AuthHeroConfig): {
14068
14134
  enabled?: boolean | undefined;
14069
14135
  };
14070
14136
  };
14071
- output: {
14072
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14073
- body: string;
14074
- from: string;
14075
- subject: string;
14076
- syntax: "liquid";
14077
- includeEmailInRedirect: boolean;
14078
- enabled: boolean;
14079
- resultUrl?: string | undefined;
14080
- urlLifetimeInSeconds?: number | undefined;
14081
- };
14082
- outputFormat: "json";
14083
- status: 201;
14137
+ output: {};
14138
+ outputFormat: string;
14139
+ status: 409;
14084
14140
  } | {
14085
14141
  input: {
14086
14142
  header: {
@@ -14088,7 +14144,7 @@ declare function init(config: AuthHeroConfig): {
14088
14144
  };
14089
14145
  } & {
14090
14146
  json: {
14091
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14147
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14092
14148
  body: string;
14093
14149
  from: string;
14094
14150
  subject: string;
@@ -14099,9 +14155,19 @@ declare function init(config: AuthHeroConfig): {
14099
14155
  enabled?: boolean | undefined;
14100
14156
  };
14101
14157
  };
14102
- output: {};
14103
- outputFormat: string;
14104
- status: 409;
14158
+ output: {
14159
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14160
+ body: string;
14161
+ from: string;
14162
+ subject: string;
14163
+ syntax: "liquid";
14164
+ includeEmailInRedirect: boolean;
14165
+ enabled: boolean;
14166
+ resultUrl?: string | undefined;
14167
+ urlLifetimeInSeconds?: number | undefined;
14168
+ };
14169
+ outputFormat: "json";
14170
+ status: 201;
14105
14171
  };
14106
14172
  };
14107
14173
  } & {
@@ -14113,7 +14179,7 @@ declare function init(config: AuthHeroConfig): {
14113
14179
  };
14114
14180
  };
14115
14181
  output: {
14116
- name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14182
+ name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14117
14183
  body: string;
14118
14184
  subject: string;
14119
14185
  }[];
@@ -14126,7 +14192,7 @@ declare function init(config: AuthHeroConfig): {
14126
14192
  $get: {
14127
14193
  input: {
14128
14194
  param: {
14129
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14195
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14130
14196
  };
14131
14197
  } & {
14132
14198
  header: {
@@ -14139,7 +14205,7 @@ declare function init(config: AuthHeroConfig): {
14139
14205
  } | {
14140
14206
  input: {
14141
14207
  param: {
14142
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14208
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14143
14209
  };
14144
14210
  } & {
14145
14211
  header: {
@@ -14147,7 +14213,7 @@ declare function init(config: AuthHeroConfig): {
14147
14213
  };
14148
14214
  };
14149
14215
  output: {
14150
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14216
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14151
14217
  body: string;
14152
14218
  from: string;
14153
14219
  subject: string;
@@ -14166,7 +14232,7 @@ declare function init(config: AuthHeroConfig): {
14166
14232
  $put: {
14167
14233
  input: {
14168
14234
  param: {
14169
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14235
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14170
14236
  };
14171
14237
  } & {
14172
14238
  header: {
@@ -14174,7 +14240,7 @@ declare function init(config: AuthHeroConfig): {
14174
14240
  };
14175
14241
  } & {
14176
14242
  json: {
14177
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14243
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14178
14244
  body: string;
14179
14245
  subject: string;
14180
14246
  syntax?: "liquid" | undefined;
@@ -14186,7 +14252,7 @@ declare function init(config: AuthHeroConfig): {
14186
14252
  };
14187
14253
  };
14188
14254
  output: {
14189
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14255
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14190
14256
  body: string;
14191
14257
  from: string;
14192
14258
  subject: string;
@@ -14205,7 +14271,7 @@ declare function init(config: AuthHeroConfig): {
14205
14271
  $patch: {
14206
14272
  input: {
14207
14273
  param: {
14208
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14274
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14209
14275
  };
14210
14276
  } & {
14211
14277
  header: {
@@ -14213,7 +14279,7 @@ declare function init(config: AuthHeroConfig): {
14213
14279
  };
14214
14280
  } & {
14215
14281
  json: {
14216
- template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14282
+ template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14217
14283
  body?: string | undefined;
14218
14284
  from?: string | undefined;
14219
14285
  subject?: string | undefined;
@@ -14230,7 +14296,7 @@ declare function init(config: AuthHeroConfig): {
14230
14296
  } | {
14231
14297
  input: {
14232
14298
  param: {
14233
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14299
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14234
14300
  };
14235
14301
  } & {
14236
14302
  header: {
@@ -14238,7 +14304,7 @@ declare function init(config: AuthHeroConfig): {
14238
14304
  };
14239
14305
  } & {
14240
14306
  json: {
14241
- template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14307
+ template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14242
14308
  body?: string | undefined;
14243
14309
  from?: string | undefined;
14244
14310
  subject?: string | undefined;
@@ -14250,7 +14316,7 @@ declare function init(config: AuthHeroConfig): {
14250
14316
  };
14251
14317
  };
14252
14318
  output: {
14253
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14319
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14254
14320
  body: string;
14255
14321
  from: string;
14256
14322
  subject: string;
@@ -14269,7 +14335,7 @@ declare function init(config: AuthHeroConfig): {
14269
14335
  $delete: {
14270
14336
  input: {
14271
14337
  param: {
14272
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14338
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14273
14339
  };
14274
14340
  } & {
14275
14341
  header: {
@@ -14282,7 +14348,7 @@ declare function init(config: AuthHeroConfig): {
14282
14348
  } | {
14283
14349
  input: {
14284
14350
  param: {
14285
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14351
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14286
14352
  };
14287
14353
  } & {
14288
14354
  header: {
@@ -14299,7 +14365,7 @@ declare function init(config: AuthHeroConfig): {
14299
14365
  $post: {
14300
14366
  input: {
14301
14367
  param: {
14302
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14368
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14303
14369
  };
14304
14370
  } & {
14305
14371
  header: {
@@ -14582,7 +14648,7 @@ declare function init(config: AuthHeroConfig): {
14582
14648
  type: "auth0_managed_certs" | "self_managed_certs";
14583
14649
  custom_domain_id: string;
14584
14650
  primary: boolean;
14585
- status: "disabled" | "pending" | "pending_verification" | "ready";
14651
+ status: "pending" | "ready" | "disabled" | "pending_verification";
14586
14652
  verification_method?: "txt" | undefined;
14587
14653
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14588
14654
  domain_metadata?: {
@@ -14623,7 +14689,7 @@ declare function init(config: AuthHeroConfig): {
14623
14689
  type: "auth0_managed_certs" | "self_managed_certs";
14624
14690
  custom_domain_id: string;
14625
14691
  primary: boolean;
14626
- status: "disabled" | "pending" | "pending_verification" | "ready";
14692
+ status: "pending" | "ready" | "disabled" | "pending_verification";
14627
14693
  verification_method?: "txt" | undefined;
14628
14694
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14629
14695
  domain_metadata?: {
@@ -14684,7 +14750,7 @@ declare function init(config: AuthHeroConfig): {
14684
14750
  domain_metadata?: Record<string, string> | undefined;
14685
14751
  custom_domain_id?: string | undefined;
14686
14752
  primary?: boolean | undefined;
14687
- status?: "disabled" | "pending" | "pending_verification" | "ready" | undefined;
14753
+ status?: "pending" | "ready" | "disabled" | "pending_verification" | undefined;
14688
14754
  origin_domain_name?: string | undefined;
14689
14755
  verification?: {
14690
14756
  methods: ({
@@ -14705,7 +14771,7 @@ declare function init(config: AuthHeroConfig): {
14705
14771
  type: "auth0_managed_certs" | "self_managed_certs";
14706
14772
  custom_domain_id: string;
14707
14773
  primary: boolean;
14708
- status: "disabled" | "pending" | "pending_verification" | "ready";
14774
+ status: "pending" | "ready" | "disabled" | "pending_verification";
14709
14775
  verification_method?: "txt" | undefined;
14710
14776
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14711
14777
  domain_metadata?: {
@@ -14752,7 +14818,7 @@ declare function init(config: AuthHeroConfig): {
14752
14818
  type: "auth0_managed_certs" | "self_managed_certs";
14753
14819
  custom_domain_id: string;
14754
14820
  primary: boolean;
14755
- status: "disabled" | "pending" | "pending_verification" | "ready";
14821
+ status: "pending" | "ready" | "disabled" | "pending_verification";
14756
14822
  verification_method?: "txt" | undefined;
14757
14823
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14758
14824
  domain_metadata?: {
@@ -14798,7 +14864,7 @@ declare function init(config: AuthHeroConfig): {
14798
14864
  type: "auth0_managed_certs" | "self_managed_certs";
14799
14865
  custom_domain_id: string;
14800
14866
  primary: boolean;
14801
- status: "disabled" | "pending" | "pending_verification" | "ready";
14867
+ status: "pending" | "ready" | "disabled" | "pending_verification";
14802
14868
  verification_method?: "txt" | undefined;
14803
14869
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14804
14870
  domain_metadata?: {
@@ -14839,7 +14905,7 @@ declare function init(config: AuthHeroConfig): {
14839
14905
  type: "auth0_managed_certs" | "self_managed_certs";
14840
14906
  custom_domain_id: string;
14841
14907
  primary: boolean;
14842
- status: "disabled" | "pending" | "pending_verification" | "ready";
14908
+ status: "pending" | "ready" | "disabled" | "pending_verification";
14843
14909
  verification_method?: "txt" | undefined;
14844
14910
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14845
14911
  domain_metadata?: {
@@ -15753,7 +15819,7 @@ declare function init(config: AuthHeroConfig): {
15753
15819
  };
15754
15820
  output: {};
15755
15821
  outputFormat: string;
15756
- status: 409;
15822
+ status: 200;
15757
15823
  } | {
15758
15824
  input: {
15759
15825
  param: {
@@ -15766,7 +15832,7 @@ declare function init(config: AuthHeroConfig): {
15766
15832
  };
15767
15833
  output: {};
15768
15834
  outputFormat: string;
15769
- status: 200;
15835
+ status: 404;
15770
15836
  } | {
15771
15837
  input: {
15772
15838
  param: {
@@ -15779,7 +15845,7 @@ declare function init(config: AuthHeroConfig): {
15779
15845
  };
15780
15846
  output: {};
15781
15847
  outputFormat: string;
15782
- status: 404;
15848
+ status: 409;
15783
15849
  };
15784
15850
  };
15785
15851
  } & {
@@ -16411,7 +16477,7 @@ declare function init(config: AuthHeroConfig): {
16411
16477
  scope?: string | undefined;
16412
16478
  grant_types?: string[] | undefined;
16413
16479
  response_types?: string[] | undefined;
16414
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16480
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
16415
16481
  jwks_uri?: string | undefined;
16416
16482
  jwks?: Record<string, unknown> | undefined;
16417
16483
  software_id?: string | undefined;
@@ -16500,7 +16566,7 @@ declare function init(config: AuthHeroConfig): {
16500
16566
  scope?: string | undefined;
16501
16567
  grant_types?: string[] | undefined;
16502
16568
  response_types?: string[] | undefined;
16503
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16569
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
16504
16570
  jwks_uri?: string | undefined;
16505
16571
  jwks?: Record<string, unknown> | undefined;
16506
16572
  software_id?: string | undefined;
@@ -16846,20 +16912,20 @@ declare function init(config: AuthHeroConfig): {
16846
16912
  email: string;
16847
16913
  send: "code" | "link";
16848
16914
  authParams: {
16849
- username?: string | undefined;
16850
- state?: string | undefined;
16851
- act_as?: string | undefined;
16915
+ audience?: string | undefined;
16852
16916
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16853
16917
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16854
- redirect_uri?: string | undefined;
16855
- audience?: string | undefined;
16856
- organization?: string | undefined;
16857
- nonce?: string | undefined;
16858
16918
  scope?: string | undefined;
16919
+ username?: string | undefined;
16920
+ state?: string | undefined;
16859
16921
  prompt?: string | undefined;
16922
+ ui_locales?: string | undefined;
16923
+ organization?: string | undefined;
16924
+ redirect_uri?: string | undefined;
16925
+ act_as?: string | undefined;
16926
+ nonce?: string | undefined;
16860
16927
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16861
16928
  code_challenge?: string | undefined;
16862
- ui_locales?: string | undefined;
16863
16929
  max_age?: number | undefined;
16864
16930
  acr_values?: string | undefined;
16865
16931
  claims?: {
@@ -16882,20 +16948,20 @@ declare function init(config: AuthHeroConfig): {
16882
16948
  phone_number: string;
16883
16949
  send: "code" | "link";
16884
16950
  authParams: {
16885
- username?: string | undefined;
16886
- state?: string | undefined;
16887
- act_as?: string | undefined;
16951
+ audience?: string | undefined;
16888
16952
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16889
16953
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16890
- redirect_uri?: string | undefined;
16891
- audience?: string | undefined;
16892
- organization?: string | undefined;
16893
- nonce?: string | undefined;
16894
16954
  scope?: string | undefined;
16955
+ username?: string | undefined;
16956
+ state?: string | undefined;
16895
16957
  prompt?: string | undefined;
16958
+ ui_locales?: string | undefined;
16959
+ organization?: string | undefined;
16960
+ redirect_uri?: string | undefined;
16961
+ act_as?: string | undefined;
16962
+ nonce?: string | undefined;
16896
16963
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16897
16964
  code_challenge?: string | undefined;
16898
- ui_locales?: string | undefined;
16899
16965
  max_age?: number | undefined;
16900
16966
  acr_values?: string | undefined;
16901
16967
  claims?: {
@@ -17124,7 +17190,7 @@ declare function init(config: AuthHeroConfig): {
17124
17190
  client_id: string;
17125
17191
  username: string;
17126
17192
  otp: string;
17127
- realm: "email" | "sms";
17193
+ realm: "sms" | "email";
17128
17194
  } | {
17129
17195
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17130
17196
  subject_token: string;
@@ -17171,7 +17237,7 @@ declare function init(config: AuthHeroConfig): {
17171
17237
  client_id: string;
17172
17238
  username: string;
17173
17239
  otp: string;
17174
- realm: "email" | "sms";
17240
+ realm: "sms" | "email";
17175
17241
  } | {
17176
17242
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17177
17243
  subject_token: string;
@@ -17223,7 +17289,7 @@ declare function init(config: AuthHeroConfig): {
17223
17289
  client_id: string;
17224
17290
  username: string;
17225
17291
  otp: string;
17226
- realm: "email" | "sms";
17292
+ realm: "sms" | "email";
17227
17293
  } | {
17228
17294
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17229
17295
  subject_token: string;
@@ -17270,7 +17336,7 @@ declare function init(config: AuthHeroConfig): {
17270
17336
  client_id: string;
17271
17337
  username: string;
17272
17338
  otp: string;
17273
- realm: "email" | "sms";
17339
+ realm: "sms" | "email";
17274
17340
  } | {
17275
17341
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17276
17342
  subject_token: string;
@@ -17330,7 +17396,7 @@ declare function init(config: AuthHeroConfig): {
17330
17396
  client_id: string;
17331
17397
  username: string;
17332
17398
  otp: string;
17333
- realm: "email" | "sms";
17399
+ realm: "sms" | "email";
17334
17400
  } | {
17335
17401
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17336
17402
  subject_token: string;
@@ -17377,7 +17443,7 @@ declare function init(config: AuthHeroConfig): {
17377
17443
  client_id: string;
17378
17444
  username: string;
17379
17445
  otp: string;
17380
- realm: "email" | "sms";
17446
+ realm: "sms" | "email";
17381
17447
  } | {
17382
17448
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17383
17449
  subject_token: string;
@@ -17432,7 +17498,7 @@ declare function init(config: AuthHeroConfig): {
17432
17498
  client_id: string;
17433
17499
  username: string;
17434
17500
  otp: string;
17435
- realm: "email" | "sms";
17501
+ realm: "sms" | "email";
17436
17502
  } | {
17437
17503
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17438
17504
  subject_token: string;
@@ -17479,7 +17545,7 @@ declare function init(config: AuthHeroConfig): {
17479
17545
  client_id: string;
17480
17546
  username: string;
17481
17547
  otp: string;
17482
- realm: "email" | "sms";
17548
+ realm: "sms" | "email";
17483
17549
  } | {
17484
17550
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17485
17551
  subject_token: string;
@@ -17534,7 +17600,7 @@ declare function init(config: AuthHeroConfig): {
17534
17600
  client_id: string;
17535
17601
  username: string;
17536
17602
  otp: string;
17537
- realm: "email" | "sms";
17603
+ realm: "sms" | "email";
17538
17604
  } | {
17539
17605
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17540
17606
  subject_token: string;
@@ -17581,7 +17647,7 @@ declare function init(config: AuthHeroConfig): {
17581
17647
  client_id: string;
17582
17648
  username: string;
17583
17649
  otp: string;
17584
- realm: "email" | "sms";
17650
+ realm: "sms" | "email";
17585
17651
  } | {
17586
17652
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17587
17653
  subject_token: string;
@@ -17610,8 +17676,8 @@ declare function init(config: AuthHeroConfig): {
17610
17676
  output: {
17611
17677
  keys: {
17612
17678
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
17613
- kid: string;
17614
- kty: "RSA" | "EC" | "oct";
17679
+ kty: "EC" | "RSA" | "oct";
17680
+ kid?: string | undefined;
17615
17681
  use?: "sig" | "enc" | undefined;
17616
17682
  n?: string | undefined;
17617
17683
  e?: string | undefined;
@@ -18801,7 +18867,7 @@ declare function init(config: AuthHeroConfig): {
18801
18867
  $get: {
18802
18868
  input: {
18803
18869
  param: {
18804
- 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";
18870
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18805
18871
  };
18806
18872
  } & {
18807
18873
  query: {
@@ -18817,7 +18883,7 @@ declare function init(config: AuthHeroConfig): {
18817
18883
  } | {
18818
18884
  input: {
18819
18885
  param: {
18820
- 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";
18886
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18821
18887
  };
18822
18888
  } & {
18823
18889
  query: {
@@ -18833,7 +18899,7 @@ declare function init(config: AuthHeroConfig): {
18833
18899
  } | {
18834
18900
  input: {
18835
18901
  param: {
18836
- 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
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18837
18903
  };
18838
18904
  } & {
18839
18905
  query: {
@@ -18853,7 +18919,7 @@ declare function init(config: AuthHeroConfig): {
18853
18919
  $post: {
18854
18920
  input: {
18855
18921
  param: {
18856
- 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";
18922
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18857
18923
  };
18858
18924
  } & {
18859
18925
  query: {
@@ -18871,7 +18937,7 @@ declare function init(config: AuthHeroConfig): {
18871
18937
  } | {
18872
18938
  input: {
18873
18939
  param: {
18874
- 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";
18940
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18875
18941
  };
18876
18942
  } & {
18877
18943
  query: {
@@ -18889,7 +18955,7 @@ declare function init(config: AuthHeroConfig): {
18889
18955
  } | {
18890
18956
  input: {
18891
18957
  param: {
18892
- 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";
18958
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18893
18959
  };
18894
18960
  } & {
18895
18961
  query: {
@@ -18987,5 +19053,5 @@ declare function init(config: AuthHeroConfig): {
18987
19053
  createX509Certificate: typeof createX509Certificate;
18988
19054
  };
18989
19055
 
18990
- 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, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, waitUntil };
18991
- 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, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
19056
+ 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, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, waitUntil };
19057
+ 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, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };