authhero 8.22.1 → 8.23.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 (46) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +106 -106
  3. package/dist/authhero.d.ts +394 -279
  4. package/dist/authhero.mjs +9736 -9566
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +14 -6
  7. package/dist/types/helpers/backchannel-logout.d.ts +19 -0
  8. package/dist/types/helpers/client.d.ts +10 -1
  9. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  10. package/dist/types/index.d.ts +384 -278
  11. package/dist/types/routes/auth-api/account.d.ts +2 -2
  12. package/dist/types/routes/auth-api/authorize.d.ts +14 -14
  13. package/dist/types/routes/auth-api/index.d.ts +48 -44
  14. package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
  15. package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
  16. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  17. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  18. package/dist/types/routes/auth-api/well-known.d.ts +6 -2
  19. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  20. package/dist/types/routes/management-api/actions.d.ts +1 -1
  21. package/dist/types/routes/management-api/branding.d.ts +1 -1
  22. package/dist/types/routes/management-api/clients.d.ts +76 -24
  23. package/dist/types/routes/management-api/connections.d.ts +21 -21
  24. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  25. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  26. package/dist/types/routes/management-api/flows.d.ts +7 -7
  27. package/dist/types/routes/management-api/forms.d.ts +126 -126
  28. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  29. package/dist/types/routes/management-api/index.d.ts +329 -227
  30. package/dist/types/routes/management-api/logs.d.ts +4 -4
  31. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  32. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  33. package/dist/types/routes/management-api/roles.d.ts +50 -0
  34. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  35. package/dist/types/routes/management-api/tenants.d.ts +6 -6
  36. package/dist/types/routes/management-api/users.d.ts +2 -2
  37. package/dist/types/routes/universal-login/common.d.ts +28 -12
  38. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  39. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  40. package/dist/types/routes/universal-login/index.d.ts +2 -2
  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/dist/types/utils/jwks.d.ts +4 -4
  45. package/dist/types/variables.d.ts +8 -0
  46. package/package.json +8 -8
