authhero 8.8.1 → 8.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +109 -107
  3. package/dist/authhero.d.ts +271 -228
  4. package/dist/authhero.mjs +11289 -10645
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/password.d.ts +10 -1
  8. package/dist/types/authentication-flows/passwordless.d.ts +4 -4
  9. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  10. package/dist/types/helpers/tenant-export-import/export.d.ts +21 -0
  11. package/dist/types/helpers/tenant-export-import/import.d.ts +12 -0
  12. package/dist/types/helpers/tenant-export-import/index.d.ts +4 -0
  13. package/dist/types/helpers/tenant-export-import/manifest.d.ts +12 -0
  14. package/dist/types/helpers/tenant-export-import/row-access.d.ts +20 -0
  15. package/dist/types/helpers/tenant-export-import/types.d.ts +53 -0
  16. package/dist/types/index.d.ts +270 -227
  17. package/dist/types/routes/auth-api/index.d.ts +28 -28
  18. package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
  19. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  20. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  21. package/dist/types/routes/auth-api/token.d.ts +10 -10
  22. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  23. package/dist/types/routes/management-api/branding.d.ts +12 -12
  24. package/dist/types/routes/management-api/clients.d.ts +9 -9
  25. package/dist/types/routes/management-api/connections.d.ts +6 -6
  26. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  27. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  28. package/dist/types/routes/management-api/forms.d.ts +126 -126
  29. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  30. package/dist/types/routes/management-api/index.d.ts +237 -194
  31. package/dist/types/routes/management-api/logs.d.ts +3 -3
  32. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  33. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  34. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  35. package/dist/types/routes/management-api/tenant-export-import.d.ts +49 -0
  36. package/dist/types/routes/management-api/tenants.d.ts +1 -1
  37. package/dist/types/routes/management-api/themes.d.ts +6 -6
  38. package/dist/types/routes/management-api/users.d.ts +2 -2
  39. package/dist/types/routes/universal-login/common.d.ts +10 -10
  40. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  41. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  42. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  43. package/dist/types/types/IdToken.d.ts +2 -2
  44. package/package.json +5 -5
