authhero 8.8.1 → 8.9.1

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 (44) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +109 -107
  3. package/dist/authhero.d.ts +271 -228
  4. package/dist/authhero.mjs +11289 -10645
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/password.d.ts +10 -1
  8. package/dist/types/authentication-flows/passwordless.d.ts +4 -4
  9. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  10. package/dist/types/helpers/tenant-export-import/export.d.ts +21 -0
  11. package/dist/types/helpers/tenant-export-import/import.d.ts +12 -0
  12. package/dist/types/helpers/tenant-export-import/index.d.ts +4 -0
  13. package/dist/types/helpers/tenant-export-import/manifest.d.ts +12 -0
  14. package/dist/types/helpers/tenant-export-import/row-access.d.ts +20 -0
  15. package/dist/types/helpers/tenant-export-import/types.d.ts +53 -0
  16. package/dist/types/index.d.ts +270 -227
  17. package/dist/types/routes/auth-api/index.d.ts +28 -28
  18. package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
  19. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  20. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  21. package/dist/types/routes/auth-api/token.d.ts +10 -10
  22. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  23. package/dist/types/routes/management-api/branding.d.ts +12 -12
  24. package/dist/types/routes/management-api/clients.d.ts +9 -9
  25. package/dist/types/routes/management-api/connections.d.ts +6 -6
  26. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  27. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  28. package/dist/types/routes/management-api/forms.d.ts +126 -126
  29. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  30. package/dist/types/routes/management-api/index.d.ts +237 -194
  31. package/dist/types/routes/management-api/logs.d.ts +3 -3
  32. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  33. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  34. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  35. package/dist/types/routes/management-api/tenant-export-import.d.ts +49 -0
  36. package/dist/types/routes/management-api/tenants.d.ts +1 -1
  37. package/dist/types/routes/management-api/themes.d.ts +6 -6
  38. package/dist/types/routes/management-api/users.d.ts +2 -2
  39. package/dist/types/routes/universal-login/common.d.ts +10 -10
  40. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  41. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  42. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  43. package/dist/types/types/IdToken.d.ts +2 -2
  44. package/package.json +5 -5
@@ -1,9 +1,9 @@
1
- import * as hono_utils_http_status from 'hono/utils/http-status';
2
1
  import * as hono_utils_types from 'hono/utils/types';
3
2
  import * as _authhero_adapter_interfaces from '@authhero/adapter-interfaces';
4
3
  import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, CustomDomain, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, LogsDataAdapter, LogInsert, UserDataAdapter, CustomDomainsAdapter, ProxyRoutesAdapter, ListParams, KeysAdapter, CodeExecutionResult } from '@authhero/adapter-interfaces';
5
4
  export * from '@authhero/adapter-interfaces';
6
5
  import * as hono_types from 'hono/types';
6
+ import * as hono_utils_http_status from 'hono/utils/http-status';
7
7
  import { z, OpenAPIHono } from '@hono/zod-openapi';
8
8
  import { CountryCode } from 'libphonenumber-js';
9
9
  import { SamlSigner } from '@authhero/saml/core';
