@authhero/adapter-interfaces 0.131.0 → 0.132.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 +510 -54
- package/dist/adapter-interfaces.mjs +41 -31
- package/package.json +1 -1
|
@@ -11575,18 +11575,27 @@ declare const choiceField: z.ZodObject<{
|
|
|
11575
11575
|
"radio",
|
|
11576
11576
|
"checkbox"
|
|
11577
11577
|
]>>;
|
|
11578
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
11579
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
11580
|
+
z.ZodString,
|
|
11581
|
+
z.ZodArray<z.ZodString, "many">
|
|
11582
|
+
]>>;
|
|
11578
11583
|
}, "strip", z.ZodTypeAny, {
|
|
11579
11584
|
options?: {
|
|
11580
11585
|
value: string;
|
|
11581
11586
|
label: string;
|
|
11582
11587
|
}[] | undefined;
|
|
11588
|
+
default_value?: string | string[] | undefined;
|
|
11583
11589
|
display?: "radio" | "checkbox" | undefined;
|
|
11590
|
+
multiple?: boolean | undefined;
|
|
11584
11591
|
}, {
|
|
11585
11592
|
options?: {
|
|
11586
11593
|
value: string;
|
|
11587
11594
|
label: string;
|
|
11588
11595
|
}[] | undefined;
|
|
11596
|
+
default_value?: string | string[] | undefined;
|
|
11589
11597
|
display?: "radio" | "checkbox" | undefined;
|
|
11598
|
+
multiple?: boolean | undefined;
|
|
11590
11599
|
}>>;
|
|
11591
11600
|
}, "strip", z.ZodTypeAny, {
|
|
11592
11601
|
type: "CHOICE";
|
|
@@ -11599,7 +11608,9 @@ declare const choiceField: z.ZodObject<{
|
|
|
11599
11608
|
value: string;
|
|
11600
11609
|
label: string;
|
|
11601
11610
|
}[] | undefined;
|
|
11611
|
+
default_value?: string | string[] | undefined;
|
|
11602
11612
|
display?: "radio" | "checkbox" | undefined;
|
|
11613
|
+
multiple?: boolean | undefined;
|
|
11603
11614
|
} | undefined;
|
|
11604
11615
|
sensitive?: boolean | undefined;
|
|
11605
11616
|
label?: string | undefined;
|
|
@@ -11615,7 +11626,9 @@ declare const choiceField: z.ZodObject<{
|
|
|
11615
11626
|
value: string;
|
|
11616
11627
|
label: string;
|
|
11617
11628
|
}[] | undefined;
|
|
11629
|
+
default_value?: string | string[] | undefined;
|
|
11618
11630
|
display?: "radio" | "checkbox" | undefined;
|
|
11631
|
+
multiple?: boolean | undefined;
|
|
11619
11632
|
} | undefined;
|
|
11620
11633
|
sensitive?: boolean | undefined;
|
|
11621
11634
|
label?: string | undefined;
|
|
@@ -11638,10 +11651,16 @@ declare const customField: z.ZodObject<{
|
|
|
11638
11651
|
config: z.ZodObject<{
|
|
11639
11652
|
component: z.ZodOptional<z.ZodString>;
|
|
11640
11653
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11654
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11655
|
+
code: z.ZodOptional<z.ZodString>;
|
|
11641
11656
|
}, "strip", z.ZodTypeAny, {
|
|
11657
|
+
code?: string | undefined;
|
|
11658
|
+
schema?: Record<string, any> | undefined;
|
|
11642
11659
|
component?: string | undefined;
|
|
11643
11660
|
props?: Record<string, any> | undefined;
|
|
11644
11661
|
}, {
|
|
11662
|
+
code?: string | undefined;
|
|
11663
|
+
schema?: Record<string, any> | undefined;
|
|
11645
11664
|
component?: string | undefined;
|
|
11646
11665
|
props?: Record<string, any> | undefined;
|
|
11647
11666
|
}>;
|
|
@@ -11649,6 +11668,8 @@ declare const customField: z.ZodObject<{
|
|
|
11649
11668
|
type: "CUSTOM";
|
|
11650
11669
|
id: string;
|
|
11651
11670
|
config: {
|
|
11671
|
+
code?: string | undefined;
|
|
11672
|
+
schema?: Record<string, any> | undefined;
|
|
11652
11673
|
component?: string | undefined;
|
|
11653
11674
|
props?: Record<string, any> | undefined;
|
|
11654
11675
|
};
|
|
@@ -11663,6 +11684,8 @@ declare const customField: z.ZodObject<{
|
|
|
11663
11684
|
type: "CUSTOM";
|
|
11664
11685
|
id: string;
|
|
11665
11686
|
config: {
|
|
11687
|
+
code?: string | undefined;
|
|
11688
|
+
schema?: Record<string, any> | undefined;
|
|
11666
11689
|
component?: string | undefined;
|
|
11667
11690
|
props?: Record<string, any> | undefined;
|
|
11668
11691
|
};
|
|
@@ -11755,12 +11778,19 @@ declare const dropdownField: z.ZodObject<{
|
|
|
11755
11778
|
}>, "many">>;
|
|
11756
11779
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
11757
11780
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
11781
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
11782
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
11783
|
+
z.ZodString,
|
|
11784
|
+
z.ZodArray<z.ZodString, "many">
|
|
11785
|
+
]>>;
|
|
11758
11786
|
}, "strip", z.ZodTypeAny, {
|
|
11759
11787
|
options?: {
|
|
11760
11788
|
value: string;
|
|
11761
11789
|
label: string;
|
|
11762
11790
|
}[] | undefined;
|
|
11763
11791
|
placeholder?: string | undefined;
|
|
11792
|
+
default_value?: string | string[] | undefined;
|
|
11793
|
+
multiple?: boolean | undefined;
|
|
11764
11794
|
searchable?: boolean | undefined;
|
|
11765
11795
|
}, {
|
|
11766
11796
|
options?: {
|
|
@@ -11768,6 +11798,8 @@ declare const dropdownField: z.ZodObject<{
|
|
|
11768
11798
|
label: string;
|
|
11769
11799
|
}[] | undefined;
|
|
11770
11800
|
placeholder?: string | undefined;
|
|
11801
|
+
default_value?: string | string[] | undefined;
|
|
11802
|
+
multiple?: boolean | undefined;
|
|
11771
11803
|
searchable?: boolean | undefined;
|
|
11772
11804
|
}>>;
|
|
11773
11805
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11782,6 +11814,8 @@ declare const dropdownField: z.ZodObject<{
|
|
|
11782
11814
|
label: string;
|
|
11783
11815
|
}[] | undefined;
|
|
11784
11816
|
placeholder?: string | undefined;
|
|
11817
|
+
default_value?: string | string[] | undefined;
|
|
11818
|
+
multiple?: boolean | undefined;
|
|
11785
11819
|
searchable?: boolean | undefined;
|
|
11786
11820
|
} | undefined;
|
|
11787
11821
|
sensitive?: boolean | undefined;
|
|
@@ -11799,6 +11833,8 @@ declare const dropdownField: z.ZodObject<{
|
|
|
11799
11833
|
label: string;
|
|
11800
11834
|
}[] | undefined;
|
|
11801
11835
|
placeholder?: string | undefined;
|
|
11836
|
+
default_value?: string | string[] | undefined;
|
|
11837
|
+
multiple?: boolean | undefined;
|
|
11802
11838
|
searchable?: boolean | undefined;
|
|
11803
11839
|
} | undefined;
|
|
11804
11840
|
sensitive?: boolean | undefined;
|
|
@@ -11870,13 +11906,13 @@ declare const fileField: z.ZodObject<{
|
|
|
11870
11906
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
11871
11907
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
11872
11908
|
}, "strip", z.ZodTypeAny, {
|
|
11909
|
+
multiple?: boolean | undefined;
|
|
11873
11910
|
accept?: string | undefined;
|
|
11874
11911
|
max_size?: number | undefined;
|
|
11875
|
-
multiple?: boolean | undefined;
|
|
11876
11912
|
}, {
|
|
11913
|
+
multiple?: boolean | undefined;
|
|
11877
11914
|
accept?: string | undefined;
|
|
11878
11915
|
max_size?: number | undefined;
|
|
11879
|
-
multiple?: boolean | undefined;
|
|
11880
11916
|
}>>;
|
|
11881
11917
|
}, "strip", z.ZodTypeAny, {
|
|
11882
11918
|
type: "FILE";
|
|
@@ -11885,9 +11921,9 @@ declare const fileField: z.ZodObject<{
|
|
|
11885
11921
|
required?: boolean | undefined;
|
|
11886
11922
|
category?: "FIELD" | undefined;
|
|
11887
11923
|
config?: {
|
|
11924
|
+
multiple?: boolean | undefined;
|
|
11888
11925
|
accept?: string | undefined;
|
|
11889
11926
|
max_size?: number | undefined;
|
|
11890
|
-
multiple?: boolean | undefined;
|
|
11891
11927
|
} | undefined;
|
|
11892
11928
|
sensitive?: boolean | undefined;
|
|
11893
11929
|
label?: string | undefined;
|
|
@@ -11899,9 +11935,9 @@ declare const fileField: z.ZodObject<{
|
|
|
11899
11935
|
required?: boolean | undefined;
|
|
11900
11936
|
category?: "FIELD" | undefined;
|
|
11901
11937
|
config?: {
|
|
11938
|
+
multiple?: boolean | undefined;
|
|
11902
11939
|
accept?: string | undefined;
|
|
11903
11940
|
max_size?: number | undefined;
|
|
11904
|
-
multiple?: boolean | undefined;
|
|
11905
11941
|
} | undefined;
|
|
11906
11942
|
sensitive?: boolean | undefined;
|
|
11907
11943
|
label?: string | undefined;
|
|
@@ -12970,18 +13006,27 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
12970
13006
|
"radio",
|
|
12971
13007
|
"checkbox"
|
|
12972
13008
|
]>>;
|
|
13009
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
13010
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
13011
|
+
z.ZodString,
|
|
13012
|
+
z.ZodArray<z.ZodString, "many">
|
|
13013
|
+
]>>;
|
|
12973
13014
|
}, "strip", z.ZodTypeAny, {
|
|
12974
13015
|
options?: {
|
|
12975
13016
|
value: string;
|
|
12976
13017
|
label: string;
|
|
12977
13018
|
}[] | undefined;
|
|
13019
|
+
default_value?: string | string[] | undefined;
|
|
12978
13020
|
display?: "radio" | "checkbox" | undefined;
|
|
13021
|
+
multiple?: boolean | undefined;
|
|
12979
13022
|
}, {
|
|
12980
13023
|
options?: {
|
|
12981
13024
|
value: string;
|
|
12982
13025
|
label: string;
|
|
12983
13026
|
}[] | undefined;
|
|
13027
|
+
default_value?: string | string[] | undefined;
|
|
12984
13028
|
display?: "radio" | "checkbox" | undefined;
|
|
13029
|
+
multiple?: boolean | undefined;
|
|
12985
13030
|
}>>;
|
|
12986
13031
|
}, "strip", z.ZodTypeAny, {
|
|
12987
13032
|
type: "CHOICE";
|
|
@@ -12994,7 +13039,9 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
12994
13039
|
value: string;
|
|
12995
13040
|
label: string;
|
|
12996
13041
|
}[] | undefined;
|
|
13042
|
+
default_value?: string | string[] | undefined;
|
|
12997
13043
|
display?: "radio" | "checkbox" | undefined;
|
|
13044
|
+
multiple?: boolean | undefined;
|
|
12998
13045
|
} | undefined;
|
|
12999
13046
|
sensitive?: boolean | undefined;
|
|
13000
13047
|
label?: string | undefined;
|
|
@@ -13010,7 +13057,9 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13010
13057
|
value: string;
|
|
13011
13058
|
label: string;
|
|
13012
13059
|
}[] | undefined;
|
|
13060
|
+
default_value?: string | string[] | undefined;
|
|
13013
13061
|
display?: "radio" | "checkbox" | undefined;
|
|
13062
|
+
multiple?: boolean | undefined;
|
|
13014
13063
|
} | undefined;
|
|
13015
13064
|
sensitive?: boolean | undefined;
|
|
13016
13065
|
label?: string | undefined;
|
|
@@ -13033,10 +13082,16 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13033
13082
|
config: z.ZodObject<{
|
|
13034
13083
|
component: z.ZodOptional<z.ZodString>;
|
|
13035
13084
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13085
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13086
|
+
code: z.ZodOptional<z.ZodString>;
|
|
13036
13087
|
}, "strip", z.ZodTypeAny, {
|
|
13088
|
+
code?: string | undefined;
|
|
13089
|
+
schema?: Record<string, any> | undefined;
|
|
13037
13090
|
component?: string | undefined;
|
|
13038
13091
|
props?: Record<string, any> | undefined;
|
|
13039
13092
|
}, {
|
|
13093
|
+
code?: string | undefined;
|
|
13094
|
+
schema?: Record<string, any> | undefined;
|
|
13040
13095
|
component?: string | undefined;
|
|
13041
13096
|
props?: Record<string, any> | undefined;
|
|
13042
13097
|
}>;
|
|
@@ -13044,6 +13099,8 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13044
13099
|
type: "CUSTOM";
|
|
13045
13100
|
id: string;
|
|
13046
13101
|
config: {
|
|
13102
|
+
code?: string | undefined;
|
|
13103
|
+
schema?: Record<string, any> | undefined;
|
|
13047
13104
|
component?: string | undefined;
|
|
13048
13105
|
props?: Record<string, any> | undefined;
|
|
13049
13106
|
};
|
|
@@ -13058,6 +13115,8 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13058
13115
|
type: "CUSTOM";
|
|
13059
13116
|
id: string;
|
|
13060
13117
|
config: {
|
|
13118
|
+
code?: string | undefined;
|
|
13119
|
+
schema?: Record<string, any> | undefined;
|
|
13061
13120
|
component?: string | undefined;
|
|
13062
13121
|
props?: Record<string, any> | undefined;
|
|
13063
13122
|
};
|
|
@@ -13150,12 +13209,19 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13150
13209
|
}>, "many">>;
|
|
13151
13210
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
13152
13211
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
13212
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
13213
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
13214
|
+
z.ZodString,
|
|
13215
|
+
z.ZodArray<z.ZodString, "many">
|
|
13216
|
+
]>>;
|
|
13153
13217
|
}, "strip", z.ZodTypeAny, {
|
|
13154
13218
|
options?: {
|
|
13155
13219
|
value: string;
|
|
13156
13220
|
label: string;
|
|
13157
13221
|
}[] | undefined;
|
|
13158
13222
|
placeholder?: string | undefined;
|
|
13223
|
+
default_value?: string | string[] | undefined;
|
|
13224
|
+
multiple?: boolean | undefined;
|
|
13159
13225
|
searchable?: boolean | undefined;
|
|
13160
13226
|
}, {
|
|
13161
13227
|
options?: {
|
|
@@ -13163,6 +13229,8 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13163
13229
|
label: string;
|
|
13164
13230
|
}[] | undefined;
|
|
13165
13231
|
placeholder?: string | undefined;
|
|
13232
|
+
default_value?: string | string[] | undefined;
|
|
13233
|
+
multiple?: boolean | undefined;
|
|
13166
13234
|
searchable?: boolean | undefined;
|
|
13167
13235
|
}>>;
|
|
13168
13236
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -13177,6 +13245,8 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13177
13245
|
label: string;
|
|
13178
13246
|
}[] | undefined;
|
|
13179
13247
|
placeholder?: string | undefined;
|
|
13248
|
+
default_value?: string | string[] | undefined;
|
|
13249
|
+
multiple?: boolean | undefined;
|
|
13180
13250
|
searchable?: boolean | undefined;
|
|
13181
13251
|
} | undefined;
|
|
13182
13252
|
sensitive?: boolean | undefined;
|
|
@@ -13194,6 +13264,8 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13194
13264
|
label: string;
|
|
13195
13265
|
}[] | undefined;
|
|
13196
13266
|
placeholder?: string | undefined;
|
|
13267
|
+
default_value?: string | string[] | undefined;
|
|
13268
|
+
multiple?: boolean | undefined;
|
|
13197
13269
|
searchable?: boolean | undefined;
|
|
13198
13270
|
} | undefined;
|
|
13199
13271
|
sensitive?: boolean | undefined;
|
|
@@ -13265,13 +13337,13 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13265
13337
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
13266
13338
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
13267
13339
|
}, "strip", z.ZodTypeAny, {
|
|
13340
|
+
multiple?: boolean | undefined;
|
|
13268
13341
|
accept?: string | undefined;
|
|
13269
13342
|
max_size?: number | undefined;
|
|
13270
|
-
multiple?: boolean | undefined;
|
|
13271
13343
|
}, {
|
|
13344
|
+
multiple?: boolean | undefined;
|
|
13272
13345
|
accept?: string | undefined;
|
|
13273
13346
|
max_size?: number | undefined;
|
|
13274
|
-
multiple?: boolean | undefined;
|
|
13275
13347
|
}>>;
|
|
13276
13348
|
}, "strip", z.ZodTypeAny, {
|
|
13277
13349
|
type: "FILE";
|
|
@@ -13280,9 +13352,9 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13280
13352
|
required?: boolean | undefined;
|
|
13281
13353
|
category?: "FIELD" | undefined;
|
|
13282
13354
|
config?: {
|
|
13355
|
+
multiple?: boolean | undefined;
|
|
13283
13356
|
accept?: string | undefined;
|
|
13284
13357
|
max_size?: number | undefined;
|
|
13285
|
-
multiple?: boolean | undefined;
|
|
13286
13358
|
} | undefined;
|
|
13287
13359
|
sensitive?: boolean | undefined;
|
|
13288
13360
|
label?: string | undefined;
|
|
@@ -13294,9 +13366,9 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13294
13366
|
required?: boolean | undefined;
|
|
13295
13367
|
category?: "FIELD" | undefined;
|
|
13296
13368
|
config?: {
|
|
13369
|
+
multiple?: boolean | undefined;
|
|
13297
13370
|
accept?: string | undefined;
|
|
13298
13371
|
max_size?: number | undefined;
|
|
13299
|
-
multiple?: boolean | undefined;
|
|
13300
13372
|
} | undefined;
|
|
13301
13373
|
sensitive?: boolean | undefined;
|
|
13302
13374
|
label?: string | undefined;
|
|
@@ -14361,18 +14433,27 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14361
14433
|
"radio",
|
|
14362
14434
|
"checkbox"
|
|
14363
14435
|
]>>;
|
|
14436
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
14437
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
14438
|
+
z.ZodString,
|
|
14439
|
+
z.ZodArray<z.ZodString, "many">
|
|
14440
|
+
]>>;
|
|
14364
14441
|
}, "strip", z.ZodTypeAny, {
|
|
14365
14442
|
options?: {
|
|
14366
14443
|
value: string;
|
|
14367
14444
|
label: string;
|
|
14368
14445
|
}[] | undefined;
|
|
14446
|
+
default_value?: string | string[] | undefined;
|
|
14369
14447
|
display?: "radio" | "checkbox" | undefined;
|
|
14448
|
+
multiple?: boolean | undefined;
|
|
14370
14449
|
}, {
|
|
14371
14450
|
options?: {
|
|
14372
14451
|
value: string;
|
|
14373
14452
|
label: string;
|
|
14374
14453
|
}[] | undefined;
|
|
14454
|
+
default_value?: string | string[] | undefined;
|
|
14375
14455
|
display?: "radio" | "checkbox" | undefined;
|
|
14456
|
+
multiple?: boolean | undefined;
|
|
14376
14457
|
}>>;
|
|
14377
14458
|
}, "strip", z.ZodTypeAny, {
|
|
14378
14459
|
type: "CHOICE";
|
|
@@ -14385,7 +14466,9 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14385
14466
|
value: string;
|
|
14386
14467
|
label: string;
|
|
14387
14468
|
}[] | undefined;
|
|
14469
|
+
default_value?: string | string[] | undefined;
|
|
14388
14470
|
display?: "radio" | "checkbox" | undefined;
|
|
14471
|
+
multiple?: boolean | undefined;
|
|
14389
14472
|
} | undefined;
|
|
14390
14473
|
sensitive?: boolean | undefined;
|
|
14391
14474
|
label?: string | undefined;
|
|
@@ -14401,7 +14484,9 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14401
14484
|
value: string;
|
|
14402
14485
|
label: string;
|
|
14403
14486
|
}[] | undefined;
|
|
14487
|
+
default_value?: string | string[] | undefined;
|
|
14404
14488
|
display?: "radio" | "checkbox" | undefined;
|
|
14489
|
+
multiple?: boolean | undefined;
|
|
14405
14490
|
} | undefined;
|
|
14406
14491
|
sensitive?: boolean | undefined;
|
|
14407
14492
|
label?: string | undefined;
|
|
@@ -14424,10 +14509,16 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14424
14509
|
config: z.ZodObject<{
|
|
14425
14510
|
component: z.ZodOptional<z.ZodString>;
|
|
14426
14511
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
14512
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
14513
|
+
code: z.ZodOptional<z.ZodString>;
|
|
14427
14514
|
}, "strip", z.ZodTypeAny, {
|
|
14515
|
+
code?: string | undefined;
|
|
14516
|
+
schema?: Record<string, any> | undefined;
|
|
14428
14517
|
component?: string | undefined;
|
|
14429
14518
|
props?: Record<string, any> | undefined;
|
|
14430
14519
|
}, {
|
|
14520
|
+
code?: string | undefined;
|
|
14521
|
+
schema?: Record<string, any> | undefined;
|
|
14431
14522
|
component?: string | undefined;
|
|
14432
14523
|
props?: Record<string, any> | undefined;
|
|
14433
14524
|
}>;
|
|
@@ -14435,6 +14526,8 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14435
14526
|
type: "CUSTOM";
|
|
14436
14527
|
id: string;
|
|
14437
14528
|
config: {
|
|
14529
|
+
code?: string | undefined;
|
|
14530
|
+
schema?: Record<string, any> | undefined;
|
|
14438
14531
|
component?: string | undefined;
|
|
14439
14532
|
props?: Record<string, any> | undefined;
|
|
14440
14533
|
};
|
|
@@ -14449,6 +14542,8 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14449
14542
|
type: "CUSTOM";
|
|
14450
14543
|
id: string;
|
|
14451
14544
|
config: {
|
|
14545
|
+
code?: string | undefined;
|
|
14546
|
+
schema?: Record<string, any> | undefined;
|
|
14452
14547
|
component?: string | undefined;
|
|
14453
14548
|
props?: Record<string, any> | undefined;
|
|
14454
14549
|
};
|
|
@@ -14541,12 +14636,19 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14541
14636
|
}>, "many">>;
|
|
14542
14637
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
14543
14638
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
14639
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
14640
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
14641
|
+
z.ZodString,
|
|
14642
|
+
z.ZodArray<z.ZodString, "many">
|
|
14643
|
+
]>>;
|
|
14544
14644
|
}, "strip", z.ZodTypeAny, {
|
|
14545
14645
|
options?: {
|
|
14546
14646
|
value: string;
|
|
14547
14647
|
label: string;
|
|
14548
14648
|
}[] | undefined;
|
|
14549
14649
|
placeholder?: string | undefined;
|
|
14650
|
+
default_value?: string | string[] | undefined;
|
|
14651
|
+
multiple?: boolean | undefined;
|
|
14550
14652
|
searchable?: boolean | undefined;
|
|
14551
14653
|
}, {
|
|
14552
14654
|
options?: {
|
|
@@ -14554,6 +14656,8 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14554
14656
|
label: string;
|
|
14555
14657
|
}[] | undefined;
|
|
14556
14658
|
placeholder?: string | undefined;
|
|
14659
|
+
default_value?: string | string[] | undefined;
|
|
14660
|
+
multiple?: boolean | undefined;
|
|
14557
14661
|
searchable?: boolean | undefined;
|
|
14558
14662
|
}>>;
|
|
14559
14663
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14568,6 +14672,8 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14568
14672
|
label: string;
|
|
14569
14673
|
}[] | undefined;
|
|
14570
14674
|
placeholder?: string | undefined;
|
|
14675
|
+
default_value?: string | string[] | undefined;
|
|
14676
|
+
multiple?: boolean | undefined;
|
|
14571
14677
|
searchable?: boolean | undefined;
|
|
14572
14678
|
} | undefined;
|
|
14573
14679
|
sensitive?: boolean | undefined;
|
|
@@ -14585,6 +14691,8 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14585
14691
|
label: string;
|
|
14586
14692
|
}[] | undefined;
|
|
14587
14693
|
placeholder?: string | undefined;
|
|
14694
|
+
default_value?: string | string[] | undefined;
|
|
14695
|
+
multiple?: boolean | undefined;
|
|
14588
14696
|
searchable?: boolean | undefined;
|
|
14589
14697
|
} | undefined;
|
|
14590
14698
|
sensitive?: boolean | undefined;
|
|
@@ -14656,13 +14764,13 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14656
14764
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
14657
14765
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
14658
14766
|
}, "strip", z.ZodTypeAny, {
|
|
14767
|
+
multiple?: boolean | undefined;
|
|
14659
14768
|
accept?: string | undefined;
|
|
14660
14769
|
max_size?: number | undefined;
|
|
14661
|
-
multiple?: boolean | undefined;
|
|
14662
14770
|
}, {
|
|
14771
|
+
multiple?: boolean | undefined;
|
|
14663
14772
|
accept?: string | undefined;
|
|
14664
14773
|
max_size?: number | undefined;
|
|
14665
|
-
multiple?: boolean | undefined;
|
|
14666
14774
|
}>>;
|
|
14667
14775
|
}, "strip", z.ZodTypeAny, {
|
|
14668
14776
|
type: "FILE";
|
|
@@ -14671,9 +14779,9 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14671
14779
|
required?: boolean | undefined;
|
|
14672
14780
|
category?: "FIELD" | undefined;
|
|
14673
14781
|
config?: {
|
|
14782
|
+
multiple?: boolean | undefined;
|
|
14674
14783
|
accept?: string | undefined;
|
|
14675
14784
|
max_size?: number | undefined;
|
|
14676
|
-
multiple?: boolean | undefined;
|
|
14677
14785
|
} | undefined;
|
|
14678
14786
|
sensitive?: boolean | undefined;
|
|
14679
14787
|
label?: string | undefined;
|
|
@@ -14685,9 +14793,9 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14685
14793
|
required?: boolean | undefined;
|
|
14686
14794
|
category?: "FIELD" | undefined;
|
|
14687
14795
|
config?: {
|
|
14796
|
+
multiple?: boolean | undefined;
|
|
14688
14797
|
accept?: string | undefined;
|
|
14689
14798
|
max_size?: number | undefined;
|
|
14690
|
-
multiple?: boolean | undefined;
|
|
14691
14799
|
} | undefined;
|
|
14692
14800
|
sensitive?: boolean | undefined;
|
|
14693
14801
|
label?: string | undefined;
|
|
@@ -15961,18 +16069,27 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
15961
16069
|
"radio",
|
|
15962
16070
|
"checkbox"
|
|
15963
16071
|
]>>;
|
|
16072
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
16073
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
16074
|
+
z.ZodString,
|
|
16075
|
+
z.ZodArray<z.ZodString, "many">
|
|
16076
|
+
]>>;
|
|
15964
16077
|
}, "strip", z.ZodTypeAny, {
|
|
15965
16078
|
options?: {
|
|
15966
16079
|
value: string;
|
|
15967
16080
|
label: string;
|
|
15968
16081
|
}[] | undefined;
|
|
16082
|
+
default_value?: string | string[] | undefined;
|
|
15969
16083
|
display?: "radio" | "checkbox" | undefined;
|
|
16084
|
+
multiple?: boolean | undefined;
|
|
15970
16085
|
}, {
|
|
15971
16086
|
options?: {
|
|
15972
16087
|
value: string;
|
|
15973
16088
|
label: string;
|
|
15974
16089
|
}[] | undefined;
|
|
16090
|
+
default_value?: string | string[] | undefined;
|
|
15975
16091
|
display?: "radio" | "checkbox" | undefined;
|
|
16092
|
+
multiple?: boolean | undefined;
|
|
15976
16093
|
}>>;
|
|
15977
16094
|
}, "strip", z.ZodTypeAny, {
|
|
15978
16095
|
type: "CHOICE";
|
|
@@ -15985,7 +16102,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
15985
16102
|
value: string;
|
|
15986
16103
|
label: string;
|
|
15987
16104
|
}[] | undefined;
|
|
16105
|
+
default_value?: string | string[] | undefined;
|
|
15988
16106
|
display?: "radio" | "checkbox" | undefined;
|
|
16107
|
+
multiple?: boolean | undefined;
|
|
15989
16108
|
} | undefined;
|
|
15990
16109
|
sensitive?: boolean | undefined;
|
|
15991
16110
|
label?: string | undefined;
|
|
@@ -16001,7 +16120,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16001
16120
|
value: string;
|
|
16002
16121
|
label: string;
|
|
16003
16122
|
}[] | undefined;
|
|
16123
|
+
default_value?: string | string[] | undefined;
|
|
16004
16124
|
display?: "radio" | "checkbox" | undefined;
|
|
16125
|
+
multiple?: boolean | undefined;
|
|
16005
16126
|
} | undefined;
|
|
16006
16127
|
sensitive?: boolean | undefined;
|
|
16007
16128
|
label?: string | undefined;
|
|
@@ -16024,10 +16145,16 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16024
16145
|
config: z.ZodObject<{
|
|
16025
16146
|
component: z.ZodOptional<z.ZodString>;
|
|
16026
16147
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
16148
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
16149
|
+
code: z.ZodOptional<z.ZodString>;
|
|
16027
16150
|
}, "strip", z.ZodTypeAny, {
|
|
16151
|
+
code?: string | undefined;
|
|
16152
|
+
schema?: Record<string, any> | undefined;
|
|
16028
16153
|
component?: string | undefined;
|
|
16029
16154
|
props?: Record<string, any> | undefined;
|
|
16030
16155
|
}, {
|
|
16156
|
+
code?: string | undefined;
|
|
16157
|
+
schema?: Record<string, any> | undefined;
|
|
16031
16158
|
component?: string | undefined;
|
|
16032
16159
|
props?: Record<string, any> | undefined;
|
|
16033
16160
|
}>;
|
|
@@ -16035,6 +16162,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16035
16162
|
type: "CUSTOM";
|
|
16036
16163
|
id: string;
|
|
16037
16164
|
config: {
|
|
16165
|
+
code?: string | undefined;
|
|
16166
|
+
schema?: Record<string, any> | undefined;
|
|
16038
16167
|
component?: string | undefined;
|
|
16039
16168
|
props?: Record<string, any> | undefined;
|
|
16040
16169
|
};
|
|
@@ -16049,6 +16178,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16049
16178
|
type: "CUSTOM";
|
|
16050
16179
|
id: string;
|
|
16051
16180
|
config: {
|
|
16181
|
+
code?: string | undefined;
|
|
16182
|
+
schema?: Record<string, any> | undefined;
|
|
16052
16183
|
component?: string | undefined;
|
|
16053
16184
|
props?: Record<string, any> | undefined;
|
|
16054
16185
|
};
|
|
@@ -16141,12 +16272,19 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16141
16272
|
}>, "many">>;
|
|
16142
16273
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
16143
16274
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
16275
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
16276
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
16277
|
+
z.ZodString,
|
|
16278
|
+
z.ZodArray<z.ZodString, "many">
|
|
16279
|
+
]>>;
|
|
16144
16280
|
}, "strip", z.ZodTypeAny, {
|
|
16145
16281
|
options?: {
|
|
16146
16282
|
value: string;
|
|
16147
16283
|
label: string;
|
|
16148
16284
|
}[] | undefined;
|
|
16149
16285
|
placeholder?: string | undefined;
|
|
16286
|
+
default_value?: string | string[] | undefined;
|
|
16287
|
+
multiple?: boolean | undefined;
|
|
16150
16288
|
searchable?: boolean | undefined;
|
|
16151
16289
|
}, {
|
|
16152
16290
|
options?: {
|
|
@@ -16154,6 +16292,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16154
16292
|
label: string;
|
|
16155
16293
|
}[] | undefined;
|
|
16156
16294
|
placeholder?: string | undefined;
|
|
16295
|
+
default_value?: string | string[] | undefined;
|
|
16296
|
+
multiple?: boolean | undefined;
|
|
16157
16297
|
searchable?: boolean | undefined;
|
|
16158
16298
|
}>>;
|
|
16159
16299
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16168,6 +16308,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16168
16308
|
label: string;
|
|
16169
16309
|
}[] | undefined;
|
|
16170
16310
|
placeholder?: string | undefined;
|
|
16311
|
+
default_value?: string | string[] | undefined;
|
|
16312
|
+
multiple?: boolean | undefined;
|
|
16171
16313
|
searchable?: boolean | undefined;
|
|
16172
16314
|
} | undefined;
|
|
16173
16315
|
sensitive?: boolean | undefined;
|
|
@@ -16185,6 +16327,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16185
16327
|
label: string;
|
|
16186
16328
|
}[] | undefined;
|
|
16187
16329
|
placeholder?: string | undefined;
|
|
16330
|
+
default_value?: string | string[] | undefined;
|
|
16331
|
+
multiple?: boolean | undefined;
|
|
16188
16332
|
searchable?: boolean | undefined;
|
|
16189
16333
|
} | undefined;
|
|
16190
16334
|
sensitive?: boolean | undefined;
|
|
@@ -16256,13 +16400,13 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16256
16400
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
16257
16401
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
16258
16402
|
}, "strip", z.ZodTypeAny, {
|
|
16403
|
+
multiple?: boolean | undefined;
|
|
16259
16404
|
accept?: string | undefined;
|
|
16260
16405
|
max_size?: number | undefined;
|
|
16261
|
-
multiple?: boolean | undefined;
|
|
16262
16406
|
}, {
|
|
16407
|
+
multiple?: boolean | undefined;
|
|
16263
16408
|
accept?: string | undefined;
|
|
16264
16409
|
max_size?: number | undefined;
|
|
16265
|
-
multiple?: boolean | undefined;
|
|
16266
16410
|
}>>;
|
|
16267
16411
|
}, "strip", z.ZodTypeAny, {
|
|
16268
16412
|
type: "FILE";
|
|
@@ -16271,9 +16415,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16271
16415
|
required?: boolean | undefined;
|
|
16272
16416
|
category?: "FIELD" | undefined;
|
|
16273
16417
|
config?: {
|
|
16418
|
+
multiple?: boolean | undefined;
|
|
16274
16419
|
accept?: string | undefined;
|
|
16275
16420
|
max_size?: number | undefined;
|
|
16276
|
-
multiple?: boolean | undefined;
|
|
16277
16421
|
} | undefined;
|
|
16278
16422
|
sensitive?: boolean | undefined;
|
|
16279
16423
|
label?: string | undefined;
|
|
@@ -16285,9 +16429,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16285
16429
|
required?: boolean | undefined;
|
|
16286
16430
|
category?: "FIELD" | undefined;
|
|
16287
16431
|
config?: {
|
|
16432
|
+
multiple?: boolean | undefined;
|
|
16288
16433
|
accept?: string | undefined;
|
|
16289
16434
|
max_size?: number | undefined;
|
|
16290
|
-
multiple?: boolean | undefined;
|
|
16291
16435
|
} | undefined;
|
|
16292
16436
|
sensitive?: boolean | undefined;
|
|
16293
16437
|
label?: string | undefined;
|
|
@@ -16919,7 +17063,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16919
17063
|
value: string;
|
|
16920
17064
|
label: string;
|
|
16921
17065
|
}[] | undefined;
|
|
17066
|
+
default_value?: string | string[] | undefined;
|
|
16922
17067
|
display?: "radio" | "checkbox" | undefined;
|
|
17068
|
+
multiple?: boolean | undefined;
|
|
16923
17069
|
} | undefined;
|
|
16924
17070
|
sensitive?: boolean | undefined;
|
|
16925
17071
|
label?: string | undefined;
|
|
@@ -16929,6 +17075,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16929
17075
|
type: "CUSTOM";
|
|
16930
17076
|
id: string;
|
|
16931
17077
|
config: {
|
|
17078
|
+
code?: string | undefined;
|
|
17079
|
+
schema?: Record<string, any> | undefined;
|
|
16932
17080
|
component?: string | undefined;
|
|
16933
17081
|
props?: Record<string, any> | undefined;
|
|
16934
17082
|
};
|
|
@@ -16966,6 +17114,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16966
17114
|
label: string;
|
|
16967
17115
|
}[] | undefined;
|
|
16968
17116
|
placeholder?: string | undefined;
|
|
17117
|
+
default_value?: string | string[] | undefined;
|
|
17118
|
+
multiple?: boolean | undefined;
|
|
16969
17119
|
searchable?: boolean | undefined;
|
|
16970
17120
|
} | undefined;
|
|
16971
17121
|
sensitive?: boolean | undefined;
|
|
@@ -16992,9 +17142,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16992
17142
|
required?: boolean | undefined;
|
|
16993
17143
|
category?: "FIELD" | undefined;
|
|
16994
17144
|
config?: {
|
|
17145
|
+
multiple?: boolean | undefined;
|
|
16995
17146
|
accept?: string | undefined;
|
|
16996
17147
|
max_size?: number | undefined;
|
|
16997
|
-
multiple?: boolean | undefined;
|
|
16998
17148
|
} | undefined;
|
|
16999
17149
|
sensitive?: boolean | undefined;
|
|
17000
17150
|
label?: string | undefined;
|
|
@@ -17280,7 +17430,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17280
17430
|
value: string;
|
|
17281
17431
|
label: string;
|
|
17282
17432
|
}[] | undefined;
|
|
17433
|
+
default_value?: string | string[] | undefined;
|
|
17283
17434
|
display?: "radio" | "checkbox" | undefined;
|
|
17435
|
+
multiple?: boolean | undefined;
|
|
17284
17436
|
} | undefined;
|
|
17285
17437
|
sensitive?: boolean | undefined;
|
|
17286
17438
|
label?: string | undefined;
|
|
@@ -17291,6 +17443,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17291
17443
|
type: "CUSTOM";
|
|
17292
17444
|
id: string;
|
|
17293
17445
|
config: {
|
|
17446
|
+
code?: string | undefined;
|
|
17447
|
+
schema?: Record<string, any> | undefined;
|
|
17294
17448
|
component?: string | undefined;
|
|
17295
17449
|
props?: Record<string, any> | undefined;
|
|
17296
17450
|
};
|
|
@@ -17327,6 +17481,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17327
17481
|
label: string;
|
|
17328
17482
|
}[] | undefined;
|
|
17329
17483
|
placeholder?: string | undefined;
|
|
17484
|
+
default_value?: string | string[] | undefined;
|
|
17485
|
+
multiple?: boolean | undefined;
|
|
17330
17486
|
searchable?: boolean | undefined;
|
|
17331
17487
|
} | undefined;
|
|
17332
17488
|
sensitive?: boolean | undefined;
|
|
@@ -17353,9 +17509,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17353
17509
|
required?: boolean | undefined;
|
|
17354
17510
|
category?: "FIELD" | undefined;
|
|
17355
17511
|
config?: {
|
|
17512
|
+
multiple?: boolean | undefined;
|
|
17356
17513
|
accept?: string | undefined;
|
|
17357
17514
|
max_size?: number | undefined;
|
|
17358
|
-
multiple?: boolean | undefined;
|
|
17359
17515
|
} | undefined;
|
|
17360
17516
|
sensitive?: boolean | undefined;
|
|
17361
17517
|
label?: string | undefined;
|
|
@@ -17647,7 +17803,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17647
17803
|
value: string;
|
|
17648
17804
|
label: string;
|
|
17649
17805
|
}[] | undefined;
|
|
17806
|
+
default_value?: string | string[] | undefined;
|
|
17650
17807
|
display?: "radio" | "checkbox" | undefined;
|
|
17808
|
+
multiple?: boolean | undefined;
|
|
17651
17809
|
} | undefined;
|
|
17652
17810
|
sensitive?: boolean | undefined;
|
|
17653
17811
|
label?: string | undefined;
|
|
@@ -17657,6 +17815,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17657
17815
|
type: "CUSTOM";
|
|
17658
17816
|
id: string;
|
|
17659
17817
|
config: {
|
|
17818
|
+
code?: string | undefined;
|
|
17819
|
+
schema?: Record<string, any> | undefined;
|
|
17660
17820
|
component?: string | undefined;
|
|
17661
17821
|
props?: Record<string, any> | undefined;
|
|
17662
17822
|
};
|
|
@@ -17694,6 +17854,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17694
17854
|
label: string;
|
|
17695
17855
|
}[] | undefined;
|
|
17696
17856
|
placeholder?: string | undefined;
|
|
17857
|
+
default_value?: string | string[] | undefined;
|
|
17858
|
+
multiple?: boolean | undefined;
|
|
17697
17859
|
searchable?: boolean | undefined;
|
|
17698
17860
|
} | undefined;
|
|
17699
17861
|
sensitive?: boolean | undefined;
|
|
@@ -17720,9 +17882,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17720
17882
|
required?: boolean | undefined;
|
|
17721
17883
|
category?: "FIELD" | undefined;
|
|
17722
17884
|
config?: {
|
|
17885
|
+
multiple?: boolean | undefined;
|
|
17723
17886
|
accept?: string | undefined;
|
|
17724
17887
|
max_size?: number | undefined;
|
|
17725
|
-
multiple?: boolean | undefined;
|
|
17726
17888
|
} | undefined;
|
|
17727
17889
|
sensitive?: boolean | undefined;
|
|
17728
17890
|
label?: string | undefined;
|
|
@@ -18017,7 +18179,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
18017
18179
|
value: string;
|
|
18018
18180
|
label: string;
|
|
18019
18181
|
}[] | undefined;
|
|
18182
|
+
default_value?: string | string[] | undefined;
|
|
18020
18183
|
display?: "radio" | "checkbox" | undefined;
|
|
18184
|
+
multiple?: boolean | undefined;
|
|
18021
18185
|
} | undefined;
|
|
18022
18186
|
sensitive?: boolean | undefined;
|
|
18023
18187
|
label?: string | undefined;
|
|
@@ -18028,6 +18192,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
18028
18192
|
type: "CUSTOM";
|
|
18029
18193
|
id: string;
|
|
18030
18194
|
config: {
|
|
18195
|
+
code?: string | undefined;
|
|
18196
|
+
schema?: Record<string, any> | undefined;
|
|
18031
18197
|
component?: string | undefined;
|
|
18032
18198
|
props?: Record<string, any> | undefined;
|
|
18033
18199
|
};
|
|
@@ -18064,6 +18230,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
18064
18230
|
label: string;
|
|
18065
18231
|
}[] | undefined;
|
|
18066
18232
|
placeholder?: string | undefined;
|
|
18233
|
+
default_value?: string | string[] | undefined;
|
|
18234
|
+
multiple?: boolean | undefined;
|
|
18067
18235
|
searchable?: boolean | undefined;
|
|
18068
18236
|
} | undefined;
|
|
18069
18237
|
sensitive?: boolean | undefined;
|
|
@@ -18090,9 +18258,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
18090
18258
|
required?: boolean | undefined;
|
|
18091
18259
|
category?: "FIELD" | undefined;
|
|
18092
18260
|
config?: {
|
|
18261
|
+
multiple?: boolean | undefined;
|
|
18093
18262
|
accept?: string | undefined;
|
|
18094
18263
|
max_size?: number | undefined;
|
|
18095
|
-
multiple?: boolean | undefined;
|
|
18096
18264
|
} | undefined;
|
|
18097
18265
|
sensitive?: boolean | undefined;
|
|
18098
18266
|
label?: string | undefined;
|
|
@@ -18968,18 +19136,27 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
18968
19136
|
"radio",
|
|
18969
19137
|
"checkbox"
|
|
18970
19138
|
]>>;
|
|
19139
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
19140
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
19141
|
+
z.ZodString,
|
|
19142
|
+
z.ZodArray<z.ZodString, "many">
|
|
19143
|
+
]>>;
|
|
18971
19144
|
}, "strip", z.ZodTypeAny, {
|
|
18972
19145
|
options?: {
|
|
18973
19146
|
value: string;
|
|
18974
19147
|
label: string;
|
|
18975
19148
|
}[] | undefined;
|
|
19149
|
+
default_value?: string | string[] | undefined;
|
|
18976
19150
|
display?: "radio" | "checkbox" | undefined;
|
|
19151
|
+
multiple?: boolean | undefined;
|
|
18977
19152
|
}, {
|
|
18978
19153
|
options?: {
|
|
18979
19154
|
value: string;
|
|
18980
19155
|
label: string;
|
|
18981
19156
|
}[] | undefined;
|
|
19157
|
+
default_value?: string | string[] | undefined;
|
|
18982
19158
|
display?: "radio" | "checkbox" | undefined;
|
|
19159
|
+
multiple?: boolean | undefined;
|
|
18983
19160
|
}>>;
|
|
18984
19161
|
}, "strip", z.ZodTypeAny, {
|
|
18985
19162
|
type: "CHOICE";
|
|
@@ -18992,7 +19169,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
18992
19169
|
value: string;
|
|
18993
19170
|
label: string;
|
|
18994
19171
|
}[] | undefined;
|
|
19172
|
+
default_value?: string | string[] | undefined;
|
|
18995
19173
|
display?: "radio" | "checkbox" | undefined;
|
|
19174
|
+
multiple?: boolean | undefined;
|
|
18996
19175
|
} | undefined;
|
|
18997
19176
|
sensitive?: boolean | undefined;
|
|
18998
19177
|
label?: string | undefined;
|
|
@@ -19008,7 +19187,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19008
19187
|
value: string;
|
|
19009
19188
|
label: string;
|
|
19010
19189
|
}[] | undefined;
|
|
19190
|
+
default_value?: string | string[] | undefined;
|
|
19011
19191
|
display?: "radio" | "checkbox" | undefined;
|
|
19192
|
+
multiple?: boolean | undefined;
|
|
19012
19193
|
} | undefined;
|
|
19013
19194
|
sensitive?: boolean | undefined;
|
|
19014
19195
|
label?: string | undefined;
|
|
@@ -19031,10 +19212,16 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19031
19212
|
config: z.ZodObject<{
|
|
19032
19213
|
component: z.ZodOptional<z.ZodString>;
|
|
19033
19214
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
19215
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
19216
|
+
code: z.ZodOptional<z.ZodString>;
|
|
19034
19217
|
}, "strip", z.ZodTypeAny, {
|
|
19218
|
+
code?: string | undefined;
|
|
19219
|
+
schema?: Record<string, any> | undefined;
|
|
19035
19220
|
component?: string | undefined;
|
|
19036
19221
|
props?: Record<string, any> | undefined;
|
|
19037
19222
|
}, {
|
|
19223
|
+
code?: string | undefined;
|
|
19224
|
+
schema?: Record<string, any> | undefined;
|
|
19038
19225
|
component?: string | undefined;
|
|
19039
19226
|
props?: Record<string, any> | undefined;
|
|
19040
19227
|
}>;
|
|
@@ -19042,6 +19229,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19042
19229
|
type: "CUSTOM";
|
|
19043
19230
|
id: string;
|
|
19044
19231
|
config: {
|
|
19232
|
+
code?: string | undefined;
|
|
19233
|
+
schema?: Record<string, any> | undefined;
|
|
19045
19234
|
component?: string | undefined;
|
|
19046
19235
|
props?: Record<string, any> | undefined;
|
|
19047
19236
|
};
|
|
@@ -19056,6 +19245,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19056
19245
|
type: "CUSTOM";
|
|
19057
19246
|
id: string;
|
|
19058
19247
|
config: {
|
|
19248
|
+
code?: string | undefined;
|
|
19249
|
+
schema?: Record<string, any> | undefined;
|
|
19059
19250
|
component?: string | undefined;
|
|
19060
19251
|
props?: Record<string, any> | undefined;
|
|
19061
19252
|
};
|
|
@@ -19148,12 +19339,19 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19148
19339
|
}>, "many">>;
|
|
19149
19340
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
19150
19341
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
19342
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
19343
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
19344
|
+
z.ZodString,
|
|
19345
|
+
z.ZodArray<z.ZodString, "many">
|
|
19346
|
+
]>>;
|
|
19151
19347
|
}, "strip", z.ZodTypeAny, {
|
|
19152
19348
|
options?: {
|
|
19153
19349
|
value: string;
|
|
19154
19350
|
label: string;
|
|
19155
19351
|
}[] | undefined;
|
|
19156
19352
|
placeholder?: string | undefined;
|
|
19353
|
+
default_value?: string | string[] | undefined;
|
|
19354
|
+
multiple?: boolean | undefined;
|
|
19157
19355
|
searchable?: boolean | undefined;
|
|
19158
19356
|
}, {
|
|
19159
19357
|
options?: {
|
|
@@ -19161,6 +19359,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19161
19359
|
label: string;
|
|
19162
19360
|
}[] | undefined;
|
|
19163
19361
|
placeholder?: string | undefined;
|
|
19362
|
+
default_value?: string | string[] | undefined;
|
|
19363
|
+
multiple?: boolean | undefined;
|
|
19164
19364
|
searchable?: boolean | undefined;
|
|
19165
19365
|
}>>;
|
|
19166
19366
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -19175,6 +19375,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19175
19375
|
label: string;
|
|
19176
19376
|
}[] | undefined;
|
|
19177
19377
|
placeholder?: string | undefined;
|
|
19378
|
+
default_value?: string | string[] | undefined;
|
|
19379
|
+
multiple?: boolean | undefined;
|
|
19178
19380
|
searchable?: boolean | undefined;
|
|
19179
19381
|
} | undefined;
|
|
19180
19382
|
sensitive?: boolean | undefined;
|
|
@@ -19192,6 +19394,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19192
19394
|
label: string;
|
|
19193
19395
|
}[] | undefined;
|
|
19194
19396
|
placeholder?: string | undefined;
|
|
19397
|
+
default_value?: string | string[] | undefined;
|
|
19398
|
+
multiple?: boolean | undefined;
|
|
19195
19399
|
searchable?: boolean | undefined;
|
|
19196
19400
|
} | undefined;
|
|
19197
19401
|
sensitive?: boolean | undefined;
|
|
@@ -19263,13 +19467,13 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19263
19467
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
19264
19468
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
19265
19469
|
}, "strip", z.ZodTypeAny, {
|
|
19470
|
+
multiple?: boolean | undefined;
|
|
19266
19471
|
accept?: string | undefined;
|
|
19267
19472
|
max_size?: number | undefined;
|
|
19268
|
-
multiple?: boolean | undefined;
|
|
19269
19473
|
}, {
|
|
19474
|
+
multiple?: boolean | undefined;
|
|
19270
19475
|
accept?: string | undefined;
|
|
19271
19476
|
max_size?: number | undefined;
|
|
19272
|
-
multiple?: boolean | undefined;
|
|
19273
19477
|
}>>;
|
|
19274
19478
|
}, "strip", z.ZodTypeAny, {
|
|
19275
19479
|
type: "FILE";
|
|
@@ -19278,9 +19482,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19278
19482
|
required?: boolean | undefined;
|
|
19279
19483
|
category?: "FIELD" | undefined;
|
|
19280
19484
|
config?: {
|
|
19485
|
+
multiple?: boolean | undefined;
|
|
19281
19486
|
accept?: string | undefined;
|
|
19282
19487
|
max_size?: number | undefined;
|
|
19283
|
-
multiple?: boolean | undefined;
|
|
19284
19488
|
} | undefined;
|
|
19285
19489
|
sensitive?: boolean | undefined;
|
|
19286
19490
|
label?: string | undefined;
|
|
@@ -19292,9 +19496,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19292
19496
|
required?: boolean | undefined;
|
|
19293
19497
|
category?: "FIELD" | undefined;
|
|
19294
19498
|
config?: {
|
|
19499
|
+
multiple?: boolean | undefined;
|
|
19295
19500
|
accept?: string | undefined;
|
|
19296
19501
|
max_size?: number | undefined;
|
|
19297
|
-
multiple?: boolean | undefined;
|
|
19298
19502
|
} | undefined;
|
|
19299
19503
|
sensitive?: boolean | undefined;
|
|
19300
19504
|
label?: string | undefined;
|
|
@@ -19926,7 +20130,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19926
20130
|
value: string;
|
|
19927
20131
|
label: string;
|
|
19928
20132
|
}[] | undefined;
|
|
20133
|
+
default_value?: string | string[] | undefined;
|
|
19929
20134
|
display?: "radio" | "checkbox" | undefined;
|
|
20135
|
+
multiple?: boolean | undefined;
|
|
19930
20136
|
} | undefined;
|
|
19931
20137
|
sensitive?: boolean | undefined;
|
|
19932
20138
|
label?: string | undefined;
|
|
@@ -19936,6 +20142,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19936
20142
|
type: "CUSTOM";
|
|
19937
20143
|
id: string;
|
|
19938
20144
|
config: {
|
|
20145
|
+
code?: string | undefined;
|
|
20146
|
+
schema?: Record<string, any> | undefined;
|
|
19939
20147
|
component?: string | undefined;
|
|
19940
20148
|
props?: Record<string, any> | undefined;
|
|
19941
20149
|
};
|
|
@@ -19973,6 +20181,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19973
20181
|
label: string;
|
|
19974
20182
|
}[] | undefined;
|
|
19975
20183
|
placeholder?: string | undefined;
|
|
20184
|
+
default_value?: string | string[] | undefined;
|
|
20185
|
+
multiple?: boolean | undefined;
|
|
19976
20186
|
searchable?: boolean | undefined;
|
|
19977
20187
|
} | undefined;
|
|
19978
20188
|
sensitive?: boolean | undefined;
|
|
@@ -19999,9 +20209,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19999
20209
|
required?: boolean | undefined;
|
|
20000
20210
|
category?: "FIELD" | undefined;
|
|
20001
20211
|
config?: {
|
|
20212
|
+
multiple?: boolean | undefined;
|
|
20002
20213
|
accept?: string | undefined;
|
|
20003
20214
|
max_size?: number | undefined;
|
|
20004
|
-
multiple?: boolean | undefined;
|
|
20005
20215
|
} | undefined;
|
|
20006
20216
|
sensitive?: boolean | undefined;
|
|
20007
20217
|
label?: string | undefined;
|
|
@@ -20287,7 +20497,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20287
20497
|
value: string;
|
|
20288
20498
|
label: string;
|
|
20289
20499
|
}[] | undefined;
|
|
20500
|
+
default_value?: string | string[] | undefined;
|
|
20290
20501
|
display?: "radio" | "checkbox" | undefined;
|
|
20502
|
+
multiple?: boolean | undefined;
|
|
20291
20503
|
} | undefined;
|
|
20292
20504
|
sensitive?: boolean | undefined;
|
|
20293
20505
|
label?: string | undefined;
|
|
@@ -20298,6 +20510,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20298
20510
|
type: "CUSTOM";
|
|
20299
20511
|
id: string;
|
|
20300
20512
|
config: {
|
|
20513
|
+
code?: string | undefined;
|
|
20514
|
+
schema?: Record<string, any> | undefined;
|
|
20301
20515
|
component?: string | undefined;
|
|
20302
20516
|
props?: Record<string, any> | undefined;
|
|
20303
20517
|
};
|
|
@@ -20334,6 +20548,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20334
20548
|
label: string;
|
|
20335
20549
|
}[] | undefined;
|
|
20336
20550
|
placeholder?: string | undefined;
|
|
20551
|
+
default_value?: string | string[] | undefined;
|
|
20552
|
+
multiple?: boolean | undefined;
|
|
20337
20553
|
searchable?: boolean | undefined;
|
|
20338
20554
|
} | undefined;
|
|
20339
20555
|
sensitive?: boolean | undefined;
|
|
@@ -20360,9 +20576,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20360
20576
|
required?: boolean | undefined;
|
|
20361
20577
|
category?: "FIELD" | undefined;
|
|
20362
20578
|
config?: {
|
|
20579
|
+
multiple?: boolean | undefined;
|
|
20363
20580
|
accept?: string | undefined;
|
|
20364
20581
|
max_size?: number | undefined;
|
|
20365
|
-
multiple?: boolean | undefined;
|
|
20366
20582
|
} | undefined;
|
|
20367
20583
|
sensitive?: boolean | undefined;
|
|
20368
20584
|
label?: string | undefined;
|
|
@@ -20654,7 +20870,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20654
20870
|
value: string;
|
|
20655
20871
|
label: string;
|
|
20656
20872
|
}[] | undefined;
|
|
20873
|
+
default_value?: string | string[] | undefined;
|
|
20657
20874
|
display?: "radio" | "checkbox" | undefined;
|
|
20875
|
+
multiple?: boolean | undefined;
|
|
20658
20876
|
} | undefined;
|
|
20659
20877
|
sensitive?: boolean | undefined;
|
|
20660
20878
|
label?: string | undefined;
|
|
@@ -20664,6 +20882,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20664
20882
|
type: "CUSTOM";
|
|
20665
20883
|
id: string;
|
|
20666
20884
|
config: {
|
|
20885
|
+
code?: string | undefined;
|
|
20886
|
+
schema?: Record<string, any> | undefined;
|
|
20667
20887
|
component?: string | undefined;
|
|
20668
20888
|
props?: Record<string, any> | undefined;
|
|
20669
20889
|
};
|
|
@@ -20701,6 +20921,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20701
20921
|
label: string;
|
|
20702
20922
|
}[] | undefined;
|
|
20703
20923
|
placeholder?: string | undefined;
|
|
20924
|
+
default_value?: string | string[] | undefined;
|
|
20925
|
+
multiple?: boolean | undefined;
|
|
20704
20926
|
searchable?: boolean | undefined;
|
|
20705
20927
|
} | undefined;
|
|
20706
20928
|
sensitive?: boolean | undefined;
|
|
@@ -20727,9 +20949,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20727
20949
|
required?: boolean | undefined;
|
|
20728
20950
|
category?: "FIELD" | undefined;
|
|
20729
20951
|
config?: {
|
|
20952
|
+
multiple?: boolean | undefined;
|
|
20730
20953
|
accept?: string | undefined;
|
|
20731
20954
|
max_size?: number | undefined;
|
|
20732
|
-
multiple?: boolean | undefined;
|
|
20733
20955
|
} | undefined;
|
|
20734
20956
|
sensitive?: boolean | undefined;
|
|
20735
20957
|
label?: string | undefined;
|
|
@@ -21024,7 +21246,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
21024
21246
|
value: string;
|
|
21025
21247
|
label: string;
|
|
21026
21248
|
}[] | undefined;
|
|
21249
|
+
default_value?: string | string[] | undefined;
|
|
21027
21250
|
display?: "radio" | "checkbox" | undefined;
|
|
21251
|
+
multiple?: boolean | undefined;
|
|
21028
21252
|
} | undefined;
|
|
21029
21253
|
sensitive?: boolean | undefined;
|
|
21030
21254
|
label?: string | undefined;
|
|
@@ -21035,6 +21259,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
21035
21259
|
type: "CUSTOM";
|
|
21036
21260
|
id: string;
|
|
21037
21261
|
config: {
|
|
21262
|
+
code?: string | undefined;
|
|
21263
|
+
schema?: Record<string, any> | undefined;
|
|
21038
21264
|
component?: string | undefined;
|
|
21039
21265
|
props?: Record<string, any> | undefined;
|
|
21040
21266
|
};
|
|
@@ -21071,6 +21297,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
21071
21297
|
label: string;
|
|
21072
21298
|
}[] | undefined;
|
|
21073
21299
|
placeholder?: string | undefined;
|
|
21300
|
+
default_value?: string | string[] | undefined;
|
|
21301
|
+
multiple?: boolean | undefined;
|
|
21074
21302
|
searchable?: boolean | undefined;
|
|
21075
21303
|
} | undefined;
|
|
21076
21304
|
sensitive?: boolean | undefined;
|
|
@@ -21097,9 +21325,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
21097
21325
|
required?: boolean | undefined;
|
|
21098
21326
|
category?: "FIELD" | undefined;
|
|
21099
21327
|
config?: {
|
|
21328
|
+
multiple?: boolean | undefined;
|
|
21100
21329
|
accept?: string | undefined;
|
|
21101
21330
|
max_size?: number | undefined;
|
|
21102
|
-
multiple?: boolean | undefined;
|
|
21103
21331
|
} | undefined;
|
|
21104
21332
|
sensitive?: boolean | undefined;
|
|
21105
21333
|
label?: string | undefined;
|
|
@@ -22006,18 +22234,27 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22006
22234
|
"radio",
|
|
22007
22235
|
"checkbox"
|
|
22008
22236
|
]>>;
|
|
22237
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
22238
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
22239
|
+
z.ZodString,
|
|
22240
|
+
z.ZodArray<z.ZodString, "many">
|
|
22241
|
+
]>>;
|
|
22009
22242
|
}, "strip", z.ZodTypeAny, {
|
|
22010
22243
|
options?: {
|
|
22011
22244
|
value: string;
|
|
22012
22245
|
label: string;
|
|
22013
22246
|
}[] | undefined;
|
|
22247
|
+
default_value?: string | string[] | undefined;
|
|
22014
22248
|
display?: "radio" | "checkbox" | undefined;
|
|
22249
|
+
multiple?: boolean | undefined;
|
|
22015
22250
|
}, {
|
|
22016
22251
|
options?: {
|
|
22017
22252
|
value: string;
|
|
22018
22253
|
label: string;
|
|
22019
22254
|
}[] | undefined;
|
|
22255
|
+
default_value?: string | string[] | undefined;
|
|
22020
22256
|
display?: "radio" | "checkbox" | undefined;
|
|
22257
|
+
multiple?: boolean | undefined;
|
|
22021
22258
|
}>>;
|
|
22022
22259
|
}, "strip", z.ZodTypeAny, {
|
|
22023
22260
|
type: "CHOICE";
|
|
@@ -22030,7 +22267,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22030
22267
|
value: string;
|
|
22031
22268
|
label: string;
|
|
22032
22269
|
}[] | undefined;
|
|
22270
|
+
default_value?: string | string[] | undefined;
|
|
22033
22271
|
display?: "radio" | "checkbox" | undefined;
|
|
22272
|
+
multiple?: boolean | undefined;
|
|
22034
22273
|
} | undefined;
|
|
22035
22274
|
sensitive?: boolean | undefined;
|
|
22036
22275
|
label?: string | undefined;
|
|
@@ -22046,7 +22285,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22046
22285
|
value: string;
|
|
22047
22286
|
label: string;
|
|
22048
22287
|
}[] | undefined;
|
|
22288
|
+
default_value?: string | string[] | undefined;
|
|
22049
22289
|
display?: "radio" | "checkbox" | undefined;
|
|
22290
|
+
multiple?: boolean | undefined;
|
|
22050
22291
|
} | undefined;
|
|
22051
22292
|
sensitive?: boolean | undefined;
|
|
22052
22293
|
label?: string | undefined;
|
|
@@ -22069,10 +22310,16 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22069
22310
|
config: z.ZodObject<{
|
|
22070
22311
|
component: z.ZodOptional<z.ZodString>;
|
|
22071
22312
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
22313
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
22314
|
+
code: z.ZodOptional<z.ZodString>;
|
|
22072
22315
|
}, "strip", z.ZodTypeAny, {
|
|
22316
|
+
code?: string | undefined;
|
|
22317
|
+
schema?: Record<string, any> | undefined;
|
|
22073
22318
|
component?: string | undefined;
|
|
22074
22319
|
props?: Record<string, any> | undefined;
|
|
22075
22320
|
}, {
|
|
22321
|
+
code?: string | undefined;
|
|
22322
|
+
schema?: Record<string, any> | undefined;
|
|
22076
22323
|
component?: string | undefined;
|
|
22077
22324
|
props?: Record<string, any> | undefined;
|
|
22078
22325
|
}>;
|
|
@@ -22080,6 +22327,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22080
22327
|
type: "CUSTOM";
|
|
22081
22328
|
id: string;
|
|
22082
22329
|
config: {
|
|
22330
|
+
code?: string | undefined;
|
|
22331
|
+
schema?: Record<string, any> | undefined;
|
|
22083
22332
|
component?: string | undefined;
|
|
22084
22333
|
props?: Record<string, any> | undefined;
|
|
22085
22334
|
};
|
|
@@ -22094,6 +22343,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22094
22343
|
type: "CUSTOM";
|
|
22095
22344
|
id: string;
|
|
22096
22345
|
config: {
|
|
22346
|
+
code?: string | undefined;
|
|
22347
|
+
schema?: Record<string, any> | undefined;
|
|
22097
22348
|
component?: string | undefined;
|
|
22098
22349
|
props?: Record<string, any> | undefined;
|
|
22099
22350
|
};
|
|
@@ -22186,12 +22437,19 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22186
22437
|
}>, "many">>;
|
|
22187
22438
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
22188
22439
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
22440
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
22441
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
22442
|
+
z.ZodString,
|
|
22443
|
+
z.ZodArray<z.ZodString, "many">
|
|
22444
|
+
]>>;
|
|
22189
22445
|
}, "strip", z.ZodTypeAny, {
|
|
22190
22446
|
options?: {
|
|
22191
22447
|
value: string;
|
|
22192
22448
|
label: string;
|
|
22193
22449
|
}[] | undefined;
|
|
22194
22450
|
placeholder?: string | undefined;
|
|
22451
|
+
default_value?: string | string[] | undefined;
|
|
22452
|
+
multiple?: boolean | undefined;
|
|
22195
22453
|
searchable?: boolean | undefined;
|
|
22196
22454
|
}, {
|
|
22197
22455
|
options?: {
|
|
@@ -22199,6 +22457,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22199
22457
|
label: string;
|
|
22200
22458
|
}[] | undefined;
|
|
22201
22459
|
placeholder?: string | undefined;
|
|
22460
|
+
default_value?: string | string[] | undefined;
|
|
22461
|
+
multiple?: boolean | undefined;
|
|
22202
22462
|
searchable?: boolean | undefined;
|
|
22203
22463
|
}>>;
|
|
22204
22464
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -22213,6 +22473,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22213
22473
|
label: string;
|
|
22214
22474
|
}[] | undefined;
|
|
22215
22475
|
placeholder?: string | undefined;
|
|
22476
|
+
default_value?: string | string[] | undefined;
|
|
22477
|
+
multiple?: boolean | undefined;
|
|
22216
22478
|
searchable?: boolean | undefined;
|
|
22217
22479
|
} | undefined;
|
|
22218
22480
|
sensitive?: boolean | undefined;
|
|
@@ -22230,6 +22492,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22230
22492
|
label: string;
|
|
22231
22493
|
}[] | undefined;
|
|
22232
22494
|
placeholder?: string | undefined;
|
|
22495
|
+
default_value?: string | string[] | undefined;
|
|
22496
|
+
multiple?: boolean | undefined;
|
|
22233
22497
|
searchable?: boolean | undefined;
|
|
22234
22498
|
} | undefined;
|
|
22235
22499
|
sensitive?: boolean | undefined;
|
|
@@ -22301,13 +22565,13 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22301
22565
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
22302
22566
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
22303
22567
|
}, "strip", z.ZodTypeAny, {
|
|
22568
|
+
multiple?: boolean | undefined;
|
|
22304
22569
|
accept?: string | undefined;
|
|
22305
22570
|
max_size?: number | undefined;
|
|
22306
|
-
multiple?: boolean | undefined;
|
|
22307
22571
|
}, {
|
|
22572
|
+
multiple?: boolean | undefined;
|
|
22308
22573
|
accept?: string | undefined;
|
|
22309
22574
|
max_size?: number | undefined;
|
|
22310
|
-
multiple?: boolean | undefined;
|
|
22311
22575
|
}>>;
|
|
22312
22576
|
}, "strip", z.ZodTypeAny, {
|
|
22313
22577
|
type: "FILE";
|
|
@@ -22316,9 +22580,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22316
22580
|
required?: boolean | undefined;
|
|
22317
22581
|
category?: "FIELD" | undefined;
|
|
22318
22582
|
config?: {
|
|
22583
|
+
multiple?: boolean | undefined;
|
|
22319
22584
|
accept?: string | undefined;
|
|
22320
22585
|
max_size?: number | undefined;
|
|
22321
|
-
multiple?: boolean | undefined;
|
|
22322
22586
|
} | undefined;
|
|
22323
22587
|
sensitive?: boolean | undefined;
|
|
22324
22588
|
label?: string | undefined;
|
|
@@ -22330,9 +22594,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22330
22594
|
required?: boolean | undefined;
|
|
22331
22595
|
category?: "FIELD" | undefined;
|
|
22332
22596
|
config?: {
|
|
22597
|
+
multiple?: boolean | undefined;
|
|
22333
22598
|
accept?: string | undefined;
|
|
22334
22599
|
max_size?: number | undefined;
|
|
22335
|
-
multiple?: boolean | undefined;
|
|
22336
22600
|
} | undefined;
|
|
22337
22601
|
sensitive?: boolean | undefined;
|
|
22338
22602
|
label?: string | undefined;
|
|
@@ -22964,7 +23228,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22964
23228
|
value: string;
|
|
22965
23229
|
label: string;
|
|
22966
23230
|
}[] | undefined;
|
|
23231
|
+
default_value?: string | string[] | undefined;
|
|
22967
23232
|
display?: "radio" | "checkbox" | undefined;
|
|
23233
|
+
multiple?: boolean | undefined;
|
|
22968
23234
|
} | undefined;
|
|
22969
23235
|
sensitive?: boolean | undefined;
|
|
22970
23236
|
label?: string | undefined;
|
|
@@ -22974,6 +23240,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22974
23240
|
type: "CUSTOM";
|
|
22975
23241
|
id: string;
|
|
22976
23242
|
config: {
|
|
23243
|
+
code?: string | undefined;
|
|
23244
|
+
schema?: Record<string, any> | undefined;
|
|
22977
23245
|
component?: string | undefined;
|
|
22978
23246
|
props?: Record<string, any> | undefined;
|
|
22979
23247
|
};
|
|
@@ -23011,6 +23279,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23011
23279
|
label: string;
|
|
23012
23280
|
}[] | undefined;
|
|
23013
23281
|
placeholder?: string | undefined;
|
|
23282
|
+
default_value?: string | string[] | undefined;
|
|
23283
|
+
multiple?: boolean | undefined;
|
|
23014
23284
|
searchable?: boolean | undefined;
|
|
23015
23285
|
} | undefined;
|
|
23016
23286
|
sensitive?: boolean | undefined;
|
|
@@ -23037,9 +23307,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23037
23307
|
required?: boolean | undefined;
|
|
23038
23308
|
category?: "FIELD" | undefined;
|
|
23039
23309
|
config?: {
|
|
23310
|
+
multiple?: boolean | undefined;
|
|
23040
23311
|
accept?: string | undefined;
|
|
23041
23312
|
max_size?: number | undefined;
|
|
23042
|
-
multiple?: boolean | undefined;
|
|
23043
23313
|
} | undefined;
|
|
23044
23314
|
sensitive?: boolean | undefined;
|
|
23045
23315
|
label?: string | undefined;
|
|
@@ -23325,7 +23595,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23325
23595
|
value: string;
|
|
23326
23596
|
label: string;
|
|
23327
23597
|
}[] | undefined;
|
|
23598
|
+
default_value?: string | string[] | undefined;
|
|
23328
23599
|
display?: "radio" | "checkbox" | undefined;
|
|
23600
|
+
multiple?: boolean | undefined;
|
|
23329
23601
|
} | undefined;
|
|
23330
23602
|
sensitive?: boolean | undefined;
|
|
23331
23603
|
label?: string | undefined;
|
|
@@ -23336,6 +23608,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23336
23608
|
type: "CUSTOM";
|
|
23337
23609
|
id: string;
|
|
23338
23610
|
config: {
|
|
23611
|
+
code?: string | undefined;
|
|
23612
|
+
schema?: Record<string, any> | undefined;
|
|
23339
23613
|
component?: string | undefined;
|
|
23340
23614
|
props?: Record<string, any> | undefined;
|
|
23341
23615
|
};
|
|
@@ -23372,6 +23646,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23372
23646
|
label: string;
|
|
23373
23647
|
}[] | undefined;
|
|
23374
23648
|
placeholder?: string | undefined;
|
|
23649
|
+
default_value?: string | string[] | undefined;
|
|
23650
|
+
multiple?: boolean | undefined;
|
|
23375
23651
|
searchable?: boolean | undefined;
|
|
23376
23652
|
} | undefined;
|
|
23377
23653
|
sensitive?: boolean | undefined;
|
|
@@ -23398,9 +23674,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23398
23674
|
required?: boolean | undefined;
|
|
23399
23675
|
category?: "FIELD" | undefined;
|
|
23400
23676
|
config?: {
|
|
23677
|
+
multiple?: boolean | undefined;
|
|
23401
23678
|
accept?: string | undefined;
|
|
23402
23679
|
max_size?: number | undefined;
|
|
23403
|
-
multiple?: boolean | undefined;
|
|
23404
23680
|
} | undefined;
|
|
23405
23681
|
sensitive?: boolean | undefined;
|
|
23406
23682
|
label?: string | undefined;
|
|
@@ -23692,7 +23968,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23692
23968
|
value: string;
|
|
23693
23969
|
label: string;
|
|
23694
23970
|
}[] | undefined;
|
|
23971
|
+
default_value?: string | string[] | undefined;
|
|
23695
23972
|
display?: "radio" | "checkbox" | undefined;
|
|
23973
|
+
multiple?: boolean | undefined;
|
|
23696
23974
|
} | undefined;
|
|
23697
23975
|
sensitive?: boolean | undefined;
|
|
23698
23976
|
label?: string | undefined;
|
|
@@ -23702,6 +23980,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23702
23980
|
type: "CUSTOM";
|
|
23703
23981
|
id: string;
|
|
23704
23982
|
config: {
|
|
23983
|
+
code?: string | undefined;
|
|
23984
|
+
schema?: Record<string, any> | undefined;
|
|
23705
23985
|
component?: string | undefined;
|
|
23706
23986
|
props?: Record<string, any> | undefined;
|
|
23707
23987
|
};
|
|
@@ -23739,6 +24019,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23739
24019
|
label: string;
|
|
23740
24020
|
}[] | undefined;
|
|
23741
24021
|
placeholder?: string | undefined;
|
|
24022
|
+
default_value?: string | string[] | undefined;
|
|
24023
|
+
multiple?: boolean | undefined;
|
|
23742
24024
|
searchable?: boolean | undefined;
|
|
23743
24025
|
} | undefined;
|
|
23744
24026
|
sensitive?: boolean | undefined;
|
|
@@ -23765,9 +24047,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23765
24047
|
required?: boolean | undefined;
|
|
23766
24048
|
category?: "FIELD" | undefined;
|
|
23767
24049
|
config?: {
|
|
24050
|
+
multiple?: boolean | undefined;
|
|
23768
24051
|
accept?: string | undefined;
|
|
23769
24052
|
max_size?: number | undefined;
|
|
23770
|
-
multiple?: boolean | undefined;
|
|
23771
24053
|
} | undefined;
|
|
23772
24054
|
sensitive?: boolean | undefined;
|
|
23773
24055
|
label?: string | undefined;
|
|
@@ -24062,7 +24344,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24062
24344
|
value: string;
|
|
24063
24345
|
label: string;
|
|
24064
24346
|
}[] | undefined;
|
|
24347
|
+
default_value?: string | string[] | undefined;
|
|
24065
24348
|
display?: "radio" | "checkbox" | undefined;
|
|
24349
|
+
multiple?: boolean | undefined;
|
|
24066
24350
|
} | undefined;
|
|
24067
24351
|
sensitive?: boolean | undefined;
|
|
24068
24352
|
label?: string | undefined;
|
|
@@ -24073,6 +24357,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24073
24357
|
type: "CUSTOM";
|
|
24074
24358
|
id: string;
|
|
24075
24359
|
config: {
|
|
24360
|
+
code?: string | undefined;
|
|
24361
|
+
schema?: Record<string, any> | undefined;
|
|
24076
24362
|
component?: string | undefined;
|
|
24077
24363
|
props?: Record<string, any> | undefined;
|
|
24078
24364
|
};
|
|
@@ -24109,6 +24395,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24109
24395
|
label: string;
|
|
24110
24396
|
}[] | undefined;
|
|
24111
24397
|
placeholder?: string | undefined;
|
|
24398
|
+
default_value?: string | string[] | undefined;
|
|
24399
|
+
multiple?: boolean | undefined;
|
|
24112
24400
|
searchable?: boolean | undefined;
|
|
24113
24401
|
} | undefined;
|
|
24114
24402
|
sensitive?: boolean | undefined;
|
|
@@ -24135,9 +24423,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24135
24423
|
required?: boolean | undefined;
|
|
24136
24424
|
category?: "FIELD" | undefined;
|
|
24137
24425
|
config?: {
|
|
24426
|
+
multiple?: boolean | undefined;
|
|
24138
24427
|
accept?: string | undefined;
|
|
24139
24428
|
max_size?: number | undefined;
|
|
24140
|
-
multiple?: boolean | undefined;
|
|
24141
24429
|
} | undefined;
|
|
24142
24430
|
sensitive?: boolean | undefined;
|
|
24143
24431
|
label?: string | undefined;
|
|
@@ -24381,6 +24669,16 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24381
24669
|
}, {
|
|
24382
24670
|
css?: string | undefined;
|
|
24383
24671
|
}>>;
|
|
24672
|
+
links: z.ZodOptional<z.ZodObject<{
|
|
24673
|
+
sdkSrc: z.ZodOptional<z.ZodString>;
|
|
24674
|
+
sdk_src: z.ZodOptional<z.ZodString>;
|
|
24675
|
+
}, "strip", z.ZodTypeAny, {
|
|
24676
|
+
sdkSrc?: string | undefined;
|
|
24677
|
+
sdk_src?: string | undefined;
|
|
24678
|
+
}, {
|
|
24679
|
+
sdkSrc?: string | undefined;
|
|
24680
|
+
sdk_src?: string | undefined;
|
|
24681
|
+
}>>;
|
|
24384
24682
|
}, "strip", z.ZodTypeAny, {
|
|
24385
24683
|
name: string;
|
|
24386
24684
|
style?: {
|
|
@@ -24591,7 +24889,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24591
24889
|
value: string;
|
|
24592
24890
|
label: string;
|
|
24593
24891
|
}[] | undefined;
|
|
24892
|
+
default_value?: string | string[] | undefined;
|
|
24594
24893
|
display?: "radio" | "checkbox" | undefined;
|
|
24894
|
+
multiple?: boolean | undefined;
|
|
24595
24895
|
} | undefined;
|
|
24596
24896
|
sensitive?: boolean | undefined;
|
|
24597
24897
|
label?: string | undefined;
|
|
@@ -24601,6 +24901,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24601
24901
|
type: "CUSTOM";
|
|
24602
24902
|
id: string;
|
|
24603
24903
|
config: {
|
|
24904
|
+
code?: string | undefined;
|
|
24905
|
+
schema?: Record<string, any> | undefined;
|
|
24604
24906
|
component?: string | undefined;
|
|
24605
24907
|
props?: Record<string, any> | undefined;
|
|
24606
24908
|
};
|
|
@@ -24638,6 +24940,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24638
24940
|
label: string;
|
|
24639
24941
|
}[] | undefined;
|
|
24640
24942
|
placeholder?: string | undefined;
|
|
24943
|
+
default_value?: string | string[] | undefined;
|
|
24944
|
+
multiple?: boolean | undefined;
|
|
24641
24945
|
searchable?: boolean | undefined;
|
|
24642
24946
|
} | undefined;
|
|
24643
24947
|
sensitive?: boolean | undefined;
|
|
@@ -24664,9 +24968,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24664
24968
|
required?: boolean | undefined;
|
|
24665
24969
|
category?: "FIELD" | undefined;
|
|
24666
24970
|
config?: {
|
|
24971
|
+
multiple?: boolean | undefined;
|
|
24667
24972
|
accept?: string | undefined;
|
|
24668
24973
|
max_size?: number | undefined;
|
|
24669
|
-
multiple?: boolean | undefined;
|
|
24670
24974
|
} | undefined;
|
|
24671
24975
|
sensitive?: boolean | undefined;
|
|
24672
24976
|
label?: string | undefined;
|
|
@@ -24816,6 +25120,10 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24816
25120
|
flow_id?: string | undefined;
|
|
24817
25121
|
} | undefined;
|
|
24818
25122
|
} | undefined;
|
|
25123
|
+
links?: {
|
|
25124
|
+
sdkSrc?: string | undefined;
|
|
25125
|
+
sdk_src?: string | undefined;
|
|
25126
|
+
} | undefined;
|
|
24819
25127
|
messages?: {
|
|
24820
25128
|
custom?: Record<string, any> | undefined;
|
|
24821
25129
|
errors?: Record<string, any> | undefined;
|
|
@@ -25030,7 +25338,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
25030
25338
|
value: string;
|
|
25031
25339
|
label: string;
|
|
25032
25340
|
}[] | undefined;
|
|
25341
|
+
default_value?: string | string[] | undefined;
|
|
25033
25342
|
display?: "radio" | "checkbox" | undefined;
|
|
25343
|
+
multiple?: boolean | undefined;
|
|
25034
25344
|
} | undefined;
|
|
25035
25345
|
sensitive?: boolean | undefined;
|
|
25036
25346
|
label?: string | undefined;
|
|
@@ -25041,6 +25351,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
25041
25351
|
type: "CUSTOM";
|
|
25042
25352
|
id: string;
|
|
25043
25353
|
config: {
|
|
25354
|
+
code?: string | undefined;
|
|
25355
|
+
schema?: Record<string, any> | undefined;
|
|
25044
25356
|
component?: string | undefined;
|
|
25045
25357
|
props?: Record<string, any> | undefined;
|
|
25046
25358
|
};
|
|
@@ -25077,6 +25389,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
25077
25389
|
label: string;
|
|
25078
25390
|
}[] | undefined;
|
|
25079
25391
|
placeholder?: string | undefined;
|
|
25392
|
+
default_value?: string | string[] | undefined;
|
|
25393
|
+
multiple?: boolean | undefined;
|
|
25080
25394
|
searchable?: boolean | undefined;
|
|
25081
25395
|
} | undefined;
|
|
25082
25396
|
sensitive?: boolean | undefined;
|
|
@@ -25103,9 +25417,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
25103
25417
|
required?: boolean | undefined;
|
|
25104
25418
|
category?: "FIELD" | undefined;
|
|
25105
25419
|
config?: {
|
|
25420
|
+
multiple?: boolean | undefined;
|
|
25106
25421
|
accept?: string | undefined;
|
|
25107
25422
|
max_size?: number | undefined;
|
|
25108
|
-
multiple?: boolean | undefined;
|
|
25109
25423
|
} | undefined;
|
|
25110
25424
|
sensitive?: boolean | undefined;
|
|
25111
25425
|
label?: string | undefined;
|
|
@@ -25256,6 +25570,10 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
25256
25570
|
flow_id?: string | undefined;
|
|
25257
25571
|
} | undefined;
|
|
25258
25572
|
} | undefined;
|
|
25573
|
+
links?: {
|
|
25574
|
+
sdkSrc?: string | undefined;
|
|
25575
|
+
sdk_src?: string | undefined;
|
|
25576
|
+
} | undefined;
|
|
25259
25577
|
messages?: {
|
|
25260
25578
|
custom?: Record<string, any> | undefined;
|
|
25261
25579
|
errors?: Record<string, any> | undefined;
|
|
@@ -26029,18 +26347,27 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26029
26347
|
"radio",
|
|
26030
26348
|
"checkbox"
|
|
26031
26349
|
]>>;
|
|
26350
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
26351
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
26352
|
+
z.ZodString,
|
|
26353
|
+
z.ZodArray<z.ZodString, "many">
|
|
26354
|
+
]>>;
|
|
26032
26355
|
}, "strip", z.ZodTypeAny, {
|
|
26033
26356
|
options?: {
|
|
26034
26357
|
value: string;
|
|
26035
26358
|
label: string;
|
|
26036
26359
|
}[] | undefined;
|
|
26360
|
+
default_value?: string | string[] | undefined;
|
|
26037
26361
|
display?: "radio" | "checkbox" | undefined;
|
|
26362
|
+
multiple?: boolean | undefined;
|
|
26038
26363
|
}, {
|
|
26039
26364
|
options?: {
|
|
26040
26365
|
value: string;
|
|
26041
26366
|
label: string;
|
|
26042
26367
|
}[] | undefined;
|
|
26368
|
+
default_value?: string | string[] | undefined;
|
|
26043
26369
|
display?: "radio" | "checkbox" | undefined;
|
|
26370
|
+
multiple?: boolean | undefined;
|
|
26044
26371
|
}>>;
|
|
26045
26372
|
}, "strip", z.ZodTypeAny, {
|
|
26046
26373
|
type: "CHOICE";
|
|
@@ -26053,7 +26380,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26053
26380
|
value: string;
|
|
26054
26381
|
label: string;
|
|
26055
26382
|
}[] | undefined;
|
|
26383
|
+
default_value?: string | string[] | undefined;
|
|
26056
26384
|
display?: "radio" | "checkbox" | undefined;
|
|
26385
|
+
multiple?: boolean | undefined;
|
|
26057
26386
|
} | undefined;
|
|
26058
26387
|
sensitive?: boolean | undefined;
|
|
26059
26388
|
label?: string | undefined;
|
|
@@ -26069,7 +26398,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26069
26398
|
value: string;
|
|
26070
26399
|
label: string;
|
|
26071
26400
|
}[] | undefined;
|
|
26401
|
+
default_value?: string | string[] | undefined;
|
|
26072
26402
|
display?: "radio" | "checkbox" | undefined;
|
|
26403
|
+
multiple?: boolean | undefined;
|
|
26073
26404
|
} | undefined;
|
|
26074
26405
|
sensitive?: boolean | undefined;
|
|
26075
26406
|
label?: string | undefined;
|
|
@@ -26092,10 +26423,16 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26092
26423
|
config: z.ZodObject<{
|
|
26093
26424
|
component: z.ZodOptional<z.ZodString>;
|
|
26094
26425
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
26426
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
26427
|
+
code: z.ZodOptional<z.ZodString>;
|
|
26095
26428
|
}, "strip", z.ZodTypeAny, {
|
|
26429
|
+
code?: string | undefined;
|
|
26430
|
+
schema?: Record<string, any> | undefined;
|
|
26096
26431
|
component?: string | undefined;
|
|
26097
26432
|
props?: Record<string, any> | undefined;
|
|
26098
26433
|
}, {
|
|
26434
|
+
code?: string | undefined;
|
|
26435
|
+
schema?: Record<string, any> | undefined;
|
|
26099
26436
|
component?: string | undefined;
|
|
26100
26437
|
props?: Record<string, any> | undefined;
|
|
26101
26438
|
}>;
|
|
@@ -26103,6 +26440,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26103
26440
|
type: "CUSTOM";
|
|
26104
26441
|
id: string;
|
|
26105
26442
|
config: {
|
|
26443
|
+
code?: string | undefined;
|
|
26444
|
+
schema?: Record<string, any> | undefined;
|
|
26106
26445
|
component?: string | undefined;
|
|
26107
26446
|
props?: Record<string, any> | undefined;
|
|
26108
26447
|
};
|
|
@@ -26117,6 +26456,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26117
26456
|
type: "CUSTOM";
|
|
26118
26457
|
id: string;
|
|
26119
26458
|
config: {
|
|
26459
|
+
code?: string | undefined;
|
|
26460
|
+
schema?: Record<string, any> | undefined;
|
|
26120
26461
|
component?: string | undefined;
|
|
26121
26462
|
props?: Record<string, any> | undefined;
|
|
26122
26463
|
};
|
|
@@ -26209,12 +26550,19 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26209
26550
|
}>, "many">>;
|
|
26210
26551
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
26211
26552
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
26553
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
26554
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
26555
|
+
z.ZodString,
|
|
26556
|
+
z.ZodArray<z.ZodString, "many">
|
|
26557
|
+
]>>;
|
|
26212
26558
|
}, "strip", z.ZodTypeAny, {
|
|
26213
26559
|
options?: {
|
|
26214
26560
|
value: string;
|
|
26215
26561
|
label: string;
|
|
26216
26562
|
}[] | undefined;
|
|
26217
26563
|
placeholder?: string | undefined;
|
|
26564
|
+
default_value?: string | string[] | undefined;
|
|
26565
|
+
multiple?: boolean | undefined;
|
|
26218
26566
|
searchable?: boolean | undefined;
|
|
26219
26567
|
}, {
|
|
26220
26568
|
options?: {
|
|
@@ -26222,6 +26570,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26222
26570
|
label: string;
|
|
26223
26571
|
}[] | undefined;
|
|
26224
26572
|
placeholder?: string | undefined;
|
|
26573
|
+
default_value?: string | string[] | undefined;
|
|
26574
|
+
multiple?: boolean | undefined;
|
|
26225
26575
|
searchable?: boolean | undefined;
|
|
26226
26576
|
}>>;
|
|
26227
26577
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -26236,6 +26586,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26236
26586
|
label: string;
|
|
26237
26587
|
}[] | undefined;
|
|
26238
26588
|
placeholder?: string | undefined;
|
|
26589
|
+
default_value?: string | string[] | undefined;
|
|
26590
|
+
multiple?: boolean | undefined;
|
|
26239
26591
|
searchable?: boolean | undefined;
|
|
26240
26592
|
} | undefined;
|
|
26241
26593
|
sensitive?: boolean | undefined;
|
|
@@ -26253,6 +26605,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26253
26605
|
label: string;
|
|
26254
26606
|
}[] | undefined;
|
|
26255
26607
|
placeholder?: string | undefined;
|
|
26608
|
+
default_value?: string | string[] | undefined;
|
|
26609
|
+
multiple?: boolean | undefined;
|
|
26256
26610
|
searchable?: boolean | undefined;
|
|
26257
26611
|
} | undefined;
|
|
26258
26612
|
sensitive?: boolean | undefined;
|
|
@@ -26324,13 +26678,13 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26324
26678
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
26325
26679
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
26326
26680
|
}, "strip", z.ZodTypeAny, {
|
|
26681
|
+
multiple?: boolean | undefined;
|
|
26327
26682
|
accept?: string | undefined;
|
|
26328
26683
|
max_size?: number | undefined;
|
|
26329
|
-
multiple?: boolean | undefined;
|
|
26330
26684
|
}, {
|
|
26685
|
+
multiple?: boolean | undefined;
|
|
26331
26686
|
accept?: string | undefined;
|
|
26332
26687
|
max_size?: number | undefined;
|
|
26333
|
-
multiple?: boolean | undefined;
|
|
26334
26688
|
}>>;
|
|
26335
26689
|
}, "strip", z.ZodTypeAny, {
|
|
26336
26690
|
type: "FILE";
|
|
@@ -26339,9 +26693,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26339
26693
|
required?: boolean | undefined;
|
|
26340
26694
|
category?: "FIELD" | undefined;
|
|
26341
26695
|
config?: {
|
|
26696
|
+
multiple?: boolean | undefined;
|
|
26342
26697
|
accept?: string | undefined;
|
|
26343
26698
|
max_size?: number | undefined;
|
|
26344
|
-
multiple?: boolean | undefined;
|
|
26345
26699
|
} | undefined;
|
|
26346
26700
|
sensitive?: boolean | undefined;
|
|
26347
26701
|
label?: string | undefined;
|
|
@@ -26353,9 +26707,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26353
26707
|
required?: boolean | undefined;
|
|
26354
26708
|
category?: "FIELD" | undefined;
|
|
26355
26709
|
config?: {
|
|
26710
|
+
multiple?: boolean | undefined;
|
|
26356
26711
|
accept?: string | undefined;
|
|
26357
26712
|
max_size?: number | undefined;
|
|
26358
|
-
multiple?: boolean | undefined;
|
|
26359
26713
|
} | undefined;
|
|
26360
26714
|
sensitive?: boolean | undefined;
|
|
26361
26715
|
label?: string | undefined;
|
|
@@ -26987,7 +27341,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26987
27341
|
value: string;
|
|
26988
27342
|
label: string;
|
|
26989
27343
|
}[] | undefined;
|
|
27344
|
+
default_value?: string | string[] | undefined;
|
|
26990
27345
|
display?: "radio" | "checkbox" | undefined;
|
|
27346
|
+
multiple?: boolean | undefined;
|
|
26991
27347
|
} | undefined;
|
|
26992
27348
|
sensitive?: boolean | undefined;
|
|
26993
27349
|
label?: string | undefined;
|
|
@@ -26997,6 +27353,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26997
27353
|
type: "CUSTOM";
|
|
26998
27354
|
id: string;
|
|
26999
27355
|
config: {
|
|
27356
|
+
code?: string | undefined;
|
|
27357
|
+
schema?: Record<string, any> | undefined;
|
|
27000
27358
|
component?: string | undefined;
|
|
27001
27359
|
props?: Record<string, any> | undefined;
|
|
27002
27360
|
};
|
|
@@ -27034,6 +27392,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27034
27392
|
label: string;
|
|
27035
27393
|
}[] | undefined;
|
|
27036
27394
|
placeholder?: string | undefined;
|
|
27395
|
+
default_value?: string | string[] | undefined;
|
|
27396
|
+
multiple?: boolean | undefined;
|
|
27037
27397
|
searchable?: boolean | undefined;
|
|
27038
27398
|
} | undefined;
|
|
27039
27399
|
sensitive?: boolean | undefined;
|
|
@@ -27060,9 +27420,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27060
27420
|
required?: boolean | undefined;
|
|
27061
27421
|
category?: "FIELD" | undefined;
|
|
27062
27422
|
config?: {
|
|
27423
|
+
multiple?: boolean | undefined;
|
|
27063
27424
|
accept?: string | undefined;
|
|
27064
27425
|
max_size?: number | undefined;
|
|
27065
|
-
multiple?: boolean | undefined;
|
|
27066
27426
|
} | undefined;
|
|
27067
27427
|
sensitive?: boolean | undefined;
|
|
27068
27428
|
label?: string | undefined;
|
|
@@ -27348,7 +27708,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27348
27708
|
value: string;
|
|
27349
27709
|
label: string;
|
|
27350
27710
|
}[] | undefined;
|
|
27711
|
+
default_value?: string | string[] | undefined;
|
|
27351
27712
|
display?: "radio" | "checkbox" | undefined;
|
|
27713
|
+
multiple?: boolean | undefined;
|
|
27352
27714
|
} | undefined;
|
|
27353
27715
|
sensitive?: boolean | undefined;
|
|
27354
27716
|
label?: string | undefined;
|
|
@@ -27359,6 +27721,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27359
27721
|
type: "CUSTOM";
|
|
27360
27722
|
id: string;
|
|
27361
27723
|
config: {
|
|
27724
|
+
code?: string | undefined;
|
|
27725
|
+
schema?: Record<string, any> | undefined;
|
|
27362
27726
|
component?: string | undefined;
|
|
27363
27727
|
props?: Record<string, any> | undefined;
|
|
27364
27728
|
};
|
|
@@ -27395,6 +27759,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27395
27759
|
label: string;
|
|
27396
27760
|
}[] | undefined;
|
|
27397
27761
|
placeholder?: string | undefined;
|
|
27762
|
+
default_value?: string | string[] | undefined;
|
|
27763
|
+
multiple?: boolean | undefined;
|
|
27398
27764
|
searchable?: boolean | undefined;
|
|
27399
27765
|
} | undefined;
|
|
27400
27766
|
sensitive?: boolean | undefined;
|
|
@@ -27421,9 +27787,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27421
27787
|
required?: boolean | undefined;
|
|
27422
27788
|
category?: "FIELD" | undefined;
|
|
27423
27789
|
config?: {
|
|
27790
|
+
multiple?: boolean | undefined;
|
|
27424
27791
|
accept?: string | undefined;
|
|
27425
27792
|
max_size?: number | undefined;
|
|
27426
|
-
multiple?: boolean | undefined;
|
|
27427
27793
|
} | undefined;
|
|
27428
27794
|
sensitive?: boolean | undefined;
|
|
27429
27795
|
label?: string | undefined;
|
|
@@ -27715,7 +28081,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27715
28081
|
value: string;
|
|
27716
28082
|
label: string;
|
|
27717
28083
|
}[] | undefined;
|
|
28084
|
+
default_value?: string | string[] | undefined;
|
|
27718
28085
|
display?: "radio" | "checkbox" | undefined;
|
|
28086
|
+
multiple?: boolean | undefined;
|
|
27719
28087
|
} | undefined;
|
|
27720
28088
|
sensitive?: boolean | undefined;
|
|
27721
28089
|
label?: string | undefined;
|
|
@@ -27725,6 +28093,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27725
28093
|
type: "CUSTOM";
|
|
27726
28094
|
id: string;
|
|
27727
28095
|
config: {
|
|
28096
|
+
code?: string | undefined;
|
|
28097
|
+
schema?: Record<string, any> | undefined;
|
|
27728
28098
|
component?: string | undefined;
|
|
27729
28099
|
props?: Record<string, any> | undefined;
|
|
27730
28100
|
};
|
|
@@ -27762,6 +28132,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27762
28132
|
label: string;
|
|
27763
28133
|
}[] | undefined;
|
|
27764
28134
|
placeholder?: string | undefined;
|
|
28135
|
+
default_value?: string | string[] | undefined;
|
|
28136
|
+
multiple?: boolean | undefined;
|
|
27765
28137
|
searchable?: boolean | undefined;
|
|
27766
28138
|
} | undefined;
|
|
27767
28139
|
sensitive?: boolean | undefined;
|
|
@@ -27788,9 +28160,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27788
28160
|
required?: boolean | undefined;
|
|
27789
28161
|
category?: "FIELD" | undefined;
|
|
27790
28162
|
config?: {
|
|
28163
|
+
multiple?: boolean | undefined;
|
|
27791
28164
|
accept?: string | undefined;
|
|
27792
28165
|
max_size?: number | undefined;
|
|
27793
|
-
multiple?: boolean | undefined;
|
|
27794
28166
|
} | undefined;
|
|
27795
28167
|
sensitive?: boolean | undefined;
|
|
27796
28168
|
label?: string | undefined;
|
|
@@ -28085,7 +28457,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28085
28457
|
value: string;
|
|
28086
28458
|
label: string;
|
|
28087
28459
|
}[] | undefined;
|
|
28460
|
+
default_value?: string | string[] | undefined;
|
|
28088
28461
|
display?: "radio" | "checkbox" | undefined;
|
|
28462
|
+
multiple?: boolean | undefined;
|
|
28089
28463
|
} | undefined;
|
|
28090
28464
|
sensitive?: boolean | undefined;
|
|
28091
28465
|
label?: string | undefined;
|
|
@@ -28096,6 +28470,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28096
28470
|
type: "CUSTOM";
|
|
28097
28471
|
id: string;
|
|
28098
28472
|
config: {
|
|
28473
|
+
code?: string | undefined;
|
|
28474
|
+
schema?: Record<string, any> | undefined;
|
|
28099
28475
|
component?: string | undefined;
|
|
28100
28476
|
props?: Record<string, any> | undefined;
|
|
28101
28477
|
};
|
|
@@ -28132,6 +28508,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28132
28508
|
label: string;
|
|
28133
28509
|
}[] | undefined;
|
|
28134
28510
|
placeholder?: string | undefined;
|
|
28511
|
+
default_value?: string | string[] | undefined;
|
|
28512
|
+
multiple?: boolean | undefined;
|
|
28135
28513
|
searchable?: boolean | undefined;
|
|
28136
28514
|
} | undefined;
|
|
28137
28515
|
sensitive?: boolean | undefined;
|
|
@@ -28158,9 +28536,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28158
28536
|
required?: boolean | undefined;
|
|
28159
28537
|
category?: "FIELD" | undefined;
|
|
28160
28538
|
config?: {
|
|
28539
|
+
multiple?: boolean | undefined;
|
|
28161
28540
|
accept?: string | undefined;
|
|
28162
28541
|
max_size?: number | undefined;
|
|
28163
|
-
multiple?: boolean | undefined;
|
|
28164
28542
|
} | undefined;
|
|
28165
28543
|
sensitive?: boolean | undefined;
|
|
28166
28544
|
label?: string | undefined;
|
|
@@ -28404,6 +28782,16 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28404
28782
|
}, {
|
|
28405
28783
|
css?: string | undefined;
|
|
28406
28784
|
}>>;
|
|
28785
|
+
links: z.ZodOptional<z.ZodObject<{
|
|
28786
|
+
sdkSrc: z.ZodOptional<z.ZodString>;
|
|
28787
|
+
sdk_src: z.ZodOptional<z.ZodString>;
|
|
28788
|
+
}, "strip", z.ZodTypeAny, {
|
|
28789
|
+
sdkSrc?: string | undefined;
|
|
28790
|
+
sdk_src?: string | undefined;
|
|
28791
|
+
}, {
|
|
28792
|
+
sdkSrc?: string | undefined;
|
|
28793
|
+
sdk_src?: string | undefined;
|
|
28794
|
+
}>>;
|
|
28407
28795
|
created_at: z.ZodString;
|
|
28408
28796
|
updated_at: z.ZodString;
|
|
28409
28797
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -28619,7 +29007,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28619
29007
|
value: string;
|
|
28620
29008
|
label: string;
|
|
28621
29009
|
}[] | undefined;
|
|
29010
|
+
default_value?: string | string[] | undefined;
|
|
28622
29011
|
display?: "radio" | "checkbox" | undefined;
|
|
29012
|
+
multiple?: boolean | undefined;
|
|
28623
29013
|
} | undefined;
|
|
28624
29014
|
sensitive?: boolean | undefined;
|
|
28625
29015
|
label?: string | undefined;
|
|
@@ -28629,6 +29019,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28629
29019
|
type: "CUSTOM";
|
|
28630
29020
|
id: string;
|
|
28631
29021
|
config: {
|
|
29022
|
+
code?: string | undefined;
|
|
29023
|
+
schema?: Record<string, any> | undefined;
|
|
28632
29024
|
component?: string | undefined;
|
|
28633
29025
|
props?: Record<string, any> | undefined;
|
|
28634
29026
|
};
|
|
@@ -28666,6 +29058,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28666
29058
|
label: string;
|
|
28667
29059
|
}[] | undefined;
|
|
28668
29060
|
placeholder?: string | undefined;
|
|
29061
|
+
default_value?: string | string[] | undefined;
|
|
29062
|
+
multiple?: boolean | undefined;
|
|
28669
29063
|
searchable?: boolean | undefined;
|
|
28670
29064
|
} | undefined;
|
|
28671
29065
|
sensitive?: boolean | undefined;
|
|
@@ -28692,9 +29086,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28692
29086
|
required?: boolean | undefined;
|
|
28693
29087
|
category?: "FIELD" | undefined;
|
|
28694
29088
|
config?: {
|
|
29089
|
+
multiple?: boolean | undefined;
|
|
28695
29090
|
accept?: string | undefined;
|
|
28696
29091
|
max_size?: number | undefined;
|
|
28697
|
-
multiple?: boolean | undefined;
|
|
28698
29092
|
} | undefined;
|
|
28699
29093
|
sensitive?: boolean | undefined;
|
|
28700
29094
|
label?: string | undefined;
|
|
@@ -28844,6 +29238,10 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28844
29238
|
flow_id?: string | undefined;
|
|
28845
29239
|
} | undefined;
|
|
28846
29240
|
} | undefined;
|
|
29241
|
+
links?: {
|
|
29242
|
+
sdkSrc?: string | undefined;
|
|
29243
|
+
sdk_src?: string | undefined;
|
|
29244
|
+
} | undefined;
|
|
28847
29245
|
messages?: {
|
|
28848
29246
|
custom?: Record<string, any> | undefined;
|
|
28849
29247
|
errors?: Record<string, any> | undefined;
|
|
@@ -29061,7 +29459,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
29061
29459
|
value: string;
|
|
29062
29460
|
label: string;
|
|
29063
29461
|
}[] | undefined;
|
|
29462
|
+
default_value?: string | string[] | undefined;
|
|
29064
29463
|
display?: "radio" | "checkbox" | undefined;
|
|
29464
|
+
multiple?: boolean | undefined;
|
|
29065
29465
|
} | undefined;
|
|
29066
29466
|
sensitive?: boolean | undefined;
|
|
29067
29467
|
label?: string | undefined;
|
|
@@ -29072,6 +29472,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
29072
29472
|
type: "CUSTOM";
|
|
29073
29473
|
id: string;
|
|
29074
29474
|
config: {
|
|
29475
|
+
code?: string | undefined;
|
|
29476
|
+
schema?: Record<string, any> | undefined;
|
|
29075
29477
|
component?: string | undefined;
|
|
29076
29478
|
props?: Record<string, any> | undefined;
|
|
29077
29479
|
};
|
|
@@ -29108,6 +29510,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
29108
29510
|
label: string;
|
|
29109
29511
|
}[] | undefined;
|
|
29110
29512
|
placeholder?: string | undefined;
|
|
29513
|
+
default_value?: string | string[] | undefined;
|
|
29514
|
+
multiple?: boolean | undefined;
|
|
29111
29515
|
searchable?: boolean | undefined;
|
|
29112
29516
|
} | undefined;
|
|
29113
29517
|
sensitive?: boolean | undefined;
|
|
@@ -29134,9 +29538,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
29134
29538
|
required?: boolean | undefined;
|
|
29135
29539
|
category?: "FIELD" | undefined;
|
|
29136
29540
|
config?: {
|
|
29541
|
+
multiple?: boolean | undefined;
|
|
29137
29542
|
accept?: string | undefined;
|
|
29138
29543
|
max_size?: number | undefined;
|
|
29139
|
-
multiple?: boolean | undefined;
|
|
29140
29544
|
} | undefined;
|
|
29141
29545
|
sensitive?: boolean | undefined;
|
|
29142
29546
|
label?: string | undefined;
|
|
@@ -29287,6 +29691,10 @@ export declare const formSchema: z.ZodObject<{
|
|
|
29287
29691
|
flow_id?: string | undefined;
|
|
29288
29692
|
} | undefined;
|
|
29289
29693
|
} | undefined;
|
|
29694
|
+
links?: {
|
|
29695
|
+
sdkSrc?: string | undefined;
|
|
29696
|
+
sdk_src?: string | undefined;
|
|
29697
|
+
} | undefined;
|
|
29290
29698
|
messages?: {
|
|
29291
29699
|
custom?: Record<string, any> | undefined;
|
|
29292
29700
|
errors?: Record<string, any> | undefined;
|
|
@@ -29947,18 +30355,27 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
29947
30355
|
"radio",
|
|
29948
30356
|
"checkbox"
|
|
29949
30357
|
]>>;
|
|
30358
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
30359
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
30360
|
+
z.ZodString,
|
|
30361
|
+
z.ZodArray<z.ZodString, "many">
|
|
30362
|
+
]>>;
|
|
29950
30363
|
}, "strip", z.ZodTypeAny, {
|
|
29951
30364
|
options?: {
|
|
29952
30365
|
value: string;
|
|
29953
30366
|
label: string;
|
|
29954
30367
|
}[] | undefined;
|
|
30368
|
+
default_value?: string | string[] | undefined;
|
|
29955
30369
|
display?: "radio" | "checkbox" | undefined;
|
|
30370
|
+
multiple?: boolean | undefined;
|
|
29956
30371
|
}, {
|
|
29957
30372
|
options?: {
|
|
29958
30373
|
value: string;
|
|
29959
30374
|
label: string;
|
|
29960
30375
|
}[] | undefined;
|
|
30376
|
+
default_value?: string | string[] | undefined;
|
|
29961
30377
|
display?: "radio" | "checkbox" | undefined;
|
|
30378
|
+
multiple?: boolean | undefined;
|
|
29962
30379
|
}>>;
|
|
29963
30380
|
}, "strip", z.ZodTypeAny, {
|
|
29964
30381
|
type: "CHOICE";
|
|
@@ -29971,7 +30388,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
29971
30388
|
value: string;
|
|
29972
30389
|
label: string;
|
|
29973
30390
|
}[] | undefined;
|
|
30391
|
+
default_value?: string | string[] | undefined;
|
|
29974
30392
|
display?: "radio" | "checkbox" | undefined;
|
|
30393
|
+
multiple?: boolean | undefined;
|
|
29975
30394
|
} | undefined;
|
|
29976
30395
|
sensitive?: boolean | undefined;
|
|
29977
30396
|
label?: string | undefined;
|
|
@@ -29987,7 +30406,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
29987
30406
|
value: string;
|
|
29988
30407
|
label: string;
|
|
29989
30408
|
}[] | undefined;
|
|
30409
|
+
default_value?: string | string[] | undefined;
|
|
29990
30410
|
display?: "radio" | "checkbox" | undefined;
|
|
30411
|
+
multiple?: boolean | undefined;
|
|
29991
30412
|
} | undefined;
|
|
29992
30413
|
sensitive?: boolean | undefined;
|
|
29993
30414
|
label?: string | undefined;
|
|
@@ -30010,10 +30431,16 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30010
30431
|
config: z.ZodObject<{
|
|
30011
30432
|
component: z.ZodOptional<z.ZodString>;
|
|
30012
30433
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
30434
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
30435
|
+
code: z.ZodOptional<z.ZodString>;
|
|
30013
30436
|
}, "strip", z.ZodTypeAny, {
|
|
30437
|
+
code?: string | undefined;
|
|
30438
|
+
schema?: Record<string, any> | undefined;
|
|
30014
30439
|
component?: string | undefined;
|
|
30015
30440
|
props?: Record<string, any> | undefined;
|
|
30016
30441
|
}, {
|
|
30442
|
+
code?: string | undefined;
|
|
30443
|
+
schema?: Record<string, any> | undefined;
|
|
30017
30444
|
component?: string | undefined;
|
|
30018
30445
|
props?: Record<string, any> | undefined;
|
|
30019
30446
|
}>;
|
|
@@ -30021,6 +30448,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30021
30448
|
type: "CUSTOM";
|
|
30022
30449
|
id: string;
|
|
30023
30450
|
config: {
|
|
30451
|
+
code?: string | undefined;
|
|
30452
|
+
schema?: Record<string, any> | undefined;
|
|
30024
30453
|
component?: string | undefined;
|
|
30025
30454
|
props?: Record<string, any> | undefined;
|
|
30026
30455
|
};
|
|
@@ -30035,6 +30464,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30035
30464
|
type: "CUSTOM";
|
|
30036
30465
|
id: string;
|
|
30037
30466
|
config: {
|
|
30467
|
+
code?: string | undefined;
|
|
30468
|
+
schema?: Record<string, any> | undefined;
|
|
30038
30469
|
component?: string | undefined;
|
|
30039
30470
|
props?: Record<string, any> | undefined;
|
|
30040
30471
|
};
|
|
@@ -30127,12 +30558,19 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30127
30558
|
}>, "many">>;
|
|
30128
30559
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
30129
30560
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
30561
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
30562
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
30563
|
+
z.ZodString,
|
|
30564
|
+
z.ZodArray<z.ZodString, "many">
|
|
30565
|
+
]>>;
|
|
30130
30566
|
}, "strip", z.ZodTypeAny, {
|
|
30131
30567
|
options?: {
|
|
30132
30568
|
value: string;
|
|
30133
30569
|
label: string;
|
|
30134
30570
|
}[] | undefined;
|
|
30135
30571
|
placeholder?: string | undefined;
|
|
30572
|
+
default_value?: string | string[] | undefined;
|
|
30573
|
+
multiple?: boolean | undefined;
|
|
30136
30574
|
searchable?: boolean | undefined;
|
|
30137
30575
|
}, {
|
|
30138
30576
|
options?: {
|
|
@@ -30140,6 +30578,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30140
30578
|
label: string;
|
|
30141
30579
|
}[] | undefined;
|
|
30142
30580
|
placeholder?: string | undefined;
|
|
30581
|
+
default_value?: string | string[] | undefined;
|
|
30582
|
+
multiple?: boolean | undefined;
|
|
30143
30583
|
searchable?: boolean | undefined;
|
|
30144
30584
|
}>>;
|
|
30145
30585
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -30154,6 +30594,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30154
30594
|
label: string;
|
|
30155
30595
|
}[] | undefined;
|
|
30156
30596
|
placeholder?: string | undefined;
|
|
30597
|
+
default_value?: string | string[] | undefined;
|
|
30598
|
+
multiple?: boolean | undefined;
|
|
30157
30599
|
searchable?: boolean | undefined;
|
|
30158
30600
|
} | undefined;
|
|
30159
30601
|
sensitive?: boolean | undefined;
|
|
@@ -30171,6 +30613,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30171
30613
|
label: string;
|
|
30172
30614
|
}[] | undefined;
|
|
30173
30615
|
placeholder?: string | undefined;
|
|
30616
|
+
default_value?: string | string[] | undefined;
|
|
30617
|
+
multiple?: boolean | undefined;
|
|
30174
30618
|
searchable?: boolean | undefined;
|
|
30175
30619
|
} | undefined;
|
|
30176
30620
|
sensitive?: boolean | undefined;
|
|
@@ -30242,13 +30686,13 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30242
30686
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
30243
30687
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
30244
30688
|
}, "strip", z.ZodTypeAny, {
|
|
30689
|
+
multiple?: boolean | undefined;
|
|
30245
30690
|
accept?: string | undefined;
|
|
30246
30691
|
max_size?: number | undefined;
|
|
30247
|
-
multiple?: boolean | undefined;
|
|
30248
30692
|
}, {
|
|
30693
|
+
multiple?: boolean | undefined;
|
|
30249
30694
|
accept?: string | undefined;
|
|
30250
30695
|
max_size?: number | undefined;
|
|
30251
|
-
multiple?: boolean | undefined;
|
|
30252
30696
|
}>>;
|
|
30253
30697
|
}, "strip", z.ZodTypeAny, {
|
|
30254
30698
|
type: "FILE";
|
|
@@ -30257,9 +30701,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30257
30701
|
required?: boolean | undefined;
|
|
30258
30702
|
category?: "FIELD" | undefined;
|
|
30259
30703
|
config?: {
|
|
30704
|
+
multiple?: boolean | undefined;
|
|
30260
30705
|
accept?: string | undefined;
|
|
30261
30706
|
max_size?: number | undefined;
|
|
30262
|
-
multiple?: boolean | undefined;
|
|
30263
30707
|
} | undefined;
|
|
30264
30708
|
sensitive?: boolean | undefined;
|
|
30265
30709
|
label?: string | undefined;
|
|
@@ -30271,9 +30715,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30271
30715
|
required?: boolean | undefined;
|
|
30272
30716
|
category?: "FIELD" | undefined;
|
|
30273
30717
|
config?: {
|
|
30718
|
+
multiple?: boolean | undefined;
|
|
30274
30719
|
accept?: string | undefined;
|
|
30275
30720
|
max_size?: number | undefined;
|
|
30276
|
-
multiple?: boolean | undefined;
|
|
30277
30721
|
} | undefined;
|
|
30278
30722
|
sensitive?: boolean | undefined;
|
|
30279
30723
|
label?: string | undefined;
|
|
@@ -30941,7 +31385,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30941
31385
|
value: string;
|
|
30942
31386
|
label: string;
|
|
30943
31387
|
}[] | undefined;
|
|
31388
|
+
default_value?: string | string[] | undefined;
|
|
30944
31389
|
display?: "radio" | "checkbox" | undefined;
|
|
31390
|
+
multiple?: boolean | undefined;
|
|
30945
31391
|
} | undefined;
|
|
30946
31392
|
sensitive?: boolean | undefined;
|
|
30947
31393
|
label?: string | undefined;
|
|
@@ -30951,6 +31397,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30951
31397
|
type: "CUSTOM";
|
|
30952
31398
|
id: string;
|
|
30953
31399
|
config: {
|
|
31400
|
+
code?: string | undefined;
|
|
31401
|
+
schema?: Record<string, any> | undefined;
|
|
30954
31402
|
component?: string | undefined;
|
|
30955
31403
|
props?: Record<string, any> | undefined;
|
|
30956
31404
|
};
|
|
@@ -30988,6 +31436,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30988
31436
|
label: string;
|
|
30989
31437
|
}[] | undefined;
|
|
30990
31438
|
placeholder?: string | undefined;
|
|
31439
|
+
default_value?: string | string[] | undefined;
|
|
31440
|
+
multiple?: boolean | undefined;
|
|
30991
31441
|
searchable?: boolean | undefined;
|
|
30992
31442
|
} | undefined;
|
|
30993
31443
|
sensitive?: boolean | undefined;
|
|
@@ -31014,9 +31464,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31014
31464
|
required?: boolean | undefined;
|
|
31015
31465
|
category?: "FIELD" | undefined;
|
|
31016
31466
|
config?: {
|
|
31467
|
+
multiple?: boolean | undefined;
|
|
31017
31468
|
accept?: string | undefined;
|
|
31018
31469
|
max_size?: number | undefined;
|
|
31019
|
-
multiple?: boolean | undefined;
|
|
31020
31470
|
} | undefined;
|
|
31021
31471
|
sensitive?: boolean | undefined;
|
|
31022
31472
|
label?: string | undefined;
|
|
@@ -31318,7 +31768,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31318
31768
|
value: string;
|
|
31319
31769
|
label: string;
|
|
31320
31770
|
}[] | undefined;
|
|
31771
|
+
default_value?: string | string[] | undefined;
|
|
31321
31772
|
display?: "radio" | "checkbox" | undefined;
|
|
31773
|
+
multiple?: boolean | undefined;
|
|
31322
31774
|
} | undefined;
|
|
31323
31775
|
sensitive?: boolean | undefined;
|
|
31324
31776
|
label?: string | undefined;
|
|
@@ -31329,6 +31781,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31329
31781
|
type: "CUSTOM";
|
|
31330
31782
|
id: string;
|
|
31331
31783
|
config: {
|
|
31784
|
+
code?: string | undefined;
|
|
31785
|
+
schema?: Record<string, any> | undefined;
|
|
31332
31786
|
component?: string | undefined;
|
|
31333
31787
|
props?: Record<string, any> | undefined;
|
|
31334
31788
|
};
|
|
@@ -31365,6 +31819,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31365
31819
|
label: string;
|
|
31366
31820
|
}[] | undefined;
|
|
31367
31821
|
placeholder?: string | undefined;
|
|
31822
|
+
default_value?: string | string[] | undefined;
|
|
31823
|
+
multiple?: boolean | undefined;
|
|
31368
31824
|
searchable?: boolean | undefined;
|
|
31369
31825
|
} | undefined;
|
|
31370
31826
|
sensitive?: boolean | undefined;
|
|
@@ -31391,9 +31847,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31391
31847
|
required?: boolean | undefined;
|
|
31392
31848
|
category?: "FIELD" | undefined;
|
|
31393
31849
|
config?: {
|
|
31850
|
+
multiple?: boolean | undefined;
|
|
31394
31851
|
accept?: string | undefined;
|
|
31395
31852
|
max_size?: number | undefined;
|
|
31396
|
-
multiple?: boolean | undefined;
|
|
31397
31853
|
} | undefined;
|
|
31398
31854
|
sensitive?: boolean | undefined;
|
|
31399
31855
|
label?: string | undefined;
|