authhero 0.288.0 → 0.289.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10060,6 +10060,7 @@ export type FormControl = z.infer<typeof formControlSchema>;
10060
10060
  export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type", [
10061
10061
  z.ZodObject<{
10062
10062
  id: z.ZodString;
10063
+ category: z.ZodOptional<z.ZodLiteral<"BLOCK">>;
10063
10064
  type: z.ZodLiteral<"RICH_TEXT">;
10064
10065
  config: z.ZodObject<{
10065
10066
  content: z.ZodString;
@@ -10077,6 +10078,7 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10077
10078
  content: string;
10078
10079
  };
10079
10080
  visible: boolean;
10081
+ category?: "BLOCK" | undefined;
10080
10082
  order?: number | undefined;
10081
10083
  }, {
10082
10084
  type: "RICH_TEXT";
@@ -10084,11 +10086,13 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10084
10086
  config: {
10085
10087
  content: string;
10086
10088
  };
10089
+ category?: "BLOCK" | undefined;
10087
10090
  order?: number | undefined;
10088
10091
  visible?: boolean | undefined;
10089
10092
  }>,
10090
10093
  z.ZodObject<{
10091
10094
  id: z.ZodString;
10095
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
10092
10096
  type: z.ZodLiteral<"LEGAL">;
10093
10097
  config: z.ZodObject<{
10094
10098
  text: z.ZodString;
@@ -10112,6 +10116,7 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10112
10116
  };
10113
10117
  visible: boolean;
10114
10118
  required?: boolean | undefined;
10119
+ category?: "FIELD" | undefined;
10115
10120
  order?: number | undefined;
10116
10121
  }, {
10117
10122
  type: "LEGAL";
@@ -10121,11 +10126,13 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10121
10126
  html?: boolean | undefined;
10122
10127
  };
10123
10128
  required?: boolean | undefined;
10129
+ category?: "FIELD" | undefined;
10124
10130
  order?: number | undefined;
10125
10131
  visible?: boolean | undefined;
10126
10132
  }>,
10127
10133
  z.ZodObject<{
10128
10134
  id: z.ZodString;
10135
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
10129
10136
  type: z.ZodLiteral<"TEXT">;
10130
10137
  config: z.ZodObject<{
10131
10138
  placeholder: z.ZodOptional<z.ZodString>;
@@ -10150,6 +10157,7 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10150
10157
  };
10151
10158
  visible: boolean;
10152
10159
  required?: boolean | undefined;
10160
+ category?: "FIELD" | undefined;
10153
10161
  sensitive?: boolean | undefined;
10154
10162
  order?: number | undefined;
10155
10163
  }, {
@@ -10160,12 +10168,14 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10160
10168
  multiline?: boolean | undefined;
10161
10169
  };
10162
10170
  required?: boolean | undefined;
10171
+ category?: "FIELD" | undefined;
10163
10172
  sensitive?: boolean | undefined;
10164
10173
  order?: number | undefined;
10165
10174
  visible?: boolean | undefined;
10166
10175
  }>,
10167
10176
  z.ZodObject<{
10168
10177
  id: z.ZodString;
10178
+ category: z.ZodOptional<z.ZodLiteral<"BLOCK">>;
10169
10179
  type: z.ZodLiteral<"NEXT_BUTTON">;
10170
10180
  config: z.ZodObject<{
10171
10181
  text: z.ZodOptional<z.ZodString>;
@@ -10183,6 +10193,7 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10183
10193
  text?: string | undefined;
10184
10194
  };
10185
10195
  visible: boolean;
10196
+ category?: "BLOCK" | undefined;
10186
10197
  order?: number | undefined;
10187
10198
  }, {
10188
10199
  type: "NEXT_BUTTON";
@@ -10190,6 +10201,7 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10190
10201
  config: {
10191
10202
  text?: string | undefined;
10192
10203
  };
10204
+ category?: "BLOCK" | undefined;
10193
10205
  order?: number | undefined;
10194
10206
  visible?: boolean | undefined;
10195
10207
  }>