@@ -2929,6 +2929,49 @@ declare function init(config: AuthHeroConfig): {
2929
2929
  Bindings: Bindings;
2930
2930
  Variables: Variables;
2931
2931
  }, hono_types.MergeSchemaPath<{
2932
+ "/export": {
2933
+ $get: {
2934
+ input: {
2935
+ query: {
2936
+ include_password_hashes?: "true" | "false" | undefined;
2937
+ gzip?: "true" | "false" | undefined;
2938
+ };
2939
+ } & {
2940
+ header: {
2941
+ "tenant-id"?: string | undefined;
2942
+ };
2943
+ };
2944
+ output: Response;
2945
+ outputFormat: "json";
2946
+ status: hono_utils_http_status.StatusCode;
2947
+ };
2948
+ };
2949
+ } & {
2950
+ "/import": {
2951
+ $post: {
2952
+ input: {
2953
+ query: {
2954
+ include_password_hashes?: "true" | "false" | undefined;
2955
+ };
2956
+ } & {
2957
+ header: {
2958
+ "tenant-id"?: string | undefined;
2959
+ };
2960
+ };
2961
+ output: {
2962
+ counts: {
2963
+ [x: string]: number;
2964
+ };
2965
+ errors: {
2966
+ entity: string;
2967
+ error: string;
2968
+ }[];
2969
+ };
2970
+ outputFormat: "json";
2971
+ status: 200;
2972
+ };
2973
+ };
2974
+ }, "/tenant-data"> & hono_types.MergeSchemaPath<{
2932
2975
  "/": {
2933
2976
  $get: {
2934
2977
  input: {
@@ -3102,7 +3145,7 @@ declare function init(config: AuthHeroConfig): {
3102
3145
  };
3103
3146
  };
3104
3147
  output: {
3105
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3148
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3106
3149
  enabled: boolean;
3107
3150
  trial_expired?: boolean | undefined;
3108
3151
  }[];
@@ -3257,7 +3300,7 @@ declare function init(config: AuthHeroConfig): {
3257
3300
  $get: {
3258
3301
  input: {
3259
3302
  param: {
3260
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3303
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3261
3304
  };
3262
3305
  } & {
3263
3306
  header: {
@@ -3265,7 +3308,7 @@ declare function init(config: AuthHeroConfig): {
3265
3308
  };
3266
3309
  };
3267
3310
  output: {
3268
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3311
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3269
3312
  enabled: boolean;
3270
3313
  trial_expired?: boolean | undefined;
3271
3314
  };
@@ -3278,7 +3321,7 @@ declare function init(config: AuthHeroConfig): {
3278
3321
  $put: {
3279
3322
  input: {
3280
3323
  param: {
3281
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3324
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3282
3325
  };
3283
3326
  } & {
3284
3327
  header: {
@@ -3290,7 +3333,7 @@ declare function init(config: AuthHeroConfig): {
3290
3333
  };
3291
3334
  };
3292
3335
  output: {
3293
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3336
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3294
3337
  enabled: boolean;
3295
3338
  trial_expired?: boolean | undefined;
3296
3339
  };
@@ -4035,9 +4078,9 @@ declare function init(config: AuthHeroConfig): {
4035
4078
  invitee: {
4036
4079
  email?: string | undefined;
4037
4080
  };
4038
- id?: string | undefined;
4039
4081
  app_metadata?: Record<string, any> | undefined;
4040
4082
  user_metadata?: Record<string, any> | undefined;
4083
+ id?: string | undefined;
4041
4084
  connection_id?: string | undefined;
4042
4085
  roles?: string[] | undefined;
4043
4086
  ttl_sec?: number | undefined;
@@ -5466,7 +5509,7 @@ declare function init(config: AuthHeroConfig): {
5466
5509
  hint?: string | undefined;
5467
5510
  messages?: {
5468
5511
  text: string;
5469
- type: "error" | "success" | "info" | "warning";
5512
+ type: "success" | "error" | "info" | "warning";
5470
5513
  id?: number | undefined;
5471
5514
  }[] | undefined;
5472
5515
  required?: boolean | undefined;
@@ -5484,7 +5527,7 @@ declare function init(config: AuthHeroConfig): {
5484
5527
  hint?: string | undefined;
5485
5528
  messages?: {
5486
5529
  text: string;
5487
- type: "error" | "success" | "info" | "warning";
5530
+ type: "success" | "error" | "info" | "warning";
5488
5531
  id?: number | undefined;
5489
5532
  }[] | undefined;
5490
5533
  required?: boolean | undefined;
@@ -5508,7 +5551,7 @@ declare function init(config: AuthHeroConfig): {
5508
5551
  hint?: string | undefined;
5509
5552
  messages?: {
5510
5553
  text: string;
5511
- type: "error" | "success" | "info" | "warning";
5554
+ type: "success" | "error" | "info" | "warning";
5512
5555
  id?: number | undefined;
5513
5556
  }[] | undefined;
5514
5557
  required?: boolean | undefined;
@@ -5532,7 +5575,7 @@ declare function init(config: AuthHeroConfig): {
5532
5575
  hint?: string | undefined;
5533
5576
  messages?: {
5534
5577
  text: string;
5535
- type: "error" | "success" | "info" | "warning";
5578
+ type: "success" | "error" | "info" | "warning";
5536
5579
  id?: number | undefined;
5537
5580
  }[] | undefined;
5538
5581
  required?: boolean | undefined;
@@ -5556,7 +5599,7 @@ declare function init(config: AuthHeroConfig): {
5556
5599
  hint?: string | undefined;
5557
5600
  messages?: {
5558
5601
  text: string;
5559
- type: "error" | "success" | "info" | "warning";
5602
+ type: "success" | "error" | "info" | "warning";
5560
5603
  id?: number | undefined;
5561
5604
  }[] | undefined;
5562
5605
  required?: boolean | undefined;
@@ -5585,7 +5628,7 @@ declare function init(config: AuthHeroConfig): {
5585
5628
  hint?: string | undefined;
5586
5629
  messages?: {
5587
5630
  text: string;
5588
- type: "error" | "success" | "info" | "warning";
5631
+ type: "success" | "error" | "info" | "warning";
5589
5632
  id?: number | undefined;
5590
5633
  }[] | undefined;
5591
5634
  required?: boolean | undefined;
@@ -5600,7 +5643,7 @@ declare function init(config: AuthHeroConfig): {
5600
5643
  hint?: string | undefined;
5601
5644
  messages?: {
5602
5645
  text: string;
5603
- type: "error" | "success" | "info" | "warning";
5646
+ type: "success" | "error" | "info" | "warning";
5604
5647
  id?: number | undefined;
5605
5648
  }[] | undefined;
5606
5649
  required?: boolean | undefined;
@@ -5621,7 +5664,7 @@ declare function init(config: AuthHeroConfig): {
5621
5664
  hint?: string | undefined;
5622
5665
  messages?: {
5623
5666
  text: string;
5624
- type: "error" | "success" | "info" | "warning";
5667
+ type: "success" | "error" | "info" | "warning";
5625
5668
  id?: number | undefined;
5626
5669
  }[] | undefined;
5627
5670
  required?: boolean | undefined;
@@ -5646,7 +5689,7 @@ declare function init(config: AuthHeroConfig): {
5646
5689
  hint?: string | undefined;
5647
5690
  messages?: {
5648
5691
  text: string;
5649
- type: "error" | "success" | "info" | "warning";
5692
+ type: "success" | "error" | "info" | "warning";
5650
5693
  id?: number | undefined;
5651
5694
  }[] | undefined;
5652
5695
  required?: boolean | undefined;
@@ -5665,7 +5708,7 @@ declare function init(config: AuthHeroConfig): {
5665
5708
  hint?: string | undefined;
5666
5709
  messages?: {
5667
5710
  text: string;
5668
- type: "error" | "success" | "info" | "warning";
5711
+ type: "success" | "error" | "info" | "warning";
5669
5712
  id?: number | undefined;
5670
5713
  }[] | undefined;
5671
5714
  required?: boolean | undefined;
@@ -5685,7 +5728,7 @@ declare function init(config: AuthHeroConfig): {
5685
5728
  hint?: string | undefined;
5686
5729
  messages?: {
5687
5730
  text: string;
5688
- type: "error" | "success" | "info" | "warning";
5731
+ type: "success" | "error" | "info" | "warning";
5689
5732
  id?: number | undefined;
5690
5733
  }[] | undefined;
5691
5734
  required?: boolean | undefined;
@@ -5704,7 +5747,7 @@ declare function init(config: AuthHeroConfig): {
5704
5747
  hint?: string | undefined;
5705
5748
  messages?: {
5706
5749
  text: string;
5707
- type: "error" | "success" | "info" | "warning";
5750
+ type: "success" | "error" | "info" | "warning";
5708
5751
  id?: number | undefined;
5709
5752
  }[] | undefined;
5710
5753
  required?: boolean | undefined;
@@ -5726,7 +5769,7 @@ declare function init(config: AuthHeroConfig): {
5726
5769
  hint?: string | undefined;
5727
5770
  messages?: {
5728
5771
  text: string;
5729
- type: "error" | "success" | "info" | "warning";
5772
+ type: "success" | "error" | "info" | "warning";
5730
5773
  id?: number | undefined;
5731
5774
  }[] | undefined;
5732
5775
  required?: boolean | undefined;
@@ -5748,7 +5791,7 @@ declare function init(config: AuthHeroConfig): {
5748
5791
  hint?: string | undefined;
5749
5792
  messages?: {
5750
5793
  text: string;
5751
- type: "error" | "success" | "info" | "warning";
5794
+ type: "success" | "error" | "info" | "warning";
5752
5795
  id?: number | undefined;
5753
5796
  }[] | undefined;
5754
5797
  required?: boolean | undefined;
@@ -5767,7 +5810,7 @@ declare function init(config: AuthHeroConfig): {
5767
5810
  hint?: string | undefined;
5768
5811
  messages?: {
5769
5812
  text: string;
5770
- type: "error" | "success" | "info" | "warning";
5813
+ type: "success" | "error" | "info" | "warning";
5771
5814
  id?: number | undefined;
5772
5815
  }[] | undefined;
5773
5816
  required?: boolean | undefined;
@@ -5792,7 +5835,7 @@ declare function init(config: AuthHeroConfig): {
5792
5835
  hint?: string | undefined;
5793
5836
  messages?: {
5794
5837
  text: string;
5795
- type: "error" | "success" | "info" | "warning";
5838
+ type: "success" | "error" | "info" | "warning";
5796
5839
  id?: number | undefined;
5797
5840
  }[] | undefined;
5798
5841
  required?: boolean | undefined;
@@ -5813,7 +5856,7 @@ declare function init(config: AuthHeroConfig): {
5813
5856
  hint?: string | undefined;
5814
5857
  messages?: {
5815
5858
  text: string;
5816
- type: "error" | "success" | "info" | "warning";
5859
+ type: "success" | "error" | "info" | "warning";
5817
5860
  id?: number | undefined;
5818
5861
  }[] | undefined;
5819
5862
  required?: boolean | undefined;
@@ -5834,7 +5877,7 @@ declare function init(config: AuthHeroConfig): {
5834
5877
  hint?: string | undefined;
5835
5878
  messages?: {
5836
5879
  text: string;
5837
- type: "error" | "success" | "info" | "warning";
5880
+ type: "success" | "error" | "info" | "warning";
5838
5881
  id?: number | undefined;
5839
5882
  }[] | undefined;
5840
5883
  required?: boolean | undefined;
@@ -6067,7 +6110,7 @@ declare function init(config: AuthHeroConfig): {
6067
6110
  hint?: string | undefined;
6068
6111
  messages?: {
6069
6112
  text: string;
6070
- type: "error" | "success" | "info" | "warning";
6113
+ type: "success" | "error" | "info" | "warning";
6071
6114
  id?: number | undefined;
6072
6115
  }[] | undefined;
6073
6116
  required?: boolean | undefined;
@@ -6085,7 +6128,7 @@ declare function init(config: AuthHeroConfig): {
6085
6128
  hint?: string | undefined;
6086
6129
  messages?: {
6087
6130
  text: string;
6088
- type: "error" | "success" | "info" | "warning";
6131
+ type: "success" | "error" | "info" | "warning";
6089
6132
  id?: number | undefined;
6090
6133
  }[] | undefined;
6091
6134
  required?: boolean | undefined;
@@ -6109,7 +6152,7 @@ declare function init(config: AuthHeroConfig): {
6109
6152
  hint?: string | undefined;
6110
6153
  messages?: {
6111
6154
  text: string;
6112
- type: "error" | "success" | "info" | "warning";
6155
+ type: "success" | "error" | "info" | "warning";
6113
6156
  id?: number | undefined;
6114
6157
  }[] | undefined;
6115
6158
  required?: boolean | undefined;
@@ -6133,7 +6176,7 @@ declare function init(config: AuthHeroConfig): {
6133
6176
  hint?: string | undefined;
6134
6177
  messages?: {
6135
6178
  text: string;
6136
- type: "error" | "success" | "info" | "warning";
6179
+ type: "success" | "error" | "info" | "warning";
6137
6180
  id?: number | undefined;
6138
6181
  }[] | undefined;
6139
6182
  required?: boolean | undefined;
@@ -6157,7 +6200,7 @@ declare function init(config: AuthHeroConfig): {
6157
6200
  hint?: string | undefined;
6158
6201
  messages?: {
6159
6202
  text: string;
6160
- type: "error" | "success" | "info" | "warning";
6203
+ type: "success" | "error" | "info" | "warning";
6161
6204
  id?: number | undefined;
6162
6205
  }[] | undefined;
6163
6206
  required?: boolean | undefined;
@@ -6186,7 +6229,7 @@ declare function init(config: AuthHeroConfig): {
6186
6229
  hint?: string | undefined;
6187
6230
  messages?: {
6188
6231
  text: string;
6189
- type: "error" | "success" | "info" | "warning";
6232
+ type: "success" | "error" | "info" | "warning";
6190
6233
  id?: number | undefined;
6191
6234
  }[] | undefined;
6192
6235
  required?: boolean | undefined;
@@ -6201,7 +6244,7 @@ declare function init(config: AuthHeroConfig): {
6201
6244
  hint?: string | undefined;
6202
6245
  messages?: {
6203
6246
  text: string;
6204
- type: "error" | "success" | "info" | "warning";
6247
+ type: "success" | "error" | "info" | "warning";
6205
6248
  id?: number | undefined;
6206
6249
  }[] | undefined;
6207
6250
  required?: boolean | undefined;
@@ -6222,7 +6265,7 @@ declare function init(config: AuthHeroConfig): {
6222
6265
  hint?: string | undefined;
6223
6266
  messages?: {
6224
6267
  text: string;
6225
- type: "error" | "success" | "info" | "warning";
6268
+ type: "success" | "error" | "info" | "warning";
6226
6269
  id?: number | undefined;
6227
6270
  }[] | undefined;
6228
6271
  required?: boolean | undefined;
@@ -6247,7 +6290,7 @@ declare function init(config: AuthHeroConfig): {
6247
6290
  hint?: string | undefined;
6248
6291
  messages?: {
6249
6292
  text: string;
6250
- type: "error" | "success" | "info" | "warning";
6293
+ type: "success" | "error" | "info" | "warning";
6251
6294
  id?: number | undefined;
6252
6295
  }[] | undefined;
6253
6296
  required?: boolean | undefined;
@@ -6266,7 +6309,7 @@ declare function init(config: AuthHeroConfig): {
6266
6309
  hint?: string | undefined;
6267
6310
  messages?: {
6268
6311
  text: string;
6269
- type: "error" | "success" | "info" | "warning";
6312
+ type: "success" | "error" | "info" | "warning";
6270
6313
  id?: number | undefined;
6271
6314
  }[] | undefined;
6272
6315
  required?: boolean | undefined;
@@ -6286,7 +6329,7 @@ declare function init(config: AuthHeroConfig): {
6286
6329
  hint?: string | undefined;
6287
6330
  messages?: {
6288
6331
  text: string;
6289
- type: "error" | "success" | "info" | "warning";
6332
+ type: "success" | "error" | "info" | "warning";
6290
6333
  id?: number | undefined;
6291
6334
  }[] | undefined;
6292
6335
  required?: boolean | undefined;
@@ -6305,7 +6348,7 @@ declare function init(config: AuthHeroConfig): {
6305
6348
  hint?: string | undefined;
6306
6349
  messages?: {
6307
6350
  text: string;
6308
- type: "error" | "success" | "info" | "warning";
6351
+ type: "success" | "error" | "info" | "warning";
6309
6352
  id?: number | undefined;
6310
6353
  }[] | undefined;
6311
6354
  required?: boolean | undefined;
@@ -6327,7 +6370,7 @@ declare function init(config: AuthHeroConfig): {
6327
6370
  hint?: string | undefined;
6328
6371
  messages?: {
6329
6372
  text: string;
6330
- type: "error" | "success" | "info" | "warning";
6373
+ type: "success" | "error" | "info" | "warning";
6331
6374
  id?: number | undefined;
6332
6375
  }[] | undefined;
6333
6376
  required?: boolean | undefined;
@@ -6349,7 +6392,7 @@ declare function init(config: AuthHeroConfig): {
6349
6392
  hint?: string | undefined;
6350
6393
  messages?: {
6351
6394
  text: string;
6352
- type: "error" | "success" | "info" | "warning";
6395
+ type: "success" | "error" | "info" | "warning";
6353
6396
  id?: number | undefined;
6354
6397
  }[] | undefined;
6355
6398
  required?: boolean | undefined;
@@ -6368,7 +6411,7 @@ declare function init(config: AuthHeroConfig): {
6368
6411
  hint?: string | undefined;
6369
6412
  messages?: {
6370
6413
  text: string;
6371
- type: "error" | "success" | "info" | "warning";
6414
+ type: "success" | "error" | "info" | "warning";
6372
6415
  id?: number | undefined;
6373
6416
  }[] | undefined;
6374
6417
  required?: boolean | undefined;
@@ -6393,7 +6436,7 @@ declare function init(config: AuthHeroConfig): {
6393
6436
  hint?: string | undefined;
6394
6437
  messages?: {
6395
6438
  text: string;
6396
- type: "error" | "success" | "info" | "warning";
6439
+ type: "success" | "error" | "info" | "warning";
6397
6440
  id?: number | undefined;
6398
6441
  }[] | undefined;
6399
6442
  required?: boolean | undefined;
@@ -6414,7 +6457,7 @@ declare function init(config: AuthHeroConfig): {
6414
6457
  hint?: string | undefined;
6415
6458
  messages?: {
6416
6459
  text: string;
6417
- type: "error" | "success" | "info" | "warning";
6460
+ type: "success" | "error" | "info" | "warning";
6418
6461
  id?: number | undefined;
6419
6462
  }[] | undefined;
6420
6463
  required?: boolean | undefined;
@@ -6435,7 +6478,7 @@ declare function init(config: AuthHeroConfig): {
6435
6478
  hint?: string | undefined;
6436
6479
  messages?: {
6437
6480
  text: string;
6438
- type: "error" | "success" | "info" | "warning";
6481
+ type: "success" | "error" | "info" | "warning";
6439
6482
  id?: number | undefined;
6440
6483
  }[] | undefined;
6441
6484
  required?: boolean | undefined;
@@ -6683,7 +6726,7 @@ declare function init(config: AuthHeroConfig): {
6683
6726
  hint?: string | undefined;
6684
6727
  messages?: {
6685
6728
  text: string;
6686
- type: "error" | "success" | "info" | "warning";
6729
+ type: "success" | "error" | "info" | "warning";
6687
6730
  id?: number | undefined;
6688
6731
  }[] | undefined;
6689
6732
  required?: boolean | undefined;
@@ -6701,7 +6744,7 @@ declare function init(config: AuthHeroConfig): {
6701
6744
  hint?: string | undefined;
6702
6745
  messages?: {
6703
6746
  text: string;
6704
- type: "error" | "success" | "info" | "warning";
6747
+ type: "success" | "error" | "info" | "warning";
6705
6748
  id?: number | undefined;
6706
6749
  }[] | undefined;
6707
6750
  required?: boolean | undefined;
@@ -6725,7 +6768,7 @@ declare function init(config: AuthHeroConfig): {
6725
6768
  hint?: string | undefined;
6726
6769
  messages?: {
6727
6770
  text: string;
6728
- type: "error" | "success" | "info" | "warning";
6771
+ type: "success" | "error" | "info" | "warning";
6729
6772
  id?: number | undefined;
6730
6773
  }[] | undefined;
6731
6774
  required?: boolean | undefined;
@@ -6749,7 +6792,7 @@ declare function init(config: AuthHeroConfig): {
6749
6792
  hint?: string | undefined;
6750
6793
  messages?: {
6751
6794
  text: string;
6752
- type: "error" | "success" | "info" | "warning";
6795
+ type: "success" | "error" | "info" | "warning";
6753
6796
  id?: number | undefined;
6754
6797
  }[] | undefined;
6755
6798
  required?: boolean | undefined;
@@ -6773,7 +6816,7 @@ declare function init(config: AuthHeroConfig): {
6773
6816
  hint?: string | undefined;
6774
6817
  messages?: {
6775
6818
  text: string;
6776
- type: "error" | "success" | "info" | "warning";
6819
+ type: "success" | "error" | "info" | "warning";
6777
6820
  id?: number | undefined;
6778
6821
  }[] | undefined;
6779
6822
  required?: boolean | undefined;
@@ -6802,7 +6845,7 @@ declare function init(config: AuthHeroConfig): {
6802
6845
  hint?: string | undefined;
6803
6846
  messages?: {
6804
6847
  text: string;
6805
- type: "error" | "success" | "info" | "warning";
6848
+ type: "success" | "error" | "info" | "warning";
6806
6849
  id?: number | undefined;
6807
6850
  }[] | undefined;
6808
6851
  required?: boolean | undefined;
@@ -6817,7 +6860,7 @@ declare function init(config: AuthHeroConfig): {
6817
6860
  hint?: string | undefined;
6818
6861
  messages?: {
6819
6862
  text: string;
6820
- type: "error" | "success" | "info" | "warning";
6863
+ type: "success" | "error" | "info" | "warning";
6821
6864
  id?: number | undefined;
6822
6865
  }[] | undefined;
6823
6866
  required?: boolean | undefined;
@@ -6838,7 +6881,7 @@ declare function init(config: AuthHeroConfig): {
6838
6881
  hint?: string | undefined;
6839
6882
  messages?: {
6840
6883
  text: string;
6841
- type: "error" | "success" | "info" | "warning";
6884
+ type: "success" | "error" | "info" | "warning";
6842
6885
  id?: number | undefined;
6843
6886
  }[] | undefined;
6844
6887
  required?: boolean | undefined;
@@ -6863,7 +6906,7 @@ declare function init(config: AuthHeroConfig): {
6863
6906
  hint?: string | undefined;
6864
6907
  messages?: {
6865
6908
  text: string;
6866
- type: "error" | "success" | "info" | "warning";
6909
+ type: "success" | "error" | "info" | "warning";
6867
6910
  id?: number | undefined;
6868
6911
  }[] | undefined;
6869
6912
  required?: boolean | undefined;
@@ -6882,7 +6925,7 @@ declare function init(config: AuthHeroConfig): {
6882
6925
  hint?: string | undefined;
6883
6926
  messages?: {
6884
6927
  text: string;
6885
- type: "error" | "success" | "info" | "warning";
6928
+ type: "success" | "error" | "info" | "warning";
6886
6929
  id?: number | undefined;
6887
6930
  }[] | undefined;
6888
6931
  required?: boolean | undefined;
@@ -6902,7 +6945,7 @@ declare function init(config: AuthHeroConfig): {
6902
6945
  hint?: string | undefined;
6903
6946
  messages?: {
6904
6947
  text: string;
6905
- type: "error" | "success" | "info" | "warning";
6948
+ type: "success" | "error" | "info" | "warning";
6906
6949
  id?: number | undefined;
6907
6950
  }[] | undefined;
6908
6951
  required?: boolean | undefined;
@@ -6921,7 +6964,7 @@ declare function init(config: AuthHeroConfig): {
6921
6964
  hint?: string | undefined;
6922
6965
  messages?: {
6923
6966
  text: string;
6924
- type: "error" | "success" | "info" | "warning";
6967
+ type: "success" | "error" | "info" | "warning";
6925
6968
  id?: number | undefined;
6926
6969
  }[] | undefined;
6927
6970
  required?: boolean | undefined;
@@ -6943,7 +6986,7 @@ declare function init(config: AuthHeroConfig): {
6943
6986
  hint?: string | undefined;
6944
6987
  messages?: {
6945
6988
  text: string;
6946
- type: "error" | "success" | "info" | "warning";
6989
+ type: "success" | "error" | "info" | "warning";
6947
6990
  id?: number | undefined;
6948
6991
  }[] | undefined;
6949
6992
  required?: boolean | undefined;
@@ -6965,7 +7008,7 @@ declare function init(config: AuthHeroConfig): {
6965
7008
  hint?: string | undefined;
6966
7009
  messages?: {
6967
7010
  text: string;
6968
- type: "error" | "success" | "info" | "warning";
7011
+ type: "success" | "error" | "info" | "warning";
6969
7012
  id?: number | undefined;
6970
7013
  }[] | undefined;
6971
7014
  required?: boolean | undefined;
@@ -6984,7 +7027,7 @@ declare function init(config: AuthHeroConfig): {
6984
7027
  hint?: string | undefined;
6985
7028
  messages?: {
6986
7029
  text: string;
6987
- type: "error" | "success" | "info" | "warning";
7030
+ type: "success" | "error" | "info" | "warning";
6988
7031
  id?: number | undefined;
6989
7032
  }[] | undefined;
6990
7033
  required?: boolean | undefined;
@@ -7009,7 +7052,7 @@ declare function init(config: AuthHeroConfig): {
7009
7052
  hint?: string | undefined;
7010
7053
  messages?: {
7011
7054
  text: string;
7012
- type: "error" | "success" | "info" | "warning";
7055
+ type: "success" | "error" | "info" | "warning";
7013
7056
  id?: number | undefined;
7014
7057
  }[] | undefined;
7015
7058
  required?: boolean | undefined;
@@ -7030,7 +7073,7 @@ declare function init(config: AuthHeroConfig): {
7030
7073
  hint?: string | undefined;
7031
7074
  messages?: {
7032
7075
  text: string;
7033
- type: "error" | "success" | "info" | "warning";
7076
+ type: "success" | "error" | "info" | "warning";
7034
7077
  id?: number | undefined;
7035
7078
  }[] | undefined;
7036
7079
  required?: boolean | undefined;
@@ -7051,7 +7094,7 @@ declare function init(config: AuthHeroConfig): {
7051
7094
  hint?: string | undefined;
7052
7095
  messages?: {
7053
7096
  text: string;
7054
- type: "error" | "success" | "info" | "warning";
7097
+ type: "success" | "error" | "info" | "warning";
7055
7098
  id?: number | undefined;
7056
7099
  }[] | undefined;
7057
7100
  required?: boolean | undefined;
@@ -7305,7 +7348,7 @@ declare function init(config: AuthHeroConfig): {
7305
7348
  hint?: string | undefined;
7306
7349
  messages?: {
7307
7350
  text: string;
7308
- type: "error" | "success" | "info" | "warning";
7351
+ type: "success" | "error" | "info" | "warning";
7309
7352
  id?: number | undefined;
7310
7353
  }[] | undefined;
7311
7354
  required?: boolean | undefined;
@@ -7323,7 +7366,7 @@ declare function init(config: AuthHeroConfig): {
7323
7366
  hint?: string | undefined;
7324
7367
  messages?: {
7325
7368
  text: string;
7326
- type: "error" | "success" | "info" | "warning";
7369
+ type: "success" | "error" | "info" | "warning";
7327
7370
  id?: number | undefined;
7328
7371
  }[] | undefined;
7329
7372
  required?: boolean | undefined;
@@ -7347,7 +7390,7 @@ declare function init(config: AuthHeroConfig): {
7347
7390
  hint?: string | undefined;
7348
7391
  messages?: {
7349
7392
  text: string;
7350
- type: "error" | "success" | "info" | "warning";
7393
+ type: "success" | "error" | "info" | "warning";
7351
7394
  id?: number | undefined;
7352
7395
  }[] | undefined;
7353
7396
  required?: boolean | undefined;
@@ -7371,7 +7414,7 @@ declare function init(config: AuthHeroConfig): {
7371
7414
  hint?: string | undefined;
7372
7415
  messages?: {
7373
7416
  text: string;
7374
- type: "error" | "success" | "info" | "warning";
7417
+ type: "success" | "error" | "info" | "warning";
7375
7418
  id?: number | undefined;
7376
7419
  }[] | undefined;
7377
7420
  required?: boolean | undefined;
@@ -7395,7 +7438,7 @@ declare function init(config: AuthHeroConfig): {
7395
7438
  hint?: string | undefined;
7396
7439
  messages?: {
7397
7440
  text: string;
7398
- type: "error" | "success" | "info" | "warning";
7441
+ type: "success" | "error" | "info" | "warning";
7399
7442
  id?: number | undefined;
7400
7443
  }[] | undefined;
7401
7444
  required?: boolean | undefined;
@@ -7420,7 +7463,7 @@ declare function init(config: AuthHeroConfig): {
7420
7463
  hint?: string | undefined;
7421
7464
  messages?: {
7422
7465
  text: string;
7423
- type: "error" | "success" | "info" | "warning";
7466
+ type: "success" | "error" | "info" | "warning";
7424
7467
  id?: number | undefined;
7425
7468
  }[] | undefined;
7426
7469
  required?: boolean | undefined;
@@ -7435,7 +7478,7 @@ declare function init(config: AuthHeroConfig): {
7435
7478
  hint?: string | undefined;
7436
7479
  messages?: {
7437
7480
  text: string;
7438
- type: "error" | "success" | "info" | "warning";
7481
+ type: "success" | "error" | "info" | "warning";
7439
7482
  id?: number | undefined;
7440
7483
  }[] | undefined;
7441
7484
  required?: boolean | undefined;
@@ -7456,7 +7499,7 @@ declare function init(config: AuthHeroConfig): {
7456
7499
  hint?: string | undefined;
7457
7500
  messages?: {
7458
7501
  text: string;
7459
- type: "error" | "success" | "info" | "warning";
7502
+ type: "success" | "error" | "info" | "warning";
7460
7503
  id?: number | undefined;
7461
7504
  }[] | undefined;
7462
7505
  required?: boolean | undefined;
@@ -7481,7 +7524,7 @@ declare function init(config: AuthHeroConfig): {
7481
7524
  hint?: string | undefined;
7482
7525
  messages?: {
7483
7526
  text: string;
7484
- type: "error" | "success" | "info" | "warning";
7527
+ type: "success" | "error" | "info" | "warning";
7485
7528
  id?: number | undefined;
7486
7529
  }[] | undefined;
7487
7530
  required?: boolean | undefined;
@@ -7500,7 +7543,7 @@ declare function init(config: AuthHeroConfig): {
7500
7543
  hint?: string | undefined;
7501
7544
  messages?: {
7502
7545
  text: string;
7503
- type: "error" | "success" | "info" | "warning";
7546
+ type: "success" | "error" | "info" | "warning";
7504
7547
  id?: number | undefined;
7505
7548
  }[] | undefined;
7506
7549
  required?: boolean | undefined;
@@ -7520,7 +7563,7 @@ declare function init(config: AuthHeroConfig): {
7520
7563
  hint?: string | undefined;
7521
7564
  messages?: {
7522
7565
  text: string;
7523
- type: "error" | "success" | "info" | "warning";
7566
+ type: "success" | "error" | "info" | "warning";
7524
7567
  id?: number | undefined;
7525
7568
  }[] | undefined;
7526
7569
  required?: boolean | undefined;
@@ -7539,7 +7582,7 @@ declare function init(config: AuthHeroConfig): {
7539
7582
  hint?: string | undefined;
7540
7583
  messages?: {
7541
7584
  text: string;
7542
- type: "error" | "success" | "info" | "warning";
7585
+ type: "success" | "error" | "info" | "warning";
7543
7586
  id?: number | undefined;
7544
7587
  }[] | undefined;
7545
7588
  required?: boolean | undefined;
@@ -7561,7 +7604,7 @@ declare function init(config: AuthHeroConfig): {
7561
7604
  hint?: string | undefined;
7562
7605
  messages?: {
7563
7606
  text: string;
7564
- type: "error" | "success" | "info" | "warning";
7607
+ type: "success" | "error" | "info" | "warning";
7565
7608
  id?: number | undefined;
7566
7609
  }[] | undefined;
7567
7610
  required?: boolean | undefined;
@@ -7583,7 +7626,7 @@ declare function init(config: AuthHeroConfig): {
7583
7626
  hint?: string | undefined;
7584
7627
  messages?: {
7585
7628
  text: string;
7586
- type: "error" | "success" | "info" | "warning";
7629
+ type: "success" | "error" | "info" | "warning";
7587
7630
  id?: number | undefined;
7588
7631
  }[] | undefined;
7589
7632
  required?: boolean | undefined;
@@ -7602,7 +7645,7 @@ declare function init(config: AuthHeroConfig): {
7602
7645
  hint?: string | undefined;
7603
7646
  messages?: {
7604
7647
  text: string;
7605
- type: "error" | "success" | "info" | "warning";
7648
+ type: "success" | "error" | "info" | "warning";
7606
7649
  id?: number | undefined;
7607
7650
  }[] | undefined;
7608
7651
  required?: boolean | undefined;
@@ -7627,7 +7670,7 @@ declare function init(config: AuthHeroConfig): {
7627
7670
  hint?: string | undefined;
7628
7671
  messages?: {
7629
7672
  text: string;
7630
- type: "error" | "success" | "info" | "warning";
7673
+ type: "success" | "error" | "info" | "warning";
7631
7674
  id?: number | undefined;
7632
7675
  }[] | undefined;
7633
7676
  required?: boolean | undefined;
@@ -7648,7 +7691,7 @@ declare function init(config: AuthHeroConfig): {
7648
7691
  hint?: string | undefined;
7649
7692
  messages?: {
7650
7693
  text: string;
7651
- type: "error" | "success" | "info" | "warning";
7694
+ type: "success" | "error" | "info" | "warning";
7652
7695
  id?: number | undefined;
7653
7696
  }[] | undefined;
7654
7697
  required?: boolean | undefined;
@@ -7669,7 +7712,7 @@ declare function init(config: AuthHeroConfig): {
7669
7712
  hint?: string | undefined;
7670
7713
  messages?: {
7671
7714
  text: string;
7672
- type: "error" | "success" | "info" | "warning";
7715
+ type: "success" | "error" | "info" | "warning";
7673
7716
  id?: number | undefined;
7674
7717
  }[] | undefined;
7675
7718
  required?: boolean | undefined;
@@ -7900,7 +7943,7 @@ declare function init(config: AuthHeroConfig): {
7900
7943
  hint?: string | undefined;
7901
7944
  messages?: {
7902
7945
  text: string;
7903
- type: "error" | "success" | "info" | "warning";
7946
+ type: "success" | "error" | "info" | "warning";
7904
7947
  id?: number | undefined;
7905
7948
  }[] | undefined;
7906
7949
  required?: boolean | undefined;
@@ -7918,7 +7961,7 @@ declare function init(config: AuthHeroConfig): {
7918
7961
  hint?: string | undefined;
7919
7962
  messages?: {
7920
7963
  text: string;
7921
- type: "error" | "success" | "info" | "warning";
7964
+ type: "success" | "error" | "info" | "warning";
7922
7965
  id?: number | undefined;
7923
7966
  }[] | undefined;
7924
7967
  required?: boolean | undefined;
@@ -7942,7 +7985,7 @@ declare function init(config: AuthHeroConfig): {
7942
7985
  hint?: string | undefined;
7943
7986
  messages?: {
7944
7987
  text: string;
7945
- type: "error" | "success" | "info" | "warning";
7988
+ type: "success" | "error" | "info" | "warning";
7946
7989
  id?: number | undefined;
7947
7990
  }[] | undefined;
7948
7991
  required?: boolean | undefined;
@@ -7966,7 +8009,7 @@ declare function init(config: AuthHeroConfig): {
7966
8009
  hint?: string | undefined;
7967
8010
  messages?: {
7968
8011
  text: string;
7969
- type: "error" | "success" | "info" | "warning";
8012
+ type: "success" | "error" | "info" | "warning";
7970
8013
  id?: number | undefined;
7971
8014
  }[] | undefined;
7972
8015
  required?: boolean | undefined;
@@ -7990,7 +8033,7 @@ declare function init(config: AuthHeroConfig): {
7990
8033
  hint?: string | undefined;
7991
8034
  messages?: {
7992
8035
  text: string;
7993
- type: "error" | "success" | "info" | "warning";
8036
+ type: "success" | "error" | "info" | "warning";
7994
8037
  id?: number | undefined;
7995
8038
  }[] | undefined;
7996
8039
  required?: boolean | undefined;
@@ -8019,7 +8062,7 @@ declare function init(config: AuthHeroConfig): {
8019
8062
  hint?: string | undefined;
8020
8063
  messages?: {
8021
8064
  text: string;
8022
- type: "error" | "success" | "info" | "warning";
8065
+ type: "success" | "error" | "info" | "warning";
8023
8066
  id?: number | undefined;
8024
8067
  }[] | undefined;
8025
8068
  required?: boolean | undefined;
@@ -8034,7 +8077,7 @@ declare function init(config: AuthHeroConfig): {
8034
8077
  hint?: string | undefined;
8035
8078
  messages?: {
8036
8079
  text: string;
8037
- type: "error" | "success" | "info" | "warning";
8080
+ type: "success" | "error" | "info" | "warning";
8038
8081
  id?: number | undefined;
8039
8082
  }[] | undefined;
8040
8083
  required?: boolean | undefined;
@@ -8055,7 +8098,7 @@ declare function init(config: AuthHeroConfig): {
8055
8098
  hint?: string | undefined;
8056
8099
  messages?: {
8057
8100
  text: string;
8058
- type: "error" | "success" | "info" | "warning";
8101
+ type: "success" | "error" | "info" | "warning";
8059
8102
  id?: number | undefined;
8060
8103
  }[] | undefined;
8061
8104
  required?: boolean | undefined;
@@ -8080,7 +8123,7 @@ declare function init(config: AuthHeroConfig): {
8080
8123
  hint?: string | undefined;
8081
8124
  messages?: {
8082
8125
  text: string;
8083
- type: "error" | "success" | "info" | "warning";
8126
+ type: "success" | "error" | "info" | "warning";
8084
8127
  id?: number | undefined;
8085
8128
  }[] | undefined;
8086
8129
  required?: boolean | undefined;
@@ -8099,7 +8142,7 @@ declare function init(config: AuthHeroConfig): {
8099
8142
  hint?: string | undefined;
8100
8143
  messages?: {
8101
8144
  text: string;
8102
- type: "error" | "success" | "info" | "warning";
8145
+ type: "success" | "error" | "info" | "warning";
8103
8146
  id?: number | undefined;
8104
8147
  }[] | undefined;
8105
8148
  required?: boolean | undefined;
@@ -8119,7 +8162,7 @@ declare function init(config: AuthHeroConfig): {
8119
8162
  hint?: string | undefined;
8120
8163
  messages?: {
8121
8164
  text: string;
8122
- type: "error" | "success" | "info" | "warning";
8165
+ type: "success" | "error" | "info" | "warning";
8123
8166
  id?: number | undefined;
8124
8167
  }[] | undefined;
8125
8168
  required?: boolean | undefined;
@@ -8138,7 +8181,7 @@ declare function init(config: AuthHeroConfig): {
8138
8181
  hint?: string | undefined;
8139
8182
  messages?: {
8140
8183
  text: string;
8141
- type: "error" | "success" | "info" | "warning";
8184
+ type: "success" | "error" | "info" | "warning";
8142
8185
  id?: number | undefined;
8143
8186
  }[] | undefined;
8144
8187
  required?: boolean | undefined;
@@ -8160,7 +8203,7 @@ declare function init(config: AuthHeroConfig): {
8160
8203
  hint?: string | undefined;
8161
8204
  messages?: {
8162
8205
  text: string;
8163
- type: "error" | "success" | "info" | "warning";
8206
+ type: "success" | "error" | "info" | "warning";
8164
8207
  id?: number | undefined;
8165
8208
  }[] | undefined;
8166
8209
  required?: boolean | undefined;
@@ -8182,7 +8225,7 @@ declare function init(config: AuthHeroConfig): {
8182
8225
  hint?: string | undefined;
8183
8226
  messages?: {
8184
8227
  text: string;
8185
- type: "error" | "success" | "info" | "warning";
8228
+ type: "success" | "error" | "info" | "warning";
8186
8229
  id?: number | undefined;
8187
8230
  }[] | undefined;
8188
8231
  required?: boolean | undefined;
@@ -8201,7 +8244,7 @@ declare function init(config: AuthHeroConfig): {
8201
8244
  hint?: string | undefined;
8202
8245
  messages?: {
8203
8246
  text: string;
8204
- type: "error" | "success" | "info" | "warning";
8247
+ type: "success" | "error" | "info" | "warning";
8205
8248
  id?: number | undefined;
8206
8249
  }[] | undefined;
8207
8250
  required?: boolean | undefined;
@@ -8226,7 +8269,7 @@ declare function init(config: AuthHeroConfig): {
8226
8269
  hint?: string | undefined;
8227
8270
  messages?: {
8228
8271
  text: string;
8229
- type: "error" | "success" | "info" | "warning";
8272
+ type: "success" | "error" | "info" | "warning";
8230
8273
  id?: number | undefined;
8231
8274
  }[] | undefined;
8232
8275
  required?: boolean | undefined;
@@ -8247,7 +8290,7 @@ declare function init(config: AuthHeroConfig): {
8247
8290
  hint?: string | undefined;
8248
8291
  messages?: {
8249
8292
  text: string;
8250
- type: "error" | "success" | "info" | "warning";
8293
+ type: "success" | "error" | "info" | "warning";
8251
8294
  id?: number | undefined;
8252
8295
  }[] | undefined;
8253
8296
  required?: boolean | undefined;
@@ -8268,7 +8311,7 @@ declare function init(config: AuthHeroConfig): {
8268
8311
  hint?: string | undefined;
8269
8312
  messages?: {
8270
8313
  text: string;
8271
- type: "error" | "success" | "info" | "warning";
8314
+ type: "success" | "error" | "info" | "warning";
8272
8315
  id?: number | undefined;
8273
8316
  }[] | undefined;
8274
8317
  required?: boolean | undefined;
@@ -8501,7 +8544,7 @@ declare function init(config: AuthHeroConfig): {
8501
8544
  hint?: string | undefined;
8502
8545
  messages?: {
8503
8546
  text: string;
8504
- type: "error" | "success" | "info" | "warning";
8547
+ type: "success" | "error" | "info" | "warning";
8505
8548
  id?: number | undefined;
8506
8549
  }[] | undefined;
8507
8550
  required?: boolean | undefined;
@@ -8519,7 +8562,7 @@ declare function init(config: AuthHeroConfig): {
8519
8562
  hint?: string | undefined;
8520
8563
  messages?: {
8521
8564
  text: string;
8522
- type: "error" | "success" | "info" | "warning";
8565
+ type: "success" | "error" | "info" | "warning";
8523
8566
  id?: number | undefined;
8524
8567
  }[] | undefined;
8525
8568
  required?: boolean | undefined;
@@ -8543,7 +8586,7 @@ declare function init(config: AuthHeroConfig): {
8543
8586
  hint?: string | undefined;
8544
8587
  messages?: {
8545
8588
  text: string;
8546
- type: "error" | "success" | "info" | "warning";
8589
+ type: "success" | "error" | "info" | "warning";
8547
8590
  id?: number | undefined;
8548
8591
  }[] | undefined;
8549
8592
  required?: boolean | undefined;
@@ -8567,7 +8610,7 @@ declare function init(config: AuthHeroConfig): {
8567
8610
  hint?: string | undefined;
8568
8611
  messages?: {
8569
8612
  text: string;
8570
- type: "error" | "success" | "info" | "warning";
8613
+ type: "success" | "error" | "info" | "warning";
8571
8614
  id?: number | undefined;
8572
8615
  }[] | undefined;
8573
8616
  required?: boolean | undefined;
@@ -8591,7 +8634,7 @@ declare function init(config: AuthHeroConfig): {
8591
8634
  hint?: string | undefined;
8592
8635
  messages?: {
8593
8636
  text: string;
8594
- type: "error" | "success" | "info" | "warning";
8637
+ type: "success" | "error" | "info" | "warning";
8595
8638
  id?: number | undefined;
8596
8639
  }[] | undefined;
8597
8640
  required?: boolean | undefined;
@@ -8616,7 +8659,7 @@ declare function init(config: AuthHeroConfig): {
8616
8659
  hint?: string | undefined;
8617
8660
  messages?: {
8618
8661
  text: string;
8619
- type: "error" | "success" | "info" | "warning";
8662
+ type: "success" | "error" | "info" | "warning";
8620
8663
  id?: number | undefined;
8621
8664
  }[] | undefined;
8622
8665
  required?: boolean | undefined;
@@ -8631,7 +8674,7 @@ declare function init(config: AuthHeroConfig): {
8631
8674
  hint?: string | undefined;
8632
8675
  messages?: {
8633
8676
  text: string;
8634
- type: "error" | "success" | "info" | "warning";
8677
+ type: "success" | "error" | "info" | "warning";
8635
8678
  id?: number | undefined;
8636
8679
  }[] | undefined;
8637
8680
  required?: boolean | undefined;
@@ -8652,7 +8695,7 @@ declare function init(config: AuthHeroConfig): {
8652
8695
  hint?: string | undefined;
8653
8696
  messages?: {
8654
8697
  text: string;
8655
- type: "error" | "success" | "info" | "warning";
8698
+ type: "success" | "error" | "info" | "warning";
8656
8699
  id?: number | undefined;
8657
8700
  }[] | undefined;
8658
8701
  required?: boolean | undefined;
@@ -8677,7 +8720,7 @@ declare function init(config: AuthHeroConfig): {
8677
8720
  hint?: string | undefined;
8678
8721
  messages?: {
8679
8722
  text: string;
8680
- type: "error" | "success" | "info" | "warning";
8723
+ type: "success" | "error" | "info" | "warning";
8681
8724
  id?: number | undefined;
8682
8725
  }[] | undefined;
8683
8726
  required?: boolean | undefined;
@@ -8696,7 +8739,7 @@ declare function init(config: AuthHeroConfig): {
8696
8739
  hint?: string | undefined;
8697
8740
  messages?: {
8698
8741
  text: string;
8699
- type: "error" | "success" | "info" | "warning";
8742
+ type: "success" | "error" | "info" | "warning";
8700
8743
  id?: number | undefined;
8701
8744
  }[] | undefined;
8702
8745
  required?: boolean | undefined;
@@ -8716,7 +8759,7 @@ declare function init(config: AuthHeroConfig): {
8716
8759
  hint?: string | undefined;
8717
8760
  messages?: {
8718
8761
  text: string;
8719
- type: "error" | "success" | "info" | "warning";
8762
+ type: "success" | "error" | "info" | "warning";
8720
8763
  id?: number | undefined;
8721
8764
  }[] | undefined;
8722
8765
  required?: boolean | undefined;
@@ -8735,7 +8778,7 @@ declare function init(config: AuthHeroConfig): {
8735
8778
  hint?: string | undefined;
8736
8779
  messages?: {
8737
8780
  text: string;
8738
- type: "error" | "success" | "info" | "warning";
8781
+ type: "success" | "error" | "info" | "warning";
8739
8782
  id?: number | undefined;
8740
8783
  }[] | undefined;
8741
8784
  required?: boolean | undefined;
@@ -8757,7 +8800,7 @@ declare function init(config: AuthHeroConfig): {
8757
8800
  hint?: string | undefined;
8758
8801
  messages?: {
8759
8802
  text: string;
8760
- type: "error" | "success" | "info" | "warning";
8803
+ type: "success" | "error" | "info" | "warning";
8761
8804
  id?: number | undefined;
8762
8805
  }[] | undefined;
8763
8806
  required?: boolean | undefined;
@@ -8779,7 +8822,7 @@ declare function init(config: AuthHeroConfig): {
8779
8822
  hint?: string | undefined;
8780
8823
  messages?: {
8781
8824
  text: string;
8782
- type: "error" | "success" | "info" | "warning";
8825
+ type: "success" | "error" | "info" | "warning";
8783
8826
  id?: number | undefined;
8784
8827
  }[] | undefined;
8785
8828
  required?: boolean | undefined;
@@ -8798,7 +8841,7 @@ declare function init(config: AuthHeroConfig): {
8798
8841
  hint?: string | undefined;
8799
8842
  messages?: {
8800
8843
  text: string;
8801
- type: "error" | "success" | "info" | "warning";
8844
+ type: "success" | "error" | "info" | "warning";
8802
8845
  id?: number | undefined;
8803
8846
  }[] | undefined;
8804
8847
  required?: boolean | undefined;
@@ -8823,7 +8866,7 @@ declare function init(config: AuthHeroConfig): {
8823
8866
  hint?: string | undefined;
8824
8867
  messages?: {
8825
8868
  text: string;
8826
- type: "error" | "success" | "info" | "warning";
8869
+ type: "success" | "error" | "info" | "warning";
8827
8870
  id?: number | undefined;
8828
8871
  }[] | undefined;
8829
8872
  required?: boolean | undefined;
@@ -8844,7 +8887,7 @@ declare function init(config: AuthHeroConfig): {
8844
8887
  hint?: string | undefined;
8845
8888
  messages?: {
8846
8889
  text: string;
8847
- type: "error" | "success" | "info" | "warning";
8890
+ type: "success" | "error" | "info" | "warning";
8848
8891
  id?: number | undefined;
8849
8892
  }[] | undefined;
8850
8893
  required?: boolean | undefined;
@@ -8865,7 +8908,7 @@ declare function init(config: AuthHeroConfig): {
8865
8908
  hint?: string | undefined;
8866
8909
  messages?: {
8867
8910
  text: string;
8868
- type: "error" | "success" | "info" | "warning";
8911
+ type: "success" | "error" | "info" | "warning";
8869
8912
  id?: number | undefined;
8870
8913
  }[] | undefined;
8871
8914
  required?: boolean | undefined;
@@ -9096,7 +9139,7 @@ declare function init(config: AuthHeroConfig): {
9096
9139
  hint?: string | undefined;
9097
9140
  messages?: {
9098
9141
  text: string;
9099
- type: "error" | "success" | "info" | "warning";
9142
+ type: "success" | "error" | "info" | "warning";
9100
9143
  id?: number | undefined;
9101
9144
  }[] | undefined;
9102
9145
  required?: boolean | undefined;
@@ -9114,7 +9157,7 @@ declare function init(config: AuthHeroConfig): {
9114
9157
  hint?: string | undefined;
9115
9158
  messages?: {
9116
9159
  text: string;
9117
- type: "error" | "success" | "info" | "warning";
9160
+ type: "success" | "error" | "info" | "warning";
9118
9161
  id?: number | undefined;
9119
9162
  }[] | undefined;
9120
9163
  required?: boolean | undefined;
@@ -9138,7 +9181,7 @@ declare function init(config: AuthHeroConfig): {
9138
9181
  hint?: string | undefined;
9139
9182
  messages?: {
9140
9183
  text: string;
9141
- type: "error" | "success" | "info" | "warning";
9184
+ type: "success" | "error" | "info" | "warning";
9142
9185
  id?: number | undefined;
9143
9186
  }[] | undefined;
9144
9187
  required?: boolean | undefined;
@@ -9162,7 +9205,7 @@ declare function init(config: AuthHeroConfig): {
9162
9205
  hint?: string | undefined;
9163
9206
  messages?: {
9164
9207
  text: string;
9165
- type: "error" | "success" | "info" | "warning";
9208
+ type: "success" | "error" | "info" | "warning";
9166
9209
  id?: number | undefined;
9167
9210
  }[] | undefined;
9168
9211
  required?: boolean | undefined;
@@ -9186,7 +9229,7 @@ declare function init(config: AuthHeroConfig): {
9186
9229
  hint?: string | undefined;
9187
9230
  messages?: {
9188
9231
  text: string;
9189
- type: "error" | "success" | "info" | "warning";
9232
+ type: "success" | "error" | "info" | "warning";
9190
9233
  id?: number | undefined;
9191
9234
  }[] | undefined;
9192
9235
  required?: boolean | undefined;
@@ -9215,7 +9258,7 @@ declare function init(config: AuthHeroConfig): {
9215
9258
  hint?: string | undefined;
9216
9259
  messages?: {
9217
9260
  text: string;
9218
- type: "error" | "success" | "info" | "warning";
9261
+ type: "success" | "error" | "info" | "warning";
9219
9262
  id?: number | undefined;
9220
9263
  }[] | undefined;
9221
9264
  required?: boolean | undefined;
@@ -9230,7 +9273,7 @@ declare function init(config: AuthHeroConfig): {
9230
9273
  hint?: string | undefined;
9231
9274
  messages?: {
9232
9275
  text: string;
9233
- type: "error" | "success" | "info" | "warning";
9276
+ type: "success" | "error" | "info" | "warning";
9234
9277
  id?: number | undefined;
9235
9278
  }[] | undefined;
9236
9279
  required?: boolean | undefined;
@@ -9251,7 +9294,7 @@ declare function init(config: AuthHeroConfig): {
9251
9294
  hint?: string | undefined;
9252
9295
  messages?: {
9253
9296
  text: string;
9254
- type: "error" | "success" | "info" | "warning";
9297
+ type: "success" | "error" | "info" | "warning";
9255
9298
  id?: number | undefined;
9256
9299
  }[] | undefined;
9257
9300
  required?: boolean | undefined;
@@ -9276,7 +9319,7 @@ declare function init(config: AuthHeroConfig): {
9276
9319
  hint?: string | undefined;
9277
9320
  messages?: {
9278
9321
  text: string;
9279
- type: "error" | "success" | "info" | "warning";
9322
+ type: "success" | "error" | "info" | "warning";
9280
9323
  id?: number | undefined;
9281
9324
  }[] | undefined;
9282
9325
  required?: boolean | undefined;
@@ -9295,7 +9338,7 @@ declare function init(config: AuthHeroConfig): {
9295
9338
  hint?: string | undefined;
9296
9339
  messages?: {
9297
9340
  text: string;
9298
- type: "error" | "success" | "info" | "warning";
9341
+ type: "success" | "error" | "info" | "warning";
9299
9342
  id?: number | undefined;
9300
9343
  }[] | undefined;
9301
9344
  required?: boolean | undefined;
@@ -9315,7 +9358,7 @@ declare function init(config: AuthHeroConfig): {
9315
9358
  hint?: string | undefined;
9316
9359
  messages?: {
9317
9360
  text: string;
9318
- type: "error" | "success" | "info" | "warning";
9361
+ type: "success" | "error" | "info" | "warning";
9319
9362
  id?: number | undefined;
9320
9363
  }[] | undefined;
9321
9364
  required?: boolean | undefined;
@@ -9334,7 +9377,7 @@ declare function init(config: AuthHeroConfig): {
9334
9377
  hint?: string | undefined;
9335
9378
  messages?: {
9336
9379
  text: string;
9337
- type: "error" | "success" | "info" | "warning";
9380
+ type: "success" | "error" | "info" | "warning";
9338
9381
  id?: number | undefined;
9339
9382
  }[] | undefined;
9340
9383
  required?: boolean | undefined;
@@ -9356,7 +9399,7 @@ declare function init(config: AuthHeroConfig): {
9356
9399
  hint?: string | undefined;
9357
9400
  messages?: {
9358
9401
  text: string;
9359
- type: "error" | "success" | "info" | "warning";
9402
+ type: "success" | "error" | "info" | "warning";
9360
9403
  id?: number | undefined;
9361
9404
  }[] | undefined;
9362
9405
  required?: boolean | undefined;
@@ -9378,7 +9421,7 @@ declare function init(config: AuthHeroConfig): {
9378
9421
  hint?: string | undefined;
9379
9422
  messages?: {
9380
9423
  text: string;
9381
- type: "error" | "success" | "info" | "warning";
9424
+ type: "success" | "error" | "info" | "warning";
9382
9425
  id?: number | undefined;
9383
9426
  }[] | undefined;
9384
9427
  required?: boolean | undefined;
@@ -9397,7 +9440,7 @@ declare function init(config: AuthHeroConfig): {
9397
9440
  hint?: string | undefined;
9398
9441
  messages?: {
9399
9442
  text: string;
9400
- type: "error" | "success" | "info" | "warning";
9443
+ type: "success" | "error" | "info" | "warning";
9401
9444
  id?: number | undefined;
9402
9445
  }[] | undefined;
9403
9446
  required?: boolean | undefined;
@@ -9422,7 +9465,7 @@ declare function init(config: AuthHeroConfig): {
9422
9465
  hint?: string | undefined;
9423
9466
  messages?: {
9424
9467
  text: string;
9425
- type: "error" | "success" | "info" | "warning";
9468
+ type: "success" | "error" | "info" | "warning";
9426
9469
  id?: number | undefined;
9427
9470
  }[] | undefined;
9428
9471
  required?: boolean | undefined;
@@ -9443,7 +9486,7 @@ declare function init(config: AuthHeroConfig): {
9443
9486
  hint?: string | undefined;
9444
9487
  messages?: {
9445
9488
  text: string;
9446
- type: "error" | "success" | "info" | "warning";
9489
+ type: "success" | "error" | "info" | "warning";
9447
9490
  id?: number | undefined;
9448
9491
  }[] | undefined;
9449
9492
  required?: boolean | undefined;
@@ -9464,7 +9507,7 @@ declare function init(config: AuthHeroConfig): {
9464
9507
  hint?: string | undefined;
9465
9508
  messages?: {
9466
9509
  text: string;
9467
- type: "error" | "success" | "info" | "warning";
9510
+ type: "success" | "error" | "info" | "warning";
9468
9511
  id?: number | undefined;
9469
9512
  }[] | undefined;
9470
9513
  required?: boolean | undefined;
@@ -9694,7 +9737,7 @@ declare function init(config: AuthHeroConfig): {
9694
9737
  };
9695
9738
  };
9696
9739
  output: {
9697
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9740
+ prompt: "common" | "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9698
9741
  language: string;
9699
9742
  }[];
9700
9743
  outputFormat: "json";
@@ -9732,7 +9775,7 @@ declare function init(config: AuthHeroConfig): {
9732
9775
  $get: {
9733
9776
  input: {
9734
9777
  param: {
9735
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9778
+ prompt: "common" | "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9736
9779
  language: string;
9737
9780
  };
9738
9781
  } & {
@@ -9754,7 +9797,7 @@ declare function init(config: AuthHeroConfig): {
9754
9797
  $put: {
9755
9798
  input: {
9756
9799
  param: {
9757
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9800
+ prompt: "common" | "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9758
9801
  language: string;
9759
9802
  };
9760
9803
  } & {
@@ -9778,7 +9821,7 @@ declare function init(config: AuthHeroConfig): {
9778
9821
  $delete: {
9779
9822
  input: {
9780
9823
  param: {
9781
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9824
+ prompt: "common" | "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9782
9825
  language: string;
9783
9826
  };
9784
9827
  } & {
@@ -9917,7 +9960,7 @@ declare function init(config: AuthHeroConfig): {
9917
9960
  } | undefined;
9918
9961
  } | undefined;
9919
9962
  passkey_options?: {
9920
- challenge_ui?: "both" | "autofill" | "button" | undefined;
9963
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
9921
9964
  local_enrollment_enabled?: boolean | undefined;
9922
9965
  progressive_enrollment_enabled?: boolean | undefined;
9923
9966
  } | undefined;
@@ -10051,7 +10094,7 @@ declare function init(config: AuthHeroConfig): {
10051
10094
  } | undefined;
10052
10095
  } | undefined;
10053
10096
  passkey_options?: {
10054
- challenge_ui?: "both" | "autofill" | "button" | undefined;
10097
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
10055
10098
  local_enrollment_enabled?: boolean | undefined;
10056
10099
  progressive_enrollment_enabled?: boolean | undefined;
10057
10100
  } | undefined;
@@ -10200,7 +10243,7 @@ declare function init(config: AuthHeroConfig): {
10200
10243
  } | undefined;
10201
10244
  } | undefined;
10202
10245
  passkey_options?: {
10203
- challenge_ui?: "both" | "autofill" | "button" | undefined;
10246
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
10204
10247
  local_enrollment_enabled?: boolean | undefined;
10205
10248
  progressive_enrollment_enabled?: boolean | undefined;
10206
10249
  } | undefined;
@@ -10379,7 +10422,7 @@ declare function init(config: AuthHeroConfig): {
10379
10422
  } | undefined;
10380
10423
  } | undefined;
10381
10424
  passkey_options?: {
10382
- challenge_ui?: "both" | "autofill" | "button" | undefined;
10425
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
10383
10426
  local_enrollment_enabled?: boolean | undefined;
10384
10427
  progressive_enrollment_enabled?: boolean | undefined;
10385
10428
  } | undefined;
@@ -10537,7 +10580,7 @@ declare function init(config: AuthHeroConfig): {
10537
10580
  } | undefined;
10538
10581
  } | undefined;
10539
10582
  passkey_options?: {
10540
- challenge_ui?: "both" | "autofill" | "button" | undefined;
10583
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
10541
10584
  local_enrollment_enabled?: boolean | undefined;
10542
10585
  progressive_enrollment_enabled?: boolean | undefined;
10543
10586
  } | undefined;
@@ -10640,7 +10683,7 @@ declare function init(config: AuthHeroConfig): {
10640
10683
  };
10641
10684
  } | {
10642
10685
  mode: "inline";
10643
- status: "error" | "success";
10686
+ status: "success" | "error";
10644
10687
  connection_id: string;
10645
10688
  connection_name: string;
10646
10689
  strategy: string;
@@ -11279,7 +11322,7 @@ declare function init(config: AuthHeroConfig): {
11279
11322
  log_type: string;
11280
11323
  category: "user_action" | "admin_action" | "system" | "api";
11281
11324
  actor: {
11282
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
11325
+ type: "user" | "client_credentials" | "api_key" | "system" | "admin";
11283
11326
  id?: string | undefined;
11284
11327
  email?: string | undefined;
11285
11328
  org_id?: string | undefined;
@@ -11587,7 +11630,7 @@ declare function init(config: AuthHeroConfig): {
11587
11630
  created_at: string;
11588
11631
  updated_at: string;
11589
11632
  name: string;
11590
- provider: "auth0" | "oidc" | "okta" | "cognito";
11633
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11591
11634
  connection: string;
11592
11635
  enabled: boolean;
11593
11636
  credentials: {
@@ -11619,7 +11662,7 @@ declare function init(config: AuthHeroConfig): {
11619
11662
  created_at: string;
11620
11663
  updated_at: string;
11621
11664
  name: string;
11622
- provider: "auth0" | "oidc" | "okta" | "cognito";
11665
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11623
11666
  connection: string;
11624
11667
  enabled: boolean;
11625
11668
  credentials: {
@@ -11645,7 +11688,7 @@ declare function init(config: AuthHeroConfig): {
11645
11688
  } & {
11646
11689
  json: {
11647
11690
  name: string;
11648
- provider: "auth0" | "oidc" | "okta" | "cognito";
11691
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11649
11692
  connection: string;
11650
11693
  credentials: {
11651
11694
  domain: string;
@@ -11662,7 +11705,7 @@ declare function init(config: AuthHeroConfig): {
11662
11705
  created_at: string;
11663
11706
  updated_at: string;
11664
11707
  name: string;
11665
- provider: "auth0" | "oidc" | "okta" | "cognito";
11708
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11666
11709
  connection: string;
11667
11710
  enabled: boolean;
11668
11711
  credentials: {
@@ -11693,7 +11736,7 @@ declare function init(config: AuthHeroConfig): {
11693
11736
  json: {
11694
11737
  id?: string | undefined;
11695
11738
  name?: string | undefined;
11696
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
11739
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
11697
11740
  connection?: string | undefined;
11698
11741
  enabled?: boolean | undefined;
11699
11742
  credentials?: {
@@ -11709,7 +11752,7 @@ declare function init(config: AuthHeroConfig): {
11709
11752
  created_at: string;
11710
11753
  updated_at: string;
11711
11754
  name: string;
11712
- provider: "auth0" | "oidc" | "okta" | "cognito";
11755
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11713
11756
  connection: string;
11714
11757
  enabled: boolean;
11715
11758
  credentials: {
@@ -11927,7 +11970,7 @@ declare function init(config: AuthHeroConfig): {
11927
11970
  };
11928
11971
  };
11929
11972
  output: {
11930
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11973
+ type: "i" | "f" | "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" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11931
11974
  date: string;
11932
11975
  isMobile: boolean;
11933
11976
  log_id: string;
@@ -11966,7 +12009,7 @@ declare function init(config: AuthHeroConfig): {
11966
12009
  limit: number;
11967
12010
  length: number;
11968
12011
  logs: {
11969
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12012
+ type: "i" | "f" | "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" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11970
12013
  date: string;
11971
12014
  isMobile: boolean;
11972
12015
  log_id: string;
@@ -12020,7 +12063,7 @@ declare function init(config: AuthHeroConfig): {
12020
12063
  };
12021
12064
  };
12022
12065
  output: {
12023
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12066
+ type: "i" | "f" | "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" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12024
12067
  date: string;
12025
12068
  isMobile: boolean;
12026
12069
  log_id: string;
@@ -12408,7 +12451,7 @@ declare function init(config: AuthHeroConfig): {
12408
12451
  addons?: {
12409
12452
  [x: string]: any;
12410
12453
  } | undefined;
12411
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12454
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12412
12455
  client_metadata?: {
12413
12456
  [x: string]: string;
12414
12457
  } | undefined;
@@ -12504,7 +12547,7 @@ declare function init(config: AuthHeroConfig): {
12504
12547
  addons?: {
12505
12548
  [x: string]: any;
12506
12549
  } | undefined;
12507
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12550
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12508
12551
  client_metadata?: {
12509
12552
  [x: string]: string;
12510
12553
  } | undefined;
@@ -12615,7 +12658,7 @@ declare function init(config: AuthHeroConfig): {
12615
12658
  addons?: {
12616
12659
  [x: string]: any;
12617
12660
  } | undefined;
12618
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12661
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12619
12662
  client_metadata?: {
12620
12663
  [x: string]: string;
12621
12664
  } | undefined;
@@ -12725,7 +12768,7 @@ declare function init(config: AuthHeroConfig): {
12725
12768
  custom_login_page_preview?: string | undefined;
12726
12769
  form_template?: string | undefined;
12727
12770
  addons?: Record<string, any> | undefined;
12728
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12771
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12729
12772
  client_metadata?: Record<string, string> | undefined;
12730
12773
  hide_sign_up_disabled_error?: boolean | undefined;
12731
12774
  mobile?: Record<string, any> | undefined;
@@ -12805,7 +12848,7 @@ declare function init(config: AuthHeroConfig): {
12805
12848
  addons?: {
12806
12849
  [x: string]: any;
12807
12850
  } | undefined;
12808
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12851
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12809
12852
  client_metadata?: {
12810
12853
  [x: string]: string;
12811
12854
  } | undefined;
@@ -12894,7 +12937,7 @@ declare function init(config: AuthHeroConfig): {
12894
12937
  custom_login_page_preview?: string | undefined;
12895
12938
  form_template?: string | undefined;
12896
12939
  addons?: Record<string, any> | undefined;
12897
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12940
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12898
12941
  client_metadata?: Record<string, string> | undefined;
12899
12942
  hide_sign_up_disabled_error?: boolean | undefined;
12900
12943
  mobile?: Record<string, any> | undefined;
@@ -12974,7 +13017,7 @@ declare function init(config: AuthHeroConfig): {
12974
13017
  addons?: {
12975
13018
  [x: string]: any;
12976
13019
  } | undefined;
12977
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13020
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12978
13021
  client_metadata?: {
12979
13022
  [x: string]: string;
12980
13023
  } | undefined;
@@ -13143,7 +13186,7 @@ declare function init(config: AuthHeroConfig): {
13143
13186
  } | undefined;
13144
13187
  } | undefined;
13145
13188
  passkey_options?: {
13146
- challenge_ui?: "both" | "autofill" | "button" | undefined;
13189
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
13147
13190
  local_enrollment_enabled?: boolean | undefined;
13148
13191
  progressive_enrollment_enabled?: boolean | undefined;
13149
13192
  } | undefined;
@@ -13297,7 +13340,7 @@ declare function init(config: AuthHeroConfig): {
13297
13340
  } | undefined;
13298
13341
  } | undefined;
13299
13342
  passkey_options?: {
13300
- challenge_ui?: "both" | "autofill" | "button" | undefined;
13343
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
13301
13344
  local_enrollment_enabled?: boolean | undefined;
13302
13345
  progressive_enrollment_enabled?: boolean | undefined;
13303
13346
  } | undefined;
@@ -14238,7 +14281,7 @@ declare function init(config: AuthHeroConfig): {
14238
14281
  };
14239
14282
  };
14240
14283
  output: {
14241
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14284
+ type: "i" | "f" | "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" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14242
14285
  date: string;
14243
14286
  isMobile: boolean;
14244
14287
  log_id: string;
@@ -14277,7 +14320,7 @@ declare function init(config: AuthHeroConfig): {
14277
14320
  limit: number;
14278
14321
  length: number;
14279
14322
  logs: {
14280
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14323
+ type: "i" | "f" | "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" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14281
14324
  date: string;
14282
14325
  isMobile: boolean;
14283
14326
  log_id: string;
@@ -14592,7 +14635,7 @@ declare function init(config: AuthHeroConfig): {
14592
14635
  };
14593
14636
  } & {
14594
14637
  json: {
14595
- 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";
14638
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14596
14639
  body: string;
14597
14640
  from: string;
14598
14641
  subject: string;
@@ -14613,7 +14656,7 @@ declare function init(config: AuthHeroConfig): {
14613
14656
  };
14614
14657
  } & {
14615
14658
  json: {
14616
- 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";
14659
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14617
14660
  body: string;
14618
14661
  from: string;
14619
14662
  subject: string;
@@ -14625,7 +14668,7 @@ declare function init(config: AuthHeroConfig): {
14625
14668
  };
14626
14669
  };
14627
14670
  output: {
14628
- 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";
14671
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14629
14672
  body: string;
14630
14673
  from: string;
14631
14674
  subject: string;
@@ -14648,7 +14691,7 @@ declare function init(config: AuthHeroConfig): {
14648
14691
  };
14649
14692
  };
14650
14693
  output: {
14651
- 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";
14694
+ name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14652
14695
  body: string;
14653
14696
  subject: string;
14654
14697
  }[];
@@ -14661,7 +14704,7 @@ declare function init(config: AuthHeroConfig): {
14661
14704
  $get: {
14662
14705
  input: {
14663
14706
  param: {
14664
- 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";
14707
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14665
14708
  };
14666
14709
  } & {
14667
14710
  header: {
@@ -14674,7 +14717,7 @@ declare function init(config: AuthHeroConfig): {
14674
14717
  } | {
14675
14718
  input: {
14676
14719
  param: {
14677
- 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";
14720
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14678
14721
  };
14679
14722
  } & {
14680
14723
  header: {
@@ -14682,7 +14725,7 @@ declare function init(config: AuthHeroConfig): {
14682
14725
  };
14683
14726
  };
14684
14727
  output: {
14685
- 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";
14728
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14686
14729
  body: string;
14687
14730
  from: string;
14688
14731
  subject: string;
@@ -14701,7 +14744,7 @@ declare function init(config: AuthHeroConfig): {
14701
14744
  $put: {
14702
14745
  input: {
14703
14746
  param: {
14704
- 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";
14747
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14705
14748
  };
14706
14749
  } & {
14707
14750
  header: {
@@ -14709,7 +14752,7 @@ declare function init(config: AuthHeroConfig): {
14709
14752
  };
14710
14753
  } & {
14711
14754
  json: {
14712
- 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";
14755
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14713
14756
  body: string;
14714
14757
  subject: string;
14715
14758
  syntax?: "liquid" | undefined;
@@ -14721,7 +14764,7 @@ declare function init(config: AuthHeroConfig): {
14721
14764
  };
14722
14765
  };
14723
14766
  output: {
14724
- 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";
14767
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14725
14768
  body: string;
14726
14769
  from: string;
14727
14770
  subject: string;
@@ -14740,7 +14783,7 @@ declare function init(config: AuthHeroConfig): {
14740
14783
  $patch: {
14741
14784
  input: {
14742
14785
  param: {
14743
- 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";
14786
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14744
14787
  };
14745
14788
  } & {
14746
14789
  header: {
@@ -14748,7 +14791,7 @@ declare function init(config: AuthHeroConfig): {
14748
14791
  };
14749
14792
  } & {
14750
14793
  json: {
14751
- 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;
14794
+ template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14752
14795
  body?: string | undefined;
14753
14796
  from?: string | undefined;
14754
14797
  subject?: string | undefined;
@@ -14765,7 +14808,7 @@ declare function init(config: AuthHeroConfig): {
14765
14808
  } | {
14766
14809
  input: {
14767
14810
  param: {
14768
- 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";
14811
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14769
14812
  };
14770
14813
  } & {
14771
14814
  header: {
@@ -14773,7 +14816,7 @@ declare function init(config: AuthHeroConfig): {
14773
14816
  };
14774
14817
  } & {
14775
14818
  json: {
14776
- 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;
14819
+ template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14777
14820
  body?: string | undefined;
14778
14821
  from?: string | undefined;
14779
14822
  subject?: string | undefined;
@@ -14785,7 +14828,7 @@ declare function init(config: AuthHeroConfig): {
14785
14828
  };
14786
14829
  };
14787
14830
  output: {
14788
- 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";
14831
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14789
14832
  body: string;
14790
14833
  from: string;
14791
14834
  subject: string;
@@ -14804,7 +14847,7 @@ declare function init(config: AuthHeroConfig): {
14804
14847
  $delete: {
14805
14848
  input: {
14806
14849
  param: {
14807
- 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";
14850
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14808
14851
  };
14809
14852
  } & {
14810
14853
  header: {
@@ -14817,7 +14860,7 @@ declare function init(config: AuthHeroConfig): {
14817
14860
  } | {
14818
14861
  input: {
14819
14862
  param: {
14820
- 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";
14863
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14821
14864
  };
14822
14865
  } & {
14823
14866
  header: {
@@ -14834,7 +14877,7 @@ declare function init(config: AuthHeroConfig): {
14834
14877
  $post: {
14835
14878
  input: {
14836
14879
  param: {
14837
- 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";
14880
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14838
14881
  };
14839
14882
  } & {
14840
14883
  header: {
@@ -15404,7 +15447,7 @@ declare function init(config: AuthHeroConfig): {
15404
15447
  base_focus_color: string;
15405
15448
  base_hover_color: string;
15406
15449
  body_text: string;
15407
- captcha_widget_theme: "dark" | "light" | "auto";
15450
+ captcha_widget_theme: "auto" | "light" | "dark";
15408
15451
  error: string;
15409
15452
  header: string;
15410
15453
  icons: string;
@@ -15455,7 +15498,7 @@ declare function init(config: AuthHeroConfig): {
15455
15498
  background_color: string;
15456
15499
  background_image_url: string;
15457
15500
  page_layout: "center" | "left" | "right";
15458
- logo_placement?: "none" | "widget" | "chip" | undefined;
15501
+ logo_placement?: "widget" | "chip" | "none" | undefined;
15459
15502
  };
15460
15503
  widget: {
15461
15504
  header_text_alignment: "center" | "left" | "right";
@@ -15494,7 +15537,7 @@ declare function init(config: AuthHeroConfig): {
15494
15537
  base_focus_color: string;
15495
15538
  base_hover_color: string;
15496
15539
  body_text: string;
15497
- captcha_widget_theme: "dark" | "light" | "auto";
15540
+ captcha_widget_theme: "auto" | "light" | "dark";
15498
15541
  error: string;
15499
15542
  header: string;
15500
15543
  icons: string;
@@ -15545,7 +15588,7 @@ declare function init(config: AuthHeroConfig): {
15545
15588
  background_color: string;
15546
15589
  background_image_url: string;
15547
15590
  page_layout: "center" | "left" | "right";
15548
- logo_placement?: "none" | "widget" | "chip" | undefined;
15591
+ logo_placement?: "widget" | "chip" | "none" | undefined;
15549
15592
  };
15550
15593
  widget: {
15551
15594
  header_text_alignment: "center" | "left" | "right";
@@ -15573,7 +15616,7 @@ declare function init(config: AuthHeroConfig): {
15573
15616
  base_focus_color: string;
15574
15617
  base_hover_color: string;
15575
15618
  body_text: string;
15576
- captcha_widget_theme: "dark" | "light" | "auto";
15619
+ captcha_widget_theme: "auto" | "light" | "dark";
15577
15620
  error: string;
15578
15621
  header: string;
15579
15622
  icons: string;
@@ -15624,7 +15667,7 @@ declare function init(config: AuthHeroConfig): {
15624
15667
  background_color: string;
15625
15668
  background_image_url: string;
15626
15669
  page_layout: "center" | "left" | "right";
15627
- logo_placement?: "none" | "widget" | "chip" | undefined;
15670
+ logo_placement?: "widget" | "chip" | "none" | undefined;
15628
15671
  };
15629
15672
  widget: {
15630
15673
  header_text_alignment: "center" | "left" | "right";
@@ -15663,7 +15706,7 @@ declare function init(config: AuthHeroConfig): {
15663
15706
  font?: {
15664
15707
  url: string;
15665
15708
  } | undefined;
15666
- dark_mode?: "dark" | "light" | "auto" | undefined;
15709
+ dark_mode?: "auto" | "light" | "dark" | undefined;
15667
15710
  };
15668
15711
  outputFormat: "json";
15669
15712
  status: 200;
@@ -15693,7 +15736,7 @@ declare function init(config: AuthHeroConfig): {
15693
15736
  font?: {
15694
15737
  url: string;
15695
15738
  } | undefined;
15696
- dark_mode?: "dark" | "light" | "auto" | undefined;
15739
+ dark_mode?: "auto" | "light" | "dark" | undefined;
15697
15740
  };
15698
15741
  };
15699
15742
  output: {
@@ -15712,7 +15755,7 @@ declare function init(config: AuthHeroConfig): {
15712
15755
  font?: {
15713
15756
  url: string;
15714
15757
  } | undefined;
15715
- dark_mode?: "dark" | "light" | "auto" | undefined;
15758
+ dark_mode?: "auto" | "light" | "dark" | undefined;
15716
15759
  };
15717
15760
  outputFormat: "json";
15718
15761
  status: 200;
@@ -15803,7 +15846,7 @@ declare function init(config: AuthHeroConfig): {
15803
15846
  font?: {
15804
15847
  url: string;
15805
15848
  } | undefined;
15806
- dark_mode?: "dark" | "light" | "auto" | undefined;
15849
+ dark_mode?: "auto" | "light" | "dark" | undefined;
15807
15850
  } | undefined;
15808
15851
  theme?: {
15809
15852
  borders?: {
@@ -15821,7 +15864,7 @@ declare function init(config: AuthHeroConfig): {
15821
15864
  base_focus_color: string;
15822
15865
  base_hover_color: string;
15823
15866
  body_text: string;
15824
- captcha_widget_theme: "dark" | "light" | "auto";
15867
+ captcha_widget_theme: "auto" | "light" | "dark";
15825
15868
  error: string;
15826
15869
  header: string;
15827
15870
  icons: string;
@@ -15872,7 +15915,7 @@ declare function init(config: AuthHeroConfig): {
15872
15915
  background_color: string;
15873
15916
  background_image_url: string;
15874
15917
  page_layout: "center" | "left" | "right";
15875
- logo_placement?: "none" | "widget" | "chip" | undefined;
15918
+ logo_placement?: "widget" | "chip" | "none" | undefined;
15876
15919
  } | undefined;
15877
15920
  widget?: {
15878
15921
  header_text_alignment: "center" | "left" | "right";
@@ -16030,7 +16073,7 @@ declare function init(config: AuthHeroConfig): {
16030
16073
  output: {
16031
16074
  id: string;
16032
16075
  trigger_id: string;
16033
- status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
16076
+ status: "pending" | "suspended" | "unspecified" | "final" | "partial" | "canceled";
16034
16077
  results: {
16035
16078
  action_name: string;
16036
16079
  error: {
@@ -17042,7 +17085,7 @@ declare function init(config: AuthHeroConfig): {
17042
17085
  scope?: string | undefined;
17043
17086
  grant_types?: string[] | undefined;
17044
17087
  response_types?: string[] | undefined;
17045
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
17088
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
17046
17089
  jwks_uri?: string | undefined;
17047
17090
  jwks?: Record<string, unknown> | undefined;
17048
17091
  software_id?: string | undefined;
@@ -17131,7 +17174,7 @@ declare function init(config: AuthHeroConfig): {
17131
17174
  scope?: string | undefined;
17132
17175
  grant_types?: string[] | undefined;
17133
17176
  response_types?: string[] | undefined;
17134
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
17177
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
17135
17178
  jwks_uri?: string | undefined;
17136
17179
  jwks?: Record<string, unknown> | undefined;
17137
17180
  software_id?: string | undefined;
@@ -17477,16 +17520,16 @@ declare function init(config: AuthHeroConfig): {
17477
17520
  email: string;
17478
17521
  send: "code" | "link";
17479
17522
  authParams: {
17480
- username?: string | undefined;
17481
17523
  state?: string | undefined;
17482
- audience?: string | undefined;
17524
+ username?: string | undefined;
17525
+ act_as?: string | undefined;
17483
17526
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17484
17527
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17485
- scope?: string | undefined;
17528
+ redirect_uri?: string | undefined;
17529
+ audience?: string | undefined;
17486
17530
  organization?: string | undefined;
17487
17531
  nonce?: string | undefined;
17488
- redirect_uri?: string | undefined;
17489
- act_as?: string | undefined;
17532
+ scope?: string | undefined;
17490
17533
  prompt?: string | undefined;
17491
17534
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17492
17535
  code_challenge?: string | undefined;
@@ -17513,16 +17556,16 @@ declare function init(config: AuthHeroConfig): {
17513
17556
  phone_number: string;
17514
17557
  send: "code" | "link";
17515
17558
  authParams: {
17516
- username?: string | undefined;
17517
17559
  state?: string | undefined;
17518
- audience?: string | undefined;
17560
+ username?: string | undefined;
17561
+ act_as?: string | undefined;
17519
17562
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17520
17563
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17521
- scope?: string | undefined;
17564
+ redirect_uri?: string | undefined;
17565
+ audience?: string | undefined;
17522
17566
  organization?: string | undefined;
17523
17567
  nonce?: string | undefined;
17524
- redirect_uri?: string | undefined;
17525
- act_as?: string | undefined;
17568
+ scope?: string | undefined;
17526
17569
  prompt?: string | undefined;
17527
17570
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17528
17571
  code_challenge?: string | undefined;
@@ -17657,14 +17700,14 @@ declare function init(config: AuthHeroConfig): {
17657
17700
  input: {
17658
17701
  form: {
17659
17702
  token: string;
17660
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17703
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17661
17704
  client_id?: string | undefined;
17662
17705
  client_secret?: string | undefined;
17663
17706
  };
17664
17707
  } & {
17665
17708
  json: {
17666
17709
  token: string;
17667
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17710
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17668
17711
  client_id?: string | undefined;
17669
17712
  client_secret?: string | undefined;
17670
17713
  };
@@ -17676,14 +17719,14 @@ declare function init(config: AuthHeroConfig): {
17676
17719
  input: {
17677
17720
  form: {
17678
17721
  token: string;
17679
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17722
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17680
17723
  client_id?: string | undefined;
17681
17724
  client_secret?: string | undefined;
17682
17725
  };
17683
17726
  } & {
17684
17727
  json: {
17685
17728
  token: string;
17686
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17729
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17687
17730
  client_id?: string | undefined;
17688
17731
  client_secret?: string | undefined;
17689
17732
  };
@@ -17698,14 +17741,14 @@ declare function init(config: AuthHeroConfig): {
17698
17741
  input: {
17699
17742
  form: {
17700
17743
  token: string;
17701
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17744
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17702
17745
  client_id?: string | undefined;
17703
17746
  client_secret?: string | undefined;
17704
17747
  };
17705
17748
  } & {
17706
17749
  json: {
17707
17750
  token: string;
17708
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17751
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17709
17752
  client_id?: string | undefined;
17710
17753
  client_secret?: string | undefined;
17711
17754
  };
@@ -17755,7 +17798,7 @@ declare function init(config: AuthHeroConfig): {
17755
17798
  client_id: string;
17756
17799
  username: string;
17757
17800
  otp: string;
17758
- realm: "sms" | "email";
17801
+ realm: "email" | "sms";
17759
17802
  } | {
17760
17803
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17761
17804
  subject_token: string;
@@ -17802,7 +17845,7 @@ declare function init(config: AuthHeroConfig): {
17802
17845
  client_id: string;
17803
17846
  username: string;
17804
17847
  otp: string;
17805
- realm: "sms" | "email";
17848
+ realm: "email" | "sms";
17806
17849
  } | {
17807
17850
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17808
17851
  subject_token: string;
@@ -17854,7 +17897,7 @@ declare function init(config: AuthHeroConfig): {
17854
17897
  client_id: string;
17855
17898
  username: string;
17856
17899
  otp: string;
17857
- realm: "sms" | "email";
17900
+ realm: "email" | "sms";
17858
17901
  } | {
17859
17902
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17860
17903
  subject_token: string;
@@ -17901,7 +17944,7 @@ declare function init(config: AuthHeroConfig): {
17901
17944
  client_id: string;
17902
17945
  username: string;
17903
17946
  otp: string;
17904
- realm: "sms" | "email";
17947
+ realm: "email" | "sms";
17905
17948
  } | {
17906
17949
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17907
17950
  subject_token: string;
@@ -17961,7 +18004,7 @@ declare function init(config: AuthHeroConfig): {
17961
18004
  client_id: string;
17962
18005
  username: string;
17963
18006
  otp: string;
17964
- realm: "sms" | "email";
18007
+ realm: "email" | "sms";
17965
18008
  } | {
17966
18009
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17967
18010
  subject_token: string;
@@ -18008,7 +18051,7 @@ declare function init(config: AuthHeroConfig): {
18008
18051
  client_id: string;
18009
18052
  username: string;
18010
18053
  otp: string;
18011
- realm: "sms" | "email";
18054
+ realm: "email" | "sms";
18012
18055
  } | {
18013
18056
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18014
18057
  subject_token: string;
@@ -18063,7 +18106,7 @@ declare function init(config: AuthHeroConfig): {
18063
18106
  client_id: string;
18064
18107
  username: string;
18065
18108
  otp: string;
18066
- realm: "sms" | "email";
18109
+ realm: "email" | "sms";
18067
18110
  } | {
18068
18111
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18069
18112
  subject_token: string;
@@ -18110,7 +18153,7 @@ declare function init(config: AuthHeroConfig): {
18110
18153
  client_id: string;
18111
18154
  username: string;
18112
18155
  otp: string;
18113
- realm: "sms" | "email";
18156
+ realm: "email" | "sms";
18114
18157
  } | {
18115
18158
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18116
18159
  subject_token: string;
@@ -18165,7 +18208,7 @@ declare function init(config: AuthHeroConfig): {
18165
18208
  client_id: string;
18166
18209
  username: string;
18167
18210
  otp: string;
18168
- realm: "sms" | "email";
18211
+ realm: "email" | "sms";
18169
18212
  } | {
18170
18213
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18171
18214
  subject_token: string;
@@ -18212,7 +18255,7 @@ declare function init(config: AuthHeroConfig): {
18212
18255
  client_id: string;
18213
18256
  username: string;
18214
18257
  otp: string;
18215
- realm: "sms" | "email";
18258
+ realm: "email" | "sms";
18216
18259
  } | {
18217
18260
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18218
18261
  subject_token: string;
@@ -19432,7 +19475,7 @@ declare function init(config: AuthHeroConfig): {
19432
19475
  $get: {
19433
19476
  input: {
19434
19477
  param: {
19435
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19478
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19436
19479
  };
19437
19480
  } & {
19438
19481
  query: {
@@ -19448,7 +19491,7 @@ declare function init(config: AuthHeroConfig): {
19448
19491
  } | {
19449
19492
  input: {
19450
19493
  param: {
19451
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19494
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19452
19495
  };
19453
19496
  } & {
19454
19497
  query: {
@@ -19464,7 +19507,7 @@ declare function init(config: AuthHeroConfig): {
19464
19507
  } | {
19465
19508
  input: {
19466
19509
  param: {
19467
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19510
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19468
19511
  };
19469
19512
  } & {
19470
19513
  query: {
@@ -19484,7 +19527,7 @@ declare function init(config: AuthHeroConfig): {
19484
19527
  $post: {
19485
19528
  input: {
19486
19529
  param: {
19487
- screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19530
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19488
19531
  };
19489
19532
  } & {
19490
19533
  query: {
@@ -19502,7 +19545,7 @@ declare function init(config: AuthHeroConfig): {
19502
19545
  } | {
19503
19546
  input: {
19504
19547
  param: {
19505
- screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19548
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19506
19549
  };
19507
19550
  } & {
19508
19551
  query: {