authhero 8.5.0 → 8.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
  2. package/dist/assets/u/widget/{p-5f7b7943.entry.js → p-5a319adc.entry.js} +1 -1
  3. package/dist/authhero.cjs +257 -147
  4. package/dist/authhero.d.ts +412 -266
  5. package/dist/authhero.mjs +43118 -42718
  6. package/dist/stats.html +1 -1
  7. package/dist/tsconfig.types.tsbuildinfo +1 -1
  8. package/dist/types/authentication-flows/passwordless.d.ts +1 -1
  9. package/dist/types/index.d.ts +380 -266
  10. package/dist/types/routes/auth-api/account.d.ts +2 -2
  11. package/dist/types/routes/auth-api/index.d.ts +16 -16
  12. package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
  13. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  14. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  15. package/dist/types/routes/management-api/actions.d.ts +1 -1
  16. package/dist/types/routes/management-api/branding-preview.d.ts +41 -0
  17. package/dist/types/routes/management-api/branding.d.ts +123 -9
  18. package/dist/types/routes/management-api/clients.d.ts +7 -7
  19. package/dist/types/routes/management-api/custom-domains.d.ts +8 -8
  20. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  21. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  22. package/dist/types/routes/management-api/flows.d.ts +7 -7
  23. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  24. package/dist/types/routes/management-api/index.d.ts +336 -222
  25. package/dist/types/routes/management-api/logs.d.ts +3 -3
  26. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  27. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  28. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  29. package/dist/types/routes/management-api/users.d.ts +2 -2
  30. package/dist/types/routes/universal-login/common.d.ts +2 -2
  31. package/dist/types/routes/universal-login/index.d.ts +2 -2
  32. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  33. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  34. package/dist/types/routes/universal-login/u2-widget-page.d.ts +33 -4
  35. package/dist/types/routes/universal-login/universal-login-template.d.ts +65 -13
  36. package/dist/types/types/AuthHeroConfig.d.ts +33 -1
  37. package/package.json +4 -4
@@ -1226,6 +1226,38 @@ interface AuthHeroConfig {
1226
1226
  /** Per-request timeout for the sync POST (default: 10_000ms). */
1227
1227
  timeoutMs?: number;
1228
1228
  };