@@ -54,6 +54,49 @@ export declare function init(config: AuthHeroConfig): {
54
54
  Bindings: Bindings;
55
55
  Variables: Variables;
56
56
  }, import("hono/types").MergeSchemaPath<{
57
+ "/export": {
58
+ $get: {
59
+ input: {
60
+ query: {
61
+ include_password_hashes?: "true" | "false" | undefined;
62
+ gzip?: "true" | "false" | undefined;
63
+ };
64
+ } & {
65
+ header: {
66
+ "tenant-id"?: string | undefined;
67
+ };
68
+ };
69
+ output: Response;
70
+ outputFormat: "json";
71
+ status: import("hono/utils/http-status").StatusCode;
72
+ };
73
+ };
74
+ } & {
75
+ "/import": {
76
+ $post: {
77
+ input: {
78
+ query: {
79
+ include_password_hashes?: "true" | "false" | undefined;
80
+ };
81
+ } & {
82
+ header: {
83
+ "tenant-id"?: string | undefined;
84
+ };
85
+ };
86
+ output: {
87
+ counts: {
88
+ [x: string]: number;
89
+ };
90
+ errors: {
91
+ entity: string;
92
+ error: string;
93
+ }[];
94
+ };
95
+ outputFormat: "json";
96
+ status: 200;
97
+ };
98
+ };
99
+ }, "/tenant-data"> & import("hono/types").MergeSchemaPath<{
57
100
  "/": {
58
101
  $get: {
59
102
  input: {
@@ -227,7 +270,7 @@ export declare function init(config: AuthHeroConfig): {
227
270
  };
228
271
  };
229
272
  output: {
230
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
273
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
231
274
  enabled: boolean;
232
275
  trial_expired?: boolean | undefined;
233
276
  }[];
@@ -382,7 +425,7 @@ export declare function init(config: AuthHeroConfig): {
382
425
  $get: {
383
426
  input: {
384
427
  param: {
385
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
428
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
386
429
  };
387
430
  } & {
388
431
  header: {
@@ -390,7 +433,7 @@ export declare function init(config: AuthHeroConfig): {
390
433
  };
391
434
  };
392
435
  output: {
393
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
436
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
394
437
  enabled: boolean;
395
438
  trial_expired?: boolean | undefined;
396
439
  };
@@ -403,7 +446,7 @@ export declare function init(config: AuthHeroConfig): {
403
446
  $put: {
404
447
  input: {
405
448
  param: {
406
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
449
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
407
450
  };
408
451
  } & {
409
452
  header: {
@@ -415,7 +458,7 @@ export declare function init(config: AuthHeroConfig): {
415
458
  };
416
459
  };
417
460
  output: {
418
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
461
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
419
462
  enabled: boolean;
420
463
  trial_expired?: boolean | undefined;
421
464
  };
@@ -1160,9 +1203,9 @@ export declare function init(config: AuthHeroConfig): {
1160
1203
  invitee: {
1161
1204
  email?: string | undefined;
1162
1205
  };
1163
- id?: string | undefined;
1164
1206
  app_metadata?: Record<string, any> | undefined;
1165
1207
  user_metadata?: Record<string, any> | undefined;
1208
+ id?: string | undefined;
1166
1209
  connection_id?: string | undefined;
1167
1210
  roles?: string[] | undefined;
1168
1211
  ttl_sec?: number | undefined;
@@ -2591,7 +2634,7 @@ export declare function init(config: AuthHeroConfig): {
2591
2634
  hint?: string | undefined;
2592
2635
  messages?: {
2593
2636
  text: string;
2594
- type: "error" | "success" | "info" | "warning";
2637
+ type: "success" | "error" | "info" | "warning";
2595
2638
  id?: number | undefined;
2596
2639
  }[] | undefined;
2597
2640
  required?: boolean | undefined;
@@ -2609,7 +2652,7 @@ export declare function init(config: AuthHeroConfig): {
2609
2652
  hint?: string | undefined;
2610
2653
  messages?: {
2611
2654
  text: string;
2612
- type: "error" | "success" | "info" | "warning";
2655
+ type: "success" | "error" | "info" | "warning";
2613
2656
  id?: number | undefined;
2614
2657
  }[] | undefined;
2615
2658
  required?: boolean | undefined;
@@ -2633,7 +2676,7 @@ export declare function init(config: AuthHeroConfig): {
2633
2676
  hint?: string | undefined;
2634
2677
  messages?: {
2635
2678
  text: string;
2636
- type: "error" | "success" | "info" | "warning";
2679
+ type: "success" | "error" | "info" | "warning";
2637
2680
  id?: number | undefined;
2638
2681
  }[] | undefined;
2639
2682
  required?: boolean | undefined;
@@ -2657,7 +2700,7 @@ export declare function init(config: AuthHeroConfig): {
2657
2700
  hint?: string | undefined;
2658
2701
  messages?: {
2659
2702
  text: string;
2660
- type: "error" | "success" | "info" | "warning";
2703
+ type: "success" | "error" | "info" | "warning";
2661
2704
  id?: number | undefined;
2662
2705
  }[] | undefined;
2663
2706
  required?: boolean | undefined;
@@ -2681,7 +2724,7 @@ export declare function init(config: AuthHeroConfig): {
2681
2724
  hint?: string | undefined;
2682
2725
  messages?: {
2683
2726
  text: string;
2684
- type: "error" | "success" | "info" | "warning";
2727
+ type: "success" | "error" | "info" | "warning";
2685
2728
  id?: number | undefined;
2686
2729
  }[] | undefined;
2687
2730
  required?: boolean | undefined;
@@ -2710,7 +2753,7 @@ export declare function init(config: AuthHeroConfig): {
2710
2753
  hint?: string | undefined;
2711
2754
  messages?: {
2712
2755
  text: string;
2713
- type: "error" | "success" | "info" | "warning";
2756
+ type: "success" | "error" | "info" | "warning";
2714
2757
  id?: number | undefined;
2715
2758
  }[] | undefined;
2716
2759
  required?: boolean | undefined;
@@ -2725,7 +2768,7 @@ export declare function init(config: AuthHeroConfig): {
2725
2768
  hint?: string | undefined;
2726
2769
  messages?: {
2727
2770
  text: string;
2728
- type: "error" | "success" | "info" | "warning";
2771
+ type: "success" | "error" | "info" | "warning";
2729
2772
  id?: number | undefined;
2730
2773
  }[] | undefined;
2731
2774
  required?: boolean | undefined;
@@ -2746,7 +2789,7 @@ export declare function init(config: AuthHeroConfig): {
2746
2789
  hint?: string | undefined;
2747
2790
  messages?: {
2748
2791
  text: string;
2749
- type: "error" | "success" | "info" | "warning";
2792
+ type: "success" | "error" | "info" | "warning";
2750
2793
  id?: number | undefined;
2751
2794
  }[] | undefined;
2752
2795
  required?: boolean | undefined;
@@ -2771,7 +2814,7 @@ export declare function init(config: AuthHeroConfig): {
2771
2814
  hint?: string | undefined;
2772
2815
  messages?: {
2773
2816
  text: string;
2774
- type: "error" | "success" | "info" | "warning";
2817
+ type: "success" | "error" | "info" | "warning";
2775
2818
  id?: number | undefined;
2776
2819
  }[] | undefined;
2777
2820
  required?: boolean | undefined;
@@ -2790,7 +2833,7 @@ export declare function init(config: AuthHeroConfig): {
2790
2833
  hint?: string | undefined;
2791
2834
  messages?: {
2792
2835
  text: string;
2793
- type: "error" | "success" | "info" | "warning";
2836
+ type: "success" | "error" | "info" | "warning";
2794
2837
  id?: number | undefined;
2795
2838
  }[] | undefined;
2796
2839
  required?: boolean | undefined;
@@ -2810,7 +2853,7 @@ export declare function init(config: AuthHeroConfig): {
2810
2853
  hint?: string | undefined;
2811
2854
  messages?: {
2812
2855
  text: string;
2813
- type: "error" | "success" | "info" | "warning";
2856
+ type: "success" | "error" | "info" | "warning";
2814
2857
  id?: number | undefined;
2815
2858
  }[] | undefined;
2816
2859
  required?: boolean | undefined;
@@ -2829,7 +2872,7 @@ export declare function init(config: AuthHeroConfig): {
2829
2872
  hint?: string | undefined;
2830
2873
  messages?: {
2831
2874
  text: string;
2832
- type: "error" | "success" | "info" | "warning";
2875
+ type: "success" | "error" | "info" | "warning";
2833
2876
  id?: number | undefined;
2834
2877
  }[] | undefined;
2835
2878
  required?: boolean | undefined;
@@ -2851,7 +2894,7 @@ export declare function init(config: AuthHeroConfig): {
2851
2894
  hint?: string | undefined;
2852
2895
  messages?: {
2853
2896
  text: string;
2854
- type: "error" | "success" | "info" | "warning";
2897
+ type: "success" | "error" | "info" | "warning";
2855
2898
  id?: number | undefined;
2856
2899
  }[] | undefined;
2857
2900
  required?: boolean | undefined;
@@ -2873,7 +2916,7 @@ export declare function init(config: AuthHeroConfig): {
2873
2916
  hint?: string | undefined;
2874
2917
  messages?: {
2875
2918
  text: string;
2876
- type: "error" | "success" | "info" | "warning";
2919
+ type: "success" | "error" | "info" | "warning";
2877
2920
  id?: number | undefined;
2878
2921
  }[] | undefined;
2879
2922
  required?: boolean | undefined;
@@ -2892,7 +2935,7 @@ export declare function init(config: AuthHeroConfig): {
2892
2935
  hint?: string | undefined;
2893
2936
  messages?: {
2894
2937
  text: string;
2895
- type: "error" | "success" | "info" | "warning";
2938
+ type: "success" | "error" | "info" | "warning";
2896
2939
  id?: number | undefined;
2897
2940
  }[] | undefined;
2898
2941
  required?: boolean | undefined;
@@ -2917,7 +2960,7 @@ export declare function init(config: AuthHeroConfig): {
2917
2960
  hint?: string | undefined;
2918
2961
  messages?: {
2919
2962
  text: string;
2920
- type: "error" | "success" | "info" | "warning";
2963
+ type: "success" | "error" | "info" | "warning";
2921
2964
  id?: number | undefined;
2922
2965
  }[] | undefined;
2923
2966
  required?: boolean | undefined;
@@ -2938,7 +2981,7 @@ export declare function init(config: AuthHeroConfig): {
2938
2981
  hint?: string | undefined;
2939
2982
  messages?: {
2940
2983
  text: string;
2941
- type: "error" | "success" | "info" | "warning";
2984
+ type: "success" | "error" | "info" | "warning";
2942
2985
  id?: number | undefined;
2943
2986
  }[] | undefined;
2944
2987
  required?: boolean | undefined;
@@ -2959,7 +3002,7 @@ export declare function init(config: AuthHeroConfig): {
2959
3002
  hint?: string | undefined;
2960
3003
  messages?: {
2961
3004
  text: string;
2962
- type: "error" | "success" | "info" | "warning";
3005
+ type: "success" | "error" | "info" | "warning";
2963
3006
  id?: number | undefined;
2964
3007
  }[] | undefined;
2965
3008
  required?: boolean | undefined;
@@ -3192,7 +3235,7 @@ export declare function init(config: AuthHeroConfig): {
3192
3235
  hint?: string | undefined;
3193
3236
  messages?: {
3194
3237
  text: string;
3195
- type: "error" | "success" | "info" | "warning";
3238
+ type: "success" | "error" | "info" | "warning";
3196
3239
  id?: number | undefined;
3197
3240
  }[] | undefined;
3198
3241
  required?: boolean | undefined;
@@ -3210,7 +3253,7 @@ export declare function init(config: AuthHeroConfig): {
3210
3253
  hint?: string | undefined;
3211
3254
  messages?: {
3212
3255
  text: string;
3213
- type: "error" | "success" | "info" | "warning";
3256
+ type: "success" | "error" | "info" | "warning";
3214
3257
  id?: number | undefined;
3215
3258
  }[] | undefined;
3216
3259
  required?: boolean | undefined;
@@ -3234,7 +3277,7 @@ export declare function init(config: AuthHeroConfig): {
3234
3277
  hint?: string | undefined;
3235
3278
  messages?: {
3236
3279
  text: string;
3237
- type: "error" | "success" | "info" | "warning";
3280
+ type: "success" | "error" | "info" | "warning";
3238
3281
  id?: number | undefined;
3239
3282
  }[] | undefined;
3240
3283
  required?: boolean | undefined;
@@ -3258,7 +3301,7 @@ export declare function init(config: AuthHeroConfig): {
3258
3301
  hint?: string | undefined;
3259
3302
  messages?: {
3260
3303
  text: string;
3261
- type: "error" | "success" | "info" | "warning";
3304
+ type: "success" | "error" | "info" | "warning";
3262
3305
  id?: number | undefined;
3263
3306
  }[] | undefined;
3264
3307
  required?: boolean | undefined;
@@ -3282,7 +3325,7 @@ export declare function init(config: AuthHeroConfig): {
3282
3325
  hint?: string | undefined;
3283
3326
  messages?: {
3284
3327
  text: string;
3285
- type: "error" | "success" | "info" | "warning";
3328
+ type: "success" | "error" | "info" | "warning";
3286
3329
  id?: number | undefined;
3287
3330
  }[] | undefined;
3288
3331
  required?: boolean | undefined;
@@ -3311,7 +3354,7 @@ export declare function init(config: AuthHeroConfig): {
3311
3354
  hint?: string | undefined;
3312
3355
  messages?: {
3313
3356
  text: string;
3314
- type: "error" | "success" | "info" | "warning";
3357
+ type: "success" | "error" | "info" | "warning";
3315
3358
  id?: number | undefined;
3316
3359
  }[] | undefined;
3317
3360
  required?: boolean | undefined;
@@ -3326,7 +3369,7 @@ export declare function init(config: AuthHeroConfig): {
3326
3369
  hint?: string | undefined;
3327
3370
  messages?: {
3328
3371
  text: string;
3329
- type: "error" | "success" | "info" | "warning";
3372
+ type: "success" | "error" | "info" | "warning";
3330
3373
  id?: number | undefined;
3331
3374
  }[] | undefined;
3332
3375
  required?: boolean | undefined;
@@ -3347,7 +3390,7 @@ export declare function init(config: AuthHeroConfig): {
3347
3390
  hint?: string | undefined;
3348
3391
  messages?: {
3349
3392
  text: string;
3350
- type: "error" | "success" | "info" | "warning";
3393
+ type: "success" | "error" | "info" | "warning";
3351
3394
  id?: number | undefined;
3352
3395
  }[] | undefined;
3353
3396
  required?: boolean | undefined;
@@ -3372,7 +3415,7 @@ export declare function init(config: AuthHeroConfig): {
3372
3415
  hint?: string | undefined;
3373
3416
  messages?: {
3374
3417
  text: string;
3375
- type: "error" | "success" | "info" | "warning";
3418
+ type: "success" | "error" | "info" | "warning";
3376
3419
  id?: number | undefined;
3377
3420
  }[] | undefined;
3378
3421
  required?: boolean | undefined;
@@ -3391,7 +3434,7 @@ export declare function init(config: AuthHeroConfig): {
3391
3434
  hint?: string | undefined;
3392
3435
  messages?: {
3393
3436
  text: string;
3394
- type: "error" | "success" | "info" | "warning";
3437
+ type: "success" | "error" | "info" | "warning";
3395
3438
  id?: number | undefined;
3396
3439
  }[] | undefined;
3397
3440
  required?: boolean | undefined;
@@ -3411,7 +3454,7 @@ export declare function init(config: AuthHeroConfig): {
3411
3454
  hint?: string | undefined;
3412
3455
  messages?: {
3413
3456
  text: string;
3414
- type: "error" | "success" | "info" | "warning";
3457
+ type: "success" | "error" | "info" | "warning";
3415
3458
  id?: number | undefined;
3416
3459
  }[] | undefined;
3417
3460
  required?: boolean | undefined;
@@ -3430,7 +3473,7 @@ export declare function init(config: AuthHeroConfig): {
3430
3473
  hint?: string | undefined;
3431
3474
  messages?: {
3432
3475
  text: string;
3433
- type: "error" | "success" | "info" | "warning";
3476
+ type: "success" | "error" | "info" | "warning";
3434
3477
  id?: number | undefined;
3435
3478
  }[] | undefined;
3436
3479
  required?: boolean | undefined;
@@ -3452,7 +3495,7 @@ export declare function init(config: AuthHeroConfig): {
3452
3495
  hint?: string | undefined;
3453
3496
  messages?: {
3454
3497
  text: string;
3455
- type: "error" | "success" | "info" | "warning";
3498
+ type: "success" | "error" | "info" | "warning";
3456
3499
  id?: number | undefined;
3457
3500
  }[] | undefined;
3458
3501
  required?: boolean | undefined;
@@ -3474,7 +3517,7 @@ export declare function init(config: AuthHeroConfig): {
3474
3517
  hint?: string | undefined;
3475
3518
  messages?: {
3476
3519
  text: string;
3477
- type: "error" | "success" | "info" | "warning";
3520
+ type: "success" | "error" | "info" | "warning";
3478
3521
  id?: number | undefined;
3479
3522
  }[] | undefined;
3480
3523
  required?: boolean | undefined;
@@ -3493,7 +3536,7 @@ export declare function init(config: AuthHeroConfig): {
3493
3536
  hint?: string | undefined;
3494
3537
  messages?: {
3495
3538
  text: string;
3496
- type: "error" | "success" | "info" | "warning";
3539
+ type: "success" | "error" | "info" | "warning";
3497
3540
  id?: number | undefined;
3498
3541
  }[] | undefined;
3499
3542
  required?: boolean | undefined;
@@ -3518,7 +3561,7 @@ export declare function init(config: AuthHeroConfig): {
3518
3561
  hint?: string | undefined;
3519
3562
  messages?: {
3520
3563
  text: string;
3521
- type: "error" | "success" | "info" | "warning";
3564
+ type: "success" | "error" | "info" | "warning";
3522
3565
  id?: number | undefined;
3523
3566
  }[] | undefined;
3524
3567
  required?: boolean | undefined;
@@ -3539,7 +3582,7 @@ export declare function init(config: AuthHeroConfig): {
3539
3582
  hint?: string | undefined;
3540
3583
  messages?: {
3541
3584
  text: string;
3542
- type: "error" | "success" | "info" | "warning";
3585
+ type: "success" | "error" | "info" | "warning";
3543
3586
  id?: number | undefined;
3544
3587
  }[] | undefined;
3545
3588
  required?: boolean | undefined;
@@ -3560,7 +3603,7 @@ export declare function init(config: AuthHeroConfig): {
3560
3603
  hint?: string | undefined;
3561
3604
  messages?: {
3562
3605
  text: string;
3563
- type: "error" | "success" | "info" | "warning";
3606
+ type: "success" | "error" | "info" | "warning";
3564
3607
  id?: number | undefined;
3565
3608
  }[] | undefined;
3566
3609
  required?: boolean | undefined;
@@ -3808,7 +3851,7 @@ export declare function init(config: AuthHeroConfig): {
3808
3851
  hint?: string | undefined;
3809
3852
  messages?: {
3810
3853
  text: string;
3811
- type: "error" | "success" | "info" | "warning";
3854
+ type: "success" | "error" | "info" | "warning";
3812
3855
  id?: number | undefined;
3813
3856
  }[] | undefined;
3814
3857
  required?: boolean | undefined;
@@ -3826,7 +3869,7 @@ export declare function init(config: AuthHeroConfig): {
3826
3869
  hint?: string | undefined;
3827
3870
  messages?: {
3828
3871
  text: string;
3829
- type: "error" | "success" | "info" | "warning";
3872
+ type: "success" | "error" | "info" | "warning";
3830
3873
  id?: number | undefined;
3831
3874
  }[] | undefined;
3832
3875
  required?: boolean | undefined;
@@ -3850,7 +3893,7 @@ export declare function init(config: AuthHeroConfig): {
3850
3893
  hint?: string | undefined;
3851
3894
  messages?: {
3852
3895
  text: string;
3853
- type: "error" | "success" | "info" | "warning";
3896
+ type: "success" | "error" | "info" | "warning";
3854
3897
  id?: number | undefined;
3855
3898
  }[] | undefined;
3856
3899
  required?: boolean | undefined;
@@ -3874,7 +3917,7 @@ export declare function init(config: AuthHeroConfig): {
3874
3917
  hint?: string | undefined;
3875
3918
  messages?: {
3876
3919
  text: string;
3877
- type: "error" | "success" | "info" | "warning";
3920
+ type: "success" | "error" | "info" | "warning";
3878
3921
  id?: number | undefined;
3879
3922
  }[] | undefined;
3880
3923
  required?: boolean | undefined;
@@ -3898,7 +3941,7 @@ export declare function init(config: AuthHeroConfig): {
3898
3941
  hint?: string | undefined;
3899
3942
  messages?: {
3900
3943
  text: string;
3901
- type: "error" | "success" | "info" | "warning";
3944
+ type: "success" | "error" | "info" | "warning";
3902
3945
  id?: number | undefined;
3903
3946
  }[] | undefined;
3904
3947
  required?: boolean | undefined;
@@ -3927,7 +3970,7 @@ export declare function init(config: AuthHeroConfig): {
3927
3970
  hint?: string | undefined;
3928
3971
  messages?: {
3929
3972
  text: string;
3930
- type: "error" | "success" | "info" | "warning";
3973
+ type: "success" | "error" | "info" | "warning";
3931
3974
  id?: number | undefined;
3932
3975
  }[] | undefined;
3933
3976
  required?: boolean | undefined;
@@ -3942,7 +3985,7 @@ export declare function init(config: AuthHeroConfig): {
3942
3985
  hint?: string | undefined;
3943
3986
  messages?: {
3944
3987
  text: string;
3945
- type: "error" | "success" | "info" | "warning";
3988
+ type: "success" | "error" | "info" | "warning";
3946
3989
  id?: number | undefined;
3947
3990
  }[] | undefined;
3948
3991
  required?: boolean | undefined;
@@ -3963,7 +4006,7 @@ export declare function init(config: AuthHeroConfig): {
3963
4006
  hint?: string | undefined;
3964
4007
  messages?: {
3965
4008
  text: string;
3966
- type: "error" | "success" | "info" | "warning";
4009
+ type: "success" | "error" | "info" | "warning";
3967
4010
  id?: number | undefined;
3968
4011
  }[] | undefined;
3969
4012
  required?: boolean | undefined;
@@ -3988,7 +4031,7 @@ export declare function init(config: AuthHeroConfig): {
3988
4031
  hint?: string | undefined;
3989
4032
  messages?: {
3990
4033
  text: string;
3991
- type: "error" | "success" | "info" | "warning";
4034
+ type: "success" | "error" | "info" | "warning";
3992
4035
  id?: number | undefined;
3993
4036
  }[] | undefined;
3994
4037
  required?: boolean | undefined;
@@ -4007,7 +4050,7 @@ export declare function init(config: AuthHeroConfig): {
4007
4050
  hint?: string | undefined;
4008
4051
  messages?: {
4009
4052
  text: string;
4010
- type: "error" | "success" | "info" | "warning";
4053
+ type: "success" | "error" | "info" | "warning";
4011
4054
  id?: number | undefined;
4012
4055
  }[] | undefined;
4013
4056
  required?: boolean | undefined;
@@ -4027,7 +4070,7 @@ export declare function init(config: AuthHeroConfig): {
4027
4070
  hint?: string | undefined;
4028
4071
  messages?: {
4029
4072
  text: string;
4030
- type: "error" | "success" | "info" | "warning";
4073
+ type: "success" | "error" | "info" | "warning";
4031
4074
  id?: number | undefined;
4032
4075
  }[] | undefined;
4033
4076
  required?: boolean | undefined;
@@ -4046,7 +4089,7 @@ export declare function init(config: AuthHeroConfig): {
4046
4089
  hint?: string | undefined;
4047
4090
  messages?: {
4048
4091
  text: string;
4049
- type: "error" | "success" | "info" | "warning";
4092
+ type: "success" | "error" | "info" | "warning";
4050
4093
  id?: number | undefined;
4051
4094
  }[] | undefined;
4052
4095
  required?: boolean | undefined;
@@ -4068,7 +4111,7 @@ export declare function init(config: AuthHeroConfig): {
4068
4111
  hint?: string | undefined;
4069
4112
  messages?: {
4070
4113
  text: string;
4071
- type: "error" | "success" | "info" | "warning";
4114
+ type: "success" | "error" | "info" | "warning";
4072
4115
  id?: number | undefined;
4073
4116
  }[] | undefined;
4074
4117
  required?: boolean | undefined;
@@ -4090,7 +4133,7 @@ export declare function init(config: AuthHeroConfig): {
4090
4133
  hint?: string | undefined;
4091
4134
  messages?: {
4092
4135
  text: string;
4093
- type: "error" | "success" | "info" | "warning";
4136
+ type: "success" | "error" | "info" | "warning";
4094
4137
  id?: number | undefined;
4095
4138
  }[] | undefined;
4096
4139
  required?: boolean | undefined;
@@ -4109,7 +4152,7 @@ export declare function init(config: AuthHeroConfig): {
4109
4152
  hint?: string | undefined;
4110
4153
  messages?: {
4111
4154
  text: string;
4112
- type: "error" | "success" | "info" | "warning";
4155
+ type: "success" | "error" | "info" | "warning";
4113
4156
  id?: number | undefined;
4114
4157
  }[] | undefined;
4115
4158
  required?: boolean | undefined;
@@ -4134,7 +4177,7 @@ export declare function init(config: AuthHeroConfig): {
4134
4177
  hint?: string | undefined;
4135
4178
  messages?: {
4136
4179
  text: string;
4137
- type: "error" | "success" | "info" | "warning";
4180
+ type: "success" | "error" | "info" | "warning";
4138
4181
  id?: number | undefined;
4139
4182
  }[] | undefined;
4140
4183
  required?: boolean | undefined;
@@ -4155,7 +4198,7 @@ export declare function init(config: AuthHeroConfig): {
4155
4198
  hint?: string | undefined;
4156
4199
  messages?: {
4157
4200
  text: string;
4158
- type: "error" | "success" | "info" | "warning";
4201
+ type: "success" | "error" | "info" | "warning";
4159
4202
  id?: number | undefined;
4160
4203
  }[] | undefined;
4161
4204
  required?: boolean | undefined;
@@ -4176,7 +4219,7 @@ export declare function init(config: AuthHeroConfig): {
4176
4219
  hint?: string | undefined;
4177
4220
  messages?: {
4178
4221
  text: string;
4179
- type: "error" | "success" | "info" | "warning";
4222
+ type: "success" | "error" | "info" | "warning";
4180
4223
  id?: number | undefined;
4181
4224
  }[] | undefined;
4182
4225
  required?: boolean | undefined;
@@ -4430,7 +4473,7 @@ export declare function init(config: AuthHeroConfig): {
4430
4473
  hint?: string | undefined;
4431
4474
  messages?: {
4432
4475
  text: string;
4433
- type: "error" | "success" | "info" | "warning";
4476
+ type: "success" | "error" | "info" | "warning";
4434
4477
  id?: number | undefined;
4435
4478
  }[] | undefined;
4436
4479
  required?: boolean | undefined;
@@ -4448,7 +4491,7 @@ export declare function init(config: AuthHeroConfig): {
4448
4491
  hint?: string | undefined;
4449
4492
  messages?: {
4450
4493
  text: string;
4451
- type: "error" | "success" | "info" | "warning";
4494
+ type: "success" | "error" | "info" | "warning";
4452
4495
  id?: number | undefined;
4453
4496
  }[] | undefined;
4454
4497
  required?: boolean | undefined;
@@ -4472,7 +4515,7 @@ export declare function init(config: AuthHeroConfig): {
4472
4515
  hint?: string | undefined;
4473
4516
  messages?: {
4474
4517
  text: string;
4475
- type: "error" | "success" | "info" | "warning";
4518
+ type: "success" | "error" | "info" | "warning";
4476
4519
  id?: number | undefined;
4477
4520
  }[] | undefined;
4478
4521
  required?: boolean | undefined;
@@ -4496,7 +4539,7 @@ export declare function init(config: AuthHeroConfig): {
4496
4539
  hint?: string | undefined;
4497
4540
  messages?: {
4498
4541
  text: string;
4499
- type: "error" | "success" | "info" | "warning";
4542
+ type: "success" | "error" | "info" | "warning";
4500
4543
  id?: number | undefined;
4501
4544
  }[] | undefined;
4502
4545
  required?: boolean | undefined;
@@ -4520,7 +4563,7 @@ export declare function init(config: AuthHeroConfig): {
4520
4563
  hint?: string | undefined;
4521
4564
  messages?: {
4522
4565
  text: string;
4523
- type: "error" | "success" | "info" | "warning";
4566
+ type: "success" | "error" | "info" | "warning";
4524
4567
  id?: number | undefined;
4525
4568
  }[] | undefined;
4526
4569
  required?: boolean | undefined;
@@ -4545,7 +4588,7 @@ export declare function init(config: AuthHeroConfig): {
4545
4588
  hint?: string | undefined;
4546
4589
  messages?: {
4547
4590
  text: string;
4548
- type: "error" | "success" | "info" | "warning";
4591
+ type: "success" | "error" | "info" | "warning";
4549
4592
  id?: number | undefined;
4550
4593
  }[] | undefined;
4551
4594
  required?: boolean | undefined;
@@ -4560,7 +4603,7 @@ export declare function init(config: AuthHeroConfig): {
4560
4603
  hint?: string | undefined;
4561
4604
  messages?: {
4562
4605
  text: string;
4563
- type: "error" | "success" | "info" | "warning";
4606
+ type: "success" | "error" | "info" | "warning";
4564
4607
  id?: number | undefined;
4565
4608
  }[] | undefined;
4566
4609
  required?: boolean | undefined;
@@ -4581,7 +4624,7 @@ export declare function init(config: AuthHeroConfig): {
4581
4624
  hint?: string | undefined;
4582
4625
  messages?: {
4583
4626
  text: string;
4584
- type: "error" | "success" | "info" | "warning";
4627
+ type: "success" | "error" | "info" | "warning";
4585
4628
  id?: number | undefined;
4586
4629
  }[] | undefined;
4587
4630
  required?: boolean | undefined;
@@ -4606,7 +4649,7 @@ export declare function init(config: AuthHeroConfig): {
4606
4649
  hint?: string | undefined;
4607
4650
  messages?: {
4608
4651
  text: string;
4609
- type: "error" | "success" | "info" | "warning";
4652
+ type: "success" | "error" | "info" | "warning";
4610
4653
  id?: number | undefined;
4611
4654
  }[] | undefined;
4612
4655
  required?: boolean | undefined;
@@ -4625,7 +4668,7 @@ export declare function init(config: AuthHeroConfig): {
4625
4668
  hint?: string | undefined;
4626
4669
  messages?: {
4627
4670
  text: string;
4628
- type: "error" | "success" | "info" | "warning";
4671
+ type: "success" | "error" | "info" | "warning";
4629
4672
  id?: number | undefined;
4630
4673
  }[] | undefined;
4631
4674
  required?: boolean | undefined;
@@ -4645,7 +4688,7 @@ export declare function init(config: AuthHeroConfig): {
4645
4688
  hint?: string | undefined;
4646
4689
  messages?: {
4647
4690
  text: string;
4648
- type: "error" | "success" | "info" | "warning";
4691
+ type: "success" | "error" | "info" | "warning";
4649
4692
  id?: number | undefined;
4650
4693
  }[] | undefined;
4651
4694
  required?: boolean | undefined;
@@ -4664,7 +4707,7 @@ export declare function init(config: AuthHeroConfig): {
4664
4707
  hint?: string | undefined;
4665
4708
  messages?: {
4666
4709
  text: string;
4667
- type: "error" | "success" | "info" | "warning";
4710
+ type: "success" | "error" | "info" | "warning";
4668
4711
  id?: number | undefined;
4669
4712
  }[] | undefined;
4670
4713
  required?: boolean | undefined;
@@ -4686,7 +4729,7 @@ export declare function init(config: AuthHeroConfig): {
4686
4729
  hint?: string | undefined;
4687
4730
  messages?: {
4688
4731
  text: string;
4689
- type: "error" | "success" | "info" | "warning";
4732
+ type: "success" | "error" | "info" | "warning";
4690
4733
  id?: number | undefined;
4691
4734
  }[] | undefined;
4692
4735
  required?: boolean | undefined;
@@ -4708,7 +4751,7 @@ export declare function init(config: AuthHeroConfig): {
4708
4751
  hint?: string | undefined;
4709
4752
  messages?: {
4710
4753
  text: string;
4711
- type: "error" | "success" | "info" | "warning";
4754
+ type: "success" | "error" | "info" | "warning";
4712
4755
  id?: number | undefined;
4713
4756
  }[] | undefined;
4714
4757
  required?: boolean | undefined;
@@ -4727,7 +4770,7 @@ export declare function init(config: AuthHeroConfig): {
4727
4770
  hint?: string | undefined;
4728
4771
  messages?: {
4729
4772
  text: string;
4730
- type: "error" | "success" | "info" | "warning";
4773
+ type: "success" | "error" | "info" | "warning";
4731
4774
  id?: number | undefined;
4732
4775
  }[] | undefined;
4733
4776
  required?: boolean | undefined;
@@ -4752,7 +4795,7 @@ export declare function init(config: AuthHeroConfig): {
4752
4795
  hint?: string | undefined;
4753
4796
  messages?: {
4754
4797
  text: string;
4755
- type: "error" | "success" | "info" | "warning";
4798
+ type: "success" | "error" | "info" | "warning";
4756
4799
  id?: number | undefined;
4757
4800
  }[] | undefined;
4758
4801
  required?: boolean | undefined;
@@ -4773,7 +4816,7 @@ export declare function init(config: AuthHeroConfig): {
4773
4816
  hint?: string | undefined;
4774
4817
  messages?: {
4775
4818
  text: string;
4776
- type: "error" | "success" | "info" | "warning";
4819
+ type: "success" | "error" | "info" | "warning";
4777
4820
  id?: number | undefined;
4778
4821
  }[] | undefined;
4779
4822
  required?: boolean | undefined;
@@ -4794,7 +4837,7 @@ export declare function init(config: AuthHeroConfig): {
4794
4837
  hint?: string | undefined;
4795
4838
  messages?: {
4796
4839
  text: string;
4797
- type: "error" | "success" | "info" | "warning";
4840
+ type: "success" | "error" | "info" | "warning";
4798
4841
  id?: number | undefined;
4799
4842
  }[] | undefined;
4800
4843
  required?: boolean | undefined;
@@ -5025,7 +5068,7 @@ export declare function init(config: AuthHeroConfig): {
5025
5068
  hint?: string | undefined;
5026
5069
  messages?: {
5027
5070
  text: string;
5028
- type: "error" | "success" | "info" | "warning";
5071
+ type: "success" | "error" | "info" | "warning";
5029
5072
  id?: number | undefined;
5030
5073
  }[] | undefined;
5031
5074
  required?: boolean | undefined;
@@ -5043,7 +5086,7 @@ export declare function init(config: AuthHeroConfig): {
5043
5086
  hint?: string | undefined;
5044
5087
  messages?: {
5045
5088
  text: string;
5046
- type: "error" | "success" | "info" | "warning";
5089
+ type: "success" | "error" | "info" | "warning";
5047
5090
  id?: number | undefined;
5048
5091
  }[] | undefined;
5049
5092
  required?: boolean | undefined;
@@ -5067,7 +5110,7 @@ export declare function init(config: AuthHeroConfig): {
5067
5110
  hint?: string | undefined;
5068
5111
  messages?: {
5069
5112
  text: string;
5070
- type: "error" | "success" | "info" | "warning";
5113
+ type: "success" | "error" | "info" | "warning";
5071
5114
  id?: number | undefined;
5072
5115
  }[] | undefined;
5073
5116
  required?: boolean | undefined;
@@ -5091,7 +5134,7 @@ export declare function init(config: AuthHeroConfig): {
5091
5134
  hint?: string | undefined;
5092
5135
  messages?: {
5093
5136
  text: string;
5094
- type: "error" | "success" | "info" | "warning";
5137
+ type: "success" | "error" | "info" | "warning";
5095
5138
  id?: number | undefined;
5096
5139
  }[] | undefined;
5097
5140
  required?: boolean | undefined;
@@ -5115,7 +5158,7 @@ export declare function init(config: AuthHeroConfig): {
5115
5158
  hint?: string | undefined;
5116
5159
  messages?: {
5117
5160
  text: string;
5118
- type: "error" | "success" | "info" | "warning";
5161
+ type: "success" | "error" | "info" | "warning";
5119
5162
  id?: number | undefined;
5120
5163
  }[] | undefined;
5121
5164
  required?: boolean | undefined;
@@ -5144,7 +5187,7 @@ export declare function init(config: AuthHeroConfig): {
5144
5187
  hint?: string | undefined;
5145
5188
  messages?: {
5146
5189
  text: string;
5147
- type: "error" | "success" | "info" | "warning";
5190
+ type: "success" | "error" | "info" | "warning";
5148
5191
  id?: number | undefined;
5149
5192
  }[] | undefined;
5150
5193
  required?: boolean | undefined;
@@ -5159,7 +5202,7 @@ export declare function init(config: AuthHeroConfig): {
5159
5202
  hint?: string | undefined;
5160
5203
  messages?: {
5161
5204
  text: string;
5162
- type: "error" | "success" | "info" | "warning";
5205
+ type: "success" | "error" | "info" | "warning";
5163
5206
  id?: number | undefined;
5164
5207
  }[] | undefined;
5165
5208
  required?: boolean | undefined;
@@ -5180,7 +5223,7 @@ export declare function init(config: AuthHeroConfig): {
5180
5223
  hint?: string | undefined;
5181
5224
  messages?: {
5182
5225
  text: string;
5183
- type: "error" | "success" | "info" | "warning";
5226
+ type: "success" | "error" | "info" | "warning";
5184
5227
  id?: number | undefined;
5185
5228
  }[] | undefined;
5186
5229
  required?: boolean | undefined;
@@ -5205,7 +5248,7 @@ export declare function init(config: AuthHeroConfig): {
5205
5248
  hint?: string | undefined;
5206
5249
  messages?: {
5207
5250
  text: string;
5208
- type: "error" | "success" | "info" | "warning";
5251
+ type: "success" | "error" | "info" | "warning";
5209
5252
  id?: number | undefined;
5210
5253
  }[] | undefined;
5211
5254
  required?: boolean | undefined;
@@ -5224,7 +5267,7 @@ export declare function init(config: AuthHeroConfig): {
5224
5267
  hint?: string | undefined;
5225
5268
  messages?: {
5226
5269
  text: string;
5227
- type: "error" | "success" | "info" | "warning";
5270
+ type: "success" | "error" | "info" | "warning";
5228
5271
  id?: number | undefined;
5229
5272
  }[] | undefined;
5230
5273
  required?: boolean | undefined;
@@ -5244,7 +5287,7 @@ export declare function init(config: AuthHeroConfig): {
5244
5287
  hint?: string | undefined;
5245
5288
  messages?: {
5246
5289
  text: string;
5247
- type: "error" | "success" | "info" | "warning";
5290
+ type: "success" | "error" | "info" | "warning";
5248
5291
  id?: number | undefined;
5249
5292
  }[] | undefined;
5250
5293
  required?: boolean | undefined;
@@ -5263,7 +5306,7 @@ export declare function init(config: AuthHeroConfig): {
5263
5306
  hint?: string | undefined;
5264
5307
  messages?: {
5265
5308
  text: string;
5266
- type: "error" | "success" | "info" | "warning";
5309
+ type: "success" | "error" | "info" | "warning";
5267
5310
  id?: number | undefined;
5268
5311
  }[] | undefined;
5269
5312
  required?: boolean | undefined;
@@ -5285,7 +5328,7 @@ export declare function init(config: AuthHeroConfig): {
5285
5328
  hint?: string | undefined;
5286
5329
  messages?: {
5287
5330
  text: string;
5288
- type: "error" | "success" | "info" | "warning";
5331
+ type: "success" | "error" | "info" | "warning";
5289
5332
  id?: number | undefined;
5290
5333
  }[] | undefined;
5291
5334
  required?: boolean | undefined;
@@ -5307,7 +5350,7 @@ export declare function init(config: AuthHeroConfig): {
5307
5350
  hint?: string | undefined;
5308
5351
  messages?: {
5309
5352
  text: string;
5310
- type: "error" | "success" | "info" | "warning";
5353
+ type: "success" | "error" | "info" | "warning";
5311
5354
  id?: number | undefined;
5312
5355
  }[] | undefined;
5313
5356
  required?: boolean | undefined;
@@ -5326,7 +5369,7 @@ export declare function init(config: AuthHeroConfig): {
5326
5369
  hint?: string | undefined;
5327
5370
  messages?: {
5328
5371
  text: string;
5329
- type: "error" | "success" | "info" | "warning";
5372
+ type: "success" | "error" | "info" | "warning";
5330
5373
  id?: number | undefined;
5331
5374
  }[] | undefined;
5332
5375
  required?: boolean | undefined;
@@ -5351,7 +5394,7 @@ export declare function init(config: AuthHeroConfig): {
5351
5394
  hint?: string | undefined;
5352
5395
  messages?: {
5353
5396
  text: string;
5354
- type: "error" | "success" | "info" | "warning";
5397
+ type: "success" | "error" | "info" | "warning";
5355
5398
  id?: number | undefined;
5356
5399
  }[] | undefined;
5357
5400
  required?: boolean | undefined;
@@ -5372,7 +5415,7 @@ export declare function init(config: AuthHeroConfig): {
5372
5415
  hint?: string | undefined;
5373
5416
  messages?: {
5374
5417
  text: string;
5375
- type: "error" | "success" | "info" | "warning";
5418
+ type: "success" | "error" | "info" | "warning";
5376
5419
  id?: number | undefined;
5377
5420
  }[] | undefined;
5378
5421
  required?: boolean | undefined;
@@ -5393,7 +5436,7 @@ export declare function init(config: AuthHeroConfig): {
5393
5436
  hint?: string | undefined;
5394
5437
  messages?: {
5395
5438
  text: string;
5396
- type: "error" | "success" | "info" | "warning";
5439
+ type: "success" | "error" | "info" | "warning";
5397
5440
  id?: number | undefined;
5398
5441
  }[] | undefined;
5399
5442
  required?: boolean | undefined;
@@ -5626,7 +5669,7 @@ export declare function init(config: AuthHeroConfig): {
5626
5669
  hint?: string | undefined;
5627
5670
  messages?: {
5628
5671
  text: string;
5629
- type: "error" | "success" | "info" | "warning";
5672
+ type: "success" | "error" | "info" | "warning";
5630
5673
  id?: number | undefined;
5631
5674
  }[] | undefined;
5632
5675
  required?: boolean | undefined;
@@ -5644,7 +5687,7 @@ export declare function init(config: AuthHeroConfig): {
5644
5687
  hint?: string | undefined;
5645
5688
  messages?: {
5646
5689
  text: string;
5647
- type: "error" | "success" | "info" | "warning";
5690
+ type: "success" | "error" | "info" | "warning";
5648
5691
  id?: number | undefined;
5649
5692
  }[] | undefined;
5650
5693
  required?: boolean | undefined;
@@ -5668,7 +5711,7 @@ export declare function init(config: AuthHeroConfig): {
5668
5711
  hint?: string | undefined;
5669
5712
  messages?: {
5670
5713
  text: string;
5671
- type: "error" | "success" | "info" | "warning";
5714
+ type: "success" | "error" | "info" | "warning";
5672
5715
  id?: number | undefined;
5673
5716
  }[] | undefined;
5674
5717
  required?: boolean | undefined;
@@ -5692,7 +5735,7 @@ export declare function init(config: AuthHeroConfig): {
5692
5735
  hint?: string | undefined;
5693
5736
  messages?: {
5694
5737
  text: string;
5695
- type: "error" | "success" | "info" | "warning";
5738
+ type: "success" | "error" | "info" | "warning";
5696
5739
  id?: number | undefined;
5697
5740
  }[] | undefined;
5698
5741
  required?: boolean | undefined;
@@ -5716,7 +5759,7 @@ export declare function init(config: AuthHeroConfig): {
5716
5759
  hint?: string | undefined;
5717
5760
  messages?: {
5718
5761
  text: string;
5719
- type: "error" | "success" | "info" | "warning";
5762
+ type: "success" | "error" | "info" | "warning";
5720
5763
  id?: number | undefined;
5721
5764
  }[] | undefined;
5722
5765
  required?: boolean | undefined;
@@ -5741,7 +5784,7 @@ export declare function init(config: AuthHeroConfig): {
5741
5784
  hint?: string | undefined;
5742
5785
  messages?: {
5743
5786
  text: string;
5744
- type: "error" | "success" | "info" | "warning";
5787
+ type: "success" | "error" | "info" | "warning";
5745
5788
  id?: number | undefined;
5746
5789
  }[] | undefined;
5747
5790
  required?: boolean | undefined;
@@ -5756,7 +5799,7 @@ export declare function init(config: AuthHeroConfig): {
5756
5799
  hint?: string | undefined;
5757
5800
  messages?: {
5758
5801
  text: string;
5759
- type: "error" | "success" | "info" | "warning";
5802
+ type: "success" | "error" | "info" | "warning";
5760
5803
  id?: number | undefined;
5761
5804
  }[] | undefined;
5762
5805
  required?: boolean | undefined;
@@ -5777,7 +5820,7 @@ export declare function init(config: AuthHeroConfig): {
5777
5820
  hint?: string | undefined;
5778
5821
  messages?: {
5779
5822
  text: string;
5780
- type: "error" | "success" | "info" | "warning";
5823
+ type: "success" | "error" | "info" | "warning";
5781
5824
  id?: number | undefined;
5782
5825
  }[] | undefined;
5783
5826
  required?: boolean | undefined;
@@ -5802,7 +5845,7 @@ export declare function init(config: AuthHeroConfig): {
5802
5845
  hint?: string | undefined;
5803
5846
  messages?: {
5804
5847
  text: string;
5805
- type: "error" | "success" | "info" | "warning";
5848
+ type: "success" | "error" | "info" | "warning";
5806
5849
  id?: number | undefined;
5807
5850
  }[] | undefined;
5808
5851
  required?: boolean | undefined;
@@ -5821,7 +5864,7 @@ export declare function init(config: AuthHeroConfig): {
5821
5864
  hint?: string | undefined;
5822
5865
  messages?: {
5823
5866
  text: string;
5824
- type: "error" | "success" | "info" | "warning";
5867
+ type: "success" | "error" | "info" | "warning";
5825
5868
  id?: number | undefined;
5826
5869
  }[] | undefined;
5827
5870
  required?: boolean | undefined;
@@ -5841,7 +5884,7 @@ export declare function init(config: AuthHeroConfig): {
5841
5884
  hint?: string | undefined;
5842
5885
  messages?: {
5843
5886
  text: string;
5844
- type: "error" | "success" | "info" | "warning";
5887
+ type: "success" | "error" | "info" | "warning";
5845
5888
  id?: number | undefined;
5846
5889
  }[] | undefined;
5847
5890
  required?: boolean | undefined;
@@ -5860,7 +5903,7 @@ export declare function init(config: AuthHeroConfig): {
5860
5903
  hint?: string | undefined;
5861
5904
  messages?: {
5862
5905
  text: string;
5863
- type: "error" | "success" | "info" | "warning";
5906
+ type: "success" | "error" | "info" | "warning";
5864
5907
  id?: number | undefined;
5865
5908
  }[] | undefined;
5866
5909
  required?: boolean | undefined;
@@ -5882,7 +5925,7 @@ export declare function init(config: AuthHeroConfig): {
5882
5925
  hint?: string | undefined;
5883
5926
  messages?: {
5884
5927
  text: string;
5885
- type: "error" | "success" | "info" | "warning";
5928
+ type: "success" | "error" | "info" | "warning";
5886
5929
  id?: number | undefined;
5887
5930
  }[] | undefined;
5888
5931
  required?: boolean | undefined;
@@ -5904,7 +5947,7 @@ export declare function init(config: AuthHeroConfig): {
5904
5947
  hint?: string | undefined;
5905
5948
  messages?: {
5906
5949
  text: string;
5907
- type: "error" | "success" | "info" | "warning";
5950
+ type: "success" | "error" | "info" | "warning";
5908
5951
  id?: number | undefined;
5909
5952
  }[] | undefined;
5910
5953
  required?: boolean | undefined;
@@ -5923,7 +5966,7 @@ export declare function init(config: AuthHeroConfig): {
5923
5966
  hint?: string | undefined;
5924
5967
  messages?: {
5925
5968
  text: string;
5926
- type: "error" | "success" | "info" | "warning";
5969
+ type: "success" | "error" | "info" | "warning";
5927
5970
  id?: number | undefined;
5928
5971
  }[] | undefined;
5929
5972
  required?: boolean | undefined;
@@ -5948,7 +5991,7 @@ export declare function init(config: AuthHeroConfig): {
5948
5991
  hint?: string | undefined;
5949
5992
  messages?: {
5950
5993
  text: string;
5951
- type: "error" | "success" | "info" | "warning";
5994
+ type: "success" | "error" | "info" | "warning";
5952
5995
  id?: number | undefined;
5953
5996
  }[] | undefined;
5954
5997
  required?: boolean | undefined;
@@ -5969,7 +6012,7 @@ export declare function init(config: AuthHeroConfig): {
5969
6012
  hint?: string | undefined;
5970
6013
  messages?: {
5971
6014
  text: string;
5972
- type: "error" | "success" | "info" | "warning";
6015
+ type: "success" | "error" | "info" | "warning";
5973
6016
  id?: number | undefined;
5974
6017
  }[] | undefined;
5975
6018
  required?: boolean | undefined;
@@ -5990,7 +6033,7 @@ export declare function init(config: AuthHeroConfig): {
5990
6033
  hint?: string | undefined;
5991
6034
  messages?: {
5992
6035
  text: string;
5993
- type: "error" | "success" | "info" | "warning";
6036
+ type: "success" | "error" | "info" | "warning";
5994
6037
  id?: number | undefined;
5995
6038
  }[] | undefined;
5996
6039
  required?: boolean | undefined;
@@ -6221,7 +6264,7 @@ export declare function init(config: AuthHeroConfig): {
6221
6264
  hint?: string | undefined;
6222
6265
  messages?: {
6223
6266
  text: string;
6224
- type: "error" | "success" | "info" | "warning";
6267
+ type: "success" | "error" | "info" | "warning";
6225
6268
  id?: number | undefined;
6226
6269
  }[] | undefined;
6227
6270
  required?: boolean | undefined;
@@ -6239,7 +6282,7 @@ export declare function init(config: AuthHeroConfig): {
6239
6282
  hint?: string | undefined;
6240
6283
  messages?: {
6241
6284
  text: string;
6242
- type: "error" | "success" | "info" | "warning";
6285
+ type: "success" | "error" | "info" | "warning";
6243
6286
  id?: number | undefined;
6244
6287
  }[] | undefined;
6245
6288
  required?: boolean | undefined;
@@ -6263,7 +6306,7 @@ export declare function init(config: AuthHeroConfig): {
6263
6306
  hint?: string | undefined;
6264
6307
  messages?: {
6265
6308
  text: string;
6266
- type: "error" | "success" | "info" | "warning";
6309
+ type: "success" | "error" | "info" | "warning";
6267
6310
  id?: number | undefined;
6268
6311
  }[] | undefined;
6269
6312
  required?: boolean | undefined;
@@ -6287,7 +6330,7 @@ export declare function init(config: AuthHeroConfig): {
6287
6330
  hint?: string | undefined;
6288
6331
  messages?: {
6289
6332
  text: string;
6290
- type: "error" | "success" | "info" | "warning";
6333
+ type: "success" | "error" | "info" | "warning";
6291
6334
  id?: number | undefined;
6292
6335
  }[] | undefined;
6293
6336
  required?: boolean | undefined;
@@ -6311,7 +6354,7 @@ export declare function init(config: AuthHeroConfig): {
6311
6354
  hint?: string | undefined;
6312
6355
  messages?: {
6313
6356
  text: string;
6314
- type: "error" | "success" | "info" | "warning";
6357
+ type: "success" | "error" | "info" | "warning";
6315
6358
  id?: number | undefined;
6316
6359
  }[] | undefined;
6317
6360
  required?: boolean | undefined;
@@ -6340,7 +6383,7 @@ export declare function init(config: AuthHeroConfig): {
6340
6383
  hint?: string | undefined;
6341
6384
  messages?: {
6342
6385
  text: string;
6343
- type: "error" | "success" | "info" | "warning";
6386
+ type: "success" | "error" | "info" | "warning";
6344
6387
  id?: number | undefined;
6345
6388
  }[] | undefined;
6346
6389
  required?: boolean | undefined;
@@ -6355,7 +6398,7 @@ export declare function init(config: AuthHeroConfig): {
6355
6398
  hint?: string | undefined;
6356
6399
  messages?: {
6357
6400
  text: string;
6358
- type: "error" | "success" | "info" | "warning";
6401
+ type: "success" | "error" | "info" | "warning";
6359
6402
  id?: number | undefined;
6360
6403
  }[] | undefined;
6361
6404
  required?: boolean | undefined;
@@ -6376,7 +6419,7 @@ export declare function init(config: AuthHeroConfig): {
6376
6419
  hint?: string | undefined;
6377
6420
  messages?: {
6378
6421
  text: string;
6379
- type: "error" | "success" | "info" | "warning";
6422
+ type: "success" | "error" | "info" | "warning";
6380
6423
  id?: number | undefined;
6381
6424
  }[] | undefined;
6382
6425
  required?: boolean | undefined;
@@ -6401,7 +6444,7 @@ export declare function init(config: AuthHeroConfig): {
6401
6444
  hint?: string | undefined;
6402
6445
  messages?: {
6403
6446
  text: string;
6404
- type: "error" | "success" | "info" | "warning";
6447
+ type: "success" | "error" | "info" | "warning";
6405
6448
  id?: number | undefined;
6406
6449
  }[] | undefined;
6407
6450
  required?: boolean | undefined;
@@ -6420,7 +6463,7 @@ export declare function init(config: AuthHeroConfig): {
6420
6463
  hint?: string | undefined;
6421
6464
  messages?: {
6422
6465
  text: string;
6423
- type: "error" | "success" | "info" | "warning";
6466
+ type: "success" | "error" | "info" | "warning";
6424
6467
  id?: number | undefined;
6425
6468
  }[] | undefined;
6426
6469
  required?: boolean | undefined;
@@ -6440,7 +6483,7 @@ export declare function init(config: AuthHeroConfig): {
6440
6483
  hint?: string | undefined;
6441
6484
  messages?: {
6442
6485
  text: string;
6443
- type: "error" | "success" | "info" | "warning";
6486
+ type: "success" | "error" | "info" | "warning";
6444
6487
  id?: number | undefined;
6445
6488
  }[] | undefined;
6446
6489
  required?: boolean | undefined;
@@ -6459,7 +6502,7 @@ export declare function init(config: AuthHeroConfig): {
6459
6502
  hint?: string | undefined;
6460
6503
  messages?: {
6461
6504
  text: string;
6462
- type: "error" | "success" | "info" | "warning";
6505
+ type: "success" | "error" | "info" | "warning";
6463
6506
  id?: number | undefined;
6464
6507
  }[] | undefined;
6465
6508
  required?: boolean | undefined;
@@ -6481,7 +6524,7 @@ export declare function init(config: AuthHeroConfig): {
6481
6524
  hint?: string | undefined;
6482
6525
  messages?: {
6483
6526
  text: string;
6484
- type: "error" | "success" | "info" | "warning";
6527
+ type: "success" | "error" | "info" | "warning";
6485
6528
  id?: number | undefined;
6486
6529
  }[] | undefined;
6487
6530
  required?: boolean | undefined;
@@ -6503,7 +6546,7 @@ export declare function init(config: AuthHeroConfig): {
6503
6546
  hint?: string | undefined;
6504
6547
  messages?: {
6505
6548
  text: string;
6506
- type: "error" | "success" | "info" | "warning";
6549
+ type: "success" | "error" | "info" | "warning";
6507
6550
  id?: number | undefined;
6508
6551
  }[] | undefined;
6509
6552
  required?: boolean | undefined;
@@ -6522,7 +6565,7 @@ export declare function init(config: AuthHeroConfig): {
6522
6565
  hint?: string | undefined;
6523
6566
  messages?: {
6524
6567
  text: string;
6525
- type: "error" | "success" | "info" | "warning";
6568
+ type: "success" | "error" | "info" | "warning";
6526
6569
  id?: number | undefined;
6527
6570
  }[] | undefined;
6528
6571
  required?: boolean | undefined;
@@ -6547,7 +6590,7 @@ export declare function init(config: AuthHeroConfig): {
6547
6590
  hint?: string | undefined;
6548
6591
  messages?: {
6549
6592
  text: string;
6550
- type: "error" | "success" | "info" | "warning";
6593
+ type: "success" | "error" | "info" | "warning";
6551
6594
  id?: number | undefined;
6552
6595
  }[] | undefined;
6553
6596
  required?: boolean | undefined;
@@ -6568,7 +6611,7 @@ export declare function init(config: AuthHeroConfig): {
6568
6611
  hint?: string | undefined;
6569
6612
  messages?: {
6570
6613
  text: string;
6571
- type: "error" | "success" | "info" | "warning";
6614
+ type: "success" | "error" | "info" | "warning";
6572
6615
  id?: number | undefined;
6573
6616
  }[] | undefined;
6574
6617
  required?: boolean | undefined;
@@ -6589,7 +6632,7 @@ export declare function init(config: AuthHeroConfig): {
6589
6632
  hint?: string | undefined;
6590
6633
  messages?: {
6591
6634
  text: string;
6592
- type: "error" | "success" | "info" | "warning";
6635
+ type: "success" | "error" | "info" | "warning";
6593
6636
  id?: number | undefined;
6594
6637
  }[] | undefined;
6595
6638
  required?: boolean | undefined;
@@ -6819,7 +6862,7 @@ export declare function init(config: AuthHeroConfig): {
6819
6862
  };
6820
6863
  };
6821
6864
  output: {
6822
- 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";
6865
+ prompt: "common" | "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6823
6866
  language: string;
6824
6867
  }[];
6825
6868
  outputFormat: "json";
@@ -6857,7 +6900,7 @@ export declare function init(config: AuthHeroConfig): {
6857
6900
  $get: {
6858
6901
  input: {
6859
6902
  param: {
6860
- 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";
6903
+ prompt: "common" | "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6861
6904
  language: string;
6862
6905
  };
6863
6906
  } & {
@@ -6879,7 +6922,7 @@ export declare function init(config: AuthHeroConfig): {
6879
6922
  $put: {
6880
6923
  input: {
6881
6924
  param: {
6882
- 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";
6925
+ prompt: "common" | "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6883
6926
  language: string;
6884
6927
  };
6885
6928
  } & {
@@ -6903,7 +6946,7 @@ export declare function init(config: AuthHeroConfig): {
6903
6946
  $delete: {
6904
6947
  input: {
6905
6948
  param: {
6906
- 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";
6949
+ prompt: "common" | "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6907
6950
  language: string;
6908
6951
  };
6909
6952
  } & {
@@ -7042,7 +7085,7 @@ export declare function init(config: AuthHeroConfig): {
7042
7085
  } | undefined;
7043
7086
  } | undefined;
7044
7087
  passkey_options?: {
7045
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7088
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7046
7089
  local_enrollment_enabled?: boolean | undefined;
7047
7090
  progressive_enrollment_enabled?: boolean | undefined;
7048
7091
  } | undefined;
@@ -7176,7 +7219,7 @@ export declare function init(config: AuthHeroConfig): {
7176
7219
  } | undefined;
7177
7220
  } | undefined;
7178
7221
  passkey_options?: {
7179
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7222
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7180
7223
  local_enrollment_enabled?: boolean | undefined;
7181
7224
  progressive_enrollment_enabled?: boolean | undefined;
7182
7225
  } | undefined;
@@ -7325,7 +7368,7 @@ export declare function init(config: AuthHeroConfig): {
7325
7368
  } | undefined;
7326
7369
  } | undefined;
7327
7370
  passkey_options?: {
7328
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7371
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7329
7372
  local_enrollment_enabled?: boolean | undefined;
7330
7373
  progressive_enrollment_enabled?: boolean | undefined;
7331
7374
  } | undefined;
@@ -7504,7 +7547,7 @@ export declare function init(config: AuthHeroConfig): {
7504
7547
  } | undefined;
7505
7548
  } | undefined;
7506
7549
  passkey_options?: {
7507
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7550
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7508
7551
  local_enrollment_enabled?: boolean | undefined;
7509
7552
  progressive_enrollment_enabled?: boolean | undefined;
7510
7553
  } | undefined;
@@ -7662,7 +7705,7 @@ export declare function init(config: AuthHeroConfig): {
7662
7705
  } | undefined;
7663
7706
  } | undefined;
7664
7707
  passkey_options?: {
7665
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7708
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7666
7709
  local_enrollment_enabled?: boolean | undefined;
7667
7710
  progressive_enrollment_enabled?: boolean | undefined;
7668
7711
  } | undefined;
@@ -7765,7 +7808,7 @@ export declare function init(config: AuthHeroConfig): {
7765
7808
  };
7766
7809
  } | {
7767
7810
  mode: "inline";
7768
- status: "error" | "success";
7811
+ status: "success" | "error";
7769
7812
  connection_id: string;
7770
7813
  connection_name: string;
7771
7814
  strategy: string;
@@ -8404,7 +8447,7 @@ export declare function init(config: AuthHeroConfig): {
8404
8447
  log_type: string;
8405
8448
  category: "user_action" | "admin_action" | "system" | "api";
8406
8449
  actor: {
8407
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8450
+ type: "user" | "client_credentials" | "api_key" | "system" | "admin";
8408
8451
  id?: string | undefined;
8409
8452
  email?: string | undefined;
8410
8453
  org_id?: string | undefined;
@@ -8712,7 +8755,7 @@ export declare function init(config: AuthHeroConfig): {
8712
8755
  created_at: string;
8713
8756
  updated_at: string;
8714
8757
  name: string;
8715
- provider: "auth0" | "oidc" | "okta" | "cognito";
8758
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8716
8759
  connection: string;
8717
8760
  enabled: boolean;
8718
8761
  credentials: {
@@ -8744,7 +8787,7 @@ export declare function init(config: AuthHeroConfig): {
8744
8787
  created_at: string;
8745
8788
  updated_at: string;
8746
8789
  name: string;
8747
- provider: "auth0" | "oidc" | "okta" | "cognito";
8790
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8748
8791
  connection: string;
8749
8792
  enabled: boolean;
8750
8793
  credentials: {
@@ -8770,7 +8813,7 @@ export declare function init(config: AuthHeroConfig): {
8770
8813
  } & {
8771
8814
  json: {
8772
8815
  name: string;
8773
- provider: "auth0" | "oidc" | "okta" | "cognito";
8816
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8774
8817
  connection: string;
8775
8818
  credentials: {
8776
8819
  domain: string;
@@ -8787,7 +8830,7 @@ export declare function init(config: AuthHeroConfig): {
8787
8830
  created_at: string;
8788
8831
  updated_at: string;
8789
8832
  name: string;
8790
- provider: "auth0" | "oidc" | "okta" | "cognito";
8833
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8791
8834
  connection: string;
8792
8835
  enabled: boolean;
8793
8836
  credentials: {
@@ -8818,7 +8861,7 @@ export declare function init(config: AuthHeroConfig): {
8818
8861
  json: {
8819
8862
  id?: string | undefined;
8820
8863
  name?: string | undefined;
8821
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
8864
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8822
8865
  connection?: string | undefined;
8823
8866
  enabled?: boolean | undefined;
8824
8867
  credentials?: {
@@ -8834,7 +8877,7 @@ export declare function init(config: AuthHeroConfig): {
8834
8877
  created_at: string;
8835
8878
  updated_at: string;
8836
8879
  name: string;
8837
- provider: "auth0" | "oidc" | "okta" | "cognito";
8880
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8838
8881
  connection: string;
8839
8882
  enabled: boolean;
8840
8883
  credentials: {
@@ -9052,7 +9095,7 @@ export declare function init(config: AuthHeroConfig): {
9052
9095
  };
9053
9096
  };
9054
9097
  output: {
9055
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9098
+ type: "i" | "f" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9056
9099
  date: string;
9057
9100
  isMobile: boolean;
9058
9101
  log_id: string;
@@ -9091,7 +9134,7 @@ export declare function init(config: AuthHeroConfig): {
9091
9134
  limit: number;
9092
9135
  length: number;
9093
9136
  logs: {
9094
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9137
+ type: "i" | "f" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9095
9138
  date: string;
9096
9139
  isMobile: boolean;
9097
9140
  log_id: string;
@@ -9145,7 +9188,7 @@ export declare function init(config: AuthHeroConfig): {
9145
9188
  };
9146
9189
  };
9147
9190
  output: {
9148
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9191
+ type: "i" | "f" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9149
9192
  date: string;
9150
9193
  isMobile: boolean;
9151
9194
  log_id: string;
@@ -9533,7 +9576,7 @@ export declare function init(config: AuthHeroConfig): {
9533
9576
  addons?: {
9534
9577
  [x: string]: any;
9535
9578
  } | undefined;
9536
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9579
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9537
9580
  client_metadata?: {
9538
9581
  [x: string]: string;
9539
9582
  } | undefined;
@@ -9629,7 +9672,7 @@ export declare function init(config: AuthHeroConfig): {
9629
9672
  addons?: {
9630
9673
  [x: string]: any;
9631
9674
  } | undefined;
9632
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9675
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9633
9676
  client_metadata?: {
9634
9677
  [x: string]: string;
9635
9678
  } | undefined;
@@ -9740,7 +9783,7 @@ export declare function init(config: AuthHeroConfig): {
9740
9783
  addons?: {
9741
9784
  [x: string]: any;
9742
9785
  } | undefined;
9743
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9786
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9744
9787
  client_metadata?: {
9745
9788
  [x: string]: string;
9746
9789
  } | undefined;
@@ -9850,7 +9893,7 @@ export declare function init(config: AuthHeroConfig): {
9850
9893
  custom_login_page_preview?: string | undefined;
9851
9894
  form_template?: string | undefined;
9852
9895
  addons?: Record<string, any> | undefined;
9853
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9896
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9854
9897
  client_metadata?: Record<string, string> | undefined;
9855
9898
  hide_sign_up_disabled_error?: boolean | undefined;
9856
9899
  mobile?: Record<string, any> | undefined;
@@ -9930,7 +9973,7 @@ export declare function init(config: AuthHeroConfig): {
9930
9973
  addons?: {
9931
9974
  [x: string]: any;
9932
9975
  } | undefined;
9933
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9976
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9934
9977
  client_metadata?: {
9935
9978
  [x: string]: string;
9936
9979
  } | undefined;
@@ -10019,7 +10062,7 @@ export declare function init(config: AuthHeroConfig): {
10019
10062
  custom_login_page_preview?: string | undefined;
10020
10063
  form_template?: string | undefined;
10021
10064
  addons?: Record<string, any> | undefined;
10022
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10065
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10023
10066
  client_metadata?: Record<string, string> | undefined;
10024
10067
  hide_sign_up_disabled_error?: boolean | undefined;
10025
10068
  mobile?: Record<string, any> | undefined;
@@ -10099,7 +10142,7 @@ export declare function init(config: AuthHeroConfig): {
10099
10142
  addons?: {
10100
10143
  [x: string]: any;
10101
10144
  } | undefined;
10102
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10145
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10103
10146
  client_metadata?: {
10104
10147
  [x: string]: string;
10105
10148
  } | undefined;
@@ -10268,7 +10311,7 @@ export declare function init(config: AuthHeroConfig): {
10268
10311
  } | undefined;
10269
10312
  } | undefined;
10270
10313
  passkey_options?: {
10271
- challenge_ui?: "both" | "autofill" | "button" | undefined;
10314
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
10272
10315
  local_enrollment_enabled?: boolean | undefined;
10273
10316
  progressive_enrollment_enabled?: boolean | undefined;
10274
10317
  } | undefined;
@@ -10422,7 +10465,7 @@ export declare function init(config: AuthHeroConfig): {
10422
10465
  } | undefined;
10423
10466
  } | undefined;
10424
10467
  passkey_options?: {
10425
- challenge_ui?: "both" | "autofill" | "button" | undefined;
10468
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
10426
10469
  local_enrollment_enabled?: boolean | undefined;
10427
10470
  progressive_enrollment_enabled?: boolean | undefined;
10428
10471
  } | undefined;
@@ -11363,7 +11406,7 @@ export declare function init(config: AuthHeroConfig): {
11363
11406
  };
11364
11407
  };
11365
11408
  output: {
11366
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11409
+ type: "i" | "f" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11367
11410
  date: string;
11368
11411
  isMobile: boolean;
11369
11412
  log_id: string;
@@ -11402,7 +11445,7 @@ export declare function init(config: AuthHeroConfig): {
11402
11445
  limit: number;
11403
11446
  length: number;
11404
11447
  logs: {
11405
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11448
+ type: "i" | "f" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11406
11449
  date: string;
11407
11450
  isMobile: boolean;
11408
11451
  log_id: string;
@@ -11717,7 +11760,7 @@ export declare function init(config: AuthHeroConfig): {
11717
11760
  };
11718
11761
  } & {
11719
11762
  json: {
11720
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11763
+ 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";
11721
11764
  body: string;
11722
11765
  from: string;
11723
11766
  subject: string;
@@ -11738,7 +11781,7 @@ export declare function init(config: AuthHeroConfig): {
11738
11781
  };
11739
11782
  } & {
11740
11783
  json: {
11741
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11784
+ 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";
11742
11785
  body: string;
11743
11786
  from: string;
11744
11787
  subject: string;
@@ -11750,7 +11793,7 @@ export declare function init(config: AuthHeroConfig): {
11750
11793
  };
11751
11794
  };
11752
11795
  output: {
11753
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11796
+ 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";
11754
11797
  body: string;
11755
11798
  from: string;
11756
11799
  subject: string;
@@ -11773,7 +11816,7 @@ export declare function init(config: AuthHeroConfig): {
11773
11816
  };
11774
11817
  };
11775
11818
  output: {
11776
- name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11819
+ 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";
11777
11820
  body: string;
11778
11821
  subject: string;
11779
11822
  }[];
@@ -11786,7 +11829,7 @@ export declare function init(config: AuthHeroConfig): {
11786
11829
  $get: {
11787
11830
  input: {
11788
11831
  param: {
11789
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11832
+ 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";
11790
11833
  };
11791
11834
  } & {
11792
11835
  header: {
@@ -11799,7 +11842,7 @@ export declare function init(config: AuthHeroConfig): {
11799
11842
  } | {
11800
11843
  input: {
11801
11844
  param: {
11802
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11845
+ 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";
11803
11846
  };
11804
11847
  } & {
11805
11848
  header: {
@@ -11807,7 +11850,7 @@ export declare function init(config: AuthHeroConfig): {
11807
11850
  };
11808
11851
  };
11809
11852
  output: {
11810
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11853
+ 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";
11811
11854
  body: string;
11812
11855
  from: string;
11813
11856
  subject: string;
@@ -11826,7 +11869,7 @@ export declare function init(config: AuthHeroConfig): {
11826
11869
  $put: {
11827
11870
  input: {
11828
11871
  param: {
11829
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11872
+ 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";
11830
11873
  };
11831
11874
  } & {
11832
11875
  header: {
@@ -11834,7 +11877,7 @@ export declare function init(config: AuthHeroConfig): {
11834
11877
  };
11835
11878
  } & {
11836
11879
  json: {
11837
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11880
+ 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";
11838
11881
  body: string;
11839
11882
  subject: string;
11840
11883
  syntax?: "liquid" | undefined;
@@ -11846,7 +11889,7 @@ export declare function init(config: AuthHeroConfig): {
11846
11889
  };
11847
11890
  };
11848
11891
  output: {
11849
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11892
+ 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";
11850
11893
  body: string;
11851
11894
  from: string;
11852
11895
  subject: string;
@@ -11865,7 +11908,7 @@ export declare function init(config: AuthHeroConfig): {
11865
11908
  $patch: {
11866
11909
  input: {
11867
11910
  param: {
11868
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11911
+ 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";
11869
11912
  };
11870
11913
  } & {
11871
11914
  header: {
@@ -11873,7 +11916,7 @@ export declare function init(config: AuthHeroConfig): {
11873
11916
  };
11874
11917
  } & {
11875
11918
  json: {
11876
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11919
+ 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;
11877
11920
  body?: string | undefined;
11878
11921
  from?: string | undefined;
11879
11922
  subject?: string | undefined;
@@ -11890,7 +11933,7 @@ export declare function init(config: AuthHeroConfig): {
11890
11933
  } | {
11891
11934
  input: {
11892
11935
  param: {
11893
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11936
+ 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";
11894
11937
  };
11895
11938
  } & {
11896
11939
  header: {
@@ -11898,7 +11941,7 @@ export declare function init(config: AuthHeroConfig): {
11898
11941
  };
11899
11942
  } & {
11900
11943
  json: {
11901
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11944
+ 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;
11902
11945
  body?: string | undefined;
11903
11946
  from?: string | undefined;
11904
11947
  subject?: string | undefined;
@@ -11910,7 +11953,7 @@ export declare function init(config: AuthHeroConfig): {
11910
11953
  };
11911
11954
  };
11912
11955
  output: {
11913
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11956
+ 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";
11914
11957
  body: string;
11915
11958
  from: string;
11916
11959
  subject: string;
@@ -11929,7 +11972,7 @@ export declare function init(config: AuthHeroConfig): {
11929
11972
  $delete: {
11930
11973
  input: {
11931
11974
  param: {
11932
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11975
+ 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";
11933
11976
  };
11934
11977
  } & {
11935
11978
  header: {
@@ -11942,7 +11985,7 @@ export declare function init(config: AuthHeroConfig): {
11942
11985
  } | {
11943
11986
  input: {
11944
11987
  param: {
11945
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11988
+ 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";
11946
11989
  };
11947
11990
  } & {
11948
11991
  header: {
@@ -11959,7 +12002,7 @@ export declare function init(config: AuthHeroConfig): {
11959
12002
  $post: {
11960
12003
  input: {
11961
12004
  param: {
11962
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12005
+ 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";
11963
12006
  };
11964
12007
  } & {
11965
12008
  header: {
@@ -12529,7 +12572,7 @@ export declare function init(config: AuthHeroConfig): {
12529
12572
  base_focus_color: string;
12530
12573
  base_hover_color: string;
12531
12574
  body_text: string;
12532
- captcha_widget_theme: "dark" | "light" | "auto";
12575
+ captcha_widget_theme: "auto" | "light" | "dark";
12533
12576
  error: string;
12534
12577
  header: string;
12535
12578
  icons: string;
@@ -12580,7 +12623,7 @@ export declare function init(config: AuthHeroConfig): {
12580
12623
  background_color: string;
12581
12624
  background_image_url: string;
12582
12625
  page_layout: "center" | "left" | "right";
12583
- logo_placement?: "none" | "widget" | "chip" | undefined;
12626
+ logo_placement?: "widget" | "chip" | "none" | undefined;
12584
12627
  };
12585
12628
  widget: {
12586
12629
  header_text_alignment: "center" | "left" | "right";
@@ -12619,7 +12662,7 @@ export declare function init(config: AuthHeroConfig): {
12619
12662
  base_focus_color: string;
12620
12663
  base_hover_color: string;
12621
12664
  body_text: string;
12622
- captcha_widget_theme: "dark" | "light" | "auto";
12665
+ captcha_widget_theme: "auto" | "light" | "dark";
12623
12666
  error: string;
12624
12667
  header: string;
12625
12668
  icons: string;
@@ -12670,7 +12713,7 @@ export declare function init(config: AuthHeroConfig): {
12670
12713
  background_color: string;
12671
12714
  background_image_url: string;
12672
12715
  page_layout: "center" | "left" | "right";
12673
- logo_placement?: "none" | "widget" | "chip" | undefined;
12716
+ logo_placement?: "widget" | "chip" | "none" | undefined;
12674
12717
  };
12675
12718
  widget: {
12676
12719
  header_text_alignment: "center" | "left" | "right";
@@ -12698,7 +12741,7 @@ export declare function init(config: AuthHeroConfig): {
12698
12741
  base_focus_color: string;
12699
12742
  base_hover_color: string;
12700
12743
  body_text: string;
12701
- captcha_widget_theme: "dark" | "light" | "auto";
12744
+ captcha_widget_theme: "auto" | "light" | "dark";
12702
12745
  error: string;
12703
12746
  header: string;
12704
12747
  icons: string;
@@ -12749,7 +12792,7 @@ export declare function init(config: AuthHeroConfig): {
12749
12792
  background_color: string;
12750
12793
  background_image_url: string;
12751
12794
  page_layout: "center" | "left" | "right";
12752
- logo_placement?: "none" | "widget" | "chip" | undefined;
12795
+ logo_placement?: "widget" | "chip" | "none" | undefined;
12753
12796
  };
12754
12797
  widget: {
12755
12798
  header_text_alignment: "center" | "left" | "right";
@@ -12788,7 +12831,7 @@ export declare function init(config: AuthHeroConfig): {
12788
12831
  font?: {
12789
12832
  url: string;
12790
12833
  } | undefined;
12791
- dark_mode?: "dark" | "light" | "auto" | undefined;
12834
+ dark_mode?: "auto" | "light" | "dark" | undefined;
12792
12835
  };
12793
12836
  outputFormat: "json";
12794
12837
  status: 200;
@@ -12818,7 +12861,7 @@ export declare function init(config: AuthHeroConfig): {
12818
12861
  font?: {
12819
12862
  url: string;
12820
12863
  } | undefined;
12821
- dark_mode?: "dark" | "light" | "auto" | undefined;
12864
+ dark_mode?: "auto" | "light" | "dark" | undefined;
12822
12865
  };
12823
12866
  };
12824
12867
  output: {
@@ -12837,7 +12880,7 @@ export declare function init(config: AuthHeroConfig): {
12837
12880
  font?: {
12838
12881
  url: string;
12839
12882
  } | undefined;
12840
- dark_mode?: "dark" | "light" | "auto" | undefined;
12883
+ dark_mode?: "auto" | "light" | "dark" | undefined;
12841
12884
  };
12842
12885
  outputFormat: "json";
12843
12886
  status: 200;
@@ -12928,7 +12971,7 @@ export declare function init(config: AuthHeroConfig): {
12928
12971
  font?: {
12929
12972
  url: string;
12930
12973
  } | undefined;
12931
- dark_mode?: "dark" | "light" | "auto" | undefined;
12974
+ dark_mode?: "auto" | "light" | "dark" | undefined;
12932
12975
  } | undefined;
12933
12976
  theme?: {
12934
12977
  borders?: {
@@ -12946,7 +12989,7 @@ export declare function init(config: AuthHeroConfig): {
12946
12989
  base_focus_color: string;
12947
12990
  base_hover_color: string;
12948
12991
  body_text: string;
12949
- captcha_widget_theme: "dark" | "light" | "auto";
12992
+ captcha_widget_theme: "auto" | "light" | "dark";
12950
12993
  error: string;
12951
12994
  header: string;
12952
12995
  icons: string;
@@ -12997,7 +13040,7 @@ export declare function init(config: AuthHeroConfig): {
12997
13040
  background_color: string;
12998
13041
  background_image_url: string;
12999
13042
  page_layout: "center" | "left" | "right";
13000
- logo_placement?: "none" | "widget" | "chip" | undefined;
13043
+ logo_placement?: "widget" | "chip" | "none" | undefined;
13001
13044
  } | undefined;
13002
13045
  widget?: {
13003
13046
  header_text_alignment: "center" | "left" | "right";
@@ -13155,7 +13198,7 @@ export declare function init(config: AuthHeroConfig): {
13155
13198
  output: {
13156
13199
  id: string;
13157
13200
  trigger_id: string;
13158
- status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
13201
+ status: "pending" | "suspended" | "unspecified" | "final" | "partial" | "canceled";
13159
13202
  results: {
13160
13203
  action_name: string;
13161
13204
  error: {
@@ -14167,7 +14210,7 @@ export declare function init(config: AuthHeroConfig): {
14167
14210
  scope?: string | undefined;
14168
14211
  grant_types?: string[] | undefined;
14169
14212
  response_types?: string[] | undefined;
14170
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14213
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14171
14214
  jwks_uri?: string | undefined;
14172
14215
  jwks?: Record<string, unknown> | undefined;
14173
14216
  software_id?: string | undefined;
@@ -14256,7 +14299,7 @@ export declare function init(config: AuthHeroConfig): {
14256
14299
  scope?: string | undefined;
14257
14300
  grant_types?: string[] | undefined;
14258
14301
  response_types?: string[] | undefined;
14259
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14302
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14260
14303
  jwks_uri?: string | undefined;
14261
14304
  jwks?: Record<string, unknown> | undefined;
14262
14305
  software_id?: string | undefined;
@@ -14602,16 +14645,16 @@ export declare function init(config: AuthHeroConfig): {
14602
14645
  email: string;
14603
14646
  send: "code" | "link";
14604
14647
  authParams: {
14605
- username?: string | undefined;
14606
14648
  state?: string | undefined;
14607
- audience?: string | undefined;
14649
+ username?: string | undefined;
14650
+ act_as?: string | undefined;
14608
14651
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14609
14652
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14610
- scope?: string | undefined;
14653
+ redirect_uri?: string | undefined;
14654
+ audience?: string | undefined;
14611
14655
  organization?: string | undefined;
14612
14656
  nonce?: string | undefined;
14613
- redirect_uri?: string | undefined;
14614
- act_as?: string | undefined;
14657
+ scope?: string | undefined;
14615
14658
  prompt?: string | undefined;
14616
14659
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14617
14660
  code_challenge?: string | undefined;
@@ -14638,16 +14681,16 @@ export declare function init(config: AuthHeroConfig): {
14638
14681
  phone_number: string;
14639
14682
  send: "code" | "link";
14640
14683
  authParams: {
14641
- username?: string | undefined;
14642
14684
  state?: string | undefined;
14643
- audience?: string | undefined;
14685
+ username?: string | undefined;
14686
+ act_as?: string | undefined;
14644
14687
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14645
14688
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14646
- scope?: string | undefined;
14689
+ redirect_uri?: string | undefined;
14690
+ audience?: string | undefined;
14647
14691
  organization?: string | undefined;
14648
14692
  nonce?: string | undefined;
14649
- redirect_uri?: string | undefined;
14650
- act_as?: string | undefined;
14693
+ scope?: string | undefined;
14651
14694
  prompt?: string | undefined;
14652
14695
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14653
14696
  code_challenge?: string | undefined;
@@ -14782,14 +14825,14 @@ export declare function init(config: AuthHeroConfig): {
14782
14825
  input: {
14783
14826
  form: {
14784
14827
  token: string;
14785
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14828
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14786
14829
  client_id?: string | undefined;
14787
14830
  client_secret?: string | undefined;
14788
14831
  };
14789
14832
  } & {
14790
14833
  json: {
14791
14834
  token: string;
14792
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14835
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14793
14836
  client_id?: string | undefined;
14794
14837
  client_secret?: string | undefined;
14795
14838
  };
@@ -14801,14 +14844,14 @@ export declare function init(config: AuthHeroConfig): {
14801
14844
  input: {
14802
14845
  form: {
14803
14846
  token: string;
14804
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14847
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14805
14848
  client_id?: string | undefined;
14806
14849
  client_secret?: string | undefined;
14807
14850
  };
14808
14851
  } & {
14809
14852
  json: {
14810
14853
  token: string;
14811
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14854
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14812
14855
  client_id?: string | undefined;
14813
14856
  client_secret?: string | undefined;
14814
14857
  };
@@ -14823,14 +14866,14 @@ export declare function init(config: AuthHeroConfig): {
14823
14866
  input: {
14824
14867
  form: {
14825
14868
  token: string;
14826
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14869
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14827
14870
  client_id?: string | undefined;
14828
14871
  client_secret?: string | undefined;
14829
14872
  };
14830
14873
  } & {
14831
14874
  json: {
14832
14875
  token: string;
14833
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14876
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14834
14877
  client_id?: string | undefined;
14835
14878
  client_secret?: string | undefined;
14836
14879
  };
@@ -14880,7 +14923,7 @@ export declare function init(config: AuthHeroConfig): {
14880
14923
  client_id: string;
14881
14924
  username: string;
14882
14925
  otp: string;
14883
- realm: "sms" | "email";
14926
+ realm: "email" | "sms";
14884
14927
  } | {
14885
14928
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14886
14929
  subject_token: string;
@@ -14927,7 +14970,7 @@ export declare function init(config: AuthHeroConfig): {
14927
14970
  client_id: string;
14928
14971
  username: string;
14929
14972
  otp: string;
14930
- realm: "sms" | "email";
14973
+ realm: "email" | "sms";
14931
14974
  } | {
14932
14975
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14933
14976
  subject_token: string;
@@ -14979,7 +15022,7 @@ export declare function init(config: AuthHeroConfig): {
14979
15022
  client_id: string;
14980
15023
  username: string;
14981
15024
  otp: string;
14982
- realm: "sms" | "email";
15025
+ realm: "email" | "sms";
14983
15026
  } | {
14984
15027
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14985
15028
  subject_token: string;
@@ -15026,7 +15069,7 @@ export declare function init(config: AuthHeroConfig): {
15026
15069
  client_id: string;
15027
15070
  username: string;
15028
15071
  otp: string;
15029
- realm: "sms" | "email";
15072
+ realm: "email" | "sms";
15030
15073
  } | {
15031
15074
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15032
15075
  subject_token: string;
@@ -15086,7 +15129,7 @@ export declare function init(config: AuthHeroConfig): {
15086
15129
  client_id: string;
15087
15130
  username: string;
15088
15131
  otp: string;
15089
- realm: "sms" | "email";
15132
+ realm: "email" | "sms";
15090
15133
  } | {
15091
15134
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15092
15135
  subject_token: string;
@@ -15133,7 +15176,7 @@ export declare function init(config: AuthHeroConfig): {
15133
15176
  client_id: string;
15134
15177
  username: string;
15135
15178
  otp: string;
15136
- realm: "sms" | "email";
15179
+ realm: "email" | "sms";
15137
15180
  } | {
15138
15181
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15139
15182
  subject_token: string;
@@ -15188,7 +15231,7 @@ export declare function init(config: AuthHeroConfig): {
15188
15231
  client_id: string;
15189
15232
  username: string;
15190
15233
  otp: string;
15191
- realm: "sms" | "email";
15234
+ realm: "email" | "sms";
15192
15235
  } | {
15193
15236
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15194
15237
  subject_token: string;
@@ -15235,7 +15278,7 @@ export declare function init(config: AuthHeroConfig): {
15235
15278
  client_id: string;
15236
15279
  username: string;
15237
15280
  otp: string;
15238
- realm: "sms" | "email";
15281
+ realm: "email" | "sms";
15239
15282
  } | {
15240
15283
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15241
15284
  subject_token: string;
@@ -15290,7 +15333,7 @@ export declare function init(config: AuthHeroConfig): {
15290
15333
  client_id: string;
15291
15334
  username: string;
15292
15335
  otp: string;
15293
- realm: "sms" | "email";
15336
+ realm: "email" | "sms";
15294
15337
  } | {
15295
15338
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15296
15339
  subject_token: string;
@@ -15337,7 +15380,7 @@ export declare function init(config: AuthHeroConfig): {
15337
15380
  client_id: string;
15338
15381
  username: string;
15339
15382
  otp: string;
15340
- realm: "sms" | "email";
15383
+ realm: "email" | "sms";
15341
15384
  } | {
15342
15385
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15343
15386
  subject_token: string;
@@ -16557,7 +16600,7 @@ export declare function init(config: AuthHeroConfig): {
16557
16600
  $get: {
16558
16601
  input: {
16559
16602
  param: {
16560
- 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";
16603
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16561
16604
  };
16562
16605
  } & {
16563
16606
  query: {
@@ -16573,7 +16616,7 @@ export declare function init(config: AuthHeroConfig): {
16573
16616
  } | {
16574
16617
  input: {
16575
16618
  param: {
16576
- 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";
16619
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16577
16620
  };
16578
16621
  } & {
16579
16622
  query: {
@@ -16589,7 +16632,7 @@ export declare function init(config: AuthHeroConfig): {
16589
16632
  } | {
16590
16633
  input: {
16591
16634
  param: {
16592
- 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";
16635
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16593
16636
  };
16594
16637
  } & {
16595
16638
  query: {
@@ -16609,7 +16652,7 @@ export declare function init(config: AuthHeroConfig): {
16609
16652
  $post: {
16610
16653
  input: {
16611
16654
  param: {
16612
- 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";
16655
+ 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";
16613
16656
  };
16614
16657
  } & {
16615
16658
  query: {
@@ -16627,7 +16670,7 @@ export declare function init(config: AuthHeroConfig): {
16627
16670
  } | {
16628
16671
  input: {
16629
16672
  param: {
16630
- 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";
16673
+ 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";
16631
16674
  };
16632
16675
  } & {
16633
16676
  query: {