@@ -10238,20 +10250,20 @@ export declare const formInsertSchema: z.ZodObject<{
10238
10250
  alias: z.ZodOptional<z.ZodString>;
10239
10251
  config: z.ZodObject<{
10240
10252
  flow_id: z.ZodString;
10241
- next_node: z.ZodString;
10253
+ next_node: z.ZodOptional<z.ZodString>;
10242
10254
  }, "strip", z.ZodTypeAny, {
10243
- next_node: string;
10244
10255
  flow_id: string;
10256
+ next_node?: string | undefined;
10245
10257
  }, {
10246
- next_node: string;
10247
10258
  flow_id: string;
10259
+ next_node?: string | undefined;
10248
10260
  }>;
10249
10261
  }, "strip", z.ZodTypeAny, {
10250
10262
  type: "FLOW";
10251
10263
  id: string;
10252
10264
  config: {
10253
- next_node: string;
10254
10265
  flow_id: string;
10266
+ next_node?: string | undefined;
10255
10267
  };
10256
10268
  coordinates: {
10257
10269
  x: number;
@@ -10262,8 +10274,8 @@ export declare const formInsertSchema: z.ZodObject<{
10262
10274
  type: "FLOW";
10263
10275
  id: string;
10264
10276
  config: {
10265
- next_node: string;
10266
10277
  flow_id: string;
10278
+ next_node?: string | undefined;
10267
10279
  };
10268
10280
  coordinates: {
10269
10281
  x: number;
@@ -10302,7 +10314,7 @@ export declare const formInsertSchema: z.ZodObject<{
10302
10314
  alias?: string | undefined;
10303
10315
  condition?: any;
10304
10316
  }>, "many">;
10305
- fallback: z.ZodArray<z.ZodString, "many">;
10317
+ fallback: z.ZodString;
10306
10318
  }, "strip", z.ZodTypeAny, {
10307
10319
  rules: {
10308
10320
  id: string;
@@ -10310,7 +10322,7 @@ export declare const formInsertSchema: z.ZodObject<{
10310
10322
  alias?: string | undefined;
10311
10323
  condition?: any;
10312
10324
  }[];
10313
- fallback: string[];
10325
+ fallback: string;
10314
10326
  }, {
10315
10327
  rules: {
10316
10328
  id: string;
@@ -10318,7 +10330,7 @@ export declare const formInsertSchema: z.ZodObject<{
10318
10330
  alias?: string | undefined;
10319
10331
  condition?: any;
10320
10332
  }[];
10321
- fallback: string[];
10333
+ fallback: string;
10322
10334
  }>;
10323
10335
  }, "strip", z.ZodTypeAny, {
10324
10336
  type: "ROUTER";
@@ -10330,7 +10342,7 @@ export declare const formInsertSchema: z.ZodObject<{
10330
10342
  alias?: string | undefined;
10331
10343
  condition?: any;
10332
10344
  }[];
10333
- fallback: string[];
10345
+ fallback: string;
10334
10346
  };
10335
10347
  coordinates: {
10336
10348
  x: number;
@@ -10347,7 +10359,7 @@ export declare const formInsertSchema: z.ZodObject<{
10347
10359
  alias?: string | undefined;
10348
10360
  condition?: any;
10349
10361
  }[];
10350
- fallback: string[];
10362
+ fallback: string;
10351
10363
  };
10352
10364
  coordinates: {
10353
10365
  x: number;
@@ -10373,6 +10385,7 @@ export declare const formInsertSchema: z.ZodObject<{
10373
10385
  components: z.ZodArray<z.ZodDiscriminatedUnion<"type", [
10374
10386
  z.ZodObject<{
10375
10387
  id: z.ZodString;
10388
+ category: z.ZodOptional<z.ZodLiteral<"BLOCK">>;
10376
10389
  type: z.ZodLiteral<"RICH_TEXT">;
10377
10390
  config: z.ZodObject<{
10378
10391
  content: z.ZodString;
@@ -10390,6 +10403,7 @@ export declare const formInsertSchema: z.ZodObject<{
10390
10403
  content: string;
10391
10404
  };
10392
10405
  visible: boolean;
10406
+ category?: "BLOCK" | undefined;
10393
10407
  order?: number | undefined;
10394
10408
  }, {
10395
10409
  type: "RICH_TEXT";
@@ -10397,11 +10411,13 @@ export declare const formInsertSchema: z.ZodObject<{
10397
10411
  config: {
10398
10412
  content: string;
10399
10413
  };
10414
+ category?: "BLOCK" | undefined;
10400
10415
  order?: number | undefined;
10401
10416
  visible?: boolean | undefined;
10402
10417
  }>,
10403
10418
  z.ZodObject<{
10404
10419
  id: z.ZodString;
10420
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
10405
10421
  type: z.ZodLiteral<"LEGAL">;
10406
10422
  config: z.ZodObject<{
10407
10423
  text: z.ZodString;
@@ -10425,6 +10441,7 @@ export declare const formInsertSchema: z.ZodObject<{
10425
10441
  };
10426
10442
  visible: boolean;
10427
10443
  required?: boolean | undefined;
10444
+ category?: "FIELD" | undefined;
10428
10445
  order?: number | undefined;
10429
10446
  }, {
10430
10447
  type: "LEGAL";
@@ -10434,11 +10451,13 @@ export declare const formInsertSchema: z.ZodObject<{
10434
10451
  html?: boolean | undefined;
10435
10452
  };
10436
10453
  required?: boolean | undefined;
10454
+ category?: "FIELD" | undefined;
10437
10455
  order?: number | undefined;
10438
10456
  visible?: boolean | undefined;
10439
10457
  }>,
10440
10458
  z.ZodObject<{
10441
10459
  id: z.ZodString;
10460
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
10442
10461
  type: z.ZodLiteral<"TEXT">;
10443
10462
  config: z.ZodObject<{
10444
10463
  placeholder: z.ZodOptional<z.ZodString>;
@@ -10463,6 +10482,7 @@ export declare const formInsertSchema: z.ZodObject<{
10463
10482
  };
10464
10483
  visible: boolean;
10465
10484
  required?: boolean | undefined;
10485
+ category?: "FIELD" | undefined;
10466
10486
  sensitive?: boolean | undefined;
10467
10487
  order?: number | undefined;
10468
10488
  }, {
@@ -10473,12 +10493,14 @@ export declare const formInsertSchema: z.ZodObject<{
10473
10493
  multiline?: boolean | undefined;
10474
10494
  };
10475
10495
  required?: boolean | undefined;
10496
+ category?: "FIELD" | undefined;
10476
10497
  sensitive?: boolean | undefined;
10477
10498
  order?: number | undefined;
10478
10499
  visible?: boolean | undefined;
10479
10500
  }>,
10480
10501
  z.ZodObject<{
10481
10502
  id: z.ZodString;
10503
+ category: z.ZodOptional<z.ZodLiteral<"BLOCK">>;
10482
10504
  type: z.ZodLiteral<"NEXT_BUTTON">;
10483
10505
  config: z.ZodObject<{
10484
10506
  text: z.ZodOptional<z.ZodString>;
@@ -10496,6 +10518,7 @@ export declare const formInsertSchema: z.ZodObject<{
10496
10518
  text?: string | undefined;
10497
10519
  };
10498
10520
  visible: boolean;
10521
+ category?: "BLOCK" | undefined;
10499
10522
  order?: number | undefined;
10500
10523
  }, {
10501
10524
  type: "NEXT_BUTTON";
@@ -10503,11 +10526,12 @@ export declare const formInsertSchema: z.ZodObject<{
10503
10526
  config: {
10504
10527
  text?: string | undefined;
10505
10528
  };
10529
+ category?: "BLOCK" | undefined;
10506
10530
  order?: number | undefined;
10507
10531
  visible?: boolean | undefined;
10508
10532
  }>
10509
10533
  ]>, "many">;
10510
- next_node: z.ZodString;
10534
+ next_node: z.ZodOptional<z.ZodString>;
10511
10535
  }, "strip", z.ZodTypeAny, {
10512
10536
  components: ({
10513
10537
  type: "RICH_TEXT";
@@ -10516,6 +10540,7 @@ export declare const formInsertSchema: z.ZodObject<{
10516
10540
  content: string;
10517
10541
  };
10518
10542
  visible: boolean;
10543
+ category?: "BLOCK" | undefined;
10519
10544
  order?: number | undefined;
10520
10545
  } | {
10521
10546
  type: "LEGAL";
@@ -10526,6 +10551,7 @@ export declare const formInsertSchema: z.ZodObject<{
10526
10551
  };
10527
10552
  visible: boolean;
10528
10553
  required?: boolean | undefined;
10554
+ category?: "FIELD" | undefined;
10529
10555
  order?: number | undefined;
10530
10556
  } | {
10531
10557
  type: "TEXT";
@@ -10536,6 +10562,7 @@ export declare const formInsertSchema: z.ZodObject<{
10536
10562
  };
10537
10563
  visible: boolean;
10538
10564
  required?: boolean | undefined;
10565
+ category?: "FIELD" | undefined;
10539
10566
  sensitive?: boolean | undefined;
10540
10567
  order?: number | undefined;
10541
10568
  } | {
@@ -10545,9 +10572,10 @@ export declare const formInsertSchema: z.ZodObject<{
10545
10572
  text?: string | undefined;
10546
10573
  };
10547
10574
  visible: boolean;
10575
+ category?: "BLOCK" | undefined;
10548
10576
  order?: number | undefined;
10549
10577
  })[];
10550
- next_node: string;
10578
+ next_node?: string | undefined;
10551
10579
  }, {
10552
10580
  components: ({
10553
10581
  type: "RICH_TEXT";
@@ -10555,6 +10583,7 @@ export declare const formInsertSchema: z.ZodObject<{
10555
10583
  config: {
10556
10584
  content: string;
10557
10585
  };
10586
+ category?: "BLOCK" | undefined;
10558
10587
  order?: number | undefined;
10559
10588
  visible?: boolean | undefined;
10560
10589
  } | {
@@ -10565,6 +10594,7 @@ export declare const formInsertSchema: z.ZodObject<{
10565
10594
  html?: boolean | undefined;
10566
10595
  };
10567
10596
  required?: boolean | undefined;
10597
+ category?: "FIELD" | undefined;
10568
10598
  order?: number | undefined;
10569
10599
  visible?: boolean | undefined;
10570
10600
  } | {
@@ -10575,6 +10605,7 @@ export declare const formInsertSchema: z.ZodObject<{
10575
10605
  multiline?: boolean | undefined;
10576
10606
  };
10577
10607
  required?: boolean | undefined;
10608
+ category?: "FIELD" | undefined;
10578
10609
  sensitive?: boolean | undefined;
10579
10610
  order?: number | undefined;
10580
10611
  visible?: boolean | undefined;
@@ -10584,10 +10615,11 @@ export declare const formInsertSchema: z.ZodObject<{
10584
10615
  config: {
10585
10616
  text?: string | undefined;
10586
10617
  };
10618
+ category?: "BLOCK" | undefined;
10587
10619
  order?: number | undefined;
10588
10620
  visible?: boolean | undefined;
10589
10621
  })[];
10590
- next_node: string;
10622
+ next_node?: string | undefined;
10591
10623
  }>;
10592
10624
  }, "strip", z.ZodTypeAny, {
10593
10625
  type: "STEP";
@@ -10600,6 +10632,7 @@ export declare const formInsertSchema: z.ZodObject<{
10600
10632
  content: string;
10601
10633
  };
10602
10634
  visible: boolean;
10635
+ category?: "BLOCK" | undefined;
10603
10636
  order?: number | undefined;
10604
10637
  } | {
10605
10638
  type: "LEGAL";
@@ -10610,6 +10643,7 @@ export declare const formInsertSchema: z.ZodObject<{
10610
10643
  };
10611
10644
  visible: boolean;
10612
10645
  required?: boolean | undefined;
10646
+ category?: "FIELD" | undefined;
10613
10647
  order?: number | undefined;
10614
10648
  } | {
10615
10649
  type: "TEXT";
@@ -10620,6 +10654,7 @@ export declare const formInsertSchema: z.ZodObject<{
10620
10654
  };
10621
10655
  visible: boolean;
10622
10656
  required?: boolean | undefined;
10657
+ category?: "FIELD" | undefined;
10623
10658
  sensitive?: boolean | undefined;
10624
10659
  order?: number | undefined;
10625
10660
  } | {
@@ -10629,9 +10664,10 @@ export declare const formInsertSchema: z.ZodObject<{
10629
10664
  text?: string | undefined;
10630
10665
  };
10631
10666
  visible: boolean;
10667
+ category?: "BLOCK" | undefined;
10632
10668
  order?: number | undefined;
10633
10669
  })[];
10634
- next_node: string;
10670
+ next_node?: string | undefined;
10635
10671
  };
10636
10672
  coordinates: {
10637
10673
  x: number;
@@ -10648,6 +10684,7 @@ export declare const formInsertSchema: z.ZodObject<{
10648
10684
  config: {
10649
10685
  content: string;
10650
10686
  };
10687
+ category?: "BLOCK" | undefined;
10651
10688
  order?: number | undefined;
10652
10689
  visible?: boolean | undefined;
10653
10690
  } | {
@@ -10658,6 +10695,7 @@ export declare const formInsertSchema: z.ZodObject<{
10658
10695
  html?: boolean | undefined;
10659
10696
  };
10660
10697
  required?: boolean | undefined;
10698
+ category?: "FIELD" | undefined;
10661
10699
  order?: number | undefined;
10662
10700
  visible?: boolean | undefined;
10663
10701
  } | {
@@ -10668,6 +10706,7 @@ export declare const formInsertSchema: z.ZodObject<{
10668
10706
  multiline?: boolean | undefined;
10669
10707
  };
10670
10708
  required?: boolean | undefined;
10709
+ category?: "FIELD" | undefined;
10671
10710
  sensitive?: boolean | undefined;
10672
10711
  order?: number | undefined;
10673
10712
  visible?: boolean | undefined;
@@ -10677,10 +10716,11 @@ export declare const formInsertSchema: z.ZodObject<{
10677
10716
  config: {
10678
10717
  text?: string | undefined;
10679
10718
  };
10719
+ category?: "BLOCK" | undefined;
10680
10720
  order?: number | undefined;
10681
10721
  visible?: boolean | undefined;
10682
10722
  })[];
10683
- next_node: string;
10723
+ next_node?: string | undefined;
10684
10724
  };
10685
10725
  coordinates: {
10686
10726
  x: number;
@@ -10819,8 +10859,8 @@ export declare const formInsertSchema: z.ZodObject<{
10819
10859
  type: "FLOW";
10820
10860
  id: string;
10821
10861
  config: {
10822
- next_node: string;
10823
10862
  flow_id: string;
10863
+ next_node?: string | undefined;
10824
10864
  };
10825
10865
  coordinates: {
10826
10866
  x: number;
@@ -10837,7 +10877,7 @@ export declare const formInsertSchema: z.ZodObject<{
10837
10877
  alias?: string | undefined;
10838
10878
  condition?: any;
10839
10879
  }[];
10840
- fallback: string[];
10880
+ fallback: string;
10841
10881
  };
10842
10882
  coordinates: {
10843
10883
  x: number;
@@ -10855,6 +10895,7 @@ export declare const formInsertSchema: z.ZodObject<{
10855
10895
  content: string;
10856
10896
  };
10857
10897
  visible: boolean;
10898
+ category?: "BLOCK" | undefined;
10858
10899
  order?: number | undefined;
10859
10900
  } | {
10860
10901
  type: "LEGAL";
@@ -10865,6 +10906,7 @@ export declare const formInsertSchema: z.ZodObject<{
10865
10906
  };
10866
10907
  visible: boolean;
10867
10908
  required?: boolean | undefined;
10909
+ category?: "FIELD" | undefined;
10868
10910
  order?: number | undefined;
10869
10911
  } | {
10870
10912
  type: "TEXT";
@@ -10875,6 +10917,7 @@ export declare const formInsertSchema: z.ZodObject<{
10875
10917
  };
10876
10918
  visible: boolean;
10877
10919
  required?: boolean | undefined;
10920
+ category?: "FIELD" | undefined;
10878
10921
  sensitive?: boolean | undefined;
10879
10922
  order?: number | undefined;
10880
10923
  } | {
@@ -10884,9 +10927,10 @@ export declare const formInsertSchema: z.ZodObject<{
10884
10927
  text?: string | undefined;
10885
10928
  };
10886
10929
  visible: boolean;
10930
+ category?: "BLOCK" | undefined;
10887
10931
  order?: number | undefined;
10888
10932
  })[];
10889
- next_node: string;
10933
+ next_node?: string | undefined;
10890
10934
  };
10891
10935
  coordinates: {
10892
10936
  x: number;
@@ -10937,8 +10981,8 @@ export declare const formInsertSchema: z.ZodObject<{
10937
10981
  type: "FLOW";
10938
10982
  id: string;
10939
10983
  config: {
10940
- next_node: string;
10941
10984
  flow_id: string;
10985
+ next_node?: string | undefined;
10942
10986
  };
10943
10987
  coordinates: {
10944
10988
  x: number;
@@ -10955,7 +10999,7 @@ export declare const formInsertSchema: z.ZodObject<{
10955
10999
  alias?: string | undefined;
10956
11000
  condition?: any;
10957
11001
  }[];
10958
- fallback: string[];
11002
+ fallback: string;
10959
11003
  };
10960
11004
  coordinates: {
10961
11005
  x: number;
@@ -10972,6 +11016,7 @@ export declare const formInsertSchema: z.ZodObject<{
10972
11016
  config: {
10973
11017
  content: string;
10974
11018
  };
11019
+ category?: "BLOCK" | undefined;
10975
11020
  order?: number | undefined;
10976
11021
  visible?: boolean | undefined;
10977
11022
  } | {
@@ -10982,6 +11027,7 @@ export declare const formInsertSchema: z.ZodObject<{
10982
11027
  html?: boolean | undefined;
10983
11028
  };
10984
11029
  required?: boolean | undefined;
11030
+ category?: "FIELD" | undefined;
10985
11031
  order?: number | undefined;
10986
11032
  visible?: boolean | undefined;
10987
11033
  } | {
@@ -10992,6 +11038,7 @@ export declare const formInsertSchema: z.ZodObject<{
10992
11038
  multiline?: boolean | undefined;
10993
11039
  };
10994
11040
  required?: boolean | undefined;
11041
+ category?: "FIELD" | undefined;
10995
11042
  sensitive?: boolean | undefined;
10996
11043
  order?: number | undefined;
10997
11044
  visible?: boolean | undefined;
@@ -11001,10 +11048,11 @@ export declare const formInsertSchema: z.ZodObject<{
11001
11048
  config: {
11002
11049
  text?: string | undefined;
11003
11050
  };
11051
+ category?: "BLOCK" | undefined;
11004
11052
  order?: number | undefined;
11005
11053
  visible?: boolean | undefined;
11006
11054
  })[];
11007
- next_node: string;
11055
+ next_node?: string | undefined;
11008
11056
  };
11009
11057
  coordinates: {
11010
11058
  x: number;
@@ -11077,20 +11125,20 @@ export declare const formSchema: z.ZodObject<{
11077
11125
  alias: z.ZodOptional<z.ZodString>;
11078
11126
  config: z.ZodObject<{
11079
11127
  flow_id: z.ZodString;
11080
- next_node: z.ZodString;
11128
+ next_node: z.ZodOptional<z.ZodString>;
11081
11129
  }, "strip", z.ZodTypeAny, {
11082
- next_node: string;
11083
11130
  flow_id: string;
11131
+ next_node?: string | undefined;
11084
11132
  }, {
11085
- next_node: string;
11086
11133
  flow_id: string;
11134
+ next_node?: string | undefined;
11087
11135
  }>;
11088
11136
  }, "strip", z.ZodTypeAny, {
11089
11137
  type: "FLOW";
11090
11138
  id: string;
11091
11139
  config: {
11092
- next_node: string;
11093
11140
  flow_id: string;
11141
+ next_node?: string | undefined;
11094
11142
  };
11095
11143
  coordinates: {
11096
11144
  x: number;
@@ -11101,8 +11149,8 @@ export declare const formSchema: z.ZodObject<{
11101
11149
  type: "FLOW";
11102
11150
  id: string;
11103
11151
  config: {
11104
- next_node: string;
11105
11152
  flow_id: string;
11153
+ next_node?: string | undefined;
11106
11154
  };
11107
11155
  coordinates: {
11108
11156
  x: number;
@@ -11141,7 +11189,7 @@ export declare const formSchema: z.ZodObject<{
11141
11189
  alias?: string | undefined;
11142
11190
  condition?: any;
11143
11191
  }>, "many">;
11144
- fallback: z.ZodArray<z.ZodString, "many">;
11192
+ fallback: z.ZodString;
11145
11193
  }, "strip", z.ZodTypeAny, {
11146
11194
  rules: {
11147
11195
  id: string;
@@ -11149,7 +11197,7 @@ export declare const formSchema: z.ZodObject<{
11149
11197
  alias?: string | undefined;
11150
11198
  condition?: any;
11151
11199
  }[];
11152
- fallback: string[];
11200
+ fallback: string;
11153
11201
  }, {
11154
11202
  rules: {
11155
11203
  id: string;
@@ -11157,7 +11205,7 @@ export declare const formSchema: z.ZodObject<{
11157
11205
  alias?: string | undefined;
11158
11206
  condition?: any;
11159
11207
  }[];
11160
- fallback: string[];
11208
+ fallback: string;
11161
11209
  }>;
11162
11210
  }, "strip", z.ZodTypeAny, {
11163
11211
  type: "ROUTER";
@@ -11169,7 +11217,7 @@ export declare const formSchema: z.ZodObject<{
11169
11217
  alias?: string | undefined;
11170
11218
  condition?: any;
11171
11219
  }[];
11172
- fallback: string[];
11220
+ fallback: string;
11173
11221
  };
11174
11222
  coordinates: {
11175
11223
  x: number;
@@ -11186,7 +11234,7 @@ export declare const formSchema: z.ZodObject<{
11186
11234
  alias?: string | undefined;
11187
11235
  condition?: any;
11188
11236
  }[];
11189
- fallback: string[];
11237
+ fallback: string;
11190
11238
  };
11191
11239
  coordinates: {
11192
11240
  x: number;
@@ -11212,6 +11260,7 @@ export declare const formSchema: z.ZodObject<{
11212
11260
  components: z.ZodArray<z.ZodDiscriminatedUnion<"type", [
11213
11261
  z.ZodObject<{
11214
11262
  id: z.ZodString;
11263
+ category: z.ZodOptional<z.ZodLiteral<"BLOCK">>;
11215
11264
  type: z.ZodLiteral<"RICH_TEXT">;
11216
11265
  config: z.ZodObject<{
11217
11266
  content: z.ZodString;
@@ -11229,6 +11278,7 @@ export declare const formSchema: z.ZodObject<{
11229
11278
  content: string;
11230
11279
  };
11231
11280
  visible: boolean;
11281
+ category?: "BLOCK" | undefined;
11232
11282
  order?: number | undefined;
11233
11283
  }, {
11234
11284
  type: "RICH_TEXT";
@@ -11236,11 +11286,13 @@ export declare const formSchema: z.ZodObject<{
11236
11286
  config: {
11237
11287
  content: string;
11238
11288
  };
11289
+ category?: "BLOCK" | undefined;
11239
11290
  order?: number | undefined;
11240
11291
  visible?: boolean | undefined;
11241
11292
  }>,
11242
11293
  z.ZodObject<{
11243
11294
  id: z.ZodString;
11295
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
11244
11296
  type: z.ZodLiteral<"LEGAL">;
11245
11297
  config: z.ZodObject<{
11246
11298
  text: z.ZodString;
@@ -11264,6 +11316,7 @@ export declare const formSchema: z.ZodObject<{
11264
11316
  };
11265
11317
  visible: boolean;
11266
11318
  required?: boolean | undefined;
11319
+ category?: "FIELD" | undefined;
11267
11320
  order?: number | undefined;
11268
11321
  }, {
11269
11322
  type: "LEGAL";
@@ -11273,11 +11326,13 @@ export declare const formSchema: z.ZodObject<{
11273
11326
  html?: boolean | undefined;
11274
11327
  };
11275
11328
  required?: boolean | undefined;
11329
+ category?: "FIELD" | undefined;
11276
11330
  order?: number | undefined;
11277
11331
  visible?: boolean | undefined;
11278
11332
  }>,
11279
11333
  z.ZodObject<{
11280
11334
  id: z.ZodString;
11335
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
11281
11336
  type: z.ZodLiteral<"TEXT">;
11282
11337
  config: z.ZodObject<{
11283
11338
  placeholder: z.ZodOptional<z.ZodString>;
@@ -11302,6 +11357,7 @@ export declare const formSchema: z.ZodObject<{
11302
11357
  };
11303
11358
  visible: boolean;
11304
11359
  required?: boolean | undefined;
11360
+ category?: "FIELD" | undefined;
11305
11361
  sensitive?: boolean | undefined;
11306
11362
  order?: number | undefined;
11307
11363
  }, {
@@ -11312,12 +11368,14 @@ export declare const formSchema: z.ZodObject<{
11312
11368
  multiline?: boolean | undefined;
11313
11369
  };
11314
11370
  required?: boolean | undefined;
11371
+ category?: "FIELD" | undefined;
11315
11372
  sensitive?: boolean | undefined;
11316
11373
  order?: number | undefined;
11317
11374
  visible?: boolean | undefined;
11318
11375
  }>,
11319
11376
  z.ZodObject<{
11320
11377
  id: z.ZodString;
11378
+ category: z.ZodOptional<z.ZodLiteral<"BLOCK">>;
11321
11379
  type: z.ZodLiteral<"NEXT_BUTTON">;
11322
11380
  config: z.ZodObject<{
11323
11381
  text: z.ZodOptional<z.ZodString>;
@@ -11335,6 +11393,7 @@ export declare const formSchema: z.ZodObject<{
11335
11393
  text?: string | undefined;
11336
11394
  };
11337
11395
  visible: boolean;
11396
+ category?: "BLOCK" | undefined;
11338
11397
  order?: number | undefined;
11339
11398
  }, {
11340
11399
  type: "NEXT_BUTTON";
@@ -11342,11 +11401,12 @@ export declare const formSchema: z.ZodObject<{
11342
11401
  config: {
11343
11402
  text?: string | undefined;
11344
11403
  };
11404
+ category?: "BLOCK" | undefined;
11345
11405
  order?: number | undefined;
11346
11406
  visible?: boolean | undefined;
11347
11407
  }>
11348
11408
  ]>, "many">;
11349
- next_node: z.ZodString;
11409
+ next_node: z.ZodOptional<z.ZodString>;
11350
11410
  }, "strip", z.ZodTypeAny, {
11351
11411
  components: ({
11352
11412
  type: "RICH_TEXT";
@@ -11355,6 +11415,7 @@ export declare const formSchema: z.ZodObject<{
11355
11415
  content: string;
11356
11416
  };
11357
11417
  visible: boolean;
11418
+ category?: "BLOCK" | undefined;
11358
11419
  order?: number | undefined;
11359
11420
  } | {
11360
11421
  type: "LEGAL";
@@ -11365,6 +11426,7 @@ export declare const formSchema: z.ZodObject<{
11365
11426
  };
11366
11427
  visible: boolean;
11367
11428
  required?: boolean | undefined;
11429
+ category?: "FIELD" | undefined;
11368
11430
  order?: number | undefined;
11369
11431
  } | {
11370
11432
  type: "TEXT";
@@ -11375,6 +11437,7 @@ export declare const formSchema: z.ZodObject<{
11375
11437
  };
11376
11438
  visible: boolean;
11377
11439
  required?: boolean | undefined;
11440
+ category?: "FIELD" | undefined;
11378
11441
  sensitive?: boolean | undefined;
11379
11442
  order?: number | undefined;
11380
11443
  } | {
@@ -11384,9 +11447,10 @@ export declare const formSchema: z.ZodObject<{
11384
11447
  text?: string | undefined;
11385
11448
  };
11386
11449
  visible: boolean;
11450
+ category?: "BLOCK" | undefined;
11387
11451
  order?: number | undefined;
11388
11452
  })[];
11389
- next_node: string;
11453
+ next_node?: string | undefined;
11390
11454
  }, {
11391
11455
  components: ({
11392
11456
  type: "RICH_TEXT";
@@ -11394,6 +11458,7 @@ export declare const formSchema: z.ZodObject<{
11394
11458
  config: {
11395
11459
  content: string;
11396
11460
  };
11461
+ category?: "BLOCK" | undefined;
11397
11462
  order?: number | undefined;
11398
11463
  visible?: boolean | undefined;
11399
11464
  } | {
@@ -11404,6 +11469,7 @@ export declare const formSchema: z.ZodObject<{
11404
11469
  html?: boolean | undefined;
11405
11470
  };
11406
11471
  required?: boolean | undefined;
11472
+ category?: "FIELD" | undefined;
11407
11473
  order?: number | undefined;
11408
11474
  visible?: boolean | undefined;
11409
11475
  } | {
@@ -11414,6 +11480,7 @@ export declare const formSchema: z.ZodObject<{
11414
11480
  multiline?: boolean | undefined;
11415
11481
  };
11416
11482
  required?: boolean | undefined;
11483
+ category?: "FIELD" | undefined;
11417
11484
  sensitive?: boolean | undefined;
11418
11485
  order?: number | undefined;
11419
11486
  visible?: boolean | undefined;
@@ -11423,10 +11490,11 @@ export declare const formSchema: z.ZodObject<{
11423
11490
  config: {
11424
11491
  text?: string | undefined;
11425
11492
  };
11493
+ category?: "BLOCK" | undefined;
11426
11494
  order?: number | undefined;
11427
11495
  visible?: boolean | undefined;
11428
11496
  })[];
11429
- next_node: string;
11497
+ next_node?: string | undefined;
11430
11498
  }>;
11431
11499
  }, "strip", z.ZodTypeAny, {
11432
11500
  type: "STEP";
@@ -11439,6 +11507,7 @@ export declare const formSchema: z.ZodObject<{
11439
11507
  content: string;
11440
11508
  };
11441
11509
  visible: boolean;
11510
+ category?: "BLOCK" | undefined;
11442
11511
  order?: number | undefined;
11443
11512
  } | {
11444
11513
  type: "LEGAL";
@@ -11449,6 +11518,7 @@ export declare const formSchema: z.ZodObject<{
11449
11518
  };
11450
11519
  visible: boolean;
11451
11520
  required?: boolean | undefined;
11521
+ category?: "FIELD" | undefined;
11452
11522
  order?: number | undefined;
11453
11523
  } | {
11454
11524
  type: "TEXT";
@@ -11459,6 +11529,7 @@ export declare const formSchema: z.ZodObject<{
11459
11529
  };
11460
11530
  visible: boolean;
11461
11531
  required?: boolean | undefined;
11532
+ category?: "FIELD" | undefined;
11462
11533
  sensitive?: boolean | undefined;
11463
11534
  order?: number | undefined;
11464
11535
  } | {
@@ -11468,9 +11539,10 @@ export declare const formSchema: z.ZodObject<{
11468
11539
  text?: string | undefined;
11469
11540
  };
11470
11541
  visible: boolean;
11542
+ category?: "BLOCK" | undefined;
11471
11543
  order?: number | undefined;
11472
11544
  })[];
11473
- next_node: string;
11545
+ next_node?: string | undefined;
11474
11546
  };
11475
11547
  coordinates: {
11476
11548
  x: number;
@@ -11487,6 +11559,7 @@ export declare const formSchema: z.ZodObject<{
11487
11559
  config: {
11488
11560
  content: string;
11489
11561
  };
11562
+ category?: "BLOCK" | undefined;
11490
11563
  order?: number | undefined;
11491
11564
  visible?: boolean | undefined;
11492
11565
  } | {
@@ -11497,6 +11570,7 @@ export declare const formSchema: z.ZodObject<{
11497
11570
  html?: boolean | undefined;
11498
11571
  };
11499
11572
  required?: boolean | undefined;
11573
+ category?: "FIELD" | undefined;
11500
11574
  order?: number | undefined;
11501
11575
  visible?: boolean | undefined;
11502
11576
  } | {
@@ -11507,6 +11581,7 @@ export declare const formSchema: z.ZodObject<{
11507
11581
  multiline?: boolean | undefined;
11508
11582
  };
11509
11583
  required?: boolean | undefined;
11584
+ category?: "FIELD" | undefined;
11510
11585
  sensitive?: boolean | undefined;
11511
11586
  order?: number | undefined;
11512
11587
  visible?: boolean | undefined;
@@ -11516,10 +11591,11 @@ export declare const formSchema: z.ZodObject<{
11516
11591
  config: {
11517
11592
  text?: string | undefined;
11518
11593
  };
11594
+ category?: "BLOCK" | undefined;
11519
11595
  order?: number | undefined;
11520
11596
  visible?: boolean | undefined;
11521
11597
  })[];
11522
- next_node: string;
11598
+ next_node?: string | undefined;
11523
11599
  };
11524
11600
  coordinates: {
11525
11601
  x: number;
@@ -11663,8 +11739,8 @@ export declare const formSchema: z.ZodObject<{
11663
11739
  type: "FLOW";
11664
11740
  id: string;
11665
11741
  config: {
11666
- next_node: string;
11667
11742
  flow_id: string;
11743
+ next_node?: string | undefined;
11668
11744
  };
11669
11745
  coordinates: {
11670
11746
  x: number;
@@ -11681,7 +11757,7 @@ export declare const formSchema: z.ZodObject<{
11681
11757
  alias?: string | undefined;
11682
11758
  condition?: any;
11683
11759
  }[];
11684
- fallback: string[];
11760
+ fallback: string;
11685
11761
  };
11686
11762
  coordinates: {
11687
11763
  x: number;
@@ -11699,6 +11775,7 @@ export declare const formSchema: z.ZodObject<{
11699
11775
  content: string;
11700
11776
  };
11701
11777
  visible: boolean;
11778
+ category?: "BLOCK" | undefined;
11702
11779
  order?: number | undefined;
11703
11780
  } | {
11704
11781
  type: "LEGAL";
@@ -11709,6 +11786,7 @@ export declare const formSchema: z.ZodObject<{
11709
11786
  };
11710
11787
  visible: boolean;
11711
11788
  required?: boolean | undefined;
11789
+ category?: "FIELD" | undefined;
11712
11790
  order?: number | undefined;
11713
11791
  } | {
11714
11792
  type: "TEXT";
@@ -11719,6 +11797,7 @@ export declare const formSchema: z.ZodObject<{
11719
11797
  };
11720
11798
  visible: boolean;
11721
11799
  required?: boolean | undefined;
11800
+ category?: "FIELD" | undefined;
11722
11801
  sensitive?: boolean | undefined;
11723
11802
  order?: number | undefined;
11724
11803
  } | {
@@ -11728,9 +11807,10 @@ export declare const formSchema: z.ZodObject<{
11728
11807
  text?: string | undefined;
11729
11808
  };
11730
11809
  visible: boolean;
11810
+ category?: "BLOCK" | undefined;
11731
11811
  order?: number | undefined;
11732
11812
  })[];
11733
- next_node: string;
11813
+ next_node?: string | undefined;
11734
11814
  };
11735
11815
  coordinates: {
11736
11816
  x: number;
@@ -11784,8 +11864,8 @@ export declare const formSchema: z.ZodObject<{
11784
11864
  type: "FLOW";
11785
11865
  id: string;
11786
11866
  config: {
11787
- next_node: string;
11788
11867
  flow_id: string;
11868
+ next_node?: string | undefined;
11789
11869
  };
11790
11870
  coordinates: {
11791
11871
  x: number;
@@ -11802,7 +11882,7 @@ export declare const formSchema: z.ZodObject<{
11802
11882
  alias?: string | undefined;
11803
11883
  condition?: any;
11804
11884
  }[];
11805
- fallback: string[];
11885
+ fallback: string;
11806
11886
  };
11807
11887
  coordinates: {
11808
11888
  x: number;
@@ -11819,6 +11899,7 @@ export declare const formSchema: z.ZodObject<{
11819
11899
  config: {
11820
11900
  content: string;
11821
11901
  };
11902
+ category?: "BLOCK" | undefined;
11822
11903
  order?: number | undefined;
11823
11904
  visible?: boolean | undefined;
11824
11905
  } | {
@@ -11829,6 +11910,7 @@ export declare const formSchema: z.ZodObject<{
11829
11910
  html?: boolean | undefined;
11830
11911
  };
11831
11912
  required?: boolean | undefined;
11913
+ category?: "FIELD" | undefined;
11832
11914
  order?: number | undefined;
11833
11915
  visible?: boolean | undefined;
11834
11916
  } | {
@@ -11839,6 +11921,7 @@ export declare const formSchema: z.ZodObject<{
11839
11921
  multiline?: boolean | undefined;
11840
11922
  };
11841
11923
  required?: boolean | undefined;
11924
+ category?: "FIELD" | undefined;
11842
11925
  sensitive?: boolean | undefined;
11843
11926
  order?: number | undefined;
11844
11927
  visible?: boolean | undefined;
@@ -11848,10 +11931,11 @@ export declare const formSchema: z.ZodObject<{
11848
11931
  config: {
11849
11932
  text?: string | undefined;
11850
11933
  };
11934
+ category?: "BLOCK" | undefined;
11851
11935
  order?: number | undefined;
11852
11936
  visible?: boolean | undefined;
11853
11937
  })[];
11854
- next_node: string;
11938
+ next_node?: string | undefined;
11855
11939
  };
11856
11940
  coordinates: {
11857
11941
  x: number;
@@ -19347,8 +19431,8 @@ export declare function init(config: AuthHeroConfig): {
19347
19431
  type: "FLOW";
19348
19432
  id: string;
19349
19433
  config: {
19350
- next_node: string;
19351
19434
  flow_id: string;
19435
+ next_node?: string | undefined | undefined;
19352
19436
  };
19353
19437
  coordinates: {
19354
19438
  x: number;
@@ -19365,7 +19449,7 @@ export declare function init(config: AuthHeroConfig): {
19365
19449
  alias?: string | undefined | undefined;
19366
19450
  condition?: any;
19367
19451
  }[];
19368
- fallback: string[];
19452
+ fallback: string;
19369
19453
  };
19370
19454
  coordinates: {
19371
19455
  x: number;
@@ -19383,6 +19467,7 @@ export declare function init(config: AuthHeroConfig): {
19383
19467
  content: string;
19384
19468
  };
19385
19469
  visible: boolean;
19470
+ category?: "BLOCK" | undefined | undefined;
19386
19471
  order?: number | undefined | undefined;
19387
19472
  } | {
19388
19473
  type: "LEGAL";
@@ -19393,6 +19478,7 @@ export declare function init(config: AuthHeroConfig): {
19393
19478
  };
19394
19479
  visible: boolean;
19395
19480
  required?: boolean | undefined | undefined;
19481
+ category?: "FIELD" | undefined | undefined;
19396
19482
  order?: number | undefined | undefined;
19397
19483
  } | {
19398
19484
  type: "TEXT";
@@ -19403,6 +19489,7 @@ export declare function init(config: AuthHeroConfig): {
19403
19489
  };
19404
19490
  visible: boolean;
19405
19491
  required?: boolean | undefined | undefined;
19492
+ category?: "FIELD" | undefined | undefined;
19406
19493
  sensitive?: boolean | undefined | undefined;
19407
19494
  order?: number | undefined | undefined;
19408
19495
  } | {
@@ -19412,9 +19499,10 @@ export declare function init(config: AuthHeroConfig): {
19412
19499
  text?: string | undefined | undefined;
19413
19500
  };
19414
19501
  visible: boolean;
19502
+ category?: "BLOCK" | undefined | undefined;
19415
19503
  order?: number | undefined | undefined;
19416
19504
  })[];
19417
- next_node: string;
19505
+ next_node?: string | undefined | undefined;
19418
19506
  };
19419
19507
  coordinates: {
19420
19508
  x: number;
@@ -19478,8 +19566,8 @@ export declare function init(config: AuthHeroConfig): {
19478
19566
  type: "FLOW";
19479
19567
  id: string;
19480
19568
  config: {
19481
- next_node: string;
19482
19569
  flow_id: string;
19570
+ next_node?: string | undefined | undefined;
19483
19571
  };
19484
19572
  coordinates: {
19485
19573
  x: number;
@@ -19496,7 +19584,7 @@ export declare function init(config: AuthHeroConfig): {
19496
19584
  alias?: string | undefined | undefined;
19497
19585
  condition?: any;
19498
19586
  }[];
19499
- fallback: string[];
19587
+ fallback: string;
19500
19588
  };
19501
19589
  coordinates: {
19502
19590
  x: number;
@@ -19514,6 +19602,7 @@ export declare function init(config: AuthHeroConfig): {
19514
19602
  content: string;
19515
19603
  };
19516
19604
  visible: boolean;
19605
+ category?: "BLOCK" | undefined | undefined;
19517
19606
  order?: number | undefined | undefined;
19518
19607
  } | {
19519
19608
  type: "LEGAL";
@@ -19524,6 +19613,7 @@ export declare function init(config: AuthHeroConfig): {
19524
19613
  };
19525
19614
  visible: boolean;
19526
19615
  required?: boolean | undefined | undefined;
19616
+ category?: "FIELD" | undefined | undefined;
19527
19617
  order?: number | undefined | undefined;
19528
19618
  } | {
19529
19619
  type: "TEXT";
@@ -19534,6 +19624,7 @@ export declare function init(config: AuthHeroConfig): {
19534
19624
  };
19535
19625
  visible: boolean;
19536
19626
  required?: boolean | undefined | undefined;
19627
+ category?: "FIELD" | undefined | undefined;
19537
19628
  sensitive?: boolean | undefined | undefined;
19538
19629
  order?: number | undefined | undefined;
19539
19630
  } | {
@@ -19543,9 +19634,10 @@ export declare function init(config: AuthHeroConfig): {
19543
19634
  text?: string | undefined | undefined;
19544
19635
  };
19545
19636
  visible: boolean;
19637
+ category?: "BLOCK" | undefined | undefined;
19546
19638
  order?: number | undefined | undefined;
19547
19639
  })[];
19548
- next_node: string;
19640
+ next_node?: string | undefined | undefined;
19549
19641
  };
19550
19642
  coordinates: {
19551
19643
  x: number;
@@ -19623,8 +19715,8 @@ export declare function init(config: AuthHeroConfig): {
19623
19715
  type: "FLOW";
19624
19716
  id: string;
19625
19717
  config: {
19626
- next_node: string;
19627
19718
  flow_id: string;
19719
+ next_node?: string | undefined | undefined;
19628
19720
  };
19629
19721
  coordinates: {
19630
19722
  x: number;
@@ -19641,7 +19733,7 @@ export declare function init(config: AuthHeroConfig): {
19641
19733
  alias?: string | undefined | undefined;
19642
19734
  condition?: any;
19643
19735
  }[];
19644
- fallback: string[];
19736
+ fallback: string;
19645
19737
  };
19646
19738
  coordinates: {
19647
19739
  x: number;
@@ -19659,6 +19751,7 @@ export declare function init(config: AuthHeroConfig): {
19659
19751
  content: string;
19660
19752
  };
19661
19753
  visible: boolean;
19754
+ category?: "BLOCK" | undefined | undefined;
19662
19755
  order?: number | undefined | undefined;
19663
19756
  } | {
19664
19757
  type: "LEGAL";
@@ -19669,6 +19762,7 @@ export declare function init(config: AuthHeroConfig): {
19669
19762
  };
19670
19763
  visible: boolean;
19671
19764
  required?: boolean | undefined | undefined;
19765
+ category?: "FIELD" | undefined | undefined;
19672
19766
  order?: number | undefined | undefined;
19673
19767
  } | {
19674
19768
  type: "TEXT";
@@ -19679,6 +19773,7 @@ export declare function init(config: AuthHeroConfig): {
19679
19773
  };
19680
19774
  visible: boolean;
19681
19775
  required?: boolean | undefined | undefined;
19776
+ category?: "FIELD" | undefined | undefined;
19682
19777
  sensitive?: boolean | undefined | undefined;
19683
19778
  order?: number | undefined | undefined;
19684
19779
  } | {
@@ -19688,9 +19783,10 @@ export declare function init(config: AuthHeroConfig): {
19688
19783
  text?: string | undefined | undefined;
19689
19784
  };
19690
19785
  visible: boolean;
19786
+ category?: "BLOCK" | undefined | undefined;
19691
19787
  order?: number | undefined | undefined;
19692
19788
  })[];
19693
- next_node: string;
19789
+ next_node?: string | undefined | undefined;
19694
19790
  };
19695
19791
  coordinates: {
19696
19792
  x: number;
@@ -19777,8 +19873,8 @@ export declare function init(config: AuthHeroConfig): {
19777
19873
  type: "FLOW";
19778
19874
  id: string;
19779
19875
  config: {
19780
- next_node: string;
19781
19876
  flow_id: string;
19877
+ next_node?: string | undefined;
19782
19878
  };
19783
19879
  coordinates: {
19784
19880
  x: number;
@@ -19795,7 +19891,7 @@ export declare function init(config: AuthHeroConfig): {
19795
19891
  alias?: string | undefined;
19796
19892
  condition?: any;
19797
19893
  }[];
19798
- fallback: string[];
19894
+ fallback: string;
19799
19895
  };
19800
19896
  coordinates: {
19801
19897
  x: number;
@@ -19812,6 +19908,7 @@ export declare function init(config: AuthHeroConfig): {
19812
19908
  config: {
19813
19909
  content: string;
19814
19910
  };
19911
+ category?: "BLOCK" | undefined;
19815
19912
  order?: number | undefined;
19816
19913
  visible?: boolean | undefined;
19817
19914
  } | {
@@ -19822,6 +19919,7 @@ export declare function init(config: AuthHeroConfig): {
19822
19919
  html?: boolean | undefined;
19823
19920
  };
19824
19921
  required?: boolean | undefined;
19922
+ category?: "FIELD" | undefined;
19825
19923
  order?: number | undefined;
19826
19924
  visible?: boolean | undefined;
19827
19925
  } | {
@@ -19832,6 +19930,7 @@ export declare function init(config: AuthHeroConfig): {
19832
19930
  multiline?: boolean | undefined;
19833
19931
  };
19834
19932
  required?: boolean | undefined;
19933
+ category?: "FIELD" | undefined;
19835
19934
  sensitive?: boolean | undefined;
19836
19935
  order?: number | undefined;
19837
19936
  visible?: boolean | undefined;
@@ -19841,10 +19940,11 @@ export declare function init(config: AuthHeroConfig): {
19841
19940
  config: {
19842
19941
  text?: string | undefined;
19843
19942
  };
19943
+ category?: "BLOCK" | undefined;
19844
19944
  order?: number | undefined;
19845
19945
  visible?: boolean | undefined;
19846
19946
  })[];
19847
- next_node: string;
19947
+ next_node?: string | undefined;
19848
19948
  };
19849
19949
  coordinates: {
19850
19950
  x: number;
@@ -19904,8 +20004,8 @@ export declare function init(config: AuthHeroConfig): {
19904
20004
  type: "FLOW";
19905
20005
  id: string;
19906
20006
  config: {
19907
- next_node: string;
19908
20007
  flow_id: string;
20008
+ next_node?: string | undefined | undefined;
19909
20009
  };
19910
20010
  coordinates: {
19911
20011
  x: number;
@@ -19922,7 +20022,7 @@ export declare function init(config: AuthHeroConfig): {
19922
20022
  alias?: string | undefined | undefined;
19923
20023
  condition?: any;
19924
20024
  }[];
19925
- fallback: string[];
20025
+ fallback: string;
19926
20026
  };
19927
20027
  coordinates: {
19928
20028
  x: number;
@@ -19940,6 +20040,7 @@ export declare function init(config: AuthHeroConfig): {
19940
20040
  content: string;
19941
20041
  };
19942
20042
  visible: boolean;
20043
+ category?: "BLOCK" | undefined | undefined;
19943
20044
  order?: number | undefined | undefined;
19944
20045
  } | {
19945
20046
  type: "LEGAL";
@@ -19950,6 +20051,7 @@ export declare function init(config: AuthHeroConfig): {
19950
20051
  };
19951
20052
  visible: boolean;
19952
20053
  required?: boolean | undefined | undefined;
20054
+ category?: "FIELD" | undefined | undefined;
19953
20055
  order?: number | undefined | undefined;
19954
20056
  } | {
19955
20057
  type: "TEXT";
@@ -19960,6 +20062,7 @@ export declare function init(config: AuthHeroConfig): {
19960
20062
  };
19961
20063
  visible: boolean;
19962
20064
  required?: boolean | undefined | undefined;
20065
+ category?: "FIELD" | undefined | undefined;
19963
20066
  sensitive?: boolean | undefined | undefined;
19964
20067
  order?: number | undefined | undefined;
19965
20068
  } | {
@@ -19969,9 +20072,10 @@ export declare function init(config: AuthHeroConfig): {
19969
20072
  text?: string | undefined | undefined;
19970
20073
  };
19971
20074
  visible: boolean;
20075
+ category?: "BLOCK" | undefined | undefined;
19972
20076
  order?: number | undefined | undefined;
19973
20077
  })[];
19974
- next_node: string;
20078
+ next_node?: string | undefined | undefined;
19975
20079
  };
19976
20080
  coordinates: {
19977
20081
  x: number;
@@ -20037,8 +20141,8 @@ export declare function init(config: AuthHeroConfig): {
20037
20141
  type: "FLOW";
20038
20142
  id: string;
20039
20143
  config: {
20040
- next_node: string;
20041
20144
  flow_id: string;
20145
+ next_node?: string | undefined;
20042
20146
  };
20043
20147
  coordinates: {
20044
20148
  x: number;
@@ -20055,7 +20159,7 @@ export declare function init(config: AuthHeroConfig): {
20055
20159
  alias?: string | undefined;
20056
20160
  condition?: any;
20057
20161
  }[];
20058
- fallback: string[];
20162
+ fallback: string;
20059
20163
  };
20060
20164
  coordinates: {
20061
20165
  x: number;
@@ -20072,6 +20176,7 @@ export declare function init(config: AuthHeroConfig): {
20072
20176
  config: {
20073
20177
  content: string;
20074
20178
  };
20179
+ category?: "BLOCK" | undefined;
20075
20180
  order?: number | undefined;
20076
20181
  visible?: boolean | undefined;
20077
20182
  } | {
@@ -20082,6 +20187,7 @@ export declare function init(config: AuthHeroConfig): {
20082
20187
  html?: boolean | undefined;
20083
20188
  };
20084
20189
  required?: boolean | undefined;
20190
+ category?: "FIELD" | undefined;
20085
20191
  order?: number | undefined;
20086
20192
  visible?: boolean | undefined;
20087
20193
  } | {
@@ -20092,6 +20198,7 @@ export declare function init(config: AuthHeroConfig): {
20092
20198
  multiline?: boolean | undefined;
20093
20199
  };
20094
20200
  required?: boolean | undefined;
20201
+ category?: "FIELD" | undefined;
20095
20202
  sensitive?: boolean | undefined;
20096
20203
  order?: number | undefined;
20097
20204
  visible?: boolean | undefined;
@@ -20101,10 +20208,11 @@ export declare function init(config: AuthHeroConfig): {
20101
20208
  config: {
20102
20209
  text?: string | undefined;
20103
20210
  };
20211
+ category?: "BLOCK" | undefined;
20104
20212
  order?: number | undefined;
20105
20213
  visible?: boolean | undefined;
20106
20214
  })[];
20107
- next_node: string;
20215
+ next_node?: string | undefined;
20108
20216
  };
20109
20217
  coordinates: {
20110
20218
  x: number;
@@ -20164,8 +20272,8 @@ export declare function init(config: AuthHeroConfig): {
20164
20272
  type: "FLOW";
20165
20273
  id: string;
20166
20274
  config: {
20167
- next_node: string;
20168
20275
  flow_id: string;
20276
+ next_node?: string | undefined | undefined;
20169
20277
  };
20170
20278
  coordinates: {
20171
20279
  x: number;
@@ -20182,7 +20290,7 @@ export declare function init(config: AuthHeroConfig): {
20182
20290
  alias?: string | undefined | undefined;
20183
20291
  condition?: any;
20184
20292
  }[];
20185
- fallback: string[];
20293
+ fallback: string;
20186
20294
  };
20187
20295
  coordinates: {
20188
20296
  x: number;
@@ -20200,6 +20308,7 @@ export declare function init(config: AuthHeroConfig): {
20200
20308
  content: string;
20201
20309
  };
20202
20310
  visible: boolean;
20311
+ category?: "BLOCK" | undefined | undefined;
20203
20312
  order?: number | undefined | undefined;
20204
20313
  } | {
20205
20314
  type: "LEGAL";
@@ -20210,6 +20319,7 @@ export declare function init(config: AuthHeroConfig): {
20210
20319
  };
20211
20320
  visible: boolean;
20212
20321
  required?: boolean | undefined | undefined;
20322
+ category?: "FIELD" | undefined | undefined;
20213
20323
  order?: number | undefined | undefined;
20214
20324
  } | {
20215
20325
  type: "TEXT";
@@ -20220,6 +20330,7 @@ export declare function init(config: AuthHeroConfig): {
20220
20330
  };
20221
20331
  visible: boolean;
20222
20332
  required?: boolean | undefined | undefined;
20333
+ category?: "FIELD" | undefined | undefined;
20223
20334
  sensitive?: boolean | undefined | undefined;
20224
20335
  order?: number | undefined | undefined;
20225
20336
  } | {
@@ -20229,9 +20340,10 @@ export declare function init(config: AuthHeroConfig): {
20229
20340
  text?: string | undefined | undefined;
20230
20341
  };
20231
20342
  visible: boolean;
20343
+ category?: "BLOCK" | undefined | undefined;
20232
20344
  order?: number | undefined | undefined;
20233
20345
  })[];
20234
- next_node: string;
20346
+ next_node?: string | undefined | undefined;
20235
20347
  };
20236
20348
  coordinates: {
20237
20349
  x: number;