1229
+ /**
1230
+ * Optional middleware that dispatches a management-API request to its
1231
+ * tenant's own worker instead of serving it from this (control-plane)
1232
+ * instance — the inbound twin of the control-plane defaults projection.
1233
+ *
1234
+ * It is mounted inside the management API **after** the CORS middleware and
1235
+ * **before** the auth/data chain, so:
1236
+ * - when it forwards (returns the tenant worker's `Response`), the central
1237
+ * CORS middleware applies the `Access-Control-Allow-*` headers to that
1238
+ * response — no manual CORS handling needed in the host app;
1239
+ * - when it calls `next()` (control-plane tenant, non-`wfp` tenant, tenant
1240
+ * not yet provisioned, or no dispatch binding), the request is served
1241
+ * locally as usual.
1242
+ *
1243
+ * Provide the implementation from `@authhero/cloudflare-adapter`'s
1244
+ * `createWfpForwardMiddleware`, which dispatches over a Workers-for-Platforms
1245
+ * dispatch namespace. Kept as a generic Hono `MiddlewareHandler` so authhero
1246
+ * core carries no dispatch-namespace dependency.
1247
+ *
1248
+ * @example
1249
+ * ```typescript
1250
+ * const { app } = init({
1251
+ * dataAdapter,
1252
+ * allowedOrigins: ["https://admin.example.com"],
1253
+ * tenantDispatch: createWfpForwardMiddleware({
1254
+ * tenants: managementAdapter.tenants,
1255
+ * controlPlaneTenantId: "main",
1256
+ * }),
1257
+ * });
1258
+ * ```
1259
+ */
1260
+ tenantDispatch?: MiddlewareHandler;
1229
1261
  /**
1230
1262
  * Optional powered-by logo to display at the bottom left of the login widget.
1231
1263
  * This is only configurable in code, not stored in the database.
@@ -2883,7 +2915,7 @@ declare function init(config: AuthHeroConfig): {
2883
2915
  };
2884
2916
  } & {
2885
2917
  json: {
2886
- type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2918
+ type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
2887
2919
  phone_number?: string | undefined;
2888
2920
  totp_secret?: string | undefined;
2889
2921
  credential_id?: string | undefined;
@@ -3023,7 +3055,7 @@ declare function init(config: AuthHeroConfig): {
3023
3055
  };
3024
3056
  };
3025
3057
  output: {
3026
- name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3058
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3027
3059
  enabled: boolean;
3028
3060
  trial_expired?: boolean | undefined;
3029
3061
  }[];
@@ -3178,7 +3210,7 @@ declare function init(config: AuthHeroConfig): {
3178
3210
  $get: {
3179
3211
  input: {
3180
3212
  param: {
3181
- factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3213
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3182
3214
  };
3183
3215
  } & {
3184
3216
  header: {
@@ -3186,7 +3218,7 @@ declare function init(config: AuthHeroConfig): {
3186
3218
  };
3187
3219
  };
3188
3220
  output: {
3189
- name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3221
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3190
3222
  enabled: boolean;
3191
3223
  trial_expired?: boolean | undefined;
3192
3224
  };
@@ -3199,7 +3231,7 @@ declare function init(config: AuthHeroConfig): {
3199
3231
  $put: {
3200
3232
  input: {
3201
3233
  param: {
3202
- factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3234
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3203
3235
  };
3204
3236
  } & {
3205
3237
  header: {
@@ -3211,7 +3243,7 @@ declare function init(config: AuthHeroConfig): {
3211
3243
  };
3212
3244
  };
3213
3245
  output: {
3214
- name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3246
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3215
3247
  enabled: boolean;
3216
3248
  trial_expired?: boolean | undefined;
3217
3249
  };
@@ -3957,11 +3989,11 @@ declare function init(config: AuthHeroConfig): {
3957
3989
  email?: string | undefined;
3958
3990
  };
3959
3991
  id?: string | undefined;
3960
- connection_id?: string | undefined;
3961
3992
  app_metadata?: Record<string, any> | undefined;
3962
3993
  user_metadata?: Record<string, any> | undefined;
3963
- ttl_sec?: number | undefined;
3994
+ connection_id?: string | undefined;
3964
3995
  roles?: string[] | undefined;
3996
+ ttl_sec?: number | undefined;
3965
3997
  send_invitation_email?: boolean | undefined;
3966
3998
  };
3967
3999
  };
@@ -4144,8 +4176,8 @@ declare function init(config: AuthHeroConfig): {
4144
4176
  };
4145
4177
  } & {
4146
4178
  json: {
4147
- show_as_button?: boolean | undefined;
4148
4179
  assign_membership_on_login?: boolean | undefined;
4180
+ show_as_button?: boolean | undefined;
4149
4181
  is_signup_enabled?: boolean | undefined;
4150
4182
  };
4151
4183
  };
@@ -4811,7 +4843,7 @@ declare function init(config: AuthHeroConfig): {
4811
4843
  type: "REDIRECT";
4812
4844
  action: "REDIRECT_USER";
4813
4845
  params: {
4814
- target: "custom" | "account" | "change-email";
4846
+ target: "custom" | "change-email" | "account";
4815
4847
  custom_url?: string | undefined;
4816
4848
  };
4817
4849
  alias?: string | undefined;
@@ -4864,7 +4896,7 @@ declare function init(config: AuthHeroConfig): {
4864
4896
  type: "REDIRECT";
4865
4897
  action: "REDIRECT_USER";
4866
4898
  params: {
4867
- target: "custom" | "account" | "change-email";
4899
+ target: "custom" | "change-email" | "account";
4868
4900
  custom_url?: string | undefined;
4869
4901
  };
4870
4902
  alias?: string | undefined;
@@ -4932,7 +4964,7 @@ declare function init(config: AuthHeroConfig): {
4932
4964
  type: "REDIRECT";
4933
4965
  action: "REDIRECT_USER";
4934
4966
  params: {
4935
- target: "custom" | "account" | "change-email";
4967
+ target: "custom" | "change-email" | "account";
4936
4968
  custom_url?: string | undefined;
4937
4969
  };
4938
4970
  alias?: string | undefined;
@@ -5013,7 +5045,7 @@ declare function init(config: AuthHeroConfig): {
5013
5045
  type: "REDIRECT";
5014
5046
  action: "REDIRECT_USER";
5015
5047
  params: {
5016
- target: "custom" | "account" | "change-email";
5048
+ target: "custom" | "change-email" | "account";
5017
5049
  custom_url?: string | undefined;
5018
5050
  };
5019
5051
  alias?: string | undefined;
@@ -5061,7 +5093,7 @@ declare function init(config: AuthHeroConfig): {
5061
5093
  type: "REDIRECT";
5062
5094
  action: "REDIRECT_USER";
5063
5095
  params: {
5064
- target: "custom" | "account" | "change-email";
5096
+ target: "custom" | "change-email" | "account";
5065
5097
  custom_url?: string | undefined;
5066
5098
  };
5067
5099
  alias?: string | undefined;
@@ -5121,7 +5153,7 @@ declare function init(config: AuthHeroConfig): {
5121
5153
  type: "REDIRECT";
5122
5154
  action: "REDIRECT_USER";
5123
5155
  params: {
5124
- target: "custom" | "account" | "change-email";
5156
+ target: "custom" | "change-email" | "account";
5125
5157
  custom_url?: string | undefined;
5126
5158
  };
5127
5159
  alias?: string | undefined;
@@ -5169,7 +5201,7 @@ declare function init(config: AuthHeroConfig): {
5169
5201
  type: "REDIRECT";
5170
5202
  action: "REDIRECT_USER";
5171
5203
  params: {
5172
- target: "custom" | "account" | "change-email";
5204
+ target: "custom" | "change-email" | "account";
5173
5205
  custom_url?: string | undefined;
5174
5206
  };
5175
5207
  alias?: string | undefined;
@@ -5387,7 +5419,7 @@ declare function init(config: AuthHeroConfig): {
5387
5419
  hint?: string | undefined;
5388
5420
  messages?: {
5389
5421
  text: string;
5390
- type: "success" | "error" | "info" | "warning";
5422
+ type: "error" | "success" | "info" | "warning";
5391
5423
  id?: number | undefined;
5392
5424
  }[] | undefined;
5393
5425
  required?: boolean | undefined;
@@ -5405,7 +5437,7 @@ declare function init(config: AuthHeroConfig): {
5405
5437
  hint?: string | undefined;
5406
5438
  messages?: {
5407
5439
  text: string;
5408
- type: "success" | "error" | "info" | "warning";
5440
+ type: "error" | "success" | "info" | "warning";
5409
5441
  id?: number | undefined;
5410
5442
  }[] | undefined;
5411
5443
  required?: boolean | undefined;
@@ -5429,7 +5461,7 @@ declare function init(config: AuthHeroConfig): {
5429
5461
  hint?: string | undefined;
5430
5462
  messages?: {
5431
5463
  text: string;
5432
- type: "success" | "error" | "info" | "warning";
5464
+ type: "error" | "success" | "info" | "warning";
5433
5465
  id?: number | undefined;
5434
5466
  }[] | undefined;
5435
5467
  required?: boolean | undefined;
@@ -5453,7 +5485,7 @@ declare function init(config: AuthHeroConfig): {
5453
5485
  hint?: string | undefined;
5454
5486
  messages?: {
5455
5487
  text: string;
5456
- type: "success" | "error" | "info" | "warning";
5488
+ type: "error" | "success" | "info" | "warning";
5457
5489
  id?: number | undefined;
5458
5490
  }[] | undefined;
5459
5491
  required?: boolean | undefined;
@@ -5482,7 +5514,7 @@ declare function init(config: AuthHeroConfig): {
5482
5514
  hint?: string | undefined;
5483
5515
  messages?: {
5484
5516
  text: string;
5485
- type: "success" | "error" | "info" | "warning";
5517
+ type: "error" | "success" | "info" | "warning";
5486
5518
  id?: number | undefined;
5487
5519
  }[] | undefined;
5488
5520
  required?: boolean | undefined;
@@ -5497,7 +5529,7 @@ declare function init(config: AuthHeroConfig): {
5497
5529
  hint?: string | undefined;
5498
5530
  messages?: {
5499
5531
  text: string;
5500
- type: "success" | "error" | "info" | "warning";
5532
+ type: "error" | "success" | "info" | "warning";
5501
5533
  id?: number | undefined;
5502
5534
  }[] | undefined;
5503
5535
  required?: boolean | undefined;
@@ -5518,7 +5550,7 @@ declare function init(config: AuthHeroConfig): {
5518
5550
  hint?: string | undefined;
5519
5551
  messages?: {
5520
5552
  text: string;
5521
- type: "success" | "error" | "info" | "warning";
5553
+ type: "error" | "success" | "info" | "warning";
5522
5554
  id?: number | undefined;
5523
5555
  }[] | undefined;
5524
5556
  required?: boolean | undefined;
@@ -5543,7 +5575,7 @@ declare function init(config: AuthHeroConfig): {
5543
5575
  hint?: string | undefined;
5544
5576
  messages?: {
5545
5577
  text: string;
5546
- type: "success" | "error" | "info" | "warning";
5578
+ type: "error" | "success" | "info" | "warning";
5547
5579
  id?: number | undefined;
5548
5580
  }[] | undefined;
5549
5581
  required?: boolean | undefined;
@@ -5562,7 +5594,7 @@ declare function init(config: AuthHeroConfig): {
5562
5594
  hint?: string | undefined;
5563
5595
  messages?: {
5564
5596
  text: string;
5565
- type: "success" | "error" | "info" | "warning";
5597
+ type: "error" | "success" | "info" | "warning";
5566
5598
  id?: number | undefined;
5567
5599
  }[] | undefined;
5568
5600
  required?: boolean | undefined;
@@ -5582,7 +5614,7 @@ declare function init(config: AuthHeroConfig): {
5582
5614
  hint?: string | undefined;
5583
5615
  messages?: {
5584
5616
  text: string;
5585
- type: "success" | "error" | "info" | "warning";
5617
+ type: "error" | "success" | "info" | "warning";
5586
5618
  id?: number | undefined;
5587
5619
  }[] | undefined;
5588
5620
  required?: boolean | undefined;
@@ -5601,7 +5633,7 @@ declare function init(config: AuthHeroConfig): {
5601
5633
  hint?: string | undefined;
5602
5634
  messages?: {
5603
5635
  text: string;
5604
- type: "success" | "error" | "info" | "warning";
5636
+ type: "error" | "success" | "info" | "warning";
5605
5637
  id?: number | undefined;
5606
5638
  }[] | undefined;
5607
5639
  required?: boolean | undefined;
@@ -5623,7 +5655,7 @@ declare function init(config: AuthHeroConfig): {
5623
5655
  hint?: string | undefined;
5624
5656
  messages?: {
5625
5657
  text: string;
5626
- type: "success" | "error" | "info" | "warning";
5658
+ type: "error" | "success" | "info" | "warning";
5627
5659
  id?: number | undefined;
5628
5660
  }[] | undefined;
5629
5661
  required?: boolean | undefined;
@@ -5645,7 +5677,7 @@ declare function init(config: AuthHeroConfig): {
5645
5677
  hint?: string | undefined;
5646
5678
  messages?: {
5647
5679
  text: string;
5648
- type: "success" | "error" | "info" | "warning";
5680
+ type: "error" | "success" | "info" | "warning";
5649
5681
  id?: number | undefined;
5650
5682
  }[] | undefined;
5651
5683
  required?: boolean | undefined;
@@ -5664,7 +5696,7 @@ declare function init(config: AuthHeroConfig): {
5664
5696
  hint?: string | undefined;
5665
5697
  messages?: {
5666
5698
  text: string;
5667
- type: "success" | "error" | "info" | "warning";
5699
+ type: "error" | "success" | "info" | "warning";
5668
5700
  id?: number | undefined;
5669
5701
  }[] | undefined;
5670
5702
  required?: boolean | undefined;
@@ -5689,7 +5721,7 @@ declare function init(config: AuthHeroConfig): {
5689
5721
  hint?: string | undefined;
5690
5722
  messages?: {
5691
5723
  text: string;
5692
- type: "success" | "error" | "info" | "warning";
5724
+ type: "error" | "success" | "info" | "warning";
5693
5725
  id?: number | undefined;
5694
5726
  }[] | undefined;
5695
5727
  required?: boolean | undefined;
@@ -5710,7 +5742,7 @@ declare function init(config: AuthHeroConfig): {
5710
5742
  hint?: string | undefined;
5711
5743
  messages?: {
5712
5744
  text: string;
5713
- type: "success" | "error" | "info" | "warning";
5745
+ type: "error" | "success" | "info" | "warning";
5714
5746
  id?: number | undefined;
5715
5747
  }[] | undefined;
5716
5748
  required?: boolean | undefined;
@@ -5731,7 +5763,7 @@ declare function init(config: AuthHeroConfig): {
5731
5763
  hint?: string | undefined;
5732
5764
  messages?: {
5733
5765
  text: string;
5734
- type: "success" | "error" | "info" | "warning";
5766
+ type: "error" | "success" | "info" | "warning";
5735
5767
  id?: number | undefined;
5736
5768
  }[] | undefined;
5737
5769
  required?: boolean | undefined;
@@ -5964,7 +5996,7 @@ declare function init(config: AuthHeroConfig): {
5964
5996
  hint?: string | undefined;
5965
5997
  messages?: {
5966
5998
  text: string;
5967
- type: "success" | "error" | "info" | "warning";
5999
+ type: "error" | "success" | "info" | "warning";
5968
6000
  id?: number | undefined;
5969
6001
  }[] | undefined;
5970
6002
  required?: boolean | undefined;
@@ -5982,7 +6014,7 @@ declare function init(config: AuthHeroConfig): {
5982
6014
  hint?: string | undefined;
5983
6015
  messages?: {
5984
6016
  text: string;
5985
- type: "success" | "error" | "info" | "warning";
6017
+ type: "error" | "success" | "info" | "warning";
5986
6018
  id?: number | undefined;
5987
6019
  }[] | undefined;
5988
6020
  required?: boolean | undefined;
@@ -6006,7 +6038,7 @@ declare function init(config: AuthHeroConfig): {
6006
6038
  hint?: string | undefined;
6007
6039
  messages?: {
6008
6040
  text: string;
6009
- type: "success" | "error" | "info" | "warning";
6041
+ type: "error" | "success" | "info" | "warning";
6010
6042
  id?: number | undefined;
6011
6043
  }[] | undefined;
6012
6044
  required?: boolean | undefined;
@@ -6030,7 +6062,7 @@ declare function init(config: AuthHeroConfig): {
6030
6062
  hint?: string | undefined;
6031
6063
  messages?: {
6032
6064
  text: string;
6033
- type: "success" | "error" | "info" | "warning";
6065
+ type: "error" | "success" | "info" | "warning";
6034
6066
  id?: number | undefined;
6035
6067
  }[] | undefined;
6036
6068
  required?: boolean | undefined;
@@ -6059,7 +6091,7 @@ declare function init(config: AuthHeroConfig): {
6059
6091
  hint?: string | undefined;
6060
6092
  messages?: {
6061
6093
  text: string;
6062
- type: "success" | "error" | "info" | "warning";
6094
+ type: "error" | "success" | "info" | "warning";
6063
6095
  id?: number | undefined;
6064
6096
  }[] | undefined;
6065
6097
  required?: boolean | undefined;
@@ -6074,7 +6106,7 @@ declare function init(config: AuthHeroConfig): {
6074
6106
  hint?: string | undefined;
6075
6107
  messages?: {
6076
6108
  text: string;
6077
- type: "success" | "error" | "info" | "warning";
6109
+ type: "error" | "success" | "info" | "warning";
6078
6110
  id?: number | undefined;
6079
6111
  }[] | undefined;
6080
6112
  required?: boolean | undefined;
@@ -6095,7 +6127,7 @@ declare function init(config: AuthHeroConfig): {
6095
6127
  hint?: string | undefined;
6096
6128
  messages?: {
6097
6129
  text: string;
6098
- type: "success" | "error" | "info" | "warning";
6130
+ type: "error" | "success" | "info" | "warning";
6099
6131
  id?: number | undefined;
6100
6132
  }[] | undefined;
6101
6133
  required?: boolean | undefined;
@@ -6120,7 +6152,7 @@ declare function init(config: AuthHeroConfig): {
6120
6152
  hint?: string | undefined;
6121
6153
  messages?: {
6122
6154
  text: string;
6123
- type: "success" | "error" | "info" | "warning";
6155
+ type: "error" | "success" | "info" | "warning";
6124
6156
  id?: number | undefined;
6125
6157
  }[] | undefined;
6126
6158
  required?: boolean | undefined;
@@ -6139,7 +6171,7 @@ declare function init(config: AuthHeroConfig): {
6139
6171
  hint?: string | undefined;
6140
6172
  messages?: {
6141
6173
  text: string;
6142
- type: "success" | "error" | "info" | "warning";
6174
+ type: "error" | "success" | "info" | "warning";
6143
6175
  id?: number | undefined;
6144
6176
  }[] | undefined;
6145
6177
  required?: boolean | undefined;
@@ -6159,7 +6191,7 @@ declare function init(config: AuthHeroConfig): {
6159
6191
  hint?: string | undefined;
6160
6192
  messages?: {
6161
6193
  text: string;
6162
- type: "success" | "error" | "info" | "warning";
6194
+ type: "error" | "success" | "info" | "warning";
6163
6195
  id?: number | undefined;
6164
6196
  }[] | undefined;
6165
6197
  required?: boolean | undefined;
@@ -6178,7 +6210,7 @@ declare function init(config: AuthHeroConfig): {
6178
6210
  hint?: string | undefined;
6179
6211
  messages?: {
6180
6212
  text: string;
6181
- type: "success" | "error" | "info" | "warning";
6213
+ type: "error" | "success" | "info" | "warning";
6182
6214
  id?: number | undefined;
6183
6215
  }[] | undefined;
6184
6216
  required?: boolean | undefined;
@@ -6200,7 +6232,7 @@ declare function init(config: AuthHeroConfig): {
6200
6232
  hint?: string | undefined;
6201
6233
  messages?: {
6202
6234
  text: string;
6203
- type: "success" | "error" | "info" | "warning";
6235
+ type: "error" | "success" | "info" | "warning";
6204
6236
  id?: number | undefined;
6205
6237
  }[] | undefined;
6206
6238
  required?: boolean | undefined;
@@ -6222,7 +6254,7 @@ declare function init(config: AuthHeroConfig): {
6222
6254
  hint?: string | undefined;
6223
6255
  messages?: {
6224
6256
  text: string;
6225
- type: "success" | "error" | "info" | "warning";
6257
+ type: "error" | "success" | "info" | "warning";
6226
6258
  id?: number | undefined;
6227
6259
  }[] | undefined;
6228
6260
  required?: boolean | undefined;
@@ -6241,7 +6273,7 @@ declare function init(config: AuthHeroConfig): {
6241
6273
  hint?: string | undefined;
6242
6274
  messages?: {
6243
6275
  text: string;
6244
- type: "success" | "error" | "info" | "warning";
6276
+ type: "error" | "success" | "info" | "warning";
6245
6277
  id?: number | undefined;
6246
6278
  }[] | undefined;
6247
6279
  required?: boolean | undefined;
@@ -6266,7 +6298,7 @@ declare function init(config: AuthHeroConfig): {
6266
6298
  hint?: string | undefined;
6267
6299
  messages?: {
6268
6300
  text: string;
6269
- type: "success" | "error" | "info" | "warning";
6301
+ type: "error" | "success" | "info" | "warning";
6270
6302
  id?: number | undefined;
6271
6303
  }[] | undefined;
6272
6304
  required?: boolean | undefined;
@@ -6287,7 +6319,7 @@ declare function init(config: AuthHeroConfig): {
6287
6319
  hint?: string | undefined;
6288
6320
  messages?: {
6289
6321
  text: string;
6290
- type: "success" | "error" | "info" | "warning";
6322
+ type: "error" | "success" | "info" | "warning";
6291
6323
  id?: number | undefined;
6292
6324
  }[] | undefined;
6293
6325
  required?: boolean | undefined;
@@ -6308,7 +6340,7 @@ declare function init(config: AuthHeroConfig): {
6308
6340
  hint?: string | undefined;
6309
6341
  messages?: {
6310
6342
  text: string;
6311
- type: "success" | "error" | "info" | "warning";
6343
+ type: "error" | "success" | "info" | "warning";
6312
6344
  id?: number | undefined;
6313
6345
  }[] | undefined;
6314
6346
  required?: boolean | undefined;
@@ -6556,7 +6588,7 @@ declare function init(config: AuthHeroConfig): {
6556
6588
  hint?: string | undefined;
6557
6589
  messages?: {
6558
6590
  text: string;
6559
- type: "success" | "error" | "info" | "warning";
6591
+ type: "error" | "success" | "info" | "warning";
6560
6592
  id?: number | undefined;
6561
6593
  }[] | undefined;
6562
6594
  required?: boolean | undefined;
@@ -6574,7 +6606,7 @@ declare function init(config: AuthHeroConfig): {
6574
6606
  hint?: string | undefined;
6575
6607
  messages?: {
6576
6608
  text: string;
6577
- type: "success" | "error" | "info" | "warning";
6609
+ type: "error" | "success" | "info" | "warning";
6578
6610
  id?: number | undefined;
6579
6611
  }[] | undefined;
6580
6612
  required?: boolean | undefined;
@@ -6598,7 +6630,7 @@ declare function init(config: AuthHeroConfig): {
6598
6630
  hint?: string | undefined;
6599
6631
  messages?: {
6600
6632
  text: string;
6601
- type: "success" | "error" | "info" | "warning";
6633
+ type: "error" | "success" | "info" | "warning";
6602
6634
  id?: number | undefined;
6603
6635
  }[] | undefined;
6604
6636
  required?: boolean | undefined;
@@ -6622,7 +6654,7 @@ declare function init(config: AuthHeroConfig): {
6622
6654
  hint?: string | undefined;
6623
6655
  messages?: {
6624
6656
  text: string;
6625
- type: "success" | "error" | "info" | "warning";
6657
+ type: "error" | "success" | "info" | "warning";
6626
6658
  id?: number | undefined;
6627
6659
  }[] | undefined;
6628
6660
  required?: boolean | undefined;
@@ -6651,7 +6683,7 @@ declare function init(config: AuthHeroConfig): {
6651
6683
  hint?: string | undefined;
6652
6684
  messages?: {
6653
6685
  text: string;
6654
- type: "success" | "error" | "info" | "warning";
6686
+ type: "error" | "success" | "info" | "warning";
6655
6687
  id?: number | undefined;
6656
6688
  }[] | undefined;
6657
6689
  required?: boolean | undefined;
@@ -6666,7 +6698,7 @@ declare function init(config: AuthHeroConfig): {
6666
6698
  hint?: string | undefined;
6667
6699
  messages?: {
6668
6700
  text: string;
6669
- type: "success" | "error" | "info" | "warning";
6701
+ type: "error" | "success" | "info" | "warning";
6670
6702
  id?: number | undefined;
6671
6703
  }[] | undefined;
6672
6704
  required?: boolean | undefined;
@@ -6687,7 +6719,7 @@ declare function init(config: AuthHeroConfig): {
6687
6719
  hint?: string | undefined;
6688
6720
  messages?: {
6689
6721
  text: string;
6690
- type: "success" | "error" | "info" | "warning";
6722
+ type: "error" | "success" | "info" | "warning";
6691
6723
  id?: number | undefined;
6692
6724
  }[] | undefined;
6693
6725
  required?: boolean | undefined;
@@ -6712,7 +6744,7 @@ declare function init(config: AuthHeroConfig): {
6712
6744
  hint?: string | undefined;
6713
6745
  messages?: {
6714
6746
  text: string;
6715
- type: "success" | "error" | "info" | "warning";
6747
+ type: "error" | "success" | "info" | "warning";
6716
6748
  id?: number | undefined;
6717
6749
  }[] | undefined;
6718
6750
  required?: boolean | undefined;
@@ -6731,7 +6763,7 @@ declare function init(config: AuthHeroConfig): {
6731
6763
  hint?: string | undefined;
6732
6764
  messages?: {
6733
6765
  text: string;
6734
- type: "success" | "error" | "info" | "warning";
6766
+ type: "error" | "success" | "info" | "warning";
6735
6767
  id?: number | undefined;
6736
6768
  }[] | undefined;
6737
6769
  required?: boolean | undefined;
@@ -6751,7 +6783,7 @@ declare function init(config: AuthHeroConfig): {
6751
6783
  hint?: string | undefined;
6752
6784
  messages?: {
6753
6785
  text: string;
6754
- type: "success" | "error" | "info" | "warning";
6786
+ type: "error" | "success" | "info" | "warning";
6755
6787
  id?: number | undefined;
6756
6788
  }[] | undefined;
6757
6789
  required?: boolean | undefined;
@@ -6770,7 +6802,7 @@ declare function init(config: AuthHeroConfig): {
6770
6802
  hint?: string | undefined;
6771
6803
  messages?: {
6772
6804
  text: string;
6773
- type: "success" | "error" | "info" | "warning";
6805
+ type: "error" | "success" | "info" | "warning";
6774
6806
  id?: number | undefined;
6775
6807
  }[] | undefined;
6776
6808
  required?: boolean | undefined;
@@ -6792,7 +6824,7 @@ declare function init(config: AuthHeroConfig): {
6792
6824
  hint?: string | undefined;
6793
6825
  messages?: {
6794
6826
  text: string;
6795
- type: "success" | "error" | "info" | "warning";
6827
+ type: "error" | "success" | "info" | "warning";
6796
6828
  id?: number | undefined;
6797
6829
  }[] | undefined;
6798
6830
  required?: boolean | undefined;
@@ -6814,7 +6846,7 @@ declare function init(config: AuthHeroConfig): {
6814
6846
  hint?: string | undefined;
6815
6847
  messages?: {
6816
6848
  text: string;
6817
- type: "success" | "error" | "info" | "warning";
6849
+ type: "error" | "success" | "info" | "warning";
6818
6850
  id?: number | undefined;
6819
6851
  }[] | undefined;
6820
6852
  required?: boolean | undefined;
@@ -6833,7 +6865,7 @@ declare function init(config: AuthHeroConfig): {
6833
6865
  hint?: string | undefined;
6834
6866
  messages?: {
6835
6867
  text: string;
6836
- type: "success" | "error" | "info" | "warning";
6868
+ type: "error" | "success" | "info" | "warning";
6837
6869
  id?: number | undefined;
6838
6870
  }[] | undefined;
6839
6871
  required?: boolean | undefined;
@@ -6858,7 +6890,7 @@ declare function init(config: AuthHeroConfig): {
6858
6890
  hint?: string | undefined;
6859
6891
  messages?: {
6860
6892
  text: string;
6861
- type: "success" | "error" | "info" | "warning";
6893
+ type: "error" | "success" | "info" | "warning";
6862
6894
  id?: number | undefined;
6863
6895
  }[] | undefined;
6864
6896
  required?: boolean | undefined;
@@ -6879,7 +6911,7 @@ declare function init(config: AuthHeroConfig): {
6879
6911
  hint?: string | undefined;
6880
6912
  messages?: {
6881
6913
  text: string;
6882
- type: "success" | "error" | "info" | "warning";
6914
+ type: "error" | "success" | "info" | "warning";
6883
6915
  id?: number | undefined;
6884
6916
  }[] | undefined;
6885
6917
  required?: boolean | undefined;
@@ -6900,7 +6932,7 @@ declare function init(config: AuthHeroConfig): {
6900
6932
  hint?: string | undefined;
6901
6933
  messages?: {
6902
6934
  text: string;
6903
- type: "success" | "error" | "info" | "warning";
6935
+ type: "error" | "success" | "info" | "warning";
6904
6936
  id?: number | undefined;
6905
6937
  }[] | undefined;
6906
6938
  required?: boolean | undefined;
@@ -7154,7 +7186,7 @@ declare function init(config: AuthHeroConfig): {
7154
7186
  hint?: string | undefined;
7155
7187
  messages?: {
7156
7188
  text: string;
7157
- type: "success" | "error" | "info" | "warning";
7189
+ type: "error" | "success" | "info" | "warning";
7158
7190
  id?: number | undefined;
7159
7191
  }[] | undefined;
7160
7192
  required?: boolean | undefined;
@@ -7172,7 +7204,7 @@ declare function init(config: AuthHeroConfig): {
7172
7204
  hint?: string | undefined;
7173
7205
  messages?: {
7174
7206
  text: string;
7175
- type: "success" | "error" | "info" | "warning";
7207
+ type: "error" | "success" | "info" | "warning";
7176
7208
  id?: number | undefined;
7177
7209
  }[] | undefined;
7178
7210
  required?: boolean | undefined;
@@ -7196,7 +7228,7 @@ declare function init(config: AuthHeroConfig): {
7196
7228
  hint?: string | undefined;
7197
7229
  messages?: {
7198
7230
  text: string;
7199
- type: "success" | "error" | "info" | "warning";
7231
+ type: "error" | "success" | "info" | "warning";
7200
7232
  id?: number | undefined;
7201
7233
  }[] | undefined;
7202
7234
  required?: boolean | undefined;
@@ -7220,7 +7252,7 @@ declare function init(config: AuthHeroConfig): {
7220
7252
  hint?: string | undefined;
7221
7253
  messages?: {
7222
7254
  text: string;
7223
- type: "success" | "error" | "info" | "warning";
7255
+ type: "error" | "success" | "info" | "warning";
7224
7256
  id?: number | undefined;
7225
7257
  }[] | undefined;
7226
7258
  required?: boolean | undefined;
@@ -7245,7 +7277,7 @@ declare function init(config: AuthHeroConfig): {
7245
7277
  hint?: string | undefined;
7246
7278
  messages?: {
7247
7279
  text: string;
7248
- type: "success" | "error" | "info" | "warning";
7280
+ type: "error" | "success" | "info" | "warning";
7249
7281
  id?: number | undefined;
7250
7282
  }[] | undefined;
7251
7283
  required?: boolean | undefined;
@@ -7260,7 +7292,7 @@ declare function init(config: AuthHeroConfig): {
7260
7292
  hint?: string | undefined;
7261
7293
  messages?: {
7262
7294
  text: string;
7263
- type: "success" | "error" | "info" | "warning";
7295
+ type: "error" | "success" | "info" | "warning";
7264
7296
  id?: number | undefined;
7265
7297
  }[] | undefined;
7266
7298
  required?: boolean | undefined;
@@ -7281,7 +7313,7 @@ declare function init(config: AuthHeroConfig): {
7281
7313
  hint?: string | undefined;
7282
7314
  messages?: {
7283
7315
  text: string;
7284
- type: "success" | "error" | "info" | "warning";
7316
+ type: "error" | "success" | "info" | "warning";
7285
7317
  id?: number | undefined;
7286
7318
  }[] | undefined;
7287
7319
  required?: boolean | undefined;
@@ -7306,7 +7338,7 @@ declare function init(config: AuthHeroConfig): {
7306
7338
  hint?: string | undefined;
7307
7339
  messages?: {
7308
7340
  text: string;
7309
- type: "success" | "error" | "info" | "warning";
7341
+ type: "error" | "success" | "info" | "warning";
7310
7342
  id?: number | undefined;
7311
7343
  }[] | undefined;
7312
7344
  required?: boolean | undefined;
@@ -7325,7 +7357,7 @@ declare function init(config: AuthHeroConfig): {
7325
7357
  hint?: string | undefined;
7326
7358
  messages?: {
7327
7359
  text: string;
7328
- type: "success" | "error" | "info" | "warning";
7360
+ type: "error" | "success" | "info" | "warning";
7329
7361
  id?: number | undefined;
7330
7362
  }[] | undefined;
7331
7363
  required?: boolean | undefined;
@@ -7345,7 +7377,7 @@ declare function init(config: AuthHeroConfig): {
7345
7377
  hint?: string | undefined;
7346
7378
  messages?: {
7347
7379
  text: string;
7348
- type: "success" | "error" | "info" | "warning";
7380
+ type: "error" | "success" | "info" | "warning";
7349
7381
  id?: number | undefined;
7350
7382
  }[] | undefined;
7351
7383
  required?: boolean | undefined;
@@ -7364,7 +7396,7 @@ declare function init(config: AuthHeroConfig): {
7364
7396
  hint?: string | undefined;
7365
7397
  messages?: {
7366
7398
  text: string;
7367
- type: "success" | "error" | "info" | "warning";
7399
+ type: "error" | "success" | "info" | "warning";
7368
7400
  id?: number | undefined;
7369
7401
  }[] | undefined;
7370
7402
  required?: boolean | undefined;
@@ -7386,7 +7418,7 @@ declare function init(config: AuthHeroConfig): {
7386
7418
  hint?: string | undefined;
7387
7419
  messages?: {
7388
7420
  text: string;
7389
- type: "success" | "error" | "info" | "warning";
7421
+ type: "error" | "success" | "info" | "warning";
7390
7422
  id?: number | undefined;
7391
7423
  }[] | undefined;
7392
7424
  required?: boolean | undefined;
@@ -7408,7 +7440,7 @@ declare function init(config: AuthHeroConfig): {
7408
7440
  hint?: string | undefined;
7409
7441
  messages?: {
7410
7442
  text: string;
7411
- type: "success" | "error" | "info" | "warning";
7443
+ type: "error" | "success" | "info" | "warning";
7412
7444
  id?: number | undefined;
7413
7445
  }[] | undefined;
7414
7446
  required?: boolean | undefined;
@@ -7427,7 +7459,7 @@ declare function init(config: AuthHeroConfig): {
7427
7459
  hint?: string | undefined;
7428
7460
  messages?: {
7429
7461
  text: string;
7430
- type: "success" | "error" | "info" | "warning";
7462
+ type: "error" | "success" | "info" | "warning";
7431
7463
  id?: number | undefined;
7432
7464
  }[] | undefined;
7433
7465
  required?: boolean | undefined;
@@ -7452,7 +7484,7 @@ declare function init(config: AuthHeroConfig): {
7452
7484
  hint?: string | undefined;
7453
7485
  messages?: {
7454
7486
  text: string;
7455
- type: "success" | "error" | "info" | "warning";
7487
+ type: "error" | "success" | "info" | "warning";
7456
7488
  id?: number | undefined;
7457
7489
  }[] | undefined;
7458
7490
  required?: boolean | undefined;
@@ -7473,7 +7505,7 @@ declare function init(config: AuthHeroConfig): {
7473
7505
  hint?: string | undefined;
7474
7506
  messages?: {
7475
7507
  text: string;
7476
- type: "success" | "error" | "info" | "warning";
7508
+ type: "error" | "success" | "info" | "warning";
7477
7509
  id?: number | undefined;
7478
7510
  }[] | undefined;
7479
7511
  required?: boolean | undefined;
@@ -7494,7 +7526,7 @@ declare function init(config: AuthHeroConfig): {
7494
7526
  hint?: string | undefined;
7495
7527
  messages?: {
7496
7528
  text: string;
7497
- type: "success" | "error" | "info" | "warning";
7529
+ type: "error" | "success" | "info" | "warning";
7498
7530
  id?: number | undefined;
7499
7531
  }[] | undefined;
7500
7532
  required?: boolean | undefined;
@@ -7725,7 +7757,7 @@ declare function init(config: AuthHeroConfig): {
7725
7757
  hint?: string | undefined;
7726
7758
  messages?: {
7727
7759
  text: string;
7728
- type: "success" | "error" | "info" | "warning";
7760
+ type: "error" | "success" | "info" | "warning";
7729
7761
  id?: number | undefined;
7730
7762
  }[] | undefined;
7731
7763
  required?: boolean | undefined;
@@ -7743,7 +7775,7 @@ declare function init(config: AuthHeroConfig): {
7743
7775
  hint?: string | undefined;
7744
7776
  messages?: {
7745
7777
  text: string;
7746
- type: "success" | "error" | "info" | "warning";
7778
+ type: "error" | "success" | "info" | "warning";
7747
7779
  id?: number | undefined;
7748
7780
  }[] | undefined;
7749
7781
  required?: boolean | undefined;
@@ -7767,7 +7799,7 @@ declare function init(config: AuthHeroConfig): {
7767
7799
  hint?: string | undefined;
7768
7800
  messages?: {
7769
7801
  text: string;
7770
- type: "success" | "error" | "info" | "warning";
7802
+ type: "error" | "success" | "info" | "warning";
7771
7803
  id?: number | undefined;
7772
7804
  }[] | undefined;
7773
7805
  required?: boolean | undefined;
@@ -7791,7 +7823,7 @@ declare function init(config: AuthHeroConfig): {
7791
7823
  hint?: string | undefined;
7792
7824
  messages?: {
7793
7825
  text: string;
7794
- type: "success" | "error" | "info" | "warning";
7826
+ type: "error" | "success" | "info" | "warning";
7795
7827
  id?: number | undefined;
7796
7828
  }[] | undefined;
7797
7829
  required?: boolean | undefined;
@@ -7820,7 +7852,7 @@ declare function init(config: AuthHeroConfig): {
7820
7852
  hint?: string | undefined;
7821
7853
  messages?: {
7822
7854
  text: string;
7823
- type: "success" | "error" | "info" | "warning";
7855
+ type: "error" | "success" | "info" | "warning";
7824
7856
  id?: number | undefined;
7825
7857
  }[] | undefined;
7826
7858
  required?: boolean | undefined;
@@ -7835,7 +7867,7 @@ declare function init(config: AuthHeroConfig): {
7835
7867
  hint?: string | undefined;
7836
7868
  messages?: {
7837
7869
  text: string;
7838
- type: "success" | "error" | "info" | "warning";
7870
+ type: "error" | "success" | "info" | "warning";
7839
7871
  id?: number | undefined;
7840
7872
  }[] | undefined;
7841
7873
  required?: boolean | undefined;
@@ -7856,7 +7888,7 @@ declare function init(config: AuthHeroConfig): {
7856
7888
  hint?: string | undefined;
7857
7889
  messages?: {
7858
7890
  text: string;
7859
- type: "success" | "error" | "info" | "warning";
7891
+ type: "error" | "success" | "info" | "warning";
7860
7892
  id?: number | undefined;
7861
7893
  }[] | undefined;
7862
7894
  required?: boolean | undefined;
@@ -7881,7 +7913,7 @@ declare function init(config: AuthHeroConfig): {
7881
7913
  hint?: string | undefined;
7882
7914
  messages?: {
7883
7915
  text: string;
7884
- type: "success" | "error" | "info" | "warning";
7916
+ type: "error" | "success" | "info" | "warning";
7885
7917
  id?: number | undefined;
7886
7918
  }[] | undefined;
7887
7919
  required?: boolean | undefined;
@@ -7900,7 +7932,7 @@ declare function init(config: AuthHeroConfig): {
7900
7932
  hint?: string | undefined;
7901
7933
  messages?: {
7902
7934
  text: string;
7903
- type: "success" | "error" | "info" | "warning";
7935
+ type: "error" | "success" | "info" | "warning";
7904
7936
  id?: number | undefined;
7905
7937
  }[] | undefined;
7906
7938
  required?: boolean | undefined;
@@ -7920,7 +7952,7 @@ declare function init(config: AuthHeroConfig): {
7920
7952
  hint?: string | undefined;
7921
7953
  messages?: {
7922
7954
  text: string;
7923
- type: "success" | "error" | "info" | "warning";
7955
+ type: "error" | "success" | "info" | "warning";
7924
7956
  id?: number | undefined;
7925
7957
  }[] | undefined;
7926
7958
  required?: boolean | undefined;
@@ -7939,7 +7971,7 @@ declare function init(config: AuthHeroConfig): {
7939
7971
  hint?: string | undefined;
7940
7972
  messages?: {
7941
7973
  text: string;
7942
- type: "success" | "error" | "info" | "warning";
7974
+ type: "error" | "success" | "info" | "warning";
7943
7975
  id?: number | undefined;
7944
7976
  }[] | undefined;
7945
7977
  required?: boolean | undefined;
@@ -7961,7 +7993,7 @@ declare function init(config: AuthHeroConfig): {
7961
7993
  hint?: string | undefined;
7962
7994
  messages?: {
7963
7995
  text: string;
7964
- type: "success" | "error" | "info" | "warning";
7996
+ type: "error" | "success" | "info" | "warning";
7965
7997
  id?: number | undefined;
7966
7998
  }[] | undefined;
7967
7999
  required?: boolean | undefined;
@@ -7983,7 +8015,7 @@ declare function init(config: AuthHeroConfig): {
7983
8015
  hint?: string | undefined;
7984
8016
  messages?: {
7985
8017
  text: string;
7986
- type: "success" | "error" | "info" | "warning";
8018
+ type: "error" | "success" | "info" | "warning";
7987
8019
  id?: number | undefined;
7988
8020
  }[] | undefined;
7989
8021
  required?: boolean | undefined;
@@ -8002,7 +8034,7 @@ declare function init(config: AuthHeroConfig): {
8002
8034
  hint?: string | undefined;
8003
8035
  messages?: {
8004
8036
  text: string;
8005
- type: "success" | "error" | "info" | "warning";
8037
+ type: "error" | "success" | "info" | "warning";
8006
8038
  id?: number | undefined;
8007
8039
  }[] | undefined;
8008
8040
  required?: boolean | undefined;
@@ -8027,7 +8059,7 @@ declare function init(config: AuthHeroConfig): {
8027
8059
  hint?: string | undefined;
8028
8060
  messages?: {
8029
8061
  text: string;
8030
- type: "success" | "error" | "info" | "warning";
8062
+ type: "error" | "success" | "info" | "warning";
8031
8063
  id?: number | undefined;
8032
8064
  }[] | undefined;
8033
8065
  required?: boolean | undefined;
@@ -8048,7 +8080,7 @@ declare function init(config: AuthHeroConfig): {
8048
8080
  hint?: string | undefined;
8049
8081
  messages?: {
8050
8082
  text: string;
8051
- type: "success" | "error" | "info" | "warning";
8083
+ type: "error" | "success" | "info" | "warning";
8052
8084
  id?: number | undefined;
8053
8085
  }[] | undefined;
8054
8086
  required?: boolean | undefined;
@@ -8069,7 +8101,7 @@ declare function init(config: AuthHeroConfig): {
8069
8101
  hint?: string | undefined;
8070
8102
  messages?: {
8071
8103
  text: string;
8072
- type: "success" | "error" | "info" | "warning";
8104
+ type: "error" | "success" | "info" | "warning";
8073
8105
  id?: number | undefined;
8074
8106
  }[] | undefined;
8075
8107
  required?: boolean | undefined;
@@ -8302,7 +8334,7 @@ declare function init(config: AuthHeroConfig): {
8302
8334
  hint?: string | undefined;
8303
8335
  messages?: {
8304
8336
  text: string;
8305
- type: "success" | "error" | "info" | "warning";
8337
+ type: "error" | "success" | "info" | "warning";
8306
8338
  id?: number | undefined;
8307
8339
  }[] | undefined;
8308
8340
  required?: boolean | undefined;
@@ -8320,7 +8352,7 @@ declare function init(config: AuthHeroConfig): {
8320
8352
  hint?: string | undefined;
8321
8353
  messages?: {
8322
8354
  text: string;
8323
- type: "success" | "error" | "info" | "warning";
8355
+ type: "error" | "success" | "info" | "warning";
8324
8356
  id?: number | undefined;
8325
8357
  }[] | undefined;
8326
8358
  required?: boolean | undefined;
@@ -8344,7 +8376,7 @@ declare function init(config: AuthHeroConfig): {
8344
8376
  hint?: string | undefined;
8345
8377
  messages?: {
8346
8378
  text: string;
8347
- type: "success" | "error" | "info" | "warning";
8379
+ type: "error" | "success" | "info" | "warning";
8348
8380
  id?: number | undefined;
8349
8381
  }[] | undefined;
8350
8382
  required?: boolean | undefined;
@@ -8368,7 +8400,7 @@ declare function init(config: AuthHeroConfig): {
8368
8400
  hint?: string | undefined;
8369
8401
  messages?: {
8370
8402
  text: string;
8371
- type: "success" | "error" | "info" | "warning";
8403
+ type: "error" | "success" | "info" | "warning";
8372
8404
  id?: number | undefined;
8373
8405
  }[] | undefined;
8374
8406
  required?: boolean | undefined;
@@ -8393,7 +8425,7 @@ declare function init(config: AuthHeroConfig): {
8393
8425
  hint?: string | undefined;
8394
8426
  messages?: {
8395
8427
  text: string;
8396
- type: "success" | "error" | "info" | "warning";
8428
+ type: "error" | "success" | "info" | "warning";
8397
8429
  id?: number | undefined;
8398
8430
  }[] | undefined;
8399
8431
  required?: boolean | undefined;
@@ -8408,7 +8440,7 @@ declare function init(config: AuthHeroConfig): {
8408
8440
  hint?: string | undefined;
8409
8441
  messages?: {
8410
8442
  text: string;
8411
- type: "success" | "error" | "info" | "warning";
8443
+ type: "error" | "success" | "info" | "warning";
8412
8444
  id?: number | undefined;
8413
8445
  }[] | undefined;
8414
8446
  required?: boolean | undefined;
@@ -8429,7 +8461,7 @@ declare function init(config: AuthHeroConfig): {
8429
8461
  hint?: string | undefined;
8430
8462
  messages?: {
8431
8463
  text: string;
8432
- type: "success" | "error" | "info" | "warning";
8464
+ type: "error" | "success" | "info" | "warning";
8433
8465
  id?: number | undefined;
8434
8466
  }[] | undefined;
8435
8467
  required?: boolean | undefined;
@@ -8454,7 +8486,7 @@ declare function init(config: AuthHeroConfig): {
8454
8486
  hint?: string | undefined;
8455
8487
  messages?: {
8456
8488
  text: string;
8457
- type: "success" | "error" | "info" | "warning";
8489
+ type: "error" | "success" | "info" | "warning";
8458
8490
  id?: number | undefined;
8459
8491
  }[] | undefined;
8460
8492
  required?: boolean | undefined;
@@ -8473,7 +8505,7 @@ declare function init(config: AuthHeroConfig): {
8473
8505
  hint?: string | undefined;
8474
8506
  messages?: {
8475
8507
  text: string;
8476
- type: "success" | "error" | "info" | "warning";
8508
+ type: "error" | "success" | "info" | "warning";
8477
8509
  id?: number | undefined;
8478
8510
  }[] | undefined;
8479
8511
  required?: boolean | undefined;
@@ -8493,7 +8525,7 @@ declare function init(config: AuthHeroConfig): {
8493
8525
  hint?: string | undefined;
8494
8526
  messages?: {
8495
8527
  text: string;
8496
- type: "success" | "error" | "info" | "warning";
8528
+ type: "error" | "success" | "info" | "warning";
8497
8529
  id?: number | undefined;
8498
8530
  }[] | undefined;
8499
8531
  required?: boolean | undefined;
@@ -8512,7 +8544,7 @@ declare function init(config: AuthHeroConfig): {
8512
8544
  hint?: string | undefined;
8513
8545
  messages?: {
8514
8546
  text: string;
8515
- type: "success" | "error" | "info" | "warning";
8547
+ type: "error" | "success" | "info" | "warning";
8516
8548
  id?: number | undefined;
8517
8549
  }[] | undefined;
8518
8550
  required?: boolean | undefined;
@@ -8534,7 +8566,7 @@ declare function init(config: AuthHeroConfig): {
8534
8566
  hint?: string | undefined;
8535
8567
  messages?: {
8536
8568
  text: string;
8537
- type: "success" | "error" | "info" | "warning";
8569
+ type: "error" | "success" | "info" | "warning";
8538
8570
  id?: number | undefined;
8539
8571
  }[] | undefined;
8540
8572
  required?: boolean | undefined;
@@ -8556,7 +8588,7 @@ declare function init(config: AuthHeroConfig): {
8556
8588
  hint?: string | undefined;
8557
8589
  messages?: {
8558
8590
  text: string;
8559
- type: "success" | "error" | "info" | "warning";
8591
+ type: "error" | "success" | "info" | "warning";
8560
8592
  id?: number | undefined;
8561
8593
  }[] | undefined;
8562
8594
  required?: boolean | undefined;
@@ -8575,7 +8607,7 @@ declare function init(config: AuthHeroConfig): {
8575
8607
  hint?: string | undefined;
8576
8608
  messages?: {
8577
8609
  text: string;
8578
- type: "success" | "error" | "info" | "warning";
8610
+ type: "error" | "success" | "info" | "warning";
8579
8611
  id?: number | undefined;
8580
8612
  }[] | undefined;
8581
8613
  required?: boolean | undefined;
@@ -8600,7 +8632,7 @@ declare function init(config: AuthHeroConfig): {
8600
8632
  hint?: string | undefined;
8601
8633
  messages?: {
8602
8634
  text: string;
8603
- type: "success" | "error" | "info" | "warning";
8635
+ type: "error" | "success" | "info" | "warning";
8604
8636
  id?: number | undefined;
8605
8637
  }[] | undefined;
8606
8638
  required?: boolean | undefined;
@@ -8621,7 +8653,7 @@ declare function init(config: AuthHeroConfig): {
8621
8653
  hint?: string | undefined;
8622
8654
  messages?: {
8623
8655
  text: string;
8624
- type: "success" | "error" | "info" | "warning";
8656
+ type: "error" | "success" | "info" | "warning";
8625
8657
  id?: number | undefined;
8626
8658
  }[] | undefined;
8627
8659
  required?: boolean | undefined;
@@ -8642,7 +8674,7 @@ declare function init(config: AuthHeroConfig): {
8642
8674
  hint?: string | undefined;
8643
8675
  messages?: {
8644
8676
  text: string;
8645
- type: "success" | "error" | "info" | "warning";
8677
+ type: "error" | "success" | "info" | "warning";
8646
8678
  id?: number | undefined;
8647
8679
  }[] | undefined;
8648
8680
  required?: boolean | undefined;
@@ -8873,7 +8905,7 @@ declare function init(config: AuthHeroConfig): {
8873
8905
  hint?: string | undefined;
8874
8906
  messages?: {
8875
8907
  text: string;
8876
- type: "success" | "error" | "info" | "warning";
8908
+ type: "error" | "success" | "info" | "warning";
8877
8909
  id?: number | undefined;
8878
8910
  }[] | undefined;
8879
8911
  required?: boolean | undefined;
@@ -8891,7 +8923,7 @@ declare function init(config: AuthHeroConfig): {
8891
8923
  hint?: string | undefined;
8892
8924
  messages?: {
8893
8925
  text: string;
8894
- type: "success" | "error" | "info" | "warning";
8926
+ type: "error" | "success" | "info" | "warning";
8895
8927
  id?: number | undefined;
8896
8928
  }[] | undefined;
8897
8929
  required?: boolean | undefined;
@@ -8915,7 +8947,7 @@ declare function init(config: AuthHeroConfig): {
8915
8947
  hint?: string | undefined;
8916
8948
  messages?: {
8917
8949
  text: string;
8918
- type: "success" | "error" | "info" | "warning";
8950
+ type: "error" | "success" | "info" | "warning";
8919
8951
  id?: number | undefined;
8920
8952
  }[] | undefined;
8921
8953
  required?: boolean | undefined;
@@ -8939,7 +8971,7 @@ declare function init(config: AuthHeroConfig): {
8939
8971
  hint?: string | undefined;
8940
8972
  messages?: {
8941
8973
  text: string;
8942
- type: "success" | "error" | "info" | "warning";
8974
+ type: "error" | "success" | "info" | "warning";
8943
8975
  id?: number | undefined;
8944
8976
  }[] | undefined;
8945
8977
  required?: boolean | undefined;
@@ -8968,7 +9000,7 @@ declare function init(config: AuthHeroConfig): {
8968
9000
  hint?: string | undefined;
8969
9001
  messages?: {
8970
9002
  text: string;
8971
- type: "success" | "error" | "info" | "warning";
9003
+ type: "error" | "success" | "info" | "warning";
8972
9004
  id?: number | undefined;
8973
9005
  }[] | undefined;
8974
9006
  required?: boolean | undefined;
@@ -8983,7 +9015,7 @@ declare function init(config: AuthHeroConfig): {
8983
9015
  hint?: string | undefined;
8984
9016
  messages?: {
8985
9017
  text: string;
8986
- type: "success" | "error" | "info" | "warning";
9018
+ type: "error" | "success" | "info" | "warning";
8987
9019
  id?: number | undefined;
8988
9020
  }[] | undefined;
8989
9021
  required?: boolean | undefined;
@@ -9004,7 +9036,7 @@ declare function init(config: AuthHeroConfig): {
9004
9036
  hint?: string | undefined;
9005
9037
  messages?: {
9006
9038
  text: string;
9007
- type: "success" | "error" | "info" | "warning";
9039
+ type: "error" | "success" | "info" | "warning";
9008
9040
  id?: number | undefined;
9009
9041
  }[] | undefined;
9010
9042
  required?: boolean | undefined;
@@ -9029,7 +9061,7 @@ declare function init(config: AuthHeroConfig): {
9029
9061
  hint?: string | undefined;
9030
9062
  messages?: {
9031
9063
  text: string;
9032
- type: "success" | "error" | "info" | "warning";
9064
+ type: "error" | "success" | "info" | "warning";
9033
9065
  id?: number | undefined;
9034
9066
  }[] | undefined;
9035
9067
  required?: boolean | undefined;
@@ -9048,7 +9080,7 @@ declare function init(config: AuthHeroConfig): {
9048
9080
  hint?: string | undefined;
9049
9081
  messages?: {
9050
9082
  text: string;
9051
- type: "success" | "error" | "info" | "warning";
9083
+ type: "error" | "success" | "info" | "warning";
9052
9084
  id?: number | undefined;
9053
9085
  }[] | undefined;
9054
9086
  required?: boolean | undefined;
@@ -9068,7 +9100,7 @@ declare function init(config: AuthHeroConfig): {
9068
9100
  hint?: string | undefined;
9069
9101
  messages?: {
9070
9102
  text: string;
9071
- type: "success" | "error" | "info" | "warning";
9103
+ type: "error" | "success" | "info" | "warning";
9072
9104
  id?: number | undefined;
9073
9105
  }[] | undefined;
9074
9106
  required?: boolean | undefined;
@@ -9087,7 +9119,7 @@ declare function init(config: AuthHeroConfig): {
9087
9119
  hint?: string | undefined;
9088
9120
  messages?: {
9089
9121
  text: string;
9090
- type: "success" | "error" | "info" | "warning";
9122
+ type: "error" | "success" | "info" | "warning";
9091
9123
  id?: number | undefined;
9092
9124
  }[] | undefined;
9093
9125
  required?: boolean | undefined;
@@ -9109,7 +9141,7 @@ declare function init(config: AuthHeroConfig): {
9109
9141
  hint?: string | undefined;
9110
9142
  messages?: {
9111
9143
  text: string;
9112
- type: "success" | "error" | "info" | "warning";
9144
+ type: "error" | "success" | "info" | "warning";
9113
9145
  id?: number | undefined;
9114
9146
  }[] | undefined;
9115
9147
  required?: boolean | undefined;
@@ -9131,7 +9163,7 @@ declare function init(config: AuthHeroConfig): {
9131
9163
  hint?: string | undefined;
9132
9164
  messages?: {
9133
9165
  text: string;
9134
- type: "success" | "error" | "info" | "warning";
9166
+ type: "error" | "success" | "info" | "warning";
9135
9167
  id?: number | undefined;
9136
9168
  }[] | undefined;
9137
9169
  required?: boolean | undefined;
@@ -9150,7 +9182,7 @@ declare function init(config: AuthHeroConfig): {
9150
9182
  hint?: string | undefined;
9151
9183
  messages?: {
9152
9184
  text: string;
9153
- type: "success" | "error" | "info" | "warning";
9185
+ type: "error" | "success" | "info" | "warning";
9154
9186
  id?: number | undefined;
9155
9187
  }[] | undefined;
9156
9188
  required?: boolean | undefined;
@@ -9175,7 +9207,7 @@ declare function init(config: AuthHeroConfig): {
9175
9207
  hint?: string | undefined;
9176
9208
  messages?: {
9177
9209
  text: string;
9178
- type: "success" | "error" | "info" | "warning";
9210
+ type: "error" | "success" | "info" | "warning";
9179
9211
  id?: number | undefined;
9180
9212
  }[] | undefined;
9181
9213
  required?: boolean | undefined;
@@ -9196,7 +9228,7 @@ declare function init(config: AuthHeroConfig): {
9196
9228
  hint?: string | undefined;
9197
9229
  messages?: {
9198
9230
  text: string;
9199
- type: "success" | "error" | "info" | "warning";
9231
+ type: "error" | "success" | "info" | "warning";
9200
9232
  id?: number | undefined;
9201
9233
  }[] | undefined;
9202
9234
  required?: boolean | undefined;
@@ -9217,7 +9249,7 @@ declare function init(config: AuthHeroConfig): {
9217
9249
  hint?: string | undefined;
9218
9250
  messages?: {
9219
9251
  text: string;
9220
- type: "success" | "error" | "info" | "warning";
9252
+ type: "error" | "success" | "info" | "warning";
9221
9253
  id?: number | undefined;
9222
9254
  }[] | undefined;
9223
9255
  required?: boolean | undefined;
@@ -9447,7 +9479,7 @@ declare function init(config: AuthHeroConfig): {
9447
9479
  };
9448
9480
  };
9449
9481
  output: {
9450
- prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
9482
+ prompt: "common" | "login" | "signup" | "login-password" | "login-id" | "mfa" | "organizations" | "status" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9451
9483
  language: string;
9452
9484
  }[];
9453
9485
  outputFormat: "json";
@@ -9485,7 +9517,7 @@ declare function init(config: AuthHeroConfig): {
9485
9517
  $get: {
9486
9518
  input: {
9487
9519
  param: {
9488
- prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
9520
+ prompt: "common" | "login" | "signup" | "login-password" | "login-id" | "mfa" | "organizations" | "status" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9489
9521
  language: string;
9490
9522
  };
9491
9523
  } & {
@@ -9507,7 +9539,7 @@ declare function init(config: AuthHeroConfig): {
9507
9539
  $put: {
9508
9540
  input: {
9509
9541
  param: {
9510
- prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
9542
+ prompt: "common" | "login" | "signup" | "login-password" | "login-id" | "mfa" | "organizations" | "status" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9511
9543
  language: string;
9512
9544
  };
9513
9545
  } & {
@@ -9531,7 +9563,7 @@ declare function init(config: AuthHeroConfig): {
9531
9563
  $delete: {
9532
9564
  input: {
9533
9565
  param: {
9534
- prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
9566
+ prompt: "common" | "login" | "signup" | "login-password" | "login-id" | "mfa" | "organizations" | "status" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9535
9567
  language: string;
9536
9568
  };
9537
9569
  } & {
@@ -9670,7 +9702,7 @@ declare function init(config: AuthHeroConfig): {
9670
9702
  } | undefined;
9671
9703
  } | undefined;
9672
9704
  passkey_options?: {
9673
- challenge_ui?: "both" | "autofill" | "button" | undefined;
9705
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
9674
9706
  local_enrollment_enabled?: boolean | undefined;
9675
9707
  progressive_enrollment_enabled?: boolean | undefined;
9676
9708
  } | undefined;
@@ -9804,7 +9836,7 @@ declare function init(config: AuthHeroConfig): {
9804
9836
  } | undefined;
9805
9837
  } | undefined;
9806
9838
  passkey_options?: {
9807
- challenge_ui?: "both" | "autofill" | "button" | undefined;
9839
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
9808
9840
  local_enrollment_enabled?: boolean | undefined;
9809
9841
  progressive_enrollment_enabled?: boolean | undefined;
9810
9842
  } | undefined;
@@ -9953,7 +9985,7 @@ declare function init(config: AuthHeroConfig): {
9953
9985
  } | undefined;
9954
9986
  } | undefined;
9955
9987
  passkey_options?: {
9956
- challenge_ui?: "both" | "autofill" | "button" | undefined;
9988
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
9957
9989
  local_enrollment_enabled?: boolean | undefined;
9958
9990
  progressive_enrollment_enabled?: boolean | undefined;
9959
9991
  } | undefined;
@@ -10132,7 +10164,7 @@ declare function init(config: AuthHeroConfig): {
10132
10164
  } | undefined;
10133
10165
  } | undefined;
10134
10166
  passkey_options?: {
10135
- challenge_ui?: "both" | "autofill" | "button" | undefined;
10167
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
10136
10168
  local_enrollment_enabled?: boolean | undefined;
10137
10169
  progressive_enrollment_enabled?: boolean | undefined;
10138
10170
  } | undefined;
@@ -10290,7 +10322,7 @@ declare function init(config: AuthHeroConfig): {
10290
10322
  } | undefined;
10291
10323
  } | undefined;
10292
10324
  passkey_options?: {
10293
- challenge_ui?: "both" | "autofill" | "button" | undefined;
10325
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
10294
10326
  local_enrollment_enabled?: boolean | undefined;
10295
10327
  progressive_enrollment_enabled?: boolean | undefined;
10296
10328
  } | undefined;
@@ -10393,7 +10425,7 @@ declare function init(config: AuthHeroConfig): {
10393
10425
  };
10394
10426
  } | {
10395
10427
  mode: "inline";
10396
- status: "success" | "error";
10428
+ status: "error" | "success";
10397
10429
  connection_id: string;
10398
10430
  connection_name: string;
10399
10431
  strategy: string;
@@ -11032,7 +11064,7 @@ declare function init(config: AuthHeroConfig): {
11032
11064
  log_type: string;
11033
11065
  category: "user_action" | "admin_action" | "system" | "api";
11034
11066
  actor: {
11035
- type: "user" | "client_credentials" | "api_key" | "system" | "admin";
11067
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
11036
11068
  id?: string | undefined;
11037
11069
  email?: string | undefined;
11038
11070
  org_id?: string | undefined;
@@ -11340,7 +11372,7 @@ declare function init(config: AuthHeroConfig): {
11340
11372
  created_at: string;
11341
11373
  updated_at: string;
11342
11374
  name: string;
11343
- provider: "auth0" | "oidc" | "okta" | "cognito";
11375
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11344
11376
  connection: string;
11345
11377
  enabled: boolean;
11346
11378
  credentials: {
@@ -11372,7 +11404,7 @@ declare function init(config: AuthHeroConfig): {
11372
11404
  created_at: string;
11373
11405
  updated_at: string;
11374
11406
  name: string;
11375
- provider: "auth0" | "oidc" | "okta" | "cognito";
11407
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11376
11408
  connection: string;
11377
11409
  enabled: boolean;
11378
11410
  credentials: {
@@ -11398,7 +11430,7 @@ declare function init(config: AuthHeroConfig): {
11398
11430
  } & {
11399
11431
  json: {
11400
11432
  name: string;
11401
- provider: "auth0" | "oidc" | "okta" | "cognito";
11433
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11402
11434
  connection: string;
11403
11435
  credentials: {
11404
11436
  domain: string;
@@ -11415,7 +11447,7 @@ declare function init(config: AuthHeroConfig): {
11415
11447
  created_at: string;
11416
11448
  updated_at: string;
11417
11449
  name: string;
11418
- provider: "auth0" | "oidc" | "okta" | "cognito";
11450
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11419
11451
  connection: string;
11420
11452
  enabled: boolean;
11421
11453
  credentials: {
@@ -11446,7 +11478,7 @@ declare function init(config: AuthHeroConfig): {
11446
11478
  json: {
11447
11479
  id?: string | undefined;
11448
11480
  name?: string | undefined;
11449
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
11481
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
11450
11482
  connection?: string | undefined;
11451
11483
  enabled?: boolean | undefined;
11452
11484
  credentials?: {
@@ -11462,7 +11494,7 @@ declare function init(config: AuthHeroConfig): {
11462
11494
  created_at: string;
11463
11495
  updated_at: string;
11464
11496
  name: string;
11465
- provider: "auth0" | "oidc" | "okta" | "cognito";
11497
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11466
11498
  connection: string;
11467
11499
  enabled: boolean;
11468
11500
  credentials: {
@@ -11510,7 +11542,7 @@ declare function init(config: AuthHeroConfig): {
11510
11542
  [x: string]: hono_utils_types.JSONValue;
11511
11543
  };
11512
11544
  id: string;
11513
- status: "active" | "suspended" | "paused";
11545
+ status: "suspended" | "active" | "paused";
11514
11546
  filters?: {
11515
11547
  type: string;
11516
11548
  name: string;
@@ -11542,7 +11574,7 @@ declare function init(config: AuthHeroConfig): {
11542
11574
  [x: string]: hono_utils_types.JSONValue;
11543
11575
  };
11544
11576
  id: string;
11545
- status: "active" | "suspended" | "paused";
11577
+ status: "suspended" | "active" | "paused";
11546
11578
  filters?: {
11547
11579
  type: string;
11548
11580
  name: string;
@@ -11567,7 +11599,7 @@ declare function init(config: AuthHeroConfig): {
11567
11599
  name: string;
11568
11600
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
11569
11601
  sink: Record<string, unknown>;
11570
- status?: "active" | "suspended" | "paused" | undefined;
11602
+ status?: "suspended" | "active" | "paused" | undefined;
11571
11603
  filters?: {
11572
11604
  type: string;
11573
11605
  name: string;
@@ -11582,7 +11614,7 @@ declare function init(config: AuthHeroConfig): {
11582
11614
  [x: string]: hono_utils_types.JSONValue;
11583
11615
  };
11584
11616
  id: string;
11585
- status: "active" | "suspended" | "paused";
11617
+ status: "suspended" | "active" | "paused";
11586
11618
  filters?: {
11587
11619
  type: string;
11588
11620
  name: string;
@@ -11617,7 +11649,7 @@ declare function init(config: AuthHeroConfig): {
11617
11649
  }[] | undefined;
11618
11650
  isPriority?: boolean | undefined;
11619
11651
  id?: string | undefined;
11620
- status?: "active" | "suspended" | "paused" | undefined;
11652
+ status?: "suspended" | "active" | "paused" | undefined;
11621
11653
  created_at?: string | undefined;
11622
11654
  updated_at?: string | undefined;
11623
11655
  };
@@ -11629,7 +11661,7 @@ declare function init(config: AuthHeroConfig): {
11629
11661
  [x: string]: hono_utils_types.JSONValue;
11630
11662
  };
11631
11663
  id: string;
11632
- status: "active" | "suspended" | "paused";
11664
+ status: "suspended" | "active" | "paused";
11633
11665
  filters?: {
11634
11666
  type: string;
11635
11667
  name: string;
@@ -11680,7 +11712,7 @@ declare function init(config: AuthHeroConfig): {
11680
11712
  };
11681
11713
  };
11682
11714
  output: {
11683
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11715
+ type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11684
11716
  date: string;
11685
11717
  isMobile: boolean;
11686
11718
  log_id: string;
@@ -11719,7 +11751,7 @@ declare function init(config: AuthHeroConfig): {
11719
11751
  limit: number;
11720
11752
  length: number;
11721
11753
  logs: {
11722
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11754
+ type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11723
11755
  date: string;
11724
11756
  isMobile: boolean;
11725
11757
  log_id: string;
@@ -11773,7 +11805,7 @@ declare function init(config: AuthHeroConfig): {
11773
11805
  };
11774
11806
  };
11775
11807
  output: {
11776
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11808
+ type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11777
11809
  date: string;
11778
11810
  isMobile: boolean;
11779
11811
  log_id: string;
@@ -12129,7 +12161,7 @@ declare function init(config: AuthHeroConfig): {
12129
12161
  client_id: string;
12130
12162
  description?: string | undefined;
12131
12163
  client_secret?: string | undefined;
12132
- app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12164
+ app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12133
12165
  logo_uri?: string | undefined;
12134
12166
  callbacks?: string[] | undefined;
12135
12167
  allowed_origins?: string[] | undefined;
@@ -12161,7 +12193,7 @@ declare function init(config: AuthHeroConfig): {
12161
12193
  addons?: {
12162
12194
  [x: string]: any;
12163
12195
  } | undefined;
12164
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12196
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12165
12197
  client_metadata?: {
12166
12198
  [x: string]: string;
12167
12199
  } | undefined;
@@ -12225,7 +12257,7 @@ declare function init(config: AuthHeroConfig): {
12225
12257
  client_id: string;
12226
12258
  description?: string | undefined;
12227
12259
  client_secret?: string | undefined;
12228
- app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12260
+ app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12229
12261
  logo_uri?: string | undefined;
12230
12262
  callbacks?: string[] | undefined;
12231
12263
  allowed_origins?: string[] | undefined;
@@ -12257,7 +12289,7 @@ declare function init(config: AuthHeroConfig): {
12257
12289
  addons?: {
12258
12290
  [x: string]: any;
12259
12291
  } | undefined;
12260
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12292
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12261
12293
  client_metadata?: {
12262
12294
  [x: string]: string;
12263
12295
  } | undefined;
@@ -12336,7 +12368,7 @@ declare function init(config: AuthHeroConfig): {
12336
12368
  client_id: string;
12337
12369
  description?: string | undefined;
12338
12370
  client_secret?: string | undefined;
12339
- app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12371
+ app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12340
12372
  logo_uri?: string | undefined;
12341
12373
  callbacks?: string[] | undefined;
12342
12374
  allowed_origins?: string[] | undefined;
@@ -12368,7 +12400,7 @@ declare function init(config: AuthHeroConfig): {
12368
12400
  addons?: {
12369
12401
  [x: string]: any;
12370
12402
  } | undefined;
12371
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12403
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12372
12404
  client_metadata?: {
12373
12405
  [x: string]: string;
12374
12406
  } | undefined;
@@ -12451,7 +12483,7 @@ declare function init(config: AuthHeroConfig): {
12451
12483
  description?: string | undefined;
12452
12484
  global?: boolean | undefined;
12453
12485
  client_secret?: string | undefined;
12454
- app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12486
+ app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12455
12487
  logo_uri?: string | undefined;
12456
12488
  is_first_party?: boolean | undefined;
12457
12489
  oidc_conformant?: boolean | undefined;
@@ -12478,7 +12510,7 @@ declare function init(config: AuthHeroConfig): {
12478
12510
  custom_login_page_preview?: string | undefined;
12479
12511
  form_template?: string | undefined;
12480
12512
  addons?: Record<string, any> | undefined;
12481
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12513
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12482
12514
  client_metadata?: Record<string, string> | undefined;
12483
12515
  hide_sign_up_disabled_error?: boolean | undefined;
12484
12516
  mobile?: Record<string, any> | undefined;
@@ -12526,7 +12558,7 @@ declare function init(config: AuthHeroConfig): {
12526
12558
  client_id: string;
12527
12559
  description?: string | undefined;
12528
12560
  client_secret?: string | undefined;
12529
- app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12561
+ app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12530
12562
  logo_uri?: string | undefined;
12531
12563
  callbacks?: string[] | undefined;
12532
12564
  allowed_origins?: string[] | undefined;
@@ -12558,7 +12590,7 @@ declare function init(config: AuthHeroConfig): {
12558
12590
  addons?: {
12559
12591
  [x: string]: any;
12560
12592
  } | undefined;
12561
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12593
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12562
12594
  client_metadata?: {
12563
12595
  [x: string]: string;
12564
12596
  } | undefined;
@@ -12620,7 +12652,7 @@ declare function init(config: AuthHeroConfig): {
12620
12652
  description?: string | undefined;
12621
12653
  global?: boolean | undefined;
12622
12654
  client_secret?: string | undefined;
12623
- app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12655
+ app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12624
12656
  logo_uri?: string | undefined;
12625
12657
  is_first_party?: boolean | undefined;
12626
12658
  oidc_conformant?: boolean | undefined;
@@ -12647,7 +12679,7 @@ declare function init(config: AuthHeroConfig): {
12647
12679
  custom_login_page_preview?: string | undefined;
12648
12680
  form_template?: string | undefined;
12649
12681
  addons?: Record<string, any> | undefined;
12650
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12682
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12651
12683
  client_metadata?: Record<string, string> | undefined;
12652
12684
  hide_sign_up_disabled_error?: boolean | undefined;
12653
12685
  mobile?: Record<string, any> | undefined;
@@ -12695,7 +12727,7 @@ declare function init(config: AuthHeroConfig): {
12695
12727
  client_id: string;
12696
12728
  description?: string | undefined;
12697
12729
  client_secret?: string | undefined;
12698
- app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12730
+ app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
12699
12731
  logo_uri?: string | undefined;
12700
12732
  callbacks?: string[] | undefined;
12701
12733
  allowed_origins?: string[] | undefined;
@@ -12727,7 +12759,7 @@ declare function init(config: AuthHeroConfig): {
12727
12759
  addons?: {
12728
12760
  [x: string]: any;
12729
12761
  } | undefined;
12730
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12762
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12731
12763
  client_metadata?: {
12732
12764
  [x: string]: string;
12733
12765
  } | undefined;
@@ -12896,7 +12928,7 @@ declare function init(config: AuthHeroConfig): {
12896
12928
  } | undefined;
12897
12929
  } | undefined;
12898
12930
  passkey_options?: {
12899
- challenge_ui?: "both" | "autofill" | "button" | undefined;
12931
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
12900
12932
  local_enrollment_enabled?: boolean | undefined;
12901
12933
  progressive_enrollment_enabled?: boolean | undefined;
12902
12934
  } | undefined;
@@ -13050,7 +13082,7 @@ declare function init(config: AuthHeroConfig): {
13050
13082
  } | undefined;
13051
13083
  } | undefined;
13052
13084
  passkey_options?: {
13053
- challenge_ui?: "both" | "autofill" | "button" | undefined;
13085
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
13054
13086
  local_enrollment_enabled?: boolean | undefined;
13055
13087
  progressive_enrollment_enabled?: boolean | undefined;
13056
13088
  } | undefined;
@@ -13991,7 +14023,7 @@ declare function init(config: AuthHeroConfig): {
13991
14023
  };
13992
14024
  };
13993
14025
  output: {
13994
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14026
+ type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13995
14027
  date: string;
13996
14028
  isMobile: boolean;
13997
14029
  log_id: string;
@@ -14030,7 +14062,7 @@ declare function init(config: AuthHeroConfig): {
14030
14062
  limit: number;
14031
14063
  length: number;
14032
14064
  logs: {
14033
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14065
+ type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14034
14066
  date: string;
14035
14067
  isMobile: boolean;
14036
14068
  log_id: string;
@@ -14345,7 +14377,7 @@ declare function init(config: AuthHeroConfig): {
14345
14377
  };
14346
14378
  } & {
14347
14379
  json: {
14348
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14380
+ 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";
14349
14381
  body: string;
14350
14382
  from: string;
14351
14383
  subject: string;
@@ -14366,7 +14398,7 @@ declare function init(config: AuthHeroConfig): {
14366
14398
  };
14367
14399
  } & {
14368
14400
  json: {
14369
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14401
+ 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";
14370
14402
  body: string;
14371
14403
  from: string;
14372
14404
  subject: string;
@@ -14378,7 +14410,7 @@ declare function init(config: AuthHeroConfig): {
14378
14410
  };
14379
14411
  };
14380
14412
  output: {
14381
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14413
+ 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";
14382
14414
  body: string;
14383
14415
  from: string;
14384
14416
  subject: string;
@@ -14401,7 +14433,7 @@ declare function init(config: AuthHeroConfig): {
14401
14433
  };
14402
14434
  };
14403
14435
  output: {
14404
- name: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14436
+ 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";
14405
14437
  body: string;
14406
14438
  subject: string;
14407
14439
  }[];
@@ -14414,7 +14446,7 @@ declare function init(config: AuthHeroConfig): {
14414
14446
  $get: {
14415
14447
  input: {
14416
14448
  param: {
14417
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14449
+ 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";
14418
14450
  };
14419
14451
  } & {
14420
14452
  header: {
@@ -14427,7 +14459,7 @@ declare function init(config: AuthHeroConfig): {
14427
14459
  } | {
14428
14460
  input: {
14429
14461
  param: {
14430
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14462
+ 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";
14431
14463
  };
14432
14464
  } & {
14433
14465
  header: {
@@ -14435,7 +14467,7 @@ declare function init(config: AuthHeroConfig): {
14435
14467
  };
14436
14468
  };
14437
14469
  output: {
14438
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14470
+ 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";
14439
14471
  body: string;
14440
14472
  from: string;
14441
14473
  subject: string;
@@ -14454,7 +14486,7 @@ declare function init(config: AuthHeroConfig): {
14454
14486
  $put: {
14455
14487
  input: {
14456
14488
  param: {
14457
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14489
+ 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";
14458
14490
  };
14459
14491
  } & {
14460
14492
  header: {
@@ -14462,7 +14494,7 @@ declare function init(config: AuthHeroConfig): {
14462
14494
  };
14463
14495
  } & {
14464
14496
  json: {
14465
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14497
+ 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";
14466
14498
  body: string;
14467
14499
  subject: string;
14468
14500
  syntax?: "liquid" | undefined;
@@ -14474,7 +14506,7 @@ declare function init(config: AuthHeroConfig): {
14474
14506
  };
14475
14507
  };
14476
14508
  output: {
14477
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14509
+ 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";
14478
14510
  body: string;
14479
14511
  from: string;
14480
14512
  subject: string;
@@ -14493,7 +14525,7 @@ declare function init(config: AuthHeroConfig): {
14493
14525
  $patch: {
14494
14526
  input: {
14495
14527
  param: {
14496
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14528
+ 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";
14497
14529
  };
14498
14530
  } & {
14499
14531
  header: {
@@ -14501,7 +14533,7 @@ declare function init(config: AuthHeroConfig): {
14501
14533
  };
14502
14534
  } & {
14503
14535
  json: {
14504
- template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14536
+ 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;
14505
14537
  body?: string | undefined;
14506
14538
  from?: string | undefined;
14507
14539
  subject?: string | undefined;
@@ -14518,7 +14550,7 @@ declare function init(config: AuthHeroConfig): {
14518
14550
  } | {
14519
14551
  input: {
14520
14552
  param: {
14521
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14553
+ 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";
14522
14554
  };
14523
14555
  } & {
14524
14556
  header: {
@@ -14526,7 +14558,7 @@ declare function init(config: AuthHeroConfig): {
14526
14558
  };
14527
14559
  } & {
14528
14560
  json: {
14529
- template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14561
+ 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;
14530
14562
  body?: string | undefined;
14531
14563
  from?: string | undefined;
14532
14564
  subject?: string | undefined;
@@ -14538,7 +14570,7 @@ declare function init(config: AuthHeroConfig): {
14538
14570
  };
14539
14571
  };
14540
14572
  output: {
14541
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14573
+ 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";
14542
14574
  body: string;
14543
14575
  from: string;
14544
14576
  subject: string;
@@ -14557,7 +14589,7 @@ declare function init(config: AuthHeroConfig): {
14557
14589
  $delete: {
14558
14590
  input: {
14559
14591
  param: {
14560
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14592
+ 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";
14561
14593
  };
14562
14594
  } & {
14563
14595
  header: {
@@ -14570,7 +14602,7 @@ declare function init(config: AuthHeroConfig): {
14570
14602
  } | {
14571
14603
  input: {
14572
14604
  param: {
14573
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14605
+ 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";
14574
14606
  };
14575
14607
  } & {
14576
14608
  header: {
@@ -14587,7 +14619,7 @@ declare function init(config: AuthHeroConfig): {
14587
14619
  $post: {
14588
14620
  input: {
14589
14621
  param: {
14590
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14622
+ 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";
14591
14623
  };
14592
14624
  } & {
14593
14625
  header: {
@@ -14870,9 +14902,9 @@ declare function init(config: AuthHeroConfig): {
14870
14902
  type: "auth0_managed_certs" | "self_managed_certs";
14871
14903
  custom_domain_id: string;
14872
14904
  primary: boolean;
14873
- status: "disabled" | "pending" | "ready" | "pending_verification";
14905
+ status: "pending" | "ready" | "disabled" | "pending_verification";
14874
14906
  verification_method?: "txt" | undefined;
14875
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
14907
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14876
14908
  domain_metadata?: {
14877
14909
  [x: string]: string;
14878
14910
  } | undefined;
@@ -14911,9 +14943,9 @@ declare function init(config: AuthHeroConfig): {
14911
14943
  type: "auth0_managed_certs" | "self_managed_certs";
14912
14944
  custom_domain_id: string;
14913
14945
  primary: boolean;
14914
- status: "disabled" | "pending" | "ready" | "pending_verification";
14946
+ status: "pending" | "ready" | "disabled" | "pending_verification";
14915
14947
  verification_method?: "txt" | undefined;
14916
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
14948
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14917
14949
  domain_metadata?: {
14918
14950
  [x: string]: string;
14919
14951
  } | undefined;
@@ -14966,7 +14998,7 @@ declare function init(config: AuthHeroConfig): {
14966
14998
  } & {
14967
14999
  json: {
14968
15000
  tls_policy?: "recommended" | undefined;
14969
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
15001
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14970
15002
  domain_metadata?: Record<string, string> | undefined;
14971
15003
  };
14972
15004
  };
@@ -14975,9 +15007,9 @@ declare function init(config: AuthHeroConfig): {
14975
15007
  type: "auth0_managed_certs" | "self_managed_certs";
14976
15008
  custom_domain_id: string;
14977
15009
  primary: boolean;
14978
- status: "disabled" | "pending" | "ready" | "pending_verification";
15010
+ status: "pending" | "ready" | "disabled" | "pending_verification";
14979
15011
  verification_method?: "txt" | undefined;
14980
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
15012
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14981
15013
  domain_metadata?: {
14982
15014
  [x: string]: string;
14983
15015
  } | undefined;
@@ -15013,7 +15045,7 @@ declare function init(config: AuthHeroConfig): {
15013
15045
  custom_domain_id?: string | undefined;
15014
15046
  verification_method?: "txt" | undefined;
15015
15047
  tls_policy?: "recommended" | undefined;
15016
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
15048
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15017
15049
  domain_metadata?: Record<string, string> | undefined;
15018
15050
  };
15019
15051
  };
@@ -15022,9 +15054,9 @@ declare function init(config: AuthHeroConfig): {
15022
15054
  type: "auth0_managed_certs" | "self_managed_certs";
15023
15055
  custom_domain_id: string;
15024
15056
  primary: boolean;
15025
- status: "disabled" | "pending" | "ready" | "pending_verification";
15057
+ status: "pending" | "ready" | "disabled" | "pending_verification";
15026
15058
  verification_method?: "txt" | undefined;
15027
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
15059
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15028
15060
  domain_metadata?: {
15029
15061
  [x: string]: string;
15030
15062
  } | undefined;
@@ -15068,9 +15100,9 @@ declare function init(config: AuthHeroConfig): {
15068
15100
  type: "auth0_managed_certs" | "self_managed_certs";
15069
15101
  custom_domain_id: string;
15070
15102
  primary: boolean;
15071
- status: "disabled" | "pending" | "ready" | "pending_verification";
15103
+ status: "pending" | "ready" | "disabled" | "pending_verification";
15072
15104
  verification_method?: "txt" | undefined;
15073
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
15105
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15074
15106
  domain_metadata?: {
15075
15107
  [x: string]: string;
15076
15108
  } | undefined;
@@ -15109,9 +15141,9 @@ declare function init(config: AuthHeroConfig): {
15109
15141
  type: "auth0_managed_certs" | "self_managed_certs";
15110
15142
  custom_domain_id: string;
15111
15143
  primary: boolean;
15112
- status: "disabled" | "pending" | "ready" | "pending_verification";
15144
+ status: "pending" | "ready" | "disabled" | "pending_verification";
15113
15145
  verification_method?: "txt" | undefined;
15114
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
15146
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15115
15147
  domain_metadata?: {
15116
15148
  [x: string]: string;
15117
15149
  } | undefined;
@@ -15157,7 +15189,7 @@ declare function init(config: AuthHeroConfig): {
15157
15189
  base_focus_color: string;
15158
15190
  base_hover_color: string;
15159
15191
  body_text: string;
15160
- captcha_widget_theme: "dark" | "light" | "auto";
15192
+ captcha_widget_theme: "auto" | "light" | "dark";
15161
15193
  error: string;
15162
15194
  header: string;
15163
15195
  icons: string;
@@ -15208,7 +15240,7 @@ declare function init(config: AuthHeroConfig): {
15208
15240
  background_color: string;
15209
15241
  background_image_url: string;
15210
15242
  page_layout: "center" | "left" | "right";
15211
- logo_placement?: "none" | "widget" | "chip" | undefined;
15243
+ logo_placement?: "widget" | "chip" | "none" | undefined;
15212
15244
  };
15213
15245
  widget: {
15214
15246
  header_text_alignment: "center" | "left" | "right";
@@ -15247,7 +15279,7 @@ declare function init(config: AuthHeroConfig): {
15247
15279
  base_focus_color: string;
15248
15280
  base_hover_color: string;
15249
15281
  body_text: string;
15250
- captcha_widget_theme: "dark" | "light" | "auto";
15282
+ captcha_widget_theme: "auto" | "light" | "dark";
15251
15283
  error: string;
15252
15284
  header: string;
15253
15285
  icons: string;
@@ -15298,7 +15330,7 @@ declare function init(config: AuthHeroConfig): {
15298
15330
  background_color: string;
15299
15331
  background_image_url: string;
15300
15332
  page_layout: "center" | "left" | "right";
15301
- logo_placement?: "none" | "widget" | "chip" | undefined;
15333
+ logo_placement?: "widget" | "chip" | "none" | undefined;
15302
15334
  };
15303
15335
  widget: {
15304
15336
  header_text_alignment: "center" | "left" | "right";
@@ -15326,7 +15358,7 @@ declare function init(config: AuthHeroConfig): {
15326
15358
  base_focus_color: string;
15327
15359
  base_hover_color: string;
15328
15360
  body_text: string;
15329
- captcha_widget_theme: "dark" | "light" | "auto";
15361
+ captcha_widget_theme: "auto" | "light" | "dark";
15330
15362
  error: string;
15331
15363
  header: string;
15332
15364
  icons: string;
@@ -15377,7 +15409,7 @@ declare function init(config: AuthHeroConfig): {
15377
15409
  background_color: string;
15378
15410
  background_image_url: string;
15379
15411
  page_layout: "center" | "left" | "right";
15380
- logo_placement?: "none" | "widget" | "chip" | undefined;
15412
+ logo_placement?: "widget" | "chip" | "none" | undefined;
15381
15413
  };
15382
15414
  widget: {
15383
15415
  header_text_alignment: "center" | "left" | "right";
@@ -15416,7 +15448,7 @@ declare function init(config: AuthHeroConfig): {
15416
15448
  font?: {
15417
15449
  url: string;
15418
15450
  } | undefined;
15419
- dark_mode?: "dark" | "light" | "auto" | undefined;
15451
+ dark_mode?: "auto" | "light" | "dark" | undefined;
15420
15452
  };
15421
15453
  outputFormat: "json";
15422
15454
  status: 200;
@@ -15446,7 +15478,7 @@ declare function init(config: AuthHeroConfig): {
15446
15478
  font?: {
15447
15479
  url: string;
15448
15480
  } | undefined;
15449
- dark_mode?: "dark" | "light" | "auto" | undefined;
15481
+ dark_mode?: "auto" | "light" | "dark" | undefined;
15450
15482
  };
15451
15483
  };
15452
15484
  output: {
@@ -15465,7 +15497,7 @@ declare function init(config: AuthHeroConfig): {
15465
15497
  font?: {
15466
15498
  url: string;
15467
15499
  } | undefined;
15468
- dark_mode?: "dark" | "light" | "auto" | undefined;
15500
+ dark_mode?: "auto" | "light" | "dark" | undefined;
15469
15501
  };
15470
15502
  outputFormat: "json";
15471
15503
  status: 200;
@@ -15529,6 +15561,120 @@ declare function init(config: AuthHeroConfig): {
15529
15561
  status: 204;
15530
15562
  };
15531
15563
  };
15564
+ } & {
15565
+ "/templates/universal-login/preview": {
15566
+ $post: {
15567
+ input: {
15568
+ header: {
15569
+ "tenant-id"?: string | undefined;
15570
+ };
15571
+ } & {
15572
+ json: {
15573
+ body?: string | undefined;
15574
+ screen?: "login" | "identifier" | "password" | "signup" | undefined;
15575
+ branding?: {
15576
+ colors?: {
15577
+ primary: string;
15578
+ page_background?: string | {
15579
+ type?: string | undefined;
15580
+ start?: string | undefined;
15581
+ end?: string | undefined;
15582
+ angle_deg?: number | undefined;
15583
+ } | undefined;
15584
+ } | undefined;
15585
+ logo_url?: string | undefined;
15586
+ favicon_url?: string | undefined;
15587
+ powered_by_logo_url?: string | undefined;
15588
+ font?: {
15589
+ url: string;
15590
+ } | undefined;
15591
+ dark_mode?: "auto" | "light" | "dark" | undefined;
15592
+ } | undefined;
15593
+ theme?: {
15594
+ borders?: {
15595
+ button_border_radius: number;
15596
+ button_border_weight: number;
15597
+ buttons_style: "pill" | "rounded" | "sharp";
15598
+ input_border_radius: number;
15599
+ input_border_weight: number;
15600
+ inputs_style: "pill" | "rounded" | "sharp";
15601
+ show_widget_shadow: boolean;
15602
+ widget_border_weight: number;
15603
+ widget_corner_radius: number;
15604
+ } | undefined;
15605
+ colors?: {
15606
+ base_focus_color: string;
15607
+ base_hover_color: string;
15608
+ body_text: string;
15609
+ captcha_widget_theme: "auto" | "light" | "dark";
15610
+ error: string;
15611
+ header: string;
15612
+ icons: string;
15613
+ input_background: string;
15614
+ input_border: string;
15615
+ input_filled_text: string;
15616
+ input_labels_placeholders: string;
15617
+ links_focused_components: string;
15618
+ primary_button: string;
15619
+ primary_button_label: string;
15620
+ secondary_button_border: string;
15621
+ secondary_button_label: string;
15622
+ success: string;
15623
+ widget_background: string;
15624
+ widget_border: string;
15625
+ } | undefined;
15626
+ displayName?: string | undefined;
15627
+ fonts?: {
15628
+ body_text: {
15629
+ bold: boolean;
15630
+ size: number;
15631
+ };
15632
+ buttons_text: {
15633
+ bold: boolean;
15634
+ size: number;
15635
+ };
15636
+ font_url: string;
15637
+ input_labels: {
15638
+ bold: boolean;
15639
+ size: number;
15640
+ };
15641
+ links: {
15642
+ bold: boolean;
15643
+ size: number;
15644
+ };
15645
+ links_style: "normal" | "underlined";
15646
+ reference_text_size: number;
15647
+ subtitle: {
15648
+ bold: boolean;
15649
+ size: number;
15650
+ };
15651
+ title: {
15652
+ bold: boolean;
15653
+ size: number;
15654
+ };
15655
+ } | undefined;
15656
+ page_background?: {
15657
+ background_color: string;
15658
+ background_image_url: string;
15659
+ page_layout: "center" | "left" | "right";
15660
+ logo_placement?: "widget" | "chip" | "none" | undefined;
15661
+ } | undefined;
15662
+ widget?: {
15663
+ header_text_alignment: "center" | "left" | "right";
15664
+ logo_height: number;
15665
+ logo_position: "none" | "center" | "left" | "right";
15666
+ logo_url: string;
15667
+ social_buttons_layout: "bottom" | "top";
15668
+ } | undefined;
15669
+ themeId?: string | undefined;
15670
+ } | undefined;
15671
+ };
15672
+ };
15673
+ output: Response;
15674
+ outputFormat: "json";
15675
+ status: hono_utils_http_status.StatusCode;
15676
+ };
15677
+ };
15532
15678
  }, "/branding"> & hono_types.MergeSchemaPath<{
15533
15679
  "/:triggerId/bindings": {
15534
15680
  $get: {
@@ -15716,7 +15862,7 @@ declare function init(config: AuthHeroConfig): {
15716
15862
  logs: {
15717
15863
  action_name: string;
15718
15864
  lines: {
15719
- level: "log" | "error" | "info" | "debug" | "warn";
15865
+ level: "error" | "log" | "info" | "warn" | "debug";
15720
15866
  message: string;
15721
15867
  }[];
15722
15868
  }[];
@@ -16383,7 +16529,7 @@ declare function init(config: AuthHeroConfig): {
16383
16529
  args: hono_utils_types.JSONValue[];
16384
16530
  }[];
16385
16531
  logs: {
16386
- level: "log" | "error" | "info" | "debug" | "warn";
16532
+ level: "error" | "log" | "info" | "warn" | "debug";
16387
16533
  message: string;
16388
16534
  }[];
16389
16535
  error?: string | undefined;
@@ -16681,7 +16827,7 @@ declare function init(config: AuthHeroConfig): {
16681
16827
  scope?: string | undefined;
16682
16828
  grant_types?: string[] | undefined;
16683
16829
  response_types?: string[] | undefined;
16684
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
16830
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16685
16831
  jwks_uri?: string | undefined;
16686
16832
  jwks?: Record<string, unknown> | undefined;
16687
16833
  software_id?: string | undefined;
@@ -16770,7 +16916,7 @@ declare function init(config: AuthHeroConfig): {
16770
16916
  scope?: string | undefined;
16771
16917
  grant_types?: string[] | undefined;
16772
16918
  response_types?: string[] | undefined;
16773
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
16919
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16774
16920
  jwks_uri?: string | undefined;
16775
16921
  jwks?: Record<string, unknown> | undefined;
16776
16922
  software_id?: string | undefined;
@@ -16827,7 +16973,7 @@ declare function init(config: AuthHeroConfig): {
16827
16973
  client_id: string;
16828
16974
  redirect_url?: string | undefined;
16829
16975
  login_hint?: string | undefined;
16830
- screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
16976
+ screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
16831
16977
  };
16832
16978
  };
16833
16979
  output: {};
@@ -16839,7 +16985,7 @@ declare function init(config: AuthHeroConfig): {
16839
16985
  client_id: string;
16840
16986
  redirect_url?: string | undefined;
16841
16987
  login_hint?: string | undefined;
16842
- screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
16988
+ screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
16843
16989
  };
16844
16990
  };
16845
16991
  output: {
@@ -17117,18 +17263,18 @@ declare function init(config: AuthHeroConfig): {
17117
17263
  send: "code" | "link";
17118
17264
  authParams: {
17119
17265
  state?: string | undefined;
17266
+ username?: string | undefined;
17267
+ audience?: string | undefined;
17268
+ scope?: string | undefined;
17120
17269
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17121
17270
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17122
- scope?: string | undefined;
17123
- username?: string | undefined;
17124
- nonce?: string | undefined;
17271
+ prompt?: string | undefined;
17272
+ act_as?: string | undefined;
17273
+ redirect_uri?: string | undefined;
17125
17274
  organization?: string | undefined;
17126
- code_challenge?: string | undefined;
17275
+ nonce?: string | undefined;
17127
17276
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17128
- redirect_uri?: string | undefined;
17129
- act_as?: string | undefined;
17130
- audience?: string | undefined;
17131
- prompt?: string | undefined;
17277
+ code_challenge?: string | undefined;
17132
17278
  ui_locales?: string | undefined;
17133
17279
  max_age?: number | undefined;
17134
17280
  acr_values?: string | undefined;
@@ -17153,18 +17299,18 @@ declare function init(config: AuthHeroConfig): {
17153
17299
  send: "code" | "link";
17154
17300
  authParams: {
17155
17301
  state?: string | undefined;
17302
+ username?: string | undefined;
17303
+ audience?: string | undefined;
17304
+ scope?: string | undefined;
17156
17305
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17157
17306
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17158
- scope?: string | undefined;
17159
- username?: string | undefined;
17160
- nonce?: string | undefined;
17307
+ prompt?: string | undefined;
17308
+ act_as?: string | undefined;
17309
+ redirect_uri?: string | undefined;
17161
17310
  organization?: string | undefined;
17162
- code_challenge?: string | undefined;
17311
+ nonce?: string | undefined;
17163
17312
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17164
- redirect_uri?: string | undefined;
17165
- act_as?: string | undefined;
17166
- audience?: string | undefined;
17167
- prompt?: string | undefined;
17313
+ code_challenge?: string | undefined;
17168
17314
  ui_locales?: string | undefined;
17169
17315
  max_age?: number | undefined;
17170
17316
  acr_values?: string | undefined;
@@ -17296,14 +17442,14 @@ declare function init(config: AuthHeroConfig): {
17296
17442
  input: {
17297
17443
  form: {
17298
17444
  token: string;
17299
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17445
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17300
17446
  client_id?: string | undefined;
17301
17447
  client_secret?: string | undefined;
17302
17448
  };
17303
17449
  } & {
17304
17450
  json: {
17305
17451
  token: string;
17306
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17452
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17307
17453
  client_id?: string | undefined;
17308
17454
  client_secret?: string | undefined;
17309
17455
  };
@@ -17315,14 +17461,14 @@ declare function init(config: AuthHeroConfig): {
17315
17461
  input: {
17316
17462
  form: {
17317
17463
  token: string;
17318
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17464
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17319
17465
  client_id?: string | undefined;
17320
17466
  client_secret?: string | undefined;
17321
17467
  };
17322
17468
  } & {
17323
17469
  json: {
17324
17470
  token: string;
17325
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17471
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17326
17472
  client_id?: string | undefined;
17327
17473
  client_secret?: string | undefined;
17328
17474
  };
@@ -17337,14 +17483,14 @@ declare function init(config: AuthHeroConfig): {
17337
17483
  input: {
17338
17484
  form: {
17339
17485
  token: string;
17340
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17486
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17341
17487
  client_id?: string | undefined;
17342
17488
  client_secret?: string | undefined;
17343
17489
  };
17344
17490
  } & {
17345
17491
  json: {
17346
17492
  token: string;
17347
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17493
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17348
17494
  client_id?: string | undefined;
17349
17495
  client_secret?: string | undefined;
17350
17496
  };
@@ -17394,7 +17540,7 @@ declare function init(config: AuthHeroConfig): {
17394
17540
  client_id: string;
17395
17541
  username: string;
17396
17542
  otp: string;
17397
- realm: "email" | "sms";
17543
+ realm: "sms" | "email";
17398
17544
  } | {
17399
17545
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17400
17546
  subject_token: string;
@@ -17441,7 +17587,7 @@ declare function init(config: AuthHeroConfig): {
17441
17587
  client_id: string;
17442
17588
  username: string;
17443
17589
  otp: string;
17444
- realm: "email" | "sms";
17590
+ realm: "sms" | "email";
17445
17591
  } | {
17446
17592
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17447
17593
  subject_token: string;
@@ -17493,7 +17639,7 @@ declare function init(config: AuthHeroConfig): {
17493
17639
  client_id: string;
17494
17640
  username: string;
17495
17641
  otp: string;
17496
- realm: "email" | "sms";
17642
+ realm: "sms" | "email";
17497
17643
  } | {
17498
17644
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17499
17645
  subject_token: string;
@@ -17540,7 +17686,7 @@ declare function init(config: AuthHeroConfig): {
17540
17686
  client_id: string;
17541
17687
  username: string;
17542
17688
  otp: string;
17543
- realm: "email" | "sms";
17689
+ realm: "sms" | "email";
17544
17690
  } | {
17545
17691
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17546
17692
  subject_token: string;
@@ -17600,7 +17746,7 @@ declare function init(config: AuthHeroConfig): {
17600
17746
  client_id: string;
17601
17747
  username: string;
17602
17748
  otp: string;
17603
- realm: "email" | "sms";
17749
+ realm: "sms" | "email";
17604
17750
  } | {
17605
17751
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17606
17752
  subject_token: string;
@@ -17647,7 +17793,7 @@ declare function init(config: AuthHeroConfig): {
17647
17793
  client_id: string;
17648
17794
  username: string;
17649
17795
  otp: string;
17650
- realm: "email" | "sms";
17796
+ realm: "sms" | "email";
17651
17797
  } | {
17652
17798
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17653
17799
  subject_token: string;
@@ -17702,7 +17848,7 @@ declare function init(config: AuthHeroConfig): {
17702
17848
  client_id: string;
17703
17849
  username: string;
17704
17850
  otp: string;
17705
- realm: "email" | "sms";
17851
+ realm: "sms" | "email";
17706
17852
  } | {
17707
17853
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17708
17854
  subject_token: string;
@@ -17749,7 +17895,7 @@ declare function init(config: AuthHeroConfig): {
17749
17895
  client_id: string;
17750
17896
  username: string;
17751
17897
  otp: string;
17752
- realm: "email" | "sms";
17898
+ realm: "sms" | "email";
17753
17899
  } | {
17754
17900
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17755
17901
  subject_token: string;
@@ -17804,7 +17950,7 @@ declare function init(config: AuthHeroConfig): {
17804
17950
  client_id: string;
17805
17951
  username: string;
17806
17952
  otp: string;
17807
- realm: "email" | "sms";
17953
+ realm: "sms" | "email";
17808
17954
  } | {
17809
17955
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17810
17956
  subject_token: string;
@@ -17851,7 +17997,7 @@ declare function init(config: AuthHeroConfig): {
17851
17997
  client_id: string;
17852
17998
  username: string;
17853
17999
  otp: string;
17854
- realm: "email" | "sms";
18000
+ realm: "sms" | "email";
17855
18001
  } | {
17856
18002
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17857
18003
  subject_token: string;
@@ -18692,7 +18838,7 @@ declare function init(config: AuthHeroConfig): {
18692
18838
  } & {
18693
18839
  form: {
18694
18840
  username: string;
18695
- login_selection?: "code" | "password" | undefined;
18841
+ login_selection?: "password" | "code" | undefined;
18696
18842
  };
18697
18843
  };
18698
18844
  output: {};
@@ -18706,7 +18852,7 @@ declare function init(config: AuthHeroConfig): {
18706
18852
  } & {
18707
18853
  form: {
18708
18854
  username: string;
18709
- login_selection?: "code" | "password" | undefined;
18855
+ login_selection?: "password" | "code" | undefined;
18710
18856
  };
18711
18857
  };
18712
18858
  output: {};
@@ -19071,7 +19217,7 @@ declare function init(config: AuthHeroConfig): {
19071
19217
  $get: {
19072
19218
  input: {
19073
19219
  param: {
19074
- screen: "signup" | "login" | "account" | "enter-password" | "reset-password" | "impersonate" | "consent" | "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";
19220
+ screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
19075
19221
  };
19076
19222
  } & {
19077
19223
  query: {
@@ -19087,7 +19233,7 @@ declare function init(config: AuthHeroConfig): {
19087
19233
  } | {
19088
19234
  input: {
19089
19235
  param: {
19090
- screen: "signup" | "login" | "account" | "enter-password" | "reset-password" | "impersonate" | "consent" | "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";
19236
+ screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
19091
19237
  };
19092
19238
  } & {
19093
19239
  query: {
@@ -19103,7 +19249,7 @@ declare function init(config: AuthHeroConfig): {
19103
19249
  } | {
19104
19250
  input: {
19105
19251
  param: {
19106
- screen: "signup" | "login" | "account" | "enter-password" | "reset-password" | "impersonate" | "consent" | "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";
19252
+ screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
19107
19253
  };
19108
19254
  } & {
19109
19255
  query: {
@@ -19123,7 +19269,7 @@ declare function init(config: AuthHeroConfig): {
19123
19269
  $post: {
19124
19270
  input: {
19125
19271
  param: {
19126
- screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "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";
19272
+ screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19127
19273
  };
19128
19274
  } & {
19129
19275
  query: {
@@ -19141,7 +19287,7 @@ declare function init(config: AuthHeroConfig): {
19141
19287
  } | {
19142
19288
  input: {
19143
19289
  param: {
19144
- screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "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";
19290
+ screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19145
19291
  };
19146
19292
  } & {
19147
19293
  query: {
@@ -19159,7 +19305,7 @@ declare function init(config: AuthHeroConfig): {
19159
19305
  } | {
19160
19306
  input: {
19161
19307
  param: {
19162
- screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "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";
19308
+ screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19163
19309
  };
19164
19310
  } & {
19165
19311
  query: {