@objectstack/metadata-core 9.11.0 → 10.0.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/index.d.cts +1412 -8
- package/dist/index.d.ts +1412 -8
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -305,6 +305,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
305
305
|
relatedList?: boolean | undefined;
|
|
306
306
|
relatedListTitle?: string | undefined;
|
|
307
307
|
relatedListColumns?: any[] | undefined;
|
|
308
|
+
displayField?: string | undefined;
|
|
309
|
+
descriptionField?: string | undefined;
|
|
310
|
+
lookupColumns?: (string | {
|
|
311
|
+
field: string;
|
|
312
|
+
label?: string | undefined;
|
|
313
|
+
width?: string | undefined;
|
|
314
|
+
type?: string | undefined;
|
|
315
|
+
})[] | undefined;
|
|
316
|
+
lookupPageSize?: number | undefined;
|
|
317
|
+
lookupFilters?: {
|
|
318
|
+
field: string;
|
|
319
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
320
|
+
value: any;
|
|
321
|
+
}[] | undefined;
|
|
322
|
+
dependsOn?: (string | {
|
|
323
|
+
field: string;
|
|
324
|
+
param?: string | undefined;
|
|
325
|
+
})[] | undefined;
|
|
326
|
+
allowCreate?: boolean | undefined;
|
|
308
327
|
expression?: {
|
|
309
328
|
dialect: "cel" | "js" | "cron" | "template";
|
|
310
329
|
source?: string | undefined;
|
|
@@ -580,7 +599,7 @@ declare const SysMetadataObject: Omit<{
|
|
|
580
599
|
} | undefined;
|
|
581
600
|
compactLayout?: string[] | undefined;
|
|
582
601
|
listViews?: Record<string, {
|
|
583
|
-
type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
|
|
602
|
+
type: "map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
|
|
584
603
|
columns: string[] | {
|
|
585
604
|
field: string;
|
|
586
605
|
label?: string | undefined;
|
|
@@ -697,6 +716,7 @@ declare const SysMetadataObject: Omit<{
|
|
|
697
716
|
colorField?: string | undefined;
|
|
698
717
|
} | undefined;
|
|
699
718
|
gantt?: {
|
|
719
|
+
[x: string]: unknown;
|
|
700
720
|
startDateField: string;
|
|
701
721
|
endDateField: string;
|
|
702
722
|
titleField: string;
|
|
@@ -747,6 +767,13 @@ declare const SysMetadataObject: Omit<{
|
|
|
747
767
|
values: string[];
|
|
748
768
|
dimensions?: string[] | undefined;
|
|
749
769
|
} | undefined;
|
|
770
|
+
tree?: {
|
|
771
|
+
[x: string]: unknown;
|
|
772
|
+
parentField?: string | undefined;
|
|
773
|
+
labelField?: string | undefined;
|
|
774
|
+
fields?: string[] | undefined;
|
|
775
|
+
defaultExpandedDepth?: number | undefined;
|
|
776
|
+
} | undefined;
|
|
750
777
|
description?: string | undefined;
|
|
751
778
|
sharing?: {
|
|
752
779
|
type: "personal" | "collaborative";
|
|
@@ -802,7 +829,7 @@ declare const SysMetadataObject: Omit<{
|
|
|
802
829
|
} | undefined;
|
|
803
830
|
appearance?: {
|
|
804
831
|
showDescription: boolean;
|
|
805
|
-
allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
|
|
832
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
|
|
806
833
|
} | undefined;
|
|
807
834
|
tabs?: {
|
|
808
835
|
name: string;
|
|
@@ -871,6 +898,7 @@ declare const SysMetadataObject: Omit<{
|
|
|
871
898
|
} | undefined;
|
|
872
899
|
}> | undefined;
|
|
873
900
|
defaultDetailForm?: string | undefined;
|
|
901
|
+
searchableFields?: string[] | undefined;
|
|
874
902
|
search?: {
|
|
875
903
|
fields: string[];
|
|
876
904
|
displayFields?: string[] | undefined;
|
|
@@ -1061,6 +1089,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
1061
1089
|
readonly relatedList?: boolean | undefined;
|
|
1062
1090
|
readonly relatedListTitle?: string | undefined;
|
|
1063
1091
|
readonly relatedListColumns?: any[] | undefined;
|
|
1092
|
+
readonly displayField?: string | undefined;
|
|
1093
|
+
readonly descriptionField?: string | undefined;
|
|
1094
|
+
readonly lookupColumns?: (string | {
|
|
1095
|
+
field: string;
|
|
1096
|
+
label?: string | undefined;
|
|
1097
|
+
width?: string | undefined;
|
|
1098
|
+
type?: string | undefined;
|
|
1099
|
+
})[] | undefined;
|
|
1100
|
+
readonly lookupPageSize?: number | undefined;
|
|
1101
|
+
readonly lookupFilters?: {
|
|
1102
|
+
field: string;
|
|
1103
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1104
|
+
value: any;
|
|
1105
|
+
}[] | undefined;
|
|
1106
|
+
readonly dependsOn?: (string | {
|
|
1107
|
+
field: string;
|
|
1108
|
+
param?: string | undefined;
|
|
1109
|
+
})[] | undefined;
|
|
1110
|
+
readonly allowCreate?: boolean | undefined;
|
|
1064
1111
|
readonly expression?: {
|
|
1065
1112
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1066
1113
|
source?: string | undefined;
|
|
@@ -1217,6 +1264,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
1217
1264
|
readonly relatedList?: boolean | undefined;
|
|
1218
1265
|
readonly relatedListTitle?: string | undefined;
|
|
1219
1266
|
readonly relatedListColumns?: any[] | undefined;
|
|
1267
|
+
readonly displayField?: string | undefined;
|
|
1268
|
+
readonly descriptionField?: string | undefined;
|
|
1269
|
+
readonly lookupColumns?: (string | {
|
|
1270
|
+
field: string;
|
|
1271
|
+
label?: string | undefined;
|
|
1272
|
+
width?: string | undefined;
|
|
1273
|
+
type?: string | undefined;
|
|
1274
|
+
})[] | undefined;
|
|
1275
|
+
readonly lookupPageSize?: number | undefined;
|
|
1276
|
+
readonly lookupFilters?: {
|
|
1277
|
+
field: string;
|
|
1278
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1279
|
+
value: any;
|
|
1280
|
+
}[] | undefined;
|
|
1281
|
+
readonly dependsOn?: (string | {
|
|
1282
|
+
field: string;
|
|
1283
|
+
param?: string | undefined;
|
|
1284
|
+
})[] | undefined;
|
|
1285
|
+
readonly allowCreate?: boolean | undefined;
|
|
1220
1286
|
readonly expression?: {
|
|
1221
1287
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1222
1288
|
source?: string | undefined;
|
|
@@ -1373,6 +1439,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
1373
1439
|
readonly relatedList?: boolean | undefined;
|
|
1374
1440
|
readonly relatedListTitle?: string | undefined;
|
|
1375
1441
|
readonly relatedListColumns?: any[] | undefined;
|
|
1442
|
+
readonly displayField?: string | undefined;
|
|
1443
|
+
readonly descriptionField?: string | undefined;
|
|
1444
|
+
readonly lookupColumns?: (string | {
|
|
1445
|
+
field: string;
|
|
1446
|
+
label?: string | undefined;
|
|
1447
|
+
width?: string | undefined;
|
|
1448
|
+
type?: string | undefined;
|
|
1449
|
+
})[] | undefined;
|
|
1450
|
+
readonly lookupPageSize?: number | undefined;
|
|
1451
|
+
readonly lookupFilters?: {
|
|
1452
|
+
field: string;
|
|
1453
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1454
|
+
value: any;
|
|
1455
|
+
}[] | undefined;
|
|
1456
|
+
readonly dependsOn?: (string | {
|
|
1457
|
+
field: string;
|
|
1458
|
+
param?: string | undefined;
|
|
1459
|
+
})[] | undefined;
|
|
1460
|
+
readonly allowCreate?: boolean | undefined;
|
|
1376
1461
|
readonly expression?: {
|
|
1377
1462
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1378
1463
|
source?: string | undefined;
|
|
@@ -1529,6 +1614,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
1529
1614
|
readonly relatedList?: boolean | undefined;
|
|
1530
1615
|
readonly relatedListTitle?: string | undefined;
|
|
1531
1616
|
readonly relatedListColumns?: any[] | undefined;
|
|
1617
|
+
readonly displayField?: string | undefined;
|
|
1618
|
+
readonly descriptionField?: string | undefined;
|
|
1619
|
+
readonly lookupColumns?: (string | {
|
|
1620
|
+
field: string;
|
|
1621
|
+
label?: string | undefined;
|
|
1622
|
+
width?: string | undefined;
|
|
1623
|
+
type?: string | undefined;
|
|
1624
|
+
})[] | undefined;
|
|
1625
|
+
readonly lookupPageSize?: number | undefined;
|
|
1626
|
+
readonly lookupFilters?: {
|
|
1627
|
+
field: string;
|
|
1628
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1629
|
+
value: any;
|
|
1630
|
+
}[] | undefined;
|
|
1631
|
+
readonly dependsOn?: (string | {
|
|
1632
|
+
field: string;
|
|
1633
|
+
param?: string | undefined;
|
|
1634
|
+
})[] | undefined;
|
|
1635
|
+
readonly allowCreate?: boolean | undefined;
|
|
1532
1636
|
readonly expression?: {
|
|
1533
1637
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1534
1638
|
source?: string | undefined;
|
|
@@ -1685,6 +1789,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
1685
1789
|
readonly relatedList?: boolean | undefined;
|
|
1686
1790
|
readonly relatedListTitle?: string | undefined;
|
|
1687
1791
|
readonly relatedListColumns?: any[] | undefined;
|
|
1792
|
+
readonly displayField?: string | undefined;
|
|
1793
|
+
readonly descriptionField?: string | undefined;
|
|
1794
|
+
readonly lookupColumns?: (string | {
|
|
1795
|
+
field: string;
|
|
1796
|
+
label?: string | undefined;
|
|
1797
|
+
width?: string | undefined;
|
|
1798
|
+
type?: string | undefined;
|
|
1799
|
+
})[] | undefined;
|
|
1800
|
+
readonly lookupPageSize?: number | undefined;
|
|
1801
|
+
readonly lookupFilters?: {
|
|
1802
|
+
field: string;
|
|
1803
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1804
|
+
value: any;
|
|
1805
|
+
}[] | undefined;
|
|
1806
|
+
readonly dependsOn?: (string | {
|
|
1807
|
+
field: string;
|
|
1808
|
+
param?: string | undefined;
|
|
1809
|
+
})[] | undefined;
|
|
1810
|
+
readonly allowCreate?: boolean | undefined;
|
|
1688
1811
|
readonly expression?: {
|
|
1689
1812
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1690
1813
|
source?: string | undefined;
|
|
@@ -1844,6 +1967,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
1844
1967
|
readonly relatedList?: boolean | undefined;
|
|
1845
1968
|
readonly relatedListTitle?: string | undefined;
|
|
1846
1969
|
readonly relatedListColumns?: any[] | undefined;
|
|
1970
|
+
readonly displayField?: string | undefined;
|
|
1971
|
+
readonly descriptionField?: string | undefined;
|
|
1972
|
+
readonly lookupColumns?: (string | {
|
|
1973
|
+
field: string;
|
|
1974
|
+
label?: string | undefined;
|
|
1975
|
+
width?: string | undefined;
|
|
1976
|
+
type?: string | undefined;
|
|
1977
|
+
})[] | undefined;
|
|
1978
|
+
readonly lookupPageSize?: number | undefined;
|
|
1979
|
+
readonly lookupFilters?: {
|
|
1980
|
+
field: string;
|
|
1981
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1982
|
+
value: any;
|
|
1983
|
+
}[] | undefined;
|
|
1984
|
+
readonly dependsOn?: (string | {
|
|
1985
|
+
field: string;
|
|
1986
|
+
param?: string | undefined;
|
|
1987
|
+
})[] | undefined;
|
|
1988
|
+
readonly allowCreate?: boolean | undefined;
|
|
1847
1989
|
readonly expression?: {
|
|
1848
1990
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1849
1991
|
source?: string | undefined;
|
|
@@ -2000,6 +2142,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
2000
2142
|
readonly relatedList?: boolean | undefined;
|
|
2001
2143
|
readonly relatedListTitle?: string | undefined;
|
|
2002
2144
|
readonly relatedListColumns?: any[] | undefined;
|
|
2145
|
+
readonly displayField?: string | undefined;
|
|
2146
|
+
readonly descriptionField?: string | undefined;
|
|
2147
|
+
readonly lookupColumns?: (string | {
|
|
2148
|
+
field: string;
|
|
2149
|
+
label?: string | undefined;
|
|
2150
|
+
width?: string | undefined;
|
|
2151
|
+
type?: string | undefined;
|
|
2152
|
+
})[] | undefined;
|
|
2153
|
+
readonly lookupPageSize?: number | undefined;
|
|
2154
|
+
readonly lookupFilters?: {
|
|
2155
|
+
field: string;
|
|
2156
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
2157
|
+
value: any;
|
|
2158
|
+
}[] | undefined;
|
|
2159
|
+
readonly dependsOn?: (string | {
|
|
2160
|
+
field: string;
|
|
2161
|
+
param?: string | undefined;
|
|
2162
|
+
})[] | undefined;
|
|
2163
|
+
readonly allowCreate?: boolean | undefined;
|
|
2003
2164
|
readonly expression?: {
|
|
2004
2165
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2005
2166
|
source?: string | undefined;
|
|
@@ -2156,6 +2317,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
2156
2317
|
readonly relatedList?: boolean | undefined;
|
|
2157
2318
|
readonly relatedListTitle?: string | undefined;
|
|
2158
2319
|
readonly relatedListColumns?: any[] | undefined;
|
|
2320
|
+
readonly displayField?: string | undefined;
|
|
2321
|
+
readonly descriptionField?: string | undefined;
|
|
2322
|
+
readonly lookupColumns?: (string | {
|
|
2323
|
+
field: string;
|
|
2324
|
+
label?: string | undefined;
|
|
2325
|
+
width?: string | undefined;
|
|
2326
|
+
type?: string | undefined;
|
|
2327
|
+
})[] | undefined;
|
|
2328
|
+
readonly lookupPageSize?: number | undefined;
|
|
2329
|
+
readonly lookupFilters?: {
|
|
2330
|
+
field: string;
|
|
2331
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
2332
|
+
value: any;
|
|
2333
|
+
}[] | undefined;
|
|
2334
|
+
readonly dependsOn?: (string | {
|
|
2335
|
+
field: string;
|
|
2336
|
+
param?: string | undefined;
|
|
2337
|
+
})[] | undefined;
|
|
2338
|
+
readonly allowCreate?: boolean | undefined;
|
|
2159
2339
|
readonly expression?: {
|
|
2160
2340
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2161
2341
|
source?: string | undefined;
|
|
@@ -2312,6 +2492,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
2312
2492
|
readonly relatedList?: boolean | undefined;
|
|
2313
2493
|
readonly relatedListTitle?: string | undefined;
|
|
2314
2494
|
readonly relatedListColumns?: any[] | undefined;
|
|
2495
|
+
readonly displayField?: string | undefined;
|
|
2496
|
+
readonly descriptionField?: string | undefined;
|
|
2497
|
+
readonly lookupColumns?: (string | {
|
|
2498
|
+
field: string;
|
|
2499
|
+
label?: string | undefined;
|
|
2500
|
+
width?: string | undefined;
|
|
2501
|
+
type?: string | undefined;
|
|
2502
|
+
})[] | undefined;
|
|
2503
|
+
readonly lookupPageSize?: number | undefined;
|
|
2504
|
+
readonly lookupFilters?: {
|
|
2505
|
+
field: string;
|
|
2506
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
2507
|
+
value: any;
|
|
2508
|
+
}[] | undefined;
|
|
2509
|
+
readonly dependsOn?: (string | {
|
|
2510
|
+
field: string;
|
|
2511
|
+
param?: string | undefined;
|
|
2512
|
+
})[] | undefined;
|
|
2513
|
+
readonly allowCreate?: boolean | undefined;
|
|
2315
2514
|
readonly expression?: {
|
|
2316
2515
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2317
2516
|
source?: string | undefined;
|
|
@@ -2468,6 +2667,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
2468
2667
|
readonly relatedList?: boolean | undefined;
|
|
2469
2668
|
readonly relatedListTitle?: string | undefined;
|
|
2470
2669
|
readonly relatedListColumns?: any[] | undefined;
|
|
2670
|
+
readonly displayField?: string | undefined;
|
|
2671
|
+
readonly descriptionField?: string | undefined;
|
|
2672
|
+
readonly lookupColumns?: (string | {
|
|
2673
|
+
field: string;
|
|
2674
|
+
label?: string | undefined;
|
|
2675
|
+
width?: string | undefined;
|
|
2676
|
+
type?: string | undefined;
|
|
2677
|
+
})[] | undefined;
|
|
2678
|
+
readonly lookupPageSize?: number | undefined;
|
|
2679
|
+
readonly lookupFilters?: {
|
|
2680
|
+
field: string;
|
|
2681
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
2682
|
+
value: any;
|
|
2683
|
+
}[] | undefined;
|
|
2684
|
+
readonly dependsOn?: (string | {
|
|
2685
|
+
field: string;
|
|
2686
|
+
param?: string | undefined;
|
|
2687
|
+
})[] | undefined;
|
|
2688
|
+
readonly allowCreate?: boolean | undefined;
|
|
2471
2689
|
readonly expression?: {
|
|
2472
2690
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2473
2691
|
source?: string | undefined;
|
|
@@ -2624,6 +2842,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
2624
2842
|
readonly relatedList?: boolean | undefined;
|
|
2625
2843
|
readonly relatedListTitle?: string | undefined;
|
|
2626
2844
|
readonly relatedListColumns?: any[] | undefined;
|
|
2845
|
+
readonly displayField?: string | undefined;
|
|
2846
|
+
readonly descriptionField?: string | undefined;
|
|
2847
|
+
readonly lookupColumns?: (string | {
|
|
2848
|
+
field: string;
|
|
2849
|
+
label?: string | undefined;
|
|
2850
|
+
width?: string | undefined;
|
|
2851
|
+
type?: string | undefined;
|
|
2852
|
+
})[] | undefined;
|
|
2853
|
+
readonly lookupPageSize?: number | undefined;
|
|
2854
|
+
readonly lookupFilters?: {
|
|
2855
|
+
field: string;
|
|
2856
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
2857
|
+
value: any;
|
|
2858
|
+
}[] | undefined;
|
|
2859
|
+
readonly dependsOn?: (string | {
|
|
2860
|
+
field: string;
|
|
2861
|
+
param?: string | undefined;
|
|
2862
|
+
})[] | undefined;
|
|
2863
|
+
readonly allowCreate?: boolean | undefined;
|
|
2627
2864
|
readonly expression?: {
|
|
2628
2865
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2629
2866
|
source?: string | undefined;
|
|
@@ -2780,6 +3017,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
2780
3017
|
readonly relatedList?: boolean | undefined;
|
|
2781
3018
|
readonly relatedListTitle?: string | undefined;
|
|
2782
3019
|
readonly relatedListColumns?: any[] | undefined;
|
|
3020
|
+
readonly displayField?: string | undefined;
|
|
3021
|
+
readonly descriptionField?: string | undefined;
|
|
3022
|
+
readonly lookupColumns?: (string | {
|
|
3023
|
+
field: string;
|
|
3024
|
+
label?: string | undefined;
|
|
3025
|
+
width?: string | undefined;
|
|
3026
|
+
type?: string | undefined;
|
|
3027
|
+
})[] | undefined;
|
|
3028
|
+
readonly lookupPageSize?: number | undefined;
|
|
3029
|
+
readonly lookupFilters?: {
|
|
3030
|
+
field: string;
|
|
3031
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
3032
|
+
value: any;
|
|
3033
|
+
}[] | undefined;
|
|
3034
|
+
readonly dependsOn?: (string | {
|
|
3035
|
+
field: string;
|
|
3036
|
+
param?: string | undefined;
|
|
3037
|
+
})[] | undefined;
|
|
3038
|
+
readonly allowCreate?: boolean | undefined;
|
|
2783
3039
|
readonly expression?: {
|
|
2784
3040
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2785
3041
|
source?: string | undefined;
|
|
@@ -2936,6 +3192,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
2936
3192
|
readonly relatedList?: boolean | undefined;
|
|
2937
3193
|
readonly relatedListTitle?: string | undefined;
|
|
2938
3194
|
readonly relatedListColumns?: any[] | undefined;
|
|
3195
|
+
readonly displayField?: string | undefined;
|
|
3196
|
+
readonly descriptionField?: string | undefined;
|
|
3197
|
+
readonly lookupColumns?: (string | {
|
|
3198
|
+
field: string;
|
|
3199
|
+
label?: string | undefined;
|
|
3200
|
+
width?: string | undefined;
|
|
3201
|
+
type?: string | undefined;
|
|
3202
|
+
})[] | undefined;
|
|
3203
|
+
readonly lookupPageSize?: number | undefined;
|
|
3204
|
+
readonly lookupFilters?: {
|
|
3205
|
+
field: string;
|
|
3206
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
3207
|
+
value: any;
|
|
3208
|
+
}[] | undefined;
|
|
3209
|
+
readonly dependsOn?: (string | {
|
|
3210
|
+
field: string;
|
|
3211
|
+
param?: string | undefined;
|
|
3212
|
+
})[] | undefined;
|
|
3213
|
+
readonly allowCreate?: boolean | undefined;
|
|
2939
3214
|
readonly expression?: {
|
|
2940
3215
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2941
3216
|
source?: string | undefined;
|
|
@@ -3092,6 +3367,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
3092
3367
|
readonly relatedList?: boolean | undefined;
|
|
3093
3368
|
readonly relatedListTitle?: string | undefined;
|
|
3094
3369
|
readonly relatedListColumns?: any[] | undefined;
|
|
3370
|
+
readonly displayField?: string | undefined;
|
|
3371
|
+
readonly descriptionField?: string | undefined;
|
|
3372
|
+
readonly lookupColumns?: (string | {
|
|
3373
|
+
field: string;
|
|
3374
|
+
label?: string | undefined;
|
|
3375
|
+
width?: string | undefined;
|
|
3376
|
+
type?: string | undefined;
|
|
3377
|
+
})[] | undefined;
|
|
3378
|
+
readonly lookupPageSize?: number | undefined;
|
|
3379
|
+
readonly lookupFilters?: {
|
|
3380
|
+
field: string;
|
|
3381
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
3382
|
+
value: any;
|
|
3383
|
+
}[] | undefined;
|
|
3384
|
+
readonly dependsOn?: (string | {
|
|
3385
|
+
field: string;
|
|
3386
|
+
param?: string | undefined;
|
|
3387
|
+
})[] | undefined;
|
|
3388
|
+
readonly allowCreate?: boolean | undefined;
|
|
3095
3389
|
readonly expression?: {
|
|
3096
3390
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3097
3391
|
source?: string | undefined;
|
|
@@ -3253,6 +3547,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
3253
3547
|
readonly relatedList?: boolean | undefined;
|
|
3254
3548
|
readonly relatedListTitle?: string | undefined;
|
|
3255
3549
|
readonly relatedListColumns?: any[] | undefined;
|
|
3550
|
+
readonly displayField?: string | undefined;
|
|
3551
|
+
readonly descriptionField?: string | undefined;
|
|
3552
|
+
readonly lookupColumns?: (string | {
|
|
3553
|
+
field: string;
|
|
3554
|
+
label?: string | undefined;
|
|
3555
|
+
width?: string | undefined;
|
|
3556
|
+
type?: string | undefined;
|
|
3557
|
+
})[] | undefined;
|
|
3558
|
+
readonly lookupPageSize?: number | undefined;
|
|
3559
|
+
readonly lookupFilters?: {
|
|
3560
|
+
field: string;
|
|
3561
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
3562
|
+
value: any;
|
|
3563
|
+
}[] | undefined;
|
|
3564
|
+
readonly dependsOn?: (string | {
|
|
3565
|
+
field: string;
|
|
3566
|
+
param?: string | undefined;
|
|
3567
|
+
})[] | undefined;
|
|
3568
|
+
readonly allowCreate?: boolean | undefined;
|
|
3256
3569
|
readonly expression?: {
|
|
3257
3570
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3258
3571
|
source?: string | undefined;
|
|
@@ -3409,6 +3722,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
3409
3722
|
readonly relatedList?: boolean | undefined;
|
|
3410
3723
|
readonly relatedListTitle?: string | undefined;
|
|
3411
3724
|
readonly relatedListColumns?: any[] | undefined;
|
|
3725
|
+
readonly displayField?: string | undefined;
|
|
3726
|
+
readonly descriptionField?: string | undefined;
|
|
3727
|
+
readonly lookupColumns?: (string | {
|
|
3728
|
+
field: string;
|
|
3729
|
+
label?: string | undefined;
|
|
3730
|
+
width?: string | undefined;
|
|
3731
|
+
type?: string | undefined;
|
|
3732
|
+
})[] | undefined;
|
|
3733
|
+
readonly lookupPageSize?: number | undefined;
|
|
3734
|
+
readonly lookupFilters?: {
|
|
3735
|
+
field: string;
|
|
3736
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
3737
|
+
value: any;
|
|
3738
|
+
}[] | undefined;
|
|
3739
|
+
readonly dependsOn?: (string | {
|
|
3740
|
+
field: string;
|
|
3741
|
+
param?: string | undefined;
|
|
3742
|
+
})[] | undefined;
|
|
3743
|
+
readonly allowCreate?: boolean | undefined;
|
|
3412
3744
|
readonly expression?: {
|
|
3413
3745
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3414
3746
|
source?: string | undefined;
|
|
@@ -3565,6 +3897,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
3565
3897
|
readonly relatedList?: boolean | undefined;
|
|
3566
3898
|
readonly relatedListTitle?: string | undefined;
|
|
3567
3899
|
readonly relatedListColumns?: any[] | undefined;
|
|
3900
|
+
readonly displayField?: string | undefined;
|
|
3901
|
+
readonly descriptionField?: string | undefined;
|
|
3902
|
+
readonly lookupColumns?: (string | {
|
|
3903
|
+
field: string;
|
|
3904
|
+
label?: string | undefined;
|
|
3905
|
+
width?: string | undefined;
|
|
3906
|
+
type?: string | undefined;
|
|
3907
|
+
})[] | undefined;
|
|
3908
|
+
readonly lookupPageSize?: number | undefined;
|
|
3909
|
+
readonly lookupFilters?: {
|
|
3910
|
+
field: string;
|
|
3911
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
3912
|
+
value: any;
|
|
3913
|
+
}[] | undefined;
|
|
3914
|
+
readonly dependsOn?: (string | {
|
|
3915
|
+
field: string;
|
|
3916
|
+
param?: string | undefined;
|
|
3917
|
+
})[] | undefined;
|
|
3918
|
+
readonly allowCreate?: boolean | undefined;
|
|
3568
3919
|
readonly expression?: {
|
|
3569
3920
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3570
3921
|
source?: string | undefined;
|
|
@@ -3721,6 +4072,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
3721
4072
|
readonly relatedList?: boolean | undefined;
|
|
3722
4073
|
readonly relatedListTitle?: string | undefined;
|
|
3723
4074
|
readonly relatedListColumns?: any[] | undefined;
|
|
4075
|
+
readonly displayField?: string | undefined;
|
|
4076
|
+
readonly descriptionField?: string | undefined;
|
|
4077
|
+
readonly lookupColumns?: (string | {
|
|
4078
|
+
field: string;
|
|
4079
|
+
label?: string | undefined;
|
|
4080
|
+
width?: string | undefined;
|
|
4081
|
+
type?: string | undefined;
|
|
4082
|
+
})[] | undefined;
|
|
4083
|
+
readonly lookupPageSize?: number | undefined;
|
|
4084
|
+
readonly lookupFilters?: {
|
|
4085
|
+
field: string;
|
|
4086
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
4087
|
+
value: any;
|
|
4088
|
+
}[] | undefined;
|
|
4089
|
+
readonly dependsOn?: (string | {
|
|
4090
|
+
field: string;
|
|
4091
|
+
param?: string | undefined;
|
|
4092
|
+
})[] | undefined;
|
|
4093
|
+
readonly allowCreate?: boolean | undefined;
|
|
3724
4094
|
readonly expression?: {
|
|
3725
4095
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3726
4096
|
source?: string | undefined;
|
|
@@ -3877,6 +4247,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
3877
4247
|
readonly relatedList?: boolean | undefined;
|
|
3878
4248
|
readonly relatedListTitle?: string | undefined;
|
|
3879
4249
|
readonly relatedListColumns?: any[] | undefined;
|
|
4250
|
+
readonly displayField?: string | undefined;
|
|
4251
|
+
readonly descriptionField?: string | undefined;
|
|
4252
|
+
readonly lookupColumns?: (string | {
|
|
4253
|
+
field: string;
|
|
4254
|
+
label?: string | undefined;
|
|
4255
|
+
width?: string | undefined;
|
|
4256
|
+
type?: string | undefined;
|
|
4257
|
+
})[] | undefined;
|
|
4258
|
+
readonly lookupPageSize?: number | undefined;
|
|
4259
|
+
readonly lookupFilters?: {
|
|
4260
|
+
field: string;
|
|
4261
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
4262
|
+
value: any;
|
|
4263
|
+
}[] | undefined;
|
|
4264
|
+
readonly dependsOn?: (string | {
|
|
4265
|
+
field: string;
|
|
4266
|
+
param?: string | undefined;
|
|
4267
|
+
})[] | undefined;
|
|
4268
|
+
readonly allowCreate?: boolean | undefined;
|
|
3880
4269
|
readonly expression?: {
|
|
3881
4270
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3882
4271
|
source?: string | undefined;
|
|
@@ -4033,6 +4422,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
4033
4422
|
readonly relatedList?: boolean | undefined;
|
|
4034
4423
|
readonly relatedListTitle?: string | undefined;
|
|
4035
4424
|
readonly relatedListColumns?: any[] | undefined;
|
|
4425
|
+
readonly displayField?: string | undefined;
|
|
4426
|
+
readonly descriptionField?: string | undefined;
|
|
4427
|
+
readonly lookupColumns?: (string | {
|
|
4428
|
+
field: string;
|
|
4429
|
+
label?: string | undefined;
|
|
4430
|
+
width?: string | undefined;
|
|
4431
|
+
type?: string | undefined;
|
|
4432
|
+
})[] | undefined;
|
|
4433
|
+
readonly lookupPageSize?: number | undefined;
|
|
4434
|
+
readonly lookupFilters?: {
|
|
4435
|
+
field: string;
|
|
4436
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
4437
|
+
value: any;
|
|
4438
|
+
}[] | undefined;
|
|
4439
|
+
readonly dependsOn?: (string | {
|
|
4440
|
+
field: string;
|
|
4441
|
+
param?: string | undefined;
|
|
4442
|
+
})[] | undefined;
|
|
4443
|
+
readonly allowCreate?: boolean | undefined;
|
|
4036
4444
|
readonly expression?: {
|
|
4037
4445
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4038
4446
|
source?: string | undefined;
|
|
@@ -4188,6 +4596,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
4188
4596
|
readonly relatedList?: boolean | undefined;
|
|
4189
4597
|
readonly relatedListTitle?: string | undefined;
|
|
4190
4598
|
readonly relatedListColumns?: any[] | undefined;
|
|
4599
|
+
readonly displayField?: string | undefined;
|
|
4600
|
+
readonly descriptionField?: string | undefined;
|
|
4601
|
+
readonly lookupColumns?: (string | {
|
|
4602
|
+
field: string;
|
|
4603
|
+
label?: string | undefined;
|
|
4604
|
+
width?: string | undefined;
|
|
4605
|
+
type?: string | undefined;
|
|
4606
|
+
})[] | undefined;
|
|
4607
|
+
readonly lookupPageSize?: number | undefined;
|
|
4608
|
+
readonly lookupFilters?: {
|
|
4609
|
+
field: string;
|
|
4610
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
4611
|
+
value: any;
|
|
4612
|
+
}[] | undefined;
|
|
4613
|
+
readonly dependsOn?: (string | {
|
|
4614
|
+
field: string;
|
|
4615
|
+
param?: string | undefined;
|
|
4616
|
+
})[] | undefined;
|
|
4617
|
+
readonly allowCreate?: boolean | undefined;
|
|
4191
4618
|
readonly expression?: {
|
|
4192
4619
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4193
4620
|
source?: string | undefined;
|
|
@@ -4343,6 +4770,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
4343
4770
|
readonly relatedList?: boolean | undefined;
|
|
4344
4771
|
readonly relatedListTitle?: string | undefined;
|
|
4345
4772
|
readonly relatedListColumns?: any[] | undefined;
|
|
4773
|
+
readonly displayField?: string | undefined;
|
|
4774
|
+
readonly descriptionField?: string | undefined;
|
|
4775
|
+
readonly lookupColumns?: (string | {
|
|
4776
|
+
field: string;
|
|
4777
|
+
label?: string | undefined;
|
|
4778
|
+
width?: string | undefined;
|
|
4779
|
+
type?: string | undefined;
|
|
4780
|
+
})[] | undefined;
|
|
4781
|
+
readonly lookupPageSize?: number | undefined;
|
|
4782
|
+
readonly lookupFilters?: {
|
|
4783
|
+
field: string;
|
|
4784
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
4785
|
+
value: any;
|
|
4786
|
+
}[] | undefined;
|
|
4787
|
+
readonly dependsOn?: (string | {
|
|
4788
|
+
field: string;
|
|
4789
|
+
param?: string | undefined;
|
|
4790
|
+
})[] | undefined;
|
|
4791
|
+
readonly allowCreate?: boolean | undefined;
|
|
4346
4792
|
readonly expression?: {
|
|
4347
4793
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4348
4794
|
source?: string | undefined;
|
|
@@ -4498,6 +4944,25 @@ declare const SysMetadataObject: Omit<{
|
|
|
4498
4944
|
readonly relatedList?: boolean | undefined;
|
|
4499
4945
|
readonly relatedListTitle?: string | undefined;
|
|
4500
4946
|
readonly relatedListColumns?: any[] | undefined;
|
|
4947
|
+
readonly displayField?: string | undefined;
|
|
4948
|
+
readonly descriptionField?: string | undefined;
|
|
4949
|
+
readonly lookupColumns?: (string | {
|
|
4950
|
+
field: string;
|
|
4951
|
+
label?: string | undefined;
|
|
4952
|
+
width?: string | undefined;
|
|
4953
|
+
type?: string | undefined;
|
|
4954
|
+
})[] | undefined;
|
|
4955
|
+
readonly lookupPageSize?: number | undefined;
|
|
4956
|
+
readonly lookupFilters?: {
|
|
4957
|
+
field: string;
|
|
4958
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
4959
|
+
value: any;
|
|
4960
|
+
}[] | undefined;
|
|
4961
|
+
readonly dependsOn?: (string | {
|
|
4962
|
+
field: string;
|
|
4963
|
+
param?: string | undefined;
|
|
4964
|
+
})[] | undefined;
|
|
4965
|
+
readonly allowCreate?: boolean | undefined;
|
|
4501
4966
|
readonly expression?: {
|
|
4502
4967
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4503
4968
|
source?: string | undefined;
|
|
@@ -4786,6 +5251,25 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
4786
5251
|
relatedList?: boolean | undefined;
|
|
4787
5252
|
relatedListTitle?: string | undefined;
|
|
4788
5253
|
relatedListColumns?: any[] | undefined;
|
|
5254
|
+
displayField?: string | undefined;
|
|
5255
|
+
descriptionField?: string | undefined;
|
|
5256
|
+
lookupColumns?: (string | {
|
|
5257
|
+
field: string;
|
|
5258
|
+
label?: string | undefined;
|
|
5259
|
+
width?: string | undefined;
|
|
5260
|
+
type?: string | undefined;
|
|
5261
|
+
})[] | undefined;
|
|
5262
|
+
lookupPageSize?: number | undefined;
|
|
5263
|
+
lookupFilters?: {
|
|
5264
|
+
field: string;
|
|
5265
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
5266
|
+
value: any;
|
|
5267
|
+
}[] | undefined;
|
|
5268
|
+
dependsOn?: (string | {
|
|
5269
|
+
field: string;
|
|
5270
|
+
param?: string | undefined;
|
|
5271
|
+
})[] | undefined;
|
|
5272
|
+
allowCreate?: boolean | undefined;
|
|
4789
5273
|
expression?: {
|
|
4790
5274
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4791
5275
|
source?: string | undefined;
|
|
@@ -5061,7 +5545,7 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
5061
5545
|
} | undefined;
|
|
5062
5546
|
compactLayout?: string[] | undefined;
|
|
5063
5547
|
listViews?: Record<string, {
|
|
5064
|
-
type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
|
|
5548
|
+
type: "map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
|
|
5065
5549
|
columns: string[] | {
|
|
5066
5550
|
field: string;
|
|
5067
5551
|
label?: string | undefined;
|
|
@@ -5178,6 +5662,7 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
5178
5662
|
colorField?: string | undefined;
|
|
5179
5663
|
} | undefined;
|
|
5180
5664
|
gantt?: {
|
|
5665
|
+
[x: string]: unknown;
|
|
5181
5666
|
startDateField: string;
|
|
5182
5667
|
endDateField: string;
|
|
5183
5668
|
titleField: string;
|
|
@@ -5228,6 +5713,13 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
5228
5713
|
values: string[];
|
|
5229
5714
|
dimensions?: string[] | undefined;
|
|
5230
5715
|
} | undefined;
|
|
5716
|
+
tree?: {
|
|
5717
|
+
[x: string]: unknown;
|
|
5718
|
+
parentField?: string | undefined;
|
|
5719
|
+
labelField?: string | undefined;
|
|
5720
|
+
fields?: string[] | undefined;
|
|
5721
|
+
defaultExpandedDepth?: number | undefined;
|
|
5722
|
+
} | undefined;
|
|
5231
5723
|
description?: string | undefined;
|
|
5232
5724
|
sharing?: {
|
|
5233
5725
|
type: "personal" | "collaborative";
|
|
@@ -5283,7 +5775,7 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
5283
5775
|
} | undefined;
|
|
5284
5776
|
appearance?: {
|
|
5285
5777
|
showDescription: boolean;
|
|
5286
|
-
allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
|
|
5778
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
|
|
5287
5779
|
} | undefined;
|
|
5288
5780
|
tabs?: {
|
|
5289
5781
|
name: string;
|
|
@@ -5352,6 +5844,7 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
5352
5844
|
} | undefined;
|
|
5353
5845
|
}> | undefined;
|
|
5354
5846
|
defaultDetailForm?: string | undefined;
|
|
5847
|
+
searchableFields?: string[] | undefined;
|
|
5355
5848
|
search?: {
|
|
5356
5849
|
fields: string[];
|
|
5357
5850
|
displayFields?: string[] | undefined;
|
|
@@ -5542,6 +6035,25 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
5542
6035
|
readonly relatedList?: boolean | undefined;
|
|
5543
6036
|
readonly relatedListTitle?: string | undefined;
|
|
5544
6037
|
readonly relatedListColumns?: any[] | undefined;
|
|
6038
|
+
readonly displayField?: string | undefined;
|
|
6039
|
+
readonly descriptionField?: string | undefined;
|
|
6040
|
+
readonly lookupColumns?: (string | {
|
|
6041
|
+
field: string;
|
|
6042
|
+
label?: string | undefined;
|
|
6043
|
+
width?: string | undefined;
|
|
6044
|
+
type?: string | undefined;
|
|
6045
|
+
})[] | undefined;
|
|
6046
|
+
readonly lookupPageSize?: number | undefined;
|
|
6047
|
+
readonly lookupFilters?: {
|
|
6048
|
+
field: string;
|
|
6049
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
6050
|
+
value: any;
|
|
6051
|
+
}[] | undefined;
|
|
6052
|
+
readonly dependsOn?: (string | {
|
|
6053
|
+
field: string;
|
|
6054
|
+
param?: string | undefined;
|
|
6055
|
+
})[] | undefined;
|
|
6056
|
+
readonly allowCreate?: boolean | undefined;
|
|
5545
6057
|
readonly expression?: {
|
|
5546
6058
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5547
6059
|
source?: string | undefined;
|
|
@@ -5698,6 +6210,25 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
5698
6210
|
readonly relatedList?: boolean | undefined;
|
|
5699
6211
|
readonly relatedListTitle?: string | undefined;
|
|
5700
6212
|
readonly relatedListColumns?: any[] | undefined;
|
|
6213
|
+
readonly displayField?: string | undefined;
|
|
6214
|
+
readonly descriptionField?: string | undefined;
|
|
6215
|
+
readonly lookupColumns?: (string | {
|
|
6216
|
+
field: string;
|
|
6217
|
+
label?: string | undefined;
|
|
6218
|
+
width?: string | undefined;
|
|
6219
|
+
type?: string | undefined;
|
|
6220
|
+
})[] | undefined;
|
|
6221
|
+
readonly lookupPageSize?: number | undefined;
|
|
6222
|
+
readonly lookupFilters?: {
|
|
6223
|
+
field: string;
|
|
6224
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
6225
|
+
value: any;
|
|
6226
|
+
}[] | undefined;
|
|
6227
|
+
readonly dependsOn?: (string | {
|
|
6228
|
+
field: string;
|
|
6229
|
+
param?: string | undefined;
|
|
6230
|
+
})[] | undefined;
|
|
6231
|
+
readonly allowCreate?: boolean | undefined;
|
|
5701
6232
|
readonly expression?: {
|
|
5702
6233
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5703
6234
|
source?: string | undefined;
|
|
@@ -5854,6 +6385,25 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
5854
6385
|
readonly relatedList?: boolean | undefined;
|
|
5855
6386
|
readonly relatedListTitle?: string | undefined;
|
|
5856
6387
|
readonly relatedListColumns?: any[] | undefined;
|
|
6388
|
+
readonly displayField?: string | undefined;
|
|
6389
|
+
readonly descriptionField?: string | undefined;
|
|
6390
|
+
readonly lookupColumns?: (string | {
|
|
6391
|
+
field: string;
|
|
6392
|
+
label?: string | undefined;
|
|
6393
|
+
width?: string | undefined;
|
|
6394
|
+
type?: string | undefined;
|
|
6395
|
+
})[] | undefined;
|
|
6396
|
+
readonly lookupPageSize?: number | undefined;
|
|
6397
|
+
readonly lookupFilters?: {
|
|
6398
|
+
field: string;
|
|
6399
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
6400
|
+
value: any;
|
|
6401
|
+
}[] | undefined;
|
|
6402
|
+
readonly dependsOn?: (string | {
|
|
6403
|
+
field: string;
|
|
6404
|
+
param?: string | undefined;
|
|
6405
|
+
})[] | undefined;
|
|
6406
|
+
readonly allowCreate?: boolean | undefined;
|
|
5857
6407
|
readonly expression?: {
|
|
5858
6408
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5859
6409
|
source?: string | undefined;
|
|
@@ -6010,6 +6560,25 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
6010
6560
|
readonly relatedList?: boolean | undefined;
|
|
6011
6561
|
readonly relatedListTitle?: string | undefined;
|
|
6012
6562
|
readonly relatedListColumns?: any[] | undefined;
|
|
6563
|
+
readonly displayField?: string | undefined;
|
|
6564
|
+
readonly descriptionField?: string | undefined;
|
|
6565
|
+
readonly lookupColumns?: (string | {
|
|
6566
|
+
field: string;
|
|
6567
|
+
label?: string | undefined;
|
|
6568
|
+
width?: string | undefined;
|
|
6569
|
+
type?: string | undefined;
|
|
6570
|
+
})[] | undefined;
|
|
6571
|
+
readonly lookupPageSize?: number | undefined;
|
|
6572
|
+
readonly lookupFilters?: {
|
|
6573
|
+
field: string;
|
|
6574
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
6575
|
+
value: any;
|
|
6576
|
+
}[] | undefined;
|
|
6577
|
+
readonly dependsOn?: (string | {
|
|
6578
|
+
field: string;
|
|
6579
|
+
param?: string | undefined;
|
|
6580
|
+
})[] | undefined;
|
|
6581
|
+
readonly allowCreate?: boolean | undefined;
|
|
6013
6582
|
readonly expression?: {
|
|
6014
6583
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6015
6584
|
source?: string | undefined;
|
|
@@ -6166,6 +6735,25 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
6166
6735
|
readonly relatedList?: boolean | undefined;
|
|
6167
6736
|
readonly relatedListTitle?: string | undefined;
|
|
6168
6737
|
readonly relatedListColumns?: any[] | undefined;
|
|
6738
|
+
readonly displayField?: string | undefined;
|
|
6739
|
+
readonly descriptionField?: string | undefined;
|
|
6740
|
+
readonly lookupColumns?: (string | {
|
|
6741
|
+
field: string;
|
|
6742
|
+
label?: string | undefined;
|
|
6743
|
+
width?: string | undefined;
|
|
6744
|
+
type?: string | undefined;
|
|
6745
|
+
})[] | undefined;
|
|
6746
|
+
readonly lookupPageSize?: number | undefined;
|
|
6747
|
+
readonly lookupFilters?: {
|
|
6748
|
+
field: string;
|
|
6749
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
6750
|
+
value: any;
|
|
6751
|
+
}[] | undefined;
|
|
6752
|
+
readonly dependsOn?: (string | {
|
|
6753
|
+
field: string;
|
|
6754
|
+
param?: string | undefined;
|
|
6755
|
+
})[] | undefined;
|
|
6756
|
+
readonly allowCreate?: boolean | undefined;
|
|
6169
6757
|
readonly expression?: {
|
|
6170
6758
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6171
6759
|
source?: string | undefined;
|
|
@@ -6322,6 +6910,25 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
6322
6910
|
readonly relatedList?: boolean | undefined;
|
|
6323
6911
|
readonly relatedListTitle?: string | undefined;
|
|
6324
6912
|
readonly relatedListColumns?: any[] | undefined;
|
|
6913
|
+
readonly displayField?: string | undefined;
|
|
6914
|
+
readonly descriptionField?: string | undefined;
|
|
6915
|
+
readonly lookupColumns?: (string | {
|
|
6916
|
+
field: string;
|
|
6917
|
+
label?: string | undefined;
|
|
6918
|
+
width?: string | undefined;
|
|
6919
|
+
type?: string | undefined;
|
|
6920
|
+
})[] | undefined;
|
|
6921
|
+
readonly lookupPageSize?: number | undefined;
|
|
6922
|
+
readonly lookupFilters?: {
|
|
6923
|
+
field: string;
|
|
6924
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
6925
|
+
value: any;
|
|
6926
|
+
}[] | undefined;
|
|
6927
|
+
readonly dependsOn?: (string | {
|
|
6928
|
+
field: string;
|
|
6929
|
+
param?: string | undefined;
|
|
6930
|
+
})[] | undefined;
|
|
6931
|
+
readonly allowCreate?: boolean | undefined;
|
|
6325
6932
|
readonly expression?: {
|
|
6326
6933
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6327
6934
|
source?: string | undefined;
|
|
@@ -6481,6 +7088,25 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
6481
7088
|
readonly relatedList?: boolean | undefined;
|
|
6482
7089
|
readonly relatedListTitle?: string | undefined;
|
|
6483
7090
|
readonly relatedListColumns?: any[] | undefined;
|
|
7091
|
+
readonly displayField?: string | undefined;
|
|
7092
|
+
readonly descriptionField?: string | undefined;
|
|
7093
|
+
readonly lookupColumns?: (string | {
|
|
7094
|
+
field: string;
|
|
7095
|
+
label?: string | undefined;
|
|
7096
|
+
width?: string | undefined;
|
|
7097
|
+
type?: string | undefined;
|
|
7098
|
+
})[] | undefined;
|
|
7099
|
+
readonly lookupPageSize?: number | undefined;
|
|
7100
|
+
readonly lookupFilters?: {
|
|
7101
|
+
field: string;
|
|
7102
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7103
|
+
value: any;
|
|
7104
|
+
}[] | undefined;
|
|
7105
|
+
readonly dependsOn?: (string | {
|
|
7106
|
+
field: string;
|
|
7107
|
+
param?: string | undefined;
|
|
7108
|
+
})[] | undefined;
|
|
7109
|
+
readonly allowCreate?: boolean | undefined;
|
|
6484
7110
|
readonly expression?: {
|
|
6485
7111
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6486
7112
|
source?: string | undefined;
|
|
@@ -6637,6 +7263,25 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
6637
7263
|
readonly relatedList?: boolean | undefined;
|
|
6638
7264
|
readonly relatedListTitle?: string | undefined;
|
|
6639
7265
|
readonly relatedListColumns?: any[] | undefined;
|
|
7266
|
+
readonly displayField?: string | undefined;
|
|
7267
|
+
readonly descriptionField?: string | undefined;
|
|
7268
|
+
readonly lookupColumns?: (string | {
|
|
7269
|
+
field: string;
|
|
7270
|
+
label?: string | undefined;
|
|
7271
|
+
width?: string | undefined;
|
|
7272
|
+
type?: string | undefined;
|
|
7273
|
+
})[] | undefined;
|
|
7274
|
+
readonly lookupPageSize?: number | undefined;
|
|
7275
|
+
readonly lookupFilters?: {
|
|
7276
|
+
field: string;
|
|
7277
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7278
|
+
value: any;
|
|
7279
|
+
}[] | undefined;
|
|
7280
|
+
readonly dependsOn?: (string | {
|
|
7281
|
+
field: string;
|
|
7282
|
+
param?: string | undefined;
|
|
7283
|
+
})[] | undefined;
|
|
7284
|
+
readonly allowCreate?: boolean | undefined;
|
|
6640
7285
|
readonly expression?: {
|
|
6641
7286
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6642
7287
|
source?: string | undefined;
|
|
@@ -6793,6 +7438,25 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
6793
7438
|
readonly relatedList?: boolean | undefined;
|
|
6794
7439
|
readonly relatedListTitle?: string | undefined;
|
|
6795
7440
|
readonly relatedListColumns?: any[] | undefined;
|
|
7441
|
+
readonly displayField?: string | undefined;
|
|
7442
|
+
readonly descriptionField?: string | undefined;
|
|
7443
|
+
readonly lookupColumns?: (string | {
|
|
7444
|
+
field: string;
|
|
7445
|
+
label?: string | undefined;
|
|
7446
|
+
width?: string | undefined;
|
|
7447
|
+
type?: string | undefined;
|
|
7448
|
+
})[] | undefined;
|
|
7449
|
+
readonly lookupPageSize?: number | undefined;
|
|
7450
|
+
readonly lookupFilters?: {
|
|
7451
|
+
field: string;
|
|
7452
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7453
|
+
value: any;
|
|
7454
|
+
}[] | undefined;
|
|
7455
|
+
readonly dependsOn?: (string | {
|
|
7456
|
+
field: string;
|
|
7457
|
+
param?: string | undefined;
|
|
7458
|
+
})[] | undefined;
|
|
7459
|
+
readonly allowCreate?: boolean | undefined;
|
|
6796
7460
|
readonly expression?: {
|
|
6797
7461
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6798
7462
|
source?: string | undefined;
|
|
@@ -6949,6 +7613,25 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
6949
7613
|
readonly relatedList?: boolean | undefined;
|
|
6950
7614
|
readonly relatedListTitle?: string | undefined;
|
|
6951
7615
|
readonly relatedListColumns?: any[] | undefined;
|
|
7616
|
+
readonly displayField?: string | undefined;
|
|
7617
|
+
readonly descriptionField?: string | undefined;
|
|
7618
|
+
readonly lookupColumns?: (string | {
|
|
7619
|
+
field: string;
|
|
7620
|
+
label?: string | undefined;
|
|
7621
|
+
width?: string | undefined;
|
|
7622
|
+
type?: string | undefined;
|
|
7623
|
+
})[] | undefined;
|
|
7624
|
+
readonly lookupPageSize?: number | undefined;
|
|
7625
|
+
readonly lookupFilters?: {
|
|
7626
|
+
field: string;
|
|
7627
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7628
|
+
value: any;
|
|
7629
|
+
}[] | undefined;
|
|
7630
|
+
readonly dependsOn?: (string | {
|
|
7631
|
+
field: string;
|
|
7632
|
+
param?: string | undefined;
|
|
7633
|
+
})[] | undefined;
|
|
7634
|
+
readonly allowCreate?: boolean | undefined;
|
|
6952
7635
|
readonly expression?: {
|
|
6953
7636
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6954
7637
|
source?: string | undefined;
|
|
@@ -7109,6 +7792,25 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
7109
7792
|
readonly relatedList?: boolean | undefined;
|
|
7110
7793
|
readonly relatedListTitle?: string | undefined;
|
|
7111
7794
|
readonly relatedListColumns?: any[] | undefined;
|
|
7795
|
+
readonly displayField?: string | undefined;
|
|
7796
|
+
readonly descriptionField?: string | undefined;
|
|
7797
|
+
readonly lookupColumns?: (string | {
|
|
7798
|
+
field: string;
|
|
7799
|
+
label?: string | undefined;
|
|
7800
|
+
width?: string | undefined;
|
|
7801
|
+
type?: string | undefined;
|
|
7802
|
+
})[] | undefined;
|
|
7803
|
+
readonly lookupPageSize?: number | undefined;
|
|
7804
|
+
readonly lookupFilters?: {
|
|
7805
|
+
field: string;
|
|
7806
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7807
|
+
value: any;
|
|
7808
|
+
}[] | undefined;
|
|
7809
|
+
readonly dependsOn?: (string | {
|
|
7810
|
+
field: string;
|
|
7811
|
+
param?: string | undefined;
|
|
7812
|
+
})[] | undefined;
|
|
7813
|
+
readonly allowCreate?: boolean | undefined;
|
|
7112
7814
|
readonly expression?: {
|
|
7113
7815
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7114
7816
|
source?: string | undefined;
|
|
@@ -7265,6 +7967,25 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
7265
7967
|
readonly relatedList?: boolean | undefined;
|
|
7266
7968
|
readonly relatedListTitle?: string | undefined;
|
|
7267
7969
|
readonly relatedListColumns?: any[] | undefined;
|
|
7970
|
+
readonly displayField?: string | undefined;
|
|
7971
|
+
readonly descriptionField?: string | undefined;
|
|
7972
|
+
readonly lookupColumns?: (string | {
|
|
7973
|
+
field: string;
|
|
7974
|
+
label?: string | undefined;
|
|
7975
|
+
width?: string | undefined;
|
|
7976
|
+
type?: string | undefined;
|
|
7977
|
+
})[] | undefined;
|
|
7978
|
+
readonly lookupPageSize?: number | undefined;
|
|
7979
|
+
readonly lookupFilters?: {
|
|
7980
|
+
field: string;
|
|
7981
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7982
|
+
value: any;
|
|
7983
|
+
}[] | undefined;
|
|
7984
|
+
readonly dependsOn?: (string | {
|
|
7985
|
+
field: string;
|
|
7986
|
+
param?: string | undefined;
|
|
7987
|
+
})[] | undefined;
|
|
7988
|
+
readonly allowCreate?: boolean | undefined;
|
|
7268
7989
|
readonly expression?: {
|
|
7269
7990
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7270
7991
|
source?: string | undefined;
|
|
@@ -7421,6 +8142,25 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
7421
8142
|
readonly relatedList?: boolean | undefined;
|
|
7422
8143
|
readonly relatedListTitle?: string | undefined;
|
|
7423
8144
|
readonly relatedListColumns?: any[] | undefined;
|
|
8145
|
+
readonly displayField?: string | undefined;
|
|
8146
|
+
readonly descriptionField?: string | undefined;
|
|
8147
|
+
readonly lookupColumns?: (string | {
|
|
8148
|
+
field: string;
|
|
8149
|
+
label?: string | undefined;
|
|
8150
|
+
width?: string | undefined;
|
|
8151
|
+
type?: string | undefined;
|
|
8152
|
+
})[] | undefined;
|
|
8153
|
+
readonly lookupPageSize?: number | undefined;
|
|
8154
|
+
readonly lookupFilters?: {
|
|
8155
|
+
field: string;
|
|
8156
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
8157
|
+
value: any;
|
|
8158
|
+
}[] | undefined;
|
|
8159
|
+
readonly dependsOn?: (string | {
|
|
8160
|
+
field: string;
|
|
8161
|
+
param?: string | undefined;
|
|
8162
|
+
})[] | undefined;
|
|
8163
|
+
readonly allowCreate?: boolean | undefined;
|
|
7424
8164
|
readonly expression?: {
|
|
7425
8165
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7426
8166
|
source?: string | undefined;
|
|
@@ -7577,6 +8317,25 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
7577
8317
|
readonly relatedList?: boolean | undefined;
|
|
7578
8318
|
readonly relatedListTitle?: string | undefined;
|
|
7579
8319
|
readonly relatedListColumns?: any[] | undefined;
|
|
8320
|
+
readonly displayField?: string | undefined;
|
|
8321
|
+
readonly descriptionField?: string | undefined;
|
|
8322
|
+
readonly lookupColumns?: (string | {
|
|
8323
|
+
field: string;
|
|
8324
|
+
label?: string | undefined;
|
|
8325
|
+
width?: string | undefined;
|
|
8326
|
+
type?: string | undefined;
|
|
8327
|
+
})[] | undefined;
|
|
8328
|
+
readonly lookupPageSize?: number | undefined;
|
|
8329
|
+
readonly lookupFilters?: {
|
|
8330
|
+
field: string;
|
|
8331
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
8332
|
+
value: any;
|
|
8333
|
+
}[] | undefined;
|
|
8334
|
+
readonly dependsOn?: (string | {
|
|
8335
|
+
field: string;
|
|
8336
|
+
param?: string | undefined;
|
|
8337
|
+
})[] | undefined;
|
|
8338
|
+
readonly allowCreate?: boolean | undefined;
|
|
7580
8339
|
readonly expression?: {
|
|
7581
8340
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7582
8341
|
source?: string | undefined;
|
|
@@ -7792,6 +8551,25 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
7792
8551
|
relatedList?: boolean | undefined;
|
|
7793
8552
|
relatedListTitle?: string | undefined;
|
|
7794
8553
|
relatedListColumns?: any[] | undefined;
|
|
8554
|
+
displayField?: string | undefined;
|
|
8555
|
+
descriptionField?: string | undefined;
|
|
8556
|
+
lookupColumns?: (string | {
|
|
8557
|
+
field: string;
|
|
8558
|
+
label?: string | undefined;
|
|
8559
|
+
width?: string | undefined;
|
|
8560
|
+
type?: string | undefined;
|
|
8561
|
+
})[] | undefined;
|
|
8562
|
+
lookupPageSize?: number | undefined;
|
|
8563
|
+
lookupFilters?: {
|
|
8564
|
+
field: string;
|
|
8565
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
8566
|
+
value: any;
|
|
8567
|
+
}[] | undefined;
|
|
8568
|
+
dependsOn?: (string | {
|
|
8569
|
+
field: string;
|
|
8570
|
+
param?: string | undefined;
|
|
8571
|
+
})[] | undefined;
|
|
8572
|
+
allowCreate?: boolean | undefined;
|
|
7795
8573
|
expression?: {
|
|
7796
8574
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7797
8575
|
source?: string | undefined;
|
|
@@ -8067,7 +8845,7 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
8067
8845
|
} | undefined;
|
|
8068
8846
|
compactLayout?: string[] | undefined;
|
|
8069
8847
|
listViews?: Record<string, {
|
|
8070
|
-
type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
|
|
8848
|
+
type: "map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
|
|
8071
8849
|
columns: string[] | {
|
|
8072
8850
|
field: string;
|
|
8073
8851
|
label?: string | undefined;
|
|
@@ -8184,6 +8962,7 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
8184
8962
|
colorField?: string | undefined;
|
|
8185
8963
|
} | undefined;
|
|
8186
8964
|
gantt?: {
|
|
8965
|
+
[x: string]: unknown;
|
|
8187
8966
|
startDateField: string;
|
|
8188
8967
|
endDateField: string;
|
|
8189
8968
|
titleField: string;
|
|
@@ -8234,6 +9013,13 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
8234
9013
|
values: string[];
|
|
8235
9014
|
dimensions?: string[] | undefined;
|
|
8236
9015
|
} | undefined;
|
|
9016
|
+
tree?: {
|
|
9017
|
+
[x: string]: unknown;
|
|
9018
|
+
parentField?: string | undefined;
|
|
9019
|
+
labelField?: string | undefined;
|
|
9020
|
+
fields?: string[] | undefined;
|
|
9021
|
+
defaultExpandedDepth?: number | undefined;
|
|
9022
|
+
} | undefined;
|
|
8237
9023
|
description?: string | undefined;
|
|
8238
9024
|
sharing?: {
|
|
8239
9025
|
type: "personal" | "collaborative";
|
|
@@ -8289,7 +9075,7 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
8289
9075
|
} | undefined;
|
|
8290
9076
|
appearance?: {
|
|
8291
9077
|
showDescription: boolean;
|
|
8292
|
-
allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
|
|
9078
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
|
|
8293
9079
|
} | undefined;
|
|
8294
9080
|
tabs?: {
|
|
8295
9081
|
name: string;
|
|
@@ -8358,6 +9144,7 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
8358
9144
|
} | undefined;
|
|
8359
9145
|
}> | undefined;
|
|
8360
9146
|
defaultDetailForm?: string | undefined;
|
|
9147
|
+
searchableFields?: string[] | undefined;
|
|
8361
9148
|
search?: {
|
|
8362
9149
|
fields: string[];
|
|
8363
9150
|
displayFields?: string[] | undefined;
|
|
@@ -8548,6 +9335,25 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
8548
9335
|
readonly relatedList?: boolean | undefined;
|
|
8549
9336
|
readonly relatedListTitle?: string | undefined;
|
|
8550
9337
|
readonly relatedListColumns?: any[] | undefined;
|
|
9338
|
+
readonly displayField?: string | undefined;
|
|
9339
|
+
readonly descriptionField?: string | undefined;
|
|
9340
|
+
readonly lookupColumns?: (string | {
|
|
9341
|
+
field: string;
|
|
9342
|
+
label?: string | undefined;
|
|
9343
|
+
width?: string | undefined;
|
|
9344
|
+
type?: string | undefined;
|
|
9345
|
+
})[] | undefined;
|
|
9346
|
+
readonly lookupPageSize?: number | undefined;
|
|
9347
|
+
readonly lookupFilters?: {
|
|
9348
|
+
field: string;
|
|
9349
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
9350
|
+
value: any;
|
|
9351
|
+
}[] | undefined;
|
|
9352
|
+
readonly dependsOn?: (string | {
|
|
9353
|
+
field: string;
|
|
9354
|
+
param?: string | undefined;
|
|
9355
|
+
})[] | undefined;
|
|
9356
|
+
readonly allowCreate?: boolean | undefined;
|
|
8551
9357
|
readonly expression?: {
|
|
8552
9358
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8553
9359
|
source?: string | undefined;
|
|
@@ -8704,6 +9510,25 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
8704
9510
|
readonly relatedList?: boolean | undefined;
|
|
8705
9511
|
readonly relatedListTitle?: string | undefined;
|
|
8706
9512
|
readonly relatedListColumns?: any[] | undefined;
|
|
9513
|
+
readonly displayField?: string | undefined;
|
|
9514
|
+
readonly descriptionField?: string | undefined;
|
|
9515
|
+
readonly lookupColumns?: (string | {
|
|
9516
|
+
field: string;
|
|
9517
|
+
label?: string | undefined;
|
|
9518
|
+
width?: string | undefined;
|
|
9519
|
+
type?: string | undefined;
|
|
9520
|
+
})[] | undefined;
|
|
9521
|
+
readonly lookupPageSize?: number | undefined;
|
|
9522
|
+
readonly lookupFilters?: {
|
|
9523
|
+
field: string;
|
|
9524
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
9525
|
+
value: any;
|
|
9526
|
+
}[] | undefined;
|
|
9527
|
+
readonly dependsOn?: (string | {
|
|
9528
|
+
field: string;
|
|
9529
|
+
param?: string | undefined;
|
|
9530
|
+
})[] | undefined;
|
|
9531
|
+
readonly allowCreate?: boolean | undefined;
|
|
8707
9532
|
readonly expression?: {
|
|
8708
9533
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8709
9534
|
source?: string | undefined;
|
|
@@ -8860,6 +9685,25 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
8860
9685
|
readonly relatedList?: boolean | undefined;
|
|
8861
9686
|
readonly relatedListTitle?: string | undefined;
|
|
8862
9687
|
readonly relatedListColumns?: any[] | undefined;
|
|
9688
|
+
readonly displayField?: string | undefined;
|
|
9689
|
+
readonly descriptionField?: string | undefined;
|
|
9690
|
+
readonly lookupColumns?: (string | {
|
|
9691
|
+
field: string;
|
|
9692
|
+
label?: string | undefined;
|
|
9693
|
+
width?: string | undefined;
|
|
9694
|
+
type?: string | undefined;
|
|
9695
|
+
})[] | undefined;
|
|
9696
|
+
readonly lookupPageSize?: number | undefined;
|
|
9697
|
+
readonly lookupFilters?: {
|
|
9698
|
+
field: string;
|
|
9699
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
9700
|
+
value: any;
|
|
9701
|
+
}[] | undefined;
|
|
9702
|
+
readonly dependsOn?: (string | {
|
|
9703
|
+
field: string;
|
|
9704
|
+
param?: string | undefined;
|
|
9705
|
+
})[] | undefined;
|
|
9706
|
+
readonly allowCreate?: boolean | undefined;
|
|
8863
9707
|
readonly expression?: {
|
|
8864
9708
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8865
9709
|
source?: string | undefined;
|
|
@@ -9016,6 +9860,25 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
9016
9860
|
readonly relatedList?: boolean | undefined;
|
|
9017
9861
|
readonly relatedListTitle?: string | undefined;
|
|
9018
9862
|
readonly relatedListColumns?: any[] | undefined;
|
|
9863
|
+
readonly displayField?: string | undefined;
|
|
9864
|
+
readonly descriptionField?: string | undefined;
|
|
9865
|
+
readonly lookupColumns?: (string | {
|
|
9866
|
+
field: string;
|
|
9867
|
+
label?: string | undefined;
|
|
9868
|
+
width?: string | undefined;
|
|
9869
|
+
type?: string | undefined;
|
|
9870
|
+
})[] | undefined;
|
|
9871
|
+
readonly lookupPageSize?: number | undefined;
|
|
9872
|
+
readonly lookupFilters?: {
|
|
9873
|
+
field: string;
|
|
9874
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
9875
|
+
value: any;
|
|
9876
|
+
}[] | undefined;
|
|
9877
|
+
readonly dependsOn?: (string | {
|
|
9878
|
+
field: string;
|
|
9879
|
+
param?: string | undefined;
|
|
9880
|
+
})[] | undefined;
|
|
9881
|
+
readonly allowCreate?: boolean | undefined;
|
|
9019
9882
|
readonly expression?: {
|
|
9020
9883
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9021
9884
|
source?: string | undefined;
|
|
@@ -9172,6 +10035,25 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
9172
10035
|
readonly relatedList?: boolean | undefined;
|
|
9173
10036
|
readonly relatedListTitle?: string | undefined;
|
|
9174
10037
|
readonly relatedListColumns?: any[] | undefined;
|
|
10038
|
+
readonly displayField?: string | undefined;
|
|
10039
|
+
readonly descriptionField?: string | undefined;
|
|
10040
|
+
readonly lookupColumns?: (string | {
|
|
10041
|
+
field: string;
|
|
10042
|
+
label?: string | undefined;
|
|
10043
|
+
width?: string | undefined;
|
|
10044
|
+
type?: string | undefined;
|
|
10045
|
+
})[] | undefined;
|
|
10046
|
+
readonly lookupPageSize?: number | undefined;
|
|
10047
|
+
readonly lookupFilters?: {
|
|
10048
|
+
field: string;
|
|
10049
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
10050
|
+
value: any;
|
|
10051
|
+
}[] | undefined;
|
|
10052
|
+
readonly dependsOn?: (string | {
|
|
10053
|
+
field: string;
|
|
10054
|
+
param?: string | undefined;
|
|
10055
|
+
})[] | undefined;
|
|
10056
|
+
readonly allowCreate?: boolean | undefined;
|
|
9175
10057
|
readonly expression?: {
|
|
9176
10058
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9177
10059
|
source?: string | undefined;
|
|
@@ -9328,6 +10210,25 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
9328
10210
|
readonly relatedList?: boolean | undefined;
|
|
9329
10211
|
readonly relatedListTitle?: string | undefined;
|
|
9330
10212
|
readonly relatedListColumns?: any[] | undefined;
|
|
10213
|
+
readonly displayField?: string | undefined;
|
|
10214
|
+
readonly descriptionField?: string | undefined;
|
|
10215
|
+
readonly lookupColumns?: (string | {
|
|
10216
|
+
field: string;
|
|
10217
|
+
label?: string | undefined;
|
|
10218
|
+
width?: string | undefined;
|
|
10219
|
+
type?: string | undefined;
|
|
10220
|
+
})[] | undefined;
|
|
10221
|
+
readonly lookupPageSize?: number | undefined;
|
|
10222
|
+
readonly lookupFilters?: {
|
|
10223
|
+
field: string;
|
|
10224
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
10225
|
+
value: any;
|
|
10226
|
+
}[] | undefined;
|
|
10227
|
+
readonly dependsOn?: (string | {
|
|
10228
|
+
field: string;
|
|
10229
|
+
param?: string | undefined;
|
|
10230
|
+
})[] | undefined;
|
|
10231
|
+
readonly allowCreate?: boolean | undefined;
|
|
9331
10232
|
readonly expression?: {
|
|
9332
10233
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9333
10234
|
source?: string | undefined;
|
|
@@ -9484,6 +10385,25 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
9484
10385
|
readonly relatedList?: boolean | undefined;
|
|
9485
10386
|
readonly relatedListTitle?: string | undefined;
|
|
9486
10387
|
readonly relatedListColumns?: any[] | undefined;
|
|
10388
|
+
readonly displayField?: string | undefined;
|
|
10389
|
+
readonly descriptionField?: string | undefined;
|
|
10390
|
+
readonly lookupColumns?: (string | {
|
|
10391
|
+
field: string;
|
|
10392
|
+
label?: string | undefined;
|
|
10393
|
+
width?: string | undefined;
|
|
10394
|
+
type?: string | undefined;
|
|
10395
|
+
})[] | undefined;
|
|
10396
|
+
readonly lookupPageSize?: number | undefined;
|
|
10397
|
+
readonly lookupFilters?: {
|
|
10398
|
+
field: string;
|
|
10399
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
10400
|
+
value: any;
|
|
10401
|
+
}[] | undefined;
|
|
10402
|
+
readonly dependsOn?: (string | {
|
|
10403
|
+
field: string;
|
|
10404
|
+
param?: string | undefined;
|
|
10405
|
+
})[] | undefined;
|
|
10406
|
+
readonly allowCreate?: boolean | undefined;
|
|
9487
10407
|
readonly expression?: {
|
|
9488
10408
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9489
10409
|
source?: string | undefined;
|
|
@@ -9640,6 +10560,25 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
9640
10560
|
readonly relatedList?: boolean | undefined;
|
|
9641
10561
|
readonly relatedListTitle?: string | undefined;
|
|
9642
10562
|
readonly relatedListColumns?: any[] | undefined;
|
|
10563
|
+
readonly displayField?: string | undefined;
|
|
10564
|
+
readonly descriptionField?: string | undefined;
|
|
10565
|
+
readonly lookupColumns?: (string | {
|
|
10566
|
+
field: string;
|
|
10567
|
+
label?: string | undefined;
|
|
10568
|
+
width?: string | undefined;
|
|
10569
|
+
type?: string | undefined;
|
|
10570
|
+
})[] | undefined;
|
|
10571
|
+
readonly lookupPageSize?: number | undefined;
|
|
10572
|
+
readonly lookupFilters?: {
|
|
10573
|
+
field: string;
|
|
10574
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
10575
|
+
value: any;
|
|
10576
|
+
}[] | undefined;
|
|
10577
|
+
readonly dependsOn?: (string | {
|
|
10578
|
+
field: string;
|
|
10579
|
+
param?: string | undefined;
|
|
10580
|
+
})[] | undefined;
|
|
10581
|
+
readonly allowCreate?: boolean | undefined;
|
|
9643
10582
|
readonly expression?: {
|
|
9644
10583
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9645
10584
|
source?: string | undefined;
|
|
@@ -9796,6 +10735,25 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
9796
10735
|
readonly relatedList?: boolean | undefined;
|
|
9797
10736
|
readonly relatedListTitle?: string | undefined;
|
|
9798
10737
|
readonly relatedListColumns?: any[] | undefined;
|
|
10738
|
+
readonly displayField?: string | undefined;
|
|
10739
|
+
readonly descriptionField?: string | undefined;
|
|
10740
|
+
readonly lookupColumns?: (string | {
|
|
10741
|
+
field: string;
|
|
10742
|
+
label?: string | undefined;
|
|
10743
|
+
width?: string | undefined;
|
|
10744
|
+
type?: string | undefined;
|
|
10745
|
+
})[] | undefined;
|
|
10746
|
+
readonly lookupPageSize?: number | undefined;
|
|
10747
|
+
readonly lookupFilters?: {
|
|
10748
|
+
field: string;
|
|
10749
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
10750
|
+
value: any;
|
|
10751
|
+
}[] | undefined;
|
|
10752
|
+
readonly dependsOn?: (string | {
|
|
10753
|
+
field: string;
|
|
10754
|
+
param?: string | undefined;
|
|
10755
|
+
})[] | undefined;
|
|
10756
|
+
readonly allowCreate?: boolean | undefined;
|
|
9799
10757
|
readonly expression?: {
|
|
9800
10758
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9801
10759
|
source?: string | undefined;
|
|
@@ -9959,6 +10917,25 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
9959
10917
|
readonly relatedList?: boolean | undefined;
|
|
9960
10918
|
readonly relatedListTitle?: string | undefined;
|
|
9961
10919
|
readonly relatedListColumns?: any[] | undefined;
|
|
10920
|
+
readonly displayField?: string | undefined;
|
|
10921
|
+
readonly descriptionField?: string | undefined;
|
|
10922
|
+
readonly lookupColumns?: (string | {
|
|
10923
|
+
field: string;
|
|
10924
|
+
label?: string | undefined;
|
|
10925
|
+
width?: string | undefined;
|
|
10926
|
+
type?: string | undefined;
|
|
10927
|
+
})[] | undefined;
|
|
10928
|
+
readonly lookupPageSize?: number | undefined;
|
|
10929
|
+
readonly lookupFilters?: {
|
|
10930
|
+
field: string;
|
|
10931
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
10932
|
+
value: any;
|
|
10933
|
+
}[] | undefined;
|
|
10934
|
+
readonly dependsOn?: (string | {
|
|
10935
|
+
field: string;
|
|
10936
|
+
param?: string | undefined;
|
|
10937
|
+
})[] | undefined;
|
|
10938
|
+
readonly allowCreate?: boolean | undefined;
|
|
9962
10939
|
readonly expression?: {
|
|
9963
10940
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9964
10941
|
source?: string | undefined;
|
|
@@ -10120,6 +11097,25 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
10120
11097
|
readonly relatedList?: boolean | undefined;
|
|
10121
11098
|
readonly relatedListTitle?: string | undefined;
|
|
10122
11099
|
readonly relatedListColumns?: any[] | undefined;
|
|
11100
|
+
readonly displayField?: string | undefined;
|
|
11101
|
+
readonly descriptionField?: string | undefined;
|
|
11102
|
+
readonly lookupColumns?: (string | {
|
|
11103
|
+
field: string;
|
|
11104
|
+
label?: string | undefined;
|
|
11105
|
+
width?: string | undefined;
|
|
11106
|
+
type?: string | undefined;
|
|
11107
|
+
})[] | undefined;
|
|
11108
|
+
readonly lookupPageSize?: number | undefined;
|
|
11109
|
+
readonly lookupFilters?: {
|
|
11110
|
+
field: string;
|
|
11111
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
11112
|
+
value: any;
|
|
11113
|
+
}[] | undefined;
|
|
11114
|
+
readonly dependsOn?: (string | {
|
|
11115
|
+
field: string;
|
|
11116
|
+
param?: string | undefined;
|
|
11117
|
+
})[] | undefined;
|
|
11118
|
+
readonly allowCreate?: boolean | undefined;
|
|
10123
11119
|
readonly expression?: {
|
|
10124
11120
|
dialect: "cel" | "js" | "cron" | "template";
|
|
10125
11121
|
source?: string | undefined;
|
|
@@ -10276,6 +11272,25 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
10276
11272
|
readonly relatedList?: boolean | undefined;
|
|
10277
11273
|
readonly relatedListTitle?: string | undefined;
|
|
10278
11274
|
readonly relatedListColumns?: any[] | undefined;
|
|
11275
|
+
readonly displayField?: string | undefined;
|
|
11276
|
+
readonly descriptionField?: string | undefined;
|
|
11277
|
+
readonly lookupColumns?: (string | {
|
|
11278
|
+
field: string;
|
|
11279
|
+
label?: string | undefined;
|
|
11280
|
+
width?: string | undefined;
|
|
11281
|
+
type?: string | undefined;
|
|
11282
|
+
})[] | undefined;
|
|
11283
|
+
readonly lookupPageSize?: number | undefined;
|
|
11284
|
+
readonly lookupFilters?: {
|
|
11285
|
+
field: string;
|
|
11286
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
11287
|
+
value: any;
|
|
11288
|
+
}[] | undefined;
|
|
11289
|
+
readonly dependsOn?: (string | {
|
|
11290
|
+
field: string;
|
|
11291
|
+
param?: string | undefined;
|
|
11292
|
+
})[] | undefined;
|
|
11293
|
+
readonly allowCreate?: boolean | undefined;
|
|
10279
11294
|
readonly expression?: {
|
|
10280
11295
|
dialect: "cel" | "js" | "cron" | "template";
|
|
10281
11296
|
source?: string | undefined;
|
|
@@ -10432,6 +11447,25 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
10432
11447
|
readonly relatedList?: boolean | undefined;
|
|
10433
11448
|
readonly relatedListTitle?: string | undefined;
|
|
10434
11449
|
readonly relatedListColumns?: any[] | undefined;
|
|
11450
|
+
readonly displayField?: string | undefined;
|
|
11451
|
+
readonly descriptionField?: string | undefined;
|
|
11452
|
+
readonly lookupColumns?: (string | {
|
|
11453
|
+
field: string;
|
|
11454
|
+
label?: string | undefined;
|
|
11455
|
+
width?: string | undefined;
|
|
11456
|
+
type?: string | undefined;
|
|
11457
|
+
})[] | undefined;
|
|
11458
|
+
readonly lookupPageSize?: number | undefined;
|
|
11459
|
+
readonly lookupFilters?: {
|
|
11460
|
+
field: string;
|
|
11461
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
11462
|
+
value: any;
|
|
11463
|
+
}[] | undefined;
|
|
11464
|
+
readonly dependsOn?: (string | {
|
|
11465
|
+
field: string;
|
|
11466
|
+
param?: string | undefined;
|
|
11467
|
+
})[] | undefined;
|
|
11468
|
+
readonly allowCreate?: boolean | undefined;
|
|
10435
11469
|
readonly expression?: {
|
|
10436
11470
|
dialect: "cel" | "js" | "cron" | "template";
|
|
10437
11471
|
source?: string | undefined;
|
|
@@ -10588,6 +11622,25 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
10588
11622
|
readonly relatedList?: boolean | undefined;
|
|
10589
11623
|
readonly relatedListTitle?: string | undefined;
|
|
10590
11624
|
readonly relatedListColumns?: any[] | undefined;
|
|
11625
|
+
readonly displayField?: string | undefined;
|
|
11626
|
+
readonly descriptionField?: string | undefined;
|
|
11627
|
+
readonly lookupColumns?: (string | {
|
|
11628
|
+
field: string;
|
|
11629
|
+
label?: string | undefined;
|
|
11630
|
+
width?: string | undefined;
|
|
11631
|
+
type?: string | undefined;
|
|
11632
|
+
})[] | undefined;
|
|
11633
|
+
readonly lookupPageSize?: number | undefined;
|
|
11634
|
+
readonly lookupFilters?: {
|
|
11635
|
+
field: string;
|
|
11636
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
11637
|
+
value: any;
|
|
11638
|
+
}[] | undefined;
|
|
11639
|
+
readonly dependsOn?: (string | {
|
|
11640
|
+
field: string;
|
|
11641
|
+
param?: string | undefined;
|
|
11642
|
+
})[] | undefined;
|
|
11643
|
+
readonly allowCreate?: boolean | undefined;
|
|
10591
11644
|
readonly expression?: {
|
|
10592
11645
|
dialect: "cel" | "js" | "cron" | "template";
|
|
10593
11646
|
source?: string | undefined;
|
|
@@ -10790,6 +11843,25 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
10790
11843
|
relatedList?: boolean | undefined;
|
|
10791
11844
|
relatedListTitle?: string | undefined;
|
|
10792
11845
|
relatedListColumns?: any[] | undefined;
|
|
11846
|
+
displayField?: string | undefined;
|
|
11847
|
+
descriptionField?: string | undefined;
|
|
11848
|
+
lookupColumns?: (string | {
|
|
11849
|
+
field: string;
|
|
11850
|
+
label?: string | undefined;
|
|
11851
|
+
width?: string | undefined;
|
|
11852
|
+
type?: string | undefined;
|
|
11853
|
+
})[] | undefined;
|
|
11854
|
+
lookupPageSize?: number | undefined;
|
|
11855
|
+
lookupFilters?: {
|
|
11856
|
+
field: string;
|
|
11857
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
11858
|
+
value: any;
|
|
11859
|
+
}[] | undefined;
|
|
11860
|
+
dependsOn?: (string | {
|
|
11861
|
+
field: string;
|
|
11862
|
+
param?: string | undefined;
|
|
11863
|
+
})[] | undefined;
|
|
11864
|
+
allowCreate?: boolean | undefined;
|
|
10793
11865
|
expression?: {
|
|
10794
11866
|
dialect: "cel" | "js" | "cron" | "template";
|
|
10795
11867
|
source?: string | undefined;
|
|
@@ -11065,7 +12137,7 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
11065
12137
|
} | undefined;
|
|
11066
12138
|
compactLayout?: string[] | undefined;
|
|
11067
12139
|
listViews?: Record<string, {
|
|
11068
|
-
type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
|
|
12140
|
+
type: "map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
|
|
11069
12141
|
columns: string[] | {
|
|
11070
12142
|
field: string;
|
|
11071
12143
|
label?: string | undefined;
|
|
@@ -11182,6 +12254,7 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
11182
12254
|
colorField?: string | undefined;
|
|
11183
12255
|
} | undefined;
|
|
11184
12256
|
gantt?: {
|
|
12257
|
+
[x: string]: unknown;
|
|
11185
12258
|
startDateField: string;
|
|
11186
12259
|
endDateField: string;
|
|
11187
12260
|
titleField: string;
|
|
@@ -11232,6 +12305,13 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
11232
12305
|
values: string[];
|
|
11233
12306
|
dimensions?: string[] | undefined;
|
|
11234
12307
|
} | undefined;
|
|
12308
|
+
tree?: {
|
|
12309
|
+
[x: string]: unknown;
|
|
12310
|
+
parentField?: string | undefined;
|
|
12311
|
+
labelField?: string | undefined;
|
|
12312
|
+
fields?: string[] | undefined;
|
|
12313
|
+
defaultExpandedDepth?: number | undefined;
|
|
12314
|
+
} | undefined;
|
|
11235
12315
|
description?: string | undefined;
|
|
11236
12316
|
sharing?: {
|
|
11237
12317
|
type: "personal" | "collaborative";
|
|
@@ -11287,7 +12367,7 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
11287
12367
|
} | undefined;
|
|
11288
12368
|
appearance?: {
|
|
11289
12369
|
showDescription: boolean;
|
|
11290
|
-
allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
|
|
12370
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
|
|
11291
12371
|
} | undefined;
|
|
11292
12372
|
tabs?: {
|
|
11293
12373
|
name: string;
|
|
@@ -11356,6 +12436,7 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
11356
12436
|
} | undefined;
|
|
11357
12437
|
}> | undefined;
|
|
11358
12438
|
defaultDetailForm?: string | undefined;
|
|
12439
|
+
searchableFields?: string[] | undefined;
|
|
11359
12440
|
search?: {
|
|
11360
12441
|
fields: string[];
|
|
11361
12442
|
displayFields?: string[] | undefined;
|
|
@@ -11545,6 +12626,25 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
11545
12626
|
readonly relatedList?: boolean | undefined;
|
|
11546
12627
|
readonly relatedListTitle?: string | undefined;
|
|
11547
12628
|
readonly relatedListColumns?: any[] | undefined;
|
|
12629
|
+
readonly displayField?: string | undefined;
|
|
12630
|
+
readonly descriptionField?: string | undefined;
|
|
12631
|
+
readonly lookupColumns?: (string | {
|
|
12632
|
+
field: string;
|
|
12633
|
+
label?: string | undefined;
|
|
12634
|
+
width?: string | undefined;
|
|
12635
|
+
type?: string | undefined;
|
|
12636
|
+
})[] | undefined;
|
|
12637
|
+
readonly lookupPageSize?: number | undefined;
|
|
12638
|
+
readonly lookupFilters?: {
|
|
12639
|
+
field: string;
|
|
12640
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
12641
|
+
value: any;
|
|
12642
|
+
}[] | undefined;
|
|
12643
|
+
readonly dependsOn?: (string | {
|
|
12644
|
+
field: string;
|
|
12645
|
+
param?: string | undefined;
|
|
12646
|
+
})[] | undefined;
|
|
12647
|
+
readonly allowCreate?: boolean | undefined;
|
|
11548
12648
|
readonly expression?: {
|
|
11549
12649
|
dialect: "cel" | "js" | "cron" | "template";
|
|
11550
12650
|
source?: string | undefined;
|
|
@@ -11705,6 +12805,25 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
11705
12805
|
readonly relatedList?: boolean | undefined;
|
|
11706
12806
|
readonly relatedListTitle?: string | undefined;
|
|
11707
12807
|
readonly relatedListColumns?: any[] | undefined;
|
|
12808
|
+
readonly displayField?: string | undefined;
|
|
12809
|
+
readonly descriptionField?: string | undefined;
|
|
12810
|
+
readonly lookupColumns?: (string | {
|
|
12811
|
+
field: string;
|
|
12812
|
+
label?: string | undefined;
|
|
12813
|
+
width?: string | undefined;
|
|
12814
|
+
type?: string | undefined;
|
|
12815
|
+
})[] | undefined;
|
|
12816
|
+
readonly lookupPageSize?: number | undefined;
|
|
12817
|
+
readonly lookupFilters?: {
|
|
12818
|
+
field: string;
|
|
12819
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
12820
|
+
value: any;
|
|
12821
|
+
}[] | undefined;
|
|
12822
|
+
readonly dependsOn?: (string | {
|
|
12823
|
+
field: string;
|
|
12824
|
+
param?: string | undefined;
|
|
12825
|
+
})[] | undefined;
|
|
12826
|
+
readonly allowCreate?: boolean | undefined;
|
|
11708
12827
|
readonly expression?: {
|
|
11709
12828
|
dialect: "cel" | "js" | "cron" | "template";
|
|
11710
12829
|
source?: string | undefined;
|
|
@@ -11861,6 +12980,25 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
11861
12980
|
readonly relatedList?: boolean | undefined;
|
|
11862
12981
|
readonly relatedListTitle?: string | undefined;
|
|
11863
12982
|
readonly relatedListColumns?: any[] | undefined;
|
|
12983
|
+
readonly displayField?: string | undefined;
|
|
12984
|
+
readonly descriptionField?: string | undefined;
|
|
12985
|
+
readonly lookupColumns?: (string | {
|
|
12986
|
+
field: string;
|
|
12987
|
+
label?: string | undefined;
|
|
12988
|
+
width?: string | undefined;
|
|
12989
|
+
type?: string | undefined;
|
|
12990
|
+
})[] | undefined;
|
|
12991
|
+
readonly lookupPageSize?: number | undefined;
|
|
12992
|
+
readonly lookupFilters?: {
|
|
12993
|
+
field: string;
|
|
12994
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
12995
|
+
value: any;
|
|
12996
|
+
}[] | undefined;
|
|
12997
|
+
readonly dependsOn?: (string | {
|
|
12998
|
+
field: string;
|
|
12999
|
+
param?: string | undefined;
|
|
13000
|
+
})[] | undefined;
|
|
13001
|
+
readonly allowCreate?: boolean | undefined;
|
|
11864
13002
|
readonly expression?: {
|
|
11865
13003
|
dialect: "cel" | "js" | "cron" | "template";
|
|
11866
13004
|
source?: string | undefined;
|
|
@@ -12017,6 +13155,25 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
12017
13155
|
readonly relatedList?: boolean | undefined;
|
|
12018
13156
|
readonly relatedListTitle?: string | undefined;
|
|
12019
13157
|
readonly relatedListColumns?: any[] | undefined;
|
|
13158
|
+
readonly displayField?: string | undefined;
|
|
13159
|
+
readonly descriptionField?: string | undefined;
|
|
13160
|
+
readonly lookupColumns?: (string | {
|
|
13161
|
+
field: string;
|
|
13162
|
+
label?: string | undefined;
|
|
13163
|
+
width?: string | undefined;
|
|
13164
|
+
type?: string | undefined;
|
|
13165
|
+
})[] | undefined;
|
|
13166
|
+
readonly lookupPageSize?: number | undefined;
|
|
13167
|
+
readonly lookupFilters?: {
|
|
13168
|
+
field: string;
|
|
13169
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
13170
|
+
value: any;
|
|
13171
|
+
}[] | undefined;
|
|
13172
|
+
readonly dependsOn?: (string | {
|
|
13173
|
+
field: string;
|
|
13174
|
+
param?: string | undefined;
|
|
13175
|
+
})[] | undefined;
|
|
13176
|
+
readonly allowCreate?: boolean | undefined;
|
|
12020
13177
|
readonly expression?: {
|
|
12021
13178
|
dialect: "cel" | "js" | "cron" | "template";
|
|
12022
13179
|
source?: string | undefined;
|
|
@@ -12173,6 +13330,25 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
12173
13330
|
readonly relatedList?: boolean | undefined;
|
|
12174
13331
|
readonly relatedListTitle?: string | undefined;
|
|
12175
13332
|
readonly relatedListColumns?: any[] | undefined;
|
|
13333
|
+
readonly displayField?: string | undefined;
|
|
13334
|
+
readonly descriptionField?: string | undefined;
|
|
13335
|
+
readonly lookupColumns?: (string | {
|
|
13336
|
+
field: string;
|
|
13337
|
+
label?: string | undefined;
|
|
13338
|
+
width?: string | undefined;
|
|
13339
|
+
type?: string | undefined;
|
|
13340
|
+
})[] | undefined;
|
|
13341
|
+
readonly lookupPageSize?: number | undefined;
|
|
13342
|
+
readonly lookupFilters?: {
|
|
13343
|
+
field: string;
|
|
13344
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
13345
|
+
value: any;
|
|
13346
|
+
}[] | undefined;
|
|
13347
|
+
readonly dependsOn?: (string | {
|
|
13348
|
+
field: string;
|
|
13349
|
+
param?: string | undefined;
|
|
13350
|
+
})[] | undefined;
|
|
13351
|
+
readonly allowCreate?: boolean | undefined;
|
|
12176
13352
|
readonly expression?: {
|
|
12177
13353
|
dialect: "cel" | "js" | "cron" | "template";
|
|
12178
13354
|
source?: string | undefined;
|
|
@@ -12329,6 +13505,25 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
12329
13505
|
readonly relatedList?: boolean | undefined;
|
|
12330
13506
|
readonly relatedListTitle?: string | undefined;
|
|
12331
13507
|
readonly relatedListColumns?: any[] | undefined;
|
|
13508
|
+
readonly displayField?: string | undefined;
|
|
13509
|
+
readonly descriptionField?: string | undefined;
|
|
13510
|
+
readonly lookupColumns?: (string | {
|
|
13511
|
+
field: string;
|
|
13512
|
+
label?: string | undefined;
|
|
13513
|
+
width?: string | undefined;
|
|
13514
|
+
type?: string | undefined;
|
|
13515
|
+
})[] | undefined;
|
|
13516
|
+
readonly lookupPageSize?: number | undefined;
|
|
13517
|
+
readonly lookupFilters?: {
|
|
13518
|
+
field: string;
|
|
13519
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
13520
|
+
value: any;
|
|
13521
|
+
}[] | undefined;
|
|
13522
|
+
readonly dependsOn?: (string | {
|
|
13523
|
+
field: string;
|
|
13524
|
+
param?: string | undefined;
|
|
13525
|
+
})[] | undefined;
|
|
13526
|
+
readonly allowCreate?: boolean | undefined;
|
|
12332
13527
|
readonly expression?: {
|
|
12333
13528
|
dialect: "cel" | "js" | "cron" | "template";
|
|
12334
13529
|
source?: string | undefined;
|
|
@@ -12485,6 +13680,25 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
12485
13680
|
readonly relatedList?: boolean | undefined;
|
|
12486
13681
|
readonly relatedListTitle?: string | undefined;
|
|
12487
13682
|
readonly relatedListColumns?: any[] | undefined;
|
|
13683
|
+
readonly displayField?: string | undefined;
|
|
13684
|
+
readonly descriptionField?: string | undefined;
|
|
13685
|
+
readonly lookupColumns?: (string | {
|
|
13686
|
+
field: string;
|
|
13687
|
+
label?: string | undefined;
|
|
13688
|
+
width?: string | undefined;
|
|
13689
|
+
type?: string | undefined;
|
|
13690
|
+
})[] | undefined;
|
|
13691
|
+
readonly lookupPageSize?: number | undefined;
|
|
13692
|
+
readonly lookupFilters?: {
|
|
13693
|
+
field: string;
|
|
13694
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
13695
|
+
value: any;
|
|
13696
|
+
}[] | undefined;
|
|
13697
|
+
readonly dependsOn?: (string | {
|
|
13698
|
+
field: string;
|
|
13699
|
+
param?: string | undefined;
|
|
13700
|
+
})[] | undefined;
|
|
13701
|
+
readonly allowCreate?: boolean | undefined;
|
|
12488
13702
|
readonly expression?: {
|
|
12489
13703
|
dialect: "cel" | "js" | "cron" | "template";
|
|
12490
13704
|
source?: string | undefined;
|
|
@@ -12644,6 +13858,25 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
12644
13858
|
readonly relatedList?: boolean | undefined;
|
|
12645
13859
|
readonly relatedListTitle?: string | undefined;
|
|
12646
13860
|
readonly relatedListColumns?: any[] | undefined;
|
|
13861
|
+
readonly displayField?: string | undefined;
|
|
13862
|
+
readonly descriptionField?: string | undefined;
|
|
13863
|
+
readonly lookupColumns?: (string | {
|
|
13864
|
+
field: string;
|
|
13865
|
+
label?: string | undefined;
|
|
13866
|
+
width?: string | undefined;
|
|
13867
|
+
type?: string | undefined;
|
|
13868
|
+
})[] | undefined;
|
|
13869
|
+
readonly lookupPageSize?: number | undefined;
|
|
13870
|
+
readonly lookupFilters?: {
|
|
13871
|
+
field: string;
|
|
13872
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
13873
|
+
value: any;
|
|
13874
|
+
}[] | undefined;
|
|
13875
|
+
readonly dependsOn?: (string | {
|
|
13876
|
+
field: string;
|
|
13877
|
+
param?: string | undefined;
|
|
13878
|
+
})[] | undefined;
|
|
13879
|
+
readonly allowCreate?: boolean | undefined;
|
|
12647
13880
|
readonly expression?: {
|
|
12648
13881
|
dialect: "cel" | "js" | "cron" | "template";
|
|
12649
13882
|
source?: string | undefined;
|
|
@@ -12800,6 +14033,25 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
12800
14033
|
readonly relatedList?: boolean | undefined;
|
|
12801
14034
|
readonly relatedListTitle?: string | undefined;
|
|
12802
14035
|
readonly relatedListColumns?: any[] | undefined;
|
|
14036
|
+
readonly displayField?: string | undefined;
|
|
14037
|
+
readonly descriptionField?: string | undefined;
|
|
14038
|
+
readonly lookupColumns?: (string | {
|
|
14039
|
+
field: string;
|
|
14040
|
+
label?: string | undefined;
|
|
14041
|
+
width?: string | undefined;
|
|
14042
|
+
type?: string | undefined;
|
|
14043
|
+
})[] | undefined;
|
|
14044
|
+
readonly lookupPageSize?: number | undefined;
|
|
14045
|
+
readonly lookupFilters?: {
|
|
14046
|
+
field: string;
|
|
14047
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
14048
|
+
value: any;
|
|
14049
|
+
}[] | undefined;
|
|
14050
|
+
readonly dependsOn?: (string | {
|
|
14051
|
+
field: string;
|
|
14052
|
+
param?: string | undefined;
|
|
14053
|
+
})[] | undefined;
|
|
14054
|
+
readonly allowCreate?: boolean | undefined;
|
|
12803
14055
|
readonly expression?: {
|
|
12804
14056
|
dialect: "cel" | "js" | "cron" | "template";
|
|
12805
14057
|
source?: string | undefined;
|
|
@@ -12956,6 +14208,25 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
12956
14208
|
readonly relatedList?: boolean | undefined;
|
|
12957
14209
|
readonly relatedListTitle?: string | undefined;
|
|
12958
14210
|
readonly relatedListColumns?: any[] | undefined;
|
|
14211
|
+
readonly displayField?: string | undefined;
|
|
14212
|
+
readonly descriptionField?: string | undefined;
|
|
14213
|
+
readonly lookupColumns?: (string | {
|
|
14214
|
+
field: string;
|
|
14215
|
+
label?: string | undefined;
|
|
14216
|
+
width?: string | undefined;
|
|
14217
|
+
type?: string | undefined;
|
|
14218
|
+
})[] | undefined;
|
|
14219
|
+
readonly lookupPageSize?: number | undefined;
|
|
14220
|
+
readonly lookupFilters?: {
|
|
14221
|
+
field: string;
|
|
14222
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
14223
|
+
value: any;
|
|
14224
|
+
}[] | undefined;
|
|
14225
|
+
readonly dependsOn?: (string | {
|
|
14226
|
+
field: string;
|
|
14227
|
+
param?: string | undefined;
|
|
14228
|
+
})[] | undefined;
|
|
14229
|
+
readonly allowCreate?: boolean | undefined;
|
|
12959
14230
|
readonly expression?: {
|
|
12960
14231
|
dialect: "cel" | "js" | "cron" | "template";
|
|
12961
14232
|
source?: string | undefined;
|
|
@@ -13112,6 +14383,25 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
13112
14383
|
readonly relatedList?: boolean | undefined;
|
|
13113
14384
|
readonly relatedListTitle?: string | undefined;
|
|
13114
14385
|
readonly relatedListColumns?: any[] | undefined;
|
|
14386
|
+
readonly displayField?: string | undefined;
|
|
14387
|
+
readonly descriptionField?: string | undefined;
|
|
14388
|
+
readonly lookupColumns?: (string | {
|
|
14389
|
+
field: string;
|
|
14390
|
+
label?: string | undefined;
|
|
14391
|
+
width?: string | undefined;
|
|
14392
|
+
type?: string | undefined;
|
|
14393
|
+
})[] | undefined;
|
|
14394
|
+
readonly lookupPageSize?: number | undefined;
|
|
14395
|
+
readonly lookupFilters?: {
|
|
14396
|
+
field: string;
|
|
14397
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
14398
|
+
value: any;
|
|
14399
|
+
}[] | undefined;
|
|
14400
|
+
readonly dependsOn?: (string | {
|
|
14401
|
+
field: string;
|
|
14402
|
+
param?: string | undefined;
|
|
14403
|
+
})[] | undefined;
|
|
14404
|
+
readonly allowCreate?: boolean | undefined;
|
|
13115
14405
|
readonly expression?: {
|
|
13116
14406
|
dialect: "cel" | "js" | "cron" | "template";
|
|
13117
14407
|
source?: string | undefined;
|
|
@@ -13268,6 +14558,25 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
13268
14558
|
readonly relatedList?: boolean | undefined;
|
|
13269
14559
|
readonly relatedListTitle?: string | undefined;
|
|
13270
14560
|
readonly relatedListColumns?: any[] | undefined;
|
|
14561
|
+
readonly displayField?: string | undefined;
|
|
14562
|
+
readonly descriptionField?: string | undefined;
|
|
14563
|
+
readonly lookupColumns?: (string | {
|
|
14564
|
+
field: string;
|
|
14565
|
+
label?: string | undefined;
|
|
14566
|
+
width?: string | undefined;
|
|
14567
|
+
type?: string | undefined;
|
|
14568
|
+
})[] | undefined;
|
|
14569
|
+
readonly lookupPageSize?: number | undefined;
|
|
14570
|
+
readonly lookupFilters?: {
|
|
14571
|
+
field: string;
|
|
14572
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
14573
|
+
value: any;
|
|
14574
|
+
}[] | undefined;
|
|
14575
|
+
readonly dependsOn?: (string | {
|
|
14576
|
+
field: string;
|
|
14577
|
+
param?: string | undefined;
|
|
14578
|
+
})[] | undefined;
|
|
14579
|
+
readonly allowCreate?: boolean | undefined;
|
|
13271
14580
|
readonly expression?: {
|
|
13272
14581
|
dialect: "cel" | "js" | "cron" | "template";
|
|
13273
14582
|
source?: string | undefined;
|
|
@@ -13424,6 +14733,25 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
13424
14733
|
readonly relatedList?: boolean | undefined;
|
|
13425
14734
|
readonly relatedListTitle?: string | undefined;
|
|
13426
14735
|
readonly relatedListColumns?: any[] | undefined;
|
|
14736
|
+
readonly displayField?: string | undefined;
|
|
14737
|
+
readonly descriptionField?: string | undefined;
|
|
14738
|
+
readonly lookupColumns?: (string | {
|
|
14739
|
+
field: string;
|
|
14740
|
+
label?: string | undefined;
|
|
14741
|
+
width?: string | undefined;
|
|
14742
|
+
type?: string | undefined;
|
|
14743
|
+
})[] | undefined;
|
|
14744
|
+
readonly lookupPageSize?: number | undefined;
|
|
14745
|
+
readonly lookupFilters?: {
|
|
14746
|
+
field: string;
|
|
14747
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
14748
|
+
value: any;
|
|
14749
|
+
}[] | undefined;
|
|
14750
|
+
readonly dependsOn?: (string | {
|
|
14751
|
+
field: string;
|
|
14752
|
+
param?: string | undefined;
|
|
14753
|
+
})[] | undefined;
|
|
14754
|
+
readonly allowCreate?: boolean | undefined;
|
|
13427
14755
|
readonly expression?: {
|
|
13428
14756
|
dialect: "cel" | "js" | "cron" | "template";
|
|
13429
14757
|
source?: string | undefined;
|
|
@@ -13580,6 +14908,25 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
13580
14908
|
readonly relatedList?: boolean | undefined;
|
|
13581
14909
|
readonly relatedListTitle?: string | undefined;
|
|
13582
14910
|
readonly relatedListColumns?: any[] | undefined;
|
|
14911
|
+
readonly displayField?: string | undefined;
|
|
14912
|
+
readonly descriptionField?: string | undefined;
|
|
14913
|
+
readonly lookupColumns?: (string | {
|
|
14914
|
+
field: string;
|
|
14915
|
+
label?: string | undefined;
|
|
14916
|
+
width?: string | undefined;
|
|
14917
|
+
type?: string | undefined;
|
|
14918
|
+
})[] | undefined;
|
|
14919
|
+
readonly lookupPageSize?: number | undefined;
|
|
14920
|
+
readonly lookupFilters?: {
|
|
14921
|
+
field: string;
|
|
14922
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
14923
|
+
value: any;
|
|
14924
|
+
}[] | undefined;
|
|
14925
|
+
readonly dependsOn?: (string | {
|
|
14926
|
+
field: string;
|
|
14927
|
+
param?: string | undefined;
|
|
14928
|
+
})[] | undefined;
|
|
14929
|
+
readonly allowCreate?: boolean | undefined;
|
|
13583
14930
|
readonly expression?: {
|
|
13584
14931
|
dialect: "cel" | "js" | "cron" | "template";
|
|
13585
14932
|
source?: string | undefined;
|
|
@@ -13735,6 +15082,25 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
13735
15082
|
readonly relatedList?: boolean | undefined;
|
|
13736
15083
|
readonly relatedListTitle?: string | undefined;
|
|
13737
15084
|
readonly relatedListColumns?: any[] | undefined;
|
|
15085
|
+
readonly displayField?: string | undefined;
|
|
15086
|
+
readonly descriptionField?: string | undefined;
|
|
15087
|
+
readonly lookupColumns?: (string | {
|
|
15088
|
+
field: string;
|
|
15089
|
+
label?: string | undefined;
|
|
15090
|
+
width?: string | undefined;
|
|
15091
|
+
type?: string | undefined;
|
|
15092
|
+
})[] | undefined;
|
|
15093
|
+
readonly lookupPageSize?: number | undefined;
|
|
15094
|
+
readonly lookupFilters?: {
|
|
15095
|
+
field: string;
|
|
15096
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
15097
|
+
value: any;
|
|
15098
|
+
}[] | undefined;
|
|
15099
|
+
readonly dependsOn?: (string | {
|
|
15100
|
+
field: string;
|
|
15101
|
+
param?: string | undefined;
|
|
15102
|
+
})[] | undefined;
|
|
15103
|
+
readonly allowCreate?: boolean | undefined;
|
|
13738
15104
|
readonly expression?: {
|
|
13739
15105
|
dialect: "cel" | "js" | "cron" | "template";
|
|
13740
15106
|
source?: string | undefined;
|
|
@@ -13890,6 +15256,25 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
13890
15256
|
readonly relatedList?: boolean | undefined;
|
|
13891
15257
|
readonly relatedListTitle?: string | undefined;
|
|
13892
15258
|
readonly relatedListColumns?: any[] | undefined;
|
|
15259
|
+
readonly displayField?: string | undefined;
|
|
15260
|
+
readonly descriptionField?: string | undefined;
|
|
15261
|
+
readonly lookupColumns?: (string | {
|
|
15262
|
+
field: string;
|
|
15263
|
+
label?: string | undefined;
|
|
15264
|
+
width?: string | undefined;
|
|
15265
|
+
type?: string | undefined;
|
|
15266
|
+
})[] | undefined;
|
|
15267
|
+
readonly lookupPageSize?: number | undefined;
|
|
15268
|
+
readonly lookupFilters?: {
|
|
15269
|
+
field: string;
|
|
15270
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
15271
|
+
value: any;
|
|
15272
|
+
}[] | undefined;
|
|
15273
|
+
readonly dependsOn?: (string | {
|
|
15274
|
+
field: string;
|
|
15275
|
+
param?: string | undefined;
|
|
15276
|
+
})[] | undefined;
|
|
15277
|
+
readonly allowCreate?: boolean | undefined;
|
|
13893
15278
|
readonly expression?: {
|
|
13894
15279
|
dialect: "cel" | "js" | "cron" | "template";
|
|
13895
15280
|
source?: string | undefined;
|
|
@@ -14045,6 +15430,25 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
14045
15430
|
readonly relatedList?: boolean | undefined;
|
|
14046
15431
|
readonly relatedListTitle?: string | undefined;
|
|
14047
15432
|
readonly relatedListColumns?: any[] | undefined;
|
|
15433
|
+
readonly displayField?: string | undefined;
|
|
15434
|
+
readonly descriptionField?: string | undefined;
|
|
15435
|
+
readonly lookupColumns?: (string | {
|
|
15436
|
+
field: string;
|
|
15437
|
+
label?: string | undefined;
|
|
15438
|
+
width?: string | undefined;
|
|
15439
|
+
type?: string | undefined;
|
|
15440
|
+
})[] | undefined;
|
|
15441
|
+
readonly lookupPageSize?: number | undefined;
|
|
15442
|
+
readonly lookupFilters?: {
|
|
15443
|
+
field: string;
|
|
15444
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
15445
|
+
value: any;
|
|
15446
|
+
}[] | undefined;
|
|
15447
|
+
readonly dependsOn?: (string | {
|
|
15448
|
+
field: string;
|
|
15449
|
+
param?: string | undefined;
|
|
15450
|
+
})[] | undefined;
|
|
15451
|
+
readonly allowCreate?: boolean | undefined;
|
|
14048
15452
|
readonly expression?: {
|
|
14049
15453
|
dialect: "cel" | "js" | "cron" | "template";
|
|
14050
15454
|
source?: string | undefined;
|