@@ -121,7 +121,16 @@ declare const enrichedClientSchema: z.ZodObject<{
121
121
  allowed_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
122
122
  allowed_logout_urls: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
123
123
  session_transfer: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
124
- oidc_logout: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
124
+ oidc_logout: z.ZodOptional<z.ZodDefault<z.ZodObject<{
125
+ backchannel_logout_urls: z.ZodOptional<z.ZodArray<z.ZodString>>;
126
+ backchannel_logout_initiators: z.ZodOptional<z.ZodObject<{
127
+ mode: z.ZodOptional<z.ZodEnum<{
128
+ custom: "custom";
129
+ all: "all";
130
+ }>>;
131
+ selected_initiators: z.ZodOptional<z.ZodArray<z.ZodString>>;
132
+ }, z.core.$loose>>;
133
+ }, z.core.$loose>>>;
125
134
  grant_types: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
126
135
  jwt_configuration: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
127
136
  signing_keys: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>>>>;
@@ -3305,8 +3314,8 @@ declare function init(config: AuthHeroConfig): {
3305
3314
  $get: {
3306
3315
  input: {
3307
3316
  query: {
3308
- include_password_hashes?: "true" | "false" | undefined;
3309
- gzip?: "true" | "false" | undefined;
3317
+ include_password_hashes?: "false" | "true" | undefined;
3318
+ gzip?: "false" | "true" | undefined;
3310
3319
  };
3311
3320
  } & {
3312
3321
  header: {
@@ -3319,8 +3328,8 @@ declare function init(config: AuthHeroConfig): {
3319
3328
  } | {
3320
3329
  input: {
3321
3330
  query: {
3322
- include_password_hashes?: "true" | "false" | undefined;
3323
- gzip?: "true" | "false" | undefined;
3331
+ include_password_hashes?: "false" | "true" | undefined;
3332
+ gzip?: "false" | "true" | undefined;
3324
3333
  };
3325
3334
  } & {
3326
3335
  header: {
@@ -3339,7 +3348,7 @@ declare function init(config: AuthHeroConfig): {
3339
3348
  $post: {
3340
3349
  input: {
3341
3350
  query: {
3342
- include_password_hashes?: "true" | "false" | undefined;
3351
+ include_password_hashes?: "false" | "true" | undefined;
3343
3352
  };
3344
3353
  } & {
3345
3354
  header: {
@@ -3533,7 +3542,7 @@ declare function init(config: AuthHeroConfig): {
3533
3542
  };
3534
3543
  };
3535
3544
  output: {
3536
- name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
3545
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3537
3546
  enabled: boolean;
3538
3547
  trial_expired?: boolean | undefined;
3539
3548
  }[];
@@ -3688,7 +3697,7 @@ declare function init(config: AuthHeroConfig): {
3688
3697
  $get: {
3689
3698
  input: {
3690
3699
  param: {
3691
- factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
3700
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3692
3701
  };
3693
3702
  } & {
3694
3703
  header: {
@@ -3696,7 +3705,7 @@ declare function init(config: AuthHeroConfig): {
3696
3705
  };
3697
3706
  };
3698
3707
  output: {
3699
- name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
3708
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3700
3709
  enabled: boolean;
3701
3710
  trial_expired?: boolean | undefined;
3702
3711
  };
@@ -3709,7 +3718,7 @@ declare function init(config: AuthHeroConfig): {
3709
3718
  $put: {
3710
3719
  input: {
3711
3720
  param: {
3712
- factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
3721
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3713
3722
  };
3714
3723
  } & {
3715
3724
  header: {
@@ -3721,7 +3730,7 @@ declare function init(config: AuthHeroConfig): {
3721
3730
  };
3722
3731
  };
3723
3732
  output: {
3724
- name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
3733
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3725
3734
  enabled: boolean;
3726
3735
  trial_expired?: boolean | undefined;
3727
3736
  };
@@ -4499,11 +4508,11 @@ declare function init(config: AuthHeroConfig): {
4499
4508
  invitee: {
4500
4509
  email?: string | undefined;
4501
4510
  };
4511
+ roles?: string[] | undefined;
4502
4512
  id?: string | undefined;
4503
- connection_id?: string | undefined;
4504
4513
  app_metadata?: Record<string, any> | undefined;
4505
4514
  user_metadata?: Record<string, any> | undefined;
4506
- roles?: string[] | undefined;
4515
+ connection_id?: string | undefined;
4507
4516
  ttl_sec?: number | undefined;
4508
4517
  send_invitation_email?: boolean | undefined;
4509
4518
  };
@@ -5251,6 +5260,56 @@ declare function init(config: AuthHeroConfig): {
5251
5260
  status: 200;
5252
5261
  };
5253
5262
  };
5263
+ } & {
5264
+ "/:id/users": {
5265
+ $get: {
5266
+ input: {
5267
+ param: {
5268
+ id: string;
5269
+ };
5270
+ } & {
5271
+ query: {
5272
+ page?: string | undefined;
5273
+ include_totals?: string | undefined;
5274
+ from?: string | undefined;
5275
+ per_page?: string | undefined;
5276
+ take?: string | undefined;
5277
+ };
5278
+ } & {
5279
+ header: {
5280
+ "tenant-id"?: string | undefined;
5281
+ };
5282
+ };
5283
+ output: {
5284
+ user_id: string;
5285
+ email?: string | undefined;
5286
+ name?: string | undefined;
5287
+ picture?: string | undefined;
5288
+ }[] | {
5289
+ start: number;
5290
+ limit: number;
5291
+ length: number;
5292
+ users: {
5293
+ user_id: string;
5294
+ email?: string | undefined;
5295
+ name?: string | undefined;
5296
+ picture?: string | undefined;
5297
+ }[];
5298
+ total?: number | undefined;
5299
+ next?: string | undefined;
5300
+ } | {
5301
+ users: {
5302
+ user_id: string;
5303
+ email?: string | undefined;
5304
+ name?: string | undefined;
5305
+ picture?: string | undefined;
5306
+ }[];
5307
+ next?: string | undefined;
5308
+ };
5309
+ outputFormat: "json";
5310
+ status: 200;
5311
+ };
5312
+ };
5254
5313
  } & {
5255
5314
  "/:id/permissions": {
5256
5315
  $post: {
@@ -5358,7 +5417,7 @@ declare function init(config: AuthHeroConfig): {
5358
5417
  type: "REDIRECT";
5359
5418
  action: "REDIRECT_USER";
5360
5419
  params: {
5361
- target: "custom" | "account" | "change-email";
5420
+ target: "custom" | "change-email" | "account";
5362
5421
  custom_url?: string | undefined;
5363
5422
  };
5364
5423
  alias?: string | undefined;
@@ -5411,7 +5470,7 @@ declare function init(config: AuthHeroConfig): {
5411
5470
  type: "REDIRECT";
5412
5471
  action: "REDIRECT_USER";
5413
5472
  params: {
5414
- target: "custom" | "account" | "change-email";
5473
+ target: "custom" | "change-email" | "account";
5415
5474
  custom_url?: string | undefined;
5416
5475
  };
5417
5476
  alias?: string | undefined;
@@ -5480,7 +5539,7 @@ declare function init(config: AuthHeroConfig): {
5480
5539
  type: "REDIRECT";
5481
5540
  action: "REDIRECT_USER";
5482
5541
  params: {
5483
- target: "custom" | "account" | "change-email";
5542
+ target: "custom" | "change-email" | "account";
5484
5543
  custom_url?: string | undefined;
5485
5544
  };
5486
5545
  alias?: string | undefined;
@@ -5561,7 +5620,7 @@ declare function init(config: AuthHeroConfig): {
5561
5620
  type: "REDIRECT";
5562
5621
  action: "REDIRECT_USER";
5563
5622
  params: {
5564
- target: "custom" | "account" | "change-email";
5623
+ target: "custom" | "change-email" | "account";
5565
5624
  custom_url?: string | undefined;
5566
5625
  };
5567
5626
  alias?: string | undefined;
@@ -5609,7 +5668,7 @@ declare function init(config: AuthHeroConfig): {
5609
5668
  type: "REDIRECT";
5610
5669
  action: "REDIRECT_USER";
5611
5670
  params: {
5612
- target: "custom" | "account" | "change-email";
5671
+ target: "custom" | "change-email" | "account";
5613
5672
  custom_url?: string | undefined;
5614
5673
  };
5615
5674
  alias?: string | undefined;
@@ -5669,7 +5728,7 @@ declare function init(config: AuthHeroConfig): {
5669
5728
  type: "REDIRECT";
5670
5729
  action: "REDIRECT_USER";
5671
5730
  params: {
5672
- target: "custom" | "account" | "change-email";
5731
+ target: "custom" | "change-email" | "account";
5673
5732
  custom_url?: string | undefined;
5674
5733
  };
5675
5734
  alias?: string | undefined;
@@ -5717,7 +5776,7 @@ declare function init(config: AuthHeroConfig): {
5717
5776
  type: "REDIRECT";
5718
5777
  action: "REDIRECT_USER";
5719
5778
  params: {
5720
- target: "custom" | "account" | "change-email";
5779
+ target: "custom" | "change-email" | "account";
5721
5780
  custom_url?: string | undefined;
5722
5781
  };
5723
5782
  alias?: string | undefined;
@@ -5935,7 +5994,7 @@ declare function init(config: AuthHeroConfig): {
5935
5994
  hint?: string | undefined;
5936
5995
  messages?: {
5937
5996
  text: string;
5938
- type: "success" | "error" | "info" | "warning";
5997
+ type: "error" | "success" | "info" | "warning";
5939
5998
  id?: number | undefined;
5940
5999
  }[] | undefined;
5941
6000
  required?: boolean | undefined;
@@ -5953,7 +6012,7 @@ declare function init(config: AuthHeroConfig): {
5953
6012
  hint?: string | undefined;
5954
6013
  messages?: {
5955
6014
  text: string;
5956
- type: "success" | "error" | "info" | "warning";
6015
+ type: "error" | "success" | "info" | "warning";
5957
6016
  id?: number | undefined;
5958
6017
  }[] | undefined;
5959
6018
  required?: boolean | undefined;
@@ -5977,7 +6036,7 @@ declare function init(config: AuthHeroConfig): {
5977
6036
  hint?: string | undefined;
5978
6037
  messages?: {
5979
6038
  text: string;
5980
- type: "success" | "error" | "info" | "warning";
6039
+ type: "error" | "success" | "info" | "warning";
5981
6040
  id?: number | undefined;
5982
6041
  }[] | undefined;
5983
6042
  required?: boolean | undefined;
@@ -6001,7 +6060,7 @@ declare function init(config: AuthHeroConfig): {
6001
6060
  hint?: string | undefined;
6002
6061
  messages?: {
6003
6062
  text: string;
6004
- type: "success" | "error" | "info" | "warning";
6063
+ type: "error" | "success" | "info" | "warning";
6005
6064
  id?: number | undefined;
6006
6065
  }[] | undefined;
6007
6066
  required?: boolean | undefined;
@@ -6025,7 +6084,7 @@ declare function init(config: AuthHeroConfig): {
6025
6084
  hint?: string | undefined;
6026
6085
  messages?: {
6027
6086
  text: string;
6028
- type: "success" | "error" | "info" | "warning";
6087
+ type: "error" | "success" | "info" | "warning";
6029
6088
  id?: number | undefined;
6030
6089
  }[] | undefined;
6031
6090
  required?: boolean | undefined;
@@ -6054,7 +6113,7 @@ declare function init(config: AuthHeroConfig): {
6054
6113
  hint?: string | undefined;
6055
6114
  messages?: {
6056
6115
  text: string;
6057
- type: "success" | "error" | "info" | "warning";
6116
+ type: "error" | "success" | "info" | "warning";
6058
6117
  id?: number | undefined;
6059
6118
  }[] | undefined;
6060
6119
  required?: boolean | undefined;
@@ -6069,7 +6128,7 @@ declare function init(config: AuthHeroConfig): {
6069
6128
  hint?: string | undefined;
6070
6129
  messages?: {
6071
6130
  text: string;
6072
- type: "success" | "error" | "info" | "warning";
6131
+ type: "error" | "success" | "info" | "warning";
6073
6132
  id?: number | undefined;
6074
6133
  }[] | undefined;
6075
6134
  required?: boolean | undefined;
@@ -6090,7 +6149,7 @@ declare function init(config: AuthHeroConfig): {
6090
6149
  hint?: string | undefined;
6091
6150
  messages?: {
6092
6151
  text: string;
6093
- type: "success" | "error" | "info" | "warning";
6152
+ type: "error" | "success" | "info" | "warning";
6094
6153
  id?: number | undefined;
6095
6154
  }[] | undefined;
6096
6155
  required?: boolean | undefined;
@@ -6115,7 +6174,7 @@ declare function init(config: AuthHeroConfig): {
6115
6174
  hint?: string | undefined;
6116
6175
  messages?: {
6117
6176
  text: string;
6118
- type: "success" | "error" | "info" | "warning";
6177
+ type: "error" | "success" | "info" | "warning";
6119
6178
  id?: number | undefined;
6120
6179
  }[] | undefined;
6121
6180
  required?: boolean | undefined;
@@ -6134,7 +6193,7 @@ declare function init(config: AuthHeroConfig): {
6134
6193
  hint?: string | undefined;
6135
6194
  messages?: {
6136
6195
  text: string;
6137
- type: "success" | "error" | "info" | "warning";
6196
+ type: "error" | "success" | "info" | "warning";
6138
6197
  id?: number | undefined;
6139
6198
  }[] | undefined;
6140
6199
  required?: boolean | undefined;
@@ -6154,7 +6213,7 @@ declare function init(config: AuthHeroConfig): {
6154
6213
  hint?: string | undefined;
6155
6214
  messages?: {
6156
6215
  text: string;
6157
- type: "success" | "error" | "info" | "warning";
6216
+ type: "error" | "success" | "info" | "warning";
6158
6217
  id?: number | undefined;
6159
6218
  }[] | undefined;
6160
6219
  required?: boolean | undefined;
@@ -6173,7 +6232,7 @@ declare function init(config: AuthHeroConfig): {
6173
6232
  hint?: string | undefined;
6174
6233
  messages?: {
6175
6234
  text: string;
6176
- type: "success" | "error" | "info" | "warning";
6235
+ type: "error" | "success" | "info" | "warning";
6177
6236
  id?: number | undefined;
6178
6237
  }[] | undefined;
6179
6238
  required?: boolean | undefined;
@@ -6195,7 +6254,7 @@ declare function init(config: AuthHeroConfig): {
6195
6254
  hint?: string | undefined;
6196
6255
  messages?: {
6197
6256
  text: string;
6198
- type: "success" | "error" | "info" | "warning";
6257
+ type: "error" | "success" | "info" | "warning";
6199
6258
  id?: number | undefined;
6200
6259
  }[] | undefined;
6201
6260
  required?: boolean | undefined;
@@ -6217,7 +6276,7 @@ declare function init(config: AuthHeroConfig): {
6217
6276
  hint?: string | undefined;
6218
6277
  messages?: {
6219
6278
  text: string;
6220
- type: "success" | "error" | "info" | "warning";
6279
+ type: "error" | "success" | "info" | "warning";
6221
6280
  id?: number | undefined;
6222
6281
  }[] | undefined;
6223
6282
  required?: boolean | undefined;
@@ -6236,7 +6295,7 @@ declare function init(config: AuthHeroConfig): {
6236
6295
  hint?: string | undefined;
6237
6296
  messages?: {
6238
6297
  text: string;
6239
- type: "success" | "error" | "info" | "warning";
6298
+ type: "error" | "success" | "info" | "warning";
6240
6299
  id?: number | undefined;
6241
6300
  }[] | undefined;
6242
6301
  required?: boolean | undefined;
@@ -6261,7 +6320,7 @@ declare function init(config: AuthHeroConfig): {
6261
6320
  hint?: string | undefined;
6262
6321
  messages?: {
6263
6322
  text: string;
6264
- type: "success" | "error" | "info" | "warning";
6323
+ type: "error" | "success" | "info" | "warning";
6265
6324
  id?: number | undefined;
6266
6325
  }[] | undefined;
6267
6326
  required?: boolean | undefined;
@@ -6282,7 +6341,7 @@ declare function init(config: AuthHeroConfig): {
6282
6341
  hint?: string | undefined;
6283
6342
  messages?: {
6284
6343
  text: string;
6285
- type: "success" | "error" | "info" | "warning";
6344
+ type: "error" | "success" | "info" | "warning";
6286
6345
  id?: number | undefined;
6287
6346
  }[] | undefined;
6288
6347
  required?: boolean | undefined;
@@ -6303,7 +6362,7 @@ declare function init(config: AuthHeroConfig): {
6303
6362
  hint?: string | undefined;
6304
6363
  messages?: {
6305
6364
  text: string;
6306
- type: "success" | "error" | "info" | "warning";
6365
+ type: "error" | "success" | "info" | "warning";
6307
6366
  id?: number | undefined;
6308
6367
  }[] | undefined;
6309
6368
  required?: boolean | undefined;
@@ -6536,7 +6595,7 @@ declare function init(config: AuthHeroConfig): {
6536
6595
  hint?: string | undefined;
6537
6596
  messages?: {
6538
6597
  text: string;
6539
- type: "success" | "error" | "info" | "warning";
6598
+ type: "error" | "success" | "info" | "warning";
6540
6599
  id?: number | undefined;
6541
6600
  }[] | undefined;
6542
6601
  required?: boolean | undefined;
@@ -6554,7 +6613,7 @@ declare function init(config: AuthHeroConfig): {
6554
6613
  hint?: string | undefined;
6555
6614
  messages?: {
6556
6615
  text: string;
6557
- type: "success" | "error" | "info" | "warning";
6616
+ type: "error" | "success" | "info" | "warning";
6558
6617
  id?: number | undefined;
6559
6618
  }[] | undefined;
6560
6619
  required?: boolean | undefined;
@@ -6578,7 +6637,7 @@ declare function init(config: AuthHeroConfig): {
6578
6637
  hint?: string | undefined;
6579
6638
  messages?: {
6580
6639
  text: string;
6581
- type: "success" | "error" | "info" | "warning";
6640
+ type: "error" | "success" | "info" | "warning";
6582
6641
  id?: number | undefined;
6583
6642
  }[] | undefined;
6584
6643
  required?: boolean | undefined;
@@ -6602,7 +6661,7 @@ declare function init(config: AuthHeroConfig): {
6602
6661
  hint?: string | undefined;
6603
6662
  messages?: {
6604
6663
  text: string;
6605
- type: "success" | "error" | "info" | "warning";
6664
+ type: "error" | "success" | "info" | "warning";
6606
6665
  id?: number | undefined;
6607
6666
  }[] | undefined;
6608
6667
  required?: boolean | undefined;
@@ -6626,7 +6685,7 @@ declare function init(config: AuthHeroConfig): {
6626
6685
  hint?: string | undefined;
6627
6686
  messages?: {
6628
6687
  text: string;
6629
- type: "success" | "error" | "info" | "warning";
6688
+ type: "error" | "success" | "info" | "warning";
6630
6689
  id?: number | undefined;
6631
6690
  }[] | undefined;
6632
6691
  required?: boolean | undefined;
@@ -6655,7 +6714,7 @@ declare function init(config: AuthHeroConfig): {
6655
6714
  hint?: string | undefined;
6656
6715
  messages?: {
6657
6716
  text: string;
6658
- type: "success" | "error" | "info" | "warning";
6717
+ type: "error" | "success" | "info" | "warning";
6659
6718
  id?: number | undefined;
6660
6719
  }[] | undefined;
6661
6720
  required?: boolean | undefined;
@@ -6670,7 +6729,7 @@ declare function init(config: AuthHeroConfig): {
6670
6729
  hint?: string | undefined;
6671
6730
  messages?: {
6672
6731
  text: string;
6673
- type: "success" | "error" | "info" | "warning";
6732
+ type: "error" | "success" | "info" | "warning";
6674
6733
  id?: number | undefined;
6675
6734
  }[] | undefined;
6676
6735
  required?: boolean | undefined;
@@ -6691,7 +6750,7 @@ declare function init(config: AuthHeroConfig): {
6691
6750
  hint?: string | undefined;
6692
6751
  messages?: {
6693
6752
  text: string;
6694
- type: "success" | "error" | "info" | "warning";
6753
+ type: "error" | "success" | "info" | "warning";
6695
6754
  id?: number | undefined;
6696
6755
  }[] | undefined;
6697
6756
  required?: boolean | undefined;
@@ -6716,7 +6775,7 @@ declare function init(config: AuthHeroConfig): {
6716
6775
  hint?: string | undefined;
6717
6776
  messages?: {
6718
6777
  text: string;
6719
- type: "success" | "error" | "info" | "warning";
6778
+ type: "error" | "success" | "info" | "warning";
6720
6779
  id?: number | undefined;
6721
6780
  }[] | undefined;
6722
6781
  required?: boolean | undefined;
@@ -6735,7 +6794,7 @@ declare function init(config: AuthHeroConfig): {
6735
6794
  hint?: string | undefined;
6736
6795
  messages?: {
6737
6796
  text: string;
6738
- type: "success" | "error" | "info" | "warning";
6797
+ type: "error" | "success" | "info" | "warning";
6739
6798
  id?: number | undefined;
6740
6799
  }[] | undefined;
6741
6800
  required?: boolean | undefined;
@@ -6755,7 +6814,7 @@ declare function init(config: AuthHeroConfig): {
6755
6814
  hint?: string | undefined;
6756
6815
  messages?: {
6757
6816
  text: string;
6758
- type: "success" | "error" | "info" | "warning";
6817
+ type: "error" | "success" | "info" | "warning";
6759
6818
  id?: number | undefined;
6760
6819
  }[] | undefined;
6761
6820
  required?: boolean | undefined;
@@ -6774,7 +6833,7 @@ declare function init(config: AuthHeroConfig): {
6774
6833
  hint?: string | undefined;
6775
6834
  messages?: {
6776
6835
  text: string;
6777
- type: "success" | "error" | "info" | "warning";
6836
+ type: "error" | "success" | "info" | "warning";
6778
6837
  id?: number | undefined;
6779
6838
  }[] | undefined;
6780
6839
  required?: boolean | undefined;
@@ -6796,7 +6855,7 @@ declare function init(config: AuthHeroConfig): {
6796
6855
  hint?: string | undefined;
6797
6856
  messages?: {
6798
6857
  text: string;
6799
- type: "success" | "error" | "info" | "warning";
6858
+ type: "error" | "success" | "info" | "warning";
6800
6859
  id?: number | undefined;
6801
6860
  }[] | undefined;
6802
6861
  required?: boolean | undefined;
@@ -6818,7 +6877,7 @@ declare function init(config: AuthHeroConfig): {
6818
6877
  hint?: string | undefined;
6819
6878
  messages?: {
6820
6879
  text: string;
6821
- type: "success" | "error" | "info" | "warning";
6880
+ type: "error" | "success" | "info" | "warning";
6822
6881
  id?: number | undefined;
6823
6882
  }[] | undefined;
6824
6883
  required?: boolean | undefined;
@@ -6837,7 +6896,7 @@ declare function init(config: AuthHeroConfig): {
6837
6896
  hint?: string | undefined;
6838
6897
  messages?: {
6839
6898
  text: string;
6840
- type: "success" | "error" | "info" | "warning";
6899
+ type: "error" | "success" | "info" | "warning";
6841
6900
  id?: number | undefined;
6842
6901
  }[] | undefined;
6843
6902
  required?: boolean | undefined;
@@ -6862,7 +6921,7 @@ declare function init(config: AuthHeroConfig): {
6862
6921
  hint?: string | undefined;
6863
6922
  messages?: {
6864
6923
  text: string;
6865
- type: "success" | "error" | "info" | "warning";
6924
+ type: "error" | "success" | "info" | "warning";
6866
6925
  id?: number | undefined;
6867
6926
  }[] | undefined;
6868
6927
  required?: boolean | undefined;
@@ -6883,7 +6942,7 @@ declare function init(config: AuthHeroConfig): {
6883
6942
  hint?: string | undefined;
6884
6943
  messages?: {
6885
6944
  text: string;
6886
- type: "success" | "error" | "info" | "warning";
6945
+ type: "error" | "success" | "info" | "warning";
6887
6946
  id?: number | undefined;
6888
6947
  }[] | undefined;
6889
6948
  required?: boolean | undefined;
@@ -6904,7 +6963,7 @@ declare function init(config: AuthHeroConfig): {
6904
6963
  hint?: string | undefined;
6905
6964
  messages?: {
6906
6965
  text: string;
6907
- type: "success" | "error" | "info" | "warning";
6966
+ type: "error" | "success" | "info" | "warning";
6908
6967
  id?: number | undefined;
6909
6968
  }[] | undefined;
6910
6969
  required?: boolean | undefined;
@@ -7153,7 +7212,7 @@ declare function init(config: AuthHeroConfig): {
7153
7212
  hint?: string | undefined;
7154
7213
  messages?: {
7155
7214
  text: string;
7156
- type: "success" | "error" | "info" | "warning";
7215
+ type: "error" | "success" | "info" | "warning";
7157
7216
  id?: number | undefined;
7158
7217
  }[] | undefined;
7159
7218
  required?: boolean | undefined;
@@ -7171,7 +7230,7 @@ declare function init(config: AuthHeroConfig): {
7171
7230
  hint?: string | undefined;
7172
7231
  messages?: {
7173
7232
  text: string;
7174
- type: "success" | "error" | "info" | "warning";
7233
+ type: "error" | "success" | "info" | "warning";
7175
7234
  id?: number | undefined;
7176
7235
  }[] | undefined;
7177
7236
  required?: boolean | undefined;
@@ -7195,7 +7254,7 @@ declare function init(config: AuthHeroConfig): {
7195
7254
  hint?: string | undefined;
7196
7255
  messages?: {
7197
7256
  text: string;
7198
- type: "success" | "error" | "info" | "warning";
7257
+ type: "error" | "success" | "info" | "warning";
7199
7258
  id?: number | undefined;
7200
7259
  }[] | undefined;
7201
7260
  required?: boolean | undefined;
@@ -7219,7 +7278,7 @@ declare function init(config: AuthHeroConfig): {
7219
7278
  hint?: string | undefined;
7220
7279
  messages?: {
7221
7280
  text: string;
7222
- type: "success" | "error" | "info" | "warning";
7281
+ type: "error" | "success" | "info" | "warning";
7223
7282
  id?: number | undefined;
7224
7283
  }[] | undefined;
7225
7284
  required?: boolean | undefined;
@@ -7243,7 +7302,7 @@ declare function init(config: AuthHeroConfig): {
7243
7302
  hint?: string | undefined;
7244
7303
  messages?: {
7245
7304
  text: string;
7246
- type: "success" | "error" | "info" | "warning";
7305
+ type: "error" | "success" | "info" | "warning";
7247
7306
  id?: number | undefined;
7248
7307
  }[] | undefined;
7249
7308
  required?: boolean | undefined;
@@ -7272,7 +7331,7 @@ declare function init(config: AuthHeroConfig): {
7272
7331
  hint?: string | undefined;
7273
7332
  messages?: {
7274
7333
  text: string;
7275
- type: "success" | "error" | "info" | "warning";
7334
+ type: "error" | "success" | "info" | "warning";
7276
7335
  id?: number | undefined;
7277
7336
  }[] | undefined;
7278
7337
  required?: boolean | undefined;
@@ -7287,7 +7346,7 @@ declare function init(config: AuthHeroConfig): {
7287
7346
  hint?: string | undefined;
7288
7347
  messages?: {
7289
7348
  text: string;
7290
- type: "success" | "error" | "info" | "warning";
7349
+ type: "error" | "success" | "info" | "warning";
7291
7350
  id?: number | undefined;
7292
7351
  }[] | undefined;
7293
7352
  required?: boolean | undefined;
@@ -7308,7 +7367,7 @@ declare function init(config: AuthHeroConfig): {
7308
7367
  hint?: string | undefined;
7309
7368
  messages?: {
7310
7369
  text: string;
7311
- type: "success" | "error" | "info" | "warning";
7370
+ type: "error" | "success" | "info" | "warning";
7312
7371
  id?: number | undefined;
7313
7372
  }[] | undefined;
7314
7373
  required?: boolean | undefined;
@@ -7333,7 +7392,7 @@ declare function init(config: AuthHeroConfig): {
7333
7392
  hint?: string | undefined;
7334
7393
  messages?: {
7335
7394
  text: string;
7336
- type: "success" | "error" | "info" | "warning";
7395
+ type: "error" | "success" | "info" | "warning";
7337
7396
  id?: number | undefined;
7338
7397
  }[] | undefined;
7339
7398
  required?: boolean | undefined;
@@ -7352,7 +7411,7 @@ declare function init(config: AuthHeroConfig): {
7352
7411
  hint?: string | undefined;
7353
7412
  messages?: {
7354
7413
  text: string;
7355
- type: "success" | "error" | "info" | "warning";
7414
+ type: "error" | "success" | "info" | "warning";
7356
7415
  id?: number | undefined;
7357
7416
  }[] | undefined;
7358
7417
  required?: boolean | undefined;
@@ -7372,7 +7431,7 @@ declare function init(config: AuthHeroConfig): {
7372
7431
  hint?: string | undefined;
7373
7432
  messages?: {
7374
7433
  text: string;
7375
- type: "success" | "error" | "info" | "warning";
7434
+ type: "error" | "success" | "info" | "warning";
7376
7435
  id?: number | undefined;
7377
7436
  }[] | undefined;
7378
7437
  required?: boolean | undefined;
@@ -7391,7 +7450,7 @@ declare function init(config: AuthHeroConfig): {
7391
7450
  hint?: string | undefined;
7392
7451
  messages?: {
7393
7452
  text: string;
7394
- type: "success" | "error" | "info" | "warning";
7453
+ type: "error" | "success" | "info" | "warning";
7395
7454
  id?: number | undefined;
7396
7455
  }[] | undefined;
7397
7456
  required?: boolean | undefined;
@@ -7413,7 +7472,7 @@ declare function init(config: AuthHeroConfig): {
7413
7472
  hint?: string | undefined;
7414
7473
  messages?: {
7415
7474
  text: string;
7416
- type: "success" | "error" | "info" | "warning";
7475
+ type: "error" | "success" | "info" | "warning";
7417
7476
  id?: number | undefined;
7418
7477
  }[] | undefined;
7419
7478
  required?: boolean | undefined;
@@ -7435,7 +7494,7 @@ declare function init(config: AuthHeroConfig): {
7435
7494
  hint?: string | undefined;
7436
7495
  messages?: {
7437
7496
  text: string;
7438
- type: "success" | "error" | "info" | "warning";
7497
+ type: "error" | "success" | "info" | "warning";
7439
7498
  id?: number | undefined;
7440
7499
  }[] | undefined;
7441
7500
  required?: boolean | undefined;
@@ -7454,7 +7513,7 @@ declare function init(config: AuthHeroConfig): {
7454
7513
  hint?: string | undefined;
7455
7514
  messages?: {
7456
7515
  text: string;
7457
- type: "success" | "error" | "info" | "warning";
7516
+ type: "error" | "success" | "info" | "warning";
7458
7517
  id?: number | undefined;
7459
7518
  }[] | undefined;
7460
7519
  required?: boolean | undefined;
@@ -7479,7 +7538,7 @@ declare function init(config: AuthHeroConfig): {
7479
7538
  hint?: string | undefined;
7480
7539
  messages?: {
7481
7540
  text: string;
7482
- type: "success" | "error" | "info" | "warning";
7541
+ type: "error" | "success" | "info" | "warning";
7483
7542
  id?: number | undefined;
7484
7543
  }[] | undefined;
7485
7544
  required?: boolean | undefined;
@@ -7500,7 +7559,7 @@ declare function init(config: AuthHeroConfig): {
7500
7559
  hint?: string | undefined;
7501
7560
  messages?: {
7502
7561
  text: string;
7503
- type: "success" | "error" | "info" | "warning";
7562
+ type: "error" | "success" | "info" | "warning";
7504
7563
  id?: number | undefined;
7505
7564
  }[] | undefined;
7506
7565
  required?: boolean | undefined;
@@ -7521,7 +7580,7 @@ declare function init(config: AuthHeroConfig): {
7521
7580
  hint?: string | undefined;
7522
7581
  messages?: {
7523
7582
  text: string;
7524
- type: "success" | "error" | "info" | "warning";
7583
+ type: "error" | "success" | "info" | "warning";
7525
7584
  id?: number | undefined;
7526
7585
  }[] | undefined;
7527
7586
  required?: boolean | undefined;
@@ -7775,7 +7834,7 @@ declare function init(config: AuthHeroConfig): {
7775
7834
  hint?: string | undefined;
7776
7835
  messages?: {
7777
7836
  text: string;
7778
- type: "success" | "error" | "info" | "warning";
7837
+ type: "error" | "success" | "info" | "warning";
7779
7838
  id?: number | undefined;
7780
7839
  }[] | undefined;
7781
7840
  required?: boolean | undefined;
@@ -7793,7 +7852,7 @@ declare function init(config: AuthHeroConfig): {
7793
7852
  hint?: string | undefined;
7794
7853
  messages?: {
7795
7854
  text: string;
7796
- type: "success" | "error" | "info" | "warning";
7855
+ type: "error" | "success" | "info" | "warning";
7797
7856
  id?: number | undefined;
7798
7857
  }[] | undefined;
7799
7858
  required?: boolean | undefined;
@@ -7817,7 +7876,7 @@ declare function init(config: AuthHeroConfig): {
7817
7876
  hint?: string | undefined;
7818
7877
  messages?: {
7819
7878
  text: string;
7820
- type: "success" | "error" | "info" | "warning";
7879
+ type: "error" | "success" | "info" | "warning";
7821
7880
  id?: number | undefined;
7822
7881
  }[] | undefined;
7823
7882
  required?: boolean | undefined;
@@ -7841,7 +7900,7 @@ declare function init(config: AuthHeroConfig): {
7841
7900
  hint?: string | undefined;
7842
7901
  messages?: {
7843
7902
  text: string;
7844
- type: "success" | "error" | "info" | "warning";
7903
+ type: "error" | "success" | "info" | "warning";
7845
7904
  id?: number | undefined;
7846
7905
  }[] | undefined;
7847
7906
  required?: boolean | undefined;
@@ -7865,7 +7924,7 @@ declare function init(config: AuthHeroConfig): {
7865
7924
  hint?: string | undefined;
7866
7925
  messages?: {
7867
7926
  text: string;
7868
- type: "success" | "error" | "info" | "warning";
7927
+ type: "error" | "success" | "info" | "warning";
7869
7928
  id?: number | undefined;
7870
7929
  }[] | undefined;
7871
7930
  required?: boolean | undefined;
@@ -7890,7 +7949,7 @@ declare function init(config: AuthHeroConfig): {
7890
7949
  hint?: string | undefined;
7891
7950
  messages?: {
7892
7951
  text: string;
7893
- type: "success" | "error" | "info" | "warning";
7952
+ type: "error" | "success" | "info" | "warning";
7894
7953
  id?: number | undefined;
7895
7954
  }[] | undefined;
7896
7955
  required?: boolean | undefined;
@@ -7905,7 +7964,7 @@ declare function init(config: AuthHeroConfig): {
7905
7964
  hint?: string | undefined;
7906
7965
  messages?: {
7907
7966
  text: string;
7908
- type: "success" | "error" | "info" | "warning";
7967
+ type: "error" | "success" | "info" | "warning";
7909
7968
  id?: number | undefined;
7910
7969
  }[] | undefined;
7911
7970
  required?: boolean | undefined;
@@ -7926,7 +7985,7 @@ declare function init(config: AuthHeroConfig): {
7926
7985
  hint?: string | undefined;
7927
7986
  messages?: {
7928
7987
  text: string;
7929
- type: "success" | "error" | "info" | "warning";
7988
+ type: "error" | "success" | "info" | "warning";
7930
7989
  id?: number | undefined;
7931
7990
  }[] | undefined;
7932
7991
  required?: boolean | undefined;
@@ -7951,7 +8010,7 @@ declare function init(config: AuthHeroConfig): {
7951
8010
  hint?: string | undefined;
7952
8011
  messages?: {
7953
8012
  text: string;
7954
- type: "success" | "error" | "info" | "warning";
8013
+ type: "error" | "success" | "info" | "warning";
7955
8014
  id?: number | undefined;
7956
8015
  }[] | undefined;
7957
8016
  required?: boolean | undefined;
@@ -7970,7 +8029,7 @@ declare function init(config: AuthHeroConfig): {
7970
8029
  hint?: string | undefined;
7971
8030
  messages?: {
7972
8031
  text: string;
7973
- type: "success" | "error" | "info" | "warning";
8032
+ type: "error" | "success" | "info" | "warning";
7974
8033
  id?: number | undefined;
7975
8034
  }[] | undefined;
7976
8035
  required?: boolean | undefined;
@@ -7990,7 +8049,7 @@ declare function init(config: AuthHeroConfig): {
7990
8049
  hint?: string | undefined;
7991
8050
  messages?: {
7992
8051
  text: string;
7993
- type: "success" | "error" | "info" | "warning";
8052
+ type: "error" | "success" | "info" | "warning";
7994
8053
  id?: number | undefined;
7995
8054
  }[] | undefined;
7996
8055
  required?: boolean | undefined;
@@ -8009,7 +8068,7 @@ declare function init(config: AuthHeroConfig): {
8009
8068
  hint?: string | undefined;
8010
8069
  messages?: {
8011
8070
  text: string;
8012
- type: "success" | "error" | "info" | "warning";
8071
+ type: "error" | "success" | "info" | "warning";
8013
8072
  id?: number | undefined;
8014
8073
  }[] | undefined;
8015
8074
  required?: boolean | undefined;
@@ -8031,7 +8090,7 @@ declare function init(config: AuthHeroConfig): {
8031
8090
  hint?: string | undefined;
8032
8091
  messages?: {
8033
8092
  text: string;
8034
- type: "success" | "error" | "info" | "warning";
8093
+ type: "error" | "success" | "info" | "warning";
8035
8094
  id?: number | undefined;
8036
8095
  }[] | undefined;
8037
8096
  required?: boolean | undefined;
@@ -8053,7 +8112,7 @@ declare function init(config: AuthHeroConfig): {
8053
8112
  hint?: string | undefined;
8054
8113
  messages?: {
8055
8114
  text: string;
8056
- type: "success" | "error" | "info" | "warning";
8115
+ type: "error" | "success" | "info" | "warning";
8057
8116
  id?: number | undefined;
8058
8117
  }[] | undefined;
8059
8118
  required?: boolean | undefined;
@@ -8072,7 +8131,7 @@ declare function init(config: AuthHeroConfig): {
8072
8131
  hint?: string | undefined;
8073
8132
  messages?: {
8074
8133
  text: string;
8075
- type: "success" | "error" | "info" | "warning";
8134
+ type: "error" | "success" | "info" | "warning";
8076
8135
  id?: number | undefined;
8077
8136
  }[] | undefined;
8078
8137
  required?: boolean | undefined;
@@ -8097,7 +8156,7 @@ declare function init(config: AuthHeroConfig): {
8097
8156
  hint?: string | undefined;
8098
8157
  messages?: {
8099
8158
  text: string;
8100
- type: "success" | "error" | "info" | "warning";
8159
+ type: "error" | "success" | "info" | "warning";
8101
8160
  id?: number | undefined;
8102
8161
  }[] | undefined;
8103
8162
  required?: boolean | undefined;
@@ -8118,7 +8177,7 @@ declare function init(config: AuthHeroConfig): {
8118
8177
  hint?: string | undefined;
8119
8178
  messages?: {
8120
8179
  text: string;
8121
- type: "success" | "error" | "info" | "warning";
8180
+ type: "error" | "success" | "info" | "warning";
8122
8181
  id?: number | undefined;
8123
8182
  }[] | undefined;
8124
8183
  required?: boolean | undefined;
@@ -8139,7 +8198,7 @@ declare function init(config: AuthHeroConfig): {
8139
8198
  hint?: string | undefined;
8140
8199
  messages?: {
8141
8200
  text: string;
8142
- type: "success" | "error" | "info" | "warning";
8201
+ type: "error" | "success" | "info" | "warning";
8143
8202
  id?: number | undefined;
8144
8203
  }[] | undefined;
8145
8204
  required?: boolean | undefined;
@@ -8370,7 +8429,7 @@ declare function init(config: AuthHeroConfig): {
8370
8429
  hint?: string | undefined;
8371
8430
  messages?: {
8372
8431
  text: string;
8373
- type: "success" | "error" | "info" | "warning";
8432
+ type: "error" | "success" | "info" | "warning";
8374
8433
  id?: number | undefined;
8375
8434
  }[] | undefined;
8376
8435
  required?: boolean | undefined;
@@ -8388,7 +8447,7 @@ declare function init(config: AuthHeroConfig): {
8388
8447
  hint?: string | undefined;
8389
8448
  messages?: {
8390
8449
  text: string;
8391
- type: "success" | "error" | "info" | "warning";
8450
+ type: "error" | "success" | "info" | "warning";
8392
8451
  id?: number | undefined;
8393
8452
  }[] | undefined;
8394
8453
  required?: boolean | undefined;
@@ -8412,7 +8471,7 @@ declare function init(config: AuthHeroConfig): {
8412
8471
  hint?: string | undefined;
8413
8472
  messages?: {
8414
8473
  text: string;
8415
- type: "success" | "error" | "info" | "warning";
8474
+ type: "error" | "success" | "info" | "warning";
8416
8475
  id?: number | undefined;
8417
8476
  }[] | undefined;
8418
8477
  required?: boolean | undefined;
@@ -8436,7 +8495,7 @@ declare function init(config: AuthHeroConfig): {
8436
8495
  hint?: string | undefined;
8437
8496
  messages?: {
8438
8497
  text: string;
8439
- type: "success" | "error" | "info" | "warning";
8498
+ type: "error" | "success" | "info" | "warning";
8440
8499
  id?: number | undefined;
8441
8500
  }[] | undefined;
8442
8501
  required?: boolean | undefined;
@@ -8460,7 +8519,7 @@ declare function init(config: AuthHeroConfig): {
8460
8519
  hint?: string | undefined;
8461
8520
  messages?: {
8462
8521
  text: string;
8463
- type: "success" | "error" | "info" | "warning";
8522
+ type: "error" | "success" | "info" | "warning";
8464
8523
  id?: number | undefined;
8465
8524
  }[] | undefined;
8466
8525
  required?: boolean | undefined;
@@ -8489,7 +8548,7 @@ declare function init(config: AuthHeroConfig): {
8489
8548
  hint?: string | undefined;
8490
8549
  messages?: {
8491
8550
  text: string;
8492
- type: "success" | "error" | "info" | "warning";
8551
+ type: "error" | "success" | "info" | "warning";
8493
8552
  id?: number | undefined;
8494
8553
  }[] | undefined;
8495
8554
  required?: boolean | undefined;
@@ -8504,7 +8563,7 @@ declare function init(config: AuthHeroConfig): {
8504
8563
  hint?: string | undefined;
8505
8564
  messages?: {
8506
8565
  text: string;
8507
- type: "success" | "error" | "info" | "warning";
8566
+ type: "error" | "success" | "info" | "warning";
8508
8567
  id?: number | undefined;
8509
8568
  }[] | undefined;
8510
8569
  required?: boolean | undefined;
@@ -8525,7 +8584,7 @@ declare function init(config: AuthHeroConfig): {
8525
8584
  hint?: string | undefined;
8526
8585
  messages?: {
8527
8586
  text: string;
8528
- type: "success" | "error" | "info" | "warning";
8587
+ type: "error" | "success" | "info" | "warning";
8529
8588
  id?: number | undefined;
8530
8589
  }[] | undefined;
8531
8590
  required?: boolean | undefined;
@@ -8550,7 +8609,7 @@ declare function init(config: AuthHeroConfig): {
8550
8609
  hint?: string | undefined;
8551
8610
  messages?: {
8552
8611
  text: string;
8553
- type: "success" | "error" | "info" | "warning";
8612
+ type: "error" | "success" | "info" | "warning";
8554
8613
  id?: number | undefined;
8555
8614
  }[] | undefined;
8556
8615
  required?: boolean | undefined;
@@ -8569,7 +8628,7 @@ declare function init(config: AuthHeroConfig): {
8569
8628
  hint?: string | undefined;
8570
8629
  messages?: {
8571
8630
  text: string;
8572
- type: "success" | "error" | "info" | "warning";
8631
+ type: "error" | "success" | "info" | "warning";
8573
8632
  id?: number | undefined;
8574
8633
  }[] | undefined;
8575
8634
  required?: boolean | undefined;
@@ -8589,7 +8648,7 @@ declare function init(config: AuthHeroConfig): {
8589
8648
  hint?: string | undefined;
8590
8649
  messages?: {
8591
8650
  text: string;
8592
- type: "success" | "error" | "info" | "warning";
8651
+ type: "error" | "success" | "info" | "warning";
8593
8652
  id?: number | undefined;
8594
8653
  }[] | undefined;
8595
8654
  required?: boolean | undefined;
@@ -8608,7 +8667,7 @@ declare function init(config: AuthHeroConfig): {
8608
8667
  hint?: string | undefined;
8609
8668
  messages?: {
8610
8669
  text: string;
8611
- type: "success" | "error" | "info" | "warning";
8670
+ type: "error" | "success" | "info" | "warning";
8612
8671
  id?: number | undefined;
8613
8672
  }[] | undefined;
8614
8673
  required?: boolean | undefined;
@@ -8630,7 +8689,7 @@ declare function init(config: AuthHeroConfig): {
8630
8689
  hint?: string | undefined;
8631
8690
  messages?: {
8632
8691
  text: string;
8633
- type: "success" | "error" | "info" | "warning";
8692
+ type: "error" | "success" | "info" | "warning";
8634
8693
  id?: number | undefined;
8635
8694
  }[] | undefined;
8636
8695
  required?: boolean | undefined;
@@ -8652,7 +8711,7 @@ declare function init(config: AuthHeroConfig): {
8652
8711
  hint?: string | undefined;
8653
8712
  messages?: {
8654
8713
  text: string;
8655
- type: "success" | "error" | "info" | "warning";
8714
+ type: "error" | "success" | "info" | "warning";
8656
8715
  id?: number | undefined;
8657
8716
  }[] | undefined;
8658
8717
  required?: boolean | undefined;
@@ -8671,7 +8730,7 @@ declare function init(config: AuthHeroConfig): {
8671
8730
  hint?: string | undefined;
8672
8731
  messages?: {
8673
8732
  text: string;
8674
- type: "success" | "error" | "info" | "warning";
8733
+ type: "error" | "success" | "info" | "warning";
8675
8734
  id?: number | undefined;
8676
8735
  }[] | undefined;
8677
8736
  required?: boolean | undefined;
@@ -8696,7 +8755,7 @@ declare function init(config: AuthHeroConfig): {
8696
8755
  hint?: string | undefined;
8697
8756
  messages?: {
8698
8757
  text: string;
8699
- type: "success" | "error" | "info" | "warning";
8758
+ type: "error" | "success" | "info" | "warning";
8700
8759
  id?: number | undefined;
8701
8760
  }[] | undefined;
8702
8761
  required?: boolean | undefined;
@@ -8717,7 +8776,7 @@ declare function init(config: AuthHeroConfig): {
8717
8776
  hint?: string | undefined;
8718
8777
  messages?: {
8719
8778
  text: string;
8720
- type: "success" | "error" | "info" | "warning";
8779
+ type: "error" | "success" | "info" | "warning";
8721
8780
  id?: number | undefined;
8722
8781
  }[] | undefined;
8723
8782
  required?: boolean | undefined;
@@ -8738,7 +8797,7 @@ declare function init(config: AuthHeroConfig): {
8738
8797
  hint?: string | undefined;
8739
8798
  messages?: {
8740
8799
  text: string;
8741
- type: "success" | "error" | "info" | "warning";
8800
+ type: "error" | "success" | "info" | "warning";
8742
8801
  id?: number | undefined;
8743
8802
  }[] | undefined;
8744
8803
  required?: boolean | undefined;
@@ -8971,7 +9030,7 @@ declare function init(config: AuthHeroConfig): {
8971
9030
  hint?: string | undefined;
8972
9031
  messages?: {
8973
9032
  text: string;
8974
- type: "success" | "error" | "info" | "warning";
9033
+ type: "error" | "success" | "info" | "warning";
8975
9034
  id?: number | undefined;
8976
9035
  }[] | undefined;
8977
9036
  required?: boolean | undefined;
@@ -8989,7 +9048,7 @@ declare function init(config: AuthHeroConfig): {
8989
9048
  hint?: string | undefined;
8990
9049
  messages?: {
8991
9050
  text: string;
8992
- type: "success" | "error" | "info" | "warning";
9051
+ type: "error" | "success" | "info" | "warning";
8993
9052
  id?: number | undefined;
8994
9053
  }[] | undefined;
8995
9054
  required?: boolean | undefined;
@@ -9013,7 +9072,7 @@ declare function init(config: AuthHeroConfig): {
9013
9072
  hint?: string | undefined;
9014
9073
  messages?: {
9015
9074
  text: string;
9016
- type: "success" | "error" | "info" | "warning";
9075
+ type: "error" | "success" | "info" | "warning";
9017
9076
  id?: number | undefined;
9018
9077
  }[] | undefined;
9019
9078
  required?: boolean | undefined;
@@ -9037,7 +9096,7 @@ declare function init(config: AuthHeroConfig): {
9037
9096
  hint?: string | undefined;
9038
9097
  messages?: {
9039
9098
  text: string;
9040
- type: "success" | "error" | "info" | "warning";
9099
+ type: "error" | "success" | "info" | "warning";
9041
9100
  id?: number | undefined;
9042
9101
  }[] | undefined;
9043
9102
  required?: boolean | undefined;
@@ -9061,7 +9120,7 @@ declare function init(config: AuthHeroConfig): {
9061
9120
  hint?: string | undefined;
9062
9121
  messages?: {
9063
9122
  text: string;
9064
- type: "success" | "error" | "info" | "warning";
9123
+ type: "error" | "success" | "info" | "warning";
9065
9124
  id?: number | undefined;
9066
9125
  }[] | undefined;
9067
9126
  required?: boolean | undefined;
@@ -9086,7 +9145,7 @@ declare function init(config: AuthHeroConfig): {
9086
9145
  hint?: string | undefined;
9087
9146
  messages?: {
9088
9147
  text: string;
9089
- type: "success" | "error" | "info" | "warning";
9148
+ type: "error" | "success" | "info" | "warning";
9090
9149
  id?: number | undefined;
9091
9150
  }[] | undefined;
9092
9151
  required?: boolean | undefined;
@@ -9101,7 +9160,7 @@ declare function init(config: AuthHeroConfig): {
9101
9160
  hint?: string | undefined;
9102
9161
  messages?: {
9103
9162
  text: string;
9104
- type: "success" | "error" | "info" | "warning";
9163
+ type: "error" | "success" | "info" | "warning";
9105
9164
  id?: number | undefined;
9106
9165
  }[] | undefined;
9107
9166
  required?: boolean | undefined;
@@ -9122,7 +9181,7 @@ declare function init(config: AuthHeroConfig): {
9122
9181
  hint?: string | undefined;
9123
9182
  messages?: {
9124
9183
  text: string;
9125
- type: "success" | "error" | "info" | "warning";
9184
+ type: "error" | "success" | "info" | "warning";
9126
9185
  id?: number | undefined;
9127
9186
  }[] | undefined;
9128
9187
  required?: boolean | undefined;
@@ -9147,7 +9206,7 @@ declare function init(config: AuthHeroConfig): {
9147
9206
  hint?: string | undefined;
9148
9207
  messages?: {
9149
9208
  text: string;
9150
- type: "success" | "error" | "info" | "warning";
9209
+ type: "error" | "success" | "info" | "warning";
9151
9210
  id?: number | undefined;
9152
9211
  }[] | undefined;
9153
9212
  required?: boolean | undefined;
@@ -9166,7 +9225,7 @@ declare function init(config: AuthHeroConfig): {
9166
9225
  hint?: string | undefined;
9167
9226
  messages?: {
9168
9227
  text: string;
9169
- type: "success" | "error" | "info" | "warning";
9228
+ type: "error" | "success" | "info" | "warning";
9170
9229
  id?: number | undefined;
9171
9230
  }[] | undefined;
9172
9231
  required?: boolean | undefined;
@@ -9186,7 +9245,7 @@ declare function init(config: AuthHeroConfig): {
9186
9245
  hint?: string | undefined;
9187
9246
  messages?: {
9188
9247
  text: string;
9189
- type: "success" | "error" | "info" | "warning";
9248
+ type: "error" | "success" | "info" | "warning";
9190
9249
  id?: number | undefined;
9191
9250
  }[] | undefined;
9192
9251
  required?: boolean | undefined;
@@ -9205,7 +9264,7 @@ declare function init(config: AuthHeroConfig): {
9205
9264
  hint?: string | undefined;
9206
9265
  messages?: {
9207
9266
  text: string;
9208
- type: "success" | "error" | "info" | "warning";
9267
+ type: "error" | "success" | "info" | "warning";
9209
9268
  id?: number | undefined;
9210
9269
  }[] | undefined;
9211
9270
  required?: boolean | undefined;
@@ -9227,7 +9286,7 @@ declare function init(config: AuthHeroConfig): {
9227
9286
  hint?: string | undefined;
9228
9287
  messages?: {
9229
9288
  text: string;
9230
- type: "success" | "error" | "info" | "warning";
9289
+ type: "error" | "success" | "info" | "warning";
9231
9290
  id?: number | undefined;
9232
9291
  }[] | undefined;
9233
9292
  required?: boolean | undefined;
@@ -9249,7 +9308,7 @@ declare function init(config: AuthHeroConfig): {
9249
9308
  hint?: string | undefined;
9250
9309
  messages?: {
9251
9310
  text: string;
9252
- type: "success" | "error" | "info" | "warning";
9311
+ type: "error" | "success" | "info" | "warning";
9253
9312
  id?: number | undefined;
9254
9313
  }[] | undefined;
9255
9314
  required?: boolean | undefined;
@@ -9268,7 +9327,7 @@ declare function init(config: AuthHeroConfig): {
9268
9327
  hint?: string | undefined;
9269
9328
  messages?: {
9270
9329
  text: string;
9271
- type: "success" | "error" | "info" | "warning";
9330
+ type: "error" | "success" | "info" | "warning";
9272
9331
  id?: number | undefined;
9273
9332
  }[] | undefined;
9274
9333
  required?: boolean | undefined;
@@ -9293,7 +9352,7 @@ declare function init(config: AuthHeroConfig): {
9293
9352
  hint?: string | undefined;
9294
9353
  messages?: {
9295
9354
  text: string;
9296
- type: "success" | "error" | "info" | "warning";
9355
+ type: "error" | "success" | "info" | "warning";
9297
9356
  id?: number | undefined;
9298
9357
  }[] | undefined;
9299
9358
  required?: boolean | undefined;
@@ -9314,7 +9373,7 @@ declare function init(config: AuthHeroConfig): {
9314
9373
  hint?: string | undefined;
9315
9374
  messages?: {
9316
9375
  text: string;
9317
- type: "success" | "error" | "info" | "warning";
9376
+ type: "error" | "success" | "info" | "warning";
9318
9377
  id?: number | undefined;
9319
9378
  }[] | undefined;
9320
9379
  required?: boolean | undefined;
@@ -9335,7 +9394,7 @@ declare function init(config: AuthHeroConfig): {
9335
9394
  hint?: string | undefined;
9336
9395
  messages?: {
9337
9396
  text: string;
9338
- type: "success" | "error" | "info" | "warning";
9397
+ type: "error" | "success" | "info" | "warning";
9339
9398
  id?: number | undefined;
9340
9399
  }[] | undefined;
9341
9400
  required?: boolean | undefined;
@@ -9566,7 +9625,7 @@ declare function init(config: AuthHeroConfig): {
9566
9625
  hint?: string | undefined;
9567
9626
  messages?: {
9568
9627
  text: string;
9569
- type: "success" | "error" | "info" | "warning";
9628
+ type: "error" | "success" | "info" | "warning";
9570
9629
  id?: number | undefined;
9571
9630
  }[] | undefined;
9572
9631
  required?: boolean | undefined;
@@ -9584,7 +9643,7 @@ declare function init(config: AuthHeroConfig): {
9584
9643
  hint?: string | undefined;
9585
9644
  messages?: {
9586
9645
  text: string;
9587
- type: "success" | "error" | "info" | "warning";
9646
+ type: "error" | "success" | "info" | "warning";
9588
9647
  id?: number | undefined;
9589
9648
  }[] | undefined;
9590
9649
  required?: boolean | undefined;
@@ -9608,7 +9667,7 @@ declare function init(config: AuthHeroConfig): {
9608
9667
  hint?: string | undefined;
9609
9668
  messages?: {
9610
9669
  text: string;
9611
- type: "success" | "error" | "info" | "warning";
9670
+ type: "error" | "success" | "info" | "warning";
9612
9671
  id?: number | undefined;
9613
9672
  }[] | undefined;
9614
9673
  required?: boolean | undefined;
@@ -9632,7 +9691,7 @@ declare function init(config: AuthHeroConfig): {
9632
9691
  hint?: string | undefined;
9633
9692
  messages?: {
9634
9693
  text: string;
9635
- type: "success" | "error" | "info" | "warning";
9694
+ type: "error" | "success" | "info" | "warning";
9636
9695
  id?: number | undefined;
9637
9696
  }[] | undefined;
9638
9697
  required?: boolean | undefined;
@@ -9656,7 +9715,7 @@ declare function init(config: AuthHeroConfig): {
9656
9715
  hint?: string | undefined;
9657
9716
  messages?: {
9658
9717
  text: string;
9659
- type: "success" | "error" | "info" | "warning";
9718
+ type: "error" | "success" | "info" | "warning";
9660
9719
  id?: number | undefined;
9661
9720
  }[] | undefined;
9662
9721
  required?: boolean | undefined;
@@ -9685,7 +9744,7 @@ declare function init(config: AuthHeroConfig): {
9685
9744
  hint?: string | undefined;
9686
9745
  messages?: {
9687
9746
  text: string;
9688
- type: "success" | "error" | "info" | "warning";
9747
+ type: "error" | "success" | "info" | "warning";
9689
9748
  id?: number | undefined;
9690
9749
  }[] | undefined;
9691
9750
  required?: boolean | undefined;
@@ -9700,7 +9759,7 @@ declare function init(config: AuthHeroConfig): {
9700
9759
  hint?: string | undefined;
9701
9760
  messages?: {
9702
9761
  text: string;
9703
- type: "success" | "error" | "info" | "warning";
9762
+ type: "error" | "success" | "info" | "warning";
9704
9763
  id?: number | undefined;
9705
9764
  }[] | undefined;
9706
9765
  required?: boolean | undefined;
@@ -9721,7 +9780,7 @@ declare function init(config: AuthHeroConfig): {
9721
9780
  hint?: string | undefined;
9722
9781
  messages?: {
9723
9782
  text: string;
9724
- type: "success" | "error" | "info" | "warning";
9783
+ type: "error" | "success" | "info" | "warning";
9725
9784
  id?: number | undefined;
9726
9785
  }[] | undefined;
9727
9786
  required?: boolean | undefined;
@@ -9746,7 +9805,7 @@ declare function init(config: AuthHeroConfig): {
9746
9805
  hint?: string | undefined;
9747
9806
  messages?: {
9748
9807
  text: string;
9749
- type: "success" | "error" | "info" | "warning";
9808
+ type: "error" | "success" | "info" | "warning";
9750
9809
  id?: number | undefined;
9751
9810
  }[] | undefined;
9752
9811
  required?: boolean | undefined;
@@ -9765,7 +9824,7 @@ declare function init(config: AuthHeroConfig): {
9765
9824
  hint?: string | undefined;
9766
9825
  messages?: {
9767
9826
  text: string;
9768
- type: "success" | "error" | "info" | "warning";
9827
+ type: "error" | "success" | "info" | "warning";
9769
9828
  id?: number | undefined;
9770
9829
  }[] | undefined;
9771
9830
  required?: boolean | undefined;
@@ -9785,7 +9844,7 @@ declare function init(config: AuthHeroConfig): {
9785
9844
  hint?: string | undefined;
9786
9845
  messages?: {
9787
9846
  text: string;
9788
- type: "success" | "error" | "info" | "warning";
9847
+ type: "error" | "success" | "info" | "warning";
9789
9848
  id?: number | undefined;
9790
9849
  }[] | undefined;
9791
9850
  required?: boolean | undefined;
@@ -9804,7 +9863,7 @@ declare function init(config: AuthHeroConfig): {
9804
9863
  hint?: string | undefined;
9805
9864
  messages?: {
9806
9865
  text: string;
9807
- type: "success" | "error" | "info" | "warning";
9866
+ type: "error" | "success" | "info" | "warning";
9808
9867
  id?: number | undefined;
9809
9868
  }[] | undefined;
9810
9869
  required?: boolean | undefined;
@@ -9826,7 +9885,7 @@ declare function init(config: AuthHeroConfig): {
9826
9885
  hint?: string | undefined;
9827
9886
  messages?: {
9828
9887
  text: string;
9829
- type: "success" | "error" | "info" | "warning";
9888
+ type: "error" | "success" | "info" | "warning";
9830
9889
  id?: number | undefined;
9831
9890
  }[] | undefined;
9832
9891
  required?: boolean | undefined;
@@ -9848,7 +9907,7 @@ declare function init(config: AuthHeroConfig): {
9848
9907
  hint?: string | undefined;
9849
9908
  messages?: {
9850
9909
  text: string;
9851
- type: "success" | "error" | "info" | "warning";
9910
+ type: "error" | "success" | "info" | "warning";
9852
9911
  id?: number | undefined;
9853
9912
  }[] | undefined;
9854
9913
  required?: boolean | undefined;
@@ -9867,7 +9926,7 @@ declare function init(config: AuthHeroConfig): {
9867
9926
  hint?: string | undefined;
9868
9927
  messages?: {
9869
9928
  text: string;
9870
- type: "success" | "error" | "info" | "warning";
9929
+ type: "error" | "success" | "info" | "warning";
9871
9930
  id?: number | undefined;
9872
9931
  }[] | undefined;
9873
9932
  required?: boolean | undefined;
@@ -9892,7 +9951,7 @@ declare function init(config: AuthHeroConfig): {
9892
9951
  hint?: string | undefined;
9893
9952
  messages?: {
9894
9953
  text: string;
9895
- type: "success" | "error" | "info" | "warning";
9954
+ type: "error" | "success" | "info" | "warning";
9896
9955
  id?: number | undefined;
9897
9956
  }[] | undefined;
9898
9957
  required?: boolean | undefined;
@@ -9913,7 +9972,7 @@ declare function init(config: AuthHeroConfig): {
9913
9972
  hint?: string | undefined;
9914
9973
  messages?: {
9915
9974
  text: string;
9916
- type: "success" | "error" | "info" | "warning";
9975
+ type: "error" | "success" | "info" | "warning";
9917
9976
  id?: number | undefined;
9918
9977
  }[] | undefined;
9919
9978
  required?: boolean | undefined;
@@ -9934,7 +9993,7 @@ declare function init(config: AuthHeroConfig): {
9934
9993
  hint?: string | undefined;
9935
9994
  messages?: {
9936
9995
  text: string;
9937
- type: "success" | "error" | "info" | "warning";
9996
+ type: "error" | "success" | "info" | "warning";
9938
9997
  id?: number | undefined;
9939
9998
  }[] | undefined;
9940
9999
  required?: boolean | undefined;
@@ -10164,7 +10223,7 @@ declare function init(config: AuthHeroConfig): {
10164
10223
  };
10165
10224
  };
10166
10225
  output: {
10167
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10226
+ 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";
10168
10227
  language: string;
10169
10228
  }[];
10170
10229
  outputFormat: "json";
@@ -10202,7 +10261,7 @@ declare function init(config: AuthHeroConfig): {
10202
10261
  $get: {
10203
10262
  input: {
10204
10263
  param: {
10205
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10264
+ 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";
10206
10265
  language: string;
10207
10266
  };
10208
10267
  } & {
@@ -10224,7 +10283,7 @@ declare function init(config: AuthHeroConfig): {
10224
10283
  $put: {
10225
10284
  input: {
10226
10285
  param: {
10227
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10286
+ 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";
10228
10287
  language: string;
10229
10288
  };
10230
10289
  } & {
@@ -10248,7 +10307,7 @@ declare function init(config: AuthHeroConfig): {
10248
10307
  $delete: {
10249
10308
  input: {
10250
10309
  param: {
10251
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10310
+ 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";
10252
10311
  language: string;
10253
10312
  };
10254
10313
  } & {
@@ -10340,7 +10399,7 @@ declare function init(config: AuthHeroConfig): {
10340
10399
  active?: boolean | undefined;
10341
10400
  } | undefined;
10342
10401
  signup?: {
10343
- status?: "optional" | "required" | "disabled" | undefined;
10402
+ status?: "required" | "optional" | "disabled" | undefined;
10344
10403
  verification?: {
10345
10404
  active?: boolean | undefined;
10346
10405
  } | undefined;
@@ -10350,14 +10409,14 @@ declare function init(config: AuthHeroConfig): {
10350
10409
  } | undefined;
10351
10410
  unique?: boolean | undefined;
10352
10411
  profile_required?: boolean | undefined;
10353
- verification_method?: "link" | "code" | undefined;
10412
+ verification_method?: "code" | "link" | undefined;
10354
10413
  } | undefined;
10355
10414
  username?: {
10356
10415
  identifier?: {
10357
10416
  active?: boolean | undefined;
10358
10417
  } | undefined;
10359
10418
  signup?: {
10360
- status?: "optional" | "required" | "disabled" | undefined;
10419
+ status?: "required" | "optional" | "disabled" | undefined;
10361
10420
  } | undefined;
10362
10421
  validation?: {
10363
10422
  max_length?: number | undefined;
@@ -10374,7 +10433,7 @@ declare function init(config: AuthHeroConfig): {
10374
10433
  active?: boolean | undefined;
10375
10434
  } | undefined;
10376
10435
  signup?: {
10377
- status?: "optional" | "required" | "disabled" | undefined;
10436
+ status?: "required" | "optional" | "disabled" | undefined;
10378
10437
  } | undefined;
10379
10438
  } | undefined;
10380
10439
  } | undefined;
@@ -10474,7 +10533,7 @@ declare function init(config: AuthHeroConfig): {
10474
10533
  active?: boolean | undefined;
10475
10534
  } | undefined;
10476
10535
  signup?: {
10477
- status?: "optional" | "required" | "disabled" | undefined;
10536
+ status?: "required" | "optional" | "disabled" | undefined;
10478
10537
  verification?: {
10479
10538
  active?: boolean | undefined;
10480
10539
  } | undefined;
@@ -10484,14 +10543,14 @@ declare function init(config: AuthHeroConfig): {
10484
10543
  } | undefined;
10485
10544
  unique?: boolean | undefined;
10486
10545
  profile_required?: boolean | undefined;
10487
- verification_method?: "link" | "code" | undefined;
10546
+ verification_method?: "code" | "link" | undefined;
10488
10547
  } | undefined;
10489
10548
  username?: {
10490
10549
  identifier?: {
10491
10550
  active?: boolean | undefined;
10492
10551
  } | undefined;
10493
10552
  signup?: {
10494
- status?: "optional" | "required" | "disabled" | undefined;
10553
+ status?: "required" | "optional" | "disabled" | undefined;
10495
10554
  } | undefined;
10496
10555
  validation?: {
10497
10556
  max_length?: number | undefined;
@@ -10508,7 +10567,7 @@ declare function init(config: AuthHeroConfig): {
10508
10567
  active?: boolean | undefined;
10509
10568
  } | undefined;
10510
10569
  signup?: {
10511
- status?: "optional" | "required" | "disabled" | undefined;
10570
+ status?: "required" | "optional" | "disabled" | undefined;
10512
10571
  } | undefined;
10513
10572
  } | undefined;
10514
10573
  } | undefined;
@@ -10624,7 +10683,7 @@ declare function init(config: AuthHeroConfig): {
10624
10683
  active?: boolean | undefined;
10625
10684
  } | undefined;
10626
10685
  signup?: {
10627
- status?: "optional" | "required" | "disabled" | undefined;
10686
+ status?: "required" | "optional" | "disabled" | undefined;
10628
10687
  verification?: {
10629
10688
  active?: boolean | undefined;
10630
10689
  } | undefined;
@@ -10634,14 +10693,14 @@ declare function init(config: AuthHeroConfig): {
10634
10693
  } | undefined;
10635
10694
  unique?: boolean | undefined;
10636
10695
  profile_required?: boolean | undefined;
10637
- verification_method?: "link" | "code" | undefined;
10696
+ verification_method?: "code" | "link" | undefined;
10638
10697
  } | undefined;
10639
10698
  username?: {
10640
10699
  identifier?: {
10641
10700
  active?: boolean | undefined;
10642
10701
  } | undefined;
10643
10702
  signup?: {
10644
- status?: "optional" | "required" | "disabled" | undefined;
10703
+ status?: "required" | "optional" | "disabled" | undefined;
10645
10704
  } | undefined;
10646
10705
  validation?: {
10647
10706
  max_length?: number | undefined;
@@ -10658,7 +10717,7 @@ declare function init(config: AuthHeroConfig): {
10658
10717
  active?: boolean | undefined;
10659
10718
  } | undefined;
10660
10719
  signup?: {
10661
- status?: "optional" | "required" | "disabled" | undefined;
10720
+ status?: "required" | "optional" | "disabled" | undefined;
10662
10721
  } | undefined;
10663
10722
  } | undefined;
10664
10723
  } | undefined;
@@ -10803,7 +10862,7 @@ declare function init(config: AuthHeroConfig): {
10803
10862
  active?: boolean | undefined;
10804
10863
  } | undefined;
10805
10864
  signup?: {
10806
- status?: "optional" | "required" | "disabled" | undefined;
10865
+ status?: "required" | "optional" | "disabled" | undefined;
10807
10866
  verification?: {
10808
10867
  active?: boolean | undefined;
10809
10868
  } | undefined;
@@ -10813,14 +10872,14 @@ declare function init(config: AuthHeroConfig): {
10813
10872
  } | undefined;
10814
10873
  unique?: boolean | undefined;
10815
10874
  profile_required?: boolean | undefined;
10816
- verification_method?: "link" | "code" | undefined;
10875
+ verification_method?: "code" | "link" | undefined;
10817
10876
  } | undefined;
10818
10877
  username?: {
10819
10878
  identifier?: {
10820
10879
  active?: boolean | undefined;
10821
10880
  } | undefined;
10822
10881
  signup?: {
10823
- status?: "optional" | "required" | "disabled" | undefined;
10882
+ status?: "required" | "optional" | "disabled" | undefined;
10824
10883
  } | undefined;
10825
10884
  validation?: {
10826
10885
  max_length?: number | undefined;
@@ -10837,7 +10896,7 @@ declare function init(config: AuthHeroConfig): {
10837
10896
  active?: boolean | undefined;
10838
10897
  } | undefined;
10839
10898
  signup?: {
10840
- status?: "optional" | "required" | "disabled" | undefined;
10899
+ status?: "required" | "optional" | "disabled" | undefined;
10841
10900
  } | undefined;
10842
10901
  } | undefined;
10843
10902
  } | undefined;
@@ -10961,7 +11020,7 @@ declare function init(config: AuthHeroConfig): {
10961
11020
  active?: boolean | undefined;
10962
11021
  } | undefined;
10963
11022
  signup?: {
10964
- status?: "optional" | "required" | "disabled" | undefined;
11023
+ status?: "required" | "optional" | "disabled" | undefined;
10965
11024
  verification?: {
10966
11025
  active?: boolean | undefined;
10967
11026
  } | undefined;
@@ -10971,14 +11030,14 @@ declare function init(config: AuthHeroConfig): {
10971
11030
  } | undefined;
10972
11031
  unique?: boolean | undefined;
10973
11032
  profile_required?: boolean | undefined;
10974
- verification_method?: "link" | "code" | undefined;
11033
+ verification_method?: "code" | "link" | undefined;
10975
11034
  } | undefined;
10976
11035
  username?: {
10977
11036
  identifier?: {
10978
11037
  active?: boolean | undefined;
10979
11038
  } | undefined;
10980
11039
  signup?: {
10981
- status?: "optional" | "required" | "disabled" | undefined;
11040
+ status?: "required" | "optional" | "disabled" | undefined;
10982
11041
  } | undefined;
10983
11042
  validation?: {
10984
11043
  max_length?: number | undefined;
@@ -10995,7 +11054,7 @@ declare function init(config: AuthHeroConfig): {
10995
11054
  active?: boolean | undefined;
10996
11055
  } | undefined;
10997
11056
  signup?: {
10998
- status?: "optional" | "required" | "disabled" | undefined;
11057
+ status?: "required" | "optional" | "disabled" | undefined;
10999
11058
  } | undefined;
11000
11059
  } | undefined;
11001
11060
  } | undefined;
@@ -11111,7 +11170,7 @@ declare function init(config: AuthHeroConfig): {
11111
11170
  };
11112
11171
  } | {
11113
11172
  mode: "inline";
11114
- status: "success" | "error";
11173
+ status: "error" | "success";
11115
11174
  connection_id: string;
11116
11175
  connection_name: string;
11117
11176
  strategy: string;
@@ -12401,7 +12460,7 @@ declare function init(config: AuthHeroConfig): {
12401
12460
  };
12402
12461
  };
12403
12462
  output: {
12404
- type: "gd_send_sms" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12463
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12405
12464
  date: string;
12406
12465
  isMobile: boolean;
12407
12466
  log_id: string;
@@ -12440,7 +12499,7 @@ declare function init(config: AuthHeroConfig): {
12440
12499
  limit: number;
12441
12500
  length: number;
12442
12501
  logs: {
12443
- type: "gd_send_sms" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12502
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12444
12503
  date: string;
12445
12504
  isMobile: boolean;
12446
12505
  log_id: string;
@@ -12479,7 +12538,7 @@ declare function init(config: AuthHeroConfig): {
12479
12538
  next?: string | undefined;
12480
12539
  } | {
12481
12540
  logs: {
12482
- type: "gd_send_sms" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12541
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12483
12542
  date: string;
12484
12543
  isMobile: boolean;
12485
12544
  log_id: string;
@@ -12533,7 +12592,7 @@ declare function init(config: AuthHeroConfig): {
12533
12592
  };
12534
12593
  };
12535
12594
  output: {
12536
- type: "gd_send_sms" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12595
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12537
12596
  date: string;
12538
12597
  isMobile: boolean;
12539
12598
  log_id: string;
@@ -12919,7 +12978,13 @@ declare function init(config: AuthHeroConfig): {
12919
12978
  [x: string]: any;
12920
12979
  } | undefined;
12921
12980
  oidc_logout?: {
12922
- [x: string]: any;
12981
+ [x: string]: hono_utils_types.JSONValue;
12982
+ backchannel_logout_urls?: string[] | undefined;
12983
+ backchannel_logout_initiators?: {
12984
+ [x: string]: hono_utils_types.JSONValue;
12985
+ mode?: "custom" | "all" | undefined;
12986
+ selected_initiators?: string[] | undefined;
12987
+ } | undefined;
12923
12988
  } | undefined;
12924
12989
  grant_types?: string[] | undefined;
12925
12990
  jwt_configuration?: {
@@ -12938,7 +13003,7 @@ declare function init(config: AuthHeroConfig): {
12938
13003
  addons?: {
12939
13004
  [x: string]: any;
12940
13005
  } | undefined;
12941
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13006
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12942
13007
  client_metadata?: {
12943
13008
  [x: string]: string;
12944
13009
  } | undefined;
@@ -13015,7 +13080,13 @@ declare function init(config: AuthHeroConfig): {
13015
13080
  [x: string]: any;
13016
13081
  } | undefined;
13017
13082
  oidc_logout?: {
13018
- [x: string]: any;
13083
+ [x: string]: hono_utils_types.JSONValue;
13084
+ backchannel_logout_urls?: string[] | undefined;
13085
+ backchannel_logout_initiators?: {
13086
+ [x: string]: hono_utils_types.JSONValue;
13087
+ mode?: "custom" | "all" | undefined;
13088
+ selected_initiators?: string[] | undefined;
13089
+ } | undefined;
13019
13090
  } | undefined;
13020
13091
  grant_types?: string[] | undefined;
13021
13092
  jwt_configuration?: {
@@ -13034,7 +13105,7 @@ declare function init(config: AuthHeroConfig): {
13034
13105
  addons?: {
13035
13106
  [x: string]: any;
13036
13107
  } | undefined;
13037
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13108
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13038
13109
  client_metadata?: {
13039
13110
  [x: string]: string;
13040
13111
  } | undefined;
@@ -13111,7 +13182,13 @@ declare function init(config: AuthHeroConfig): {
13111
13182
  [x: string]: any;
13112
13183
  } | undefined;
13113
13184
  oidc_logout?: {
13114
- [x: string]: any;
13185
+ [x: string]: hono_utils_types.JSONValue;
13186
+ backchannel_logout_urls?: string[] | undefined;
13187
+ backchannel_logout_initiators?: {
13188
+ [x: string]: hono_utils_types.JSONValue;
13189
+ mode?: "custom" | "all" | undefined;
13190
+ selected_initiators?: string[] | undefined;
13191
+ } | undefined;
13115
13192
  } | undefined;
13116
13193
  grant_types?: string[] | undefined;
13117
13194
  jwt_configuration?: {
@@ -13130,7 +13207,7 @@ declare function init(config: AuthHeroConfig): {
13130
13207
  addons?: {
13131
13208
  [x: string]: any;
13132
13209
  } | undefined;
13133
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13210
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13134
13211
  client_metadata?: {
13135
13212
  [x: string]: string;
13136
13213
  } | undefined;
@@ -13222,7 +13299,13 @@ declare function init(config: AuthHeroConfig): {
13222
13299
  [x: string]: any;
13223
13300
  } | undefined;
13224
13301
  oidc_logout?: {
13225
- [x: string]: any;
13302
+ [x: string]: hono_utils_types.JSONValue;
13303
+ backchannel_logout_urls?: string[] | undefined;
13304
+ backchannel_logout_initiators?: {
13305
+ [x: string]: hono_utils_types.JSONValue;
13306
+ mode?: "custom" | "all" | undefined;
13307
+ selected_initiators?: string[] | undefined;
13308
+ } | undefined;
13226
13309
  } | undefined;
13227
13310
  grant_types?: string[] | undefined;
13228
13311
  jwt_configuration?: {
@@ -13241,7 +13324,7 @@ declare function init(config: AuthHeroConfig): {
13241
13324
  addons?: {
13242
13325
  [x: string]: any;
13243
13326
  } | undefined;
13244
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13327
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13245
13328
  client_metadata?: {
13246
13329
  [x: string]: string;
13247
13330
  } | undefined;
@@ -13337,7 +13420,15 @@ declare function init(config: AuthHeroConfig): {
13337
13420
  connections?: string[] | undefined;
13338
13421
  allowed_logout_urls?: string[] | undefined;
13339
13422
  session_transfer?: Record<string, any> | undefined;
13340
- oidc_logout?: Record<string, any> | undefined;
13423
+ oidc_logout?: {
13424
+ [x: string]: unknown;
13425
+ backchannel_logout_urls?: string[] | undefined;
13426
+ backchannel_logout_initiators?: {
13427
+ [x: string]: unknown;
13428
+ mode?: "custom" | "all" | undefined;
13429
+ selected_initiators?: string[] | undefined;
13430
+ } | undefined;
13431
+ } | undefined;
13341
13432
  grant_types?: string[] | undefined;
13342
13433
  jwt_configuration?: Record<string, any> | undefined;
13343
13434
  signing_keys?: Record<string, any>[] | undefined;
@@ -13351,7 +13442,7 @@ declare function init(config: AuthHeroConfig): {
13351
13442
  custom_login_page_preview?: string | undefined;
13352
13443
  form_template?: string | undefined;
13353
13444
  addons?: Record<string, any> | undefined;
13354
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13445
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13355
13446
  client_metadata?: Record<string, string> | undefined;
13356
13447
  hide_sign_up_disabled_error?: boolean | undefined;
13357
13448
  mobile?: Record<string, any> | undefined;
@@ -13412,7 +13503,13 @@ declare function init(config: AuthHeroConfig): {
13412
13503
  [x: string]: any;
13413
13504
  } | undefined;
13414
13505
  oidc_logout?: {
13415
- [x: string]: any;
13506
+ [x: string]: hono_utils_types.JSONValue;
13507
+ backchannel_logout_urls?: string[] | undefined;
13508
+ backchannel_logout_initiators?: {
13509
+ [x: string]: hono_utils_types.JSONValue;
13510
+ mode?: "custom" | "all" | undefined;
13511
+ selected_initiators?: string[] | undefined;
13512
+ } | undefined;
13416
13513
  } | undefined;
13417
13514
  grant_types?: string[] | undefined;
13418
13515
  jwt_configuration?: {
@@ -13431,7 +13528,7 @@ declare function init(config: AuthHeroConfig): {
13431
13528
  addons?: {
13432
13529
  [x: string]: any;
13433
13530
  } | undefined;
13434
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13531
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13435
13532
  client_metadata?: {
13436
13533
  [x: string]: string;
13437
13534
  } | undefined;
@@ -13506,7 +13603,15 @@ declare function init(config: AuthHeroConfig): {
13506
13603
  connections?: string[] | undefined;
13507
13604
  allowed_logout_urls?: string[] | undefined;
13508
13605
  session_transfer?: Record<string, any> | undefined;
13509
- oidc_logout?: Record<string, any> | undefined;
13606
+ oidc_logout?: {
13607
+ [x: string]: unknown;
13608
+ backchannel_logout_urls?: string[] | undefined;
13609
+ backchannel_logout_initiators?: {
13610
+ [x: string]: unknown;
13611
+ mode?: "custom" | "all" | undefined;
13612
+ selected_initiators?: string[] | undefined;
13613
+ } | undefined;
13614
+ } | undefined;
13510
13615
  grant_types?: string[] | undefined;
13511
13616
  jwt_configuration?: Record<string, any> | undefined;
13512
13617
  signing_keys?: Record<string, any>[] | undefined;
@@ -13520,7 +13625,7 @@ declare function init(config: AuthHeroConfig): {
13520
13625
  custom_login_page_preview?: string | undefined;
13521
13626
  form_template?: string | undefined;
13522
13627
  addons?: Record<string, any> | undefined;
13523
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13628
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13524
13629
  client_metadata?: Record<string, string> | undefined;
13525
13630
  hide_sign_up_disabled_error?: boolean | undefined;
13526
13631
  mobile?: Record<string, any> | undefined;
@@ -13581,7 +13686,13 @@ declare function init(config: AuthHeroConfig): {
13581
13686
  [x: string]: any;
13582
13687
  } | undefined;
13583
13688
  oidc_logout?: {
13584
- [x: string]: any;
13689
+ [x: string]: hono_utils_types.JSONValue;
13690
+ backchannel_logout_urls?: string[] | undefined;
13691
+ backchannel_logout_initiators?: {
13692
+ [x: string]: hono_utils_types.JSONValue;
13693
+ mode?: "custom" | "all" | undefined;
13694
+ selected_initiators?: string[] | undefined;
13695
+ } | undefined;
13585
13696
  } | undefined;
13586
13697
  grant_types?: string[] | undefined;
13587
13698
  jwt_configuration?: {
@@ -13600,7 +13711,7 @@ declare function init(config: AuthHeroConfig): {
13600
13711
  addons?: {
13601
13712
  [x: string]: any;
13602
13713
  } | undefined;
13603
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13714
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13604
13715
  client_metadata?: {
13605
13716
  [x: string]: string;
13606
13717
  } | undefined;
@@ -13722,7 +13833,7 @@ declare function init(config: AuthHeroConfig): {
13722
13833
  active?: boolean | undefined;
13723
13834
  } | undefined;
13724
13835
  signup?: {
13725
- status?: "optional" | "required" | "disabled" | undefined;
13836
+ status?: "required" | "optional" | "disabled" | undefined;
13726
13837
  verification?: {
13727
13838
  active?: boolean | undefined;
13728
13839
  } | undefined;
@@ -13732,14 +13843,14 @@ declare function init(config: AuthHeroConfig): {
13732
13843
  } | undefined;
13733
13844
  unique?: boolean | undefined;
13734
13845
  profile_required?: boolean | undefined;
13735
- verification_method?: "link" | "code" | undefined;
13846
+ verification_method?: "code" | "link" | undefined;
13736
13847
  } | undefined;
13737
13848
  username?: {
13738
13849
  identifier?: {
13739
13850
  active?: boolean | undefined;
13740
13851
  } | undefined;
13741
13852
  signup?: {
13742
- status?: "optional" | "required" | "disabled" | undefined;
13853
+ status?: "required" | "optional" | "disabled" | undefined;
13743
13854
  } | undefined;
13744
13855
  validation?: {
13745
13856
  max_length?: number | undefined;
@@ -13756,7 +13867,7 @@ declare function init(config: AuthHeroConfig): {
13756
13867
  active?: boolean | undefined;
13757
13868
  } | undefined;
13758
13869
  signup?: {
13759
- status?: "optional" | "required" | "disabled" | undefined;
13870
+ status?: "required" | "optional" | "disabled" | undefined;
13760
13871
  } | undefined;
13761
13872
  } | undefined;
13762
13873
  } | undefined;
@@ -13876,7 +13987,7 @@ declare function init(config: AuthHeroConfig): {
13876
13987
  active?: boolean | undefined;
13877
13988
  } | undefined;
13878
13989
  signup?: {
13879
- status?: "optional" | "required" | "disabled" | undefined;
13990
+ status?: "required" | "optional" | "disabled" | undefined;
13880
13991
  verification?: {
13881
13992
  active?: boolean | undefined;
13882
13993
  } | undefined;
@@ -13886,14 +13997,14 @@ declare function init(config: AuthHeroConfig): {
13886
13997
  } | undefined;
13887
13998
  unique?: boolean | undefined;
13888
13999
  profile_required?: boolean | undefined;
13889
- verification_method?: "link" | "code" | undefined;
14000
+ verification_method?: "code" | "link" | undefined;
13890
14001
  } | undefined;
13891
14002
  username?: {
13892
14003
  identifier?: {
13893
14004
  active?: boolean | undefined;
13894
14005
  } | undefined;
13895
14006
  signup?: {
13896
- status?: "optional" | "required" | "disabled" | undefined;
14007
+ status?: "required" | "optional" | "disabled" | undefined;
13897
14008
  } | undefined;
13898
14009
  validation?: {
13899
14010
  max_length?: number | undefined;
@@ -13910,7 +14021,7 @@ declare function init(config: AuthHeroConfig): {
13910
14021
  active?: boolean | undefined;
13911
14022
  } | undefined;
13912
14023
  signup?: {
13913
- status?: "optional" | "required" | "disabled" | undefined;
14024
+ status?: "required" | "optional" | "disabled" | undefined;
13914
14025
  } | undefined;
13915
14026
  } | undefined;
13916
14027
  } | undefined;
@@ -14867,7 +14978,7 @@ declare function init(config: AuthHeroConfig): {
14867
14978
  };
14868
14979
  };
14869
14980
  output: {
14870
- type: "gd_send_sms" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14981
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14871
14982
  date: string;
14872
14983
  isMobile: boolean;
14873
14984
  log_id: string;
@@ -14906,7 +15017,7 @@ declare function init(config: AuthHeroConfig): {
14906
15017
  limit: number;
14907
15018
  length: number;
14908
15019
  logs: {
14909
- type: "gd_send_sms" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
15020
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14910
15021
  date: string;
14911
15022
  isMobile: boolean;
14912
15023
  log_id: string;
@@ -15225,7 +15336,7 @@ declare function init(config: AuthHeroConfig): {
15225
15336
  };
15226
15337
  } & {
15227
15338
  json: {
15228
- template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15339
+ 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";
15229
15340
  body: string;
15230
15341
  from: string;
15231
15342
  subject: string;
@@ -15246,7 +15357,7 @@ declare function init(config: AuthHeroConfig): {
15246
15357
  };
15247
15358
  } & {
15248
15359
  json: {
15249
- template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15360
+ 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";
15250
15361
  body: string;
15251
15362
  from: string;
15252
15363
  subject: string;
@@ -15258,7 +15369,7 @@ declare function init(config: AuthHeroConfig): {
15258
15369
  };
15259
15370
  };
15260
15371
  output: {
15261
- template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15372
+ 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";
15262
15373
  body: string;
15263
15374
  from: string;
15264
15375
  subject: string;
@@ -15281,7 +15392,7 @@ declare function init(config: AuthHeroConfig): {
15281
15392
  };
15282
15393
  };
15283
15394
  output: {
15284
- name: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15395
+ 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";
15285
15396
  body: string;
15286
15397
  subject: string;
15287
15398
  }[];
@@ -15294,7 +15405,7 @@ declare function init(config: AuthHeroConfig): {
15294
15405
  $get: {
15295
15406
  input: {
15296
15407
  param: {
15297
- templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15408
+ 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";
15298
15409
  };
15299
15410
  } & {
15300
15411
  header: {
@@ -15307,7 +15418,7 @@ declare function init(config: AuthHeroConfig): {
15307
15418
  } | {
15308
15419
  input: {
15309
15420
  param: {
15310
- templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15421
+ 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";
15311
15422
  };
15312
15423
  } & {
15313
15424
  header: {
@@ -15315,7 +15426,7 @@ declare function init(config: AuthHeroConfig): {
15315
15426
  };
15316
15427
  };
15317
15428
  output: {
15318
- template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15429
+ 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";
15319
15430
  body: string;
15320
15431
  from: string;
15321
15432
  subject: string;
@@ -15334,7 +15445,7 @@ declare function init(config: AuthHeroConfig): {
15334
15445
  $put: {
15335
15446
  input: {
15336
15447
  param: {
15337
- templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15448
+ 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";
15338
15449
  };
15339
15450
  } & {
15340
15451
  header: {
@@ -15342,7 +15453,7 @@ declare function init(config: AuthHeroConfig): {
15342
15453
  };
15343
15454
  } & {
15344
15455
  json: {
15345
- template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15456
+ 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";
15346
15457
  body: string;
15347
15458
  subject: string;
15348
15459
  syntax?: "liquid" | undefined;
@@ -15354,7 +15465,7 @@ declare function init(config: AuthHeroConfig): {
15354
15465
  };
15355
15466
  };
15356
15467
  output: {
15357
- template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15468
+ 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";
15358
15469
  body: string;
15359
15470
  from: string;
15360
15471
  subject: string;
@@ -15373,7 +15484,7 @@ declare function init(config: AuthHeroConfig): {
15373
15484
  $patch: {
15374
15485
  input: {
15375
15486
  param: {
15376
- templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15487
+ 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";
15377
15488
  };
15378
15489
  } & {
15379
15490
  header: {
@@ -15381,7 +15492,7 @@ declare function init(config: AuthHeroConfig): {
15381
15492
  };
15382
15493
  } & {
15383
15494
  json: {
15384
- template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
15495
+ 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;
15385
15496
  body?: string | undefined;
15386
15497
  from?: string | undefined;
15387
15498
  subject?: string | undefined;
@@ -15398,7 +15509,7 @@ declare function init(config: AuthHeroConfig): {
15398
15509
  } | {
15399
15510
  input: {
15400
15511
  param: {
15401
- templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15512
+ 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";
15402
15513
  };
15403
15514
  } & {
15404
15515
  header: {
@@ -15406,7 +15517,7 @@ declare function init(config: AuthHeroConfig): {
15406
15517
  };
15407
15518
  } & {
15408
15519
  json: {
15409
- template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
15520
+ 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;
15410
15521
  body?: string | undefined;
15411
15522
  from?: string | undefined;
15412
15523
  subject?: string | undefined;
@@ -15418,7 +15529,7 @@ declare function init(config: AuthHeroConfig): {
15418
15529
  };
15419
15530
  };
15420
15531
  output: {
15421
- template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15532
+ 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";
15422
15533
  body: string;
15423
15534
  from: string;
15424
15535
  subject: string;
@@ -15437,7 +15548,7 @@ declare function init(config: AuthHeroConfig): {
15437
15548
  $delete: {
15438
15549
  input: {
15439
15550
  param: {
15440
- templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15551
+ 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";
15441
15552
  };
15442
15553
  } & {
15443
15554
  header: {
@@ -15450,7 +15561,7 @@ declare function init(config: AuthHeroConfig): {
15450
15561
  } | {
15451
15562
  input: {
15452
15563
  param: {
15453
- templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15564
+ 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";
15454
15565
  };
15455
15566
  } & {
15456
15567
  header: {
@@ -15467,7 +15578,7 @@ declare function init(config: AuthHeroConfig): {
15467
15578
  $post: {
15468
15579
  input: {
15469
15580
  param: {
15470
- templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
15581
+ 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";
15471
15582
  };
15472
15583
  } & {
15473
15584
  header: {
@@ -15750,7 +15861,7 @@ declare function init(config: AuthHeroConfig): {
15750
15861
  type: "auth0_managed_certs" | "self_managed_certs";
15751
15862
  custom_domain_id: string;
15752
15863
  primary: boolean;
15753
- status: "disabled" | "pending" | "ready" | "pending_verification";
15864
+ status: "pending" | "ready" | "disabled" | "pending_verification";
15754
15865
  verification_method?: "txt" | undefined;
15755
15866
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15756
15867
  domain_metadata?: {
@@ -15791,7 +15902,7 @@ declare function init(config: AuthHeroConfig): {
15791
15902
  type: "auth0_managed_certs" | "self_managed_certs";
15792
15903
  custom_domain_id: string;
15793
15904
  primary: boolean;
15794
- status: "disabled" | "pending" | "ready" | "pending_verification";
15905
+ status: "pending" | "ready" | "disabled" | "pending_verification";
15795
15906
  verification_method?: "txt" | undefined;
15796
15907
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15797
15908
  domain_metadata?: {
@@ -15855,7 +15966,7 @@ declare function init(config: AuthHeroConfig): {
15855
15966
  type: "auth0_managed_certs" | "self_managed_certs";
15856
15967
  custom_domain_id: string;
15857
15968
  primary: boolean;
15858
- status: "disabled" | "pending" | "ready" | "pending_verification";
15969
+ status: "pending" | "ready" | "disabled" | "pending_verification";
15859
15970
  verification_method?: "txt" | undefined;
15860
15971
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15861
15972
  domain_metadata?: {
@@ -15902,7 +16013,7 @@ declare function init(config: AuthHeroConfig): {
15902
16013
  type: "auth0_managed_certs" | "self_managed_certs";
15903
16014
  custom_domain_id: string;
15904
16015
  primary: boolean;
15905
- status: "disabled" | "pending" | "ready" | "pending_verification";
16016
+ status: "pending" | "ready" | "disabled" | "pending_verification";
15906
16017
  verification_method?: "txt" | undefined;
15907
16018
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15908
16019
  domain_metadata?: {
@@ -15948,7 +16059,7 @@ declare function init(config: AuthHeroConfig): {
15948
16059
  type: "auth0_managed_certs" | "self_managed_certs";
15949
16060
  custom_domain_id: string;
15950
16061
  primary: boolean;
15951
- status: "disabled" | "pending" | "ready" | "pending_verification";
16062
+ status: "pending" | "ready" | "disabled" | "pending_verification";
15952
16063
  verification_method?: "txt" | undefined;
15953
16064
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15954
16065
  domain_metadata?: {
@@ -15989,7 +16100,7 @@ declare function init(config: AuthHeroConfig): {
15989
16100
  type: "auth0_managed_certs" | "self_managed_certs";
15990
16101
  custom_domain_id: string;
15991
16102
  primary: boolean;
15992
- status: "disabled" | "pending" | "ready" | "pending_verification";
16103
+ status: "pending" | "ready" | "disabled" | "pending_verification";
15993
16104
  verification_method?: "txt" | undefined;
15994
16105
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15995
16106
  domain_metadata?: {
@@ -16419,7 +16530,7 @@ declare function init(config: AuthHeroConfig): {
16419
16530
  } & {
16420
16531
  json: {
16421
16532
  body?: string | undefined;
16422
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
16533
+ screen?: "password" | "identifier" | "signup" | "login" | undefined;
16423
16534
  branding?: {
16424
16535
  colors?: {
16425
16536
  primary: string;
@@ -16710,7 +16821,7 @@ declare function init(config: AuthHeroConfig): {
16710
16821
  logs: {
16711
16822
  action_name: string;
16712
16823
  lines: {
16713
- level: "log" | "error" | "info" | "warn" | "debug";
16824
+ level: "error" | "log" | "info" | "warn" | "debug";
16714
16825
  message: string;
16715
16826
  }[];
16716
16827
  }[];
@@ -17379,7 +17490,7 @@ declare function init(config: AuthHeroConfig): {
17379
17490
  args: hono_utils_types.JSONValue[];
17380
17491
  }[];
17381
17492
  logs: {
17382
- level: "log" | "error" | "info" | "warn" | "debug";
17493
+ level: "error" | "log" | "info" | "warn" | "debug";
17383
17494
  message: string;
17384
17495
  }[];
17385
17496
  error?: string | undefined;
@@ -17690,7 +17801,7 @@ declare function init(config: AuthHeroConfig): {
17690
17801
  scope?: string | undefined;
17691
17802
  grant_types?: string[] | undefined;
17692
17803
  response_types?: string[] | undefined;
17693
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
17804
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
17694
17805
  jwks_uri?: string | undefined;
17695
17806
  jwks?: Record<string, unknown> | undefined;
17696
17807
  software_id?: string | undefined;
@@ -17779,7 +17890,7 @@ declare function init(config: AuthHeroConfig): {
17779
17890
  scope?: string | undefined;
17780
17891
  grant_types?: string[] | undefined;
17781
17892
  response_types?: string[] | undefined;
17782
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
17893
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
17783
17894
  jwks_uri?: string | undefined;
17784
17895
  jwks?: Record<string, unknown> | undefined;
17785
17896
  software_id?: string | undefined;
@@ -17836,7 +17947,7 @@ declare function init(config: AuthHeroConfig): {
17836
17947
  client_id: string;
17837
17948
  redirect_url?: string | undefined;
17838
17949
  login_hint?: string | undefined;
17839
- screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
17950
+ screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
17840
17951
  };
17841
17952
  };
17842
17953
  output: {};
@@ -17848,7 +17959,7 @@ declare function init(config: AuthHeroConfig): {
17848
17959
  client_id: string;
17849
17960
  redirect_url?: string | undefined;
17850
17961
  login_hint?: string | undefined;
17851
- screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
17962
+ screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
17852
17963
  };
17853
17964
  };
17854
17965
  output: {
@@ -17925,17 +18036,9 @@ declare function init(config: AuthHeroConfig): {
17925
18036
  request_uri?: string | undefined;
17926
18037
  };
17927
18038
  };
17928
- output: string | {
17929
- access_token: string;
17930
- token_type: string;
17931
- expires_in: number;
17932
- id_token?: string | undefined;
17933
- scope?: string | undefined;
17934
- state?: string | undefined;
17935
- refresh_token?: string | undefined;
17936
- };
17937
- outputFormat: "json";
17938
- status: 200;
18039
+ output: {};
18040
+ outputFormat: string;
18041
+ status: 302;
17939
18042
  } | {
17940
18043
  input: {
17941
18044
  query: {
@@ -17967,9 +18070,17 @@ declare function init(config: AuthHeroConfig): {
17967
18070
  request_uri?: string | undefined;
17968
18071
  };
17969
18072
  };
17970
- output: {};
17971
- outputFormat: string;
17972
- status: 302;
18073
+ output: string | {
18074
+ access_token: string;
18075
+ token_type: string;
18076
+ expires_in: number;
18077
+ id_token?: string | undefined;
18078
+ scope?: string | undefined;
18079
+ state?: string | undefined;
18080
+ refresh_token?: string | undefined;
18081
+ };
18082
+ outputFormat: "json";
18083
+ status: 200;
17973
18084
  } | {
17974
18085
  input: {
17975
18086
  query: {
@@ -18123,21 +18234,21 @@ declare function init(config: AuthHeroConfig): {
18123
18234
  connection: "email";
18124
18235
  client_id: string;
18125
18236
  email: string;
18126
- send: "link" | "code";
18237
+ send: "code" | "link";
18127
18238
  authParams: {
18239
+ username?: string | undefined;
18240
+ state?: string | undefined;
18241
+ audience?: string | undefined;
18128
18242
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
18129
18243
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
18130
18244
  scope?: string | undefined;
18131
- username?: string | undefined;
18245
+ organization?: string | undefined;
18132
18246
  nonce?: string | undefined;
18133
- state?: string | undefined;
18134
- audience?: string | undefined;
18135
- code_challenge?: string | undefined;
18136
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
18137
- redirect_uri?: string | undefined;
18138
18247
  act_as?: string | undefined;
18139
- organization?: string | undefined;
18248
+ redirect_uri?: string | undefined;
18140
18249
  prompt?: string | undefined;
18250
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
18251
+ code_challenge?: string | undefined;
18141
18252
  ui_locales?: string | undefined;
18142
18253
  max_age?: number | undefined;
18143
18254
  acr_values?: string | undefined;
@@ -18159,21 +18270,21 @@ declare function init(config: AuthHeroConfig): {
18159
18270
  client_id: string;
18160
18271
  connection: "sms";
18161
18272
  phone_number: string;
18162
- send: "link" | "code";
18273
+ send: "code" | "link";
18163
18274
  authParams: {
18275
+ username?: string | undefined;
18276
+ state?: string | undefined;
18277
+ audience?: string | undefined;
18164
18278
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
18165
18279
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
18166
18280
  scope?: string | undefined;
18167
- username?: string | undefined;
18281
+ organization?: string | undefined;
18168
18282
  nonce?: string | undefined;
18169
- state?: string | undefined;
18170
- audience?: string | undefined;
18171
- code_challenge?: string | undefined;
18172
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
18173
- redirect_uri?: string | undefined;
18174
18283
  act_as?: string | undefined;
18175
- organization?: string | undefined;
18284
+ redirect_uri?: string | undefined;
18176
18285
  prompt?: string | undefined;
18286
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
18287
+ code_challenge?: string | undefined;
18177
18288
  ui_locales?: string | undefined;
18178
18289
  max_age?: number | undefined;
18179
18290
  acr_values?: string | undefined;
@@ -18305,14 +18416,14 @@ declare function init(config: AuthHeroConfig): {
18305
18416
  input: {
18306
18417
  form: {
18307
18418
  token: string;
18308
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18419
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
18309
18420
  client_id?: string | undefined;
18310
18421
  client_secret?: string | undefined;
18311
18422
  };
18312
18423
  } & {
18313
18424
  json: {
18314
18425
  token: string;
18315
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18426
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
18316
18427
  client_id?: string | undefined;
18317
18428
  client_secret?: string | undefined;
18318
18429
  };
@@ -18324,14 +18435,14 @@ declare function init(config: AuthHeroConfig): {
18324
18435
  input: {
18325
18436
  form: {
18326
18437
  token: string;
18327
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18438
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
18328
18439
  client_id?: string | undefined;
18329
18440
  client_secret?: string | undefined;
18330
18441
  };
18331
18442
  } & {
18332
18443
  json: {
18333
18444
  token: string;
18334
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18445
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
18335
18446
  client_id?: string | undefined;
18336
18447
  client_secret?: string | undefined;
18337
18448
  };
@@ -18346,14 +18457,14 @@ declare function init(config: AuthHeroConfig): {
18346
18457
  input: {
18347
18458
  form: {
18348
18459
  token: string;
18349
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18460
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
18350
18461
  client_id?: string | undefined;
18351
18462
  client_secret?: string | undefined;
18352
18463
  };
18353
18464
  } & {
18354
18465
  json: {
18355
18466
  token: string;
18356
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18467
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
18357
18468
  client_id?: string | undefined;
18358
18469
  client_secret?: string | undefined;
18359
18470
  };
@@ -18888,8 +18999,8 @@ declare function init(config: AuthHeroConfig): {
18888
18999
  input: {};
18889
19000
  output: {
18890
19001
  keys: {
18891
- alg: "HS256" | "HS384" | "HS512" | "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512";
18892
- kty: "RSA" | "EC" | "oct";
19002
+ alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
19003
+ kty: "EC" | "RSA" | "oct";
18893
19004
  kid?: string | undefined;
18894
19005
  use?: "sig" | "enc" | undefined;
18895
19006
  n?: string | undefined;
@@ -18933,6 +19044,8 @@ declare function init(config: AuthHeroConfig): {
18933
19044
  claims_parameter_supported?: boolean | undefined;
18934
19045
  request_object_signing_alg_values_supported?: string[] | undefined;
18935
19046
  client_id_metadata_document_supported?: boolean | undefined;
19047
+ backchannel_logout_supported?: boolean | undefined;
19048
+ backchannel_logout_session_supported?: boolean | undefined;
18936
19049
  };
18937
19050
  outputFormat: "json";
18938
19051
  status: 200;
@@ -18966,6 +19079,8 @@ declare function init(config: AuthHeroConfig): {
18966
19079
  claims_parameter_supported?: boolean | undefined;
18967
19080
  request_object_signing_alg_values_supported?: string[] | undefined;
18968
19081
  client_id_metadata_document_supported?: boolean | undefined;
19082
+ backchannel_logout_supported?: boolean | undefined;
19083
+ backchannel_logout_session_supported?: boolean | undefined;
18969
19084
  };
18970
19085
  outputFormat: "json";
18971
19086
  status: 200;
@@ -19078,7 +19193,7 @@ declare function init(config: AuthHeroConfig): {
19078
19193
  };
19079
19194
  output: {};
19080
19195
  outputFormat: string;
19081
- status: 302;
19196
+ status: 200;
19082
19197
  } | {
19083
19198
  input: {
19084
19199
  query: {
@@ -19092,7 +19207,7 @@ declare function init(config: AuthHeroConfig): {
19092
19207
  };
19093
19208
  output: {};
19094
19209
  outputFormat: string;
19095
- status: 200;
19210
+ status: 302;
19096
19211
  } | {
19097
19212
  input: {
19098
19213
  query: {
@@ -19701,7 +19816,7 @@ declare function init(config: AuthHeroConfig): {
19701
19816
  } & {
19702
19817
  form: {
19703
19818
  username: string;
19704
- login_selection?: "code" | "password" | undefined;
19819
+ login_selection?: "password" | "code" | undefined;
19705
19820
  };
19706
19821
  };
19707
19822
  output: {};
@@ -19715,7 +19830,7 @@ declare function init(config: AuthHeroConfig): {
19715
19830
  } & {
19716
19831
  form: {
19717
19832
  username: string;
19718
- login_selection?: "code" | "password" | undefined;
19833
+ login_selection?: "password" | "code" | undefined;
19719
19834
  };
19720
19835
  };
19721
19836
  output: {};
@@ -20080,7 +20195,7 @@ declare function init(config: AuthHeroConfig): {
20080
20195
  $get: {
20081
20196
  input: {
20082
20197
  param: {
20083
- screen: "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
20198
+ 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";
20084
20199
  };
20085
20200
  } & {
20086
20201
  query: {
@@ -20096,7 +20211,7 @@ declare function init(config: AuthHeroConfig): {
20096
20211
  } | {
20097
20212
  input: {
20098
20213
  param: {
20099
- screen: "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
20214
+ 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";
20100
20215
  };
20101
20216
  } & {
20102
20217
  query: {
@@ -20112,7 +20227,7 @@ declare function init(config: AuthHeroConfig): {
20112
20227
  } | {
20113
20228
  input: {
20114
20229
  param: {
20115
- screen: "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
20230
+ 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";
20116
20231
  };
20117
20232
  } & {
20118
20233
  query: {
@@ -20132,7 +20247,7 @@ declare function init(config: AuthHeroConfig): {
20132
20247
  $post: {
20133
20248
  input: {
20134
20249
  param: {
20135
- 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";
20250
+ 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";
20136
20251
  };
20137
20252
  } & {
20138
20253
  query: {
@@ -20150,7 +20265,7 @@ declare function init(config: AuthHeroConfig): {
20150
20265
  } | {
20151
20266
  input: {
20152
20267
  param: {
20153
- 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";
20268
+ 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";
20154
20269
  };
20155
20270
  } & {
20156
20271
  query: {