@authhero/adapter-interfaces 0.130.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 +546 -64
- package/dist/adapter-interfaces.mjs +54 -34
- package/package.json +1 -1
|
@@ -1223,9 +1223,23 @@ export declare const userInsertSchema: z.ZodObject<{
|
|
|
1223
1223
|
provider: z.ZodOptional<z.ZodString>;
|
|
1224
1224
|
connection: z.ZodString;
|
|
1225
1225
|
is_social: z.ZodOptional<z.ZodBoolean>;
|
|
1226
|
+
password: z.ZodOptional<z.ZodObject<{
|
|
1227
|
+
hash: z.ZodString;
|
|
1228
|
+
algorithm: z.ZodString;
|
|
1229
|
+
}, "strip", z.ZodTypeAny, {
|
|
1230
|
+
hash: string;
|
|
1231
|
+
algorithm: string;
|
|
1232
|
+
}, {
|
|
1233
|
+
hash: string;
|
|
1234
|
+
algorithm: string;
|
|
1235
|
+
}>>;
|
|
1226
1236
|
}, "strip", z.ZodTypeAny, {
|
|
1227
1237
|
email_verified: boolean;
|
|
1228
1238
|
connection: string;
|
|
1239
|
+
password?: {
|
|
1240
|
+
hash: string;
|
|
1241
|
+
algorithm: string;
|
|
1242
|
+
} | undefined;
|
|
1229
1243
|
name?: string | undefined;
|
|
1230
1244
|
user_id?: string | undefined;
|
|
1231
1245
|
email?: string | undefined;
|
|
@@ -1263,6 +1277,10 @@ export declare const userInsertSchema: z.ZodObject<{
|
|
|
1263
1277
|
is_social?: boolean | undefined;
|
|
1264
1278
|
}, {
|
|
1265
1279
|
connection: string;
|
|
1280
|
+
password?: {
|
|
1281
|
+
hash: string;
|
|
1282
|
+
algorithm: string;
|
|
1283
|
+
} | undefined;
|
|
1266
1284
|
name?: string | undefined;
|
|
1267
1285
|
user_id?: string | undefined;
|
|
1268
1286
|
email?: string | undefined;
|
|
@@ -1382,17 +1400,19 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1382
1400
|
}>, "many">>;
|
|
1383
1401
|
created_at: z.ZodString;
|
|
1384
1402
|
updated_at: z.ZodString;
|
|
1403
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1404
|
+
email_verified: z.ZodDefault<z.ZodBoolean>;
|
|
1385
1405
|
username: z.ZodOptional<z.ZodString>;
|
|
1406
|
+
given_name: z.ZodOptional<z.ZodString>;
|
|
1386
1407
|
phone_number: z.ZodOptional<z.ZodString>;
|
|
1387
1408
|
phone_verified: z.ZodOptional<z.ZodBoolean>;
|
|
1388
|
-
given_name: z.ZodOptional<z.ZodString>;
|
|
1389
1409
|
family_name: z.ZodOptional<z.ZodString>;
|
|
1410
|
+
connection: z.ZodString;
|
|
1411
|
+
profileData: z.ZodOptional<z.ZodString>;
|
|
1390
1412
|
nickname: z.ZodOptional<z.ZodString>;
|
|
1391
|
-
name: z.ZodOptional<z.ZodString>;
|
|
1392
1413
|
picture: z.ZodOptional<z.ZodString>;
|
|
1393
1414
|
locale: z.ZodOptional<z.ZodString>;
|
|
1394
1415
|
linked_to: z.ZodOptional<z.ZodString>;
|
|
1395
|
-
profileData: z.ZodOptional<z.ZodString>;
|
|
1396
1416
|
app_metadata: z.ZodOptional<z.ZodDefault<z.ZodAny>>;
|
|
1397
1417
|
user_metadata: z.ZodOptional<z.ZodDefault<z.ZodAny>>;
|
|
1398
1418
|
middle_name: z.ZodOptional<z.ZodString>;
|
|
@@ -1424,11 +1444,9 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1424
1444
|
postal_code?: string | undefined;
|
|
1425
1445
|
country?: string | undefined;
|
|
1426
1446
|
}>>;
|
|
1427
|
-
email_verified: z.ZodDefault<z.ZodBoolean>;
|
|
1428
1447
|
verify_email: z.ZodOptional<z.ZodBoolean>;
|
|
1429
1448
|
last_ip: z.ZodOptional<z.ZodString>;
|
|
1430
1449
|
last_login: z.ZodOptional<z.ZodString>;
|
|
1431
|
-
connection: z.ZodString;
|
|
1432
1450
|
}, "strip", z.ZodTypeAny, {
|
|
1433
1451
|
created_at: string;
|
|
1434
1452
|
updated_at: string;
|
|
@@ -1632,17 +1650,19 @@ export declare const auth0UserResponseSchema: z.ZodObject<{
|
|
|
1632
1650
|
}>, "many">>;
|
|
1633
1651
|
created_at: z.ZodString;
|
|
1634
1652
|
updated_at: z.ZodString;
|
|
1653
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1654
|
+
email_verified: z.ZodDefault<z.ZodBoolean>;
|
|
1635
1655
|
username: z.ZodOptional<z.ZodString>;
|
|
1656
|
+
given_name: z.ZodOptional<z.ZodString>;
|
|
1636
1657
|
phone_number: z.ZodOptional<z.ZodString>;
|
|
1637
1658
|
phone_verified: z.ZodOptional<z.ZodBoolean>;
|
|
1638
|
-
given_name: z.ZodOptional<z.ZodString>;
|
|
1639
1659
|
family_name: z.ZodOptional<z.ZodString>;
|
|
1660
|
+
connection: z.ZodString;
|
|
1661
|
+
profileData: z.ZodOptional<z.ZodString>;
|
|
1640
1662
|
nickname: z.ZodOptional<z.ZodString>;
|
|
1641
|
-
name: z.ZodOptional<z.ZodString>;
|
|
1642
1663
|
picture: z.ZodOptional<z.ZodString>;
|
|
1643
1664
|
locale: z.ZodOptional<z.ZodString>;
|
|
1644
1665
|
linked_to: z.ZodOptional<z.ZodString>;
|
|
1645
|
-
profileData: z.ZodOptional<z.ZodString>;
|
|
1646
1666
|
app_metadata: z.ZodOptional<z.ZodDefault<z.ZodAny>>;
|
|
1647
1667
|
user_metadata: z.ZodOptional<z.ZodDefault<z.ZodAny>>;
|
|
1648
1668
|
middle_name: z.ZodOptional<z.ZodString>;
|
|
@@ -1674,11 +1694,9 @@ export declare const auth0UserResponseSchema: z.ZodObject<{
|
|
|
1674
1694
|
postal_code?: string | undefined;
|
|
1675
1695
|
country?: string | undefined;
|
|
1676
1696
|
}>>;
|
|
1677
|
-
email_verified: z.ZodDefault<z.ZodBoolean>;
|
|
1678
1697
|
verify_email: z.ZodOptional<z.ZodBoolean>;
|
|
1679
1698
|
last_ip: z.ZodOptional<z.ZodString>;
|
|
1680
1699
|
last_login: z.ZodOptional<z.ZodString>;
|
|
1681
|
-
connection: z.ZodString;
|
|
1682
1700
|
}, "strip", z.ZodTypeAny, {
|
|
1683
1701
|
created_at: string;
|
|
1684
1702
|
updated_at: string;
|
|
@@ -11557,18 +11575,27 @@ declare const choiceField: z.ZodObject<{
|
|
|
11557
11575
|
"radio",
|
|
11558
11576
|
"checkbox"
|
|
11559
11577
|
]>>;
|
|
11578
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
11579
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
11580
|
+
z.ZodString,
|
|
11581
|
+
z.ZodArray<z.ZodString, "many">
|
|
11582
|
+
]>>;
|
|
11560
11583
|
}, "strip", z.ZodTypeAny, {
|
|
11561
11584
|
options?: {
|
|
11562
11585
|
value: string;
|
|
11563
11586
|
label: string;
|
|
11564
11587
|
}[] | undefined;
|
|
11588
|
+
default_value?: string | string[] | undefined;
|
|
11565
11589
|
display?: "radio" | "checkbox" | undefined;
|
|
11590
|
+
multiple?: boolean | undefined;
|
|
11566
11591
|
}, {
|
|
11567
11592
|
options?: {
|
|
11568
11593
|
value: string;
|
|
11569
11594
|
label: string;
|
|
11570
11595
|
}[] | undefined;
|
|
11596
|
+
default_value?: string | string[] | undefined;
|
|
11571
11597
|
display?: "radio" | "checkbox" | undefined;
|
|
11598
|
+
multiple?: boolean | undefined;
|
|
11572
11599
|
}>>;
|
|
11573
11600
|
}, "strip", z.ZodTypeAny, {
|
|
11574
11601
|
type: "CHOICE";
|
|
@@ -11581,7 +11608,9 @@ declare const choiceField: z.ZodObject<{
|
|
|
11581
11608
|
value: string;
|
|
11582
11609
|
label: string;
|
|
11583
11610
|
}[] | undefined;
|
|
11611
|
+
default_value?: string | string[] | undefined;
|
|
11584
11612
|
display?: "radio" | "checkbox" | undefined;
|
|
11613
|
+
multiple?: boolean | undefined;
|
|
11585
11614
|
} | undefined;
|
|
11586
11615
|
sensitive?: boolean | undefined;
|
|
11587
11616
|
label?: string | undefined;
|
|
@@ -11597,7 +11626,9 @@ declare const choiceField: z.ZodObject<{
|
|
|
11597
11626
|
value: string;
|
|
11598
11627
|
label: string;
|
|
11599
11628
|
}[] | undefined;
|
|
11629
|
+
default_value?: string | string[] | undefined;
|
|
11600
11630
|
display?: "radio" | "checkbox" | undefined;
|
|
11631
|
+
multiple?: boolean | undefined;
|
|
11601
11632
|
} | undefined;
|
|
11602
11633
|
sensitive?: boolean | undefined;
|
|
11603
11634
|
label?: string | undefined;
|
|
@@ -11620,10 +11651,16 @@ declare const customField: z.ZodObject<{
|
|
|
11620
11651
|
config: z.ZodObject<{
|
|
11621
11652
|
component: z.ZodOptional<z.ZodString>;
|
|
11622
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>;
|
|
11623
11656
|
}, "strip", z.ZodTypeAny, {
|
|
11657
|
+
code?: string | undefined;
|
|
11658
|
+
schema?: Record<string, any> | undefined;
|
|
11624
11659
|
component?: string | undefined;
|
|
11625
11660
|
props?: Record<string, any> | undefined;
|
|
11626
11661
|
}, {
|
|
11662
|
+
code?: string | undefined;
|
|
11663
|
+
schema?: Record<string, any> | undefined;
|
|
11627
11664
|
component?: string | undefined;
|
|
11628
11665
|
props?: Record<string, any> | undefined;
|
|
11629
11666
|
}>;
|
|
@@ -11631,6 +11668,8 @@ declare const customField: z.ZodObject<{
|
|
|
11631
11668
|
type: "CUSTOM";
|
|
11632
11669
|
id: string;
|
|
11633
11670
|
config: {
|
|
11671
|
+
code?: string | undefined;
|
|
11672
|
+
schema?: Record<string, any> | undefined;
|
|
11634
11673
|
component?: string | undefined;
|
|
11635
11674
|
props?: Record<string, any> | undefined;
|
|
11636
11675
|
};
|
|
@@ -11645,6 +11684,8 @@ declare const customField: z.ZodObject<{
|
|
|
11645
11684
|
type: "CUSTOM";
|
|
11646
11685
|
id: string;
|
|
11647
11686
|
config: {
|
|
11687
|
+
code?: string | undefined;
|
|
11688
|
+
schema?: Record<string, any> | undefined;
|
|
11648
11689
|
component?: string | undefined;
|
|
11649
11690
|
props?: Record<string, any> | undefined;
|
|
11650
11691
|
};
|
|
@@ -11737,12 +11778,19 @@ declare const dropdownField: z.ZodObject<{
|
|
|
11737
11778
|
}>, "many">>;
|
|
11738
11779
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
11739
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
|
+
]>>;
|
|
11740
11786
|
}, "strip", z.ZodTypeAny, {
|
|
11741
11787
|
options?: {
|
|
11742
11788
|
value: string;
|
|
11743
11789
|
label: string;
|
|
11744
11790
|
}[] | undefined;
|
|
11745
11791
|
placeholder?: string | undefined;
|
|
11792
|
+
default_value?: string | string[] | undefined;
|
|
11793
|
+
multiple?: boolean | undefined;
|
|
11746
11794
|
searchable?: boolean | undefined;
|
|
11747
11795
|
}, {
|
|
11748
11796
|
options?: {
|
|
@@ -11750,6 +11798,8 @@ declare const dropdownField: z.ZodObject<{
|
|
|
11750
11798
|
label: string;
|
|
11751
11799
|
}[] | undefined;
|
|
11752
11800
|
placeholder?: string | undefined;
|
|
11801
|
+
default_value?: string | string[] | undefined;
|
|
11802
|
+
multiple?: boolean | undefined;
|
|
11753
11803
|
searchable?: boolean | undefined;
|
|
11754
11804
|
}>>;
|
|
11755
11805
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11764,6 +11814,8 @@ declare const dropdownField: z.ZodObject<{
|
|
|
11764
11814
|
label: string;
|
|
11765
11815
|
}[] | undefined;
|
|
11766
11816
|
placeholder?: string | undefined;
|
|
11817
|
+
default_value?: string | string[] | undefined;
|
|
11818
|
+
multiple?: boolean | undefined;
|
|
11767
11819
|
searchable?: boolean | undefined;
|
|
11768
11820
|
} | undefined;
|
|
11769
11821
|
sensitive?: boolean | undefined;
|
|
@@ -11781,6 +11833,8 @@ declare const dropdownField: z.ZodObject<{
|
|
|
11781
11833
|
label: string;
|
|
11782
11834
|
}[] | undefined;
|
|
11783
11835
|
placeholder?: string | undefined;
|
|
11836
|
+
default_value?: string | string[] | undefined;
|
|
11837
|
+
multiple?: boolean | undefined;
|
|
11784
11838
|
searchable?: boolean | undefined;
|
|
11785
11839
|
} | undefined;
|
|
11786
11840
|
sensitive?: boolean | undefined;
|
|
@@ -11852,13 +11906,13 @@ declare const fileField: z.ZodObject<{
|
|
|
11852
11906
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
11853
11907
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
11854
11908
|
}, "strip", z.ZodTypeAny, {
|
|
11909
|
+
multiple?: boolean | undefined;
|
|
11855
11910
|
accept?: string | undefined;
|
|
11856
11911
|
max_size?: number | undefined;
|
|
11857
|
-
multiple?: boolean | undefined;
|
|
11858
11912
|
}, {
|
|
11913
|
+
multiple?: boolean | undefined;
|
|
11859
11914
|
accept?: string | undefined;
|
|
11860
11915
|
max_size?: number | undefined;
|
|
11861
|
-
multiple?: boolean | undefined;
|
|
11862
11916
|
}>>;
|
|
11863
11917
|
}, "strip", z.ZodTypeAny, {
|
|
11864
11918
|
type: "FILE";
|
|
@@ -11867,9 +11921,9 @@ declare const fileField: z.ZodObject<{
|
|
|
11867
11921
|
required?: boolean | undefined;
|
|
11868
11922
|
category?: "FIELD" | undefined;
|
|
11869
11923
|
config?: {
|
|
11924
|
+
multiple?: boolean | undefined;
|
|
11870
11925
|
accept?: string | undefined;
|
|
11871
11926
|
max_size?: number | undefined;
|
|
11872
|
-
multiple?: boolean | undefined;
|
|
11873
11927
|
} | undefined;
|
|
11874
11928
|
sensitive?: boolean | undefined;
|
|
11875
11929
|
label?: string | undefined;
|
|
@@ -11881,9 +11935,9 @@ declare const fileField: z.ZodObject<{
|
|
|
11881
11935
|
required?: boolean | undefined;
|
|
11882
11936
|
category?: "FIELD" | undefined;
|
|
11883
11937
|
config?: {
|
|
11938
|
+
multiple?: boolean | undefined;
|
|
11884
11939
|
accept?: string | undefined;
|
|
11885
11940
|
max_size?: number | undefined;
|
|
11886
|
-
multiple?: boolean | undefined;
|
|
11887
11941
|
} | undefined;
|
|
11888
11942
|
sensitive?: boolean | undefined;
|
|
11889
11943
|
label?: string | undefined;
|
|
@@ -12952,18 +13006,27 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
12952
13006
|
"radio",
|
|
12953
13007
|
"checkbox"
|
|
12954
13008
|
]>>;
|
|
13009
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
13010
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
13011
|
+
z.ZodString,
|
|
13012
|
+
z.ZodArray<z.ZodString, "many">
|
|
13013
|
+
]>>;
|
|
12955
13014
|
}, "strip", z.ZodTypeAny, {
|
|
12956
13015
|
options?: {
|
|
12957
13016
|
value: string;
|
|
12958
13017
|
label: string;
|
|
12959
13018
|
}[] | undefined;
|
|
13019
|
+
default_value?: string | string[] | undefined;
|
|
12960
13020
|
display?: "radio" | "checkbox" | undefined;
|
|
13021
|
+
multiple?: boolean | undefined;
|
|
12961
13022
|
}, {
|
|
12962
13023
|
options?: {
|
|
12963
13024
|
value: string;
|
|
12964
13025
|
label: string;
|
|
12965
13026
|
}[] | undefined;
|
|
13027
|
+
default_value?: string | string[] | undefined;
|
|
12966
13028
|
display?: "radio" | "checkbox" | undefined;
|
|
13029
|
+
multiple?: boolean | undefined;
|
|
12967
13030
|
}>>;
|
|
12968
13031
|
}, "strip", z.ZodTypeAny, {
|
|
12969
13032
|
type: "CHOICE";
|
|
@@ -12976,7 +13039,9 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
12976
13039
|
value: string;
|
|
12977
13040
|
label: string;
|
|
12978
13041
|
}[] | undefined;
|
|
13042
|
+
default_value?: string | string[] | undefined;
|
|
12979
13043
|
display?: "radio" | "checkbox" | undefined;
|
|
13044
|
+
multiple?: boolean | undefined;
|
|
12980
13045
|
} | undefined;
|
|
12981
13046
|
sensitive?: boolean | undefined;
|
|
12982
13047
|
label?: string | undefined;
|
|
@@ -12992,7 +13057,9 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
12992
13057
|
value: string;
|
|
12993
13058
|
label: string;
|
|
12994
13059
|
}[] | undefined;
|
|
13060
|
+
default_value?: string | string[] | undefined;
|
|
12995
13061
|
display?: "radio" | "checkbox" | undefined;
|
|
13062
|
+
multiple?: boolean | undefined;
|
|
12996
13063
|
} | undefined;
|
|
12997
13064
|
sensitive?: boolean | undefined;
|
|
12998
13065
|
label?: string | undefined;
|
|
@@ -13015,10 +13082,16 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13015
13082
|
config: z.ZodObject<{
|
|
13016
13083
|
component: z.ZodOptional<z.ZodString>;
|
|
13017
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>;
|
|
13018
13087
|
}, "strip", z.ZodTypeAny, {
|
|
13088
|
+
code?: string | undefined;
|
|
13089
|
+
schema?: Record<string, any> | undefined;
|
|
13019
13090
|
component?: string | undefined;
|
|
13020
13091
|
props?: Record<string, any> | undefined;
|
|
13021
13092
|
}, {
|
|
13093
|
+
code?: string | undefined;
|
|
13094
|
+
schema?: Record<string, any> | undefined;
|
|
13022
13095
|
component?: string | undefined;
|
|
13023
13096
|
props?: Record<string, any> | undefined;
|
|
13024
13097
|
}>;
|
|
@@ -13026,6 +13099,8 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13026
13099
|
type: "CUSTOM";
|
|
13027
13100
|
id: string;
|
|
13028
13101
|
config: {
|
|
13102
|
+
code?: string | undefined;
|
|
13103
|
+
schema?: Record<string, any> | undefined;
|
|
13029
13104
|
component?: string | undefined;
|
|
13030
13105
|
props?: Record<string, any> | undefined;
|
|
13031
13106
|
};
|
|
@@ -13040,6 +13115,8 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13040
13115
|
type: "CUSTOM";
|
|
13041
13116
|
id: string;
|
|
13042
13117
|
config: {
|
|
13118
|
+
code?: string | undefined;
|
|
13119
|
+
schema?: Record<string, any> | undefined;
|
|
13043
13120
|
component?: string | undefined;
|
|
13044
13121
|
props?: Record<string, any> | undefined;
|
|
13045
13122
|
};
|
|
@@ -13132,12 +13209,19 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13132
13209
|
}>, "many">>;
|
|
13133
13210
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
13134
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
|
+
]>>;
|
|
13135
13217
|
}, "strip", z.ZodTypeAny, {
|
|
13136
13218
|
options?: {
|
|
13137
13219
|
value: string;
|
|
13138
13220
|
label: string;
|
|
13139
13221
|
}[] | undefined;
|
|
13140
13222
|
placeholder?: string | undefined;
|
|
13223
|
+
default_value?: string | string[] | undefined;
|
|
13224
|
+
multiple?: boolean | undefined;
|
|
13141
13225
|
searchable?: boolean | undefined;
|
|
13142
13226
|
}, {
|
|
13143
13227
|
options?: {
|
|
@@ -13145,6 +13229,8 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13145
13229
|
label: string;
|
|
13146
13230
|
}[] | undefined;
|
|
13147
13231
|
placeholder?: string | undefined;
|
|
13232
|
+
default_value?: string | string[] | undefined;
|
|
13233
|
+
multiple?: boolean | undefined;
|
|
13148
13234
|
searchable?: boolean | undefined;
|
|
13149
13235
|
}>>;
|
|
13150
13236
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -13159,6 +13245,8 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13159
13245
|
label: string;
|
|
13160
13246
|
}[] | undefined;
|
|
13161
13247
|
placeholder?: string | undefined;
|
|
13248
|
+
default_value?: string | string[] | undefined;
|
|
13249
|
+
multiple?: boolean | undefined;
|
|
13162
13250
|
searchable?: boolean | undefined;
|
|
13163
13251
|
} | undefined;
|
|
13164
13252
|
sensitive?: boolean | undefined;
|
|
@@ -13176,6 +13264,8 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13176
13264
|
label: string;
|
|
13177
13265
|
}[] | undefined;
|
|
13178
13266
|
placeholder?: string | undefined;
|
|
13267
|
+
default_value?: string | string[] | undefined;
|
|
13268
|
+
multiple?: boolean | undefined;
|
|
13179
13269
|
searchable?: boolean | undefined;
|
|
13180
13270
|
} | undefined;
|
|
13181
13271
|
sensitive?: boolean | undefined;
|
|
@@ -13247,13 +13337,13 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13247
13337
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
13248
13338
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
13249
13339
|
}, "strip", z.ZodTypeAny, {
|
|
13340
|
+
multiple?: boolean | undefined;
|
|
13250
13341
|
accept?: string | undefined;
|
|
13251
13342
|
max_size?: number | undefined;
|
|
13252
|
-
multiple?: boolean | undefined;
|
|
13253
13343
|
}, {
|
|
13344
|
+
multiple?: boolean | undefined;
|
|
13254
13345
|
accept?: string | undefined;
|
|
13255
13346
|
max_size?: number | undefined;
|
|
13256
|
-
multiple?: boolean | undefined;
|
|
13257
13347
|
}>>;
|
|
13258
13348
|
}, "strip", z.ZodTypeAny, {
|
|
13259
13349
|
type: "FILE";
|
|
@@ -13262,9 +13352,9 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13262
13352
|
required?: boolean | undefined;
|
|
13263
13353
|
category?: "FIELD" | undefined;
|
|
13264
13354
|
config?: {
|
|
13355
|
+
multiple?: boolean | undefined;
|
|
13265
13356
|
accept?: string | undefined;
|
|
13266
13357
|
max_size?: number | undefined;
|
|
13267
|
-
multiple?: boolean | undefined;
|
|
13268
13358
|
} | undefined;
|
|
13269
13359
|
sensitive?: boolean | undefined;
|
|
13270
13360
|
label?: string | undefined;
|
|
@@ -13276,9 +13366,9 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13276
13366
|
required?: boolean | undefined;
|
|
13277
13367
|
category?: "FIELD" | undefined;
|
|
13278
13368
|
config?: {
|
|
13369
|
+
multiple?: boolean | undefined;
|
|
13279
13370
|
accept?: string | undefined;
|
|
13280
13371
|
max_size?: number | undefined;
|
|
13281
|
-
multiple?: boolean | undefined;
|
|
13282
13372
|
} | undefined;
|
|
13283
13373
|
sensitive?: boolean | undefined;
|
|
13284
13374
|
label?: string | undefined;
|
|
@@ -14343,18 +14433,27 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14343
14433
|
"radio",
|
|
14344
14434
|
"checkbox"
|
|
14345
14435
|
]>>;
|
|
14436
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
14437
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
14438
|
+
z.ZodString,
|
|
14439
|
+
z.ZodArray<z.ZodString, "many">
|
|
14440
|
+
]>>;
|
|
14346
14441
|
}, "strip", z.ZodTypeAny, {
|
|
14347
14442
|
options?: {
|
|
14348
14443
|
value: string;
|
|
14349
14444
|
label: string;
|
|
14350
14445
|
}[] | undefined;
|
|
14446
|
+
default_value?: string | string[] | undefined;
|
|
14351
14447
|
display?: "radio" | "checkbox" | undefined;
|
|
14448
|
+
multiple?: boolean | undefined;
|
|
14352
14449
|
}, {
|
|
14353
14450
|
options?: {
|
|
14354
14451
|
value: string;
|
|
14355
14452
|
label: string;
|
|
14356
14453
|
}[] | undefined;
|
|
14454
|
+
default_value?: string | string[] | undefined;
|
|
14357
14455
|
display?: "radio" | "checkbox" | undefined;
|
|
14456
|
+
multiple?: boolean | undefined;
|
|
14358
14457
|
}>>;
|
|
14359
14458
|
}, "strip", z.ZodTypeAny, {
|
|
14360
14459
|
type: "CHOICE";
|
|
@@ -14367,7 +14466,9 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14367
14466
|
value: string;
|
|
14368
14467
|
label: string;
|
|
14369
14468
|
}[] | undefined;
|
|
14469
|
+
default_value?: string | string[] | undefined;
|
|
14370
14470
|
display?: "radio" | "checkbox" | undefined;
|
|
14471
|
+
multiple?: boolean | undefined;
|
|
14371
14472
|
} | undefined;
|
|
14372
14473
|
sensitive?: boolean | undefined;
|
|
14373
14474
|
label?: string | undefined;
|
|
@@ -14383,7 +14484,9 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14383
14484
|
value: string;
|
|
14384
14485
|
label: string;
|
|
14385
14486
|
}[] | undefined;
|
|
14487
|
+
default_value?: string | string[] | undefined;
|
|
14386
14488
|
display?: "radio" | "checkbox" | undefined;
|
|
14489
|
+
multiple?: boolean | undefined;
|
|
14387
14490
|
} | undefined;
|
|
14388
14491
|
sensitive?: boolean | undefined;
|
|
14389
14492
|
label?: string | undefined;
|
|
@@ -14406,10 +14509,16 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14406
14509
|
config: z.ZodObject<{
|
|
14407
14510
|
component: z.ZodOptional<z.ZodString>;
|
|
14408
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>;
|
|
14409
14514
|
}, "strip", z.ZodTypeAny, {
|
|
14515
|
+
code?: string | undefined;
|
|
14516
|
+
schema?: Record<string, any> | undefined;
|
|
14410
14517
|
component?: string | undefined;
|
|
14411
14518
|
props?: Record<string, any> | undefined;
|
|
14412
14519
|
}, {
|
|
14520
|
+
code?: string | undefined;
|
|
14521
|
+
schema?: Record<string, any> | undefined;
|
|
14413
14522
|
component?: string | undefined;
|
|
14414
14523
|
props?: Record<string, any> | undefined;
|
|
14415
14524
|
}>;
|
|
@@ -14417,6 +14526,8 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14417
14526
|
type: "CUSTOM";
|
|
14418
14527
|
id: string;
|
|
14419
14528
|
config: {
|
|
14529
|
+
code?: string | undefined;
|
|
14530
|
+
schema?: Record<string, any> | undefined;
|
|
14420
14531
|
component?: string | undefined;
|
|
14421
14532
|
props?: Record<string, any> | undefined;
|
|
14422
14533
|
};
|
|
@@ -14431,6 +14542,8 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14431
14542
|
type: "CUSTOM";
|
|
14432
14543
|
id: string;
|
|
14433
14544
|
config: {
|
|
14545
|
+
code?: string | undefined;
|
|
14546
|
+
schema?: Record<string, any> | undefined;
|
|
14434
14547
|
component?: string | undefined;
|
|
14435
14548
|
props?: Record<string, any> | undefined;
|
|
14436
14549
|
};
|
|
@@ -14523,12 +14636,19 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14523
14636
|
}>, "many">>;
|
|
14524
14637
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
14525
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
|
+
]>>;
|
|
14526
14644
|
}, "strip", z.ZodTypeAny, {
|
|
14527
14645
|
options?: {
|
|
14528
14646
|
value: string;
|
|
14529
14647
|
label: string;
|
|
14530
14648
|
}[] | undefined;
|
|
14531
14649
|
placeholder?: string | undefined;
|
|
14650
|
+
default_value?: string | string[] | undefined;
|
|
14651
|
+
multiple?: boolean | undefined;
|
|
14532
14652
|
searchable?: boolean | undefined;
|
|
14533
14653
|
}, {
|
|
14534
14654
|
options?: {
|
|
@@ -14536,6 +14656,8 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14536
14656
|
label: string;
|
|
14537
14657
|
}[] | undefined;
|
|
14538
14658
|
placeholder?: string | undefined;
|
|
14659
|
+
default_value?: string | string[] | undefined;
|
|
14660
|
+
multiple?: boolean | undefined;
|
|
14539
14661
|
searchable?: boolean | undefined;
|
|
14540
14662
|
}>>;
|
|
14541
14663
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14550,6 +14672,8 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14550
14672
|
label: string;
|
|
14551
14673
|
}[] | undefined;
|
|
14552
14674
|
placeholder?: string | undefined;
|
|
14675
|
+
default_value?: string | string[] | undefined;
|
|
14676
|
+
multiple?: boolean | undefined;
|
|
14553
14677
|
searchable?: boolean | undefined;
|
|
14554
14678
|
} | undefined;
|
|
14555
14679
|
sensitive?: boolean | undefined;
|
|
@@ -14567,6 +14691,8 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14567
14691
|
label: string;
|
|
14568
14692
|
}[] | undefined;
|
|
14569
14693
|
placeholder?: string | undefined;
|
|
14694
|
+
default_value?: string | string[] | undefined;
|
|
14695
|
+
multiple?: boolean | undefined;
|
|
14570
14696
|
searchable?: boolean | undefined;
|
|
14571
14697
|
} | undefined;
|
|
14572
14698
|
sensitive?: boolean | undefined;
|
|
@@ -14638,13 +14764,13 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14638
14764
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
14639
14765
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
14640
14766
|
}, "strip", z.ZodTypeAny, {
|
|
14767
|
+
multiple?: boolean | undefined;
|
|
14641
14768
|
accept?: string | undefined;
|
|
14642
14769
|
max_size?: number | undefined;
|
|
14643
|
-
multiple?: boolean | undefined;
|
|
14644
14770
|
}, {
|
|
14771
|
+
multiple?: boolean | undefined;
|
|
14645
14772
|
accept?: string | undefined;
|
|
14646
14773
|
max_size?: number | undefined;
|
|
14647
|
-
multiple?: boolean | undefined;
|
|
14648
14774
|
}>>;
|
|
14649
14775
|
}, "strip", z.ZodTypeAny, {
|
|
14650
14776
|
type: "FILE";
|
|
@@ -14653,9 +14779,9 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14653
14779
|
required?: boolean | undefined;
|
|
14654
14780
|
category?: "FIELD" | undefined;
|
|
14655
14781
|
config?: {
|
|
14782
|
+
multiple?: boolean | undefined;
|
|
14656
14783
|
accept?: string | undefined;
|
|
14657
14784
|
max_size?: number | undefined;
|
|
14658
|
-
multiple?: boolean | undefined;
|
|
14659
14785
|
} | undefined;
|
|
14660
14786
|
sensitive?: boolean | undefined;
|
|
14661
14787
|
label?: string | undefined;
|
|
@@ -14667,9 +14793,9 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14667
14793
|
required?: boolean | undefined;
|
|
14668
14794
|
category?: "FIELD" | undefined;
|
|
14669
14795
|
config?: {
|
|
14796
|
+
multiple?: boolean | undefined;
|
|
14670
14797
|
accept?: string | undefined;
|
|
14671
14798
|
max_size?: number | undefined;
|
|
14672
|
-
multiple?: boolean | undefined;
|
|
14673
14799
|
} | undefined;
|
|
14674
14800
|
sensitive?: boolean | undefined;
|
|
14675
14801
|
label?: string | undefined;
|
|
@@ -15943,18 +16069,27 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
15943
16069
|
"radio",
|
|
15944
16070
|
"checkbox"
|
|
15945
16071
|
]>>;
|
|
16072
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
16073
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
16074
|
+
z.ZodString,
|
|
16075
|
+
z.ZodArray<z.ZodString, "many">
|
|
16076
|
+
]>>;
|
|
15946
16077
|
}, "strip", z.ZodTypeAny, {
|
|
15947
16078
|
options?: {
|
|
15948
16079
|
value: string;
|
|
15949
16080
|
label: string;
|
|
15950
16081
|
}[] | undefined;
|
|
16082
|
+
default_value?: string | string[] | undefined;
|
|
15951
16083
|
display?: "radio" | "checkbox" | undefined;
|
|
16084
|
+
multiple?: boolean | undefined;
|
|
15952
16085
|
}, {
|
|
15953
16086
|
options?: {
|
|
15954
16087
|
value: string;
|
|
15955
16088
|
label: string;
|
|
15956
16089
|
}[] | undefined;
|
|
16090
|
+
default_value?: string | string[] | undefined;
|
|
15957
16091
|
display?: "radio" | "checkbox" | undefined;
|
|
16092
|
+
multiple?: boolean | undefined;
|
|
15958
16093
|
}>>;
|
|
15959
16094
|
}, "strip", z.ZodTypeAny, {
|
|
15960
16095
|
type: "CHOICE";
|
|
@@ -15967,7 +16102,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
15967
16102
|
value: string;
|
|
15968
16103
|
label: string;
|
|
15969
16104
|
}[] | undefined;
|
|
16105
|
+
default_value?: string | string[] | undefined;
|
|
15970
16106
|
display?: "radio" | "checkbox" | undefined;
|
|
16107
|
+
multiple?: boolean | undefined;
|
|
15971
16108
|
} | undefined;
|
|
15972
16109
|
sensitive?: boolean | undefined;
|
|
15973
16110
|
label?: string | undefined;
|
|
@@ -15983,7 +16120,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
15983
16120
|
value: string;
|
|
15984
16121
|
label: string;
|
|
15985
16122
|
}[] | undefined;
|
|
16123
|
+
default_value?: string | string[] | undefined;
|
|
15986
16124
|
display?: "radio" | "checkbox" | undefined;
|
|
16125
|
+
multiple?: boolean | undefined;
|
|
15987
16126
|
} | undefined;
|
|
15988
16127
|
sensitive?: boolean | undefined;
|
|
15989
16128
|
label?: string | undefined;
|
|
@@ -16006,10 +16145,16 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16006
16145
|
config: z.ZodObject<{
|
|
16007
16146
|
component: z.ZodOptional<z.ZodString>;
|
|
16008
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>;
|
|
16009
16150
|
}, "strip", z.ZodTypeAny, {
|
|
16151
|
+
code?: string | undefined;
|
|
16152
|
+
schema?: Record<string, any> | undefined;
|
|
16010
16153
|
component?: string | undefined;
|
|
16011
16154
|
props?: Record<string, any> | undefined;
|
|
16012
16155
|
}, {
|
|
16156
|
+
code?: string | undefined;
|
|
16157
|
+
schema?: Record<string, any> | undefined;
|
|
16013
16158
|
component?: string | undefined;
|
|
16014
16159
|
props?: Record<string, any> | undefined;
|
|
16015
16160
|
}>;
|
|
@@ -16017,6 +16162,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16017
16162
|
type: "CUSTOM";
|
|
16018
16163
|
id: string;
|
|
16019
16164
|
config: {
|
|
16165
|
+
code?: string | undefined;
|
|
16166
|
+
schema?: Record<string, any> | undefined;
|
|
16020
16167
|
component?: string | undefined;
|
|
16021
16168
|
props?: Record<string, any> | undefined;
|
|
16022
16169
|
};
|
|
@@ -16031,6 +16178,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16031
16178
|
type: "CUSTOM";
|
|
16032
16179
|
id: string;
|
|
16033
16180
|
config: {
|
|
16181
|
+
code?: string | undefined;
|
|
16182
|
+
schema?: Record<string, any> | undefined;
|
|
16034
16183
|
component?: string | undefined;
|
|
16035
16184
|
props?: Record<string, any> | undefined;
|
|
16036
16185
|
};
|
|
@@ -16123,12 +16272,19 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16123
16272
|
}>, "many">>;
|
|
16124
16273
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
16125
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
|
+
]>>;
|
|
16126
16280
|
}, "strip", z.ZodTypeAny, {
|
|
16127
16281
|
options?: {
|
|
16128
16282
|
value: string;
|
|
16129
16283
|
label: string;
|
|
16130
16284
|
}[] | undefined;
|
|
16131
16285
|
placeholder?: string | undefined;
|
|
16286
|
+
default_value?: string | string[] | undefined;
|
|
16287
|
+
multiple?: boolean | undefined;
|
|
16132
16288
|
searchable?: boolean | undefined;
|
|
16133
16289
|
}, {
|
|
16134
16290
|
options?: {
|
|
@@ -16136,6 +16292,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16136
16292
|
label: string;
|
|
16137
16293
|
}[] | undefined;
|
|
16138
16294
|
placeholder?: string | undefined;
|
|
16295
|
+
default_value?: string | string[] | undefined;
|
|
16296
|
+
multiple?: boolean | undefined;
|
|
16139
16297
|
searchable?: boolean | undefined;
|
|
16140
16298
|
}>>;
|
|
16141
16299
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16150,6 +16308,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16150
16308
|
label: string;
|
|
16151
16309
|
}[] | undefined;
|
|
16152
16310
|
placeholder?: string | undefined;
|
|
16311
|
+
default_value?: string | string[] | undefined;
|
|
16312
|
+
multiple?: boolean | undefined;
|
|
16153
16313
|
searchable?: boolean | undefined;
|
|
16154
16314
|
} | undefined;
|
|
16155
16315
|
sensitive?: boolean | undefined;
|
|
@@ -16167,6 +16327,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16167
16327
|
label: string;
|
|
16168
16328
|
}[] | undefined;
|
|
16169
16329
|
placeholder?: string | undefined;
|
|
16330
|
+
default_value?: string | string[] | undefined;
|
|
16331
|
+
multiple?: boolean | undefined;
|
|
16170
16332
|
searchable?: boolean | undefined;
|
|
16171
16333
|
} | undefined;
|
|
16172
16334
|
sensitive?: boolean | undefined;
|
|
@@ -16238,13 +16400,13 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16238
16400
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
16239
16401
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
16240
16402
|
}, "strip", z.ZodTypeAny, {
|
|
16403
|
+
multiple?: boolean | undefined;
|
|
16241
16404
|
accept?: string | undefined;
|
|
16242
16405
|
max_size?: number | undefined;
|
|
16243
|
-
multiple?: boolean | undefined;
|
|
16244
16406
|
}, {
|
|
16407
|
+
multiple?: boolean | undefined;
|
|
16245
16408
|
accept?: string | undefined;
|
|
16246
16409
|
max_size?: number | undefined;
|
|
16247
|
-
multiple?: boolean | undefined;
|
|
16248
16410
|
}>>;
|
|
16249
16411
|
}, "strip", z.ZodTypeAny, {
|
|
16250
16412
|
type: "FILE";
|
|
@@ -16253,9 +16415,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16253
16415
|
required?: boolean | undefined;
|
|
16254
16416
|
category?: "FIELD" | undefined;
|
|
16255
16417
|
config?: {
|
|
16418
|
+
multiple?: boolean | undefined;
|
|
16256
16419
|
accept?: string | undefined;
|
|
16257
16420
|
max_size?: number | undefined;
|
|
16258
|
-
multiple?: boolean | undefined;
|
|
16259
16421
|
} | undefined;
|
|
16260
16422
|
sensitive?: boolean | undefined;
|
|
16261
16423
|
label?: string | undefined;
|
|
@@ -16267,9 +16429,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16267
16429
|
required?: boolean | undefined;
|
|
16268
16430
|
category?: "FIELD" | undefined;
|
|
16269
16431
|
config?: {
|
|
16432
|
+
multiple?: boolean | undefined;
|
|
16270
16433
|
accept?: string | undefined;
|
|
16271
16434
|
max_size?: number | undefined;
|
|
16272
|
-
multiple?: boolean | undefined;
|
|
16273
16435
|
} | undefined;
|
|
16274
16436
|
sensitive?: boolean | undefined;
|
|
16275
16437
|
label?: string | undefined;
|
|
@@ -16901,7 +17063,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16901
17063
|
value: string;
|
|
16902
17064
|
label: string;
|
|
16903
17065
|
}[] | undefined;
|
|
17066
|
+
default_value?: string | string[] | undefined;
|
|
16904
17067
|
display?: "radio" | "checkbox" | undefined;
|
|
17068
|
+
multiple?: boolean | undefined;
|
|
16905
17069
|
} | undefined;
|
|
16906
17070
|
sensitive?: boolean | undefined;
|
|
16907
17071
|
label?: string | undefined;
|
|
@@ -16911,6 +17075,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16911
17075
|
type: "CUSTOM";
|
|
16912
17076
|
id: string;
|
|
16913
17077
|
config: {
|
|
17078
|
+
code?: string | undefined;
|
|
17079
|
+
schema?: Record<string, any> | undefined;
|
|
16914
17080
|
component?: string | undefined;
|
|
16915
17081
|
props?: Record<string, any> | undefined;
|
|
16916
17082
|
};
|
|
@@ -16948,6 +17114,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16948
17114
|
label: string;
|
|
16949
17115
|
}[] | undefined;
|
|
16950
17116
|
placeholder?: string | undefined;
|
|
17117
|
+
default_value?: string | string[] | undefined;
|
|
17118
|
+
multiple?: boolean | undefined;
|
|
16951
17119
|
searchable?: boolean | undefined;
|
|
16952
17120
|
} | undefined;
|
|
16953
17121
|
sensitive?: boolean | undefined;
|
|
@@ -16974,9 +17142,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16974
17142
|
required?: boolean | undefined;
|
|
16975
17143
|
category?: "FIELD" | undefined;
|
|
16976
17144
|
config?: {
|
|
17145
|
+
multiple?: boolean | undefined;
|
|
16977
17146
|
accept?: string | undefined;
|
|
16978
17147
|
max_size?: number | undefined;
|
|
16979
|
-
multiple?: boolean | undefined;
|
|
16980
17148
|
} | undefined;
|
|
16981
17149
|
sensitive?: boolean | undefined;
|
|
16982
17150
|
label?: string | undefined;
|
|
@@ -17262,7 +17430,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17262
17430
|
value: string;
|
|
17263
17431
|
label: string;
|
|
17264
17432
|
}[] | undefined;
|
|
17433
|
+
default_value?: string | string[] | undefined;
|
|
17265
17434
|
display?: "radio" | "checkbox" | undefined;
|
|
17435
|
+
multiple?: boolean | undefined;
|
|
17266
17436
|
} | undefined;
|
|
17267
17437
|
sensitive?: boolean | undefined;
|
|
17268
17438
|
label?: string | undefined;
|
|
@@ -17273,6 +17443,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17273
17443
|
type: "CUSTOM";
|
|
17274
17444
|
id: string;
|
|
17275
17445
|
config: {
|
|
17446
|
+
code?: string | undefined;
|
|
17447
|
+
schema?: Record<string, any> | undefined;
|
|
17276
17448
|
component?: string | undefined;
|
|
17277
17449
|
props?: Record<string, any> | undefined;
|
|
17278
17450
|
};
|
|
@@ -17309,6 +17481,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17309
17481
|
label: string;
|
|
17310
17482
|
}[] | undefined;
|
|
17311
17483
|
placeholder?: string | undefined;
|
|
17484
|
+
default_value?: string | string[] | undefined;
|
|
17485
|
+
multiple?: boolean | undefined;
|
|
17312
17486
|
searchable?: boolean | undefined;
|
|
17313
17487
|
} | undefined;
|
|
17314
17488
|
sensitive?: boolean | undefined;
|
|
@@ -17335,9 +17509,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17335
17509
|
required?: boolean | undefined;
|
|
17336
17510
|
category?: "FIELD" | undefined;
|
|
17337
17511
|
config?: {
|
|
17512
|
+
multiple?: boolean | undefined;
|
|
17338
17513
|
accept?: string | undefined;
|
|
17339
17514
|
max_size?: number | undefined;
|
|
17340
|
-
multiple?: boolean | undefined;
|
|
17341
17515
|
} | undefined;
|
|
17342
17516
|
sensitive?: boolean | undefined;
|
|
17343
17517
|
label?: string | undefined;
|
|
@@ -17629,7 +17803,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17629
17803
|
value: string;
|
|
17630
17804
|
label: string;
|
|
17631
17805
|
}[] | undefined;
|
|
17806
|
+
default_value?: string | string[] | undefined;
|
|
17632
17807
|
display?: "radio" | "checkbox" | undefined;
|
|
17808
|
+
multiple?: boolean | undefined;
|
|
17633
17809
|
} | undefined;
|
|
17634
17810
|
sensitive?: boolean | undefined;
|
|
17635
17811
|
label?: string | undefined;
|
|
@@ -17639,6 +17815,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17639
17815
|
type: "CUSTOM";
|
|
17640
17816
|
id: string;
|
|
17641
17817
|
config: {
|
|
17818
|
+
code?: string | undefined;
|
|
17819
|
+
schema?: Record<string, any> | undefined;
|
|
17642
17820
|
component?: string | undefined;
|
|
17643
17821
|
props?: Record<string, any> | undefined;
|
|
17644
17822
|
};
|
|
@@ -17676,6 +17854,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17676
17854
|
label: string;
|
|
17677
17855
|
}[] | undefined;
|
|
17678
17856
|
placeholder?: string | undefined;
|
|
17857
|
+
default_value?: string | string[] | undefined;
|
|
17858
|
+
multiple?: boolean | undefined;
|
|
17679
17859
|
searchable?: boolean | undefined;
|
|
17680
17860
|
} | undefined;
|
|
17681
17861
|
sensitive?: boolean | undefined;
|
|
@@ -17702,9 +17882,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17702
17882
|
required?: boolean | undefined;
|
|
17703
17883
|
category?: "FIELD" | undefined;
|
|
17704
17884
|
config?: {
|
|
17885
|
+
multiple?: boolean | undefined;
|
|
17705
17886
|
accept?: string | undefined;
|
|
17706
17887
|
max_size?: number | undefined;
|
|
17707
|
-
multiple?: boolean | undefined;
|
|
17708
17888
|
} | undefined;
|
|
17709
17889
|
sensitive?: boolean | undefined;
|
|
17710
17890
|
label?: string | undefined;
|
|
@@ -17999,7 +18179,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17999
18179
|
value: string;
|
|
18000
18180
|
label: string;
|
|
18001
18181
|
}[] | undefined;
|
|
18182
|
+
default_value?: string | string[] | undefined;
|
|
18002
18183
|
display?: "radio" | "checkbox" | undefined;
|
|
18184
|
+
multiple?: boolean | undefined;
|
|
18003
18185
|
} | undefined;
|
|
18004
18186
|
sensitive?: boolean | undefined;
|
|
18005
18187
|
label?: string | undefined;
|
|
@@ -18010,6 +18192,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
18010
18192
|
type: "CUSTOM";
|
|
18011
18193
|
id: string;
|
|
18012
18194
|
config: {
|
|
18195
|
+
code?: string | undefined;
|
|
18196
|
+
schema?: Record<string, any> | undefined;
|
|
18013
18197
|
component?: string | undefined;
|
|
18014
18198
|
props?: Record<string, any> | undefined;
|
|
18015
18199
|
};
|
|
@@ -18046,6 +18230,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
18046
18230
|
label: string;
|
|
18047
18231
|
}[] | undefined;
|
|
18048
18232
|
placeholder?: string | undefined;
|
|
18233
|
+
default_value?: string | string[] | undefined;
|
|
18234
|
+
multiple?: boolean | undefined;
|
|
18049
18235
|
searchable?: boolean | undefined;
|
|
18050
18236
|
} | undefined;
|
|
18051
18237
|
sensitive?: boolean | undefined;
|
|
@@ -18072,9 +18258,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
18072
18258
|
required?: boolean | undefined;
|
|
18073
18259
|
category?: "FIELD" | undefined;
|
|
18074
18260
|
config?: {
|
|
18261
|
+
multiple?: boolean | undefined;
|
|
18075
18262
|
accept?: string | undefined;
|
|
18076
18263
|
max_size?: number | undefined;
|
|
18077
|
-
multiple?: boolean | undefined;
|
|
18078
18264
|
} | undefined;
|
|
18079
18265
|
sensitive?: boolean | undefined;
|
|
18080
18266
|
label?: string | undefined;
|
|
@@ -18950,18 +19136,27 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
18950
19136
|
"radio",
|
|
18951
19137
|
"checkbox"
|
|
18952
19138
|
]>>;
|
|
19139
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
19140
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
19141
|
+
z.ZodString,
|
|
19142
|
+
z.ZodArray<z.ZodString, "many">
|
|
19143
|
+
]>>;
|
|
18953
19144
|
}, "strip", z.ZodTypeAny, {
|
|
18954
19145
|
options?: {
|
|
18955
19146
|
value: string;
|
|
18956
19147
|
label: string;
|
|
18957
19148
|
}[] | undefined;
|
|
19149
|
+
default_value?: string | string[] | undefined;
|
|
18958
19150
|
display?: "radio" | "checkbox" | undefined;
|
|
19151
|
+
multiple?: boolean | undefined;
|
|
18959
19152
|
}, {
|
|
18960
19153
|
options?: {
|
|
18961
19154
|
value: string;
|
|
18962
19155
|
label: string;
|
|
18963
19156
|
}[] | undefined;
|
|
19157
|
+
default_value?: string | string[] | undefined;
|
|
18964
19158
|
display?: "radio" | "checkbox" | undefined;
|
|
19159
|
+
multiple?: boolean | undefined;
|
|
18965
19160
|
}>>;
|
|
18966
19161
|
}, "strip", z.ZodTypeAny, {
|
|
18967
19162
|
type: "CHOICE";
|
|
@@ -18974,7 +19169,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
18974
19169
|
value: string;
|
|
18975
19170
|
label: string;
|
|
18976
19171
|
}[] | undefined;
|
|
19172
|
+
default_value?: string | string[] | undefined;
|
|
18977
19173
|
display?: "radio" | "checkbox" | undefined;
|
|
19174
|
+
multiple?: boolean | undefined;
|
|
18978
19175
|
} | undefined;
|
|
18979
19176
|
sensitive?: boolean | undefined;
|
|
18980
19177
|
label?: string | undefined;
|
|
@@ -18990,7 +19187,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
18990
19187
|
value: string;
|
|
18991
19188
|
label: string;
|
|
18992
19189
|
}[] | undefined;
|
|
19190
|
+
default_value?: string | string[] | undefined;
|
|
18993
19191
|
display?: "radio" | "checkbox" | undefined;
|
|
19192
|
+
multiple?: boolean | undefined;
|
|
18994
19193
|
} | undefined;
|
|
18995
19194
|
sensitive?: boolean | undefined;
|
|
18996
19195
|
label?: string | undefined;
|
|
@@ -19013,10 +19212,16 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19013
19212
|
config: z.ZodObject<{
|
|
19014
19213
|
component: z.ZodOptional<z.ZodString>;
|
|
19015
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>;
|
|
19016
19217
|
}, "strip", z.ZodTypeAny, {
|
|
19218
|
+
code?: string | undefined;
|
|
19219
|
+
schema?: Record<string, any> | undefined;
|
|
19017
19220
|
component?: string | undefined;
|
|
19018
19221
|
props?: Record<string, any> | undefined;
|
|
19019
19222
|
}, {
|
|
19223
|
+
code?: string | undefined;
|
|
19224
|
+
schema?: Record<string, any> | undefined;
|
|
19020
19225
|
component?: string | undefined;
|
|
19021
19226
|
props?: Record<string, any> | undefined;
|
|
19022
19227
|
}>;
|
|
@@ -19024,6 +19229,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19024
19229
|
type: "CUSTOM";
|
|
19025
19230
|
id: string;
|
|
19026
19231
|
config: {
|
|
19232
|
+
code?: string | undefined;
|
|
19233
|
+
schema?: Record<string, any> | undefined;
|
|
19027
19234
|
component?: string | undefined;
|
|
19028
19235
|
props?: Record<string, any> | undefined;
|
|
19029
19236
|
};
|
|
@@ -19038,6 +19245,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19038
19245
|
type: "CUSTOM";
|
|
19039
19246
|
id: string;
|
|
19040
19247
|
config: {
|
|
19248
|
+
code?: string | undefined;
|
|
19249
|
+
schema?: Record<string, any> | undefined;
|
|
19041
19250
|
component?: string | undefined;
|
|
19042
19251
|
props?: Record<string, any> | undefined;
|
|
19043
19252
|
};
|
|
@@ -19130,12 +19339,19 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19130
19339
|
}>, "many">>;
|
|
19131
19340
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
19132
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
|
+
]>>;
|
|
19133
19347
|
}, "strip", z.ZodTypeAny, {
|
|
19134
19348
|
options?: {
|
|
19135
19349
|
value: string;
|
|
19136
19350
|
label: string;
|
|
19137
19351
|
}[] | undefined;
|
|
19138
19352
|
placeholder?: string | undefined;
|
|
19353
|
+
default_value?: string | string[] | undefined;
|
|
19354
|
+
multiple?: boolean | undefined;
|
|
19139
19355
|
searchable?: boolean | undefined;
|
|
19140
19356
|
}, {
|
|
19141
19357
|
options?: {
|
|
@@ -19143,6 +19359,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19143
19359
|
label: string;
|
|
19144
19360
|
}[] | undefined;
|
|
19145
19361
|
placeholder?: string | undefined;
|
|
19362
|
+
default_value?: string | string[] | undefined;
|
|
19363
|
+
multiple?: boolean | undefined;
|
|
19146
19364
|
searchable?: boolean | undefined;
|
|
19147
19365
|
}>>;
|
|
19148
19366
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -19157,6 +19375,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19157
19375
|
label: string;
|
|
19158
19376
|
}[] | undefined;
|
|
19159
19377
|
placeholder?: string | undefined;
|
|
19378
|
+
default_value?: string | string[] | undefined;
|
|
19379
|
+
multiple?: boolean | undefined;
|
|
19160
19380
|
searchable?: boolean | undefined;
|
|
19161
19381
|
} | undefined;
|
|
19162
19382
|
sensitive?: boolean | undefined;
|
|
@@ -19174,6 +19394,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19174
19394
|
label: string;
|
|
19175
19395
|
}[] | undefined;
|
|
19176
19396
|
placeholder?: string | undefined;
|
|
19397
|
+
default_value?: string | string[] | undefined;
|
|
19398
|
+
multiple?: boolean | undefined;
|
|
19177
19399
|
searchable?: boolean | undefined;
|
|
19178
19400
|
} | undefined;
|
|
19179
19401
|
sensitive?: boolean | undefined;
|
|
@@ -19245,13 +19467,13 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19245
19467
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
19246
19468
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
19247
19469
|
}, "strip", z.ZodTypeAny, {
|
|
19470
|
+
multiple?: boolean | undefined;
|
|
19248
19471
|
accept?: string | undefined;
|
|
19249
19472
|
max_size?: number | undefined;
|
|
19250
|
-
multiple?: boolean | undefined;
|
|
19251
19473
|
}, {
|
|
19474
|
+
multiple?: boolean | undefined;
|
|
19252
19475
|
accept?: string | undefined;
|
|
19253
19476
|
max_size?: number | undefined;
|
|
19254
|
-
multiple?: boolean | undefined;
|
|
19255
19477
|
}>>;
|
|
19256
19478
|
}, "strip", z.ZodTypeAny, {
|
|
19257
19479
|
type: "FILE";
|
|
@@ -19260,9 +19482,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19260
19482
|
required?: boolean | undefined;
|
|
19261
19483
|
category?: "FIELD" | undefined;
|
|
19262
19484
|
config?: {
|
|
19485
|
+
multiple?: boolean | undefined;
|
|
19263
19486
|
accept?: string | undefined;
|
|
19264
19487
|
max_size?: number | undefined;
|
|
19265
|
-
multiple?: boolean | undefined;
|
|
19266
19488
|
} | undefined;
|
|
19267
19489
|
sensitive?: boolean | undefined;
|
|
19268
19490
|
label?: string | undefined;
|
|
@@ -19274,9 +19496,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19274
19496
|
required?: boolean | undefined;
|
|
19275
19497
|
category?: "FIELD" | undefined;
|
|
19276
19498
|
config?: {
|
|
19499
|
+
multiple?: boolean | undefined;
|
|
19277
19500
|
accept?: string | undefined;
|
|
19278
19501
|
max_size?: number | undefined;
|
|
19279
|
-
multiple?: boolean | undefined;
|
|
19280
19502
|
} | undefined;
|
|
19281
19503
|
sensitive?: boolean | undefined;
|
|
19282
19504
|
label?: string | undefined;
|
|
@@ -19908,7 +20130,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19908
20130
|
value: string;
|
|
19909
20131
|
label: string;
|
|
19910
20132
|
}[] | undefined;
|
|
20133
|
+
default_value?: string | string[] | undefined;
|
|
19911
20134
|
display?: "radio" | "checkbox" | undefined;
|
|
20135
|
+
multiple?: boolean | undefined;
|
|
19912
20136
|
} | undefined;
|
|
19913
20137
|
sensitive?: boolean | undefined;
|
|
19914
20138
|
label?: string | undefined;
|
|
@@ -19918,6 +20142,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19918
20142
|
type: "CUSTOM";
|
|
19919
20143
|
id: string;
|
|
19920
20144
|
config: {
|
|
20145
|
+
code?: string | undefined;
|
|
20146
|
+
schema?: Record<string, any> | undefined;
|
|
19921
20147
|
component?: string | undefined;
|
|
19922
20148
|
props?: Record<string, any> | undefined;
|
|
19923
20149
|
};
|
|
@@ -19955,6 +20181,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19955
20181
|
label: string;
|
|
19956
20182
|
}[] | undefined;
|
|
19957
20183
|
placeholder?: string | undefined;
|
|
20184
|
+
default_value?: string | string[] | undefined;
|
|
20185
|
+
multiple?: boolean | undefined;
|
|
19958
20186
|
searchable?: boolean | undefined;
|
|
19959
20187
|
} | undefined;
|
|
19960
20188
|
sensitive?: boolean | undefined;
|
|
@@ -19981,9 +20209,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19981
20209
|
required?: boolean | undefined;
|
|
19982
20210
|
category?: "FIELD" | undefined;
|
|
19983
20211
|
config?: {
|
|
20212
|
+
multiple?: boolean | undefined;
|
|
19984
20213
|
accept?: string | undefined;
|
|
19985
20214
|
max_size?: number | undefined;
|
|
19986
|
-
multiple?: boolean | undefined;
|
|
19987
20215
|
} | undefined;
|
|
19988
20216
|
sensitive?: boolean | undefined;
|
|
19989
20217
|
label?: string | undefined;
|
|
@@ -20269,7 +20497,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20269
20497
|
value: string;
|
|
20270
20498
|
label: string;
|
|
20271
20499
|
}[] | undefined;
|
|
20500
|
+
default_value?: string | string[] | undefined;
|
|
20272
20501
|
display?: "radio" | "checkbox" | undefined;
|
|
20502
|
+
multiple?: boolean | undefined;
|
|
20273
20503
|
} | undefined;
|
|
20274
20504
|
sensitive?: boolean | undefined;
|
|
20275
20505
|
label?: string | undefined;
|
|
@@ -20280,6 +20510,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20280
20510
|
type: "CUSTOM";
|
|
20281
20511
|
id: string;
|
|
20282
20512
|
config: {
|
|
20513
|
+
code?: string | undefined;
|
|
20514
|
+
schema?: Record<string, any> | undefined;
|
|
20283
20515
|
component?: string | undefined;
|
|
20284
20516
|
props?: Record<string, any> | undefined;
|
|
20285
20517
|
};
|
|
@@ -20316,6 +20548,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20316
20548
|
label: string;
|
|
20317
20549
|
}[] | undefined;
|
|
20318
20550
|
placeholder?: string | undefined;
|
|
20551
|
+
default_value?: string | string[] | undefined;
|
|
20552
|
+
multiple?: boolean | undefined;
|
|
20319
20553
|
searchable?: boolean | undefined;
|
|
20320
20554
|
} | undefined;
|
|
20321
20555
|
sensitive?: boolean | undefined;
|
|
@@ -20342,9 +20576,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20342
20576
|
required?: boolean | undefined;
|
|
20343
20577
|
category?: "FIELD" | undefined;
|
|
20344
20578
|
config?: {
|
|
20579
|
+
multiple?: boolean | undefined;
|
|
20345
20580
|
accept?: string | undefined;
|
|
20346
20581
|
max_size?: number | undefined;
|
|
20347
|
-
multiple?: boolean | undefined;
|
|
20348
20582
|
} | undefined;
|
|
20349
20583
|
sensitive?: boolean | undefined;
|
|
20350
20584
|
label?: string | undefined;
|
|
@@ -20636,7 +20870,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20636
20870
|
value: string;
|
|
20637
20871
|
label: string;
|
|
20638
20872
|
}[] | undefined;
|
|
20873
|
+
default_value?: string | string[] | undefined;
|
|
20639
20874
|
display?: "radio" | "checkbox" | undefined;
|
|
20875
|
+
multiple?: boolean | undefined;
|
|
20640
20876
|
} | undefined;
|
|
20641
20877
|
sensitive?: boolean | undefined;
|
|
20642
20878
|
label?: string | undefined;
|
|
@@ -20646,6 +20882,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20646
20882
|
type: "CUSTOM";
|
|
20647
20883
|
id: string;
|
|
20648
20884
|
config: {
|
|
20885
|
+
code?: string | undefined;
|
|
20886
|
+
schema?: Record<string, any> | undefined;
|
|
20649
20887
|
component?: string | undefined;
|
|
20650
20888
|
props?: Record<string, any> | undefined;
|
|
20651
20889
|
};
|
|
@@ -20683,6 +20921,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20683
20921
|
label: string;
|
|
20684
20922
|
}[] | undefined;
|
|
20685
20923
|
placeholder?: string | undefined;
|
|
20924
|
+
default_value?: string | string[] | undefined;
|
|
20925
|
+
multiple?: boolean | undefined;
|
|
20686
20926
|
searchable?: boolean | undefined;
|
|
20687
20927
|
} | undefined;
|
|
20688
20928
|
sensitive?: boolean | undefined;
|
|
@@ -20709,9 +20949,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20709
20949
|
required?: boolean | undefined;
|
|
20710
20950
|
category?: "FIELD" | undefined;
|
|
20711
20951
|
config?: {
|
|
20952
|
+
multiple?: boolean | undefined;
|
|
20712
20953
|
accept?: string | undefined;
|
|
20713
20954
|
max_size?: number | undefined;
|
|
20714
|
-
multiple?: boolean | undefined;
|
|
20715
20955
|
} | undefined;
|
|
20716
20956
|
sensitive?: boolean | undefined;
|
|
20717
20957
|
label?: string | undefined;
|
|
@@ -21006,7 +21246,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
21006
21246
|
value: string;
|
|
21007
21247
|
label: string;
|
|
21008
21248
|
}[] | undefined;
|
|
21249
|
+
default_value?: string | string[] | undefined;
|
|
21009
21250
|
display?: "radio" | "checkbox" | undefined;
|
|
21251
|
+
multiple?: boolean | undefined;
|
|
21010
21252
|
} | undefined;
|
|
21011
21253
|
sensitive?: boolean | undefined;
|
|
21012
21254
|
label?: string | undefined;
|
|
@@ -21017,6 +21259,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
21017
21259
|
type: "CUSTOM";
|
|
21018
21260
|
id: string;
|
|
21019
21261
|
config: {
|
|
21262
|
+
code?: string | undefined;
|
|
21263
|
+
schema?: Record<string, any> | undefined;
|
|
21020
21264
|
component?: string | undefined;
|
|
21021
21265
|
props?: Record<string, any> | undefined;
|
|
21022
21266
|
};
|
|
@@ -21053,6 +21297,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
21053
21297
|
label: string;
|
|
21054
21298
|
}[] | undefined;
|
|
21055
21299
|
placeholder?: string | undefined;
|
|
21300
|
+
default_value?: string | string[] | undefined;
|
|
21301
|
+
multiple?: boolean | undefined;
|
|
21056
21302
|
searchable?: boolean | undefined;
|
|
21057
21303
|
} | undefined;
|
|
21058
21304
|
sensitive?: boolean | undefined;
|
|
@@ -21079,9 +21325,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
21079
21325
|
required?: boolean | undefined;
|
|
21080
21326
|
category?: "FIELD" | undefined;
|
|
21081
21327
|
config?: {
|
|
21328
|
+
multiple?: boolean | undefined;
|
|
21082
21329
|
accept?: string | undefined;
|
|
21083
21330
|
max_size?: number | undefined;
|
|
21084
|
-
multiple?: boolean | undefined;
|
|
21085
21331
|
} | undefined;
|
|
21086
21332
|
sensitive?: boolean | undefined;
|
|
21087
21333
|
label?: string | undefined;
|
|
@@ -21988,18 +22234,27 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
21988
22234
|
"radio",
|
|
21989
22235
|
"checkbox"
|
|
21990
22236
|
]>>;
|
|
22237
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
22238
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
22239
|
+
z.ZodString,
|
|
22240
|
+
z.ZodArray<z.ZodString, "many">
|
|
22241
|
+
]>>;
|
|
21991
22242
|
}, "strip", z.ZodTypeAny, {
|
|
21992
22243
|
options?: {
|
|
21993
22244
|
value: string;
|
|
21994
22245
|
label: string;
|
|
21995
22246
|
}[] | undefined;
|
|
22247
|
+
default_value?: string | string[] | undefined;
|
|
21996
22248
|
display?: "radio" | "checkbox" | undefined;
|
|
22249
|
+
multiple?: boolean | undefined;
|
|
21997
22250
|
}, {
|
|
21998
22251
|
options?: {
|
|
21999
22252
|
value: string;
|
|
22000
22253
|
label: string;
|
|
22001
22254
|
}[] | undefined;
|
|
22255
|
+
default_value?: string | string[] | undefined;
|
|
22002
22256
|
display?: "radio" | "checkbox" | undefined;
|
|
22257
|
+
multiple?: boolean | undefined;
|
|
22003
22258
|
}>>;
|
|
22004
22259
|
}, "strip", z.ZodTypeAny, {
|
|
22005
22260
|
type: "CHOICE";
|
|
@@ -22012,7 +22267,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22012
22267
|
value: string;
|
|
22013
22268
|
label: string;
|
|
22014
22269
|
}[] | undefined;
|
|
22270
|
+
default_value?: string | string[] | undefined;
|
|
22015
22271
|
display?: "radio" | "checkbox" | undefined;
|
|
22272
|
+
multiple?: boolean | undefined;
|
|
22016
22273
|
} | undefined;
|
|
22017
22274
|
sensitive?: boolean | undefined;
|
|
22018
22275
|
label?: string | undefined;
|
|
@@ -22028,7 +22285,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22028
22285
|
value: string;
|
|
22029
22286
|
label: string;
|
|
22030
22287
|
}[] | undefined;
|
|
22288
|
+
default_value?: string | string[] | undefined;
|
|
22031
22289
|
display?: "radio" | "checkbox" | undefined;
|
|
22290
|
+
multiple?: boolean | undefined;
|
|
22032
22291
|
} | undefined;
|
|
22033
22292
|
sensitive?: boolean | undefined;
|
|
22034
22293
|
label?: string | undefined;
|
|
@@ -22051,10 +22310,16 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22051
22310
|
config: z.ZodObject<{
|
|
22052
22311
|
component: z.ZodOptional<z.ZodString>;
|
|
22053
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>;
|
|
22054
22315
|
}, "strip", z.ZodTypeAny, {
|
|
22316
|
+
code?: string | undefined;
|
|
22317
|
+
schema?: Record<string, any> | undefined;
|
|
22055
22318
|
component?: string | undefined;
|
|
22056
22319
|
props?: Record<string, any> | undefined;
|
|
22057
22320
|
}, {
|
|
22321
|
+
code?: string | undefined;
|
|
22322
|
+
schema?: Record<string, any> | undefined;
|
|
22058
22323
|
component?: string | undefined;
|
|
22059
22324
|
props?: Record<string, any> | undefined;
|
|
22060
22325
|
}>;
|
|
@@ -22062,6 +22327,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22062
22327
|
type: "CUSTOM";
|
|
22063
22328
|
id: string;
|
|
22064
22329
|
config: {
|
|
22330
|
+
code?: string | undefined;
|
|
22331
|
+
schema?: Record<string, any> | undefined;
|
|
22065
22332
|
component?: string | undefined;
|
|
22066
22333
|
props?: Record<string, any> | undefined;
|
|
22067
22334
|
};
|
|
@@ -22076,6 +22343,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22076
22343
|
type: "CUSTOM";
|
|
22077
22344
|
id: string;
|
|
22078
22345
|
config: {
|
|
22346
|
+
code?: string | undefined;
|
|
22347
|
+
schema?: Record<string, any> | undefined;
|
|
22079
22348
|
component?: string | undefined;
|
|
22080
22349
|
props?: Record<string, any> | undefined;
|
|
22081
22350
|
};
|
|
@@ -22168,12 +22437,19 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22168
22437
|
}>, "many">>;
|
|
22169
22438
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
22170
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
|
+
]>>;
|
|
22171
22445
|
}, "strip", z.ZodTypeAny, {
|
|
22172
22446
|
options?: {
|
|
22173
22447
|
value: string;
|
|
22174
22448
|
label: string;
|
|
22175
22449
|
}[] | undefined;
|
|
22176
22450
|
placeholder?: string | undefined;
|
|
22451
|
+
default_value?: string | string[] | undefined;
|
|
22452
|
+
multiple?: boolean | undefined;
|
|
22177
22453
|
searchable?: boolean | undefined;
|
|
22178
22454
|
}, {
|
|
22179
22455
|
options?: {
|
|
@@ -22181,6 +22457,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22181
22457
|
label: string;
|
|
22182
22458
|
}[] | undefined;
|
|
22183
22459
|
placeholder?: string | undefined;
|
|
22460
|
+
default_value?: string | string[] | undefined;
|
|
22461
|
+
multiple?: boolean | undefined;
|
|
22184
22462
|
searchable?: boolean | undefined;
|
|
22185
22463
|
}>>;
|
|
22186
22464
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -22195,6 +22473,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22195
22473
|
label: string;
|
|
22196
22474
|
}[] | undefined;
|
|
22197
22475
|
placeholder?: string | undefined;
|
|
22476
|
+
default_value?: string | string[] | undefined;
|
|
22477
|
+
multiple?: boolean | undefined;
|
|
22198
22478
|
searchable?: boolean | undefined;
|
|
22199
22479
|
} | undefined;
|
|
22200
22480
|
sensitive?: boolean | undefined;
|
|
@@ -22212,6 +22492,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22212
22492
|
label: string;
|
|
22213
22493
|
}[] | undefined;
|
|
22214
22494
|
placeholder?: string | undefined;
|
|
22495
|
+
default_value?: string | string[] | undefined;
|
|
22496
|
+
multiple?: boolean | undefined;
|
|
22215
22497
|
searchable?: boolean | undefined;
|
|
22216
22498
|
} | undefined;
|
|
22217
22499
|
sensitive?: boolean | undefined;
|
|
@@ -22283,13 +22565,13 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22283
22565
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
22284
22566
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
22285
22567
|
}, "strip", z.ZodTypeAny, {
|
|
22568
|
+
multiple?: boolean | undefined;
|
|
22286
22569
|
accept?: string | undefined;
|
|
22287
22570
|
max_size?: number | undefined;
|
|
22288
|
-
multiple?: boolean | undefined;
|
|
22289
22571
|
}, {
|
|
22572
|
+
multiple?: boolean | undefined;
|
|
22290
22573
|
accept?: string | undefined;
|
|
22291
22574
|
max_size?: number | undefined;
|
|
22292
|
-
multiple?: boolean | undefined;
|
|
22293
22575
|
}>>;
|
|
22294
22576
|
}, "strip", z.ZodTypeAny, {
|
|
22295
22577
|
type: "FILE";
|
|
@@ -22298,9 +22580,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22298
22580
|
required?: boolean | undefined;
|
|
22299
22581
|
category?: "FIELD" | undefined;
|
|
22300
22582
|
config?: {
|
|
22583
|
+
multiple?: boolean | undefined;
|
|
22301
22584
|
accept?: string | undefined;
|
|
22302
22585
|
max_size?: number | undefined;
|
|
22303
|
-
multiple?: boolean | undefined;
|
|
22304
22586
|
} | undefined;
|
|
22305
22587
|
sensitive?: boolean | undefined;
|
|
22306
22588
|
label?: string | undefined;
|
|
@@ -22312,9 +22594,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22312
22594
|
required?: boolean | undefined;
|
|
22313
22595
|
category?: "FIELD" | undefined;
|
|
22314
22596
|
config?: {
|
|
22597
|
+
multiple?: boolean | undefined;
|
|
22315
22598
|
accept?: string | undefined;
|
|
22316
22599
|
max_size?: number | undefined;
|
|
22317
|
-
multiple?: boolean | undefined;
|
|
22318
22600
|
} | undefined;
|
|
22319
22601
|
sensitive?: boolean | undefined;
|
|
22320
22602
|
label?: string | undefined;
|
|
@@ -22946,7 +23228,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22946
23228
|
value: string;
|
|
22947
23229
|
label: string;
|
|
22948
23230
|
}[] | undefined;
|
|
23231
|
+
default_value?: string | string[] | undefined;
|
|
22949
23232
|
display?: "radio" | "checkbox" | undefined;
|
|
23233
|
+
multiple?: boolean | undefined;
|
|
22950
23234
|
} | undefined;
|
|
22951
23235
|
sensitive?: boolean | undefined;
|
|
22952
23236
|
label?: string | undefined;
|
|
@@ -22956,6 +23240,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22956
23240
|
type: "CUSTOM";
|
|
22957
23241
|
id: string;
|
|
22958
23242
|
config: {
|
|
23243
|
+
code?: string | undefined;
|
|
23244
|
+
schema?: Record<string, any> | undefined;
|
|
22959
23245
|
component?: string | undefined;
|
|
22960
23246
|
props?: Record<string, any> | undefined;
|
|
22961
23247
|
};
|
|
@@ -22993,6 +23279,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22993
23279
|
label: string;
|
|
22994
23280
|
}[] | undefined;
|
|
22995
23281
|
placeholder?: string | undefined;
|
|
23282
|
+
default_value?: string | string[] | undefined;
|
|
23283
|
+
multiple?: boolean | undefined;
|
|
22996
23284
|
searchable?: boolean | undefined;
|
|
22997
23285
|
} | undefined;
|
|
22998
23286
|
sensitive?: boolean | undefined;
|
|
@@ -23019,9 +23307,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23019
23307
|
required?: boolean | undefined;
|
|
23020
23308
|
category?: "FIELD" | undefined;
|
|
23021
23309
|
config?: {
|
|
23310
|
+
multiple?: boolean | undefined;
|
|
23022
23311
|
accept?: string | undefined;
|
|
23023
23312
|
max_size?: number | undefined;
|
|
23024
|
-
multiple?: boolean | undefined;
|
|
23025
23313
|
} | undefined;
|
|
23026
23314
|
sensitive?: boolean | undefined;
|
|
23027
23315
|
label?: string | undefined;
|
|
@@ -23307,7 +23595,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23307
23595
|
value: string;
|
|
23308
23596
|
label: string;
|
|
23309
23597
|
}[] | undefined;
|
|
23598
|
+
default_value?: string | string[] | undefined;
|
|
23310
23599
|
display?: "radio" | "checkbox" | undefined;
|
|
23600
|
+
multiple?: boolean | undefined;
|
|
23311
23601
|
} | undefined;
|
|
23312
23602
|
sensitive?: boolean | undefined;
|
|
23313
23603
|
label?: string | undefined;
|
|
@@ -23318,6 +23608,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23318
23608
|
type: "CUSTOM";
|
|
23319
23609
|
id: string;
|
|
23320
23610
|
config: {
|
|
23611
|
+
code?: string | undefined;
|
|
23612
|
+
schema?: Record<string, any> | undefined;
|
|
23321
23613
|
component?: string | undefined;
|
|
23322
23614
|
props?: Record<string, any> | undefined;
|
|
23323
23615
|
};
|
|
@@ -23354,6 +23646,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23354
23646
|
label: string;
|
|
23355
23647
|
}[] | undefined;
|
|
23356
23648
|
placeholder?: string | undefined;
|
|
23649
|
+
default_value?: string | string[] | undefined;
|
|
23650
|
+
multiple?: boolean | undefined;
|
|
23357
23651
|
searchable?: boolean | undefined;
|
|
23358
23652
|
} | undefined;
|
|
23359
23653
|
sensitive?: boolean | undefined;
|
|
@@ -23380,9 +23674,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23380
23674
|
required?: boolean | undefined;
|
|
23381
23675
|
category?: "FIELD" | undefined;
|
|
23382
23676
|
config?: {
|
|
23677
|
+
multiple?: boolean | undefined;
|
|
23383
23678
|
accept?: string | undefined;
|
|
23384
23679
|
max_size?: number | undefined;
|
|
23385
|
-
multiple?: boolean | undefined;
|
|
23386
23680
|
} | undefined;
|
|
23387
23681
|
sensitive?: boolean | undefined;
|
|
23388
23682
|
label?: string | undefined;
|
|
@@ -23674,7 +23968,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23674
23968
|
value: string;
|
|
23675
23969
|
label: string;
|
|
23676
23970
|
}[] | undefined;
|
|
23971
|
+
default_value?: string | string[] | undefined;
|
|
23677
23972
|
display?: "radio" | "checkbox" | undefined;
|
|
23973
|
+
multiple?: boolean | undefined;
|
|
23678
23974
|
} | undefined;
|
|
23679
23975
|
sensitive?: boolean | undefined;
|
|
23680
23976
|
label?: string | undefined;
|
|
@@ -23684,6 +23980,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23684
23980
|
type: "CUSTOM";
|
|
23685
23981
|
id: string;
|
|
23686
23982
|
config: {
|
|
23983
|
+
code?: string | undefined;
|
|
23984
|
+
schema?: Record<string, any> | undefined;
|
|
23687
23985
|
component?: string | undefined;
|
|
23688
23986
|
props?: Record<string, any> | undefined;
|
|
23689
23987
|
};
|
|
@@ -23721,6 +24019,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23721
24019
|
label: string;
|
|
23722
24020
|
}[] | undefined;
|
|
23723
24021
|
placeholder?: string | undefined;
|
|
24022
|
+
default_value?: string | string[] | undefined;
|
|
24023
|
+
multiple?: boolean | undefined;
|
|
23724
24024
|
searchable?: boolean | undefined;
|
|
23725
24025
|
} | undefined;
|
|
23726
24026
|
sensitive?: boolean | undefined;
|
|
@@ -23747,9 +24047,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23747
24047
|
required?: boolean | undefined;
|
|
23748
24048
|
category?: "FIELD" | undefined;
|
|
23749
24049
|
config?: {
|
|
24050
|
+
multiple?: boolean | undefined;
|
|
23750
24051
|
accept?: string | undefined;
|
|
23751
24052
|
max_size?: number | undefined;
|
|
23752
|
-
multiple?: boolean | undefined;
|
|
23753
24053
|
} | undefined;
|
|
23754
24054
|
sensitive?: boolean | undefined;
|
|
23755
24055
|
label?: string | undefined;
|
|
@@ -24044,7 +24344,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24044
24344
|
value: string;
|
|
24045
24345
|
label: string;
|
|
24046
24346
|
}[] | undefined;
|
|
24347
|
+
default_value?: string | string[] | undefined;
|
|
24047
24348
|
display?: "radio" | "checkbox" | undefined;
|
|
24349
|
+
multiple?: boolean | undefined;
|
|
24048
24350
|
} | undefined;
|
|
24049
24351
|
sensitive?: boolean | undefined;
|
|
24050
24352
|
label?: string | undefined;
|
|
@@ -24055,6 +24357,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24055
24357
|
type: "CUSTOM";
|
|
24056
24358
|
id: string;
|
|
24057
24359
|
config: {
|
|
24360
|
+
code?: string | undefined;
|
|
24361
|
+
schema?: Record<string, any> | undefined;
|
|
24058
24362
|
component?: string | undefined;
|
|
24059
24363
|
props?: Record<string, any> | undefined;
|
|
24060
24364
|
};
|
|
@@ -24091,6 +24395,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24091
24395
|
label: string;
|
|
24092
24396
|
}[] | undefined;
|
|
24093
24397
|
placeholder?: string | undefined;
|
|
24398
|
+
default_value?: string | string[] | undefined;
|
|
24399
|
+
multiple?: boolean | undefined;
|
|
24094
24400
|
searchable?: boolean | undefined;
|
|
24095
24401
|
} | undefined;
|
|
24096
24402
|
sensitive?: boolean | undefined;
|
|
@@ -24117,9 +24423,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24117
24423
|
required?: boolean | undefined;
|
|
24118
24424
|
category?: "FIELD" | undefined;
|
|
24119
24425
|
config?: {
|
|
24426
|
+
multiple?: boolean | undefined;
|
|
24120
24427
|
accept?: string | undefined;
|
|
24121
24428
|
max_size?: number | undefined;
|
|
24122
|
-
multiple?: boolean | undefined;
|
|
24123
24429
|
} | undefined;
|
|
24124
24430
|
sensitive?: boolean | undefined;
|
|
24125
24431
|
label?: string | undefined;
|
|
@@ -24363,6 +24669,16 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24363
24669
|
}, {
|
|
24364
24670
|
css?: string | undefined;
|
|
24365
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
|
+
}>>;
|
|
24366
24682
|
}, "strip", z.ZodTypeAny, {
|
|
24367
24683
|
name: string;
|
|
24368
24684
|
style?: {
|
|
@@ -24573,7 +24889,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24573
24889
|
value: string;
|
|
24574
24890
|
label: string;
|
|
24575
24891
|
}[] | undefined;
|
|
24892
|
+
default_value?: string | string[] | undefined;
|
|
24576
24893
|
display?: "radio" | "checkbox" | undefined;
|
|
24894
|
+
multiple?: boolean | undefined;
|
|
24577
24895
|
} | undefined;
|
|
24578
24896
|
sensitive?: boolean | undefined;
|
|
24579
24897
|
label?: string | undefined;
|
|
@@ -24583,6 +24901,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24583
24901
|
type: "CUSTOM";
|
|
24584
24902
|
id: string;
|
|
24585
24903
|
config: {
|
|
24904
|
+
code?: string | undefined;
|
|
24905
|
+
schema?: Record<string, any> | undefined;
|
|
24586
24906
|
component?: string | undefined;
|
|
24587
24907
|
props?: Record<string, any> | undefined;
|
|
24588
24908
|
};
|
|
@@ -24620,6 +24940,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24620
24940
|
label: string;
|
|
24621
24941
|
}[] | undefined;
|
|
24622
24942
|
placeholder?: string | undefined;
|
|
24943
|
+
default_value?: string | string[] | undefined;
|
|
24944
|
+
multiple?: boolean | undefined;
|
|
24623
24945
|
searchable?: boolean | undefined;
|
|
24624
24946
|
} | undefined;
|
|
24625
24947
|
sensitive?: boolean | undefined;
|
|
@@ -24646,9 +24968,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24646
24968
|
required?: boolean | undefined;
|
|
24647
24969
|
category?: "FIELD" | undefined;
|
|
24648
24970
|
config?: {
|
|
24971
|
+
multiple?: boolean | undefined;
|
|
24649
24972
|
accept?: string | undefined;
|
|
24650
24973
|
max_size?: number | undefined;
|
|
24651
|
-
multiple?: boolean | undefined;
|
|
24652
24974
|
} | undefined;
|
|
24653
24975
|
sensitive?: boolean | undefined;
|
|
24654
24976
|
label?: string | undefined;
|
|
@@ -24798,6 +25120,10 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24798
25120
|
flow_id?: string | undefined;
|
|
24799
25121
|
} | undefined;
|
|
24800
25122
|
} | undefined;
|
|
25123
|
+
links?: {
|
|
25124
|
+
sdkSrc?: string | undefined;
|
|
25125
|
+
sdk_src?: string | undefined;
|
|
25126
|
+
} | undefined;
|
|
24801
25127
|
messages?: {
|
|
24802
25128
|
custom?: Record<string, any> | undefined;
|
|
24803
25129
|
errors?: Record<string, any> | undefined;
|
|
@@ -25012,7 +25338,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
25012
25338
|
value: string;
|
|
25013
25339
|
label: string;
|
|
25014
25340
|
}[] | undefined;
|
|
25341
|
+
default_value?: string | string[] | undefined;
|
|
25015
25342
|
display?: "radio" | "checkbox" | undefined;
|
|
25343
|
+
multiple?: boolean | undefined;
|
|
25016
25344
|
} | undefined;
|
|
25017
25345
|
sensitive?: boolean | undefined;
|
|
25018
25346
|
label?: string | undefined;
|
|
@@ -25023,6 +25351,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
25023
25351
|
type: "CUSTOM";
|
|
25024
25352
|
id: string;
|
|
25025
25353
|
config: {
|
|
25354
|
+
code?: string | undefined;
|
|
25355
|
+
schema?: Record<string, any> | undefined;
|
|
25026
25356
|
component?: string | undefined;
|
|
25027
25357
|
props?: Record<string, any> | undefined;
|
|
25028
25358
|
};
|
|
@@ -25059,6 +25389,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
25059
25389
|
label: string;
|
|
25060
25390
|
}[] | undefined;
|
|
25061
25391
|
placeholder?: string | undefined;
|
|
25392
|
+
default_value?: string | string[] | undefined;
|
|
25393
|
+
multiple?: boolean | undefined;
|
|
25062
25394
|
searchable?: boolean | undefined;
|
|
25063
25395
|
} | undefined;
|
|
25064
25396
|
sensitive?: boolean | undefined;
|
|
@@ -25085,9 +25417,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
25085
25417
|
required?: boolean | undefined;
|
|
25086
25418
|
category?: "FIELD" | undefined;
|
|
25087
25419
|
config?: {
|
|
25420
|
+
multiple?: boolean | undefined;
|
|
25088
25421
|
accept?: string | undefined;
|
|
25089
25422
|
max_size?: number | undefined;
|
|
25090
|
-
multiple?: boolean | undefined;
|
|
25091
25423
|
} | undefined;
|
|
25092
25424
|
sensitive?: boolean | undefined;
|
|
25093
25425
|
label?: string | undefined;
|
|
@@ -25238,6 +25570,10 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
25238
25570
|
flow_id?: string | undefined;
|
|
25239
25571
|
} | undefined;
|
|
25240
25572
|
} | undefined;
|
|
25573
|
+
links?: {
|
|
25574
|
+
sdkSrc?: string | undefined;
|
|
25575
|
+
sdk_src?: string | undefined;
|
|
25576
|
+
} | undefined;
|
|
25241
25577
|
messages?: {
|
|
25242
25578
|
custom?: Record<string, any> | undefined;
|
|
25243
25579
|
errors?: Record<string, any> | undefined;
|
|
@@ -26011,18 +26347,27 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26011
26347
|
"radio",
|
|
26012
26348
|
"checkbox"
|
|
26013
26349
|
]>>;
|
|
26350
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
26351
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
26352
|
+
z.ZodString,
|
|
26353
|
+
z.ZodArray<z.ZodString, "many">
|
|
26354
|
+
]>>;
|
|
26014
26355
|
}, "strip", z.ZodTypeAny, {
|
|
26015
26356
|
options?: {
|
|
26016
26357
|
value: string;
|
|
26017
26358
|
label: string;
|
|
26018
26359
|
}[] | undefined;
|
|
26360
|
+
default_value?: string | string[] | undefined;
|
|
26019
26361
|
display?: "radio" | "checkbox" | undefined;
|
|
26362
|
+
multiple?: boolean | undefined;
|
|
26020
26363
|
}, {
|
|
26021
26364
|
options?: {
|
|
26022
26365
|
value: string;
|
|
26023
26366
|
label: string;
|
|
26024
26367
|
}[] | undefined;
|
|
26368
|
+
default_value?: string | string[] | undefined;
|
|
26025
26369
|
display?: "radio" | "checkbox" | undefined;
|
|
26370
|
+
multiple?: boolean | undefined;
|
|
26026
26371
|
}>>;
|
|
26027
26372
|
}, "strip", z.ZodTypeAny, {
|
|
26028
26373
|
type: "CHOICE";
|
|
@@ -26035,7 +26380,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26035
26380
|
value: string;
|
|
26036
26381
|
label: string;
|
|
26037
26382
|
}[] | undefined;
|
|
26383
|
+
default_value?: string | string[] | undefined;
|
|
26038
26384
|
display?: "radio" | "checkbox" | undefined;
|
|
26385
|
+
multiple?: boolean | undefined;
|
|
26039
26386
|
} | undefined;
|
|
26040
26387
|
sensitive?: boolean | undefined;
|
|
26041
26388
|
label?: string | undefined;
|
|
@@ -26051,7 +26398,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26051
26398
|
value: string;
|
|
26052
26399
|
label: string;
|
|
26053
26400
|
}[] | undefined;
|
|
26401
|
+
default_value?: string | string[] | undefined;
|
|
26054
26402
|
display?: "radio" | "checkbox" | undefined;
|
|
26403
|
+
multiple?: boolean | undefined;
|
|
26055
26404
|
} | undefined;
|
|
26056
26405
|
sensitive?: boolean | undefined;
|
|
26057
26406
|
label?: string | undefined;
|
|
@@ -26074,10 +26423,16 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26074
26423
|
config: z.ZodObject<{
|
|
26075
26424
|
component: z.ZodOptional<z.ZodString>;
|
|
26076
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>;
|
|
26077
26428
|
}, "strip", z.ZodTypeAny, {
|
|
26429
|
+
code?: string | undefined;
|
|
26430
|
+
schema?: Record<string, any> | undefined;
|
|
26078
26431
|
component?: string | undefined;
|
|
26079
26432
|
props?: Record<string, any> | undefined;
|
|
26080
26433
|
}, {
|
|
26434
|
+
code?: string | undefined;
|
|
26435
|
+
schema?: Record<string, any> | undefined;
|
|
26081
26436
|
component?: string | undefined;
|
|
26082
26437
|
props?: Record<string, any> | undefined;
|
|
26083
26438
|
}>;
|
|
@@ -26085,6 +26440,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26085
26440
|
type: "CUSTOM";
|
|
26086
26441
|
id: string;
|
|
26087
26442
|
config: {
|
|
26443
|
+
code?: string | undefined;
|
|
26444
|
+
schema?: Record<string, any> | undefined;
|
|
26088
26445
|
component?: string | undefined;
|
|
26089
26446
|
props?: Record<string, any> | undefined;
|
|
26090
26447
|
};
|
|
@@ -26099,6 +26456,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26099
26456
|
type: "CUSTOM";
|
|
26100
26457
|
id: string;
|
|
26101
26458
|
config: {
|
|
26459
|
+
code?: string | undefined;
|
|
26460
|
+
schema?: Record<string, any> | undefined;
|
|
26102
26461
|
component?: string | undefined;
|
|
26103
26462
|
props?: Record<string, any> | undefined;
|
|
26104
26463
|
};
|
|
@@ -26191,12 +26550,19 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26191
26550
|
}>, "many">>;
|
|
26192
26551
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
26193
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
|
+
]>>;
|
|
26194
26558
|
}, "strip", z.ZodTypeAny, {
|
|
26195
26559
|
options?: {
|
|
26196
26560
|
value: string;
|
|
26197
26561
|
label: string;
|
|
26198
26562
|
}[] | undefined;
|
|
26199
26563
|
placeholder?: string | undefined;
|
|
26564
|
+
default_value?: string | string[] | undefined;
|
|
26565
|
+
multiple?: boolean | undefined;
|
|
26200
26566
|
searchable?: boolean | undefined;
|
|
26201
26567
|
}, {
|
|
26202
26568
|
options?: {
|
|
@@ -26204,6 +26570,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26204
26570
|
label: string;
|
|
26205
26571
|
}[] | undefined;
|
|
26206
26572
|
placeholder?: string | undefined;
|
|
26573
|
+
default_value?: string | string[] | undefined;
|
|
26574
|
+
multiple?: boolean | undefined;
|
|
26207
26575
|
searchable?: boolean | undefined;
|
|
26208
26576
|
}>>;
|
|
26209
26577
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -26218,6 +26586,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26218
26586
|
label: string;
|
|
26219
26587
|
}[] | undefined;
|
|
26220
26588
|
placeholder?: string | undefined;
|
|
26589
|
+
default_value?: string | string[] | undefined;
|
|
26590
|
+
multiple?: boolean | undefined;
|
|
26221
26591
|
searchable?: boolean | undefined;
|
|
26222
26592
|
} | undefined;
|
|
26223
26593
|
sensitive?: boolean | undefined;
|
|
@@ -26235,6 +26605,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26235
26605
|
label: string;
|
|
26236
26606
|
}[] | undefined;
|
|
26237
26607
|
placeholder?: string | undefined;
|
|
26608
|
+
default_value?: string | string[] | undefined;
|
|
26609
|
+
multiple?: boolean | undefined;
|
|
26238
26610
|
searchable?: boolean | undefined;
|
|
26239
26611
|
} | undefined;
|
|
26240
26612
|
sensitive?: boolean | undefined;
|
|
@@ -26306,13 +26678,13 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26306
26678
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
26307
26679
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
26308
26680
|
}, "strip", z.ZodTypeAny, {
|
|
26681
|
+
multiple?: boolean | undefined;
|
|
26309
26682
|
accept?: string | undefined;
|
|
26310
26683
|
max_size?: number | undefined;
|
|
26311
|
-
multiple?: boolean | undefined;
|
|
26312
26684
|
}, {
|
|
26685
|
+
multiple?: boolean | undefined;
|
|
26313
26686
|
accept?: string | undefined;
|
|
26314
26687
|
max_size?: number | undefined;
|
|
26315
|
-
multiple?: boolean | undefined;
|
|
26316
26688
|
}>>;
|
|
26317
26689
|
}, "strip", z.ZodTypeAny, {
|
|
26318
26690
|
type: "FILE";
|
|
@@ -26321,9 +26693,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26321
26693
|
required?: boolean | undefined;
|
|
26322
26694
|
category?: "FIELD" | undefined;
|
|
26323
26695
|
config?: {
|
|
26696
|
+
multiple?: boolean | undefined;
|
|
26324
26697
|
accept?: string | undefined;
|
|
26325
26698
|
max_size?: number | undefined;
|
|
26326
|
-
multiple?: boolean | undefined;
|
|
26327
26699
|
} | undefined;
|
|
26328
26700
|
sensitive?: boolean | undefined;
|
|
26329
26701
|
label?: string | undefined;
|
|
@@ -26335,9 +26707,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26335
26707
|
required?: boolean | undefined;
|
|
26336
26708
|
category?: "FIELD" | undefined;
|
|
26337
26709
|
config?: {
|
|
26710
|
+
multiple?: boolean | undefined;
|
|
26338
26711
|
accept?: string | undefined;
|
|
26339
26712
|
max_size?: number | undefined;
|
|
26340
|
-
multiple?: boolean | undefined;
|
|
26341
26713
|
} | undefined;
|
|
26342
26714
|
sensitive?: boolean | undefined;
|
|
26343
26715
|
label?: string | undefined;
|
|
@@ -26969,7 +27341,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26969
27341
|
value: string;
|
|
26970
27342
|
label: string;
|
|
26971
27343
|
}[] | undefined;
|
|
27344
|
+
default_value?: string | string[] | undefined;
|
|
26972
27345
|
display?: "radio" | "checkbox" | undefined;
|
|
27346
|
+
multiple?: boolean | undefined;
|
|
26973
27347
|
} | undefined;
|
|
26974
27348
|
sensitive?: boolean | undefined;
|
|
26975
27349
|
label?: string | undefined;
|
|
@@ -26979,6 +27353,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26979
27353
|
type: "CUSTOM";
|
|
26980
27354
|
id: string;
|
|
26981
27355
|
config: {
|
|
27356
|
+
code?: string | undefined;
|
|
27357
|
+
schema?: Record<string, any> | undefined;
|
|
26982
27358
|
component?: string | undefined;
|
|
26983
27359
|
props?: Record<string, any> | undefined;
|
|
26984
27360
|
};
|
|
@@ -27016,6 +27392,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27016
27392
|
label: string;
|
|
27017
27393
|
}[] | undefined;
|
|
27018
27394
|
placeholder?: string | undefined;
|
|
27395
|
+
default_value?: string | string[] | undefined;
|
|
27396
|
+
multiple?: boolean | undefined;
|
|
27019
27397
|
searchable?: boolean | undefined;
|
|
27020
27398
|
} | undefined;
|
|
27021
27399
|
sensitive?: boolean | undefined;
|
|
@@ -27042,9 +27420,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27042
27420
|
required?: boolean | undefined;
|
|
27043
27421
|
category?: "FIELD" | undefined;
|
|
27044
27422
|
config?: {
|
|
27423
|
+
multiple?: boolean | undefined;
|
|
27045
27424
|
accept?: string | undefined;
|
|
27046
27425
|
max_size?: number | undefined;
|
|
27047
|
-
multiple?: boolean | undefined;
|
|
27048
27426
|
} | undefined;
|
|
27049
27427
|
sensitive?: boolean | undefined;
|
|
27050
27428
|
label?: string | undefined;
|
|
@@ -27330,7 +27708,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27330
27708
|
value: string;
|
|
27331
27709
|
label: string;
|
|
27332
27710
|
}[] | undefined;
|
|
27711
|
+
default_value?: string | string[] | undefined;
|
|
27333
27712
|
display?: "radio" | "checkbox" | undefined;
|
|
27713
|
+
multiple?: boolean | undefined;
|
|
27334
27714
|
} | undefined;
|
|
27335
27715
|
sensitive?: boolean | undefined;
|
|
27336
27716
|
label?: string | undefined;
|
|
@@ -27341,6 +27721,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27341
27721
|
type: "CUSTOM";
|
|
27342
27722
|
id: string;
|
|
27343
27723
|
config: {
|
|
27724
|
+
code?: string | undefined;
|
|
27725
|
+
schema?: Record<string, any> | undefined;
|
|
27344
27726
|
component?: string | undefined;
|
|
27345
27727
|
props?: Record<string, any> | undefined;
|
|
27346
27728
|
};
|
|
@@ -27377,6 +27759,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27377
27759
|
label: string;
|
|
27378
27760
|
}[] | undefined;
|
|
27379
27761
|
placeholder?: string | undefined;
|
|
27762
|
+
default_value?: string | string[] | undefined;
|
|
27763
|
+
multiple?: boolean | undefined;
|
|
27380
27764
|
searchable?: boolean | undefined;
|
|
27381
27765
|
} | undefined;
|
|
27382
27766
|
sensitive?: boolean | undefined;
|
|
@@ -27403,9 +27787,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27403
27787
|
required?: boolean | undefined;
|
|
27404
27788
|
category?: "FIELD" | undefined;
|
|
27405
27789
|
config?: {
|
|
27790
|
+
multiple?: boolean | undefined;
|
|
27406
27791
|
accept?: string | undefined;
|
|
27407
27792
|
max_size?: number | undefined;
|
|
27408
|
-
multiple?: boolean | undefined;
|
|
27409
27793
|
} | undefined;
|
|
27410
27794
|
sensitive?: boolean | undefined;
|
|
27411
27795
|
label?: string | undefined;
|
|
@@ -27697,7 +28081,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27697
28081
|
value: string;
|
|
27698
28082
|
label: string;
|
|
27699
28083
|
}[] | undefined;
|
|
28084
|
+
default_value?: string | string[] | undefined;
|
|
27700
28085
|
display?: "radio" | "checkbox" | undefined;
|
|
28086
|
+
multiple?: boolean | undefined;
|
|
27701
28087
|
} | undefined;
|
|
27702
28088
|
sensitive?: boolean | undefined;
|
|
27703
28089
|
label?: string | undefined;
|
|
@@ -27707,6 +28093,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27707
28093
|
type: "CUSTOM";
|
|
27708
28094
|
id: string;
|
|
27709
28095
|
config: {
|
|
28096
|
+
code?: string | undefined;
|
|
28097
|
+
schema?: Record<string, any> | undefined;
|
|
27710
28098
|
component?: string | undefined;
|
|
27711
28099
|
props?: Record<string, any> | undefined;
|
|
27712
28100
|
};
|
|
@@ -27744,6 +28132,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27744
28132
|
label: string;
|
|
27745
28133
|
}[] | undefined;
|
|
27746
28134
|
placeholder?: string | undefined;
|
|
28135
|
+
default_value?: string | string[] | undefined;
|
|
28136
|
+
multiple?: boolean | undefined;
|
|
27747
28137
|
searchable?: boolean | undefined;
|
|
27748
28138
|
} | undefined;
|
|
27749
28139
|
sensitive?: boolean | undefined;
|
|
@@ -27770,9 +28160,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27770
28160
|
required?: boolean | undefined;
|
|
27771
28161
|
category?: "FIELD" | undefined;
|
|
27772
28162
|
config?: {
|
|
28163
|
+
multiple?: boolean | undefined;
|
|
27773
28164
|
accept?: string | undefined;
|
|
27774
28165
|
max_size?: number | undefined;
|
|
27775
|
-
multiple?: boolean | undefined;
|
|
27776
28166
|
} | undefined;
|
|
27777
28167
|
sensitive?: boolean | undefined;
|
|
27778
28168
|
label?: string | undefined;
|
|
@@ -28067,7 +28457,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28067
28457
|
value: string;
|
|
28068
28458
|
label: string;
|
|
28069
28459
|
}[] | undefined;
|
|
28460
|
+
default_value?: string | string[] | undefined;
|
|
28070
28461
|
display?: "radio" | "checkbox" | undefined;
|
|
28462
|
+
multiple?: boolean | undefined;
|
|
28071
28463
|
} | undefined;
|
|
28072
28464
|
sensitive?: boolean | undefined;
|
|
28073
28465
|
label?: string | undefined;
|
|
@@ -28078,6 +28470,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28078
28470
|
type: "CUSTOM";
|
|
28079
28471
|
id: string;
|
|
28080
28472
|
config: {
|
|
28473
|
+
code?: string | undefined;
|
|
28474
|
+
schema?: Record<string, any> | undefined;
|
|
28081
28475
|
component?: string | undefined;
|
|
28082
28476
|
props?: Record<string, any> | undefined;
|
|
28083
28477
|
};
|
|
@@ -28114,6 +28508,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28114
28508
|
label: string;
|
|
28115
28509
|
}[] | undefined;
|
|
28116
28510
|
placeholder?: string | undefined;
|
|
28511
|
+
default_value?: string | string[] | undefined;
|
|
28512
|
+
multiple?: boolean | undefined;
|
|
28117
28513
|
searchable?: boolean | undefined;
|
|
28118
28514
|
} | undefined;
|
|
28119
28515
|
sensitive?: boolean | undefined;
|
|
@@ -28140,9 +28536,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28140
28536
|
required?: boolean | undefined;
|
|
28141
28537
|
category?: "FIELD" | undefined;
|
|
28142
28538
|
config?: {
|
|
28539
|
+
multiple?: boolean | undefined;
|
|
28143
28540
|
accept?: string | undefined;
|
|
28144
28541
|
max_size?: number | undefined;
|
|
28145
|
-
multiple?: boolean | undefined;
|
|
28146
28542
|
} | undefined;
|
|
28147
28543
|
sensitive?: boolean | undefined;
|
|
28148
28544
|
label?: string | undefined;
|
|
@@ -28386,6 +28782,16 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28386
28782
|
}, {
|
|
28387
28783
|
css?: string | undefined;
|
|
28388
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
|
+
}>>;
|
|
28389
28795
|
created_at: z.ZodString;
|
|
28390
28796
|
updated_at: z.ZodString;
|
|
28391
28797
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -28601,7 +29007,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28601
29007
|
value: string;
|
|
28602
29008
|
label: string;
|
|
28603
29009
|
}[] | undefined;
|
|
29010
|
+
default_value?: string | string[] | undefined;
|
|
28604
29011
|
display?: "radio" | "checkbox" | undefined;
|
|
29012
|
+
multiple?: boolean | undefined;
|
|
28605
29013
|
} | undefined;
|
|
28606
29014
|
sensitive?: boolean | undefined;
|
|
28607
29015
|
label?: string | undefined;
|
|
@@ -28611,6 +29019,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28611
29019
|
type: "CUSTOM";
|
|
28612
29020
|
id: string;
|
|
28613
29021
|
config: {
|
|
29022
|
+
code?: string | undefined;
|
|
29023
|
+
schema?: Record<string, any> | undefined;
|
|
28614
29024
|
component?: string | undefined;
|
|
28615
29025
|
props?: Record<string, any> | undefined;
|
|
28616
29026
|
};
|
|
@@ -28648,6 +29058,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28648
29058
|
label: string;
|
|
28649
29059
|
}[] | undefined;
|
|
28650
29060
|
placeholder?: string | undefined;
|
|
29061
|
+
default_value?: string | string[] | undefined;
|
|
29062
|
+
multiple?: boolean | undefined;
|
|
28651
29063
|
searchable?: boolean | undefined;
|
|
28652
29064
|
} | undefined;
|
|
28653
29065
|
sensitive?: boolean | undefined;
|
|
@@ -28674,9 +29086,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28674
29086
|
required?: boolean | undefined;
|
|
28675
29087
|
category?: "FIELD" | undefined;
|
|
28676
29088
|
config?: {
|
|
29089
|
+
multiple?: boolean | undefined;
|
|
28677
29090
|
accept?: string | undefined;
|
|
28678
29091
|
max_size?: number | undefined;
|
|
28679
|
-
multiple?: boolean | undefined;
|
|
28680
29092
|
} | undefined;
|
|
28681
29093
|
sensitive?: boolean | undefined;
|
|
28682
29094
|
label?: string | undefined;
|
|
@@ -28826,6 +29238,10 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28826
29238
|
flow_id?: string | undefined;
|
|
28827
29239
|
} | undefined;
|
|
28828
29240
|
} | undefined;
|
|
29241
|
+
links?: {
|
|
29242
|
+
sdkSrc?: string | undefined;
|
|
29243
|
+
sdk_src?: string | undefined;
|
|
29244
|
+
} | undefined;
|
|
28829
29245
|
messages?: {
|
|
28830
29246
|
custom?: Record<string, any> | undefined;
|
|
28831
29247
|
errors?: Record<string, any> | undefined;
|
|
@@ -29043,7 +29459,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
29043
29459
|
value: string;
|
|
29044
29460
|
label: string;
|
|
29045
29461
|
}[] | undefined;
|
|
29462
|
+
default_value?: string | string[] | undefined;
|
|
29046
29463
|
display?: "radio" | "checkbox" | undefined;
|
|
29464
|
+
multiple?: boolean | undefined;
|
|
29047
29465
|
} | undefined;
|
|
29048
29466
|
sensitive?: boolean | undefined;
|
|
29049
29467
|
label?: string | undefined;
|
|
@@ -29054,6 +29472,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
29054
29472
|
type: "CUSTOM";
|
|
29055
29473
|
id: string;
|
|
29056
29474
|
config: {
|
|
29475
|
+
code?: string | undefined;
|
|
29476
|
+
schema?: Record<string, any> | undefined;
|
|
29057
29477
|
component?: string | undefined;
|
|
29058
29478
|
props?: Record<string, any> | undefined;
|
|
29059
29479
|
};
|
|
@@ -29090,6 +29510,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
29090
29510
|
label: string;
|
|
29091
29511
|
}[] | undefined;
|
|
29092
29512
|
placeholder?: string | undefined;
|
|
29513
|
+
default_value?: string | string[] | undefined;
|
|
29514
|
+
multiple?: boolean | undefined;
|
|
29093
29515
|
searchable?: boolean | undefined;
|
|
29094
29516
|
} | undefined;
|
|
29095
29517
|
sensitive?: boolean | undefined;
|
|
@@ -29116,9 +29538,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
29116
29538
|
required?: boolean | undefined;
|
|
29117
29539
|
category?: "FIELD" | undefined;
|
|
29118
29540
|
config?: {
|
|
29541
|
+
multiple?: boolean | undefined;
|
|
29119
29542
|
accept?: string | undefined;
|
|
29120
29543
|
max_size?: number | undefined;
|
|
29121
|
-
multiple?: boolean | undefined;
|
|
29122
29544
|
} | undefined;
|
|
29123
29545
|
sensitive?: boolean | undefined;
|
|
29124
29546
|
label?: string | undefined;
|
|
@@ -29269,6 +29691,10 @@ export declare const formSchema: z.ZodObject<{
|
|
|
29269
29691
|
flow_id?: string | undefined;
|
|
29270
29692
|
} | undefined;
|
|
29271
29693
|
} | undefined;
|
|
29694
|
+
links?: {
|
|
29695
|
+
sdkSrc?: string | undefined;
|
|
29696
|
+
sdk_src?: string | undefined;
|
|
29697
|
+
} | undefined;
|
|
29272
29698
|
messages?: {
|
|
29273
29699
|
custom?: Record<string, any> | undefined;
|
|
29274
29700
|
errors?: Record<string, any> | undefined;
|
|
@@ -29330,6 +29756,8 @@ export type ScreenLink = z.infer<typeof screenLinkSchema>;
|
|
|
29330
29756
|
* This is what the API returns to the widget - no flow routing logic
|
|
29331
29757
|
*/
|
|
29332
29758
|
export declare const uiScreenSchema: z.ZodObject<{
|
|
29759
|
+
/** Screen identifier for CSS targeting (e.g., 'identifier', 'enter-password', 'signup') */
|
|
29760
|
+
name: z.ZodOptional<z.ZodString>;
|
|
29333
29761
|
action: z.ZodString;
|
|
29334
29762
|
method: z.ZodEnum<[
|
|
29335
29763
|
"POST",
|
|
@@ -29927,18 +30355,27 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
29927
30355
|
"radio",
|
|
29928
30356
|
"checkbox"
|
|
29929
30357
|
]>>;
|
|
30358
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
30359
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
30360
|
+
z.ZodString,
|
|
30361
|
+
z.ZodArray<z.ZodString, "many">
|
|
30362
|
+
]>>;
|
|
29930
30363
|
}, "strip", z.ZodTypeAny, {
|
|
29931
30364
|
options?: {
|
|
29932
30365
|
value: string;
|
|
29933
30366
|
label: string;
|
|
29934
30367
|
}[] | undefined;
|
|
30368
|
+
default_value?: string | string[] | undefined;
|
|
29935
30369
|
display?: "radio" | "checkbox" | undefined;
|
|
30370
|
+
multiple?: boolean | undefined;
|
|
29936
30371
|
}, {
|
|
29937
30372
|
options?: {
|
|
29938
30373
|
value: string;
|
|
29939
30374
|
label: string;
|
|
29940
30375
|
}[] | undefined;
|
|
30376
|
+
default_value?: string | string[] | undefined;
|
|
29941
30377
|
display?: "radio" | "checkbox" | undefined;
|
|
30378
|
+
multiple?: boolean | undefined;
|
|
29942
30379
|
}>>;
|
|
29943
30380
|
}, "strip", z.ZodTypeAny, {
|
|
29944
30381
|
type: "CHOICE";
|
|
@@ -29951,7 +30388,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
29951
30388
|
value: string;
|
|
29952
30389
|
label: string;
|
|
29953
30390
|
}[] | undefined;
|
|
30391
|
+
default_value?: string | string[] | undefined;
|
|
29954
30392
|
display?: "radio" | "checkbox" | undefined;
|
|
30393
|
+
multiple?: boolean | undefined;
|
|
29955
30394
|
} | undefined;
|
|
29956
30395
|
sensitive?: boolean | undefined;
|
|
29957
30396
|
label?: string | undefined;
|
|
@@ -29967,7 +30406,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
29967
30406
|
value: string;
|
|
29968
30407
|
label: string;
|
|
29969
30408
|
}[] | undefined;
|
|
30409
|
+
default_value?: string | string[] | undefined;
|
|
29970
30410
|
display?: "radio" | "checkbox" | undefined;
|
|
30411
|
+
multiple?: boolean | undefined;
|
|
29971
30412
|
} | undefined;
|
|
29972
30413
|
sensitive?: boolean | undefined;
|
|
29973
30414
|
label?: string | undefined;
|
|
@@ -29990,10 +30431,16 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
29990
30431
|
config: z.ZodObject<{
|
|
29991
30432
|
component: z.ZodOptional<z.ZodString>;
|
|
29992
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>;
|
|
29993
30436
|
}, "strip", z.ZodTypeAny, {
|
|
30437
|
+
code?: string | undefined;
|
|
30438
|
+
schema?: Record<string, any> | undefined;
|
|
29994
30439
|
component?: string | undefined;
|
|
29995
30440
|
props?: Record<string, any> | undefined;
|
|
29996
30441
|
}, {
|
|
30442
|
+
code?: string | undefined;
|
|
30443
|
+
schema?: Record<string, any> | undefined;
|
|
29997
30444
|
component?: string | undefined;
|
|
29998
30445
|
props?: Record<string, any> | undefined;
|
|
29999
30446
|
}>;
|
|
@@ -30001,6 +30448,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30001
30448
|
type: "CUSTOM";
|
|
30002
30449
|
id: string;
|
|
30003
30450
|
config: {
|
|
30451
|
+
code?: string | undefined;
|
|
30452
|
+
schema?: Record<string, any> | undefined;
|
|
30004
30453
|
component?: string | undefined;
|
|
30005
30454
|
props?: Record<string, any> | undefined;
|
|
30006
30455
|
};
|
|
@@ -30015,6 +30464,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30015
30464
|
type: "CUSTOM";
|
|
30016
30465
|
id: string;
|
|
30017
30466
|
config: {
|
|
30467
|
+
code?: string | undefined;
|
|
30468
|
+
schema?: Record<string, any> | undefined;
|
|
30018
30469
|
component?: string | undefined;
|
|
30019
30470
|
props?: Record<string, any> | undefined;
|
|
30020
30471
|
};
|
|
@@ -30107,12 +30558,19 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30107
30558
|
}>, "many">>;
|
|
30108
30559
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
30109
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
|
+
]>>;
|
|
30110
30566
|
}, "strip", z.ZodTypeAny, {
|
|
30111
30567
|
options?: {
|
|
30112
30568
|
value: string;
|
|
30113
30569
|
label: string;
|
|
30114
30570
|
}[] | undefined;
|
|
30115
30571
|
placeholder?: string | undefined;
|
|
30572
|
+
default_value?: string | string[] | undefined;
|
|
30573
|
+
multiple?: boolean | undefined;
|
|
30116
30574
|
searchable?: boolean | undefined;
|
|
30117
30575
|
}, {
|
|
30118
30576
|
options?: {
|
|
@@ -30120,6 +30578,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30120
30578
|
label: string;
|
|
30121
30579
|
}[] | undefined;
|
|
30122
30580
|
placeholder?: string | undefined;
|
|
30581
|
+
default_value?: string | string[] | undefined;
|
|
30582
|
+
multiple?: boolean | undefined;
|
|
30123
30583
|
searchable?: boolean | undefined;
|
|
30124
30584
|
}>>;
|
|
30125
30585
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -30134,6 +30594,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30134
30594
|
label: string;
|
|
30135
30595
|
}[] | undefined;
|
|
30136
30596
|
placeholder?: string | undefined;
|
|
30597
|
+
default_value?: string | string[] | undefined;
|
|
30598
|
+
multiple?: boolean | undefined;
|
|
30137
30599
|
searchable?: boolean | undefined;
|
|
30138
30600
|
} | undefined;
|
|
30139
30601
|
sensitive?: boolean | undefined;
|
|
@@ -30151,6 +30613,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30151
30613
|
label: string;
|
|
30152
30614
|
}[] | undefined;
|
|
30153
30615
|
placeholder?: string | undefined;
|
|
30616
|
+
default_value?: string | string[] | undefined;
|
|
30617
|
+
multiple?: boolean | undefined;
|
|
30154
30618
|
searchable?: boolean | undefined;
|
|
30155
30619
|
} | undefined;
|
|
30156
30620
|
sensitive?: boolean | undefined;
|
|
@@ -30222,13 +30686,13 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30222
30686
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
30223
30687
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
30224
30688
|
}, "strip", z.ZodTypeAny, {
|
|
30689
|
+
multiple?: boolean | undefined;
|
|
30225
30690
|
accept?: string | undefined;
|
|
30226
30691
|
max_size?: number | undefined;
|
|
30227
|
-
multiple?: boolean | undefined;
|
|
30228
30692
|
}, {
|
|
30693
|
+
multiple?: boolean | undefined;
|
|
30229
30694
|
accept?: string | undefined;
|
|
30230
30695
|
max_size?: number | undefined;
|
|
30231
|
-
multiple?: boolean | undefined;
|
|
30232
30696
|
}>>;
|
|
30233
30697
|
}, "strip", z.ZodTypeAny, {
|
|
30234
30698
|
type: "FILE";
|
|
@@ -30237,9 +30701,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30237
30701
|
required?: boolean | undefined;
|
|
30238
30702
|
category?: "FIELD" | undefined;
|
|
30239
30703
|
config?: {
|
|
30704
|
+
multiple?: boolean | undefined;
|
|
30240
30705
|
accept?: string | undefined;
|
|
30241
30706
|
max_size?: number | undefined;
|
|
30242
|
-
multiple?: boolean | undefined;
|
|
30243
30707
|
} | undefined;
|
|
30244
30708
|
sensitive?: boolean | undefined;
|
|
30245
30709
|
label?: string | undefined;
|
|
@@ -30251,9 +30715,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30251
30715
|
required?: boolean | undefined;
|
|
30252
30716
|
category?: "FIELD" | undefined;
|
|
30253
30717
|
config?: {
|
|
30718
|
+
multiple?: boolean | undefined;
|
|
30254
30719
|
accept?: string | undefined;
|
|
30255
30720
|
max_size?: number | undefined;
|
|
30256
|
-
multiple?: boolean | undefined;
|
|
30257
30721
|
} | undefined;
|
|
30258
30722
|
sensitive?: boolean | undefined;
|
|
30259
30723
|
label?: string | undefined;
|
|
@@ -30760,6 +31224,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30760
31224
|
id?: string | undefined;
|
|
30761
31225
|
linkText?: string | undefined;
|
|
30762
31226
|
}>, "many">>;
|
|
31227
|
+
/** Footer HTML content displayed at the very bottom of the widget (e.g., terms and conditions) */
|
|
31228
|
+
footer: z.ZodOptional<z.ZodString>;
|
|
30763
31229
|
}, "strip", z.ZodTypeAny, {
|
|
30764
31230
|
action: string;
|
|
30765
31231
|
components: ({
|
|
@@ -30919,7 +31385,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30919
31385
|
value: string;
|
|
30920
31386
|
label: string;
|
|
30921
31387
|
}[] | undefined;
|
|
31388
|
+
default_value?: string | string[] | undefined;
|
|
30922
31389
|
display?: "radio" | "checkbox" | undefined;
|
|
31390
|
+
multiple?: boolean | undefined;
|
|
30923
31391
|
} | undefined;
|
|
30924
31392
|
sensitive?: boolean | undefined;
|
|
30925
31393
|
label?: string | undefined;
|
|
@@ -30929,6 +31397,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30929
31397
|
type: "CUSTOM";
|
|
30930
31398
|
id: string;
|
|
30931
31399
|
config: {
|
|
31400
|
+
code?: string | undefined;
|
|
31401
|
+
schema?: Record<string, any> | undefined;
|
|
30932
31402
|
component?: string | undefined;
|
|
30933
31403
|
props?: Record<string, any> | undefined;
|
|
30934
31404
|
};
|
|
@@ -30966,6 +31436,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30966
31436
|
label: string;
|
|
30967
31437
|
}[] | undefined;
|
|
30968
31438
|
placeholder?: string | undefined;
|
|
31439
|
+
default_value?: string | string[] | undefined;
|
|
31440
|
+
multiple?: boolean | undefined;
|
|
30969
31441
|
searchable?: boolean | undefined;
|
|
30970
31442
|
} | undefined;
|
|
30971
31443
|
sensitive?: boolean | undefined;
|
|
@@ -30992,9 +31464,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30992
31464
|
required?: boolean | undefined;
|
|
30993
31465
|
category?: "FIELD" | undefined;
|
|
30994
31466
|
config?: {
|
|
31467
|
+
multiple?: boolean | undefined;
|
|
30995
31468
|
accept?: string | undefined;
|
|
30996
31469
|
max_size?: number | undefined;
|
|
30997
|
-
multiple?: boolean | undefined;
|
|
30998
31470
|
} | undefined;
|
|
30999
31471
|
sensitive?: boolean | undefined;
|
|
31000
31472
|
label?: string | undefined;
|
|
@@ -31125,6 +31597,7 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31125
31597
|
method: "POST" | "GET";
|
|
31126
31598
|
description?: string | undefined;
|
|
31127
31599
|
title?: string | undefined;
|
|
31600
|
+
name?: string | undefined;
|
|
31128
31601
|
links?: {
|
|
31129
31602
|
text: string;
|
|
31130
31603
|
href: string;
|
|
@@ -31136,6 +31609,7 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31136
31609
|
text: string;
|
|
31137
31610
|
id?: number | undefined;
|
|
31138
31611
|
}[] | undefined;
|
|
31612
|
+
footer?: string | undefined;
|
|
31139
31613
|
}, {
|
|
31140
31614
|
action: string;
|
|
31141
31615
|
components: ({
|
|
@@ -31294,7 +31768,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31294
31768
|
value: string;
|
|
31295
31769
|
label: string;
|
|
31296
31770
|
}[] | undefined;
|
|
31771
|
+
default_value?: string | string[] | undefined;
|
|
31297
31772
|
display?: "radio" | "checkbox" | undefined;
|
|
31773
|
+
multiple?: boolean | undefined;
|
|
31298
31774
|
} | undefined;
|
|
31299
31775
|
sensitive?: boolean | undefined;
|
|
31300
31776
|
label?: string | undefined;
|
|
@@ -31305,6 +31781,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31305
31781
|
type: "CUSTOM";
|
|
31306
31782
|
id: string;
|
|
31307
31783
|
config: {
|
|
31784
|
+
code?: string | undefined;
|
|
31785
|
+
schema?: Record<string, any> | undefined;
|
|
31308
31786
|
component?: string | undefined;
|
|
31309
31787
|
props?: Record<string, any> | undefined;
|
|
31310
31788
|
};
|
|
@@ -31341,6 +31819,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31341
31819
|
label: string;
|
|
31342
31820
|
}[] | undefined;
|
|
31343
31821
|
placeholder?: string | undefined;
|
|
31822
|
+
default_value?: string | string[] | undefined;
|
|
31823
|
+
multiple?: boolean | undefined;
|
|
31344
31824
|
searchable?: boolean | undefined;
|
|
31345
31825
|
} | undefined;
|
|
31346
31826
|
sensitive?: boolean | undefined;
|
|
@@ -31367,9 +31847,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31367
31847
|
required?: boolean | undefined;
|
|
31368
31848
|
category?: "FIELD" | undefined;
|
|
31369
31849
|
config?: {
|
|
31850
|
+
multiple?: boolean | undefined;
|
|
31370
31851
|
accept?: string | undefined;
|
|
31371
31852
|
max_size?: number | undefined;
|
|
31372
|
-
multiple?: boolean | undefined;
|
|
31373
31853
|
} | undefined;
|
|
31374
31854
|
sensitive?: boolean | undefined;
|
|
31375
31855
|
label?: string | undefined;
|
|
@@ -31501,6 +31981,7 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31501
31981
|
method: "POST" | "GET";
|
|
31502
31982
|
description?: string | undefined;
|
|
31503
31983
|
title?: string | undefined;
|
|
31984
|
+
name?: string | undefined;
|
|
31504
31985
|
links?: {
|
|
31505
31986
|
text: string;
|
|
31506
31987
|
href: string;
|
|
@@ -31512,6 +31993,7 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31512
31993
|
text: string;
|
|
31513
31994
|
id?: number | undefined;
|
|
31514
31995
|
}[] | undefined;
|
|
31996
|
+
footer?: string | undefined;
|
|
31515
31997
|
}>;
|
|
31516
31998
|
export type UiScreen = z.infer<typeof uiScreenSchema>;
|
|
31517
31999
|
export declare function isBlockComponent(component: FormNodeComponent): component is BlockComponent;
|