@authhero/adapter-interfaces 0.131.0 → 0.133.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.
- package/dist/adapter-interfaces.cjs +1 -1
- package/dist/adapter-interfaces.d.ts +881 -152
- package/dist/adapter-interfaces.mjs +331 -305
- package/package.json +1 -1
|
@@ -10454,6 +10454,47 @@ export declare const connectionOptionsSchema: z.ZodObject<{
|
|
|
10454
10454
|
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
10455
10455
|
twilio_token: z.ZodOptional<z.ZodString>;
|
|
10456
10456
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
10457
|
+
passwordPolicy: z.ZodOptional<z.ZodEnum<[
|
|
10458
|
+
"none",
|
|
10459
|
+
"low",
|
|
10460
|
+
"fair",
|
|
10461
|
+
"good",
|
|
10462
|
+
"excellent"
|
|
10463
|
+
]>>;
|
|
10464
|
+
password_complexity_options: z.ZodOptional<z.ZodObject<{
|
|
10465
|
+
min_length: z.ZodOptional<z.ZodNumber>;
|
|
10466
|
+
}, "strip", z.ZodTypeAny, {
|
|
10467
|
+
min_length?: number | undefined;
|
|
10468
|
+
}, {
|
|
10469
|
+
min_length?: number | undefined;
|
|
10470
|
+
}>>;
|
|
10471
|
+
password_history: z.ZodOptional<z.ZodObject<{
|
|
10472
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10473
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
10474
|
+
}, "strip", z.ZodTypeAny, {
|
|
10475
|
+
enable?: boolean | undefined;
|
|
10476
|
+
size?: number | undefined;
|
|
10477
|
+
}, {
|
|
10478
|
+
enable?: boolean | undefined;
|
|
10479
|
+
size?: number | undefined;
|
|
10480
|
+
}>>;
|
|
10481
|
+
password_no_personal_info: z.ZodOptional<z.ZodObject<{
|
|
10482
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10483
|
+
}, "strip", z.ZodTypeAny, {
|
|
10484
|
+
enable?: boolean | undefined;
|
|
10485
|
+
}, {
|
|
10486
|
+
enable?: boolean | undefined;
|
|
10487
|
+
}>>;
|
|
10488
|
+
password_dictionary: z.ZodOptional<z.ZodObject<{
|
|
10489
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10490
|
+
dictionary: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10491
|
+
}, "strip", z.ZodTypeAny, {
|
|
10492
|
+
enable?: boolean | undefined;
|
|
10493
|
+
dictionary?: string[] | undefined;
|
|
10494
|
+
}, {
|
|
10495
|
+
enable?: boolean | undefined;
|
|
10496
|
+
dictionary?: string[] | undefined;
|
|
10497
|
+
}>>;
|
|
10457
10498
|
}, "strip", z.ZodTypeAny, {
|
|
10458
10499
|
provider?: string | undefined;
|
|
10459
10500
|
client_id?: string | undefined;
|
|
@@ -10474,6 +10515,21 @@ export declare const connectionOptionsSchema: z.ZodObject<{
|
|
|
10474
10515
|
twilio_sid?: string | undefined;
|
|
10475
10516
|
twilio_token?: string | undefined;
|
|
10476
10517
|
icon_url?: string | undefined;
|
|
10518
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10519
|
+
password_complexity_options?: {
|
|
10520
|
+
min_length?: number | undefined;
|
|
10521
|
+
} | undefined;
|
|
10522
|
+
password_history?: {
|
|
10523
|
+
enable?: boolean | undefined;
|
|
10524
|
+
size?: number | undefined;
|
|
10525
|
+
} | undefined;
|
|
10526
|
+
password_no_personal_info?: {
|
|
10527
|
+
enable?: boolean | undefined;
|
|
10528
|
+
} | undefined;
|
|
10529
|
+
password_dictionary?: {
|
|
10530
|
+
enable?: boolean | undefined;
|
|
10531
|
+
dictionary?: string[] | undefined;
|
|
10532
|
+
} | undefined;
|
|
10477
10533
|
}, {
|
|
10478
10534
|
provider?: string | undefined;
|
|
10479
10535
|
client_id?: string | undefined;
|
|
@@ -10494,6 +10550,21 @@ export declare const connectionOptionsSchema: z.ZodObject<{
|
|
|
10494
10550
|
twilio_sid?: string | undefined;
|
|
10495
10551
|
twilio_token?: string | undefined;
|
|
10496
10552
|
icon_url?: string | undefined;
|
|
10553
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10554
|
+
password_complexity_options?: {
|
|
10555
|
+
min_length?: number | undefined;
|
|
10556
|
+
} | undefined;
|
|
10557
|
+
password_history?: {
|
|
10558
|
+
enable?: boolean | undefined;
|
|
10559
|
+
size?: number | undefined;
|
|
10560
|
+
} | undefined;
|
|
10561
|
+
password_no_personal_info?: {
|
|
10562
|
+
enable?: boolean | undefined;
|
|
10563
|
+
} | undefined;
|
|
10564
|
+
password_dictionary?: {
|
|
10565
|
+
enable?: boolean | undefined;
|
|
10566
|
+
dictionary?: string[] | undefined;
|
|
10567
|
+
} | undefined;
|
|
10497
10568
|
}>;
|
|
10498
10569
|
export declare const connectionInsertSchema: z.ZodObject<{
|
|
10499
10570
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -10520,6 +10591,47 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
10520
10591
|
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
10521
10592
|
twilio_token: z.ZodOptional<z.ZodString>;
|
|
10522
10593
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
10594
|
+
passwordPolicy: z.ZodOptional<z.ZodEnum<[
|
|
10595
|
+
"none",
|
|
10596
|
+
"low",
|
|
10597
|
+
"fair",
|
|
10598
|
+
"good",
|
|
10599
|
+
"excellent"
|
|
10600
|
+
]>>;
|
|
10601
|
+
password_complexity_options: z.ZodOptional<z.ZodObject<{
|
|
10602
|
+
min_length: z.ZodOptional<z.ZodNumber>;
|
|
10603
|
+
}, "strip", z.ZodTypeAny, {
|
|
10604
|
+
min_length?: number | undefined;
|
|
10605
|
+
}, {
|
|
10606
|
+
min_length?: number | undefined;
|
|
10607
|
+
}>>;
|
|
10608
|
+
password_history: z.ZodOptional<z.ZodObject<{
|
|
10609
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10610
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
10611
|
+
}, "strip", z.ZodTypeAny, {
|
|
10612
|
+
enable?: boolean | undefined;
|
|
10613
|
+
size?: number | undefined;
|
|
10614
|
+
}, {
|
|
10615
|
+
enable?: boolean | undefined;
|
|
10616
|
+
size?: number | undefined;
|
|
10617
|
+
}>>;
|
|
10618
|
+
password_no_personal_info: z.ZodOptional<z.ZodObject<{
|
|
10619
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10620
|
+
}, "strip", z.ZodTypeAny, {
|
|
10621
|
+
enable?: boolean | undefined;
|
|
10622
|
+
}, {
|
|
10623
|
+
enable?: boolean | undefined;
|
|
10624
|
+
}>>;
|
|
10625
|
+
password_dictionary: z.ZodOptional<z.ZodObject<{
|
|
10626
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10627
|
+
dictionary: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10628
|
+
}, "strip", z.ZodTypeAny, {
|
|
10629
|
+
enable?: boolean | undefined;
|
|
10630
|
+
dictionary?: string[] | undefined;
|
|
10631
|
+
}, {
|
|
10632
|
+
enable?: boolean | undefined;
|
|
10633
|
+
dictionary?: string[] | undefined;
|
|
10634
|
+
}>>;
|
|
10523
10635
|
}, "strip", z.ZodTypeAny, {
|
|
10524
10636
|
provider?: string | undefined;
|
|
10525
10637
|
client_id?: string | undefined;
|
|
@@ -10540,6 +10652,21 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
10540
10652
|
twilio_sid?: string | undefined;
|
|
10541
10653
|
twilio_token?: string | undefined;
|
|
10542
10654
|
icon_url?: string | undefined;
|
|
10655
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10656
|
+
password_complexity_options?: {
|
|
10657
|
+
min_length?: number | undefined;
|
|
10658
|
+
} | undefined;
|
|
10659
|
+
password_history?: {
|
|
10660
|
+
enable?: boolean | undefined;
|
|
10661
|
+
size?: number | undefined;
|
|
10662
|
+
} | undefined;
|
|
10663
|
+
password_no_personal_info?: {
|
|
10664
|
+
enable?: boolean | undefined;
|
|
10665
|
+
} | undefined;
|
|
10666
|
+
password_dictionary?: {
|
|
10667
|
+
enable?: boolean | undefined;
|
|
10668
|
+
dictionary?: string[] | undefined;
|
|
10669
|
+
} | undefined;
|
|
10543
10670
|
}, {
|
|
10544
10671
|
provider?: string | undefined;
|
|
10545
10672
|
client_id?: string | undefined;
|
|
@@ -10560,6 +10687,21 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
10560
10687
|
twilio_sid?: string | undefined;
|
|
10561
10688
|
twilio_token?: string | undefined;
|
|
10562
10689
|
icon_url?: string | undefined;
|
|
10690
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10691
|
+
password_complexity_options?: {
|
|
10692
|
+
min_length?: number | undefined;
|
|
10693
|
+
} | undefined;
|
|
10694
|
+
password_history?: {
|
|
10695
|
+
enable?: boolean | undefined;
|
|
10696
|
+
size?: number | undefined;
|
|
10697
|
+
} | undefined;
|
|
10698
|
+
password_no_personal_info?: {
|
|
10699
|
+
enable?: boolean | undefined;
|
|
10700
|
+
} | undefined;
|
|
10701
|
+
password_dictionary?: {
|
|
10702
|
+
enable?: boolean | undefined;
|
|
10703
|
+
dictionary?: string[] | undefined;
|
|
10704
|
+
} | undefined;
|
|
10563
10705
|
}>>;
|
|
10564
10706
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
10565
10707
|
response_type: z.ZodOptional<z.ZodType<AuthorizationResponseType, z.ZodTypeDef, AuthorizationResponseType>>;
|
|
@@ -10589,6 +10731,21 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
10589
10731
|
twilio_sid?: string | undefined;
|
|
10590
10732
|
twilio_token?: string | undefined;
|
|
10591
10733
|
icon_url?: string | undefined;
|
|
10734
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10735
|
+
password_complexity_options?: {
|
|
10736
|
+
min_length?: number | undefined;
|
|
10737
|
+
} | undefined;
|
|
10738
|
+
password_history?: {
|
|
10739
|
+
enable?: boolean | undefined;
|
|
10740
|
+
size?: number | undefined;
|
|
10741
|
+
} | undefined;
|
|
10742
|
+
password_no_personal_info?: {
|
|
10743
|
+
enable?: boolean | undefined;
|
|
10744
|
+
} | undefined;
|
|
10745
|
+
password_dictionary?: {
|
|
10746
|
+
enable?: boolean | undefined;
|
|
10747
|
+
dictionary?: string[] | undefined;
|
|
10748
|
+
} | undefined;
|
|
10592
10749
|
};
|
|
10593
10750
|
name: string;
|
|
10594
10751
|
strategy: string;
|
|
@@ -10624,6 +10781,21 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
10624
10781
|
twilio_sid?: string | undefined;
|
|
10625
10782
|
twilio_token?: string | undefined;
|
|
10626
10783
|
icon_url?: string | undefined;
|
|
10784
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10785
|
+
password_complexity_options?: {
|
|
10786
|
+
min_length?: number | undefined;
|
|
10787
|
+
} | undefined;
|
|
10788
|
+
password_history?: {
|
|
10789
|
+
enable?: boolean | undefined;
|
|
10790
|
+
size?: number | undefined;
|
|
10791
|
+
} | undefined;
|
|
10792
|
+
password_no_personal_info?: {
|
|
10793
|
+
enable?: boolean | undefined;
|
|
10794
|
+
} | undefined;
|
|
10795
|
+
password_dictionary?: {
|
|
10796
|
+
enable?: boolean | undefined;
|
|
10797
|
+
dictionary?: string[] | undefined;
|
|
10798
|
+
} | undefined;
|
|
10627
10799
|
} | undefined;
|
|
10628
10800
|
id?: string | undefined;
|
|
10629
10801
|
is_system?: boolean | undefined;
|
|
@@ -10664,6 +10836,47 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
10664
10836
|
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
10665
10837
|
twilio_token: z.ZodOptional<z.ZodString>;
|
|
10666
10838
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
10839
|
+
passwordPolicy: z.ZodOptional<z.ZodEnum<[
|
|
10840
|
+
"none",
|
|
10841
|
+
"low",
|
|
10842
|
+
"fair",
|
|
10843
|
+
"good",
|
|
10844
|
+
"excellent"
|
|
10845
|
+
]>>;
|
|
10846
|
+
password_complexity_options: z.ZodOptional<z.ZodObject<{
|
|
10847
|
+
min_length: z.ZodOptional<z.ZodNumber>;
|
|
10848
|
+
}, "strip", z.ZodTypeAny, {
|
|
10849
|
+
min_length?: number | undefined;
|
|
10850
|
+
}, {
|
|
10851
|
+
min_length?: number | undefined;
|
|
10852
|
+
}>>;
|
|
10853
|
+
password_history: z.ZodOptional<z.ZodObject<{
|
|
10854
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10855
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
10856
|
+
}, "strip", z.ZodTypeAny, {
|
|
10857
|
+
enable?: boolean | undefined;
|
|
10858
|
+
size?: number | undefined;
|
|
10859
|
+
}, {
|
|
10860
|
+
enable?: boolean | undefined;
|
|
10861
|
+
size?: number | undefined;
|
|
10862
|
+
}>>;
|
|
10863
|
+
password_no_personal_info: z.ZodOptional<z.ZodObject<{
|
|
10864
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10865
|
+
}, "strip", z.ZodTypeAny, {
|
|
10866
|
+
enable?: boolean | undefined;
|
|
10867
|
+
}, {
|
|
10868
|
+
enable?: boolean | undefined;
|
|
10869
|
+
}>>;
|
|
10870
|
+
password_dictionary: z.ZodOptional<z.ZodObject<{
|
|
10871
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10872
|
+
dictionary: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10873
|
+
}, "strip", z.ZodTypeAny, {
|
|
10874
|
+
enable?: boolean | undefined;
|
|
10875
|
+
dictionary?: string[] | undefined;
|
|
10876
|
+
}, {
|
|
10877
|
+
enable?: boolean | undefined;
|
|
10878
|
+
dictionary?: string[] | undefined;
|
|
10879
|
+
}>>;
|
|
10667
10880
|
}, "strip", z.ZodTypeAny, {
|
|
10668
10881
|
provider?: string | undefined;
|
|
10669
10882
|
client_id?: string | undefined;
|
|
@@ -10684,6 +10897,21 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
10684
10897
|
twilio_sid?: string | undefined;
|
|
10685
10898
|
twilio_token?: string | undefined;
|
|
10686
10899
|
icon_url?: string | undefined;
|
|
10900
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10901
|
+
password_complexity_options?: {
|
|
10902
|
+
min_length?: number | undefined;
|
|
10903
|
+
} | undefined;
|
|
10904
|
+
password_history?: {
|
|
10905
|
+
enable?: boolean | undefined;
|
|
10906
|
+
size?: number | undefined;
|
|
10907
|
+
} | undefined;
|
|
10908
|
+
password_no_personal_info?: {
|
|
10909
|
+
enable?: boolean | undefined;
|
|
10910
|
+
} | undefined;
|
|
10911
|
+
password_dictionary?: {
|
|
10912
|
+
enable?: boolean | undefined;
|
|
10913
|
+
dictionary?: string[] | undefined;
|
|
10914
|
+
} | undefined;
|
|
10687
10915
|
}, {
|
|
10688
10916
|
provider?: string | undefined;
|
|
10689
10917
|
client_id?: string | undefined;
|
|
@@ -10704,6 +10932,21 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
10704
10932
|
twilio_sid?: string | undefined;
|
|
10705
10933
|
twilio_token?: string | undefined;
|
|
10706
10934
|
icon_url?: string | undefined;
|
|
10935
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10936
|
+
password_complexity_options?: {
|
|
10937
|
+
min_length?: number | undefined;
|
|
10938
|
+
} | undefined;
|
|
10939
|
+
password_history?: {
|
|
10940
|
+
enable?: boolean | undefined;
|
|
10941
|
+
size?: number | undefined;
|
|
10942
|
+
} | undefined;
|
|
10943
|
+
password_no_personal_info?: {
|
|
10944
|
+
enable?: boolean | undefined;
|
|
10945
|
+
} | undefined;
|
|
10946
|
+
password_dictionary?: {
|
|
10947
|
+
enable?: boolean | undefined;
|
|
10948
|
+
dictionary?: string[] | undefined;
|
|
10949
|
+
} | undefined;
|
|
10707
10950
|
}>>;
|
|
10708
10951
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
10709
10952
|
response_type: z.ZodOptional<z.ZodType<AuthorizationResponseType, z.ZodTypeDef, AuthorizationResponseType>>;
|
|
@@ -10735,6 +10978,21 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
10735
10978
|
twilio_sid?: string | undefined;
|
|
10736
10979
|
twilio_token?: string | undefined;
|
|
10737
10980
|
icon_url?: string | undefined;
|
|
10981
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10982
|
+
password_complexity_options?: {
|
|
10983
|
+
min_length?: number | undefined;
|
|
10984
|
+
} | undefined;
|
|
10985
|
+
password_history?: {
|
|
10986
|
+
enable?: boolean | undefined;
|
|
10987
|
+
size?: number | undefined;
|
|
10988
|
+
} | undefined;
|
|
10989
|
+
password_no_personal_info?: {
|
|
10990
|
+
enable?: boolean | undefined;
|
|
10991
|
+
} | undefined;
|
|
10992
|
+
password_dictionary?: {
|
|
10993
|
+
enable?: boolean | undefined;
|
|
10994
|
+
dictionary?: string[] | undefined;
|
|
10995
|
+
} | undefined;
|
|
10738
10996
|
};
|
|
10739
10997
|
name: string;
|
|
10740
10998
|
strategy: string;
|
|
@@ -10772,6 +11030,21 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
10772
11030
|
twilio_sid?: string | undefined;
|
|
10773
11031
|
twilio_token?: string | undefined;
|
|
10774
11032
|
icon_url?: string | undefined;
|
|
11033
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
11034
|
+
password_complexity_options?: {
|
|
11035
|
+
min_length?: number | undefined;
|
|
11036
|
+
} | undefined;
|
|
11037
|
+
password_history?: {
|
|
11038
|
+
enable?: boolean | undefined;
|
|
11039
|
+
size?: number | undefined;
|
|
11040
|
+
} | undefined;
|
|
11041
|
+
password_no_personal_info?: {
|
|
11042
|
+
enable?: boolean | undefined;
|
|
11043
|
+
} | undefined;
|
|
11044
|
+
password_dictionary?: {
|
|
11045
|
+
enable?: boolean | undefined;
|
|
11046
|
+
dictionary?: string[] | undefined;
|
|
11047
|
+
} | undefined;
|
|
10775
11048
|
} | undefined;
|
|
10776
11049
|
id?: string | undefined;
|
|
10777
11050
|
is_system?: boolean | undefined;
|
|
@@ -11575,18 +11848,27 @@ declare const choiceField: z.ZodObject<{
|
|
|
11575
11848
|
"radio",
|
|
11576
11849
|
"checkbox"
|
|
11577
11850
|
]>>;
|
|
11851
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
11852
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
11853
|
+
z.ZodString,
|
|
11854
|
+
z.ZodArray<z.ZodString, "many">
|
|
11855
|
+
]>>;
|
|
11578
11856
|
}, "strip", z.ZodTypeAny, {
|
|
11579
11857
|
options?: {
|
|
11580
11858
|
value: string;
|
|
11581
11859
|
label: string;
|
|
11582
11860
|
}[] | undefined;
|
|
11861
|
+
default_value?: string | string[] | undefined;
|
|
11583
11862
|
display?: "radio" | "checkbox" | undefined;
|
|
11863
|
+
multiple?: boolean | undefined;
|
|
11584
11864
|
}, {
|
|
11585
11865
|
options?: {
|
|
11586
11866
|
value: string;
|
|
11587
11867
|
label: string;
|
|
11588
11868
|
}[] | undefined;
|
|
11869
|
+
default_value?: string | string[] | undefined;
|
|
11589
11870
|
display?: "radio" | "checkbox" | undefined;
|
|
11871
|
+
multiple?: boolean | undefined;
|
|
11590
11872
|
}>>;
|
|
11591
11873
|
}, "strip", z.ZodTypeAny, {
|
|
11592
11874
|
type: "CHOICE";
|
|
@@ -11599,7 +11881,9 @@ declare const choiceField: z.ZodObject<{
|
|
|
11599
11881
|
value: string;
|
|
11600
11882
|
label: string;
|
|
11601
11883
|
}[] | undefined;
|
|
11884
|
+
default_value?: string | string[] | undefined;
|
|
11602
11885
|
display?: "radio" | "checkbox" | undefined;
|
|
11886
|
+
multiple?: boolean | undefined;
|
|
11603
11887
|
} | undefined;
|
|
11604
11888
|
sensitive?: boolean | undefined;
|
|
11605
11889
|
label?: string | undefined;
|
|
@@ -11615,7 +11899,9 @@ declare const choiceField: z.ZodObject<{
|
|
|
11615
11899
|
value: string;
|
|
11616
11900
|
label: string;
|
|
11617
11901
|
}[] | undefined;
|
|
11902
|
+
default_value?: string | string[] | undefined;
|
|
11618
11903
|
display?: "radio" | "checkbox" | undefined;
|
|
11904
|
+
multiple?: boolean | undefined;
|
|
11619
11905
|
} | undefined;
|
|
11620
11906
|
sensitive?: boolean | undefined;
|
|
11621
11907
|
label?: string | undefined;
|
|
@@ -11638,10 +11924,16 @@ declare const customField: z.ZodObject<{
|
|
|
11638
11924
|
config: z.ZodObject<{
|
|
11639
11925
|
component: z.ZodOptional<z.ZodString>;
|
|
11640
11926
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11927
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11928
|
+
code: z.ZodOptional<z.ZodString>;
|
|
11641
11929
|
}, "strip", z.ZodTypeAny, {
|
|
11930
|
+
code?: string | undefined;
|
|
11931
|
+
schema?: Record<string, any> | undefined;
|
|
11642
11932
|
component?: string | undefined;
|
|
11643
11933
|
props?: Record<string, any> | undefined;
|
|
11644
11934
|
}, {
|
|
11935
|
+
code?: string | undefined;
|
|
11936
|
+
schema?: Record<string, any> | undefined;
|
|
11645
11937
|
component?: string | undefined;
|
|
11646
11938
|
props?: Record<string, any> | undefined;
|
|
11647
11939
|
}>;
|
|
@@ -11649,6 +11941,8 @@ declare const customField: z.ZodObject<{
|
|
|
11649
11941
|
type: "CUSTOM";
|
|
11650
11942
|
id: string;
|
|
11651
11943
|
config: {
|
|
11944
|
+
code?: string | undefined;
|
|
11945
|
+
schema?: Record<string, any> | undefined;
|
|
11652
11946
|
component?: string | undefined;
|
|
11653
11947
|
props?: Record<string, any> | undefined;
|
|
11654
11948
|
};
|
|
@@ -11663,6 +11957,8 @@ declare const customField: z.ZodObject<{
|
|
|
11663
11957
|
type: "CUSTOM";
|
|
11664
11958
|
id: string;
|
|
11665
11959
|
config: {
|
|
11960
|
+
code?: string | undefined;
|
|
11961
|
+
schema?: Record<string, any> | undefined;
|
|
11666
11962
|
component?: string | undefined;
|
|
11667
11963
|
props?: Record<string, any> | undefined;
|
|
11668
11964
|
};
|
|
@@ -11755,12 +12051,19 @@ declare const dropdownField: z.ZodObject<{
|
|
|
11755
12051
|
}>, "many">>;
|
|
11756
12052
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
11757
12053
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
12054
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
12055
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
12056
|
+
z.ZodString,
|
|
12057
|
+
z.ZodArray<z.ZodString, "many">
|
|
12058
|
+
]>>;
|
|
11758
12059
|
}, "strip", z.ZodTypeAny, {
|
|
11759
12060
|
options?: {
|
|
11760
12061
|
value: string;
|
|
11761
12062
|
label: string;
|
|
11762
12063
|
}[] | undefined;
|
|
11763
12064
|
placeholder?: string | undefined;
|
|
12065
|
+
default_value?: string | string[] | undefined;
|
|
12066
|
+
multiple?: boolean | undefined;
|
|
11764
12067
|
searchable?: boolean | undefined;
|
|
11765
12068
|
}, {
|
|
11766
12069
|
options?: {
|
|
@@ -11768,6 +12071,8 @@ declare const dropdownField: z.ZodObject<{
|
|
|
11768
12071
|
label: string;
|
|
11769
12072
|
}[] | undefined;
|
|
11770
12073
|
placeholder?: string | undefined;
|
|
12074
|
+
default_value?: string | string[] | undefined;
|
|
12075
|
+
multiple?: boolean | undefined;
|
|
11771
12076
|
searchable?: boolean | undefined;
|
|
11772
12077
|
}>>;
|
|
11773
12078
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11782,6 +12087,8 @@ declare const dropdownField: z.ZodObject<{
|
|
|
11782
12087
|
label: string;
|
|
11783
12088
|
}[] | undefined;
|
|
11784
12089
|
placeholder?: string | undefined;
|
|
12090
|
+
default_value?: string | string[] | undefined;
|
|
12091
|
+
multiple?: boolean | undefined;
|
|
11785
12092
|
searchable?: boolean | undefined;
|
|
11786
12093
|
} | undefined;
|
|
11787
12094
|
sensitive?: boolean | undefined;
|
|
@@ -11799,6 +12106,8 @@ declare const dropdownField: z.ZodObject<{
|
|
|
11799
12106
|
label: string;
|
|
11800
12107
|
}[] | undefined;
|
|
11801
12108
|
placeholder?: string | undefined;
|
|
12109
|
+
default_value?: string | string[] | undefined;
|
|
12110
|
+
multiple?: boolean | undefined;
|
|
11802
12111
|
searchable?: boolean | undefined;
|
|
11803
12112
|
} | undefined;
|
|
11804
12113
|
sensitive?: boolean | undefined;
|
|
@@ -11870,13 +12179,13 @@ declare const fileField: z.ZodObject<{
|
|
|
11870
12179
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
11871
12180
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
11872
12181
|
}, "strip", z.ZodTypeAny, {
|
|
12182
|
+
multiple?: boolean | undefined;
|
|
11873
12183
|
accept?: string | undefined;
|
|
11874
12184
|
max_size?: number | undefined;
|
|
11875
|
-
multiple?: boolean | undefined;
|
|
11876
12185
|
}, {
|
|
12186
|
+
multiple?: boolean | undefined;
|
|
11877
12187
|
accept?: string | undefined;
|
|
11878
12188
|
max_size?: number | undefined;
|
|
11879
|
-
multiple?: boolean | undefined;
|
|
11880
12189
|
}>>;
|
|
11881
12190
|
}, "strip", z.ZodTypeAny, {
|
|
11882
12191
|
type: "FILE";
|
|
@@ -11885,9 +12194,9 @@ declare const fileField: z.ZodObject<{
|
|
|
11885
12194
|
required?: boolean | undefined;
|
|
11886
12195
|
category?: "FIELD" | undefined;
|
|
11887
12196
|
config?: {
|
|
12197
|
+
multiple?: boolean | undefined;
|
|
11888
12198
|
accept?: string | undefined;
|
|
11889
12199
|
max_size?: number | undefined;
|
|
11890
|
-
multiple?: boolean | undefined;
|
|
11891
12200
|
} | undefined;
|
|
11892
12201
|
sensitive?: boolean | undefined;
|
|
11893
12202
|
label?: string | undefined;
|
|
@@ -11899,9 +12208,9 @@ declare const fileField: z.ZodObject<{
|
|
|
11899
12208
|
required?: boolean | undefined;
|
|
11900
12209
|
category?: "FIELD" | undefined;
|
|
11901
12210
|
config?: {
|
|
12211
|
+
multiple?: boolean | undefined;
|
|
11902
12212
|
accept?: string | undefined;
|
|
11903
12213
|
max_size?: number | undefined;
|
|
11904
|
-
multiple?: boolean | undefined;
|
|
11905
12214
|
} | undefined;
|
|
11906
12215
|
sensitive?: boolean | undefined;
|
|
11907
12216
|
label?: string | undefined;
|
|
@@ -12970,18 +13279,27 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
12970
13279
|
"radio",
|
|
12971
13280
|
"checkbox"
|
|
12972
13281
|
]>>;
|
|
13282
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
13283
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
13284
|
+
z.ZodString,
|
|
13285
|
+
z.ZodArray<z.ZodString, "many">
|
|
13286
|
+
]>>;
|
|
12973
13287
|
}, "strip", z.ZodTypeAny, {
|
|
12974
13288
|
options?: {
|
|
12975
13289
|
value: string;
|
|
12976
13290
|
label: string;
|
|
12977
13291
|
}[] | undefined;
|
|
13292
|
+
default_value?: string | string[] | undefined;
|
|
12978
13293
|
display?: "radio" | "checkbox" | undefined;
|
|
13294
|
+
multiple?: boolean | undefined;
|
|
12979
13295
|
}, {
|
|
12980
13296
|
options?: {
|
|
12981
13297
|
value: string;
|
|
12982
13298
|
label: string;
|
|
12983
13299
|
}[] | undefined;
|
|
13300
|
+
default_value?: string | string[] | undefined;
|
|
12984
13301
|
display?: "radio" | "checkbox" | undefined;
|
|
13302
|
+
multiple?: boolean | undefined;
|
|
12985
13303
|
}>>;
|
|
12986
13304
|
}, "strip", z.ZodTypeAny, {
|
|
12987
13305
|
type: "CHOICE";
|
|
@@ -12994,7 +13312,9 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
12994
13312
|
value: string;
|
|
12995
13313
|
label: string;
|
|
12996
13314
|
}[] | undefined;
|
|
13315
|
+
default_value?: string | string[] | undefined;
|
|
12997
13316
|
display?: "radio" | "checkbox" | undefined;
|
|
13317
|
+
multiple?: boolean | undefined;
|
|
12998
13318
|
} | undefined;
|
|
12999
13319
|
sensitive?: boolean | undefined;
|
|
13000
13320
|
label?: string | undefined;
|
|
@@ -13010,7 +13330,9 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13010
13330
|
value: string;
|
|
13011
13331
|
label: string;
|
|
13012
13332
|
}[] | undefined;
|
|
13333
|
+
default_value?: string | string[] | undefined;
|
|
13013
13334
|
display?: "radio" | "checkbox" | undefined;
|
|
13335
|
+
multiple?: boolean | undefined;
|
|
13014
13336
|
} | undefined;
|
|
13015
13337
|
sensitive?: boolean | undefined;
|
|
13016
13338
|
label?: string | undefined;
|
|
@@ -13033,10 +13355,16 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13033
13355
|
config: z.ZodObject<{
|
|
13034
13356
|
component: z.ZodOptional<z.ZodString>;
|
|
13035
13357
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13358
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13359
|
+
code: z.ZodOptional<z.ZodString>;
|
|
13036
13360
|
}, "strip", z.ZodTypeAny, {
|
|
13361
|
+
code?: string | undefined;
|
|
13362
|
+
schema?: Record<string, any> | undefined;
|
|
13037
13363
|
component?: string | undefined;
|
|
13038
13364
|
props?: Record<string, any> | undefined;
|
|
13039
13365
|
}, {
|
|
13366
|
+
code?: string | undefined;
|
|
13367
|
+
schema?: Record<string, any> | undefined;
|
|
13040
13368
|
component?: string | undefined;
|
|
13041
13369
|
props?: Record<string, any> | undefined;
|
|
13042
13370
|
}>;
|
|
@@ -13044,6 +13372,8 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13044
13372
|
type: "CUSTOM";
|
|
13045
13373
|
id: string;
|
|
13046
13374
|
config: {
|
|
13375
|
+
code?: string | undefined;
|
|
13376
|
+
schema?: Record<string, any> | undefined;
|
|
13047
13377
|
component?: string | undefined;
|
|
13048
13378
|
props?: Record<string, any> | undefined;
|
|
13049
13379
|
};
|
|
@@ -13058,6 +13388,8 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13058
13388
|
type: "CUSTOM";
|
|
13059
13389
|
id: string;
|
|
13060
13390
|
config: {
|
|
13391
|
+
code?: string | undefined;
|
|
13392
|
+
schema?: Record<string, any> | undefined;
|
|
13061
13393
|
component?: string | undefined;
|
|
13062
13394
|
props?: Record<string, any> | undefined;
|
|
13063
13395
|
};
|
|
@@ -13150,12 +13482,19 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13150
13482
|
}>, "many">>;
|
|
13151
13483
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
13152
13484
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
13485
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
13486
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
13487
|
+
z.ZodString,
|
|
13488
|
+
z.ZodArray<z.ZodString, "many">
|
|
13489
|
+
]>>;
|
|
13153
13490
|
}, "strip", z.ZodTypeAny, {
|
|
13154
13491
|
options?: {
|
|
13155
13492
|
value: string;
|
|
13156
13493
|
label: string;
|
|
13157
13494
|
}[] | undefined;
|
|
13158
13495
|
placeholder?: string | undefined;
|
|
13496
|
+
default_value?: string | string[] | undefined;
|
|
13497
|
+
multiple?: boolean | undefined;
|
|
13159
13498
|
searchable?: boolean | undefined;
|
|
13160
13499
|
}, {
|
|
13161
13500
|
options?: {
|
|
@@ -13163,6 +13502,8 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13163
13502
|
label: string;
|
|
13164
13503
|
}[] | undefined;
|
|
13165
13504
|
placeholder?: string | undefined;
|
|
13505
|
+
default_value?: string | string[] | undefined;
|
|
13506
|
+
multiple?: boolean | undefined;
|
|
13166
13507
|
searchable?: boolean | undefined;
|
|
13167
13508
|
}>>;
|
|
13168
13509
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -13177,6 +13518,8 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13177
13518
|
label: string;
|
|
13178
13519
|
}[] | undefined;
|
|
13179
13520
|
placeholder?: string | undefined;
|
|
13521
|
+
default_value?: string | string[] | undefined;
|
|
13522
|
+
multiple?: boolean | undefined;
|
|
13180
13523
|
searchable?: boolean | undefined;
|
|
13181
13524
|
} | undefined;
|
|
13182
13525
|
sensitive?: boolean | undefined;
|
|
@@ -13194,6 +13537,8 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13194
13537
|
label: string;
|
|
13195
13538
|
}[] | undefined;
|
|
13196
13539
|
placeholder?: string | undefined;
|
|
13540
|
+
default_value?: string | string[] | undefined;
|
|
13541
|
+
multiple?: boolean | undefined;
|
|
13197
13542
|
searchable?: boolean | undefined;
|
|
13198
13543
|
} | undefined;
|
|
13199
13544
|
sensitive?: boolean | undefined;
|
|
@@ -13265,13 +13610,13 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13265
13610
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
13266
13611
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
13267
13612
|
}, "strip", z.ZodTypeAny, {
|
|
13613
|
+
multiple?: boolean | undefined;
|
|
13268
13614
|
accept?: string | undefined;
|
|
13269
13615
|
max_size?: number | undefined;
|
|
13270
|
-
multiple?: boolean | undefined;
|
|
13271
13616
|
}, {
|
|
13617
|
+
multiple?: boolean | undefined;
|
|
13272
13618
|
accept?: string | undefined;
|
|
13273
13619
|
max_size?: number | undefined;
|
|
13274
|
-
multiple?: boolean | undefined;
|
|
13275
13620
|
}>>;
|
|
13276
13621
|
}, "strip", z.ZodTypeAny, {
|
|
13277
13622
|
type: "FILE";
|
|
@@ -13280,9 +13625,9 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13280
13625
|
required?: boolean | undefined;
|
|
13281
13626
|
category?: "FIELD" | undefined;
|
|
13282
13627
|
config?: {
|
|
13628
|
+
multiple?: boolean | undefined;
|
|
13283
13629
|
accept?: string | undefined;
|
|
13284
13630
|
max_size?: number | undefined;
|
|
13285
|
-
multiple?: boolean | undefined;
|
|
13286
13631
|
} | undefined;
|
|
13287
13632
|
sensitive?: boolean | undefined;
|
|
13288
13633
|
label?: string | undefined;
|
|
@@ -13294,9 +13639,9 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13294
13639
|
required?: boolean | undefined;
|
|
13295
13640
|
category?: "FIELD" | undefined;
|
|
13296
13641
|
config?: {
|
|
13642
|
+
multiple?: boolean | undefined;
|
|
13297
13643
|
accept?: string | undefined;
|
|
13298
13644
|
max_size?: number | undefined;
|
|
13299
|
-
multiple?: boolean | undefined;
|
|
13300
13645
|
} | undefined;
|
|
13301
13646
|
sensitive?: boolean | undefined;
|
|
13302
13647
|
label?: string | undefined;
|
|
@@ -14361,18 +14706,27 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14361
14706
|
"radio",
|
|
14362
14707
|
"checkbox"
|
|
14363
14708
|
]>>;
|
|
14709
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
14710
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
14711
|
+
z.ZodString,
|
|
14712
|
+
z.ZodArray<z.ZodString, "many">
|
|
14713
|
+
]>>;
|
|
14364
14714
|
}, "strip", z.ZodTypeAny, {
|
|
14365
14715
|
options?: {
|
|
14366
14716
|
value: string;
|
|
14367
14717
|
label: string;
|
|
14368
14718
|
}[] | undefined;
|
|
14719
|
+
default_value?: string | string[] | undefined;
|
|
14369
14720
|
display?: "radio" | "checkbox" | undefined;
|
|
14721
|
+
multiple?: boolean | undefined;
|
|
14370
14722
|
}, {
|
|
14371
14723
|
options?: {
|
|
14372
14724
|
value: string;
|
|
14373
14725
|
label: string;
|
|
14374
14726
|
}[] | undefined;
|
|
14727
|
+
default_value?: string | string[] | undefined;
|
|
14375
14728
|
display?: "radio" | "checkbox" | undefined;
|
|
14729
|
+
multiple?: boolean | undefined;
|
|
14376
14730
|
}>>;
|
|
14377
14731
|
}, "strip", z.ZodTypeAny, {
|
|
14378
14732
|
type: "CHOICE";
|
|
@@ -14385,7 +14739,9 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14385
14739
|
value: string;
|
|
14386
14740
|
label: string;
|
|
14387
14741
|
}[] | undefined;
|
|
14742
|
+
default_value?: string | string[] | undefined;
|
|
14388
14743
|
display?: "radio" | "checkbox" | undefined;
|
|
14744
|
+
multiple?: boolean | undefined;
|
|
14389
14745
|
} | undefined;
|
|
14390
14746
|
sensitive?: boolean | undefined;
|
|
14391
14747
|
label?: string | undefined;
|
|
@@ -14401,7 +14757,9 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14401
14757
|
value: string;
|
|
14402
14758
|
label: string;
|
|
14403
14759
|
}[] | undefined;
|
|
14760
|
+
default_value?: string | string[] | undefined;
|
|
14404
14761
|
display?: "radio" | "checkbox" | undefined;
|
|
14762
|
+
multiple?: boolean | undefined;
|
|
14405
14763
|
} | undefined;
|
|
14406
14764
|
sensitive?: boolean | undefined;
|
|
14407
14765
|
label?: string | undefined;
|
|
@@ -14424,10 +14782,16 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14424
14782
|
config: z.ZodObject<{
|
|
14425
14783
|
component: z.ZodOptional<z.ZodString>;
|
|
14426
14784
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
14785
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
14786
|
+
code: z.ZodOptional<z.ZodString>;
|
|
14427
14787
|
}, "strip", z.ZodTypeAny, {
|
|
14788
|
+
code?: string | undefined;
|
|
14789
|
+
schema?: Record<string, any> | undefined;
|
|
14428
14790
|
component?: string | undefined;
|
|
14429
14791
|
props?: Record<string, any> | undefined;
|
|
14430
14792
|
}, {
|
|
14793
|
+
code?: string | undefined;
|
|
14794
|
+
schema?: Record<string, any> | undefined;
|
|
14431
14795
|
component?: string | undefined;
|
|
14432
14796
|
props?: Record<string, any> | undefined;
|
|
14433
14797
|
}>;
|
|
@@ -14435,6 +14799,8 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14435
14799
|
type: "CUSTOM";
|
|
14436
14800
|
id: string;
|
|
14437
14801
|
config: {
|
|
14802
|
+
code?: string | undefined;
|
|
14803
|
+
schema?: Record<string, any> | undefined;
|
|
14438
14804
|
component?: string | undefined;
|
|
14439
14805
|
props?: Record<string, any> | undefined;
|
|
14440
14806
|
};
|
|
@@ -14449,6 +14815,8 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14449
14815
|
type: "CUSTOM";
|
|
14450
14816
|
id: string;
|
|
14451
14817
|
config: {
|
|
14818
|
+
code?: string | undefined;
|
|
14819
|
+
schema?: Record<string, any> | undefined;
|
|
14452
14820
|
component?: string | undefined;
|
|
14453
14821
|
props?: Record<string, any> | undefined;
|
|
14454
14822
|
};
|
|
@@ -14541,12 +14909,19 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14541
14909
|
}>, "many">>;
|
|
14542
14910
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
14543
14911
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
14912
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
14913
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
14914
|
+
z.ZodString,
|
|
14915
|
+
z.ZodArray<z.ZodString, "many">
|
|
14916
|
+
]>>;
|
|
14544
14917
|
}, "strip", z.ZodTypeAny, {
|
|
14545
14918
|
options?: {
|
|
14546
14919
|
value: string;
|
|
14547
14920
|
label: string;
|
|
14548
14921
|
}[] | undefined;
|
|
14549
14922
|
placeholder?: string | undefined;
|
|
14923
|
+
default_value?: string | string[] | undefined;
|
|
14924
|
+
multiple?: boolean | undefined;
|
|
14550
14925
|
searchable?: boolean | undefined;
|
|
14551
14926
|
}, {
|
|
14552
14927
|
options?: {
|
|
@@ -14554,6 +14929,8 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14554
14929
|
label: string;
|
|
14555
14930
|
}[] | undefined;
|
|
14556
14931
|
placeholder?: string | undefined;
|
|
14932
|
+
default_value?: string | string[] | undefined;
|
|
14933
|
+
multiple?: boolean | undefined;
|
|
14557
14934
|
searchable?: boolean | undefined;
|
|
14558
14935
|
}>>;
|
|
14559
14936
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14568,6 +14945,8 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14568
14945
|
label: string;
|
|
14569
14946
|
}[] | undefined;
|
|
14570
14947
|
placeholder?: string | undefined;
|
|
14948
|
+
default_value?: string | string[] | undefined;
|
|
14949
|
+
multiple?: boolean | undefined;
|
|
14571
14950
|
searchable?: boolean | undefined;
|
|
14572
14951
|
} | undefined;
|
|
14573
14952
|
sensitive?: boolean | undefined;
|
|
@@ -14585,6 +14964,8 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14585
14964
|
label: string;
|
|
14586
14965
|
}[] | undefined;
|
|
14587
14966
|
placeholder?: string | undefined;
|
|
14967
|
+
default_value?: string | string[] | undefined;
|
|
14968
|
+
multiple?: boolean | undefined;
|
|
14588
14969
|
searchable?: boolean | undefined;
|
|
14589
14970
|
} | undefined;
|
|
14590
14971
|
sensitive?: boolean | undefined;
|
|
@@ -14656,13 +15037,13 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14656
15037
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
14657
15038
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
14658
15039
|
}, "strip", z.ZodTypeAny, {
|
|
15040
|
+
multiple?: boolean | undefined;
|
|
14659
15041
|
accept?: string | undefined;
|
|
14660
15042
|
max_size?: number | undefined;
|
|
14661
|
-
multiple?: boolean | undefined;
|
|
14662
15043
|
}, {
|
|
15044
|
+
multiple?: boolean | undefined;
|
|
14663
15045
|
accept?: string | undefined;
|
|
14664
15046
|
max_size?: number | undefined;
|
|
14665
|
-
multiple?: boolean | undefined;
|
|
14666
15047
|
}>>;
|
|
14667
15048
|
}, "strip", z.ZodTypeAny, {
|
|
14668
15049
|
type: "FILE";
|
|
@@ -14671,9 +15052,9 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14671
15052
|
required?: boolean | undefined;
|
|
14672
15053
|
category?: "FIELD" | undefined;
|
|
14673
15054
|
config?: {
|
|
15055
|
+
multiple?: boolean | undefined;
|
|
14674
15056
|
accept?: string | undefined;
|
|
14675
15057
|
max_size?: number | undefined;
|
|
14676
|
-
multiple?: boolean | undefined;
|
|
14677
15058
|
} | undefined;
|
|
14678
15059
|
sensitive?: boolean | undefined;
|
|
14679
15060
|
label?: string | undefined;
|
|
@@ -14685,9 +15066,9 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14685
15066
|
required?: boolean | undefined;
|
|
14686
15067
|
category?: "FIELD" | undefined;
|
|
14687
15068
|
config?: {
|
|
15069
|
+
multiple?: boolean | undefined;
|
|
14688
15070
|
accept?: string | undefined;
|
|
14689
15071
|
max_size?: number | undefined;
|
|
14690
|
-
multiple?: boolean | undefined;
|
|
14691
15072
|
} | undefined;
|
|
14692
15073
|
sensitive?: boolean | undefined;
|
|
14693
15074
|
label?: string | undefined;
|
|
@@ -15961,18 +16342,27 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
15961
16342
|
"radio",
|
|
15962
16343
|
"checkbox"
|
|
15963
16344
|
]>>;
|
|
16345
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
16346
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
16347
|
+
z.ZodString,
|
|
16348
|
+
z.ZodArray<z.ZodString, "many">
|
|
16349
|
+
]>>;
|
|
15964
16350
|
}, "strip", z.ZodTypeAny, {
|
|
15965
16351
|
options?: {
|
|
15966
16352
|
value: string;
|
|
15967
16353
|
label: string;
|
|
15968
16354
|
}[] | undefined;
|
|
16355
|
+
default_value?: string | string[] | undefined;
|
|
15969
16356
|
display?: "radio" | "checkbox" | undefined;
|
|
16357
|
+
multiple?: boolean | undefined;
|
|
15970
16358
|
}, {
|
|
15971
16359
|
options?: {
|
|
15972
16360
|
value: string;
|
|
15973
16361
|
label: string;
|
|
15974
16362
|
}[] | undefined;
|
|
16363
|
+
default_value?: string | string[] | undefined;
|
|
15975
16364
|
display?: "radio" | "checkbox" | undefined;
|
|
16365
|
+
multiple?: boolean | undefined;
|
|
15976
16366
|
}>>;
|
|
15977
16367
|
}, "strip", z.ZodTypeAny, {
|
|
15978
16368
|
type: "CHOICE";
|
|
@@ -15985,7 +16375,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
15985
16375
|
value: string;
|
|
15986
16376
|
label: string;
|
|
15987
16377
|
}[] | undefined;
|
|
16378
|
+
default_value?: string | string[] | undefined;
|
|
15988
16379
|
display?: "radio" | "checkbox" | undefined;
|
|
16380
|
+
multiple?: boolean | undefined;
|
|
15989
16381
|
} | undefined;
|
|
15990
16382
|
sensitive?: boolean | undefined;
|
|
15991
16383
|
label?: string | undefined;
|
|
@@ -16001,7 +16393,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16001
16393
|
value: string;
|
|
16002
16394
|
label: string;
|
|
16003
16395
|
}[] | undefined;
|
|
16396
|
+
default_value?: string | string[] | undefined;
|
|
16004
16397
|
display?: "radio" | "checkbox" | undefined;
|
|
16398
|
+
multiple?: boolean | undefined;
|
|
16005
16399
|
} | undefined;
|
|
16006
16400
|
sensitive?: boolean | undefined;
|
|
16007
16401
|
label?: string | undefined;
|
|
@@ -16024,10 +16418,16 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16024
16418
|
config: z.ZodObject<{
|
|
16025
16419
|
component: z.ZodOptional<z.ZodString>;
|
|
16026
16420
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
16421
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
16422
|
+
code: z.ZodOptional<z.ZodString>;
|
|
16027
16423
|
}, "strip", z.ZodTypeAny, {
|
|
16424
|
+
code?: string | undefined;
|
|
16425
|
+
schema?: Record<string, any> | undefined;
|
|
16028
16426
|
component?: string | undefined;
|
|
16029
16427
|
props?: Record<string, any> | undefined;
|
|
16030
16428
|
}, {
|
|
16429
|
+
code?: string | undefined;
|
|
16430
|
+
schema?: Record<string, any> | undefined;
|
|
16031
16431
|
component?: string | undefined;
|
|
16032
16432
|
props?: Record<string, any> | undefined;
|
|
16033
16433
|
}>;
|
|
@@ -16035,6 +16435,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16035
16435
|
type: "CUSTOM";
|
|
16036
16436
|
id: string;
|
|
16037
16437
|
config: {
|
|
16438
|
+
code?: string | undefined;
|
|
16439
|
+
schema?: Record<string, any> | undefined;
|
|
16038
16440
|
component?: string | undefined;
|
|
16039
16441
|
props?: Record<string, any> | undefined;
|
|
16040
16442
|
};
|
|
@@ -16049,6 +16451,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16049
16451
|
type: "CUSTOM";
|
|
16050
16452
|
id: string;
|
|
16051
16453
|
config: {
|
|
16454
|
+
code?: string | undefined;
|
|
16455
|
+
schema?: Record<string, any> | undefined;
|
|
16052
16456
|
component?: string | undefined;
|
|
16053
16457
|
props?: Record<string, any> | undefined;
|
|
16054
16458
|
};
|
|
@@ -16141,12 +16545,19 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16141
16545
|
}>, "many">>;
|
|
16142
16546
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
16143
16547
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
16548
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
16549
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
16550
|
+
z.ZodString,
|
|
16551
|
+
z.ZodArray<z.ZodString, "many">
|
|
16552
|
+
]>>;
|
|
16144
16553
|
}, "strip", z.ZodTypeAny, {
|
|
16145
16554
|
options?: {
|
|
16146
16555
|
value: string;
|
|
16147
16556
|
label: string;
|
|
16148
16557
|
}[] | undefined;
|
|
16149
16558
|
placeholder?: string | undefined;
|
|
16559
|
+
default_value?: string | string[] | undefined;
|
|
16560
|
+
multiple?: boolean | undefined;
|
|
16150
16561
|
searchable?: boolean | undefined;
|
|
16151
16562
|
}, {
|
|
16152
16563
|
options?: {
|
|
@@ -16154,6 +16565,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16154
16565
|
label: string;
|
|
16155
16566
|
}[] | undefined;
|
|
16156
16567
|
placeholder?: string | undefined;
|
|
16568
|
+
default_value?: string | string[] | undefined;
|
|
16569
|
+
multiple?: boolean | undefined;
|
|
16157
16570
|
searchable?: boolean | undefined;
|
|
16158
16571
|
}>>;
|
|
16159
16572
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16168,6 +16581,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16168
16581
|
label: string;
|
|
16169
16582
|
}[] | undefined;
|
|
16170
16583
|
placeholder?: string | undefined;
|
|
16584
|
+
default_value?: string | string[] | undefined;
|
|
16585
|
+
multiple?: boolean | undefined;
|
|
16171
16586
|
searchable?: boolean | undefined;
|
|
16172
16587
|
} | undefined;
|
|
16173
16588
|
sensitive?: boolean | undefined;
|
|
@@ -16185,6 +16600,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16185
16600
|
label: string;
|
|
16186
16601
|
}[] | undefined;
|
|
16187
16602
|
placeholder?: string | undefined;
|
|
16603
|
+
default_value?: string | string[] | undefined;
|
|
16604
|
+
multiple?: boolean | undefined;
|
|
16188
16605
|
searchable?: boolean | undefined;
|
|
16189
16606
|
} | undefined;
|
|
16190
16607
|
sensitive?: boolean | undefined;
|
|
@@ -16256,13 +16673,13 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16256
16673
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
16257
16674
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
16258
16675
|
}, "strip", z.ZodTypeAny, {
|
|
16676
|
+
multiple?: boolean | undefined;
|
|
16259
16677
|
accept?: string | undefined;
|
|
16260
16678
|
max_size?: number | undefined;
|
|
16261
|
-
multiple?: boolean | undefined;
|
|
16262
16679
|
}, {
|
|
16680
|
+
multiple?: boolean | undefined;
|
|
16263
16681
|
accept?: string | undefined;
|
|
16264
16682
|
max_size?: number | undefined;
|
|
16265
|
-
multiple?: boolean | undefined;
|
|
16266
16683
|
}>>;
|
|
16267
16684
|
}, "strip", z.ZodTypeAny, {
|
|
16268
16685
|
type: "FILE";
|
|
@@ -16271,9 +16688,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16271
16688
|
required?: boolean | undefined;
|
|
16272
16689
|
category?: "FIELD" | undefined;
|
|
16273
16690
|
config?: {
|
|
16691
|
+
multiple?: boolean | undefined;
|
|
16274
16692
|
accept?: string | undefined;
|
|
16275
16693
|
max_size?: number | undefined;
|
|
16276
|
-
multiple?: boolean | undefined;
|
|
16277
16694
|
} | undefined;
|
|
16278
16695
|
sensitive?: boolean | undefined;
|
|
16279
16696
|
label?: string | undefined;
|
|
@@ -16285,9 +16702,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16285
16702
|
required?: boolean | undefined;
|
|
16286
16703
|
category?: "FIELD" | undefined;
|
|
16287
16704
|
config?: {
|
|
16705
|
+
multiple?: boolean | undefined;
|
|
16288
16706
|
accept?: string | undefined;
|
|
16289
16707
|
max_size?: number | undefined;
|
|
16290
|
-
multiple?: boolean | undefined;
|
|
16291
16708
|
} | undefined;
|
|
16292
16709
|
sensitive?: boolean | undefined;
|
|
16293
16710
|
label?: string | undefined;
|
|
@@ -16919,7 +17336,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16919
17336
|
value: string;
|
|
16920
17337
|
label: string;
|
|
16921
17338
|
}[] | undefined;
|
|
17339
|
+
default_value?: string | string[] | undefined;
|
|
16922
17340
|
display?: "radio" | "checkbox" | undefined;
|
|
17341
|
+
multiple?: boolean | undefined;
|
|
16923
17342
|
} | undefined;
|
|
16924
17343
|
sensitive?: boolean | undefined;
|
|
16925
17344
|
label?: string | undefined;
|
|
@@ -16929,6 +17348,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16929
17348
|
type: "CUSTOM";
|
|
16930
17349
|
id: string;
|
|
16931
17350
|
config: {
|
|
17351
|
+
code?: string | undefined;
|
|
17352
|
+
schema?: Record<string, any> | undefined;
|
|
16932
17353
|
component?: string | undefined;
|
|
16933
17354
|
props?: Record<string, any> | undefined;
|
|
16934
17355
|
};
|
|
@@ -16966,6 +17387,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16966
17387
|
label: string;
|
|
16967
17388
|
}[] | undefined;
|
|
16968
17389
|
placeholder?: string | undefined;
|
|
17390
|
+
default_value?: string | string[] | undefined;
|
|
17391
|
+
multiple?: boolean | undefined;
|
|
16969
17392
|
searchable?: boolean | undefined;
|
|
16970
17393
|
} | undefined;
|
|
16971
17394
|
sensitive?: boolean | undefined;
|
|
@@ -16992,9 +17415,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16992
17415
|
required?: boolean | undefined;
|
|
16993
17416
|
category?: "FIELD" | undefined;
|
|
16994
17417
|
config?: {
|
|
17418
|
+
multiple?: boolean | undefined;
|
|
16995
17419
|
accept?: string | undefined;
|
|
16996
17420
|
max_size?: number | undefined;
|
|
16997
|
-
multiple?: boolean | undefined;
|
|
16998
17421
|
} | undefined;
|
|
16999
17422
|
sensitive?: boolean | undefined;
|
|
17000
17423
|
label?: string | undefined;
|
|
@@ -17280,7 +17703,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17280
17703
|
value: string;
|
|
17281
17704
|
label: string;
|
|
17282
17705
|
}[] | undefined;
|
|
17706
|
+
default_value?: string | string[] | undefined;
|
|
17283
17707
|
display?: "radio" | "checkbox" | undefined;
|
|
17708
|
+
multiple?: boolean | undefined;
|
|
17284
17709
|
} | undefined;
|
|
17285
17710
|
sensitive?: boolean | undefined;
|
|
17286
17711
|
label?: string | undefined;
|
|
@@ -17291,6 +17716,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17291
17716
|
type: "CUSTOM";
|
|
17292
17717
|
id: string;
|
|
17293
17718
|
config: {
|
|
17719
|
+
code?: string | undefined;
|
|
17720
|
+
schema?: Record<string, any> | undefined;
|
|
17294
17721
|
component?: string | undefined;
|
|
17295
17722
|
props?: Record<string, any> | undefined;
|
|
17296
17723
|
};
|
|
@@ -17327,6 +17754,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17327
17754
|
label: string;
|
|
17328
17755
|
}[] | undefined;
|
|
17329
17756
|
placeholder?: string | undefined;
|
|
17757
|
+
default_value?: string | string[] | undefined;
|
|
17758
|
+
multiple?: boolean | undefined;
|
|
17330
17759
|
searchable?: boolean | undefined;
|
|
17331
17760
|
} | undefined;
|
|
17332
17761
|
sensitive?: boolean | undefined;
|
|
@@ -17353,9 +17782,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17353
17782
|
required?: boolean | undefined;
|
|
17354
17783
|
category?: "FIELD" | undefined;
|
|
17355
17784
|
config?: {
|
|
17785
|
+
multiple?: boolean | undefined;
|
|
17356
17786
|
accept?: string | undefined;
|
|
17357
17787
|
max_size?: number | undefined;
|
|
17358
|
-
multiple?: boolean | undefined;
|
|
17359
17788
|
} | undefined;
|
|
17360
17789
|
sensitive?: boolean | undefined;
|
|
17361
17790
|
label?: string | undefined;
|
|
@@ -17647,7 +18076,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17647
18076
|
value: string;
|
|
17648
18077
|
label: string;
|
|
17649
18078
|
}[] | undefined;
|
|
18079
|
+
default_value?: string | string[] | undefined;
|
|
17650
18080
|
display?: "radio" | "checkbox" | undefined;
|
|
18081
|
+
multiple?: boolean | undefined;
|
|
17651
18082
|
} | undefined;
|
|
17652
18083
|
sensitive?: boolean | undefined;
|
|
17653
18084
|
label?: string | undefined;
|
|
@@ -17657,6 +18088,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17657
18088
|
type: "CUSTOM";
|
|
17658
18089
|
id: string;
|
|
17659
18090
|
config: {
|
|
18091
|
+
code?: string | undefined;
|
|
18092
|
+
schema?: Record<string, any> | undefined;
|
|
17660
18093
|
component?: string | undefined;
|
|
17661
18094
|
props?: Record<string, any> | undefined;
|
|
17662
18095
|
};
|
|
@@ -17694,6 +18127,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17694
18127
|
label: string;
|
|
17695
18128
|
}[] | undefined;
|
|
17696
18129
|
placeholder?: string | undefined;
|
|
18130
|
+
default_value?: string | string[] | undefined;
|
|
18131
|
+
multiple?: boolean | undefined;
|
|
17697
18132
|
searchable?: boolean | undefined;
|
|
17698
18133
|
} | undefined;
|
|
17699
18134
|
sensitive?: boolean | undefined;
|
|
@@ -17720,9 +18155,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17720
18155
|
required?: boolean | undefined;
|
|
17721
18156
|
category?: "FIELD" | undefined;
|
|
17722
18157
|
config?: {
|
|
18158
|
+
multiple?: boolean | undefined;
|
|
17723
18159
|
accept?: string | undefined;
|
|
17724
18160
|
max_size?: number | undefined;
|
|
17725
|
-
multiple?: boolean | undefined;
|
|
17726
18161
|
} | undefined;
|
|
17727
18162
|
sensitive?: boolean | undefined;
|
|
17728
18163
|
label?: string | undefined;
|
|
@@ -18017,7 +18452,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
18017
18452
|
value: string;
|
|
18018
18453
|
label: string;
|
|
18019
18454
|
}[] | undefined;
|
|
18455
|
+
default_value?: string | string[] | undefined;
|
|
18020
18456
|
display?: "radio" | "checkbox" | undefined;
|
|
18457
|
+
multiple?: boolean | undefined;
|
|
18021
18458
|
} | undefined;
|
|
18022
18459
|
sensitive?: boolean | undefined;
|
|
18023
18460
|
label?: string | undefined;
|
|
@@ -18028,6 +18465,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
18028
18465
|
type: "CUSTOM";
|
|
18029
18466
|
id: string;
|
|
18030
18467
|
config: {
|
|
18468
|
+
code?: string | undefined;
|
|
18469
|
+
schema?: Record<string, any> | undefined;
|
|
18031
18470
|
component?: string | undefined;
|
|
18032
18471
|
props?: Record<string, any> | undefined;
|
|
18033
18472
|
};
|
|
@@ -18064,6 +18503,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
18064
18503
|
label: string;
|
|
18065
18504
|
}[] | undefined;
|
|
18066
18505
|
placeholder?: string | undefined;
|
|
18506
|
+
default_value?: string | string[] | undefined;
|
|
18507
|
+
multiple?: boolean | undefined;
|
|
18067
18508
|
searchable?: boolean | undefined;
|
|
18068
18509
|
} | undefined;
|
|
18069
18510
|
sensitive?: boolean | undefined;
|
|
@@ -18090,9 +18531,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
18090
18531
|
required?: boolean | undefined;
|
|
18091
18532
|
category?: "FIELD" | undefined;
|
|
18092
18533
|
config?: {
|
|
18534
|
+
multiple?: boolean | undefined;
|
|
18093
18535
|
accept?: string | undefined;
|
|
18094
18536
|
max_size?: number | undefined;
|
|
18095
|
-
multiple?: boolean | undefined;
|
|
18096
18537
|
} | undefined;
|
|
18097
18538
|
sensitive?: boolean | undefined;
|
|
18098
18539
|
label?: string | undefined;
|
|
@@ -18968,18 +19409,27 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
18968
19409
|
"radio",
|
|
18969
19410
|
"checkbox"
|
|
18970
19411
|
]>>;
|
|
19412
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
19413
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
19414
|
+
z.ZodString,
|
|
19415
|
+
z.ZodArray<z.ZodString, "many">
|
|
19416
|
+
]>>;
|
|
18971
19417
|
}, "strip", z.ZodTypeAny, {
|
|
18972
19418
|
options?: {
|
|
18973
19419
|
value: string;
|
|
18974
19420
|
label: string;
|
|
18975
19421
|
}[] | undefined;
|
|
19422
|
+
default_value?: string | string[] | undefined;
|
|
18976
19423
|
display?: "radio" | "checkbox" | undefined;
|
|
19424
|
+
multiple?: boolean | undefined;
|
|
18977
19425
|
}, {
|
|
18978
19426
|
options?: {
|
|
18979
19427
|
value: string;
|
|
18980
19428
|
label: string;
|
|
18981
19429
|
}[] | undefined;
|
|
19430
|
+
default_value?: string | string[] | undefined;
|
|
18982
19431
|
display?: "radio" | "checkbox" | undefined;
|
|
19432
|
+
multiple?: boolean | undefined;
|
|
18983
19433
|
}>>;
|
|
18984
19434
|
}, "strip", z.ZodTypeAny, {
|
|
18985
19435
|
type: "CHOICE";
|
|
@@ -18992,7 +19442,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
18992
19442
|
value: string;
|
|
18993
19443
|
label: string;
|
|
18994
19444
|
}[] | undefined;
|
|
19445
|
+
default_value?: string | string[] | undefined;
|
|
18995
19446
|
display?: "radio" | "checkbox" | undefined;
|
|
19447
|
+
multiple?: boolean | undefined;
|
|
18996
19448
|
} | undefined;
|
|
18997
19449
|
sensitive?: boolean | undefined;
|
|
18998
19450
|
label?: string | undefined;
|
|
@@ -19008,7 +19460,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19008
19460
|
value: string;
|
|
19009
19461
|
label: string;
|
|
19010
19462
|
}[] | undefined;
|
|
19463
|
+
default_value?: string | string[] | undefined;
|
|
19011
19464
|
display?: "radio" | "checkbox" | undefined;
|
|
19465
|
+
multiple?: boolean | undefined;
|
|
19012
19466
|
} | undefined;
|
|
19013
19467
|
sensitive?: boolean | undefined;
|
|
19014
19468
|
label?: string | undefined;
|
|
@@ -19031,10 +19485,16 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19031
19485
|
config: z.ZodObject<{
|
|
19032
19486
|
component: z.ZodOptional<z.ZodString>;
|
|
19033
19487
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
19488
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
19489
|
+
code: z.ZodOptional<z.ZodString>;
|
|
19034
19490
|
}, "strip", z.ZodTypeAny, {
|
|
19491
|
+
code?: string | undefined;
|
|
19492
|
+
schema?: Record<string, any> | undefined;
|
|
19035
19493
|
component?: string | undefined;
|
|
19036
19494
|
props?: Record<string, any> | undefined;
|
|
19037
19495
|
}, {
|
|
19496
|
+
code?: string | undefined;
|
|
19497
|
+
schema?: Record<string, any> | undefined;
|
|
19038
19498
|
component?: string | undefined;
|
|
19039
19499
|
props?: Record<string, any> | undefined;
|
|
19040
19500
|
}>;
|
|
@@ -19042,6 +19502,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19042
19502
|
type: "CUSTOM";
|
|
19043
19503
|
id: string;
|
|
19044
19504
|
config: {
|
|
19505
|
+
code?: string | undefined;
|
|
19506
|
+
schema?: Record<string, any> | undefined;
|
|
19045
19507
|
component?: string | undefined;
|
|
19046
19508
|
props?: Record<string, any> | undefined;
|
|
19047
19509
|
};
|
|
@@ -19056,6 +19518,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19056
19518
|
type: "CUSTOM";
|
|
19057
19519
|
id: string;
|
|
19058
19520
|
config: {
|
|
19521
|
+
code?: string | undefined;
|
|
19522
|
+
schema?: Record<string, any> | undefined;
|
|
19059
19523
|
component?: string | undefined;
|
|
19060
19524
|
props?: Record<string, any> | undefined;
|
|
19061
19525
|
};
|
|
@@ -19148,12 +19612,19 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19148
19612
|
}>, "many">>;
|
|
19149
19613
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
19150
19614
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
19615
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
19616
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
19617
|
+
z.ZodString,
|
|
19618
|
+
z.ZodArray<z.ZodString, "many">
|
|
19619
|
+
]>>;
|
|
19151
19620
|
}, "strip", z.ZodTypeAny, {
|
|
19152
19621
|
options?: {
|
|
19153
19622
|
value: string;
|
|
19154
19623
|
label: string;
|
|
19155
19624
|
}[] | undefined;
|
|
19156
19625
|
placeholder?: string | undefined;
|
|
19626
|
+
default_value?: string | string[] | undefined;
|
|
19627
|
+
multiple?: boolean | undefined;
|
|
19157
19628
|
searchable?: boolean | undefined;
|
|
19158
19629
|
}, {
|
|
19159
19630
|
options?: {
|
|
@@ -19161,6 +19632,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19161
19632
|
label: string;
|
|
19162
19633
|
}[] | undefined;
|
|
19163
19634
|
placeholder?: string | undefined;
|
|
19635
|
+
default_value?: string | string[] | undefined;
|
|
19636
|
+
multiple?: boolean | undefined;
|
|
19164
19637
|
searchable?: boolean | undefined;
|
|
19165
19638
|
}>>;
|
|
19166
19639
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -19175,6 +19648,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19175
19648
|
label: string;
|
|
19176
19649
|
}[] | undefined;
|
|
19177
19650
|
placeholder?: string | undefined;
|
|
19651
|
+
default_value?: string | string[] | undefined;
|
|
19652
|
+
multiple?: boolean | undefined;
|
|
19178
19653
|
searchable?: boolean | undefined;
|
|
19179
19654
|
} | undefined;
|
|
19180
19655
|
sensitive?: boolean | undefined;
|
|
@@ -19192,6 +19667,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19192
19667
|
label: string;
|
|
19193
19668
|
}[] | undefined;
|
|
19194
19669
|
placeholder?: string | undefined;
|
|
19670
|
+
default_value?: string | string[] | undefined;
|
|
19671
|
+
multiple?: boolean | undefined;
|
|
19195
19672
|
searchable?: boolean | undefined;
|
|
19196
19673
|
} | undefined;
|
|
19197
19674
|
sensitive?: boolean | undefined;
|
|
@@ -19263,13 +19740,13 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19263
19740
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
19264
19741
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
19265
19742
|
}, "strip", z.ZodTypeAny, {
|
|
19743
|
+
multiple?: boolean | undefined;
|
|
19266
19744
|
accept?: string | undefined;
|
|
19267
19745
|
max_size?: number | undefined;
|
|
19268
|
-
multiple?: boolean | undefined;
|
|
19269
19746
|
}, {
|
|
19747
|
+
multiple?: boolean | undefined;
|
|
19270
19748
|
accept?: string | undefined;
|
|
19271
19749
|
max_size?: number | undefined;
|
|
19272
|
-
multiple?: boolean | undefined;
|
|
19273
19750
|
}>>;
|
|
19274
19751
|
}, "strip", z.ZodTypeAny, {
|
|
19275
19752
|
type: "FILE";
|
|
@@ -19278,9 +19755,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19278
19755
|
required?: boolean | undefined;
|
|
19279
19756
|
category?: "FIELD" | undefined;
|
|
19280
19757
|
config?: {
|
|
19758
|
+
multiple?: boolean | undefined;
|
|
19281
19759
|
accept?: string | undefined;
|
|
19282
19760
|
max_size?: number | undefined;
|
|
19283
|
-
multiple?: boolean | undefined;
|
|
19284
19761
|
} | undefined;
|
|
19285
19762
|
sensitive?: boolean | undefined;
|
|
19286
19763
|
label?: string | undefined;
|
|
@@ -19292,9 +19769,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19292
19769
|
required?: boolean | undefined;
|
|
19293
19770
|
category?: "FIELD" | undefined;
|
|
19294
19771
|
config?: {
|
|
19772
|
+
multiple?: boolean | undefined;
|
|
19295
19773
|
accept?: string | undefined;
|
|
19296
19774
|
max_size?: number | undefined;
|
|
19297
|
-
multiple?: boolean | undefined;
|
|
19298
19775
|
} | undefined;
|
|
19299
19776
|
sensitive?: boolean | undefined;
|
|
19300
19777
|
label?: string | undefined;
|
|
@@ -19926,7 +20403,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19926
20403
|
value: string;
|
|
19927
20404
|
label: string;
|
|
19928
20405
|
}[] | undefined;
|
|
20406
|
+
default_value?: string | string[] | undefined;
|
|
19929
20407
|
display?: "radio" | "checkbox" | undefined;
|
|
20408
|
+
multiple?: boolean | undefined;
|
|
19930
20409
|
} | undefined;
|
|
19931
20410
|
sensitive?: boolean | undefined;
|
|
19932
20411
|
label?: string | undefined;
|
|
@@ -19936,6 +20415,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19936
20415
|
type: "CUSTOM";
|
|
19937
20416
|
id: string;
|
|
19938
20417
|
config: {
|
|
20418
|
+
code?: string | undefined;
|
|
20419
|
+
schema?: Record<string, any> | undefined;
|
|
19939
20420
|
component?: string | undefined;
|
|
19940
20421
|
props?: Record<string, any> | undefined;
|
|
19941
20422
|
};
|
|
@@ -19973,6 +20454,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19973
20454
|
label: string;
|
|
19974
20455
|
}[] | undefined;
|
|
19975
20456
|
placeholder?: string | undefined;
|
|
20457
|
+
default_value?: string | string[] | undefined;
|
|
20458
|
+
multiple?: boolean | undefined;
|
|
19976
20459
|
searchable?: boolean | undefined;
|
|
19977
20460
|
} | undefined;
|
|
19978
20461
|
sensitive?: boolean | undefined;
|
|
@@ -19999,9 +20482,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19999
20482
|
required?: boolean | undefined;
|
|
20000
20483
|
category?: "FIELD" | undefined;
|
|
20001
20484
|
config?: {
|
|
20485
|
+
multiple?: boolean | undefined;
|
|
20002
20486
|
accept?: string | undefined;
|
|
20003
20487
|
max_size?: number | undefined;
|
|
20004
|
-
multiple?: boolean | undefined;
|
|
20005
20488
|
} | undefined;
|
|
20006
20489
|
sensitive?: boolean | undefined;
|
|
20007
20490
|
label?: string | undefined;
|
|
@@ -20287,7 +20770,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20287
20770
|
value: string;
|
|
20288
20771
|
label: string;
|
|
20289
20772
|
}[] | undefined;
|
|
20773
|
+
default_value?: string | string[] | undefined;
|
|
20290
20774
|
display?: "radio" | "checkbox" | undefined;
|
|
20775
|
+
multiple?: boolean | undefined;
|
|
20291
20776
|
} | undefined;
|
|
20292
20777
|
sensitive?: boolean | undefined;
|
|
20293
20778
|
label?: string | undefined;
|
|
@@ -20298,6 +20783,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20298
20783
|
type: "CUSTOM";
|
|
20299
20784
|
id: string;
|
|
20300
20785
|
config: {
|
|
20786
|
+
code?: string | undefined;
|
|
20787
|
+
schema?: Record<string, any> | undefined;
|
|
20301
20788
|
component?: string | undefined;
|
|
20302
20789
|
props?: Record<string, any> | undefined;
|
|
20303
20790
|
};
|
|
@@ -20334,6 +20821,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20334
20821
|
label: string;
|
|
20335
20822
|
}[] | undefined;
|
|
20336
20823
|
placeholder?: string | undefined;
|
|
20824
|
+
default_value?: string | string[] | undefined;
|
|
20825
|
+
multiple?: boolean | undefined;
|
|
20337
20826
|
searchable?: boolean | undefined;
|
|
20338
20827
|
} | undefined;
|
|
20339
20828
|
sensitive?: boolean | undefined;
|
|
@@ -20360,9 +20849,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20360
20849
|
required?: boolean | undefined;
|
|
20361
20850
|
category?: "FIELD" | undefined;
|
|
20362
20851
|
config?: {
|
|
20852
|
+
multiple?: boolean | undefined;
|
|
20363
20853
|
accept?: string | undefined;
|
|
20364
20854
|
max_size?: number | undefined;
|
|
20365
|
-
multiple?: boolean | undefined;
|
|
20366
20855
|
} | undefined;
|
|
20367
20856
|
sensitive?: boolean | undefined;
|
|
20368
20857
|
label?: string | undefined;
|
|
@@ -20654,7 +21143,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20654
21143
|
value: string;
|
|
20655
21144
|
label: string;
|
|
20656
21145
|
}[] | undefined;
|
|
21146
|
+
default_value?: string | string[] | undefined;
|
|
20657
21147
|
display?: "radio" | "checkbox" | undefined;
|
|
21148
|
+
multiple?: boolean | undefined;
|
|
20658
21149
|
} | undefined;
|
|
20659
21150
|
sensitive?: boolean | undefined;
|
|
20660
21151
|
label?: string | undefined;
|
|
@@ -20664,6 +21155,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20664
21155
|
type: "CUSTOM";
|
|
20665
21156
|
id: string;
|
|
20666
21157
|
config: {
|
|
21158
|
+
code?: string | undefined;
|
|
21159
|
+
schema?: Record<string, any> | undefined;
|
|
20667
21160
|
component?: string | undefined;
|
|
20668
21161
|
props?: Record<string, any> | undefined;
|
|
20669
21162
|
};
|
|
@@ -20701,6 +21194,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20701
21194
|
label: string;
|
|
20702
21195
|
}[] | undefined;
|
|
20703
21196
|
placeholder?: string | undefined;
|
|
21197
|
+
default_value?: string | string[] | undefined;
|
|
21198
|
+
multiple?: boolean | undefined;
|
|
20704
21199
|
searchable?: boolean | undefined;
|
|
20705
21200
|
} | undefined;
|
|
20706
21201
|
sensitive?: boolean | undefined;
|
|
@@ -20727,9 +21222,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20727
21222
|
required?: boolean | undefined;
|
|
20728
21223
|
category?: "FIELD" | undefined;
|
|
20729
21224
|
config?: {
|
|
21225
|
+
multiple?: boolean | undefined;
|
|
20730
21226
|
accept?: string | undefined;
|
|
20731
21227
|
max_size?: number | undefined;
|
|
20732
|
-
multiple?: boolean | undefined;
|
|
20733
21228
|
} | undefined;
|
|
20734
21229
|
sensitive?: boolean | undefined;
|
|
20735
21230
|
label?: string | undefined;
|
|
@@ -21024,7 +21519,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
21024
21519
|
value: string;
|
|
21025
21520
|
label: string;
|
|
21026
21521
|
}[] | undefined;
|
|
21522
|
+
default_value?: string | string[] | undefined;
|
|
21027
21523
|
display?: "radio" | "checkbox" | undefined;
|
|
21524
|
+
multiple?: boolean | undefined;
|
|
21028
21525
|
} | undefined;
|
|
21029
21526
|
sensitive?: boolean | undefined;
|
|
21030
21527
|
label?: string | undefined;
|
|
@@ -21035,6 +21532,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
21035
21532
|
type: "CUSTOM";
|
|
21036
21533
|
id: string;
|
|
21037
21534
|
config: {
|
|
21535
|
+
code?: string | undefined;
|
|
21536
|
+
schema?: Record<string, any> | undefined;
|
|
21038
21537
|
component?: string | undefined;
|
|
21039
21538
|
props?: Record<string, any> | undefined;
|
|
21040
21539
|
};
|
|
@@ -21071,6 +21570,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
21071
21570
|
label: string;
|
|
21072
21571
|
}[] | undefined;
|
|
21073
21572
|
placeholder?: string | undefined;
|
|
21573
|
+
default_value?: string | string[] | undefined;
|
|
21574
|
+
multiple?: boolean | undefined;
|
|
21074
21575
|
searchable?: boolean | undefined;
|
|
21075
21576
|
} | undefined;
|
|
21076
21577
|
sensitive?: boolean | undefined;
|
|
@@ -21097,9 +21598,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
21097
21598
|
required?: boolean | undefined;
|
|
21098
21599
|
category?: "FIELD" | undefined;
|
|
21099
21600
|
config?: {
|
|
21601
|
+
multiple?: boolean | undefined;
|
|
21100
21602
|
accept?: string | undefined;
|
|
21101
21603
|
max_size?: number | undefined;
|
|
21102
|
-
multiple?: boolean | undefined;
|
|
21103
21604
|
} | undefined;
|
|
21104
21605
|
sensitive?: boolean | undefined;
|
|
21105
21606
|
label?: string | undefined;
|
|
@@ -22006,18 +22507,27 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22006
22507
|
"radio",
|
|
22007
22508
|
"checkbox"
|
|
22008
22509
|
]>>;
|
|
22510
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
22511
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
22512
|
+
z.ZodString,
|
|
22513
|
+
z.ZodArray<z.ZodString, "many">
|
|
22514
|
+
]>>;
|
|
22009
22515
|
}, "strip", z.ZodTypeAny, {
|
|
22010
22516
|
options?: {
|
|
22011
22517
|
value: string;
|
|
22012
22518
|
label: string;
|
|
22013
22519
|
}[] | undefined;
|
|
22520
|
+
default_value?: string | string[] | undefined;
|
|
22014
22521
|
display?: "radio" | "checkbox" | undefined;
|
|
22522
|
+
multiple?: boolean | undefined;
|
|
22015
22523
|
}, {
|
|
22016
22524
|
options?: {
|
|
22017
22525
|
value: string;
|
|
22018
22526
|
label: string;
|
|
22019
22527
|
}[] | undefined;
|
|
22528
|
+
default_value?: string | string[] | undefined;
|
|
22020
22529
|
display?: "radio" | "checkbox" | undefined;
|
|
22530
|
+
multiple?: boolean | undefined;
|
|
22021
22531
|
}>>;
|
|
22022
22532
|
}, "strip", z.ZodTypeAny, {
|
|
22023
22533
|
type: "CHOICE";
|
|
@@ -22030,7 +22540,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22030
22540
|
value: string;
|
|
22031
22541
|
label: string;
|
|
22032
22542
|
}[] | undefined;
|
|
22543
|
+
default_value?: string | string[] | undefined;
|
|
22033
22544
|
display?: "radio" | "checkbox" | undefined;
|
|
22545
|
+
multiple?: boolean | undefined;
|
|
22034
22546
|
} | undefined;
|
|
22035
22547
|
sensitive?: boolean | undefined;
|
|
22036
22548
|
label?: string | undefined;
|
|
@@ -22046,7 +22558,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22046
22558
|
value: string;
|
|
22047
22559
|
label: string;
|
|
22048
22560
|
}[] | undefined;
|
|
22561
|
+
default_value?: string | string[] | undefined;
|
|
22049
22562
|
display?: "radio" | "checkbox" | undefined;
|
|
22563
|
+
multiple?: boolean | undefined;
|
|
22050
22564
|
} | undefined;
|
|
22051
22565
|
sensitive?: boolean | undefined;
|
|
22052
22566
|
label?: string | undefined;
|
|
@@ -22069,10 +22583,16 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22069
22583
|
config: z.ZodObject<{
|
|
22070
22584
|
component: z.ZodOptional<z.ZodString>;
|
|
22071
22585
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
22586
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
22587
|
+
code: z.ZodOptional<z.ZodString>;
|
|
22072
22588
|
}, "strip", z.ZodTypeAny, {
|
|
22589
|
+
code?: string | undefined;
|
|
22590
|
+
schema?: Record<string, any> | undefined;
|
|
22073
22591
|
component?: string | undefined;
|
|
22074
22592
|
props?: Record<string, any> | undefined;
|
|
22075
22593
|
}, {
|
|
22594
|
+
code?: string | undefined;
|
|
22595
|
+
schema?: Record<string, any> | undefined;
|
|
22076
22596
|
component?: string | undefined;
|
|
22077
22597
|
props?: Record<string, any> | undefined;
|
|
22078
22598
|
}>;
|
|
@@ -22080,6 +22600,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22080
22600
|
type: "CUSTOM";
|
|
22081
22601
|
id: string;
|
|
22082
22602
|
config: {
|
|
22603
|
+
code?: string | undefined;
|
|
22604
|
+
schema?: Record<string, any> | undefined;
|
|
22083
22605
|
component?: string | undefined;
|
|
22084
22606
|
props?: Record<string, any> | undefined;
|
|
22085
22607
|
};
|
|
@@ -22094,6 +22616,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22094
22616
|
type: "CUSTOM";
|
|
22095
22617
|
id: string;
|
|
22096
22618
|
config: {
|
|
22619
|
+
code?: string | undefined;
|
|
22620
|
+
schema?: Record<string, any> | undefined;
|
|
22097
22621
|
component?: string | undefined;
|
|
22098
22622
|
props?: Record<string, any> | undefined;
|
|
22099
22623
|
};
|
|
@@ -22186,12 +22710,19 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22186
22710
|
}>, "many">>;
|
|
22187
22711
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
22188
22712
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
22713
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
22714
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
22715
|
+
z.ZodString,
|
|
22716
|
+
z.ZodArray<z.ZodString, "many">
|
|
22717
|
+
]>>;
|
|
22189
22718
|
}, "strip", z.ZodTypeAny, {
|
|
22190
22719
|
options?: {
|
|
22191
22720
|
value: string;
|
|
22192
22721
|
label: string;
|
|
22193
22722
|
}[] | undefined;
|
|
22194
22723
|
placeholder?: string | undefined;
|
|
22724
|
+
default_value?: string | string[] | undefined;
|
|
22725
|
+
multiple?: boolean | undefined;
|
|
22195
22726
|
searchable?: boolean | undefined;
|
|
22196
22727
|
}, {
|
|
22197
22728
|
options?: {
|
|
@@ -22199,6 +22730,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22199
22730
|
label: string;
|
|
22200
22731
|
}[] | undefined;
|
|
22201
22732
|
placeholder?: string | undefined;
|
|
22733
|
+
default_value?: string | string[] | undefined;
|
|
22734
|
+
multiple?: boolean | undefined;
|
|
22202
22735
|
searchable?: boolean | undefined;
|
|
22203
22736
|
}>>;
|
|
22204
22737
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -22213,6 +22746,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22213
22746
|
label: string;
|
|
22214
22747
|
}[] | undefined;
|
|
22215
22748
|
placeholder?: string | undefined;
|
|
22749
|
+
default_value?: string | string[] | undefined;
|
|
22750
|
+
multiple?: boolean | undefined;
|
|
22216
22751
|
searchable?: boolean | undefined;
|
|
22217
22752
|
} | undefined;
|
|
22218
22753
|
sensitive?: boolean | undefined;
|
|
@@ -22230,6 +22765,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22230
22765
|
label: string;
|
|
22231
22766
|
}[] | undefined;
|
|
22232
22767
|
placeholder?: string | undefined;
|
|
22768
|
+
default_value?: string | string[] | undefined;
|
|
22769
|
+
multiple?: boolean | undefined;
|
|
22233
22770
|
searchable?: boolean | undefined;
|
|
22234
22771
|
} | undefined;
|
|
22235
22772
|
sensitive?: boolean | undefined;
|
|
@@ -22301,13 +22838,13 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22301
22838
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
22302
22839
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
22303
22840
|
}, "strip", z.ZodTypeAny, {
|
|
22841
|
+
multiple?: boolean | undefined;
|
|
22304
22842
|
accept?: string | undefined;
|
|
22305
22843
|
max_size?: number | undefined;
|
|
22306
|
-
multiple?: boolean | undefined;
|
|
22307
22844
|
}, {
|
|
22845
|
+
multiple?: boolean | undefined;
|
|
22308
22846
|
accept?: string | undefined;
|
|
22309
22847
|
max_size?: number | undefined;
|
|
22310
|
-
multiple?: boolean | undefined;
|
|
22311
22848
|
}>>;
|
|
22312
22849
|
}, "strip", z.ZodTypeAny, {
|
|
22313
22850
|
type: "FILE";
|
|
@@ -22316,9 +22853,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22316
22853
|
required?: boolean | undefined;
|
|
22317
22854
|
category?: "FIELD" | undefined;
|
|
22318
22855
|
config?: {
|
|
22856
|
+
multiple?: boolean | undefined;
|
|
22319
22857
|
accept?: string | undefined;
|
|
22320
22858
|
max_size?: number | undefined;
|
|
22321
|
-
multiple?: boolean | undefined;
|
|
22322
22859
|
} | undefined;
|
|
22323
22860
|
sensitive?: boolean | undefined;
|
|
22324
22861
|
label?: string | undefined;
|
|
@@ -22330,9 +22867,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22330
22867
|
required?: boolean | undefined;
|
|
22331
22868
|
category?: "FIELD" | undefined;
|
|
22332
22869
|
config?: {
|
|
22870
|
+
multiple?: boolean | undefined;
|
|
22333
22871
|
accept?: string | undefined;
|
|
22334
22872
|
max_size?: number | undefined;
|
|
22335
|
-
multiple?: boolean | undefined;
|
|
22336
22873
|
} | undefined;
|
|
22337
22874
|
sensitive?: boolean | undefined;
|
|
22338
22875
|
label?: string | undefined;
|
|
@@ -22964,7 +23501,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22964
23501
|
value: string;
|
|
22965
23502
|
label: string;
|
|
22966
23503
|
}[] | undefined;
|
|
23504
|
+
default_value?: string | string[] | undefined;
|
|
22967
23505
|
display?: "radio" | "checkbox" | undefined;
|
|
23506
|
+
multiple?: boolean | undefined;
|
|
22968
23507
|
} | undefined;
|
|
22969
23508
|
sensitive?: boolean | undefined;
|
|
22970
23509
|
label?: string | undefined;
|
|
@@ -22974,6 +23513,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22974
23513
|
type: "CUSTOM";
|
|
22975
23514
|
id: string;
|
|
22976
23515
|
config: {
|
|
23516
|
+
code?: string | undefined;
|
|
23517
|
+
schema?: Record<string, any> | undefined;
|
|
22977
23518
|
component?: string | undefined;
|
|
22978
23519
|
props?: Record<string, any> | undefined;
|
|
22979
23520
|
};
|
|
@@ -23011,6 +23552,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23011
23552
|
label: string;
|
|
23012
23553
|
}[] | undefined;
|
|
23013
23554
|
placeholder?: string | undefined;
|
|
23555
|
+
default_value?: string | string[] | undefined;
|
|
23556
|
+
multiple?: boolean | undefined;
|
|
23014
23557
|
searchable?: boolean | undefined;
|
|
23015
23558
|
} | undefined;
|
|
23016
23559
|
sensitive?: boolean | undefined;
|
|
@@ -23037,9 +23580,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23037
23580
|
required?: boolean | undefined;
|
|
23038
23581
|
category?: "FIELD" | undefined;
|
|
23039
23582
|
config?: {
|
|
23583
|
+
multiple?: boolean | undefined;
|
|
23040
23584
|
accept?: string | undefined;
|
|
23041
23585
|
max_size?: number | undefined;
|
|
23042
|
-
multiple?: boolean | undefined;
|
|
23043
23586
|
} | undefined;
|
|
23044
23587
|
sensitive?: boolean | undefined;
|
|
23045
23588
|
label?: string | undefined;
|
|
@@ -23325,7 +23868,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23325
23868
|
value: string;
|
|
23326
23869
|
label: string;
|
|
23327
23870
|
}[] | undefined;
|
|
23871
|
+
default_value?: string | string[] | undefined;
|
|
23328
23872
|
display?: "radio" | "checkbox" | undefined;
|
|
23873
|
+
multiple?: boolean | undefined;
|
|
23329
23874
|
} | undefined;
|
|
23330
23875
|
sensitive?: boolean | undefined;
|
|
23331
23876
|
label?: string | undefined;
|
|
@@ -23336,6 +23881,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23336
23881
|
type: "CUSTOM";
|
|
23337
23882
|
id: string;
|
|
23338
23883
|
config: {
|
|
23884
|
+
code?: string | undefined;
|
|
23885
|
+
schema?: Record<string, any> | undefined;
|
|
23339
23886
|
component?: string | undefined;
|
|
23340
23887
|
props?: Record<string, any> | undefined;
|
|
23341
23888
|
};
|
|
@@ -23372,6 +23919,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23372
23919
|
label: string;
|
|
23373
23920
|
}[] | undefined;
|
|
23374
23921
|
placeholder?: string | undefined;
|
|
23922
|
+
default_value?: string | string[] | undefined;
|
|
23923
|
+
multiple?: boolean | undefined;
|
|
23375
23924
|
searchable?: boolean | undefined;
|
|
23376
23925
|
} | undefined;
|
|
23377
23926
|
sensitive?: boolean | undefined;
|
|
@@ -23398,9 +23947,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23398
23947
|
required?: boolean | undefined;
|
|
23399
23948
|
category?: "FIELD" | undefined;
|
|
23400
23949
|
config?: {
|
|
23950
|
+
multiple?: boolean | undefined;
|
|
23401
23951
|
accept?: string | undefined;
|
|
23402
23952
|
max_size?: number | undefined;
|
|
23403
|
-
multiple?: boolean | undefined;
|
|
23404
23953
|
} | undefined;
|
|
23405
23954
|
sensitive?: boolean | undefined;
|
|
23406
23955
|
label?: string | undefined;
|
|
@@ -23692,7 +24241,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23692
24241
|
value: string;
|
|
23693
24242
|
label: string;
|
|
23694
24243
|
}[] | undefined;
|
|
24244
|
+
default_value?: string | string[] | undefined;
|
|
23695
24245
|
display?: "radio" | "checkbox" | undefined;
|
|
24246
|
+
multiple?: boolean | undefined;
|
|
23696
24247
|
} | undefined;
|
|
23697
24248
|
sensitive?: boolean | undefined;
|
|
23698
24249
|
label?: string | undefined;
|
|
@@ -23702,6 +24253,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23702
24253
|
type: "CUSTOM";
|
|
23703
24254
|
id: string;
|
|
23704
24255
|
config: {
|
|
24256
|
+
code?: string | undefined;
|
|
24257
|
+
schema?: Record<string, any> | undefined;
|
|
23705
24258
|
component?: string | undefined;
|
|
23706
24259
|
props?: Record<string, any> | undefined;
|
|
23707
24260
|
};
|
|
@@ -23739,6 +24292,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23739
24292
|
label: string;
|
|
23740
24293
|
}[] | undefined;
|
|
23741
24294
|
placeholder?: string | undefined;
|
|
24295
|
+
default_value?: string | string[] | undefined;
|
|
24296
|
+
multiple?: boolean | undefined;
|
|
23742
24297
|
searchable?: boolean | undefined;
|
|
23743
24298
|
} | undefined;
|
|
23744
24299
|
sensitive?: boolean | undefined;
|
|
@@ -23765,9 +24320,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23765
24320
|
required?: boolean | undefined;
|
|
23766
24321
|
category?: "FIELD" | undefined;
|
|
23767
24322
|
config?: {
|
|
24323
|
+
multiple?: boolean | undefined;
|
|
23768
24324
|
accept?: string | undefined;
|
|
23769
24325
|
max_size?: number | undefined;
|
|
23770
|
-
multiple?: boolean | undefined;
|
|
23771
24326
|
} | undefined;
|
|
23772
24327
|
sensitive?: boolean | undefined;
|
|
23773
24328
|
label?: string | undefined;
|
|
@@ -24062,7 +24617,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24062
24617
|
value: string;
|
|
24063
24618
|
label: string;
|
|
24064
24619
|
}[] | undefined;
|
|
24620
|
+
default_value?: string | string[] | undefined;
|
|
24065
24621
|
display?: "radio" | "checkbox" | undefined;
|
|
24622
|
+
multiple?: boolean | undefined;
|
|
24066
24623
|
} | undefined;
|
|
24067
24624
|
sensitive?: boolean | undefined;
|
|
24068
24625
|
label?: string | undefined;
|
|
@@ -24073,6 +24630,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24073
24630
|
type: "CUSTOM";
|
|
24074
24631
|
id: string;
|
|
24075
24632
|
config: {
|
|
24633
|
+
code?: string | undefined;
|
|
24634
|
+
schema?: Record<string, any> | undefined;
|
|
24076
24635
|
component?: string | undefined;
|
|
24077
24636
|
props?: Record<string, any> | undefined;
|
|
24078
24637
|
};
|
|
@@ -24109,6 +24668,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24109
24668
|
label: string;
|
|
24110
24669
|
}[] | undefined;
|
|
24111
24670
|
placeholder?: string | undefined;
|
|
24671
|
+
default_value?: string | string[] | undefined;
|
|
24672
|
+
multiple?: boolean | undefined;
|
|
24112
24673
|
searchable?: boolean | undefined;
|
|
24113
24674
|
} | undefined;
|
|
24114
24675
|
sensitive?: boolean | undefined;
|
|
@@ -24135,9 +24696,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24135
24696
|
required?: boolean | undefined;
|
|
24136
24697
|
category?: "FIELD" | undefined;
|
|
24137
24698
|
config?: {
|
|
24699
|
+
multiple?: boolean | undefined;
|
|
24138
24700
|
accept?: string | undefined;
|
|
24139
24701
|
max_size?: number | undefined;
|
|
24140
|
-
multiple?: boolean | undefined;
|
|
24141
24702
|
} | undefined;
|
|
24142
24703
|
sensitive?: boolean | undefined;
|
|
24143
24704
|
label?: string | undefined;
|
|
@@ -24381,6 +24942,16 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24381
24942
|
}, {
|
|
24382
24943
|
css?: string | undefined;
|
|
24383
24944
|
}>>;
|
|
24945
|
+
links: z.ZodOptional<z.ZodObject<{
|
|
24946
|
+
sdkSrc: z.ZodOptional<z.ZodString>;
|
|
24947
|
+
sdk_src: z.ZodOptional<z.ZodString>;
|
|
24948
|
+
}, "strip", z.ZodTypeAny, {
|
|
24949
|
+
sdkSrc?: string | undefined;
|
|
24950
|
+
sdk_src?: string | undefined;
|
|
24951
|
+
}, {
|
|
24952
|
+
sdkSrc?: string | undefined;
|
|
24953
|
+
sdk_src?: string | undefined;
|
|
24954
|
+
}>>;
|
|
24384
24955
|
}, "strip", z.ZodTypeAny, {
|
|
24385
24956
|
name: string;
|
|
24386
24957
|
style?: {
|
|
@@ -24591,7 +25162,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24591
25162
|
value: string;
|
|
24592
25163
|
label: string;
|
|
24593
25164
|
}[] | undefined;
|
|
25165
|
+
default_value?: string | string[] | undefined;
|
|
24594
25166
|
display?: "radio" | "checkbox" | undefined;
|
|
25167
|
+
multiple?: boolean | undefined;
|
|
24595
25168
|
} | undefined;
|
|
24596
25169
|
sensitive?: boolean | undefined;
|
|
24597
25170
|
label?: string | undefined;
|
|
@@ -24601,6 +25174,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24601
25174
|
type: "CUSTOM";
|
|
24602
25175
|
id: string;
|
|
24603
25176
|
config: {
|
|
25177
|
+
code?: string | undefined;
|
|
25178
|
+
schema?: Record<string, any> | undefined;
|
|
24604
25179
|
component?: string | undefined;
|
|
24605
25180
|
props?: Record<string, any> | undefined;
|
|
24606
25181
|
};
|
|
@@ -24638,6 +25213,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24638
25213
|
label: string;
|
|
24639
25214
|
}[] | undefined;
|
|
24640
25215
|
placeholder?: string | undefined;
|
|
25216
|
+
default_value?: string | string[] | undefined;
|
|
25217
|
+
multiple?: boolean | undefined;
|
|
24641
25218
|
searchable?: boolean | undefined;
|
|
24642
25219
|
} | undefined;
|
|
24643
25220
|
sensitive?: boolean | undefined;
|
|
@@ -24664,9 +25241,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24664
25241
|
required?: boolean | undefined;
|
|
24665
25242
|
category?: "FIELD" | undefined;
|
|
24666
25243
|
config?: {
|
|
25244
|
+
multiple?: boolean | undefined;
|
|
24667
25245
|
accept?: string | undefined;
|
|
24668
25246
|
max_size?: number | undefined;
|
|
24669
|
-
multiple?: boolean | undefined;
|
|
24670
25247
|
} | undefined;
|
|
24671
25248
|
sensitive?: boolean | undefined;
|
|
24672
25249
|
label?: string | undefined;
|
|
@@ -24816,6 +25393,10 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24816
25393
|
flow_id?: string | undefined;
|
|
24817
25394
|
} | undefined;
|
|
24818
25395
|
} | undefined;
|
|
25396
|
+
links?: {
|
|
25397
|
+
sdkSrc?: string | undefined;
|
|
25398
|
+
sdk_src?: string | undefined;
|
|
25399
|
+
} | undefined;
|
|
24819
25400
|
messages?: {
|
|
24820
25401
|
custom?: Record<string, any> | undefined;
|
|
24821
25402
|
errors?: Record<string, any> | undefined;
|
|
@@ -25030,7 +25611,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
25030
25611
|
value: string;
|
|
25031
25612
|
label: string;
|
|
25032
25613
|
}[] | undefined;
|
|
25614
|
+
default_value?: string | string[] | undefined;
|
|
25033
25615
|
display?: "radio" | "checkbox" | undefined;
|
|
25616
|
+
multiple?: boolean | undefined;
|
|
25034
25617
|
} | undefined;
|
|
25035
25618
|
sensitive?: boolean | undefined;
|
|
25036
25619
|
label?: string | undefined;
|
|
@@ -25041,6 +25624,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
25041
25624
|
type: "CUSTOM";
|
|
25042
25625
|
id: string;
|
|
25043
25626
|
config: {
|
|
25627
|
+
code?: string | undefined;
|
|
25628
|
+
schema?: Record<string, any> | undefined;
|
|
25044
25629
|
component?: string | undefined;
|
|
25045
25630
|
props?: Record<string, any> | undefined;
|
|
25046
25631
|
};
|
|
@@ -25077,6 +25662,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
25077
25662
|
label: string;
|
|
25078
25663
|
}[] | undefined;
|
|
25079
25664
|
placeholder?: string | undefined;
|
|
25665
|
+
default_value?: string | string[] | undefined;
|
|
25666
|
+
multiple?: boolean | undefined;
|
|
25080
25667
|
searchable?: boolean | undefined;
|
|
25081
25668
|
} | undefined;
|
|
25082
25669
|
sensitive?: boolean | undefined;
|
|
@@ -25103,9 +25690,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
25103
25690
|
required?: boolean | undefined;
|
|
25104
25691
|
category?: "FIELD" | undefined;
|
|
25105
25692
|
config?: {
|
|
25693
|
+
multiple?: boolean | undefined;
|
|
25106
25694
|
accept?: string | undefined;
|
|
25107
25695
|
max_size?: number | undefined;
|
|
25108
|
-
multiple?: boolean | undefined;
|
|
25109
25696
|
} | undefined;
|
|
25110
25697
|
sensitive?: boolean | undefined;
|
|
25111
25698
|
label?: string | undefined;
|
|
@@ -25256,6 +25843,10 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
25256
25843
|
flow_id?: string | undefined;
|
|
25257
25844
|
} | undefined;
|
|
25258
25845
|
} | undefined;
|
|
25846
|
+
links?: {
|
|
25847
|
+
sdkSrc?: string | undefined;
|
|
25848
|
+
sdk_src?: string | undefined;
|
|
25849
|
+
} | undefined;
|
|
25259
25850
|
messages?: {
|
|
25260
25851
|
custom?: Record<string, any> | undefined;
|
|
25261
25852
|
errors?: Record<string, any> | undefined;
|
|
@@ -26029,18 +26620,27 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26029
26620
|
"radio",
|
|
26030
26621
|
"checkbox"
|
|
26031
26622
|
]>>;
|
|
26623
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
26624
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
26625
|
+
z.ZodString,
|
|
26626
|
+
z.ZodArray<z.ZodString, "many">
|
|
26627
|
+
]>>;
|
|
26032
26628
|
}, "strip", z.ZodTypeAny, {
|
|
26033
26629
|
options?: {
|
|
26034
26630
|
value: string;
|
|
26035
26631
|
label: string;
|
|
26036
26632
|
}[] | undefined;
|
|
26633
|
+
default_value?: string | string[] | undefined;
|
|
26037
26634
|
display?: "radio" | "checkbox" | undefined;
|
|
26635
|
+
multiple?: boolean | undefined;
|
|
26038
26636
|
}, {
|
|
26039
26637
|
options?: {
|
|
26040
26638
|
value: string;
|
|
26041
26639
|
label: string;
|
|
26042
26640
|
}[] | undefined;
|
|
26641
|
+
default_value?: string | string[] | undefined;
|
|
26043
26642
|
display?: "radio" | "checkbox" | undefined;
|
|
26643
|
+
multiple?: boolean | undefined;
|
|
26044
26644
|
}>>;
|
|
26045
26645
|
}, "strip", z.ZodTypeAny, {
|
|
26046
26646
|
type: "CHOICE";
|
|
@@ -26053,7 +26653,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26053
26653
|
value: string;
|
|
26054
26654
|
label: string;
|
|
26055
26655
|
}[] | undefined;
|
|
26656
|
+
default_value?: string | string[] | undefined;
|
|
26056
26657
|
display?: "radio" | "checkbox" | undefined;
|
|
26658
|
+
multiple?: boolean | undefined;
|
|
26057
26659
|
} | undefined;
|
|
26058
26660
|
sensitive?: boolean | undefined;
|
|
26059
26661
|
label?: string | undefined;
|
|
@@ -26069,7 +26671,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26069
26671
|
value: string;
|
|
26070
26672
|
label: string;
|
|
26071
26673
|
}[] | undefined;
|
|
26674
|
+
default_value?: string | string[] | undefined;
|
|
26072
26675
|
display?: "radio" | "checkbox" | undefined;
|
|
26676
|
+
multiple?: boolean | undefined;
|
|
26073
26677
|
} | undefined;
|
|
26074
26678
|
sensitive?: boolean | undefined;
|
|
26075
26679
|
label?: string | undefined;
|
|
@@ -26092,10 +26696,16 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26092
26696
|
config: z.ZodObject<{
|
|
26093
26697
|
component: z.ZodOptional<z.ZodString>;
|
|
26094
26698
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
26699
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
26700
|
+
code: z.ZodOptional<z.ZodString>;
|
|
26095
26701
|
}, "strip", z.ZodTypeAny, {
|
|
26702
|
+
code?: string | undefined;
|
|
26703
|
+
schema?: Record<string, any> | undefined;
|
|
26096
26704
|
component?: string | undefined;
|
|
26097
26705
|
props?: Record<string, any> | undefined;
|
|
26098
26706
|
}, {
|
|
26707
|
+
code?: string | undefined;
|
|
26708
|
+
schema?: Record<string, any> | undefined;
|
|
26099
26709
|
component?: string | undefined;
|
|
26100
26710
|
props?: Record<string, any> | undefined;
|
|
26101
26711
|
}>;
|
|
@@ -26103,6 +26713,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26103
26713
|
type: "CUSTOM";
|
|
26104
26714
|
id: string;
|
|
26105
26715
|
config: {
|
|
26716
|
+
code?: string | undefined;
|
|
26717
|
+
schema?: Record<string, any> | undefined;
|
|
26106
26718
|
component?: string | undefined;
|
|
26107
26719
|
props?: Record<string, any> | undefined;
|
|
26108
26720
|
};
|
|
@@ -26117,6 +26729,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26117
26729
|
type: "CUSTOM";
|
|
26118
26730
|
id: string;
|
|
26119
26731
|
config: {
|
|
26732
|
+
code?: string | undefined;
|
|
26733
|
+
schema?: Record<string, any> | undefined;
|
|
26120
26734
|
component?: string | undefined;
|
|
26121
26735
|
props?: Record<string, any> | undefined;
|
|
26122
26736
|
};
|
|
@@ -26209,12 +26823,19 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26209
26823
|
}>, "many">>;
|
|
26210
26824
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
26211
26825
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
26826
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
26827
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
26828
|
+
z.ZodString,
|
|
26829
|
+
z.ZodArray<z.ZodString, "many">
|
|
26830
|
+
]>>;
|
|
26212
26831
|
}, "strip", z.ZodTypeAny, {
|
|
26213
26832
|
options?: {
|
|
26214
26833
|
value: string;
|
|
26215
26834
|
label: string;
|
|
26216
26835
|
}[] | undefined;
|
|
26217
26836
|
placeholder?: string | undefined;
|
|
26837
|
+
default_value?: string | string[] | undefined;
|
|
26838
|
+
multiple?: boolean | undefined;
|
|
26218
26839
|
searchable?: boolean | undefined;
|
|
26219
26840
|
}, {
|
|
26220
26841
|
options?: {
|
|
@@ -26222,6 +26843,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26222
26843
|
label: string;
|
|
26223
26844
|
}[] | undefined;
|
|
26224
26845
|
placeholder?: string | undefined;
|
|
26846
|
+
default_value?: string | string[] | undefined;
|
|
26847
|
+
multiple?: boolean | undefined;
|
|
26225
26848
|
searchable?: boolean | undefined;
|
|
26226
26849
|
}>>;
|
|
26227
26850
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -26236,6 +26859,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26236
26859
|
label: string;
|
|
26237
26860
|
}[] | undefined;
|
|
26238
26861
|
placeholder?: string | undefined;
|
|
26862
|
+
default_value?: string | string[] | undefined;
|
|
26863
|
+
multiple?: boolean | undefined;
|
|
26239
26864
|
searchable?: boolean | undefined;
|
|
26240
26865
|
} | undefined;
|
|
26241
26866
|
sensitive?: boolean | undefined;
|
|
@@ -26253,6 +26878,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26253
26878
|
label: string;
|
|
26254
26879
|
}[] | undefined;
|
|
26255
26880
|
placeholder?: string | undefined;
|
|
26881
|
+
default_value?: string | string[] | undefined;
|
|
26882
|
+
multiple?: boolean | undefined;
|
|
26256
26883
|
searchable?: boolean | undefined;
|
|
26257
26884
|
} | undefined;
|
|
26258
26885
|
sensitive?: boolean | undefined;
|
|
@@ -26324,13 +26951,13 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26324
26951
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
26325
26952
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
26326
26953
|
}, "strip", z.ZodTypeAny, {
|
|
26954
|
+
multiple?: boolean | undefined;
|
|
26327
26955
|
accept?: string | undefined;
|
|
26328
26956
|
max_size?: number | undefined;
|
|
26329
|
-
multiple?: boolean | undefined;
|
|
26330
26957
|
}, {
|
|
26958
|
+
multiple?: boolean | undefined;
|
|
26331
26959
|
accept?: string | undefined;
|
|
26332
26960
|
max_size?: number | undefined;
|
|
26333
|
-
multiple?: boolean | undefined;
|
|
26334
26961
|
}>>;
|
|
26335
26962
|
}, "strip", z.ZodTypeAny, {
|
|
26336
26963
|
type: "FILE";
|
|
@@ -26339,9 +26966,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26339
26966
|
required?: boolean | undefined;
|
|
26340
26967
|
category?: "FIELD" | undefined;
|
|
26341
26968
|
config?: {
|
|
26969
|
+
multiple?: boolean | undefined;
|
|
26342
26970
|
accept?: string | undefined;
|
|
26343
26971
|
max_size?: number | undefined;
|
|
26344
|
-
multiple?: boolean | undefined;
|
|
26345
26972
|
} | undefined;
|
|
26346
26973
|
sensitive?: boolean | undefined;
|
|
26347
26974
|
label?: string | undefined;
|
|
@@ -26353,9 +26980,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26353
26980
|
required?: boolean | undefined;
|
|
26354
26981
|
category?: "FIELD" | undefined;
|
|
26355
26982
|
config?: {
|
|
26983
|
+
multiple?: boolean | undefined;
|
|
26356
26984
|
accept?: string | undefined;
|
|
26357
26985
|
max_size?: number | undefined;
|
|
26358
|
-
multiple?: boolean | undefined;
|
|
26359
26986
|
} | undefined;
|
|
26360
26987
|
sensitive?: boolean | undefined;
|
|
26361
26988
|
label?: string | undefined;
|
|
@@ -26987,7 +27614,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26987
27614
|
value: string;
|
|
26988
27615
|
label: string;
|
|
26989
27616
|
}[] | undefined;
|
|
27617
|
+
default_value?: string | string[] | undefined;
|
|
26990
27618
|
display?: "radio" | "checkbox" | undefined;
|
|
27619
|
+
multiple?: boolean | undefined;
|
|
26991
27620
|
} | undefined;
|
|
26992
27621
|
sensitive?: boolean | undefined;
|
|
26993
27622
|
label?: string | undefined;
|
|
@@ -26997,6 +27626,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26997
27626
|
type: "CUSTOM";
|
|
26998
27627
|
id: string;
|
|
26999
27628
|
config: {
|
|
27629
|
+
code?: string | undefined;
|
|
27630
|
+
schema?: Record<string, any> | undefined;
|
|
27000
27631
|
component?: string | undefined;
|
|
27001
27632
|
props?: Record<string, any> | undefined;
|
|
27002
27633
|
};
|
|
@@ -27034,6 +27665,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27034
27665
|
label: string;
|
|
27035
27666
|
}[] | undefined;
|
|
27036
27667
|
placeholder?: string | undefined;
|
|
27668
|
+
default_value?: string | string[] | undefined;
|
|
27669
|
+
multiple?: boolean | undefined;
|
|
27037
27670
|
searchable?: boolean | undefined;
|
|
27038
27671
|
} | undefined;
|
|
27039
27672
|
sensitive?: boolean | undefined;
|
|
@@ -27060,9 +27693,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27060
27693
|
required?: boolean | undefined;
|
|
27061
27694
|
category?: "FIELD" | undefined;
|
|
27062
27695
|
config?: {
|
|
27696
|
+
multiple?: boolean | undefined;
|
|
27063
27697
|
accept?: string | undefined;
|
|
27064
27698
|
max_size?: number | undefined;
|
|
27065
|
-
multiple?: boolean | undefined;
|
|
27066
27699
|
} | undefined;
|
|
27067
27700
|
sensitive?: boolean | undefined;
|
|
27068
27701
|
label?: string | undefined;
|
|
@@ -27348,7 +27981,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27348
27981
|
value: string;
|
|
27349
27982
|
label: string;
|
|
27350
27983
|
}[] | undefined;
|
|
27984
|
+
default_value?: string | string[] | undefined;
|
|
27351
27985
|
display?: "radio" | "checkbox" | undefined;
|
|
27986
|
+
multiple?: boolean | undefined;
|
|
27352
27987
|
} | undefined;
|
|
27353
27988
|
sensitive?: boolean | undefined;
|
|
27354
27989
|
label?: string | undefined;
|
|
@@ -27359,6 +27994,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27359
27994
|
type: "CUSTOM";
|
|
27360
27995
|
id: string;
|
|
27361
27996
|
config: {
|
|
27997
|
+
code?: string | undefined;
|
|
27998
|
+
schema?: Record<string, any> | undefined;
|
|
27362
27999
|
component?: string | undefined;
|
|
27363
28000
|
props?: Record<string, any> | undefined;
|
|
27364
28001
|
};
|
|
@@ -27395,6 +28032,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27395
28032
|
label: string;
|
|
27396
28033
|
}[] | undefined;
|
|
27397
28034
|
placeholder?: string | undefined;
|
|
28035
|
+
default_value?: string | string[] | undefined;
|
|
28036
|
+
multiple?: boolean | undefined;
|
|
27398
28037
|
searchable?: boolean | undefined;
|
|
27399
28038
|
} | undefined;
|
|
27400
28039
|
sensitive?: boolean | undefined;
|
|
@@ -27421,9 +28060,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27421
28060
|
required?: boolean | undefined;
|
|
27422
28061
|
category?: "FIELD" | undefined;
|
|
27423
28062
|
config?: {
|
|
28063
|
+
multiple?: boolean | undefined;
|
|
27424
28064
|
accept?: string | undefined;
|
|
27425
28065
|
max_size?: number | undefined;
|
|
27426
|
-
multiple?: boolean | undefined;
|
|
27427
28066
|
} | undefined;
|
|
27428
28067
|
sensitive?: boolean | undefined;
|
|
27429
28068
|
label?: string | undefined;
|
|
@@ -27715,7 +28354,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27715
28354
|
value: string;
|
|
27716
28355
|
label: string;
|
|
27717
28356
|
}[] | undefined;
|
|
28357
|
+
default_value?: string | string[] | undefined;
|
|
27718
28358
|
display?: "radio" | "checkbox" | undefined;
|
|
28359
|
+
multiple?: boolean | undefined;
|
|
27719
28360
|
} | undefined;
|
|
27720
28361
|
sensitive?: boolean | undefined;
|
|
27721
28362
|
label?: string | undefined;
|
|
@@ -27725,6 +28366,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27725
28366
|
type: "CUSTOM";
|
|
27726
28367
|
id: string;
|
|
27727
28368
|
config: {
|
|
28369
|
+
code?: string | undefined;
|
|
28370
|
+
schema?: Record<string, any> | undefined;
|
|
27728
28371
|
component?: string | undefined;
|
|
27729
28372
|
props?: Record<string, any> | undefined;
|
|
27730
28373
|
};
|
|
@@ -27762,6 +28405,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27762
28405
|
label: string;
|
|
27763
28406
|
}[] | undefined;
|
|
27764
28407
|
placeholder?: string | undefined;
|
|
28408
|
+
default_value?: string | string[] | undefined;
|
|
28409
|
+
multiple?: boolean | undefined;
|
|
27765
28410
|
searchable?: boolean | undefined;
|
|
27766
28411
|
} | undefined;
|
|
27767
28412
|
sensitive?: boolean | undefined;
|
|
@@ -27788,9 +28433,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27788
28433
|
required?: boolean | undefined;
|
|
27789
28434
|
category?: "FIELD" | undefined;
|
|
27790
28435
|
config?: {
|
|
28436
|
+
multiple?: boolean | undefined;
|
|
27791
28437
|
accept?: string | undefined;
|
|
27792
28438
|
max_size?: number | undefined;
|
|
27793
|
-
multiple?: boolean | undefined;
|
|
27794
28439
|
} | undefined;
|
|
27795
28440
|
sensitive?: boolean | undefined;
|
|
27796
28441
|
label?: string | undefined;
|
|
@@ -28085,7 +28730,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28085
28730
|
value: string;
|
|
28086
28731
|
label: string;
|
|
28087
28732
|
}[] | undefined;
|
|
28733
|
+
default_value?: string | string[] | undefined;
|
|
28088
28734
|
display?: "radio" | "checkbox" | undefined;
|
|
28735
|
+
multiple?: boolean | undefined;
|
|
28089
28736
|
} | undefined;
|
|
28090
28737
|
sensitive?: boolean | undefined;
|
|
28091
28738
|
label?: string | undefined;
|
|
@@ -28096,6 +28743,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28096
28743
|
type: "CUSTOM";
|
|
28097
28744
|
id: string;
|
|
28098
28745
|
config: {
|
|
28746
|
+
code?: string | undefined;
|
|
28747
|
+
schema?: Record<string, any> | undefined;
|
|
28099
28748
|
component?: string | undefined;
|
|
28100
28749
|
props?: Record<string, any> | undefined;
|
|
28101
28750
|
};
|
|
@@ -28132,6 +28781,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28132
28781
|
label: string;
|
|
28133
28782
|
}[] | undefined;
|
|
28134
28783
|
placeholder?: string | undefined;
|
|
28784
|
+
default_value?: string | string[] | undefined;
|
|
28785
|
+
multiple?: boolean | undefined;
|
|
28135
28786
|
searchable?: boolean | undefined;
|
|
28136
28787
|
} | undefined;
|
|
28137
28788
|
sensitive?: boolean | undefined;
|
|
@@ -28158,9 +28809,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28158
28809
|
required?: boolean | undefined;
|
|
28159
28810
|
category?: "FIELD" | undefined;
|
|
28160
28811
|
config?: {
|
|
28812
|
+
multiple?: boolean | undefined;
|
|
28161
28813
|
accept?: string | undefined;
|
|
28162
28814
|
max_size?: number | undefined;
|
|
28163
|
-
multiple?: boolean | undefined;
|
|
28164
28815
|
} | undefined;
|
|
28165
28816
|
sensitive?: boolean | undefined;
|
|
28166
28817
|
label?: string | undefined;
|
|
@@ -28404,6 +29055,16 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28404
29055
|
}, {
|
|
28405
29056
|
css?: string | undefined;
|
|
28406
29057
|
}>>;
|
|
29058
|
+
links: z.ZodOptional<z.ZodObject<{
|
|
29059
|
+
sdkSrc: z.ZodOptional<z.ZodString>;
|
|
29060
|
+
sdk_src: z.ZodOptional<z.ZodString>;
|
|
29061
|
+
}, "strip", z.ZodTypeAny, {
|
|
29062
|
+
sdkSrc?: string | undefined;
|
|
29063
|
+
sdk_src?: string | undefined;
|
|
29064
|
+
}, {
|
|
29065
|
+
sdkSrc?: string | undefined;
|
|
29066
|
+
sdk_src?: string | undefined;
|
|
29067
|
+
}>>;
|
|
28407
29068
|
created_at: z.ZodString;
|
|
28408
29069
|
updated_at: z.ZodString;
|
|
28409
29070
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -28619,7 +29280,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28619
29280
|
value: string;
|
|
28620
29281
|
label: string;
|
|
28621
29282
|
}[] | undefined;
|
|
29283
|
+
default_value?: string | string[] | undefined;
|
|
28622
29284
|
display?: "radio" | "checkbox" | undefined;
|
|
29285
|
+
multiple?: boolean | undefined;
|
|
28623
29286
|
} | undefined;
|
|
28624
29287
|
sensitive?: boolean | undefined;
|
|
28625
29288
|
label?: string | undefined;
|
|
@@ -28629,6 +29292,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28629
29292
|
type: "CUSTOM";
|
|
28630
29293
|
id: string;
|
|
28631
29294
|
config: {
|
|
29295
|
+
code?: string | undefined;
|
|
29296
|
+
schema?: Record<string, any> | undefined;
|
|
28632
29297
|
component?: string | undefined;
|
|
28633
29298
|
props?: Record<string, any> | undefined;
|
|
28634
29299
|
};
|
|
@@ -28666,6 +29331,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28666
29331
|
label: string;
|
|
28667
29332
|
}[] | undefined;
|
|
28668
29333
|
placeholder?: string | undefined;
|
|
29334
|
+
default_value?: string | string[] | undefined;
|
|
29335
|
+
multiple?: boolean | undefined;
|
|
28669
29336
|
searchable?: boolean | undefined;
|
|
28670
29337
|
} | undefined;
|
|
28671
29338
|
sensitive?: boolean | undefined;
|
|
@@ -28692,9 +29359,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28692
29359
|
required?: boolean | undefined;
|
|
28693
29360
|
category?: "FIELD" | undefined;
|
|
28694
29361
|
config?: {
|
|
29362
|
+
multiple?: boolean | undefined;
|
|
28695
29363
|
accept?: string | undefined;
|
|
28696
29364
|
max_size?: number | undefined;
|
|
28697
|
-
multiple?: boolean | undefined;
|
|
28698
29365
|
} | undefined;
|
|
28699
29366
|
sensitive?: boolean | undefined;
|
|
28700
29367
|
label?: string | undefined;
|
|
@@ -28844,6 +29511,10 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28844
29511
|
flow_id?: string | undefined;
|
|
28845
29512
|
} | undefined;
|
|
28846
29513
|
} | undefined;
|
|
29514
|
+
links?: {
|
|
29515
|
+
sdkSrc?: string | undefined;
|
|
29516
|
+
sdk_src?: string | undefined;
|
|
29517
|
+
} | undefined;
|
|
28847
29518
|
messages?: {
|
|
28848
29519
|
custom?: Record<string, any> | undefined;
|
|
28849
29520
|
errors?: Record<string, any> | undefined;
|
|
@@ -29061,7 +29732,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
29061
29732
|
value: string;
|
|
29062
29733
|
label: string;
|
|
29063
29734
|
}[] | undefined;
|
|
29735
|
+
default_value?: string | string[] | undefined;
|
|
29064
29736
|
display?: "radio" | "checkbox" | undefined;
|
|
29737
|
+
multiple?: boolean | undefined;
|
|
29065
29738
|
} | undefined;
|
|
29066
29739
|
sensitive?: boolean | undefined;
|
|
29067
29740
|
label?: string | undefined;
|
|
@@ -29072,6 +29745,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
29072
29745
|
type: "CUSTOM";
|
|
29073
29746
|
id: string;
|
|
29074
29747
|
config: {
|
|
29748
|
+
code?: string | undefined;
|
|
29749
|
+
schema?: Record<string, any> | undefined;
|
|
29075
29750
|
component?: string | undefined;
|
|
29076
29751
|
props?: Record<string, any> | undefined;
|
|
29077
29752
|
};
|
|
@@ -29108,6 +29783,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
29108
29783
|
label: string;
|
|
29109
29784
|
}[] | undefined;
|
|
29110
29785
|
placeholder?: string | undefined;
|
|
29786
|
+
default_value?: string | string[] | undefined;
|
|
29787
|
+
multiple?: boolean | undefined;
|
|
29111
29788
|
searchable?: boolean | undefined;
|
|
29112
29789
|
} | undefined;
|
|
29113
29790
|
sensitive?: boolean | undefined;
|
|
@@ -29134,9 +29811,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
29134
29811
|
required?: boolean | undefined;
|
|
29135
29812
|
category?: "FIELD" | undefined;
|
|
29136
29813
|
config?: {
|
|
29814
|
+
multiple?: boolean | undefined;
|
|
29137
29815
|
accept?: string | undefined;
|
|
29138
29816
|
max_size?: number | undefined;
|
|
29139
|
-
multiple?: boolean | undefined;
|
|
29140
29817
|
} | undefined;
|
|
29141
29818
|
sensitive?: boolean | undefined;
|
|
29142
29819
|
label?: string | undefined;
|
|
@@ -29287,6 +29964,10 @@ export declare const formSchema: z.ZodObject<{
|
|
|
29287
29964
|
flow_id?: string | undefined;
|
|
29288
29965
|
} | undefined;
|
|
29289
29966
|
} | undefined;
|
|
29967
|
+
links?: {
|
|
29968
|
+
sdkSrc?: string | undefined;
|
|
29969
|
+
sdk_src?: string | undefined;
|
|
29970
|
+
} | undefined;
|
|
29290
29971
|
messages?: {
|
|
29291
29972
|
custom?: Record<string, any> | undefined;
|
|
29292
29973
|
errors?: Record<string, any> | undefined;
|
|
@@ -29947,18 +30628,27 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
29947
30628
|
"radio",
|
|
29948
30629
|
"checkbox"
|
|
29949
30630
|
]>>;
|
|
30631
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
30632
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
30633
|
+
z.ZodString,
|
|
30634
|
+
z.ZodArray<z.ZodString, "many">
|
|
30635
|
+
]>>;
|
|
29950
30636
|
}, "strip", z.ZodTypeAny, {
|
|
29951
30637
|
options?: {
|
|
29952
30638
|
value: string;
|
|
29953
30639
|
label: string;
|
|
29954
30640
|
}[] | undefined;
|
|
30641
|
+
default_value?: string | string[] | undefined;
|
|
29955
30642
|
display?: "radio" | "checkbox" | undefined;
|
|
30643
|
+
multiple?: boolean | undefined;
|
|
29956
30644
|
}, {
|
|
29957
30645
|
options?: {
|
|
29958
30646
|
value: string;
|
|
29959
30647
|
label: string;
|
|
29960
30648
|
}[] | undefined;
|
|
30649
|
+
default_value?: string | string[] | undefined;
|
|
29961
30650
|
display?: "radio" | "checkbox" | undefined;
|
|
30651
|
+
multiple?: boolean | undefined;
|
|
29962
30652
|
}>>;
|
|
29963
30653
|
}, "strip", z.ZodTypeAny, {
|
|
29964
30654
|
type: "CHOICE";
|
|
@@ -29971,7 +30661,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
29971
30661
|
value: string;
|
|
29972
30662
|
label: string;
|
|
29973
30663
|
}[] | undefined;
|
|
30664
|
+
default_value?: string | string[] | undefined;
|
|
29974
30665
|
display?: "radio" | "checkbox" | undefined;
|
|
30666
|
+
multiple?: boolean | undefined;
|
|
29975
30667
|
} | undefined;
|
|
29976
30668
|
sensitive?: boolean | undefined;
|
|
29977
30669
|
label?: string | undefined;
|
|
@@ -29987,7 +30679,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
29987
30679
|
value: string;
|
|
29988
30680
|
label: string;
|
|
29989
30681
|
}[] | undefined;
|
|
30682
|
+
default_value?: string | string[] | undefined;
|
|
29990
30683
|
display?: "radio" | "checkbox" | undefined;
|
|
30684
|
+
multiple?: boolean | undefined;
|
|
29991
30685
|
} | undefined;
|
|
29992
30686
|
sensitive?: boolean | undefined;
|
|
29993
30687
|
label?: string | undefined;
|
|
@@ -30010,10 +30704,16 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30010
30704
|
config: z.ZodObject<{
|
|
30011
30705
|
component: z.ZodOptional<z.ZodString>;
|
|
30012
30706
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
30707
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
30708
|
+
code: z.ZodOptional<z.ZodString>;
|
|
30013
30709
|
}, "strip", z.ZodTypeAny, {
|
|
30710
|
+
code?: string | undefined;
|
|
30711
|
+
schema?: Record<string, any> | undefined;
|
|
30014
30712
|
component?: string | undefined;
|
|
30015
30713
|
props?: Record<string, any> | undefined;
|
|
30016
30714
|
}, {
|
|
30715
|
+
code?: string | undefined;
|
|
30716
|
+
schema?: Record<string, any> | undefined;
|
|
30017
30717
|
component?: string | undefined;
|
|
30018
30718
|
props?: Record<string, any> | undefined;
|
|
30019
30719
|
}>;
|
|
@@ -30021,6 +30721,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30021
30721
|
type: "CUSTOM";
|
|
30022
30722
|
id: string;
|
|
30023
30723
|
config: {
|
|
30724
|
+
code?: string | undefined;
|
|
30725
|
+
schema?: Record<string, any> | undefined;
|
|
30024
30726
|
component?: string | undefined;
|
|
30025
30727
|
props?: Record<string, any> | undefined;
|
|
30026
30728
|
};
|
|
@@ -30035,6 +30737,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30035
30737
|
type: "CUSTOM";
|
|
30036
30738
|
id: string;
|
|
30037
30739
|
config: {
|
|
30740
|
+
code?: string | undefined;
|
|
30741
|
+
schema?: Record<string, any> | undefined;
|
|
30038
30742
|
component?: string | undefined;
|
|
30039
30743
|
props?: Record<string, any> | undefined;
|
|
30040
30744
|
};
|
|
@@ -30127,12 +30831,19 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30127
30831
|
}>, "many">>;
|
|
30128
30832
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
30129
30833
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
30834
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
30835
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
30836
|
+
z.ZodString,
|
|
30837
|
+
z.ZodArray<z.ZodString, "many">
|
|
30838
|
+
]>>;
|
|
30130
30839
|
}, "strip", z.ZodTypeAny, {
|
|
30131
30840
|
options?: {
|
|
30132
30841
|
value: string;
|
|
30133
30842
|
label: string;
|
|
30134
30843
|
}[] | undefined;
|
|
30135
30844
|
placeholder?: string | undefined;
|
|
30845
|
+
default_value?: string | string[] | undefined;
|
|
30846
|
+
multiple?: boolean | undefined;
|
|
30136
30847
|
searchable?: boolean | undefined;
|
|
30137
30848
|
}, {
|
|
30138
30849
|
options?: {
|
|
@@ -30140,6 +30851,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30140
30851
|
label: string;
|
|
30141
30852
|
}[] | undefined;
|
|
30142
30853
|
placeholder?: string | undefined;
|
|
30854
|
+
default_value?: string | string[] | undefined;
|
|
30855
|
+
multiple?: boolean | undefined;
|
|
30143
30856
|
searchable?: boolean | undefined;
|
|
30144
30857
|
}>>;
|
|
30145
30858
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -30154,6 +30867,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30154
30867
|
label: string;
|
|
30155
30868
|
}[] | undefined;
|
|
30156
30869
|
placeholder?: string | undefined;
|
|
30870
|
+
default_value?: string | string[] | undefined;
|
|
30871
|
+
multiple?: boolean | undefined;
|
|
30157
30872
|
searchable?: boolean | undefined;
|
|
30158
30873
|
} | undefined;
|
|
30159
30874
|
sensitive?: boolean | undefined;
|
|
@@ -30171,6 +30886,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30171
30886
|
label: string;
|
|
30172
30887
|
}[] | undefined;
|
|
30173
30888
|
placeholder?: string | undefined;
|
|
30889
|
+
default_value?: string | string[] | undefined;
|
|
30890
|
+
multiple?: boolean | undefined;
|
|
30174
30891
|
searchable?: boolean | undefined;
|
|
30175
30892
|
} | undefined;
|
|
30176
30893
|
sensitive?: boolean | undefined;
|
|
@@ -30242,13 +30959,13 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30242
30959
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
30243
30960
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
30244
30961
|
}, "strip", z.ZodTypeAny, {
|
|
30962
|
+
multiple?: boolean | undefined;
|
|
30245
30963
|
accept?: string | undefined;
|
|
30246
30964
|
max_size?: number | undefined;
|
|
30247
|
-
multiple?: boolean | undefined;
|
|
30248
30965
|
}, {
|
|
30966
|
+
multiple?: boolean | undefined;
|
|
30249
30967
|
accept?: string | undefined;
|
|
30250
30968
|
max_size?: number | undefined;
|
|
30251
|
-
multiple?: boolean | undefined;
|
|
30252
30969
|
}>>;
|
|
30253
30970
|
}, "strip", z.ZodTypeAny, {
|
|
30254
30971
|
type: "FILE";
|
|
@@ -30257,9 +30974,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30257
30974
|
required?: boolean | undefined;
|
|
30258
30975
|
category?: "FIELD" | undefined;
|
|
30259
30976
|
config?: {
|
|
30977
|
+
multiple?: boolean | undefined;
|
|
30260
30978
|
accept?: string | undefined;
|
|
30261
30979
|
max_size?: number | undefined;
|
|
30262
|
-
multiple?: boolean | undefined;
|
|
30263
30980
|
} | undefined;
|
|
30264
30981
|
sensitive?: boolean | undefined;
|
|
30265
30982
|
label?: string | undefined;
|
|
@@ -30271,9 +30988,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30271
30988
|
required?: boolean | undefined;
|
|
30272
30989
|
category?: "FIELD" | undefined;
|
|
30273
30990
|
config?: {
|
|
30991
|
+
multiple?: boolean | undefined;
|
|
30274
30992
|
accept?: string | undefined;
|
|
30275
30993
|
max_size?: number | undefined;
|
|
30276
|
-
multiple?: boolean | undefined;
|
|
30277
30994
|
} | undefined;
|
|
30278
30995
|
sensitive?: boolean | undefined;
|
|
30279
30996
|
label?: string | undefined;
|
|
@@ -30941,7 +31658,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30941
31658
|
value: string;
|
|
30942
31659
|
label: string;
|
|
30943
31660
|
}[] | undefined;
|
|
31661
|
+
default_value?: string | string[] | undefined;
|
|
30944
31662
|
display?: "radio" | "checkbox" | undefined;
|
|
31663
|
+
multiple?: boolean | undefined;
|
|
30945
31664
|
} | undefined;
|
|
30946
31665
|
sensitive?: boolean | undefined;
|
|
30947
31666
|
label?: string | undefined;
|
|
@@ -30951,6 +31670,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30951
31670
|
type: "CUSTOM";
|
|
30952
31671
|
id: string;
|
|
30953
31672
|
config: {
|
|
31673
|
+
code?: string | undefined;
|
|
31674
|
+
schema?: Record<string, any> | undefined;
|
|
30954
31675
|
component?: string | undefined;
|
|
30955
31676
|
props?: Record<string, any> | undefined;
|
|
30956
31677
|
};
|
|
@@ -30988,6 +31709,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30988
31709
|
label: string;
|
|
30989
31710
|
}[] | undefined;
|
|
30990
31711
|
placeholder?: string | undefined;
|
|
31712
|
+
default_value?: string | string[] | undefined;
|
|
31713
|
+
multiple?: boolean | undefined;
|
|
30991
31714
|
searchable?: boolean | undefined;
|
|
30992
31715
|
} | undefined;
|
|
30993
31716
|
sensitive?: boolean | undefined;
|
|
@@ -31014,9 +31737,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31014
31737
|
required?: boolean | undefined;
|
|
31015
31738
|
category?: "FIELD" | undefined;
|
|
31016
31739
|
config?: {
|
|
31740
|
+
multiple?: boolean | undefined;
|
|
31017
31741
|
accept?: string | undefined;
|
|
31018
31742
|
max_size?: number | undefined;
|
|
31019
|
-
multiple?: boolean | undefined;
|
|
31020
31743
|
} | undefined;
|
|
31021
31744
|
sensitive?: boolean | undefined;
|
|
31022
31745
|
label?: string | undefined;
|
|
@@ -31318,7 +32041,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31318
32041
|
value: string;
|
|
31319
32042
|
label: string;
|
|
31320
32043
|
}[] | undefined;
|
|
32044
|
+
default_value?: string | string[] | undefined;
|
|
31321
32045
|
display?: "radio" | "checkbox" | undefined;
|
|
32046
|
+
multiple?: boolean | undefined;
|
|
31322
32047
|
} | undefined;
|
|
31323
32048
|
sensitive?: boolean | undefined;
|
|
31324
32049
|
label?: string | undefined;
|
|
@@ -31329,6 +32054,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31329
32054
|
type: "CUSTOM";
|
|
31330
32055
|
id: string;
|
|
31331
32056
|
config: {
|
|
32057
|
+
code?: string | undefined;
|
|
32058
|
+
schema?: Record<string, any> | undefined;
|
|
31332
32059
|
component?: string | undefined;
|
|
31333
32060
|
props?: Record<string, any> | undefined;
|
|
31334
32061
|
};
|
|
@@ -31365,6 +32092,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31365
32092
|
label: string;
|
|
31366
32093
|
}[] | undefined;
|
|
31367
32094
|
placeholder?: string | undefined;
|
|
32095
|
+
default_value?: string | string[] | undefined;
|
|
32096
|
+
multiple?: boolean | undefined;
|
|
31368
32097
|
searchable?: boolean | undefined;
|
|
31369
32098
|
} | undefined;
|
|
31370
32099
|
sensitive?: boolean | undefined;
|
|
@@ -31391,9 +32120,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31391
32120
|
required?: boolean | undefined;
|
|
31392
32121
|
category?: "FIELD" | undefined;
|
|
31393
32122
|
config?: {
|
|
32123
|
+
multiple?: boolean | undefined;
|
|
31394
32124
|
accept?: string | undefined;
|
|
31395
32125
|
max_size?: number | undefined;
|
|
31396
|
-
multiple?: boolean | undefined;
|
|
31397
32126
|
} | undefined;
|
|
31398
32127
|
sensitive?: boolean | undefined;
|
|
31399
32128
|
label?: string | undefined;
|
|
@@ -34177,53 +34906,53 @@ export declare const fontDetailsSchema: z.ZodObject<{
|
|
|
34177
34906
|
bold: z.ZodBoolean;
|
|
34178
34907
|
size: z.ZodNumber;
|
|
34179
34908
|
}, "strip", z.ZodTypeAny, {
|
|
34180
|
-
bold: boolean;
|
|
34181
34909
|
size: number;
|
|
34182
|
-
}, {
|
|
34183
34910
|
bold: boolean;
|
|
34911
|
+
}, {
|
|
34184
34912
|
size: number;
|
|
34913
|
+
bold: boolean;
|
|
34185
34914
|
}>;
|
|
34186
34915
|
export declare const fontsSchema: z.ZodObject<{
|
|
34187
34916
|
body_text: z.ZodObject<{
|
|
34188
34917
|
bold: z.ZodBoolean;
|
|
34189
34918
|
size: z.ZodNumber;
|
|
34190
34919
|
}, "strip", z.ZodTypeAny, {
|
|
34191
|
-
bold: boolean;
|
|
34192
34920
|
size: number;
|
|
34193
|
-
}, {
|
|
34194
34921
|
bold: boolean;
|
|
34922
|
+
}, {
|
|
34195
34923
|
size: number;
|
|
34924
|
+
bold: boolean;
|
|
34196
34925
|
}>;
|
|
34197
34926
|
buttons_text: z.ZodObject<{
|
|
34198
34927
|
bold: z.ZodBoolean;
|
|
34199
34928
|
size: z.ZodNumber;
|
|
34200
34929
|
}, "strip", z.ZodTypeAny, {
|
|
34201
|
-
bold: boolean;
|
|
34202
34930
|
size: number;
|
|
34203
|
-
}, {
|
|
34204
34931
|
bold: boolean;
|
|
34932
|
+
}, {
|
|
34205
34933
|
size: number;
|
|
34934
|
+
bold: boolean;
|
|
34206
34935
|
}>;
|
|
34207
34936
|
font_url: z.ZodString;
|
|
34208
34937
|
input_labels: z.ZodObject<{
|
|
34209
34938
|
bold: z.ZodBoolean;
|
|
34210
34939
|
size: z.ZodNumber;
|
|
34211
34940
|
}, "strip", z.ZodTypeAny, {
|
|
34212
|
-
bold: boolean;
|
|
34213
34941
|
size: number;
|
|
34214
|
-
}, {
|
|
34215
34942
|
bold: boolean;
|
|
34943
|
+
}, {
|
|
34216
34944
|
size: number;
|
|
34945
|
+
bold: boolean;
|
|
34217
34946
|
}>;
|
|
34218
34947
|
links: z.ZodObject<{
|
|
34219
34948
|
bold: z.ZodBoolean;
|
|
34220
34949
|
size: z.ZodNumber;
|
|
34221
34950
|
}, "strip", z.ZodTypeAny, {
|
|
34222
|
-
bold: boolean;
|
|
34223
34951
|
size: number;
|
|
34224
|
-
}, {
|
|
34225
34952
|
bold: boolean;
|
|
34953
|
+
}, {
|
|
34226
34954
|
size: number;
|
|
34955
|
+
bold: boolean;
|
|
34227
34956
|
}>;
|
|
34228
34957
|
links_style: z.ZodEnum<[
|
|
34229
34958
|
"normal",
|
|
@@ -34234,77 +34963,77 @@ export declare const fontsSchema: z.ZodObject<{
|
|
|
34234
34963
|
bold: z.ZodBoolean;
|
|
34235
34964
|
size: z.ZodNumber;
|
|
34236
34965
|
}, "strip", z.ZodTypeAny, {
|
|
34237
|
-
bold: boolean;
|
|
34238
34966
|
size: number;
|
|
34239
|
-
}, {
|
|
34240
34967
|
bold: boolean;
|
|
34968
|
+
}, {
|
|
34241
34969
|
size: number;
|
|
34970
|
+
bold: boolean;
|
|
34242
34971
|
}>;
|
|
34243
34972
|
title: z.ZodObject<{
|
|
34244
34973
|
bold: z.ZodBoolean;
|
|
34245
34974
|
size: z.ZodNumber;
|
|
34246
34975
|
}, "strip", z.ZodTypeAny, {
|
|
34247
|
-
bold: boolean;
|
|
34248
34976
|
size: number;
|
|
34249
|
-
}, {
|
|
34250
34977
|
bold: boolean;
|
|
34978
|
+
}, {
|
|
34251
34979
|
size: number;
|
|
34980
|
+
bold: boolean;
|
|
34252
34981
|
}>;
|
|
34253
34982
|
}, "strip", z.ZodTypeAny, {
|
|
34254
34983
|
title: {
|
|
34255
|
-
bold: boolean;
|
|
34256
34984
|
size: number;
|
|
34985
|
+
bold: boolean;
|
|
34257
34986
|
};
|
|
34258
34987
|
links: {
|
|
34259
|
-
bold: boolean;
|
|
34260
34988
|
size: number;
|
|
34989
|
+
bold: boolean;
|
|
34261
34990
|
};
|
|
34262
34991
|
body_text: {
|
|
34263
|
-
bold: boolean;
|
|
34264
34992
|
size: number;
|
|
34993
|
+
bold: boolean;
|
|
34265
34994
|
};
|
|
34266
34995
|
buttons_text: {
|
|
34267
|
-
bold: boolean;
|
|
34268
34996
|
size: number;
|
|
34997
|
+
bold: boolean;
|
|
34269
34998
|
};
|
|
34270
34999
|
font_url: string;
|
|
34271
35000
|
input_labels: {
|
|
34272
|
-
bold: boolean;
|
|
34273
35001
|
size: number;
|
|
35002
|
+
bold: boolean;
|
|
34274
35003
|
};
|
|
34275
35004
|
links_style: "normal" | "underlined";
|
|
34276
35005
|
reference_text_size: number;
|
|
34277
35006
|
subtitle: {
|
|
34278
|
-
bold: boolean;
|
|
34279
35007
|
size: number;
|
|
35008
|
+
bold: boolean;
|
|
34280
35009
|
};
|
|
34281
35010
|
}, {
|
|
34282
35011
|
title: {
|
|
34283
|
-
bold: boolean;
|
|
34284
35012
|
size: number;
|
|
35013
|
+
bold: boolean;
|
|
34285
35014
|
};
|
|
34286
35015
|
links: {
|
|
34287
|
-
bold: boolean;
|
|
34288
35016
|
size: number;
|
|
35017
|
+
bold: boolean;
|
|
34289
35018
|
};
|
|
34290
35019
|
body_text: {
|
|
34291
|
-
bold: boolean;
|
|
34292
35020
|
size: number;
|
|
35021
|
+
bold: boolean;
|
|
34293
35022
|
};
|
|
34294
35023
|
buttons_text: {
|
|
34295
|
-
bold: boolean;
|
|
34296
35024
|
size: number;
|
|
35025
|
+
bold: boolean;
|
|
34297
35026
|
};
|
|
34298
35027
|
font_url: string;
|
|
34299
35028
|
input_labels: {
|
|
34300
|
-
bold: boolean;
|
|
34301
35029
|
size: number;
|
|
35030
|
+
bold: boolean;
|
|
34302
35031
|
};
|
|
34303
35032
|
links_style: "normal" | "underlined";
|
|
34304
35033
|
reference_text_size: number;
|
|
34305
35034
|
subtitle: {
|
|
34306
|
-
bold: boolean;
|
|
34307
35035
|
size: number;
|
|
35036
|
+
bold: boolean;
|
|
34308
35037
|
};
|
|
34309
35038
|
}>;
|
|
34310
35039
|
export declare const pageBackgroundSchema: z.ZodObject<{
|
|
@@ -34466,42 +35195,42 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
34466
35195
|
bold: z.ZodBoolean;
|
|
34467
35196
|
size: z.ZodNumber;
|
|
34468
35197
|
}, "strip", z.ZodTypeAny, {
|
|
34469
|
-
bold: boolean;
|
|
34470
35198
|
size: number;
|
|
34471
|
-
}, {
|
|
34472
35199
|
bold: boolean;
|
|
35200
|
+
}, {
|
|
34473
35201
|
size: number;
|
|
35202
|
+
bold: boolean;
|
|
34474
35203
|
}>;
|
|
34475
35204
|
buttons_text: z.ZodObject<{
|
|
34476
35205
|
bold: z.ZodBoolean;
|
|
34477
35206
|
size: z.ZodNumber;
|
|
34478
35207
|
}, "strip", z.ZodTypeAny, {
|
|
34479
|
-
bold: boolean;
|
|
34480
35208
|
size: number;
|
|
34481
|
-
}, {
|
|
34482
35209
|
bold: boolean;
|
|
35210
|
+
}, {
|
|
34483
35211
|
size: number;
|
|
35212
|
+
bold: boolean;
|
|
34484
35213
|
}>;
|
|
34485
35214
|
font_url: z.ZodString;
|
|
34486
35215
|
input_labels: z.ZodObject<{
|
|
34487
35216
|
bold: z.ZodBoolean;
|
|
34488
35217
|
size: z.ZodNumber;
|
|
34489
35218
|
}, "strip", z.ZodTypeAny, {
|
|
34490
|
-
bold: boolean;
|
|
34491
35219
|
size: number;
|
|
34492
|
-
}, {
|
|
34493
35220
|
bold: boolean;
|
|
35221
|
+
}, {
|
|
34494
35222
|
size: number;
|
|
35223
|
+
bold: boolean;
|
|
34495
35224
|
}>;
|
|
34496
35225
|
links: z.ZodObject<{
|
|
34497
35226
|
bold: z.ZodBoolean;
|
|
34498
35227
|
size: z.ZodNumber;
|
|
34499
35228
|
}, "strip", z.ZodTypeAny, {
|
|
34500
|
-
bold: boolean;
|
|
34501
35229
|
size: number;
|
|
34502
|
-
}, {
|
|
34503
35230
|
bold: boolean;
|
|
35231
|
+
}, {
|
|
34504
35232
|
size: number;
|
|
35233
|
+
bold: boolean;
|
|
34505
35234
|
}>;
|
|
34506
35235
|
links_style: z.ZodEnum<[
|
|
34507
35236
|
"normal",
|
|
@@ -34512,77 +35241,77 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
34512
35241
|
bold: z.ZodBoolean;
|
|
34513
35242
|
size: z.ZodNumber;
|
|
34514
35243
|
}, "strip", z.ZodTypeAny, {
|
|
34515
|
-
bold: boolean;
|
|
34516
35244
|
size: number;
|
|
34517
|
-
}, {
|
|
34518
35245
|
bold: boolean;
|
|
35246
|
+
}, {
|
|
34519
35247
|
size: number;
|
|
35248
|
+
bold: boolean;
|
|
34520
35249
|
}>;
|
|
34521
35250
|
title: z.ZodObject<{
|
|
34522
35251
|
bold: z.ZodBoolean;
|
|
34523
35252
|
size: z.ZodNumber;
|
|
34524
35253
|
}, "strip", z.ZodTypeAny, {
|
|
34525
|
-
bold: boolean;
|
|
34526
35254
|
size: number;
|
|
34527
|
-
}, {
|
|
34528
35255
|
bold: boolean;
|
|
35256
|
+
}, {
|
|
34529
35257
|
size: number;
|
|
35258
|
+
bold: boolean;
|
|
34530
35259
|
}>;
|
|
34531
35260
|
}, "strip", z.ZodTypeAny, {
|
|
34532
35261
|
title: {
|
|
34533
|
-
bold: boolean;
|
|
34534
35262
|
size: number;
|
|
35263
|
+
bold: boolean;
|
|
34535
35264
|
};
|
|
34536
35265
|
links: {
|
|
34537
|
-
bold: boolean;
|
|
34538
35266
|
size: number;
|
|
35267
|
+
bold: boolean;
|
|
34539
35268
|
};
|
|
34540
35269
|
body_text: {
|
|
34541
|
-
bold: boolean;
|
|
34542
35270
|
size: number;
|
|
35271
|
+
bold: boolean;
|
|
34543
35272
|
};
|
|
34544
35273
|
buttons_text: {
|
|
34545
|
-
bold: boolean;
|
|
34546
35274
|
size: number;
|
|
35275
|
+
bold: boolean;
|
|
34547
35276
|
};
|
|
34548
35277
|
font_url: string;
|
|
34549
35278
|
input_labels: {
|
|
34550
|
-
bold: boolean;
|
|
34551
35279
|
size: number;
|
|
35280
|
+
bold: boolean;
|
|
34552
35281
|
};
|
|
34553
35282
|
links_style: "normal" | "underlined";
|
|
34554
35283
|
reference_text_size: number;
|
|
34555
35284
|
subtitle: {
|
|
34556
|
-
bold: boolean;
|
|
34557
35285
|
size: number;
|
|
35286
|
+
bold: boolean;
|
|
34558
35287
|
};
|
|
34559
35288
|
}, {
|
|
34560
35289
|
title: {
|
|
34561
|
-
bold: boolean;
|
|
34562
35290
|
size: number;
|
|
35291
|
+
bold: boolean;
|
|
34563
35292
|
};
|
|
34564
35293
|
links: {
|
|
34565
|
-
bold: boolean;
|
|
34566
35294
|
size: number;
|
|
35295
|
+
bold: boolean;
|
|
34567
35296
|
};
|
|
34568
35297
|
body_text: {
|
|
34569
|
-
bold: boolean;
|
|
34570
35298
|
size: number;
|
|
35299
|
+
bold: boolean;
|
|
34571
35300
|
};
|
|
34572
35301
|
buttons_text: {
|
|
34573
|
-
bold: boolean;
|
|
34574
35302
|
size: number;
|
|
35303
|
+
bold: boolean;
|
|
34575
35304
|
};
|
|
34576
35305
|
font_url: string;
|
|
34577
35306
|
input_labels: {
|
|
34578
|
-
bold: boolean;
|
|
34579
35307
|
size: number;
|
|
35308
|
+
bold: boolean;
|
|
34580
35309
|
};
|
|
34581
35310
|
links_style: "normal" | "underlined";
|
|
34582
35311
|
reference_text_size: number;
|
|
34583
35312
|
subtitle: {
|
|
34584
|
-
bold: boolean;
|
|
34585
35313
|
size: number;
|
|
35314
|
+
bold: boolean;
|
|
34586
35315
|
};
|
|
34587
35316
|
}>;
|
|
34588
35317
|
page_background: z.ZodObject<{
|
|
@@ -34674,31 +35403,31 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
34674
35403
|
displayName: string;
|
|
34675
35404
|
fonts: {
|
|
34676
35405
|
title: {
|
|
34677
|
-
bold: boolean;
|
|
34678
35406
|
size: number;
|
|
35407
|
+
bold: boolean;
|
|
34679
35408
|
};
|
|
34680
35409
|
links: {
|
|
34681
|
-
bold: boolean;
|
|
34682
35410
|
size: number;
|
|
35411
|
+
bold: boolean;
|
|
34683
35412
|
};
|
|
34684
35413
|
body_text: {
|
|
34685
|
-
bold: boolean;
|
|
34686
35414
|
size: number;
|
|
35415
|
+
bold: boolean;
|
|
34687
35416
|
};
|
|
34688
35417
|
buttons_text: {
|
|
34689
|
-
bold: boolean;
|
|
34690
35418
|
size: number;
|
|
35419
|
+
bold: boolean;
|
|
34691
35420
|
};
|
|
34692
35421
|
font_url: string;
|
|
34693
35422
|
input_labels: {
|
|
34694
|
-
bold: boolean;
|
|
34695
35423
|
size: number;
|
|
35424
|
+
bold: boolean;
|
|
34696
35425
|
};
|
|
34697
35426
|
links_style: "normal" | "underlined";
|
|
34698
35427
|
reference_text_size: number;
|
|
34699
35428
|
subtitle: {
|
|
34700
|
-
bold: boolean;
|
|
34701
35429
|
size: number;
|
|
35430
|
+
bold: boolean;
|
|
34702
35431
|
};
|
|
34703
35432
|
};
|
|
34704
35433
|
widget: {
|
|
@@ -34749,31 +35478,31 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
34749
35478
|
displayName: string;
|
|
34750
35479
|
fonts: {
|
|
34751
35480
|
title: {
|
|
34752
|
-
bold: boolean;
|
|
34753
35481
|
size: number;
|
|
35482
|
+
bold: boolean;
|
|
34754
35483
|
};
|
|
34755
35484
|
links: {
|
|
34756
|
-
bold: boolean;
|
|
34757
35485
|
size: number;
|
|
35486
|
+
bold: boolean;
|
|
34758
35487
|
};
|
|
34759
35488
|
body_text: {
|
|
34760
|
-
bold: boolean;
|
|
34761
35489
|
size: number;
|
|
35490
|
+
bold: boolean;
|
|
34762
35491
|
};
|
|
34763
35492
|
buttons_text: {
|
|
34764
|
-
bold: boolean;
|
|
34765
35493
|
size: number;
|
|
35494
|
+
bold: boolean;
|
|
34766
35495
|
};
|
|
34767
35496
|
font_url: string;
|
|
34768
35497
|
input_labels: {
|
|
34769
|
-
bold: boolean;
|
|
34770
35498
|
size: number;
|
|
35499
|
+
bold: boolean;
|
|
34771
35500
|
};
|
|
34772
35501
|
links_style: "normal" | "underlined";
|
|
34773
35502
|
reference_text_size: number;
|
|
34774
35503
|
subtitle: {
|
|
34775
|
-
bold: boolean;
|
|
34776
35504
|
size: number;
|
|
35505
|
+
bold: boolean;
|
|
34777
35506
|
};
|
|
34778
35507
|
};
|
|
34779
35508
|
widget: {
|
|
@@ -34896,42 +35625,42 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
34896
35625
|
bold: z.ZodBoolean;
|
|
34897
35626
|
size: z.ZodNumber;
|
|
34898
35627
|
}, "strip", z.ZodTypeAny, {
|
|
34899
|
-
bold: boolean;
|
|
34900
35628
|
size: number;
|
|
34901
|
-
}, {
|
|
34902
35629
|
bold: boolean;
|
|
35630
|
+
}, {
|
|
34903
35631
|
size: number;
|
|
35632
|
+
bold: boolean;
|
|
34904
35633
|
}>;
|
|
34905
35634
|
buttons_text: z.ZodObject<{
|
|
34906
35635
|
bold: z.ZodBoolean;
|
|
34907
35636
|
size: z.ZodNumber;
|
|
34908
35637
|
}, "strip", z.ZodTypeAny, {
|
|
34909
|
-
bold: boolean;
|
|
34910
35638
|
size: number;
|
|
34911
|
-
}, {
|
|
34912
35639
|
bold: boolean;
|
|
35640
|
+
}, {
|
|
34913
35641
|
size: number;
|
|
35642
|
+
bold: boolean;
|
|
34914
35643
|
}>;
|
|
34915
35644
|
font_url: z.ZodString;
|
|
34916
35645
|
input_labels: z.ZodObject<{
|
|
34917
35646
|
bold: z.ZodBoolean;
|
|
34918
35647
|
size: z.ZodNumber;
|
|
34919
35648
|
}, "strip", z.ZodTypeAny, {
|
|
34920
|
-
bold: boolean;
|
|
34921
35649
|
size: number;
|
|
34922
|
-
}, {
|
|
34923
35650
|
bold: boolean;
|
|
35651
|
+
}, {
|
|
34924
35652
|
size: number;
|
|
35653
|
+
bold: boolean;
|
|
34925
35654
|
}>;
|
|
34926
35655
|
links: z.ZodObject<{
|
|
34927
35656
|
bold: z.ZodBoolean;
|
|
34928
35657
|
size: z.ZodNumber;
|
|
34929
35658
|
}, "strip", z.ZodTypeAny, {
|
|
34930
|
-
bold: boolean;
|
|
34931
35659
|
size: number;
|
|
34932
|
-
}, {
|
|
34933
35660
|
bold: boolean;
|
|
35661
|
+
}, {
|
|
34934
35662
|
size: number;
|
|
35663
|
+
bold: boolean;
|
|
34935
35664
|
}>;
|
|
34936
35665
|
links_style: z.ZodEnum<[
|
|
34937
35666
|
"normal",
|
|
@@ -34942,77 +35671,77 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
34942
35671
|
bold: z.ZodBoolean;
|
|
34943
35672
|
size: z.ZodNumber;
|
|
34944
35673
|
}, "strip", z.ZodTypeAny, {
|
|
34945
|
-
bold: boolean;
|
|
34946
35674
|
size: number;
|
|
34947
|
-
}, {
|
|
34948
35675
|
bold: boolean;
|
|
35676
|
+
}, {
|
|
34949
35677
|
size: number;
|
|
35678
|
+
bold: boolean;
|
|
34950
35679
|
}>;
|
|
34951
35680
|
title: z.ZodObject<{
|
|
34952
35681
|
bold: z.ZodBoolean;
|
|
34953
35682
|
size: z.ZodNumber;
|
|
34954
35683
|
}, "strip", z.ZodTypeAny, {
|
|
34955
|
-
bold: boolean;
|
|
34956
35684
|
size: number;
|
|
34957
|
-
}, {
|
|
34958
35685
|
bold: boolean;
|
|
35686
|
+
}, {
|
|
34959
35687
|
size: number;
|
|
35688
|
+
bold: boolean;
|
|
34960
35689
|
}>;
|
|
34961
35690
|
}, "strip", z.ZodTypeAny, {
|
|
34962
35691
|
title: {
|
|
34963
|
-
bold: boolean;
|
|
34964
35692
|
size: number;
|
|
35693
|
+
bold: boolean;
|
|
34965
35694
|
};
|
|
34966
35695
|
links: {
|
|
34967
|
-
bold: boolean;
|
|
34968
35696
|
size: number;
|
|
35697
|
+
bold: boolean;
|
|
34969
35698
|
};
|
|
34970
35699
|
body_text: {
|
|
34971
|
-
bold: boolean;
|
|
34972
35700
|
size: number;
|
|
35701
|
+
bold: boolean;
|
|
34973
35702
|
};
|
|
34974
35703
|
buttons_text: {
|
|
34975
|
-
bold: boolean;
|
|
34976
35704
|
size: number;
|
|
35705
|
+
bold: boolean;
|
|
34977
35706
|
};
|
|
34978
35707
|
font_url: string;
|
|
34979
35708
|
input_labels: {
|
|
34980
|
-
bold: boolean;
|
|
34981
35709
|
size: number;
|
|
35710
|
+
bold: boolean;
|
|
34982
35711
|
};
|
|
34983
35712
|
links_style: "normal" | "underlined";
|
|
34984
35713
|
reference_text_size: number;
|
|
34985
35714
|
subtitle: {
|
|
34986
|
-
bold: boolean;
|
|
34987
35715
|
size: number;
|
|
35716
|
+
bold: boolean;
|
|
34988
35717
|
};
|
|
34989
35718
|
}, {
|
|
34990
35719
|
title: {
|
|
34991
|
-
bold: boolean;
|
|
34992
35720
|
size: number;
|
|
35721
|
+
bold: boolean;
|
|
34993
35722
|
};
|
|
34994
35723
|
links: {
|
|
34995
|
-
bold: boolean;
|
|
34996
35724
|
size: number;
|
|
35725
|
+
bold: boolean;
|
|
34997
35726
|
};
|
|
34998
35727
|
body_text: {
|
|
34999
|
-
bold: boolean;
|
|
35000
35728
|
size: number;
|
|
35729
|
+
bold: boolean;
|
|
35001
35730
|
};
|
|
35002
35731
|
buttons_text: {
|
|
35003
|
-
bold: boolean;
|
|
35004
35732
|
size: number;
|
|
35733
|
+
bold: boolean;
|
|
35005
35734
|
};
|
|
35006
35735
|
font_url: string;
|
|
35007
35736
|
input_labels: {
|
|
35008
|
-
bold: boolean;
|
|
35009
35737
|
size: number;
|
|
35738
|
+
bold: boolean;
|
|
35010
35739
|
};
|
|
35011
35740
|
links_style: "normal" | "underlined";
|
|
35012
35741
|
reference_text_size: number;
|
|
35013
35742
|
subtitle: {
|
|
35014
|
-
bold: boolean;
|
|
35015
35743
|
size: number;
|
|
35744
|
+
bold: boolean;
|
|
35016
35745
|
};
|
|
35017
35746
|
}>;
|
|
35018
35747
|
page_background: z.ZodObject<{
|
|
@@ -35106,31 +35835,31 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
35106
35835
|
displayName: string;
|
|
35107
35836
|
fonts: {
|
|
35108
35837
|
title: {
|
|
35109
|
-
bold: boolean;
|
|
35110
35838
|
size: number;
|
|
35839
|
+
bold: boolean;
|
|
35111
35840
|
};
|
|
35112
35841
|
links: {
|
|
35113
|
-
bold: boolean;
|
|
35114
35842
|
size: number;
|
|
35843
|
+
bold: boolean;
|
|
35115
35844
|
};
|
|
35116
35845
|
body_text: {
|
|
35117
|
-
bold: boolean;
|
|
35118
35846
|
size: number;
|
|
35847
|
+
bold: boolean;
|
|
35119
35848
|
};
|
|
35120
35849
|
buttons_text: {
|
|
35121
|
-
bold: boolean;
|
|
35122
35850
|
size: number;
|
|
35851
|
+
bold: boolean;
|
|
35123
35852
|
};
|
|
35124
35853
|
font_url: string;
|
|
35125
35854
|
input_labels: {
|
|
35126
|
-
bold: boolean;
|
|
35127
35855
|
size: number;
|
|
35856
|
+
bold: boolean;
|
|
35128
35857
|
};
|
|
35129
35858
|
links_style: "normal" | "underlined";
|
|
35130
35859
|
reference_text_size: number;
|
|
35131
35860
|
subtitle: {
|
|
35132
|
-
bold: boolean;
|
|
35133
35861
|
size: number;
|
|
35862
|
+
bold: boolean;
|
|
35134
35863
|
};
|
|
35135
35864
|
};
|
|
35136
35865
|
widget: {
|
|
@@ -35182,31 +35911,31 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
35182
35911
|
displayName: string;
|
|
35183
35912
|
fonts: {
|
|
35184
35913
|
title: {
|
|
35185
|
-
bold: boolean;
|
|
35186
35914
|
size: number;
|
|
35915
|
+
bold: boolean;
|
|
35187
35916
|
};
|
|
35188
35917
|
links: {
|
|
35189
|
-
bold: boolean;
|
|
35190
35918
|
size: number;
|
|
35919
|
+
bold: boolean;
|
|
35191
35920
|
};
|
|
35192
35921
|
body_text: {
|
|
35193
|
-
bold: boolean;
|
|
35194
35922
|
size: number;
|
|
35923
|
+
bold: boolean;
|
|
35195
35924
|
};
|
|
35196
35925
|
buttons_text: {
|
|
35197
|
-
bold: boolean;
|
|
35198
35926
|
size: number;
|
|
35927
|
+
bold: boolean;
|
|
35199
35928
|
};
|
|
35200
35929
|
font_url: string;
|
|
35201
35930
|
input_labels: {
|
|
35202
|
-
bold: boolean;
|
|
35203
35931
|
size: number;
|
|
35932
|
+
bold: boolean;
|
|
35204
35933
|
};
|
|
35205
35934
|
links_style: "normal" | "underlined";
|
|
35206
35935
|
reference_text_size: number;
|
|
35207
35936
|
subtitle: {
|
|
35208
|
-
bold: boolean;
|
|
35209
35937
|
size: number;
|
|
35938
|
+
bold: boolean;
|
|
35210
35939
|
};
|
|
35211
35940
|
};
|
|
35212
35941
|
widget: {
|