@objectstack/platform-objects 9.11.0 → 10.2.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/apps/index.d.mts +1 -0
- package/dist/apps/index.d.ts +1 -0
- package/dist/apps/index.js +99 -79
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +99 -79
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +2704 -20
- package/dist/audit/index.d.ts +2704 -20
- package/dist/identity/index.d.mts +4674 -79
- package/dist/identity/index.d.ts +4674 -79
- package/dist/identity/index.js +90 -43
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +89 -42
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +189 -122
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +188 -121
- package/dist/index.mjs.map +1 -1
- package/dist/plugin.js +96 -76
- package/dist/plugin.js.map +1 -1
- package/dist/plugin.mjs +96 -76
- package/dist/plugin.mjs.map +1 -1
- package/dist/system/index.d.mts +755 -6
- package/dist/system/index.d.ts +755 -6
- package/package.json +4 -4
package/dist/audit/index.d.ts
CHANGED
|
@@ -68,6 +68,25 @@ declare const SysNotification: Omit<{
|
|
|
68
68
|
relatedList?: boolean | undefined;
|
|
69
69
|
relatedListTitle?: string | undefined;
|
|
70
70
|
relatedListColumns?: any[] | undefined;
|
|
71
|
+
displayField?: string | undefined;
|
|
72
|
+
descriptionField?: string | undefined;
|
|
73
|
+
lookupColumns?: (string | {
|
|
74
|
+
field: string;
|
|
75
|
+
label?: string | undefined;
|
|
76
|
+
width?: string | undefined;
|
|
77
|
+
type?: string | undefined;
|
|
78
|
+
})[] | undefined;
|
|
79
|
+
lookupPageSize?: number | undefined;
|
|
80
|
+
lookupFilters?: {
|
|
81
|
+
field: string;
|
|
82
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
83
|
+
value: any;
|
|
84
|
+
}[] | undefined;
|
|
85
|
+
dependsOn?: (string | {
|
|
86
|
+
field: string;
|
|
87
|
+
param?: string | undefined;
|
|
88
|
+
})[] | undefined;
|
|
89
|
+
allowCreate?: boolean | undefined;
|
|
71
90
|
expression?: {
|
|
72
91
|
dialect: "cel" | "js" | "cron" | "template";
|
|
73
92
|
source?: string | undefined;
|
|
@@ -343,7 +362,7 @@ declare const SysNotification: Omit<{
|
|
|
343
362
|
} | undefined;
|
|
344
363
|
compactLayout?: string[] | undefined;
|
|
345
364
|
listViews?: Record<string, {
|
|
346
|
-
type: "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
365
|
+
type: "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
347
366
|
columns: string[] | {
|
|
348
367
|
field: string;
|
|
349
368
|
label?: string | undefined;
|
|
@@ -460,6 +479,7 @@ declare const SysNotification: Omit<{
|
|
|
460
479
|
colorField?: string | undefined;
|
|
461
480
|
} | undefined;
|
|
462
481
|
gantt?: {
|
|
482
|
+
[x: string]: unknown;
|
|
463
483
|
startDateField: string;
|
|
464
484
|
endDateField: string;
|
|
465
485
|
titleField: string;
|
|
@@ -510,6 +530,13 @@ declare const SysNotification: Omit<{
|
|
|
510
530
|
values: string[];
|
|
511
531
|
dimensions?: string[] | undefined;
|
|
512
532
|
} | undefined;
|
|
533
|
+
tree?: {
|
|
534
|
+
[x: string]: unknown;
|
|
535
|
+
parentField?: string | undefined;
|
|
536
|
+
labelField?: string | undefined;
|
|
537
|
+
fields?: string[] | undefined;
|
|
538
|
+
defaultExpandedDepth?: number | undefined;
|
|
539
|
+
} | undefined;
|
|
513
540
|
description?: string | undefined;
|
|
514
541
|
sharing?: {
|
|
515
542
|
type: "personal" | "collaborative";
|
|
@@ -565,7 +592,7 @@ declare const SysNotification: Omit<{
|
|
|
565
592
|
} | undefined;
|
|
566
593
|
appearance?: {
|
|
567
594
|
showDescription: boolean;
|
|
568
|
-
allowedVisualizations?: ("grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
595
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
569
596
|
} | undefined;
|
|
570
597
|
tabs?: {
|
|
571
598
|
name: string;
|
|
@@ -634,6 +661,7 @@ declare const SysNotification: Omit<{
|
|
|
634
661
|
} | undefined;
|
|
635
662
|
}> | undefined;
|
|
636
663
|
defaultDetailForm?: string | undefined;
|
|
664
|
+
searchableFields?: string[] | undefined;
|
|
637
665
|
search?: {
|
|
638
666
|
fields: string[];
|
|
639
667
|
displayFields?: string[] | undefined;
|
|
@@ -873,6 +901,25 @@ declare const SysNotification: Omit<{
|
|
|
873
901
|
readonly relatedList?: boolean | undefined;
|
|
874
902
|
readonly relatedListTitle?: string | undefined;
|
|
875
903
|
readonly relatedListColumns?: any[] | undefined;
|
|
904
|
+
readonly displayField?: string | undefined;
|
|
905
|
+
readonly descriptionField?: string | undefined;
|
|
906
|
+
readonly lookupColumns?: (string | {
|
|
907
|
+
field: string;
|
|
908
|
+
label?: string | undefined;
|
|
909
|
+
width?: string | undefined;
|
|
910
|
+
type?: string | undefined;
|
|
911
|
+
})[] | undefined;
|
|
912
|
+
readonly lookupPageSize?: number | undefined;
|
|
913
|
+
readonly lookupFilters?: {
|
|
914
|
+
field: string;
|
|
915
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
916
|
+
value: any;
|
|
917
|
+
}[] | undefined;
|
|
918
|
+
readonly dependsOn?: (string | {
|
|
919
|
+
field: string;
|
|
920
|
+
param?: string | undefined;
|
|
921
|
+
})[] | undefined;
|
|
922
|
+
readonly allowCreate?: boolean | undefined;
|
|
876
923
|
readonly expression?: {
|
|
877
924
|
dialect: "cel" | "js" | "cron" | "template";
|
|
878
925
|
source?: string | undefined;
|
|
@@ -1028,6 +1075,25 @@ declare const SysNotification: Omit<{
|
|
|
1028
1075
|
readonly relatedList?: boolean | undefined;
|
|
1029
1076
|
readonly relatedListTitle?: string | undefined;
|
|
1030
1077
|
readonly relatedListColumns?: any[] | undefined;
|
|
1078
|
+
readonly displayField?: string | undefined;
|
|
1079
|
+
readonly descriptionField?: string | undefined;
|
|
1080
|
+
readonly lookupColumns?: (string | {
|
|
1081
|
+
field: string;
|
|
1082
|
+
label?: string | undefined;
|
|
1083
|
+
width?: string | undefined;
|
|
1084
|
+
type?: string | undefined;
|
|
1085
|
+
})[] | undefined;
|
|
1086
|
+
readonly lookupPageSize?: number | undefined;
|
|
1087
|
+
readonly lookupFilters?: {
|
|
1088
|
+
field: string;
|
|
1089
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1090
|
+
value: any;
|
|
1091
|
+
}[] | undefined;
|
|
1092
|
+
readonly dependsOn?: (string | {
|
|
1093
|
+
field: string;
|
|
1094
|
+
param?: string | undefined;
|
|
1095
|
+
})[] | undefined;
|
|
1096
|
+
readonly allowCreate?: boolean | undefined;
|
|
1031
1097
|
readonly expression?: {
|
|
1032
1098
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1033
1099
|
source?: string | undefined;
|
|
@@ -1183,6 +1249,25 @@ declare const SysNotification: Omit<{
|
|
|
1183
1249
|
readonly relatedList?: boolean | undefined;
|
|
1184
1250
|
readonly relatedListTitle?: string | undefined;
|
|
1185
1251
|
readonly relatedListColumns?: any[] | undefined;
|
|
1252
|
+
readonly displayField?: string | undefined;
|
|
1253
|
+
readonly descriptionField?: string | undefined;
|
|
1254
|
+
readonly lookupColumns?: (string | {
|
|
1255
|
+
field: string;
|
|
1256
|
+
label?: string | undefined;
|
|
1257
|
+
width?: string | undefined;
|
|
1258
|
+
type?: string | undefined;
|
|
1259
|
+
})[] | undefined;
|
|
1260
|
+
readonly lookupPageSize?: number | undefined;
|
|
1261
|
+
readonly lookupFilters?: {
|
|
1262
|
+
field: string;
|
|
1263
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1264
|
+
value: any;
|
|
1265
|
+
}[] | undefined;
|
|
1266
|
+
readonly dependsOn?: (string | {
|
|
1267
|
+
field: string;
|
|
1268
|
+
param?: string | undefined;
|
|
1269
|
+
})[] | undefined;
|
|
1270
|
+
readonly allowCreate?: boolean | undefined;
|
|
1186
1271
|
readonly expression?: {
|
|
1187
1272
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1188
1273
|
source?: string | undefined;
|
|
@@ -1338,6 +1423,25 @@ declare const SysNotification: Omit<{
|
|
|
1338
1423
|
readonly relatedList?: boolean | undefined;
|
|
1339
1424
|
readonly relatedListTitle?: string | undefined;
|
|
1340
1425
|
readonly relatedListColumns?: any[] | undefined;
|
|
1426
|
+
readonly displayField?: string | undefined;
|
|
1427
|
+
readonly descriptionField?: string | undefined;
|
|
1428
|
+
readonly lookupColumns?: (string | {
|
|
1429
|
+
field: string;
|
|
1430
|
+
label?: string | undefined;
|
|
1431
|
+
width?: string | undefined;
|
|
1432
|
+
type?: string | undefined;
|
|
1433
|
+
})[] | undefined;
|
|
1434
|
+
readonly lookupPageSize?: number | undefined;
|
|
1435
|
+
readonly lookupFilters?: {
|
|
1436
|
+
field: string;
|
|
1437
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1438
|
+
value: any;
|
|
1439
|
+
}[] | undefined;
|
|
1440
|
+
readonly dependsOn?: (string | {
|
|
1441
|
+
field: string;
|
|
1442
|
+
param?: string | undefined;
|
|
1443
|
+
})[] | undefined;
|
|
1444
|
+
readonly allowCreate?: boolean | undefined;
|
|
1341
1445
|
readonly expression?: {
|
|
1342
1446
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1343
1447
|
source?: string | undefined;
|
|
@@ -1493,6 +1597,25 @@ declare const SysNotification: Omit<{
|
|
|
1493
1597
|
readonly relatedList?: boolean | undefined;
|
|
1494
1598
|
readonly relatedListTitle?: string | undefined;
|
|
1495
1599
|
readonly relatedListColumns?: any[] | undefined;
|
|
1600
|
+
readonly displayField?: string | undefined;
|
|
1601
|
+
readonly descriptionField?: string | undefined;
|
|
1602
|
+
readonly lookupColumns?: (string | {
|
|
1603
|
+
field: string;
|
|
1604
|
+
label?: string | undefined;
|
|
1605
|
+
width?: string | undefined;
|
|
1606
|
+
type?: string | undefined;
|
|
1607
|
+
})[] | undefined;
|
|
1608
|
+
readonly lookupPageSize?: number | undefined;
|
|
1609
|
+
readonly lookupFilters?: {
|
|
1610
|
+
field: string;
|
|
1611
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1612
|
+
value: any;
|
|
1613
|
+
}[] | undefined;
|
|
1614
|
+
readonly dependsOn?: (string | {
|
|
1615
|
+
field: string;
|
|
1616
|
+
param?: string | undefined;
|
|
1617
|
+
})[] | undefined;
|
|
1618
|
+
readonly allowCreate?: boolean | undefined;
|
|
1496
1619
|
readonly expression?: {
|
|
1497
1620
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1498
1621
|
source?: string | undefined;
|
|
@@ -1648,6 +1771,25 @@ declare const SysNotification: Omit<{
|
|
|
1648
1771
|
readonly relatedList?: boolean | undefined;
|
|
1649
1772
|
readonly relatedListTitle?: string | undefined;
|
|
1650
1773
|
readonly relatedListColumns?: any[] | undefined;
|
|
1774
|
+
readonly displayField?: string | undefined;
|
|
1775
|
+
readonly descriptionField?: string | undefined;
|
|
1776
|
+
readonly lookupColumns?: (string | {
|
|
1777
|
+
field: string;
|
|
1778
|
+
label?: string | undefined;
|
|
1779
|
+
width?: string | undefined;
|
|
1780
|
+
type?: string | undefined;
|
|
1781
|
+
})[] | undefined;
|
|
1782
|
+
readonly lookupPageSize?: number | undefined;
|
|
1783
|
+
readonly lookupFilters?: {
|
|
1784
|
+
field: string;
|
|
1785
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1786
|
+
value: any;
|
|
1787
|
+
}[] | undefined;
|
|
1788
|
+
readonly dependsOn?: (string | {
|
|
1789
|
+
field: string;
|
|
1790
|
+
param?: string | undefined;
|
|
1791
|
+
})[] | undefined;
|
|
1792
|
+
readonly allowCreate?: boolean | undefined;
|
|
1651
1793
|
readonly expression?: {
|
|
1652
1794
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1653
1795
|
source?: string | undefined;
|
|
@@ -1803,6 +1945,25 @@ declare const SysNotification: Omit<{
|
|
|
1803
1945
|
readonly relatedList?: boolean | undefined;
|
|
1804
1946
|
readonly relatedListTitle?: string | undefined;
|
|
1805
1947
|
readonly relatedListColumns?: any[] | undefined;
|
|
1948
|
+
readonly displayField?: string | undefined;
|
|
1949
|
+
readonly descriptionField?: string | undefined;
|
|
1950
|
+
readonly lookupColumns?: (string | {
|
|
1951
|
+
field: string;
|
|
1952
|
+
label?: string | undefined;
|
|
1953
|
+
width?: string | undefined;
|
|
1954
|
+
type?: string | undefined;
|
|
1955
|
+
})[] | undefined;
|
|
1956
|
+
readonly lookupPageSize?: number | undefined;
|
|
1957
|
+
readonly lookupFilters?: {
|
|
1958
|
+
field: string;
|
|
1959
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1960
|
+
value: any;
|
|
1961
|
+
}[] | undefined;
|
|
1962
|
+
readonly dependsOn?: (string | {
|
|
1963
|
+
field: string;
|
|
1964
|
+
param?: string | undefined;
|
|
1965
|
+
})[] | undefined;
|
|
1966
|
+
readonly allowCreate?: boolean | undefined;
|
|
1806
1967
|
readonly expression?: {
|
|
1807
1968
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1808
1969
|
source?: string | undefined;
|
|
@@ -1958,6 +2119,25 @@ declare const SysNotification: Omit<{
|
|
|
1958
2119
|
readonly relatedList?: boolean | undefined;
|
|
1959
2120
|
readonly relatedListTitle?: string | undefined;
|
|
1960
2121
|
readonly relatedListColumns?: any[] | undefined;
|
|
2122
|
+
readonly displayField?: string | undefined;
|
|
2123
|
+
readonly descriptionField?: string | undefined;
|
|
2124
|
+
readonly lookupColumns?: (string | {
|
|
2125
|
+
field: string;
|
|
2126
|
+
label?: string | undefined;
|
|
2127
|
+
width?: string | undefined;
|
|
2128
|
+
type?: string | undefined;
|
|
2129
|
+
})[] | undefined;
|
|
2130
|
+
readonly lookupPageSize?: number | undefined;
|
|
2131
|
+
readonly lookupFilters?: {
|
|
2132
|
+
field: string;
|
|
2133
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
2134
|
+
value: any;
|
|
2135
|
+
}[] | undefined;
|
|
2136
|
+
readonly dependsOn?: (string | {
|
|
2137
|
+
field: string;
|
|
2138
|
+
param?: string | undefined;
|
|
2139
|
+
})[] | undefined;
|
|
2140
|
+
readonly allowCreate?: boolean | undefined;
|
|
1961
2141
|
readonly expression?: {
|
|
1962
2142
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1963
2143
|
source?: string | undefined;
|
|
@@ -2113,6 +2293,25 @@ declare const SysNotification: Omit<{
|
|
|
2113
2293
|
readonly relatedList?: boolean | undefined;
|
|
2114
2294
|
readonly relatedListTitle?: string | undefined;
|
|
2115
2295
|
readonly relatedListColumns?: any[] | undefined;
|
|
2296
|
+
readonly displayField?: string | undefined;
|
|
2297
|
+
readonly descriptionField?: string | undefined;
|
|
2298
|
+
readonly lookupColumns?: (string | {
|
|
2299
|
+
field: string;
|
|
2300
|
+
label?: string | undefined;
|
|
2301
|
+
width?: string | undefined;
|
|
2302
|
+
type?: string | undefined;
|
|
2303
|
+
})[] | undefined;
|
|
2304
|
+
readonly lookupPageSize?: number | undefined;
|
|
2305
|
+
readonly lookupFilters?: {
|
|
2306
|
+
field: string;
|
|
2307
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
2308
|
+
value: any;
|
|
2309
|
+
}[] | undefined;
|
|
2310
|
+
readonly dependsOn?: (string | {
|
|
2311
|
+
field: string;
|
|
2312
|
+
param?: string | undefined;
|
|
2313
|
+
})[] | undefined;
|
|
2314
|
+
readonly allowCreate?: boolean | undefined;
|
|
2116
2315
|
readonly expression?: {
|
|
2117
2316
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2118
2317
|
source?: string | undefined;
|
|
@@ -2304,6 +2503,25 @@ declare const SysAttachment: Omit<{
|
|
|
2304
2503
|
relatedList?: boolean | undefined;
|
|
2305
2504
|
relatedListTitle?: string | undefined;
|
|
2306
2505
|
relatedListColumns?: any[] | undefined;
|
|
2506
|
+
displayField?: string | undefined;
|
|
2507
|
+
descriptionField?: string | undefined;
|
|
2508
|
+
lookupColumns?: (string | {
|
|
2509
|
+
field: string;
|
|
2510
|
+
label?: string | undefined;
|
|
2511
|
+
width?: string | undefined;
|
|
2512
|
+
type?: string | undefined;
|
|
2513
|
+
})[] | undefined;
|
|
2514
|
+
lookupPageSize?: number | undefined;
|
|
2515
|
+
lookupFilters?: {
|
|
2516
|
+
field: string;
|
|
2517
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
2518
|
+
value: any;
|
|
2519
|
+
}[] | undefined;
|
|
2520
|
+
dependsOn?: (string | {
|
|
2521
|
+
field: string;
|
|
2522
|
+
param?: string | undefined;
|
|
2523
|
+
})[] | undefined;
|
|
2524
|
+
allowCreate?: boolean | undefined;
|
|
2307
2525
|
expression?: {
|
|
2308
2526
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2309
2527
|
source?: string | undefined;
|
|
@@ -2579,7 +2797,7 @@ declare const SysAttachment: Omit<{
|
|
|
2579
2797
|
} | undefined;
|
|
2580
2798
|
compactLayout?: string[] | undefined;
|
|
2581
2799
|
listViews?: Record<string, {
|
|
2582
|
-
type: "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
2800
|
+
type: "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
2583
2801
|
columns: string[] | {
|
|
2584
2802
|
field: string;
|
|
2585
2803
|
label?: string | undefined;
|
|
@@ -2696,6 +2914,7 @@ declare const SysAttachment: Omit<{
|
|
|
2696
2914
|
colorField?: string | undefined;
|
|
2697
2915
|
} | undefined;
|
|
2698
2916
|
gantt?: {
|
|
2917
|
+
[x: string]: unknown;
|
|
2699
2918
|
startDateField: string;
|
|
2700
2919
|
endDateField: string;
|
|
2701
2920
|
titleField: string;
|
|
@@ -2746,6 +2965,13 @@ declare const SysAttachment: Omit<{
|
|
|
2746
2965
|
values: string[];
|
|
2747
2966
|
dimensions?: string[] | undefined;
|
|
2748
2967
|
} | undefined;
|
|
2968
|
+
tree?: {
|
|
2969
|
+
[x: string]: unknown;
|
|
2970
|
+
parentField?: string | undefined;
|
|
2971
|
+
labelField?: string | undefined;
|
|
2972
|
+
fields?: string[] | undefined;
|
|
2973
|
+
defaultExpandedDepth?: number | undefined;
|
|
2974
|
+
} | undefined;
|
|
2749
2975
|
description?: string | undefined;
|
|
2750
2976
|
sharing?: {
|
|
2751
2977
|
type: "personal" | "collaborative";
|
|
@@ -2801,7 +3027,7 @@ declare const SysAttachment: Omit<{
|
|
|
2801
3027
|
} | undefined;
|
|
2802
3028
|
appearance?: {
|
|
2803
3029
|
showDescription: boolean;
|
|
2804
|
-
allowedVisualizations?: ("grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
3030
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
2805
3031
|
} | undefined;
|
|
2806
3032
|
tabs?: {
|
|
2807
3033
|
name: string;
|
|
@@ -2870,6 +3096,7 @@ declare const SysAttachment: Omit<{
|
|
|
2870
3096
|
} | undefined;
|
|
2871
3097
|
}> | undefined;
|
|
2872
3098
|
defaultDetailForm?: string | undefined;
|
|
3099
|
+
searchableFields?: string[] | undefined;
|
|
2873
3100
|
search?: {
|
|
2874
3101
|
fields: string[];
|
|
2875
3102
|
displayFields?: string[] | undefined;
|
|
@@ -3061,6 +3288,25 @@ declare const SysAttachment: Omit<{
|
|
|
3061
3288
|
readonly relatedList?: boolean | undefined;
|
|
3062
3289
|
readonly relatedListTitle?: string | undefined;
|
|
3063
3290
|
readonly relatedListColumns?: any[] | undefined;
|
|
3291
|
+
readonly displayField?: string | undefined;
|
|
3292
|
+
readonly descriptionField?: string | undefined;
|
|
3293
|
+
readonly lookupColumns?: (string | {
|
|
3294
|
+
field: string;
|
|
3295
|
+
label?: string | undefined;
|
|
3296
|
+
width?: string | undefined;
|
|
3297
|
+
type?: string | undefined;
|
|
3298
|
+
})[] | undefined;
|
|
3299
|
+
readonly lookupPageSize?: number | undefined;
|
|
3300
|
+
readonly lookupFilters?: {
|
|
3301
|
+
field: string;
|
|
3302
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
3303
|
+
value: any;
|
|
3304
|
+
}[] | undefined;
|
|
3305
|
+
readonly dependsOn?: (string | {
|
|
3306
|
+
field: string;
|
|
3307
|
+
param?: string | undefined;
|
|
3308
|
+
})[] | undefined;
|
|
3309
|
+
readonly allowCreate?: boolean | undefined;
|
|
3064
3310
|
readonly expression?: {
|
|
3065
3311
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3066
3312
|
source?: string | undefined;
|
|
@@ -3216,6 +3462,25 @@ declare const SysAttachment: Omit<{
|
|
|
3216
3462
|
readonly relatedList?: boolean | undefined;
|
|
3217
3463
|
readonly relatedListTitle?: string | undefined;
|
|
3218
3464
|
readonly relatedListColumns?: any[] | undefined;
|
|
3465
|
+
readonly displayField?: string | undefined;
|
|
3466
|
+
readonly descriptionField?: string | undefined;
|
|
3467
|
+
readonly lookupColumns?: (string | {
|
|
3468
|
+
field: string;
|
|
3469
|
+
label?: string | undefined;
|
|
3470
|
+
width?: string | undefined;
|
|
3471
|
+
type?: string | undefined;
|
|
3472
|
+
})[] | undefined;
|
|
3473
|
+
readonly lookupPageSize?: number | undefined;
|
|
3474
|
+
readonly lookupFilters?: {
|
|
3475
|
+
field: string;
|
|
3476
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
3477
|
+
value: any;
|
|
3478
|
+
}[] | undefined;
|
|
3479
|
+
readonly dependsOn?: (string | {
|
|
3480
|
+
field: string;
|
|
3481
|
+
param?: string | undefined;
|
|
3482
|
+
})[] | undefined;
|
|
3483
|
+
readonly allowCreate?: boolean | undefined;
|
|
3219
3484
|
readonly expression?: {
|
|
3220
3485
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3221
3486
|
source?: string | undefined;
|
|
@@ -3371,6 +3636,25 @@ declare const SysAttachment: Omit<{
|
|
|
3371
3636
|
readonly relatedList?: boolean | undefined;
|
|
3372
3637
|
readonly relatedListTitle?: string | undefined;
|
|
3373
3638
|
readonly relatedListColumns?: any[] | undefined;
|
|
3639
|
+
readonly displayField?: string | undefined;
|
|
3640
|
+
readonly descriptionField?: string | undefined;
|
|
3641
|
+
readonly lookupColumns?: (string | {
|
|
3642
|
+
field: string;
|
|
3643
|
+
label?: string | undefined;
|
|
3644
|
+
width?: string | undefined;
|
|
3645
|
+
type?: string | undefined;
|
|
3646
|
+
})[] | undefined;
|
|
3647
|
+
readonly lookupPageSize?: number | undefined;
|
|
3648
|
+
readonly lookupFilters?: {
|
|
3649
|
+
field: string;
|
|
3650
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
3651
|
+
value: any;
|
|
3652
|
+
}[] | undefined;
|
|
3653
|
+
readonly dependsOn?: (string | {
|
|
3654
|
+
field: string;
|
|
3655
|
+
param?: string | undefined;
|
|
3656
|
+
})[] | undefined;
|
|
3657
|
+
readonly allowCreate?: boolean | undefined;
|
|
3374
3658
|
readonly expression?: {
|
|
3375
3659
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3376
3660
|
source?: string | undefined;
|
|
@@ -3526,6 +3810,25 @@ declare const SysAttachment: Omit<{
|
|
|
3526
3810
|
readonly relatedList?: boolean | undefined;
|
|
3527
3811
|
readonly relatedListTitle?: string | undefined;
|
|
3528
3812
|
readonly relatedListColumns?: any[] | undefined;
|
|
3813
|
+
readonly displayField?: string | undefined;
|
|
3814
|
+
readonly descriptionField?: string | undefined;
|
|
3815
|
+
readonly lookupColumns?: (string | {
|
|
3816
|
+
field: string;
|
|
3817
|
+
label?: string | undefined;
|
|
3818
|
+
width?: string | undefined;
|
|
3819
|
+
type?: string | undefined;
|
|
3820
|
+
})[] | undefined;
|
|
3821
|
+
readonly lookupPageSize?: number | undefined;
|
|
3822
|
+
readonly lookupFilters?: {
|
|
3823
|
+
field: string;
|
|
3824
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
3825
|
+
value: any;
|
|
3826
|
+
}[] | undefined;
|
|
3827
|
+
readonly dependsOn?: (string | {
|
|
3828
|
+
field: string;
|
|
3829
|
+
param?: string | undefined;
|
|
3830
|
+
})[] | undefined;
|
|
3831
|
+
readonly allowCreate?: boolean | undefined;
|
|
3529
3832
|
readonly expression?: {
|
|
3530
3833
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3531
3834
|
source?: string | undefined;
|
|
@@ -3681,6 +3984,25 @@ declare const SysAttachment: Omit<{
|
|
|
3681
3984
|
readonly relatedList?: boolean | undefined;
|
|
3682
3985
|
readonly relatedListTitle?: string | undefined;
|
|
3683
3986
|
readonly relatedListColumns?: any[] | undefined;
|
|
3987
|
+
readonly displayField?: string | undefined;
|
|
3988
|
+
readonly descriptionField?: string | undefined;
|
|
3989
|
+
readonly lookupColumns?: (string | {
|
|
3990
|
+
field: string;
|
|
3991
|
+
label?: string | undefined;
|
|
3992
|
+
width?: string | undefined;
|
|
3993
|
+
type?: string | undefined;
|
|
3994
|
+
})[] | undefined;
|
|
3995
|
+
readonly lookupPageSize?: number | undefined;
|
|
3996
|
+
readonly lookupFilters?: {
|
|
3997
|
+
field: string;
|
|
3998
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
3999
|
+
value: any;
|
|
4000
|
+
}[] | undefined;
|
|
4001
|
+
readonly dependsOn?: (string | {
|
|
4002
|
+
field: string;
|
|
4003
|
+
param?: string | undefined;
|
|
4004
|
+
})[] | undefined;
|
|
4005
|
+
readonly allowCreate?: boolean | undefined;
|
|
3684
4006
|
readonly expression?: {
|
|
3685
4007
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3686
4008
|
source?: string | undefined;
|
|
@@ -3836,6 +4158,25 @@ declare const SysAttachment: Omit<{
|
|
|
3836
4158
|
readonly relatedList?: boolean | undefined;
|
|
3837
4159
|
readonly relatedListTitle?: string | undefined;
|
|
3838
4160
|
readonly relatedListColumns?: any[] | undefined;
|
|
4161
|
+
readonly displayField?: string | undefined;
|
|
4162
|
+
readonly descriptionField?: string | undefined;
|
|
4163
|
+
readonly lookupColumns?: (string | {
|
|
4164
|
+
field: string;
|
|
4165
|
+
label?: string | undefined;
|
|
4166
|
+
width?: string | undefined;
|
|
4167
|
+
type?: string | undefined;
|
|
4168
|
+
})[] | undefined;
|
|
4169
|
+
readonly lookupPageSize?: number | undefined;
|
|
4170
|
+
readonly lookupFilters?: {
|
|
4171
|
+
field: string;
|
|
4172
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
4173
|
+
value: any;
|
|
4174
|
+
}[] | undefined;
|
|
4175
|
+
readonly dependsOn?: (string | {
|
|
4176
|
+
field: string;
|
|
4177
|
+
param?: string | undefined;
|
|
4178
|
+
})[] | undefined;
|
|
4179
|
+
readonly allowCreate?: boolean | undefined;
|
|
3839
4180
|
readonly expression?: {
|
|
3840
4181
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3841
4182
|
source?: string | undefined;
|
|
@@ -3991,6 +4332,25 @@ declare const SysAttachment: Omit<{
|
|
|
3991
4332
|
readonly relatedList?: boolean | undefined;
|
|
3992
4333
|
readonly relatedListTitle?: string | undefined;
|
|
3993
4334
|
readonly relatedListColumns?: any[] | undefined;
|
|
4335
|
+
readonly displayField?: string | undefined;
|
|
4336
|
+
readonly descriptionField?: string | undefined;
|
|
4337
|
+
readonly lookupColumns?: (string | {
|
|
4338
|
+
field: string;
|
|
4339
|
+
label?: string | undefined;
|
|
4340
|
+
width?: string | undefined;
|
|
4341
|
+
type?: string | undefined;
|
|
4342
|
+
})[] | undefined;
|
|
4343
|
+
readonly lookupPageSize?: number | undefined;
|
|
4344
|
+
readonly lookupFilters?: {
|
|
4345
|
+
field: string;
|
|
4346
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
4347
|
+
value: any;
|
|
4348
|
+
}[] | undefined;
|
|
4349
|
+
readonly dependsOn?: (string | {
|
|
4350
|
+
field: string;
|
|
4351
|
+
param?: string | undefined;
|
|
4352
|
+
})[] | undefined;
|
|
4353
|
+
readonly allowCreate?: boolean | undefined;
|
|
3994
4354
|
readonly expression?: {
|
|
3995
4355
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3996
4356
|
source?: string | undefined;
|
|
@@ -4146,6 +4506,25 @@ declare const SysAttachment: Omit<{
|
|
|
4146
4506
|
readonly relatedList?: boolean | undefined;
|
|
4147
4507
|
readonly relatedListTitle?: string | undefined;
|
|
4148
4508
|
readonly relatedListColumns?: any[] | undefined;
|
|
4509
|
+
readonly displayField?: string | undefined;
|
|
4510
|
+
readonly descriptionField?: string | undefined;
|
|
4511
|
+
readonly lookupColumns?: (string | {
|
|
4512
|
+
field: string;
|
|
4513
|
+
label?: string | undefined;
|
|
4514
|
+
width?: string | undefined;
|
|
4515
|
+
type?: string | undefined;
|
|
4516
|
+
})[] | undefined;
|
|
4517
|
+
readonly lookupPageSize?: number | undefined;
|
|
4518
|
+
readonly lookupFilters?: {
|
|
4519
|
+
field: string;
|
|
4520
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
4521
|
+
value: any;
|
|
4522
|
+
}[] | undefined;
|
|
4523
|
+
readonly dependsOn?: (string | {
|
|
4524
|
+
field: string;
|
|
4525
|
+
param?: string | undefined;
|
|
4526
|
+
})[] | undefined;
|
|
4527
|
+
readonly allowCreate?: boolean | undefined;
|
|
4149
4528
|
readonly expression?: {
|
|
4150
4529
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4151
4530
|
source?: string | undefined;
|
|
@@ -4301,6 +4680,25 @@ declare const SysAttachment: Omit<{
|
|
|
4301
4680
|
readonly relatedList?: boolean | undefined;
|
|
4302
4681
|
readonly relatedListTitle?: string | undefined;
|
|
4303
4682
|
readonly relatedListColumns?: any[] | undefined;
|
|
4683
|
+
readonly displayField?: string | undefined;
|
|
4684
|
+
readonly descriptionField?: string | undefined;
|
|
4685
|
+
readonly lookupColumns?: (string | {
|
|
4686
|
+
field: string;
|
|
4687
|
+
label?: string | undefined;
|
|
4688
|
+
width?: string | undefined;
|
|
4689
|
+
type?: string | undefined;
|
|
4690
|
+
})[] | undefined;
|
|
4691
|
+
readonly lookupPageSize?: number | undefined;
|
|
4692
|
+
readonly lookupFilters?: {
|
|
4693
|
+
field: string;
|
|
4694
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
4695
|
+
value: any;
|
|
4696
|
+
}[] | undefined;
|
|
4697
|
+
readonly dependsOn?: (string | {
|
|
4698
|
+
field: string;
|
|
4699
|
+
param?: string | undefined;
|
|
4700
|
+
})[] | undefined;
|
|
4701
|
+
readonly allowCreate?: boolean | undefined;
|
|
4304
4702
|
readonly expression?: {
|
|
4305
4703
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4306
4704
|
source?: string | undefined;
|
|
@@ -4456,6 +4854,25 @@ declare const SysAttachment: Omit<{
|
|
|
4456
4854
|
readonly relatedList?: boolean | undefined;
|
|
4457
4855
|
readonly relatedListTitle?: string | undefined;
|
|
4458
4856
|
readonly relatedListColumns?: any[] | undefined;
|
|
4857
|
+
readonly displayField?: string | undefined;
|
|
4858
|
+
readonly descriptionField?: string | undefined;
|
|
4859
|
+
readonly lookupColumns?: (string | {
|
|
4860
|
+
field: string;
|
|
4861
|
+
label?: string | undefined;
|
|
4862
|
+
width?: string | undefined;
|
|
4863
|
+
type?: string | undefined;
|
|
4864
|
+
})[] | undefined;
|
|
4865
|
+
readonly lookupPageSize?: number | undefined;
|
|
4866
|
+
readonly lookupFilters?: {
|
|
4867
|
+
field: string;
|
|
4868
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
4869
|
+
value: any;
|
|
4870
|
+
}[] | undefined;
|
|
4871
|
+
readonly dependsOn?: (string | {
|
|
4872
|
+
field: string;
|
|
4873
|
+
param?: string | undefined;
|
|
4874
|
+
})[] | undefined;
|
|
4875
|
+
readonly allowCreate?: boolean | undefined;
|
|
4459
4876
|
readonly expression?: {
|
|
4460
4877
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4461
4878
|
source?: string | undefined;
|
|
@@ -4611,6 +5028,25 @@ declare const SysAttachment: Omit<{
|
|
|
4611
5028
|
readonly relatedList?: boolean | undefined;
|
|
4612
5029
|
readonly relatedListTitle?: string | undefined;
|
|
4613
5030
|
readonly relatedListColumns?: any[] | undefined;
|
|
5031
|
+
readonly displayField?: string | undefined;
|
|
5032
|
+
readonly descriptionField?: string | undefined;
|
|
5033
|
+
readonly lookupColumns?: (string | {
|
|
5034
|
+
field: string;
|
|
5035
|
+
label?: string | undefined;
|
|
5036
|
+
width?: string | undefined;
|
|
5037
|
+
type?: string | undefined;
|
|
5038
|
+
})[] | undefined;
|
|
5039
|
+
readonly lookupPageSize?: number | undefined;
|
|
5040
|
+
readonly lookupFilters?: {
|
|
5041
|
+
field: string;
|
|
5042
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
5043
|
+
value: any;
|
|
5044
|
+
}[] | undefined;
|
|
5045
|
+
readonly dependsOn?: (string | {
|
|
5046
|
+
field: string;
|
|
5047
|
+
param?: string | undefined;
|
|
5048
|
+
})[] | undefined;
|
|
5049
|
+
readonly allowCreate?: boolean | undefined;
|
|
4614
5050
|
readonly expression?: {
|
|
4615
5051
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4616
5052
|
source?: string | undefined;
|
|
@@ -4766,6 +5202,25 @@ declare const SysAttachment: Omit<{
|
|
|
4766
5202
|
readonly relatedList?: boolean | undefined;
|
|
4767
5203
|
readonly relatedListTitle?: string | undefined;
|
|
4768
5204
|
readonly relatedListColumns?: any[] | undefined;
|
|
5205
|
+
readonly displayField?: string | undefined;
|
|
5206
|
+
readonly descriptionField?: string | undefined;
|
|
5207
|
+
readonly lookupColumns?: (string | {
|
|
5208
|
+
field: string;
|
|
5209
|
+
label?: string | undefined;
|
|
5210
|
+
width?: string | undefined;
|
|
5211
|
+
type?: string | undefined;
|
|
5212
|
+
})[] | undefined;
|
|
5213
|
+
readonly lookupPageSize?: number | undefined;
|
|
5214
|
+
readonly lookupFilters?: {
|
|
5215
|
+
field: string;
|
|
5216
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
5217
|
+
value: any;
|
|
5218
|
+
}[] | undefined;
|
|
5219
|
+
readonly dependsOn?: (string | {
|
|
5220
|
+
field: string;
|
|
5221
|
+
param?: string | undefined;
|
|
5222
|
+
})[] | undefined;
|
|
5223
|
+
readonly allowCreate?: boolean | undefined;
|
|
4769
5224
|
readonly expression?: {
|
|
4770
5225
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4771
5226
|
source?: string | undefined;
|
|
@@ -4921,6 +5376,25 @@ declare const SysAttachment: Omit<{
|
|
|
4921
5376
|
readonly relatedList?: boolean | undefined;
|
|
4922
5377
|
readonly relatedListTitle?: string | undefined;
|
|
4923
5378
|
readonly relatedListColumns?: any[] | undefined;
|
|
5379
|
+
readonly displayField?: string | undefined;
|
|
5380
|
+
readonly descriptionField?: string | undefined;
|
|
5381
|
+
readonly lookupColumns?: (string | {
|
|
5382
|
+
field: string;
|
|
5383
|
+
label?: string | undefined;
|
|
5384
|
+
width?: string | undefined;
|
|
5385
|
+
type?: string | undefined;
|
|
5386
|
+
})[] | undefined;
|
|
5387
|
+
readonly lookupPageSize?: number | undefined;
|
|
5388
|
+
readonly lookupFilters?: {
|
|
5389
|
+
field: string;
|
|
5390
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
5391
|
+
value: any;
|
|
5392
|
+
}[] | undefined;
|
|
5393
|
+
readonly dependsOn?: (string | {
|
|
5394
|
+
field: string;
|
|
5395
|
+
param?: string | undefined;
|
|
5396
|
+
})[] | undefined;
|
|
5397
|
+
readonly allowCreate?: boolean | undefined;
|
|
4924
5398
|
readonly expression?: {
|
|
4925
5399
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4926
5400
|
source?: string | undefined;
|
|
@@ -5115,6 +5589,25 @@ declare const SysEmail: Omit<{
|
|
|
5115
5589
|
relatedList?: boolean | undefined;
|
|
5116
5590
|
relatedListTitle?: string | undefined;
|
|
5117
5591
|
relatedListColumns?: any[] | undefined;
|
|
5592
|
+
displayField?: string | undefined;
|
|
5593
|
+
descriptionField?: string | undefined;
|
|
5594
|
+
lookupColumns?: (string | {
|
|
5595
|
+
field: string;
|
|
5596
|
+
label?: string | undefined;
|
|
5597
|
+
width?: string | undefined;
|
|
5598
|
+
type?: string | undefined;
|
|
5599
|
+
})[] | undefined;
|
|
5600
|
+
lookupPageSize?: number | undefined;
|
|
5601
|
+
lookupFilters?: {
|
|
5602
|
+
field: string;
|
|
5603
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
5604
|
+
value: any;
|
|
5605
|
+
}[] | undefined;
|
|
5606
|
+
dependsOn?: (string | {
|
|
5607
|
+
field: string;
|
|
5608
|
+
param?: string | undefined;
|
|
5609
|
+
})[] | undefined;
|
|
5610
|
+
allowCreate?: boolean | undefined;
|
|
5118
5611
|
expression?: {
|
|
5119
5612
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5120
5613
|
source?: string | undefined;
|
|
@@ -5390,7 +5883,7 @@ declare const SysEmail: Omit<{
|
|
|
5390
5883
|
} | undefined;
|
|
5391
5884
|
compactLayout?: string[] | undefined;
|
|
5392
5885
|
listViews?: Record<string, {
|
|
5393
|
-
type: "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
5886
|
+
type: "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
5394
5887
|
columns: string[] | {
|
|
5395
5888
|
field: string;
|
|
5396
5889
|
label?: string | undefined;
|
|
@@ -5507,6 +6000,7 @@ declare const SysEmail: Omit<{
|
|
|
5507
6000
|
colorField?: string | undefined;
|
|
5508
6001
|
} | undefined;
|
|
5509
6002
|
gantt?: {
|
|
6003
|
+
[x: string]: unknown;
|
|
5510
6004
|
startDateField: string;
|
|
5511
6005
|
endDateField: string;
|
|
5512
6006
|
titleField: string;
|
|
@@ -5557,6 +6051,13 @@ declare const SysEmail: Omit<{
|
|
|
5557
6051
|
values: string[];
|
|
5558
6052
|
dimensions?: string[] | undefined;
|
|
5559
6053
|
} | undefined;
|
|
6054
|
+
tree?: {
|
|
6055
|
+
[x: string]: unknown;
|
|
6056
|
+
parentField?: string | undefined;
|
|
6057
|
+
labelField?: string | undefined;
|
|
6058
|
+
fields?: string[] | undefined;
|
|
6059
|
+
defaultExpandedDepth?: number | undefined;
|
|
6060
|
+
} | undefined;
|
|
5560
6061
|
description?: string | undefined;
|
|
5561
6062
|
sharing?: {
|
|
5562
6063
|
type: "personal" | "collaborative";
|
|
@@ -5612,7 +6113,7 @@ declare const SysEmail: Omit<{
|
|
|
5612
6113
|
} | undefined;
|
|
5613
6114
|
appearance?: {
|
|
5614
6115
|
showDescription: boolean;
|
|
5615
|
-
allowedVisualizations?: ("grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
6116
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
5616
6117
|
} | undefined;
|
|
5617
6118
|
tabs?: {
|
|
5618
6119
|
name: string;
|
|
@@ -5681,6 +6182,7 @@ declare const SysEmail: Omit<{
|
|
|
5681
6182
|
} | undefined;
|
|
5682
6183
|
}> | undefined;
|
|
5683
6184
|
defaultDetailForm?: string | undefined;
|
|
6185
|
+
searchableFields?: string[] | undefined;
|
|
5684
6186
|
search?: {
|
|
5685
6187
|
fields: string[];
|
|
5686
6188
|
displayFields?: string[] | undefined;
|
|
@@ -5873,6 +6375,25 @@ declare const SysEmail: Omit<{
|
|
|
5873
6375
|
readonly relatedList?: boolean | undefined;
|
|
5874
6376
|
readonly relatedListTitle?: string | undefined;
|
|
5875
6377
|
readonly relatedListColumns?: any[] | undefined;
|
|
6378
|
+
readonly displayField?: string | undefined;
|
|
6379
|
+
readonly descriptionField?: string | undefined;
|
|
6380
|
+
readonly lookupColumns?: (string | {
|
|
6381
|
+
field: string;
|
|
6382
|
+
label?: string | undefined;
|
|
6383
|
+
width?: string | undefined;
|
|
6384
|
+
type?: string | undefined;
|
|
6385
|
+
})[] | undefined;
|
|
6386
|
+
readonly lookupPageSize?: number | undefined;
|
|
6387
|
+
readonly lookupFilters?: {
|
|
6388
|
+
field: string;
|
|
6389
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
6390
|
+
value: any;
|
|
6391
|
+
}[] | undefined;
|
|
6392
|
+
readonly dependsOn?: (string | {
|
|
6393
|
+
field: string;
|
|
6394
|
+
param?: string | undefined;
|
|
6395
|
+
})[] | undefined;
|
|
6396
|
+
readonly allowCreate?: boolean | undefined;
|
|
5876
6397
|
readonly expression?: {
|
|
5877
6398
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5878
6399
|
source?: string | undefined;
|
|
@@ -6028,6 +6549,25 @@ declare const SysEmail: Omit<{
|
|
|
6028
6549
|
readonly relatedList?: boolean | undefined;
|
|
6029
6550
|
readonly relatedListTitle?: string | undefined;
|
|
6030
6551
|
readonly relatedListColumns?: any[] | undefined;
|
|
6552
|
+
readonly displayField?: string | undefined;
|
|
6553
|
+
readonly descriptionField?: string | undefined;
|
|
6554
|
+
readonly lookupColumns?: (string | {
|
|
6555
|
+
field: string;
|
|
6556
|
+
label?: string | undefined;
|
|
6557
|
+
width?: string | undefined;
|
|
6558
|
+
type?: string | undefined;
|
|
6559
|
+
})[] | undefined;
|
|
6560
|
+
readonly lookupPageSize?: number | undefined;
|
|
6561
|
+
readonly lookupFilters?: {
|
|
6562
|
+
field: string;
|
|
6563
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
6564
|
+
value: any;
|
|
6565
|
+
}[] | undefined;
|
|
6566
|
+
readonly dependsOn?: (string | {
|
|
6567
|
+
field: string;
|
|
6568
|
+
param?: string | undefined;
|
|
6569
|
+
})[] | undefined;
|
|
6570
|
+
readonly allowCreate?: boolean | undefined;
|
|
6031
6571
|
readonly expression?: {
|
|
6032
6572
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6033
6573
|
source?: string | undefined;
|
|
@@ -6183,6 +6723,25 @@ declare const SysEmail: Omit<{
|
|
|
6183
6723
|
readonly relatedList?: boolean | undefined;
|
|
6184
6724
|
readonly relatedListTitle?: string | undefined;
|
|
6185
6725
|
readonly relatedListColumns?: any[] | undefined;
|
|
6726
|
+
readonly displayField?: string | undefined;
|
|
6727
|
+
readonly descriptionField?: string | undefined;
|
|
6728
|
+
readonly lookupColumns?: (string | {
|
|
6729
|
+
field: string;
|
|
6730
|
+
label?: string | undefined;
|
|
6731
|
+
width?: string | undefined;
|
|
6732
|
+
type?: string | undefined;
|
|
6733
|
+
})[] | undefined;
|
|
6734
|
+
readonly lookupPageSize?: number | undefined;
|
|
6735
|
+
readonly lookupFilters?: {
|
|
6736
|
+
field: string;
|
|
6737
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
6738
|
+
value: any;
|
|
6739
|
+
}[] | undefined;
|
|
6740
|
+
readonly dependsOn?: (string | {
|
|
6741
|
+
field: string;
|
|
6742
|
+
param?: string | undefined;
|
|
6743
|
+
})[] | undefined;
|
|
6744
|
+
readonly allowCreate?: boolean | undefined;
|
|
6186
6745
|
readonly expression?: {
|
|
6187
6746
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6188
6747
|
source?: string | undefined;
|
|
@@ -6338,6 +6897,25 @@ declare const SysEmail: Omit<{
|
|
|
6338
6897
|
readonly relatedList?: boolean | undefined;
|
|
6339
6898
|
readonly relatedListTitle?: string | undefined;
|
|
6340
6899
|
readonly relatedListColumns?: any[] | undefined;
|
|
6900
|
+
readonly displayField?: string | undefined;
|
|
6901
|
+
readonly descriptionField?: string | undefined;
|
|
6902
|
+
readonly lookupColumns?: (string | {
|
|
6903
|
+
field: string;
|
|
6904
|
+
label?: string | undefined;
|
|
6905
|
+
width?: string | undefined;
|
|
6906
|
+
type?: string | undefined;
|
|
6907
|
+
})[] | undefined;
|
|
6908
|
+
readonly lookupPageSize?: number | undefined;
|
|
6909
|
+
readonly lookupFilters?: {
|
|
6910
|
+
field: string;
|
|
6911
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
6912
|
+
value: any;
|
|
6913
|
+
}[] | undefined;
|
|
6914
|
+
readonly dependsOn?: (string | {
|
|
6915
|
+
field: string;
|
|
6916
|
+
param?: string | undefined;
|
|
6917
|
+
})[] | undefined;
|
|
6918
|
+
readonly allowCreate?: boolean | undefined;
|
|
6341
6919
|
readonly expression?: {
|
|
6342
6920
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6343
6921
|
source?: string | undefined;
|
|
@@ -6493,6 +7071,25 @@ declare const SysEmail: Omit<{
|
|
|
6493
7071
|
readonly relatedList?: boolean | undefined;
|
|
6494
7072
|
readonly relatedListTitle?: string | undefined;
|
|
6495
7073
|
readonly relatedListColumns?: any[] | undefined;
|
|
7074
|
+
readonly displayField?: string | undefined;
|
|
7075
|
+
readonly descriptionField?: string | undefined;
|
|
7076
|
+
readonly lookupColumns?: (string | {
|
|
7077
|
+
field: string;
|
|
7078
|
+
label?: string | undefined;
|
|
7079
|
+
width?: string | undefined;
|
|
7080
|
+
type?: string | undefined;
|
|
7081
|
+
})[] | undefined;
|
|
7082
|
+
readonly lookupPageSize?: number | undefined;
|
|
7083
|
+
readonly lookupFilters?: {
|
|
7084
|
+
field: string;
|
|
7085
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7086
|
+
value: any;
|
|
7087
|
+
}[] | undefined;
|
|
7088
|
+
readonly dependsOn?: (string | {
|
|
7089
|
+
field: string;
|
|
7090
|
+
param?: string | undefined;
|
|
7091
|
+
})[] | undefined;
|
|
7092
|
+
readonly allowCreate?: boolean | undefined;
|
|
6496
7093
|
readonly expression?: {
|
|
6497
7094
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6498
7095
|
source?: string | undefined;
|
|
@@ -6648,6 +7245,25 @@ declare const SysEmail: Omit<{
|
|
|
6648
7245
|
readonly relatedList?: boolean | undefined;
|
|
6649
7246
|
readonly relatedListTitle?: string | undefined;
|
|
6650
7247
|
readonly relatedListColumns?: any[] | undefined;
|
|
7248
|
+
readonly displayField?: string | undefined;
|
|
7249
|
+
readonly descriptionField?: string | undefined;
|
|
7250
|
+
readonly lookupColumns?: (string | {
|
|
7251
|
+
field: string;
|
|
7252
|
+
label?: string | undefined;
|
|
7253
|
+
width?: string | undefined;
|
|
7254
|
+
type?: string | undefined;
|
|
7255
|
+
})[] | undefined;
|
|
7256
|
+
readonly lookupPageSize?: number | undefined;
|
|
7257
|
+
readonly lookupFilters?: {
|
|
7258
|
+
field: string;
|
|
7259
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7260
|
+
value: any;
|
|
7261
|
+
}[] | undefined;
|
|
7262
|
+
readonly dependsOn?: (string | {
|
|
7263
|
+
field: string;
|
|
7264
|
+
param?: string | undefined;
|
|
7265
|
+
})[] | undefined;
|
|
7266
|
+
readonly allowCreate?: boolean | undefined;
|
|
6651
7267
|
readonly expression?: {
|
|
6652
7268
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6653
7269
|
source?: string | undefined;
|
|
@@ -6803,6 +7419,25 @@ declare const SysEmail: Omit<{
|
|
|
6803
7419
|
readonly relatedList?: boolean | undefined;
|
|
6804
7420
|
readonly relatedListTitle?: string | undefined;
|
|
6805
7421
|
readonly relatedListColumns?: any[] | undefined;
|
|
7422
|
+
readonly displayField?: string | undefined;
|
|
7423
|
+
readonly descriptionField?: string | undefined;
|
|
7424
|
+
readonly lookupColumns?: (string | {
|
|
7425
|
+
field: string;
|
|
7426
|
+
label?: string | undefined;
|
|
7427
|
+
width?: string | undefined;
|
|
7428
|
+
type?: string | undefined;
|
|
7429
|
+
})[] | undefined;
|
|
7430
|
+
readonly lookupPageSize?: number | undefined;
|
|
7431
|
+
readonly lookupFilters?: {
|
|
7432
|
+
field: string;
|
|
7433
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7434
|
+
value: any;
|
|
7435
|
+
}[] | undefined;
|
|
7436
|
+
readonly dependsOn?: (string | {
|
|
7437
|
+
field: string;
|
|
7438
|
+
param?: string | undefined;
|
|
7439
|
+
})[] | undefined;
|
|
7440
|
+
readonly allowCreate?: boolean | undefined;
|
|
6806
7441
|
readonly expression?: {
|
|
6807
7442
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6808
7443
|
source?: string | undefined;
|
|
@@ -6958,6 +7593,25 @@ declare const SysEmail: Omit<{
|
|
|
6958
7593
|
readonly relatedList?: boolean | undefined;
|
|
6959
7594
|
readonly relatedListTitle?: string | undefined;
|
|
6960
7595
|
readonly relatedListColumns?: any[] | undefined;
|
|
7596
|
+
readonly displayField?: string | undefined;
|
|
7597
|
+
readonly descriptionField?: string | undefined;
|
|
7598
|
+
readonly lookupColumns?: (string | {
|
|
7599
|
+
field: string;
|
|
7600
|
+
label?: string | undefined;
|
|
7601
|
+
width?: string | undefined;
|
|
7602
|
+
type?: string | undefined;
|
|
7603
|
+
})[] | undefined;
|
|
7604
|
+
readonly lookupPageSize?: number | undefined;
|
|
7605
|
+
readonly lookupFilters?: {
|
|
7606
|
+
field: string;
|
|
7607
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7608
|
+
value: any;
|
|
7609
|
+
}[] | undefined;
|
|
7610
|
+
readonly dependsOn?: (string | {
|
|
7611
|
+
field: string;
|
|
7612
|
+
param?: string | undefined;
|
|
7613
|
+
})[] | undefined;
|
|
7614
|
+
readonly allowCreate?: boolean | undefined;
|
|
6961
7615
|
readonly expression?: {
|
|
6962
7616
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6963
7617
|
source?: string | undefined;
|
|
@@ -7113,6 +7767,25 @@ declare const SysEmail: Omit<{
|
|
|
7113
7767
|
readonly relatedList?: boolean | undefined;
|
|
7114
7768
|
readonly relatedListTitle?: string | undefined;
|
|
7115
7769
|
readonly relatedListColumns?: any[] | undefined;
|
|
7770
|
+
readonly displayField?: string | undefined;
|
|
7771
|
+
readonly descriptionField?: string | undefined;
|
|
7772
|
+
readonly lookupColumns?: (string | {
|
|
7773
|
+
field: string;
|
|
7774
|
+
label?: string | undefined;
|
|
7775
|
+
width?: string | undefined;
|
|
7776
|
+
type?: string | undefined;
|
|
7777
|
+
})[] | undefined;
|
|
7778
|
+
readonly lookupPageSize?: number | undefined;
|
|
7779
|
+
readonly lookupFilters?: {
|
|
7780
|
+
field: string;
|
|
7781
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7782
|
+
value: any;
|
|
7783
|
+
}[] | undefined;
|
|
7784
|
+
readonly dependsOn?: (string | {
|
|
7785
|
+
field: string;
|
|
7786
|
+
param?: string | undefined;
|
|
7787
|
+
})[] | undefined;
|
|
7788
|
+
readonly allowCreate?: boolean | undefined;
|
|
7116
7789
|
readonly expression?: {
|
|
7117
7790
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7118
7791
|
source?: string | undefined;
|
|
@@ -7268,6 +7941,25 @@ declare const SysEmail: Omit<{
|
|
|
7268
7941
|
readonly relatedList?: boolean | undefined;
|
|
7269
7942
|
readonly relatedListTitle?: string | undefined;
|
|
7270
7943
|
readonly relatedListColumns?: any[] | undefined;
|
|
7944
|
+
readonly displayField?: string | undefined;
|
|
7945
|
+
readonly descriptionField?: string | undefined;
|
|
7946
|
+
readonly lookupColumns?: (string | {
|
|
7947
|
+
field: string;
|
|
7948
|
+
label?: string | undefined;
|
|
7949
|
+
width?: string | undefined;
|
|
7950
|
+
type?: string | undefined;
|
|
7951
|
+
})[] | undefined;
|
|
7952
|
+
readonly lookupPageSize?: number | undefined;
|
|
7953
|
+
readonly lookupFilters?: {
|
|
7954
|
+
field: string;
|
|
7955
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7956
|
+
value: any;
|
|
7957
|
+
}[] | undefined;
|
|
7958
|
+
readonly dependsOn?: (string | {
|
|
7959
|
+
field: string;
|
|
7960
|
+
param?: string | undefined;
|
|
7961
|
+
})[] | undefined;
|
|
7962
|
+
readonly allowCreate?: boolean | undefined;
|
|
7271
7963
|
readonly expression?: {
|
|
7272
7964
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7273
7965
|
source?: string | undefined;
|
|
@@ -7423,6 +8115,25 @@ declare const SysEmail: Omit<{
|
|
|
7423
8115
|
readonly relatedList?: boolean | undefined;
|
|
7424
8116
|
readonly relatedListTitle?: string | undefined;
|
|
7425
8117
|
readonly relatedListColumns?: any[] | undefined;
|
|
8118
|
+
readonly displayField?: string | undefined;
|
|
8119
|
+
readonly descriptionField?: string | undefined;
|
|
8120
|
+
readonly lookupColumns?: (string | {
|
|
8121
|
+
field: string;
|
|
8122
|
+
label?: string | undefined;
|
|
8123
|
+
width?: string | undefined;
|
|
8124
|
+
type?: string | undefined;
|
|
8125
|
+
})[] | undefined;
|
|
8126
|
+
readonly lookupPageSize?: number | undefined;
|
|
8127
|
+
readonly lookupFilters?: {
|
|
8128
|
+
field: string;
|
|
8129
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
8130
|
+
value: any;
|
|
8131
|
+
}[] | undefined;
|
|
8132
|
+
readonly dependsOn?: (string | {
|
|
8133
|
+
field: string;
|
|
8134
|
+
param?: string | undefined;
|
|
8135
|
+
})[] | undefined;
|
|
8136
|
+
readonly allowCreate?: boolean | undefined;
|
|
7426
8137
|
readonly expression?: {
|
|
7427
8138
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7428
8139
|
source?: string | undefined;
|
|
@@ -7578,7 +8289,26 @@ declare const SysEmail: Omit<{
|
|
|
7578
8289
|
readonly relatedList?: boolean | undefined;
|
|
7579
8290
|
readonly relatedListTitle?: string | undefined;
|
|
7580
8291
|
readonly relatedListColumns?: any[] | undefined;
|
|
7581
|
-
readonly
|
|
8292
|
+
readonly displayField?: string | undefined;
|
|
8293
|
+
readonly descriptionField?: string | undefined;
|
|
8294
|
+
readonly lookupColumns?: (string | {
|
|
8295
|
+
field: string;
|
|
8296
|
+
label?: string | undefined;
|
|
8297
|
+
width?: string | undefined;
|
|
8298
|
+
type?: string | undefined;
|
|
8299
|
+
})[] | undefined;
|
|
8300
|
+
readonly lookupPageSize?: number | undefined;
|
|
8301
|
+
readonly lookupFilters?: {
|
|
8302
|
+
field: string;
|
|
8303
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
8304
|
+
value: any;
|
|
8305
|
+
}[] | undefined;
|
|
8306
|
+
readonly dependsOn?: (string | {
|
|
8307
|
+
field: string;
|
|
8308
|
+
param?: string | undefined;
|
|
8309
|
+
})[] | undefined;
|
|
8310
|
+
readonly allowCreate?: boolean | undefined;
|
|
8311
|
+
readonly expression?: {
|
|
7582
8312
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7583
8313
|
source?: string | undefined;
|
|
7584
8314
|
ast?: unknown;
|
|
@@ -7733,6 +8463,25 @@ declare const SysEmail: Omit<{
|
|
|
7733
8463
|
readonly relatedList?: boolean | undefined;
|
|
7734
8464
|
readonly relatedListTitle?: string | undefined;
|
|
7735
8465
|
readonly relatedListColumns?: any[] | undefined;
|
|
8466
|
+
readonly displayField?: string | undefined;
|
|
8467
|
+
readonly descriptionField?: string | undefined;
|
|
8468
|
+
readonly lookupColumns?: (string | {
|
|
8469
|
+
field: string;
|
|
8470
|
+
label?: string | undefined;
|
|
8471
|
+
width?: string | undefined;
|
|
8472
|
+
type?: string | undefined;
|
|
8473
|
+
})[] | undefined;
|
|
8474
|
+
readonly lookupPageSize?: number | undefined;
|
|
8475
|
+
readonly lookupFilters?: {
|
|
8476
|
+
field: string;
|
|
8477
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
8478
|
+
value: any;
|
|
8479
|
+
}[] | undefined;
|
|
8480
|
+
readonly dependsOn?: (string | {
|
|
8481
|
+
field: string;
|
|
8482
|
+
param?: string | undefined;
|
|
8483
|
+
})[] | undefined;
|
|
8484
|
+
readonly allowCreate?: boolean | undefined;
|
|
7736
8485
|
readonly expression?: {
|
|
7737
8486
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7738
8487
|
source?: string | undefined;
|
|
@@ -7888,6 +8637,25 @@ declare const SysEmail: Omit<{
|
|
|
7888
8637
|
readonly relatedList?: boolean | undefined;
|
|
7889
8638
|
readonly relatedListTitle?: string | undefined;
|
|
7890
8639
|
readonly relatedListColumns?: any[] | undefined;
|
|
8640
|
+
readonly displayField?: string | undefined;
|
|
8641
|
+
readonly descriptionField?: string | undefined;
|
|
8642
|
+
readonly lookupColumns?: (string | {
|
|
8643
|
+
field: string;
|
|
8644
|
+
label?: string | undefined;
|
|
8645
|
+
width?: string | undefined;
|
|
8646
|
+
type?: string | undefined;
|
|
8647
|
+
})[] | undefined;
|
|
8648
|
+
readonly lookupPageSize?: number | undefined;
|
|
8649
|
+
readonly lookupFilters?: {
|
|
8650
|
+
field: string;
|
|
8651
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
8652
|
+
value: any;
|
|
8653
|
+
}[] | undefined;
|
|
8654
|
+
readonly dependsOn?: (string | {
|
|
8655
|
+
field: string;
|
|
8656
|
+
param?: string | undefined;
|
|
8657
|
+
})[] | undefined;
|
|
8658
|
+
readonly allowCreate?: boolean | undefined;
|
|
7891
8659
|
readonly expression?: {
|
|
7892
8660
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7893
8661
|
source?: string | undefined;
|
|
@@ -8043,6 +8811,25 @@ declare const SysEmail: Omit<{
|
|
|
8043
8811
|
readonly relatedList?: boolean | undefined;
|
|
8044
8812
|
readonly relatedListTitle?: string | undefined;
|
|
8045
8813
|
readonly relatedListColumns?: any[] | undefined;
|
|
8814
|
+
readonly displayField?: string | undefined;
|
|
8815
|
+
readonly descriptionField?: string | undefined;
|
|
8816
|
+
readonly lookupColumns?: (string | {
|
|
8817
|
+
field: string;
|
|
8818
|
+
label?: string | undefined;
|
|
8819
|
+
width?: string | undefined;
|
|
8820
|
+
type?: string | undefined;
|
|
8821
|
+
})[] | undefined;
|
|
8822
|
+
readonly lookupPageSize?: number | undefined;
|
|
8823
|
+
readonly lookupFilters?: {
|
|
8824
|
+
field: string;
|
|
8825
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
8826
|
+
value: any;
|
|
8827
|
+
}[] | undefined;
|
|
8828
|
+
readonly dependsOn?: (string | {
|
|
8829
|
+
field: string;
|
|
8830
|
+
param?: string | undefined;
|
|
8831
|
+
})[] | undefined;
|
|
8832
|
+
readonly allowCreate?: boolean | undefined;
|
|
8046
8833
|
readonly expression?: {
|
|
8047
8834
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8048
8835
|
source?: string | undefined;
|
|
@@ -8198,6 +8985,25 @@ declare const SysEmail: Omit<{
|
|
|
8198
8985
|
readonly relatedList?: boolean | undefined;
|
|
8199
8986
|
readonly relatedListTitle?: string | undefined;
|
|
8200
8987
|
readonly relatedListColumns?: any[] | undefined;
|
|
8988
|
+
readonly displayField?: string | undefined;
|
|
8989
|
+
readonly descriptionField?: string | undefined;
|
|
8990
|
+
readonly lookupColumns?: (string | {
|
|
8991
|
+
field: string;
|
|
8992
|
+
label?: string | undefined;
|
|
8993
|
+
width?: string | undefined;
|
|
8994
|
+
type?: string | undefined;
|
|
8995
|
+
})[] | undefined;
|
|
8996
|
+
readonly lookupPageSize?: number | undefined;
|
|
8997
|
+
readonly lookupFilters?: {
|
|
8998
|
+
field: string;
|
|
8999
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
9000
|
+
value: any;
|
|
9001
|
+
}[] | undefined;
|
|
9002
|
+
readonly dependsOn?: (string | {
|
|
9003
|
+
field: string;
|
|
9004
|
+
param?: string | undefined;
|
|
9005
|
+
})[] | undefined;
|
|
9006
|
+
readonly allowCreate?: boolean | undefined;
|
|
8201
9007
|
readonly expression?: {
|
|
8202
9008
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8203
9009
|
source?: string | undefined;
|
|
@@ -8353,6 +9159,25 @@ declare const SysEmail: Omit<{
|
|
|
8353
9159
|
readonly relatedList?: boolean | undefined;
|
|
8354
9160
|
readonly relatedListTitle?: string | undefined;
|
|
8355
9161
|
readonly relatedListColumns?: any[] | undefined;
|
|
9162
|
+
readonly displayField?: string | undefined;
|
|
9163
|
+
readonly descriptionField?: string | undefined;
|
|
9164
|
+
readonly lookupColumns?: (string | {
|
|
9165
|
+
field: string;
|
|
9166
|
+
label?: string | undefined;
|
|
9167
|
+
width?: string | undefined;
|
|
9168
|
+
type?: string | undefined;
|
|
9169
|
+
})[] | undefined;
|
|
9170
|
+
readonly lookupPageSize?: number | undefined;
|
|
9171
|
+
readonly lookupFilters?: {
|
|
9172
|
+
field: string;
|
|
9173
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
9174
|
+
value: any;
|
|
9175
|
+
}[] | undefined;
|
|
9176
|
+
readonly dependsOn?: (string | {
|
|
9177
|
+
field: string;
|
|
9178
|
+
param?: string | undefined;
|
|
9179
|
+
})[] | undefined;
|
|
9180
|
+
readonly allowCreate?: boolean | undefined;
|
|
8356
9181
|
readonly expression?: {
|
|
8357
9182
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8358
9183
|
source?: string | undefined;
|
|
@@ -8508,6 +9333,25 @@ declare const SysEmail: Omit<{
|
|
|
8508
9333
|
readonly relatedList?: boolean | undefined;
|
|
8509
9334
|
readonly relatedListTitle?: string | undefined;
|
|
8510
9335
|
readonly relatedListColumns?: any[] | undefined;
|
|
9336
|
+
readonly displayField?: string | undefined;
|
|
9337
|
+
readonly descriptionField?: string | undefined;
|
|
9338
|
+
readonly lookupColumns?: (string | {
|
|
9339
|
+
field: string;
|
|
9340
|
+
label?: string | undefined;
|
|
9341
|
+
width?: string | undefined;
|
|
9342
|
+
type?: string | undefined;
|
|
9343
|
+
})[] | undefined;
|
|
9344
|
+
readonly lookupPageSize?: number | undefined;
|
|
9345
|
+
readonly lookupFilters?: {
|
|
9346
|
+
field: string;
|
|
9347
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
9348
|
+
value: any;
|
|
9349
|
+
}[] | undefined;
|
|
9350
|
+
readonly dependsOn?: (string | {
|
|
9351
|
+
field: string;
|
|
9352
|
+
param?: string | undefined;
|
|
9353
|
+
})[] | undefined;
|
|
9354
|
+
readonly allowCreate?: boolean | undefined;
|
|
8511
9355
|
readonly expression?: {
|
|
8512
9356
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8513
9357
|
source?: string | undefined;
|
|
@@ -8663,6 +9507,25 @@ declare const SysEmail: Omit<{
|
|
|
8663
9507
|
readonly relatedList?: boolean | undefined;
|
|
8664
9508
|
readonly relatedListTitle?: string | undefined;
|
|
8665
9509
|
readonly relatedListColumns?: any[] | undefined;
|
|
9510
|
+
readonly displayField?: string | undefined;
|
|
9511
|
+
readonly descriptionField?: string | undefined;
|
|
9512
|
+
readonly lookupColumns?: (string | {
|
|
9513
|
+
field: string;
|
|
9514
|
+
label?: string | undefined;
|
|
9515
|
+
width?: string | undefined;
|
|
9516
|
+
type?: string | undefined;
|
|
9517
|
+
})[] | undefined;
|
|
9518
|
+
readonly lookupPageSize?: number | undefined;
|
|
9519
|
+
readonly lookupFilters?: {
|
|
9520
|
+
field: string;
|
|
9521
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
9522
|
+
value: any;
|
|
9523
|
+
}[] | undefined;
|
|
9524
|
+
readonly dependsOn?: (string | {
|
|
9525
|
+
field: string;
|
|
9526
|
+
param?: string | undefined;
|
|
9527
|
+
})[] | undefined;
|
|
9528
|
+
readonly allowCreate?: boolean | undefined;
|
|
8666
9529
|
readonly expression?: {
|
|
8667
9530
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8668
9531
|
source?: string | undefined;
|
|
@@ -8847,6 +9710,25 @@ declare const SysEmailTemplate: Omit<{
|
|
|
8847
9710
|
relatedList?: boolean | undefined;
|
|
8848
9711
|
relatedListTitle?: string | undefined;
|
|
8849
9712
|
relatedListColumns?: any[] | undefined;
|
|
9713
|
+
displayField?: string | undefined;
|
|
9714
|
+
descriptionField?: string | undefined;
|
|
9715
|
+
lookupColumns?: (string | {
|
|
9716
|
+
field: string;
|
|
9717
|
+
label?: string | undefined;
|
|
9718
|
+
width?: string | undefined;
|
|
9719
|
+
type?: string | undefined;
|
|
9720
|
+
})[] | undefined;
|
|
9721
|
+
lookupPageSize?: number | undefined;
|
|
9722
|
+
lookupFilters?: {
|
|
9723
|
+
field: string;
|
|
9724
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
9725
|
+
value: any;
|
|
9726
|
+
}[] | undefined;
|
|
9727
|
+
dependsOn?: (string | {
|
|
9728
|
+
field: string;
|
|
9729
|
+
param?: string | undefined;
|
|
9730
|
+
})[] | undefined;
|
|
9731
|
+
allowCreate?: boolean | undefined;
|
|
8850
9732
|
expression?: {
|
|
8851
9733
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8852
9734
|
source?: string | undefined;
|
|
@@ -9122,7 +10004,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9122
10004
|
} | undefined;
|
|
9123
10005
|
compactLayout?: string[] | undefined;
|
|
9124
10006
|
listViews?: Record<string, {
|
|
9125
|
-
type: "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
10007
|
+
type: "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
9126
10008
|
columns: string[] | {
|
|
9127
10009
|
field: string;
|
|
9128
10010
|
label?: string | undefined;
|
|
@@ -9239,6 +10121,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9239
10121
|
colorField?: string | undefined;
|
|
9240
10122
|
} | undefined;
|
|
9241
10123
|
gantt?: {
|
|
10124
|
+
[x: string]: unknown;
|
|
9242
10125
|
startDateField: string;
|
|
9243
10126
|
endDateField: string;
|
|
9244
10127
|
titleField: string;
|
|
@@ -9289,6 +10172,13 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9289
10172
|
values: string[];
|
|
9290
10173
|
dimensions?: string[] | undefined;
|
|
9291
10174
|
} | undefined;
|
|
10175
|
+
tree?: {
|
|
10176
|
+
[x: string]: unknown;
|
|
10177
|
+
parentField?: string | undefined;
|
|
10178
|
+
labelField?: string | undefined;
|
|
10179
|
+
fields?: string[] | undefined;
|
|
10180
|
+
defaultExpandedDepth?: number | undefined;
|
|
10181
|
+
} | undefined;
|
|
9292
10182
|
description?: string | undefined;
|
|
9293
10183
|
sharing?: {
|
|
9294
10184
|
type: "personal" | "collaborative";
|
|
@@ -9344,7 +10234,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9344
10234
|
} | undefined;
|
|
9345
10235
|
appearance?: {
|
|
9346
10236
|
showDescription: boolean;
|
|
9347
|
-
allowedVisualizations?: ("grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
10237
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
9348
10238
|
} | undefined;
|
|
9349
10239
|
tabs?: {
|
|
9350
10240
|
name: string;
|
|
@@ -9413,6 +10303,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9413
10303
|
} | undefined;
|
|
9414
10304
|
}> | undefined;
|
|
9415
10305
|
defaultDetailForm?: string | undefined;
|
|
10306
|
+
searchableFields?: string[] | undefined;
|
|
9416
10307
|
search?: {
|
|
9417
10308
|
fields: string[];
|
|
9418
10309
|
displayFields?: string[] | undefined;
|
|
@@ -9605,6 +10496,25 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9605
10496
|
readonly relatedList?: boolean | undefined;
|
|
9606
10497
|
readonly relatedListTitle?: string | undefined;
|
|
9607
10498
|
readonly relatedListColumns?: any[] | undefined;
|
|
10499
|
+
readonly displayField?: string | undefined;
|
|
10500
|
+
readonly descriptionField?: string | undefined;
|
|
10501
|
+
readonly lookupColumns?: (string | {
|
|
10502
|
+
field: string;
|
|
10503
|
+
label?: string | undefined;
|
|
10504
|
+
width?: string | undefined;
|
|
10505
|
+
type?: string | undefined;
|
|
10506
|
+
})[] | undefined;
|
|
10507
|
+
readonly lookupPageSize?: number | undefined;
|
|
10508
|
+
readonly lookupFilters?: {
|
|
10509
|
+
field: string;
|
|
10510
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
10511
|
+
value: any;
|
|
10512
|
+
}[] | undefined;
|
|
10513
|
+
readonly dependsOn?: (string | {
|
|
10514
|
+
field: string;
|
|
10515
|
+
param?: string | undefined;
|
|
10516
|
+
})[] | undefined;
|
|
10517
|
+
readonly allowCreate?: boolean | undefined;
|
|
9608
10518
|
readonly expression?: {
|
|
9609
10519
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9610
10520
|
source?: string | undefined;
|
|
@@ -9760,6 +10670,25 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9760
10670
|
readonly relatedList?: boolean | undefined;
|
|
9761
10671
|
readonly relatedListTitle?: string | undefined;
|
|
9762
10672
|
readonly relatedListColumns?: any[] | undefined;
|
|
10673
|
+
readonly displayField?: string | undefined;
|
|
10674
|
+
readonly descriptionField?: string | undefined;
|
|
10675
|
+
readonly lookupColumns?: (string | {
|
|
10676
|
+
field: string;
|
|
10677
|
+
label?: string | undefined;
|
|
10678
|
+
width?: string | undefined;
|
|
10679
|
+
type?: string | undefined;
|
|
10680
|
+
})[] | undefined;
|
|
10681
|
+
readonly lookupPageSize?: number | undefined;
|
|
10682
|
+
readonly lookupFilters?: {
|
|
10683
|
+
field: string;
|
|
10684
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
10685
|
+
value: any;
|
|
10686
|
+
}[] | undefined;
|
|
10687
|
+
readonly dependsOn?: (string | {
|
|
10688
|
+
field: string;
|
|
10689
|
+
param?: string | undefined;
|
|
10690
|
+
})[] | undefined;
|
|
10691
|
+
readonly allowCreate?: boolean | undefined;
|
|
9763
10692
|
readonly expression?: {
|
|
9764
10693
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9765
10694
|
source?: string | undefined;
|
|
@@ -9915,6 +10844,25 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9915
10844
|
readonly relatedList?: boolean | undefined;
|
|
9916
10845
|
readonly relatedListTitle?: string | undefined;
|
|
9917
10846
|
readonly relatedListColumns?: any[] | undefined;
|
|
10847
|
+
readonly displayField?: string | undefined;
|
|
10848
|
+
readonly descriptionField?: string | undefined;
|
|
10849
|
+
readonly lookupColumns?: (string | {
|
|
10850
|
+
field: string;
|
|
10851
|
+
label?: string | undefined;
|
|
10852
|
+
width?: string | undefined;
|
|
10853
|
+
type?: string | undefined;
|
|
10854
|
+
})[] | undefined;
|
|
10855
|
+
readonly lookupPageSize?: number | undefined;
|
|
10856
|
+
readonly lookupFilters?: {
|
|
10857
|
+
field: string;
|
|
10858
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
10859
|
+
value: any;
|
|
10860
|
+
}[] | undefined;
|
|
10861
|
+
readonly dependsOn?: (string | {
|
|
10862
|
+
field: string;
|
|
10863
|
+
param?: string | undefined;
|
|
10864
|
+
})[] | undefined;
|
|
10865
|
+
readonly allowCreate?: boolean | undefined;
|
|
9918
10866
|
readonly expression?: {
|
|
9919
10867
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9920
10868
|
source?: string | undefined;
|
|
@@ -10070,6 +11018,25 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10070
11018
|
readonly relatedList?: boolean | undefined;
|
|
10071
11019
|
readonly relatedListTitle?: string | undefined;
|
|
10072
11020
|
readonly relatedListColumns?: any[] | undefined;
|
|
11021
|
+
readonly displayField?: string | undefined;
|
|
11022
|
+
readonly descriptionField?: string | undefined;
|
|
11023
|
+
readonly lookupColumns?: (string | {
|
|
11024
|
+
field: string;
|
|
11025
|
+
label?: string | undefined;
|
|
11026
|
+
width?: string | undefined;
|
|
11027
|
+
type?: string | undefined;
|
|
11028
|
+
})[] | undefined;
|
|
11029
|
+
readonly lookupPageSize?: number | undefined;
|
|
11030
|
+
readonly lookupFilters?: {
|
|
11031
|
+
field: string;
|
|
11032
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
11033
|
+
value: any;
|
|
11034
|
+
}[] | undefined;
|
|
11035
|
+
readonly dependsOn?: (string | {
|
|
11036
|
+
field: string;
|
|
11037
|
+
param?: string | undefined;
|
|
11038
|
+
})[] | undefined;
|
|
11039
|
+
readonly allowCreate?: boolean | undefined;
|
|
10073
11040
|
readonly expression?: {
|
|
10074
11041
|
dialect: "cel" | "js" | "cron" | "template";
|
|
10075
11042
|
source?: string | undefined;
|
|
@@ -10225,6 +11192,25 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10225
11192
|
readonly relatedList?: boolean | undefined;
|
|
10226
11193
|
readonly relatedListTitle?: string | undefined;
|
|
10227
11194
|
readonly relatedListColumns?: any[] | undefined;
|
|
11195
|
+
readonly displayField?: string | undefined;
|
|
11196
|
+
readonly descriptionField?: string | undefined;
|
|
11197
|
+
readonly lookupColumns?: (string | {
|
|
11198
|
+
field: string;
|
|
11199
|
+
label?: string | undefined;
|
|
11200
|
+
width?: string | undefined;
|
|
11201
|
+
type?: string | undefined;
|
|
11202
|
+
})[] | undefined;
|
|
11203
|
+
readonly lookupPageSize?: number | undefined;
|
|
11204
|
+
readonly lookupFilters?: {
|
|
11205
|
+
field: string;
|
|
11206
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
11207
|
+
value: any;
|
|
11208
|
+
}[] | undefined;
|
|
11209
|
+
readonly dependsOn?: (string | {
|
|
11210
|
+
field: string;
|
|
11211
|
+
param?: string | undefined;
|
|
11212
|
+
})[] | undefined;
|
|
11213
|
+
readonly allowCreate?: boolean | undefined;
|
|
10228
11214
|
readonly expression?: {
|
|
10229
11215
|
dialect: "cel" | "js" | "cron" | "template";
|
|
10230
11216
|
source?: string | undefined;
|
|
@@ -10380,6 +11366,25 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10380
11366
|
readonly relatedList?: boolean | undefined;
|
|
10381
11367
|
readonly relatedListTitle?: string | undefined;
|
|
10382
11368
|
readonly relatedListColumns?: any[] | undefined;
|
|
11369
|
+
readonly displayField?: string | undefined;
|
|
11370
|
+
readonly descriptionField?: string | undefined;
|
|
11371
|
+
readonly lookupColumns?: (string | {
|
|
11372
|
+
field: string;
|
|
11373
|
+
label?: string | undefined;
|
|
11374
|
+
width?: string | undefined;
|
|
11375
|
+
type?: string | undefined;
|
|
11376
|
+
})[] | undefined;
|
|
11377
|
+
readonly lookupPageSize?: number | undefined;
|
|
11378
|
+
readonly lookupFilters?: {
|
|
11379
|
+
field: string;
|
|
11380
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
11381
|
+
value: any;
|
|
11382
|
+
}[] | undefined;
|
|
11383
|
+
readonly dependsOn?: (string | {
|
|
11384
|
+
field: string;
|
|
11385
|
+
param?: string | undefined;
|
|
11386
|
+
})[] | undefined;
|
|
11387
|
+
readonly allowCreate?: boolean | undefined;
|
|
10383
11388
|
readonly expression?: {
|
|
10384
11389
|
dialect: "cel" | "js" | "cron" | "template";
|
|
10385
11390
|
source?: string | undefined;
|
|
@@ -10535,6 +11540,25 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10535
11540
|
readonly relatedList?: boolean | undefined;
|
|
10536
11541
|
readonly relatedListTitle?: string | undefined;
|
|
10537
11542
|
readonly relatedListColumns?: any[] | undefined;
|
|
11543
|
+
readonly displayField?: string | undefined;
|
|
11544
|
+
readonly descriptionField?: string | undefined;
|
|
11545
|
+
readonly lookupColumns?: (string | {
|
|
11546
|
+
field: string;
|
|
11547
|
+
label?: string | undefined;
|
|
11548
|
+
width?: string | undefined;
|
|
11549
|
+
type?: string | undefined;
|
|
11550
|
+
})[] | undefined;
|
|
11551
|
+
readonly lookupPageSize?: number | undefined;
|
|
11552
|
+
readonly lookupFilters?: {
|
|
11553
|
+
field: string;
|
|
11554
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
11555
|
+
value: any;
|
|
11556
|
+
}[] | undefined;
|
|
11557
|
+
readonly dependsOn?: (string | {
|
|
11558
|
+
field: string;
|
|
11559
|
+
param?: string | undefined;
|
|
11560
|
+
})[] | undefined;
|
|
11561
|
+
readonly allowCreate?: boolean | undefined;
|
|
10538
11562
|
readonly expression?: {
|
|
10539
11563
|
dialect: "cel" | "js" | "cron" | "template";
|
|
10540
11564
|
source?: string | undefined;
|
|
@@ -10690,6 +11714,25 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10690
11714
|
readonly relatedList?: boolean | undefined;
|
|
10691
11715
|
readonly relatedListTitle?: string | undefined;
|
|
10692
11716
|
readonly relatedListColumns?: any[] | undefined;
|
|
11717
|
+
readonly displayField?: string | undefined;
|
|
11718
|
+
readonly descriptionField?: string | undefined;
|
|
11719
|
+
readonly lookupColumns?: (string | {
|
|
11720
|
+
field: string;
|
|
11721
|
+
label?: string | undefined;
|
|
11722
|
+
width?: string | undefined;
|
|
11723
|
+
type?: string | undefined;
|
|
11724
|
+
})[] | undefined;
|
|
11725
|
+
readonly lookupPageSize?: number | undefined;
|
|
11726
|
+
readonly lookupFilters?: {
|
|
11727
|
+
field: string;
|
|
11728
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
11729
|
+
value: any;
|
|
11730
|
+
}[] | undefined;
|
|
11731
|
+
readonly dependsOn?: (string | {
|
|
11732
|
+
field: string;
|
|
11733
|
+
param?: string | undefined;
|
|
11734
|
+
})[] | undefined;
|
|
11735
|
+
readonly allowCreate?: boolean | undefined;
|
|
10693
11736
|
readonly expression?: {
|
|
10694
11737
|
dialect: "cel" | "js" | "cron" | "template";
|
|
10695
11738
|
source?: string | undefined;
|
|
@@ -10845,6 +11888,25 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10845
11888
|
readonly relatedList?: boolean | undefined;
|
|
10846
11889
|
readonly relatedListTitle?: string | undefined;
|
|
10847
11890
|
readonly relatedListColumns?: any[] | undefined;
|
|
11891
|
+
readonly displayField?: string | undefined;
|
|
11892
|
+
readonly descriptionField?: string | undefined;
|
|
11893
|
+
readonly lookupColumns?: (string | {
|
|
11894
|
+
field: string;
|
|
11895
|
+
label?: string | undefined;
|
|
11896
|
+
width?: string | undefined;
|
|
11897
|
+
type?: string | undefined;
|
|
11898
|
+
})[] | undefined;
|
|
11899
|
+
readonly lookupPageSize?: number | undefined;
|
|
11900
|
+
readonly lookupFilters?: {
|
|
11901
|
+
field: string;
|
|
11902
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
11903
|
+
value: any;
|
|
11904
|
+
}[] | undefined;
|
|
11905
|
+
readonly dependsOn?: (string | {
|
|
11906
|
+
field: string;
|
|
11907
|
+
param?: string | undefined;
|
|
11908
|
+
})[] | undefined;
|
|
11909
|
+
readonly allowCreate?: boolean | undefined;
|
|
10848
11910
|
readonly expression?: {
|
|
10849
11911
|
dialect: "cel" | "js" | "cron" | "template";
|
|
10850
11912
|
source?: string | undefined;
|
|
@@ -11000,6 +12062,25 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11000
12062
|
readonly relatedList?: boolean | undefined;
|
|
11001
12063
|
readonly relatedListTitle?: string | undefined;
|
|
11002
12064
|
readonly relatedListColumns?: any[] | undefined;
|
|
12065
|
+
readonly displayField?: string | undefined;
|
|
12066
|
+
readonly descriptionField?: string | undefined;
|
|
12067
|
+
readonly lookupColumns?: (string | {
|
|
12068
|
+
field: string;
|
|
12069
|
+
label?: string | undefined;
|
|
12070
|
+
width?: string | undefined;
|
|
12071
|
+
type?: string | undefined;
|
|
12072
|
+
})[] | undefined;
|
|
12073
|
+
readonly lookupPageSize?: number | undefined;
|
|
12074
|
+
readonly lookupFilters?: {
|
|
12075
|
+
field: string;
|
|
12076
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
12077
|
+
value: any;
|
|
12078
|
+
}[] | undefined;
|
|
12079
|
+
readonly dependsOn?: (string | {
|
|
12080
|
+
field: string;
|
|
12081
|
+
param?: string | undefined;
|
|
12082
|
+
})[] | undefined;
|
|
12083
|
+
readonly allowCreate?: boolean | undefined;
|
|
11003
12084
|
readonly expression?: {
|
|
11004
12085
|
dialect: "cel" | "js" | "cron" | "template";
|
|
11005
12086
|
source?: string | undefined;
|
|
@@ -11155,6 +12236,25 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11155
12236
|
readonly relatedList?: boolean | undefined;
|
|
11156
12237
|
readonly relatedListTitle?: string | undefined;
|
|
11157
12238
|
readonly relatedListColumns?: any[] | undefined;
|
|
12239
|
+
readonly displayField?: string | undefined;
|
|
12240
|
+
readonly descriptionField?: string | undefined;
|
|
12241
|
+
readonly lookupColumns?: (string | {
|
|
12242
|
+
field: string;
|
|
12243
|
+
label?: string | undefined;
|
|
12244
|
+
width?: string | undefined;
|
|
12245
|
+
type?: string | undefined;
|
|
12246
|
+
})[] | undefined;
|
|
12247
|
+
readonly lookupPageSize?: number | undefined;
|
|
12248
|
+
readonly lookupFilters?: {
|
|
12249
|
+
field: string;
|
|
12250
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
12251
|
+
value: any;
|
|
12252
|
+
}[] | undefined;
|
|
12253
|
+
readonly dependsOn?: (string | {
|
|
12254
|
+
field: string;
|
|
12255
|
+
param?: string | undefined;
|
|
12256
|
+
})[] | undefined;
|
|
12257
|
+
readonly allowCreate?: boolean | undefined;
|
|
11158
12258
|
readonly expression?: {
|
|
11159
12259
|
dialect: "cel" | "js" | "cron" | "template";
|
|
11160
12260
|
source?: string | undefined;
|
|
@@ -11310,6 +12410,25 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11310
12410
|
readonly relatedList?: boolean | undefined;
|
|
11311
12411
|
readonly relatedListTitle?: string | undefined;
|
|
11312
12412
|
readonly relatedListColumns?: any[] | undefined;
|
|
12413
|
+
readonly displayField?: string | undefined;
|
|
12414
|
+
readonly descriptionField?: string | undefined;
|
|
12415
|
+
readonly lookupColumns?: (string | {
|
|
12416
|
+
field: string;
|
|
12417
|
+
label?: string | undefined;
|
|
12418
|
+
width?: string | undefined;
|
|
12419
|
+
type?: string | undefined;
|
|
12420
|
+
})[] | undefined;
|
|
12421
|
+
readonly lookupPageSize?: number | undefined;
|
|
12422
|
+
readonly lookupFilters?: {
|
|
12423
|
+
field: string;
|
|
12424
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
12425
|
+
value: any;
|
|
12426
|
+
}[] | undefined;
|
|
12427
|
+
readonly dependsOn?: (string | {
|
|
12428
|
+
field: string;
|
|
12429
|
+
param?: string | undefined;
|
|
12430
|
+
})[] | undefined;
|
|
12431
|
+
readonly allowCreate?: boolean | undefined;
|
|
11313
12432
|
readonly expression?: {
|
|
11314
12433
|
dialect: "cel" | "js" | "cron" | "template";
|
|
11315
12434
|
source?: string | undefined;
|
|
@@ -11465,6 +12584,25 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11465
12584
|
readonly relatedList?: boolean | undefined;
|
|
11466
12585
|
readonly relatedListTitle?: string | undefined;
|
|
11467
12586
|
readonly relatedListColumns?: any[] | undefined;
|
|
12587
|
+
readonly displayField?: string | undefined;
|
|
12588
|
+
readonly descriptionField?: string | undefined;
|
|
12589
|
+
readonly lookupColumns?: (string | {
|
|
12590
|
+
field: string;
|
|
12591
|
+
label?: string | undefined;
|
|
12592
|
+
width?: string | undefined;
|
|
12593
|
+
type?: string | undefined;
|
|
12594
|
+
})[] | undefined;
|
|
12595
|
+
readonly lookupPageSize?: number | undefined;
|
|
12596
|
+
readonly lookupFilters?: {
|
|
12597
|
+
field: string;
|
|
12598
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
12599
|
+
value: any;
|
|
12600
|
+
}[] | undefined;
|
|
12601
|
+
readonly dependsOn?: (string | {
|
|
12602
|
+
field: string;
|
|
12603
|
+
param?: string | undefined;
|
|
12604
|
+
})[] | undefined;
|
|
12605
|
+
readonly allowCreate?: boolean | undefined;
|
|
11468
12606
|
readonly expression?: {
|
|
11469
12607
|
dialect: "cel" | "js" | "cron" | "template";
|
|
11470
12608
|
source?: string | undefined;
|
|
@@ -11620,6 +12758,25 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11620
12758
|
readonly relatedList?: boolean | undefined;
|
|
11621
12759
|
readonly relatedListTitle?: string | undefined;
|
|
11622
12760
|
readonly relatedListColumns?: any[] | undefined;
|
|
12761
|
+
readonly displayField?: string | undefined;
|
|
12762
|
+
readonly descriptionField?: string | undefined;
|
|
12763
|
+
readonly lookupColumns?: (string | {
|
|
12764
|
+
field: string;
|
|
12765
|
+
label?: string | undefined;
|
|
12766
|
+
width?: string | undefined;
|
|
12767
|
+
type?: string | undefined;
|
|
12768
|
+
})[] | undefined;
|
|
12769
|
+
readonly lookupPageSize?: number | undefined;
|
|
12770
|
+
readonly lookupFilters?: {
|
|
12771
|
+
field: string;
|
|
12772
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
12773
|
+
value: any;
|
|
12774
|
+
}[] | undefined;
|
|
12775
|
+
readonly dependsOn?: (string | {
|
|
12776
|
+
field: string;
|
|
12777
|
+
param?: string | undefined;
|
|
12778
|
+
})[] | undefined;
|
|
12779
|
+
readonly allowCreate?: boolean | undefined;
|
|
11623
12780
|
readonly expression?: {
|
|
11624
12781
|
dialect: "cel" | "js" | "cron" | "template";
|
|
11625
12782
|
source?: string | undefined;
|
|
@@ -11781,6 +12938,25 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11781
12938
|
readonly relatedList?: boolean | undefined;
|
|
11782
12939
|
readonly relatedListTitle?: string | undefined;
|
|
11783
12940
|
readonly relatedListColumns?: any[] | undefined;
|
|
12941
|
+
readonly displayField?: string | undefined;
|
|
12942
|
+
readonly descriptionField?: string | undefined;
|
|
12943
|
+
readonly lookupColumns?: (string | {
|
|
12944
|
+
field: string;
|
|
12945
|
+
label?: string | undefined;
|
|
12946
|
+
width?: string | undefined;
|
|
12947
|
+
type?: string | undefined;
|
|
12948
|
+
})[] | undefined;
|
|
12949
|
+
readonly lookupPageSize?: number | undefined;
|
|
12950
|
+
readonly lookupFilters?: {
|
|
12951
|
+
field: string;
|
|
12952
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
12953
|
+
value: any;
|
|
12954
|
+
}[] | undefined;
|
|
12955
|
+
readonly dependsOn?: (string | {
|
|
12956
|
+
field: string;
|
|
12957
|
+
param?: string | undefined;
|
|
12958
|
+
})[] | undefined;
|
|
12959
|
+
readonly allowCreate?: boolean | undefined;
|
|
11784
12960
|
readonly expression?: {
|
|
11785
12961
|
dialect: "cel" | "js" | "cron" | "template";
|
|
11786
12962
|
source?: string | undefined;
|
|
@@ -11936,6 +13112,25 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11936
13112
|
readonly relatedList?: boolean | undefined;
|
|
11937
13113
|
readonly relatedListTitle?: string | undefined;
|
|
11938
13114
|
readonly relatedListColumns?: any[] | undefined;
|
|
13115
|
+
readonly displayField?: string | undefined;
|
|
13116
|
+
readonly descriptionField?: string | undefined;
|
|
13117
|
+
readonly lookupColumns?: (string | {
|
|
13118
|
+
field: string;
|
|
13119
|
+
label?: string | undefined;
|
|
13120
|
+
width?: string | undefined;
|
|
13121
|
+
type?: string | undefined;
|
|
13122
|
+
})[] | undefined;
|
|
13123
|
+
readonly lookupPageSize?: number | undefined;
|
|
13124
|
+
readonly lookupFilters?: {
|
|
13125
|
+
field: string;
|
|
13126
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
13127
|
+
value: any;
|
|
13128
|
+
}[] | undefined;
|
|
13129
|
+
readonly dependsOn?: (string | {
|
|
13130
|
+
field: string;
|
|
13131
|
+
param?: string | undefined;
|
|
13132
|
+
})[] | undefined;
|
|
13133
|
+
readonly allowCreate?: boolean | undefined;
|
|
11939
13134
|
readonly expression?: {
|
|
11940
13135
|
dialect: "cel" | "js" | "cron" | "template";
|
|
11941
13136
|
source?: string | undefined;
|
|
@@ -12091,6 +13286,25 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12091
13286
|
readonly relatedList?: boolean | undefined;
|
|
12092
13287
|
readonly relatedListTitle?: string | undefined;
|
|
12093
13288
|
readonly relatedListColumns?: any[] | undefined;
|
|
13289
|
+
readonly displayField?: string | undefined;
|
|
13290
|
+
readonly descriptionField?: string | undefined;
|
|
13291
|
+
readonly lookupColumns?: (string | {
|
|
13292
|
+
field: string;
|
|
13293
|
+
label?: string | undefined;
|
|
13294
|
+
width?: string | undefined;
|
|
13295
|
+
type?: string | undefined;
|
|
13296
|
+
})[] | undefined;
|
|
13297
|
+
readonly lookupPageSize?: number | undefined;
|
|
13298
|
+
readonly lookupFilters?: {
|
|
13299
|
+
field: string;
|
|
13300
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
13301
|
+
value: any;
|
|
13302
|
+
}[] | undefined;
|
|
13303
|
+
readonly dependsOn?: (string | {
|
|
13304
|
+
field: string;
|
|
13305
|
+
param?: string | undefined;
|
|
13306
|
+
})[] | undefined;
|
|
13307
|
+
readonly allowCreate?: boolean | undefined;
|
|
12094
13308
|
readonly expression?: {
|
|
12095
13309
|
dialect: "cel" | "js" | "cron" | "template";
|
|
12096
13310
|
source?: string | undefined;
|
|
@@ -12283,6 +13497,25 @@ declare const SysSavedReport: Omit<{
|
|
|
12283
13497
|
relatedList?: boolean | undefined;
|
|
12284
13498
|
relatedListTitle?: string | undefined;
|
|
12285
13499
|
relatedListColumns?: any[] | undefined;
|
|
13500
|
+
displayField?: string | undefined;
|
|
13501
|
+
descriptionField?: string | undefined;
|
|
13502
|
+
lookupColumns?: (string | {
|
|
13503
|
+
field: string;
|
|
13504
|
+
label?: string | undefined;
|
|
13505
|
+
width?: string | undefined;
|
|
13506
|
+
type?: string | undefined;
|
|
13507
|
+
})[] | undefined;
|
|
13508
|
+
lookupPageSize?: number | undefined;
|
|
13509
|
+
lookupFilters?: {
|
|
13510
|
+
field: string;
|
|
13511
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
13512
|
+
value: any;
|
|
13513
|
+
}[] | undefined;
|
|
13514
|
+
dependsOn?: (string | {
|
|
13515
|
+
field: string;
|
|
13516
|
+
param?: string | undefined;
|
|
13517
|
+
})[] | undefined;
|
|
13518
|
+
allowCreate?: boolean | undefined;
|
|
12286
13519
|
expression?: {
|
|
12287
13520
|
dialect: "cel" | "js" | "cron" | "template";
|
|
12288
13521
|
source?: string | undefined;
|
|
@@ -12558,7 +13791,7 @@ declare const SysSavedReport: Omit<{
|
|
|
12558
13791
|
} | undefined;
|
|
12559
13792
|
compactLayout?: string[] | undefined;
|
|
12560
13793
|
listViews?: Record<string, {
|
|
12561
|
-
type: "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
13794
|
+
type: "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
12562
13795
|
columns: string[] | {
|
|
12563
13796
|
field: string;
|
|
12564
13797
|
label?: string | undefined;
|
|
@@ -12675,6 +13908,7 @@ declare const SysSavedReport: Omit<{
|
|
|
12675
13908
|
colorField?: string | undefined;
|
|
12676
13909
|
} | undefined;
|
|
12677
13910
|
gantt?: {
|
|
13911
|
+
[x: string]: unknown;
|
|
12678
13912
|
startDateField: string;
|
|
12679
13913
|
endDateField: string;
|
|
12680
13914
|
titleField: string;
|
|
@@ -12725,6 +13959,13 @@ declare const SysSavedReport: Omit<{
|
|
|
12725
13959
|
values: string[];
|
|
12726
13960
|
dimensions?: string[] | undefined;
|
|
12727
13961
|
} | undefined;
|
|
13962
|
+
tree?: {
|
|
13963
|
+
[x: string]: unknown;
|
|
13964
|
+
parentField?: string | undefined;
|
|
13965
|
+
labelField?: string | undefined;
|
|
13966
|
+
fields?: string[] | undefined;
|
|
13967
|
+
defaultExpandedDepth?: number | undefined;
|
|
13968
|
+
} | undefined;
|
|
12728
13969
|
description?: string | undefined;
|
|
12729
13970
|
sharing?: {
|
|
12730
13971
|
type: "personal" | "collaborative";
|
|
@@ -12780,7 +14021,7 @@ declare const SysSavedReport: Omit<{
|
|
|
12780
14021
|
} | undefined;
|
|
12781
14022
|
appearance?: {
|
|
12782
14023
|
showDescription: boolean;
|
|
12783
|
-
allowedVisualizations?: ("grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
14024
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
12784
14025
|
} | undefined;
|
|
12785
14026
|
tabs?: {
|
|
12786
14027
|
name: string;
|
|
@@ -12849,6 +14090,7 @@ declare const SysSavedReport: Omit<{
|
|
|
12849
14090
|
} | undefined;
|
|
12850
14091
|
}> | undefined;
|
|
12851
14092
|
defaultDetailForm?: string | undefined;
|
|
14093
|
+
searchableFields?: string[] | undefined;
|
|
12852
14094
|
search?: {
|
|
12853
14095
|
fields: string[];
|
|
12854
14096
|
displayFields?: string[] | undefined;
|
|
@@ -13041,6 +14283,25 @@ declare const SysSavedReport: Omit<{
|
|
|
13041
14283
|
readonly relatedList?: boolean | undefined;
|
|
13042
14284
|
readonly relatedListTitle?: string | undefined;
|
|
13043
14285
|
readonly relatedListColumns?: any[] | undefined;
|
|
14286
|
+
readonly displayField?: string | undefined;
|
|
14287
|
+
readonly descriptionField?: string | undefined;
|
|
14288
|
+
readonly lookupColumns?: (string | {
|
|
14289
|
+
field: string;
|
|
14290
|
+
label?: string | undefined;
|
|
14291
|
+
width?: string | undefined;
|
|
14292
|
+
type?: string | undefined;
|
|
14293
|
+
})[] | undefined;
|
|
14294
|
+
readonly lookupPageSize?: number | undefined;
|
|
14295
|
+
readonly lookupFilters?: {
|
|
14296
|
+
field: string;
|
|
14297
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
14298
|
+
value: any;
|
|
14299
|
+
}[] | undefined;
|
|
14300
|
+
readonly dependsOn?: (string | {
|
|
14301
|
+
field: string;
|
|
14302
|
+
param?: string | undefined;
|
|
14303
|
+
})[] | undefined;
|
|
14304
|
+
readonly allowCreate?: boolean | undefined;
|
|
13044
14305
|
readonly expression?: {
|
|
13045
14306
|
dialect: "cel" | "js" | "cron" | "template";
|
|
13046
14307
|
source?: string | undefined;
|
|
@@ -13196,6 +14457,25 @@ declare const SysSavedReport: Omit<{
|
|
|
13196
14457
|
readonly relatedList?: boolean | undefined;
|
|
13197
14458
|
readonly relatedListTitle?: string | undefined;
|
|
13198
14459
|
readonly relatedListColumns?: any[] | undefined;
|
|
14460
|
+
readonly displayField?: string | undefined;
|
|
14461
|
+
readonly descriptionField?: string | undefined;
|
|
14462
|
+
readonly lookupColumns?: (string | {
|
|
14463
|
+
field: string;
|
|
14464
|
+
label?: string | undefined;
|
|
14465
|
+
width?: string | undefined;
|
|
14466
|
+
type?: string | undefined;
|
|
14467
|
+
})[] | undefined;
|
|
14468
|
+
readonly lookupPageSize?: number | undefined;
|
|
14469
|
+
readonly lookupFilters?: {
|
|
14470
|
+
field: string;
|
|
14471
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
14472
|
+
value: any;
|
|
14473
|
+
}[] | undefined;
|
|
14474
|
+
readonly dependsOn?: (string | {
|
|
14475
|
+
field: string;
|
|
14476
|
+
param?: string | undefined;
|
|
14477
|
+
})[] | undefined;
|
|
14478
|
+
readonly allowCreate?: boolean | undefined;
|
|
13199
14479
|
readonly expression?: {
|
|
13200
14480
|
dialect: "cel" | "js" | "cron" | "template";
|
|
13201
14481
|
source?: string | undefined;
|
|
@@ -13351,6 +14631,25 @@ declare const SysSavedReport: Omit<{
|
|
|
13351
14631
|
readonly relatedList?: boolean | undefined;
|
|
13352
14632
|
readonly relatedListTitle?: string | undefined;
|
|
13353
14633
|
readonly relatedListColumns?: any[] | undefined;
|
|
14634
|
+
readonly displayField?: string | undefined;
|
|
14635
|
+
readonly descriptionField?: string | undefined;
|
|
14636
|
+
readonly lookupColumns?: (string | {
|
|
14637
|
+
field: string;
|
|
14638
|
+
label?: string | undefined;
|
|
14639
|
+
width?: string | undefined;
|
|
14640
|
+
type?: string | undefined;
|
|
14641
|
+
})[] | undefined;
|
|
14642
|
+
readonly lookupPageSize?: number | undefined;
|
|
14643
|
+
readonly lookupFilters?: {
|
|
14644
|
+
field: string;
|
|
14645
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
14646
|
+
value: any;
|
|
14647
|
+
}[] | undefined;
|
|
14648
|
+
readonly dependsOn?: (string | {
|
|
14649
|
+
field: string;
|
|
14650
|
+
param?: string | undefined;
|
|
14651
|
+
})[] | undefined;
|
|
14652
|
+
readonly allowCreate?: boolean | undefined;
|
|
13354
14653
|
readonly expression?: {
|
|
13355
14654
|
dialect: "cel" | "js" | "cron" | "template";
|
|
13356
14655
|
source?: string | undefined;
|
|
@@ -13506,6 +14805,25 @@ declare const SysSavedReport: Omit<{
|
|
|
13506
14805
|
readonly relatedList?: boolean | undefined;
|
|
13507
14806
|
readonly relatedListTitle?: string | undefined;
|
|
13508
14807
|
readonly relatedListColumns?: any[] | undefined;
|
|
14808
|
+
readonly displayField?: string | undefined;
|
|
14809
|
+
readonly descriptionField?: string | undefined;
|
|
14810
|
+
readonly lookupColumns?: (string | {
|
|
14811
|
+
field: string;
|
|
14812
|
+
label?: string | undefined;
|
|
14813
|
+
width?: string | undefined;
|
|
14814
|
+
type?: string | undefined;
|
|
14815
|
+
})[] | undefined;
|
|
14816
|
+
readonly lookupPageSize?: number | undefined;
|
|
14817
|
+
readonly lookupFilters?: {
|
|
14818
|
+
field: string;
|
|
14819
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
14820
|
+
value: any;
|
|
14821
|
+
}[] | undefined;
|
|
14822
|
+
readonly dependsOn?: (string | {
|
|
14823
|
+
field: string;
|
|
14824
|
+
param?: string | undefined;
|
|
14825
|
+
})[] | undefined;
|
|
14826
|
+
readonly allowCreate?: boolean | undefined;
|
|
13509
14827
|
readonly expression?: {
|
|
13510
14828
|
dialect: "cel" | "js" | "cron" | "template";
|
|
13511
14829
|
source?: string | undefined;
|
|
@@ -13661,6 +14979,25 @@ declare const SysSavedReport: Omit<{
|
|
|
13661
14979
|
readonly relatedList?: boolean | undefined;
|
|
13662
14980
|
readonly relatedListTitle?: string | undefined;
|
|
13663
14981
|
readonly relatedListColumns?: any[] | undefined;
|
|
14982
|
+
readonly displayField?: string | undefined;
|
|
14983
|
+
readonly descriptionField?: string | undefined;
|
|
14984
|
+
readonly lookupColumns?: (string | {
|
|
14985
|
+
field: string;
|
|
14986
|
+
label?: string | undefined;
|
|
14987
|
+
width?: string | undefined;
|
|
14988
|
+
type?: string | undefined;
|
|
14989
|
+
})[] | undefined;
|
|
14990
|
+
readonly lookupPageSize?: number | undefined;
|
|
14991
|
+
readonly lookupFilters?: {
|
|
14992
|
+
field: string;
|
|
14993
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
14994
|
+
value: any;
|
|
14995
|
+
}[] | undefined;
|
|
14996
|
+
readonly dependsOn?: (string | {
|
|
14997
|
+
field: string;
|
|
14998
|
+
param?: string | undefined;
|
|
14999
|
+
})[] | undefined;
|
|
15000
|
+
readonly allowCreate?: boolean | undefined;
|
|
13664
15001
|
readonly expression?: {
|
|
13665
15002
|
dialect: "cel" | "js" | "cron" | "template";
|
|
13666
15003
|
source?: string | undefined;
|
|
@@ -13816,6 +15153,25 @@ declare const SysSavedReport: Omit<{
|
|
|
13816
15153
|
readonly relatedList?: boolean | undefined;
|
|
13817
15154
|
readonly relatedListTitle?: string | undefined;
|
|
13818
15155
|
readonly relatedListColumns?: any[] | undefined;
|
|
15156
|
+
readonly displayField?: string | undefined;
|
|
15157
|
+
readonly descriptionField?: string | undefined;
|
|
15158
|
+
readonly lookupColumns?: (string | {
|
|
15159
|
+
field: string;
|
|
15160
|
+
label?: string | undefined;
|
|
15161
|
+
width?: string | undefined;
|
|
15162
|
+
type?: string | undefined;
|
|
15163
|
+
})[] | undefined;
|
|
15164
|
+
readonly lookupPageSize?: number | undefined;
|
|
15165
|
+
readonly lookupFilters?: {
|
|
15166
|
+
field: string;
|
|
15167
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
15168
|
+
value: any;
|
|
15169
|
+
}[] | undefined;
|
|
15170
|
+
readonly dependsOn?: (string | {
|
|
15171
|
+
field: string;
|
|
15172
|
+
param?: string | undefined;
|
|
15173
|
+
})[] | undefined;
|
|
15174
|
+
readonly allowCreate?: boolean | undefined;
|
|
13819
15175
|
readonly expression?: {
|
|
13820
15176
|
dialect: "cel" | "js" | "cron" | "template";
|
|
13821
15177
|
source?: string | undefined;
|
|
@@ -13971,6 +15327,25 @@ declare const SysSavedReport: Omit<{
|
|
|
13971
15327
|
readonly relatedList?: boolean | undefined;
|
|
13972
15328
|
readonly relatedListTitle?: string | undefined;
|
|
13973
15329
|
readonly relatedListColumns?: any[] | undefined;
|
|
15330
|
+
readonly displayField?: string | undefined;
|
|
15331
|
+
readonly descriptionField?: string | undefined;
|
|
15332
|
+
readonly lookupColumns?: (string | {
|
|
15333
|
+
field: string;
|
|
15334
|
+
label?: string | undefined;
|
|
15335
|
+
width?: string | undefined;
|
|
15336
|
+
type?: string | undefined;
|
|
15337
|
+
})[] | undefined;
|
|
15338
|
+
readonly lookupPageSize?: number | undefined;
|
|
15339
|
+
readonly lookupFilters?: {
|
|
15340
|
+
field: string;
|
|
15341
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
15342
|
+
value: any;
|
|
15343
|
+
}[] | undefined;
|
|
15344
|
+
readonly dependsOn?: (string | {
|
|
15345
|
+
field: string;
|
|
15346
|
+
param?: string | undefined;
|
|
15347
|
+
})[] | undefined;
|
|
15348
|
+
readonly allowCreate?: boolean | undefined;
|
|
13974
15349
|
readonly expression?: {
|
|
13975
15350
|
dialect: "cel" | "js" | "cron" | "template";
|
|
13976
15351
|
source?: string | undefined;
|
|
@@ -14126,6 +15501,25 @@ declare const SysSavedReport: Omit<{
|
|
|
14126
15501
|
readonly relatedList?: boolean | undefined;
|
|
14127
15502
|
readonly relatedListTitle?: string | undefined;
|
|
14128
15503
|
readonly relatedListColumns?: any[] | undefined;
|
|
15504
|
+
readonly displayField?: string | undefined;
|
|
15505
|
+
readonly descriptionField?: string | undefined;
|
|
15506
|
+
readonly lookupColumns?: (string | {
|
|
15507
|
+
field: string;
|
|
15508
|
+
label?: string | undefined;
|
|
15509
|
+
width?: string | undefined;
|
|
15510
|
+
type?: string | undefined;
|
|
15511
|
+
})[] | undefined;
|
|
15512
|
+
readonly lookupPageSize?: number | undefined;
|
|
15513
|
+
readonly lookupFilters?: {
|
|
15514
|
+
field: string;
|
|
15515
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
15516
|
+
value: any;
|
|
15517
|
+
}[] | undefined;
|
|
15518
|
+
readonly dependsOn?: (string | {
|
|
15519
|
+
field: string;
|
|
15520
|
+
param?: string | undefined;
|
|
15521
|
+
})[] | undefined;
|
|
15522
|
+
readonly allowCreate?: boolean | undefined;
|
|
14129
15523
|
readonly expression?: {
|
|
14130
15524
|
dialect: "cel" | "js" | "cron" | "template";
|
|
14131
15525
|
source?: string | undefined;
|
|
@@ -14281,6 +15675,25 @@ declare const SysSavedReport: Omit<{
|
|
|
14281
15675
|
readonly relatedList?: boolean | undefined;
|
|
14282
15676
|
readonly relatedListTitle?: string | undefined;
|
|
14283
15677
|
readonly relatedListColumns?: any[] | undefined;
|
|
15678
|
+
readonly displayField?: string | undefined;
|
|
15679
|
+
readonly descriptionField?: string | undefined;
|
|
15680
|
+
readonly lookupColumns?: (string | {
|
|
15681
|
+
field: string;
|
|
15682
|
+
label?: string | undefined;
|
|
15683
|
+
width?: string | undefined;
|
|
15684
|
+
type?: string | undefined;
|
|
15685
|
+
})[] | undefined;
|
|
15686
|
+
readonly lookupPageSize?: number | undefined;
|
|
15687
|
+
readonly lookupFilters?: {
|
|
15688
|
+
field: string;
|
|
15689
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
15690
|
+
value: any;
|
|
15691
|
+
}[] | undefined;
|
|
15692
|
+
readonly dependsOn?: (string | {
|
|
15693
|
+
field: string;
|
|
15694
|
+
param?: string | undefined;
|
|
15695
|
+
})[] | undefined;
|
|
15696
|
+
readonly allowCreate?: boolean | undefined;
|
|
14284
15697
|
readonly expression?: {
|
|
14285
15698
|
dialect: "cel" | "js" | "cron" | "template";
|
|
14286
15699
|
source?: string | undefined;
|
|
@@ -14436,7 +15849,26 @@ declare const SysSavedReport: Omit<{
|
|
|
14436
15849
|
readonly relatedList?: boolean | undefined;
|
|
14437
15850
|
readonly relatedListTitle?: string | undefined;
|
|
14438
15851
|
readonly relatedListColumns?: any[] | undefined;
|
|
14439
|
-
readonly
|
|
15852
|
+
readonly displayField?: string | undefined;
|
|
15853
|
+
readonly descriptionField?: string | undefined;
|
|
15854
|
+
readonly lookupColumns?: (string | {
|
|
15855
|
+
field: string;
|
|
15856
|
+
label?: string | undefined;
|
|
15857
|
+
width?: string | undefined;
|
|
15858
|
+
type?: string | undefined;
|
|
15859
|
+
})[] | undefined;
|
|
15860
|
+
readonly lookupPageSize?: number | undefined;
|
|
15861
|
+
readonly lookupFilters?: {
|
|
15862
|
+
field: string;
|
|
15863
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
15864
|
+
value: any;
|
|
15865
|
+
}[] | undefined;
|
|
15866
|
+
readonly dependsOn?: (string | {
|
|
15867
|
+
field: string;
|
|
15868
|
+
param?: string | undefined;
|
|
15869
|
+
})[] | undefined;
|
|
15870
|
+
readonly allowCreate?: boolean | undefined;
|
|
15871
|
+
readonly expression?: {
|
|
14440
15872
|
dialect: "cel" | "js" | "cron" | "template";
|
|
14441
15873
|
source?: string | undefined;
|
|
14442
15874
|
ast?: unknown;
|
|
@@ -14591,6 +16023,25 @@ declare const SysSavedReport: Omit<{
|
|
|
14591
16023
|
readonly relatedList?: boolean | undefined;
|
|
14592
16024
|
readonly relatedListTitle?: string | undefined;
|
|
14593
16025
|
readonly relatedListColumns?: any[] | undefined;
|
|
16026
|
+
readonly displayField?: string | undefined;
|
|
16027
|
+
readonly descriptionField?: string | undefined;
|
|
16028
|
+
readonly lookupColumns?: (string | {
|
|
16029
|
+
field: string;
|
|
16030
|
+
label?: string | undefined;
|
|
16031
|
+
width?: string | undefined;
|
|
16032
|
+
type?: string | undefined;
|
|
16033
|
+
})[] | undefined;
|
|
16034
|
+
readonly lookupPageSize?: number | undefined;
|
|
16035
|
+
readonly lookupFilters?: {
|
|
16036
|
+
field: string;
|
|
16037
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
16038
|
+
value: any;
|
|
16039
|
+
}[] | undefined;
|
|
16040
|
+
readonly dependsOn?: (string | {
|
|
16041
|
+
field: string;
|
|
16042
|
+
param?: string | undefined;
|
|
16043
|
+
})[] | undefined;
|
|
16044
|
+
readonly allowCreate?: boolean | undefined;
|
|
14594
16045
|
readonly expression?: {
|
|
14595
16046
|
dialect: "cel" | "js" | "cron" | "template";
|
|
14596
16047
|
source?: string | undefined;
|
|
@@ -14788,6 +16239,25 @@ declare const SysReportSchedule: Omit<{
|
|
|
14788
16239
|
relatedList?: boolean | undefined;
|
|
14789
16240
|
relatedListTitle?: string | undefined;
|
|
14790
16241
|
relatedListColumns?: any[] | undefined;
|
|
16242
|
+
displayField?: string | undefined;
|
|
16243
|
+
descriptionField?: string | undefined;
|
|
16244
|
+
lookupColumns?: (string | {
|
|
16245
|
+
field: string;
|
|
16246
|
+
label?: string | undefined;
|
|
16247
|
+
width?: string | undefined;
|
|
16248
|
+
type?: string | undefined;
|
|
16249
|
+
})[] | undefined;
|
|
16250
|
+
lookupPageSize?: number | undefined;
|
|
16251
|
+
lookupFilters?: {
|
|
16252
|
+
field: string;
|
|
16253
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
16254
|
+
value: any;
|
|
16255
|
+
}[] | undefined;
|
|
16256
|
+
dependsOn?: (string | {
|
|
16257
|
+
field: string;
|
|
16258
|
+
param?: string | undefined;
|
|
16259
|
+
})[] | undefined;
|
|
16260
|
+
allowCreate?: boolean | undefined;
|
|
14791
16261
|
expression?: {
|
|
14792
16262
|
dialect: "cel" | "js" | "cron" | "template";
|
|
14793
16263
|
source?: string | undefined;
|
|
@@ -15063,7 +16533,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
15063
16533
|
} | undefined;
|
|
15064
16534
|
compactLayout?: string[] | undefined;
|
|
15065
16535
|
listViews?: Record<string, {
|
|
15066
|
-
type: "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
16536
|
+
type: "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
15067
16537
|
columns: string[] | {
|
|
15068
16538
|
field: string;
|
|
15069
16539
|
label?: string | undefined;
|
|
@@ -15180,6 +16650,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
15180
16650
|
colorField?: string | undefined;
|
|
15181
16651
|
} | undefined;
|
|
15182
16652
|
gantt?: {
|
|
16653
|
+
[x: string]: unknown;
|
|
15183
16654
|
startDateField: string;
|
|
15184
16655
|
endDateField: string;
|
|
15185
16656
|
titleField: string;
|
|
@@ -15230,6 +16701,13 @@ declare const SysReportSchedule: Omit<{
|
|
|
15230
16701
|
values: string[];
|
|
15231
16702
|
dimensions?: string[] | undefined;
|
|
15232
16703
|
} | undefined;
|
|
16704
|
+
tree?: {
|
|
16705
|
+
[x: string]: unknown;
|
|
16706
|
+
parentField?: string | undefined;
|
|
16707
|
+
labelField?: string | undefined;
|
|
16708
|
+
fields?: string[] | undefined;
|
|
16709
|
+
defaultExpandedDepth?: number | undefined;
|
|
16710
|
+
} | undefined;
|
|
15233
16711
|
description?: string | undefined;
|
|
15234
16712
|
sharing?: {
|
|
15235
16713
|
type: "personal" | "collaborative";
|
|
@@ -15285,7 +16763,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
15285
16763
|
} | undefined;
|
|
15286
16764
|
appearance?: {
|
|
15287
16765
|
showDescription: boolean;
|
|
15288
|
-
allowedVisualizations?: ("grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
16766
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
15289
16767
|
} | undefined;
|
|
15290
16768
|
tabs?: {
|
|
15291
16769
|
name: string;
|
|
@@ -15354,6 +16832,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
15354
16832
|
} | undefined;
|
|
15355
16833
|
}> | undefined;
|
|
15356
16834
|
defaultDetailForm?: string | undefined;
|
|
16835
|
+
searchableFields?: string[] | undefined;
|
|
15357
16836
|
search?: {
|
|
15358
16837
|
fields: string[];
|
|
15359
16838
|
displayFields?: string[] | undefined;
|
|
@@ -15545,6 +17024,25 @@ declare const SysReportSchedule: Omit<{
|
|
|
15545
17024
|
readonly relatedList?: boolean | undefined;
|
|
15546
17025
|
readonly relatedListTitle?: string | undefined;
|
|
15547
17026
|
readonly relatedListColumns?: any[] | undefined;
|
|
17027
|
+
readonly displayField?: string | undefined;
|
|
17028
|
+
readonly descriptionField?: string | undefined;
|
|
17029
|
+
readonly lookupColumns?: (string | {
|
|
17030
|
+
field: string;
|
|
17031
|
+
label?: string | undefined;
|
|
17032
|
+
width?: string | undefined;
|
|
17033
|
+
type?: string | undefined;
|
|
17034
|
+
})[] | undefined;
|
|
17035
|
+
readonly lookupPageSize?: number | undefined;
|
|
17036
|
+
readonly lookupFilters?: {
|
|
17037
|
+
field: string;
|
|
17038
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
17039
|
+
value: any;
|
|
17040
|
+
}[] | undefined;
|
|
17041
|
+
readonly dependsOn?: (string | {
|
|
17042
|
+
field: string;
|
|
17043
|
+
param?: string | undefined;
|
|
17044
|
+
})[] | undefined;
|
|
17045
|
+
readonly allowCreate?: boolean | undefined;
|
|
15548
17046
|
readonly expression?: {
|
|
15549
17047
|
dialect: "cel" | "js" | "cron" | "template";
|
|
15550
17048
|
source?: string | undefined;
|
|
@@ -15700,6 +17198,25 @@ declare const SysReportSchedule: Omit<{
|
|
|
15700
17198
|
readonly relatedList?: boolean | undefined;
|
|
15701
17199
|
readonly relatedListTitle?: string | undefined;
|
|
15702
17200
|
readonly relatedListColumns?: any[] | undefined;
|
|
17201
|
+
readonly displayField?: string | undefined;
|
|
17202
|
+
readonly descriptionField?: string | undefined;
|
|
17203
|
+
readonly lookupColumns?: (string | {
|
|
17204
|
+
field: string;
|
|
17205
|
+
label?: string | undefined;
|
|
17206
|
+
width?: string | undefined;
|
|
17207
|
+
type?: string | undefined;
|
|
17208
|
+
})[] | undefined;
|
|
17209
|
+
readonly lookupPageSize?: number | undefined;
|
|
17210
|
+
readonly lookupFilters?: {
|
|
17211
|
+
field: string;
|
|
17212
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
17213
|
+
value: any;
|
|
17214
|
+
}[] | undefined;
|
|
17215
|
+
readonly dependsOn?: (string | {
|
|
17216
|
+
field: string;
|
|
17217
|
+
param?: string | undefined;
|
|
17218
|
+
})[] | undefined;
|
|
17219
|
+
readonly allowCreate?: boolean | undefined;
|
|
15703
17220
|
readonly expression?: {
|
|
15704
17221
|
dialect: "cel" | "js" | "cron" | "template";
|
|
15705
17222
|
source?: string | undefined;
|
|
@@ -15855,6 +17372,25 @@ declare const SysReportSchedule: Omit<{
|
|
|
15855
17372
|
readonly relatedList?: boolean | undefined;
|
|
15856
17373
|
readonly relatedListTitle?: string | undefined;
|
|
15857
17374
|
readonly relatedListColumns?: any[] | undefined;
|
|
17375
|
+
readonly displayField?: string | undefined;
|
|
17376
|
+
readonly descriptionField?: string | undefined;
|
|
17377
|
+
readonly lookupColumns?: (string | {
|
|
17378
|
+
field: string;
|
|
17379
|
+
label?: string | undefined;
|
|
17380
|
+
width?: string | undefined;
|
|
17381
|
+
type?: string | undefined;
|
|
17382
|
+
})[] | undefined;
|
|
17383
|
+
readonly lookupPageSize?: number | undefined;
|
|
17384
|
+
readonly lookupFilters?: {
|
|
17385
|
+
field: string;
|
|
17386
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
17387
|
+
value: any;
|
|
17388
|
+
}[] | undefined;
|
|
17389
|
+
readonly dependsOn?: (string | {
|
|
17390
|
+
field: string;
|
|
17391
|
+
param?: string | undefined;
|
|
17392
|
+
})[] | undefined;
|
|
17393
|
+
readonly allowCreate?: boolean | undefined;
|
|
15858
17394
|
readonly expression?: {
|
|
15859
17395
|
dialect: "cel" | "js" | "cron" | "template";
|
|
15860
17396
|
source?: string | undefined;
|
|
@@ -16010,6 +17546,25 @@ declare const SysReportSchedule: Omit<{
|
|
|
16010
17546
|
readonly relatedList?: boolean | undefined;
|
|
16011
17547
|
readonly relatedListTitle?: string | undefined;
|
|
16012
17548
|
readonly relatedListColumns?: any[] | undefined;
|
|
17549
|
+
readonly displayField?: string | undefined;
|
|
17550
|
+
readonly descriptionField?: string | undefined;
|
|
17551
|
+
readonly lookupColumns?: (string | {
|
|
17552
|
+
field: string;
|
|
17553
|
+
label?: string | undefined;
|
|
17554
|
+
width?: string | undefined;
|
|
17555
|
+
type?: string | undefined;
|
|
17556
|
+
})[] | undefined;
|
|
17557
|
+
readonly lookupPageSize?: number | undefined;
|
|
17558
|
+
readonly lookupFilters?: {
|
|
17559
|
+
field: string;
|
|
17560
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
17561
|
+
value: any;
|
|
17562
|
+
}[] | undefined;
|
|
17563
|
+
readonly dependsOn?: (string | {
|
|
17564
|
+
field: string;
|
|
17565
|
+
param?: string | undefined;
|
|
17566
|
+
})[] | undefined;
|
|
17567
|
+
readonly allowCreate?: boolean | undefined;
|
|
16013
17568
|
readonly expression?: {
|
|
16014
17569
|
dialect: "cel" | "js" | "cron" | "template";
|
|
16015
17570
|
source?: string | undefined;
|
|
@@ -16165,6 +17720,25 @@ declare const SysReportSchedule: Omit<{
|
|
|
16165
17720
|
readonly relatedList?: boolean | undefined;
|
|
16166
17721
|
readonly relatedListTitle?: string | undefined;
|
|
16167
17722
|
readonly relatedListColumns?: any[] | undefined;
|
|
17723
|
+
readonly displayField?: string | undefined;
|
|
17724
|
+
readonly descriptionField?: string | undefined;
|
|
17725
|
+
readonly lookupColumns?: (string | {
|
|
17726
|
+
field: string;
|
|
17727
|
+
label?: string | undefined;
|
|
17728
|
+
width?: string | undefined;
|
|
17729
|
+
type?: string | undefined;
|
|
17730
|
+
})[] | undefined;
|
|
17731
|
+
readonly lookupPageSize?: number | undefined;
|
|
17732
|
+
readonly lookupFilters?: {
|
|
17733
|
+
field: string;
|
|
17734
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
17735
|
+
value: any;
|
|
17736
|
+
}[] | undefined;
|
|
17737
|
+
readonly dependsOn?: (string | {
|
|
17738
|
+
field: string;
|
|
17739
|
+
param?: string | undefined;
|
|
17740
|
+
})[] | undefined;
|
|
17741
|
+
readonly allowCreate?: boolean | undefined;
|
|
16168
17742
|
readonly expression?: {
|
|
16169
17743
|
dialect: "cel" | "js" | "cron" | "template";
|
|
16170
17744
|
source?: string | undefined;
|
|
@@ -16320,6 +17894,25 @@ declare const SysReportSchedule: Omit<{
|
|
|
16320
17894
|
readonly relatedList?: boolean | undefined;
|
|
16321
17895
|
readonly relatedListTitle?: string | undefined;
|
|
16322
17896
|
readonly relatedListColumns?: any[] | undefined;
|
|
17897
|
+
readonly displayField?: string | undefined;
|
|
17898
|
+
readonly descriptionField?: string | undefined;
|
|
17899
|
+
readonly lookupColumns?: (string | {
|
|
17900
|
+
field: string;
|
|
17901
|
+
label?: string | undefined;
|
|
17902
|
+
width?: string | undefined;
|
|
17903
|
+
type?: string | undefined;
|
|
17904
|
+
})[] | undefined;
|
|
17905
|
+
readonly lookupPageSize?: number | undefined;
|
|
17906
|
+
readonly lookupFilters?: {
|
|
17907
|
+
field: string;
|
|
17908
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
17909
|
+
value: any;
|
|
17910
|
+
}[] | undefined;
|
|
17911
|
+
readonly dependsOn?: (string | {
|
|
17912
|
+
field: string;
|
|
17913
|
+
param?: string | undefined;
|
|
17914
|
+
})[] | undefined;
|
|
17915
|
+
readonly allowCreate?: boolean | undefined;
|
|
16323
17916
|
readonly expression?: {
|
|
16324
17917
|
dialect: "cel" | "js" | "cron" | "template";
|
|
16325
17918
|
source?: string | undefined;
|
|
@@ -16475,6 +18068,25 @@ declare const SysReportSchedule: Omit<{
|
|
|
16475
18068
|
readonly relatedList?: boolean | undefined;
|
|
16476
18069
|
readonly relatedListTitle?: string | undefined;
|
|
16477
18070
|
readonly relatedListColumns?: any[] | undefined;
|
|
18071
|
+
readonly displayField?: string | undefined;
|
|
18072
|
+
readonly descriptionField?: string | undefined;
|
|
18073
|
+
readonly lookupColumns?: (string | {
|
|
18074
|
+
field: string;
|
|
18075
|
+
label?: string | undefined;
|
|
18076
|
+
width?: string | undefined;
|
|
18077
|
+
type?: string | undefined;
|
|
18078
|
+
})[] | undefined;
|
|
18079
|
+
readonly lookupPageSize?: number | undefined;
|
|
18080
|
+
readonly lookupFilters?: {
|
|
18081
|
+
field: string;
|
|
18082
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
18083
|
+
value: any;
|
|
18084
|
+
}[] | undefined;
|
|
18085
|
+
readonly dependsOn?: (string | {
|
|
18086
|
+
field: string;
|
|
18087
|
+
param?: string | undefined;
|
|
18088
|
+
})[] | undefined;
|
|
18089
|
+
readonly allowCreate?: boolean | undefined;
|
|
16478
18090
|
readonly expression?: {
|
|
16479
18091
|
dialect: "cel" | "js" | "cron" | "template";
|
|
16480
18092
|
source?: string | undefined;
|
|
@@ -16630,6 +18242,25 @@ declare const SysReportSchedule: Omit<{
|
|
|
16630
18242
|
readonly relatedList?: boolean | undefined;
|
|
16631
18243
|
readonly relatedListTitle?: string | undefined;
|
|
16632
18244
|
readonly relatedListColumns?: any[] | undefined;
|
|
18245
|
+
readonly displayField?: string | undefined;
|
|
18246
|
+
readonly descriptionField?: string | undefined;
|
|
18247
|
+
readonly lookupColumns?: (string | {
|
|
18248
|
+
field: string;
|
|
18249
|
+
label?: string | undefined;
|
|
18250
|
+
width?: string | undefined;
|
|
18251
|
+
type?: string | undefined;
|
|
18252
|
+
})[] | undefined;
|
|
18253
|
+
readonly lookupPageSize?: number | undefined;
|
|
18254
|
+
readonly lookupFilters?: {
|
|
18255
|
+
field: string;
|
|
18256
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
18257
|
+
value: any;
|
|
18258
|
+
}[] | undefined;
|
|
18259
|
+
readonly dependsOn?: (string | {
|
|
18260
|
+
field: string;
|
|
18261
|
+
param?: string | undefined;
|
|
18262
|
+
})[] | undefined;
|
|
18263
|
+
readonly allowCreate?: boolean | undefined;
|
|
16633
18264
|
readonly expression?: {
|
|
16634
18265
|
dialect: "cel" | "js" | "cron" | "template";
|
|
16635
18266
|
source?: string | undefined;
|
|
@@ -16785,6 +18416,25 @@ declare const SysReportSchedule: Omit<{
|
|
|
16785
18416
|
readonly relatedList?: boolean | undefined;
|
|
16786
18417
|
readonly relatedListTitle?: string | undefined;
|
|
16787
18418
|
readonly relatedListColumns?: any[] | undefined;
|
|
18419
|
+
readonly displayField?: string | undefined;
|
|
18420
|
+
readonly descriptionField?: string | undefined;
|
|
18421
|
+
readonly lookupColumns?: (string | {
|
|
18422
|
+
field: string;
|
|
18423
|
+
label?: string | undefined;
|
|
18424
|
+
width?: string | undefined;
|
|
18425
|
+
type?: string | undefined;
|
|
18426
|
+
})[] | undefined;
|
|
18427
|
+
readonly lookupPageSize?: number | undefined;
|
|
18428
|
+
readonly lookupFilters?: {
|
|
18429
|
+
field: string;
|
|
18430
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
18431
|
+
value: any;
|
|
18432
|
+
}[] | undefined;
|
|
18433
|
+
readonly dependsOn?: (string | {
|
|
18434
|
+
field: string;
|
|
18435
|
+
param?: string | undefined;
|
|
18436
|
+
})[] | undefined;
|
|
18437
|
+
readonly allowCreate?: boolean | undefined;
|
|
16788
18438
|
readonly expression?: {
|
|
16789
18439
|
dialect: "cel" | "js" | "cron" | "template";
|
|
16790
18440
|
source?: string | undefined;
|
|
@@ -16940,6 +18590,25 @@ declare const SysReportSchedule: Omit<{
|
|
|
16940
18590
|
readonly relatedList?: boolean | undefined;
|
|
16941
18591
|
readonly relatedListTitle?: string | undefined;
|
|
16942
18592
|
readonly relatedListColumns?: any[] | undefined;
|
|
18593
|
+
readonly displayField?: string | undefined;
|
|
18594
|
+
readonly descriptionField?: string | undefined;
|
|
18595
|
+
readonly lookupColumns?: (string | {
|
|
18596
|
+
field: string;
|
|
18597
|
+
label?: string | undefined;
|
|
18598
|
+
width?: string | undefined;
|
|
18599
|
+
type?: string | undefined;
|
|
18600
|
+
})[] | undefined;
|
|
18601
|
+
readonly lookupPageSize?: number | undefined;
|
|
18602
|
+
readonly lookupFilters?: {
|
|
18603
|
+
field: string;
|
|
18604
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
18605
|
+
value: any;
|
|
18606
|
+
}[] | undefined;
|
|
18607
|
+
readonly dependsOn?: (string | {
|
|
18608
|
+
field: string;
|
|
18609
|
+
param?: string | undefined;
|
|
18610
|
+
})[] | undefined;
|
|
18611
|
+
readonly allowCreate?: boolean | undefined;
|
|
16943
18612
|
readonly expression?: {
|
|
16944
18613
|
dialect: "cel" | "js" | "cron" | "template";
|
|
16945
18614
|
source?: string | undefined;
|
|
@@ -17095,6 +18764,25 @@ declare const SysReportSchedule: Omit<{
|
|
|
17095
18764
|
readonly relatedList?: boolean | undefined;
|
|
17096
18765
|
readonly relatedListTitle?: string | undefined;
|
|
17097
18766
|
readonly relatedListColumns?: any[] | undefined;
|
|
18767
|
+
readonly displayField?: string | undefined;
|
|
18768
|
+
readonly descriptionField?: string | undefined;
|
|
18769
|
+
readonly lookupColumns?: (string | {
|
|
18770
|
+
field: string;
|
|
18771
|
+
label?: string | undefined;
|
|
18772
|
+
width?: string | undefined;
|
|
18773
|
+
type?: string | undefined;
|
|
18774
|
+
})[] | undefined;
|
|
18775
|
+
readonly lookupPageSize?: number | undefined;
|
|
18776
|
+
readonly lookupFilters?: {
|
|
18777
|
+
field: string;
|
|
18778
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
18779
|
+
value: any;
|
|
18780
|
+
}[] | undefined;
|
|
18781
|
+
readonly dependsOn?: (string | {
|
|
18782
|
+
field: string;
|
|
18783
|
+
param?: string | undefined;
|
|
18784
|
+
})[] | undefined;
|
|
18785
|
+
readonly allowCreate?: boolean | undefined;
|
|
17098
18786
|
readonly expression?: {
|
|
17099
18787
|
dialect: "cel" | "js" | "cron" | "template";
|
|
17100
18788
|
source?: string | undefined;
|
|
@@ -17250,6 +18938,25 @@ declare const SysReportSchedule: Omit<{
|
|
|
17250
18938
|
readonly relatedList?: boolean | undefined;
|
|
17251
18939
|
readonly relatedListTitle?: string | undefined;
|
|
17252
18940
|
readonly relatedListColumns?: any[] | undefined;
|
|
18941
|
+
readonly displayField?: string | undefined;
|
|
18942
|
+
readonly descriptionField?: string | undefined;
|
|
18943
|
+
readonly lookupColumns?: (string | {
|
|
18944
|
+
field: string;
|
|
18945
|
+
label?: string | undefined;
|
|
18946
|
+
width?: string | undefined;
|
|
18947
|
+
type?: string | undefined;
|
|
18948
|
+
})[] | undefined;
|
|
18949
|
+
readonly lookupPageSize?: number | undefined;
|
|
18950
|
+
readonly lookupFilters?: {
|
|
18951
|
+
field: string;
|
|
18952
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
18953
|
+
value: any;
|
|
18954
|
+
}[] | undefined;
|
|
18955
|
+
readonly dependsOn?: (string | {
|
|
18956
|
+
field: string;
|
|
18957
|
+
param?: string | undefined;
|
|
18958
|
+
})[] | undefined;
|
|
18959
|
+
readonly allowCreate?: boolean | undefined;
|
|
17253
18960
|
readonly expression?: {
|
|
17254
18961
|
dialect: "cel" | "js" | "cron" | "template";
|
|
17255
18962
|
source?: string | undefined;
|
|
@@ -17405,6 +19112,25 @@ declare const SysReportSchedule: Omit<{
|
|
|
17405
19112
|
readonly relatedList?: boolean | undefined;
|
|
17406
19113
|
readonly relatedListTitle?: string | undefined;
|
|
17407
19114
|
readonly relatedListColumns?: any[] | undefined;
|
|
19115
|
+
readonly displayField?: string | undefined;
|
|
19116
|
+
readonly descriptionField?: string | undefined;
|
|
19117
|
+
readonly lookupColumns?: (string | {
|
|
19118
|
+
field: string;
|
|
19119
|
+
label?: string | undefined;
|
|
19120
|
+
width?: string | undefined;
|
|
19121
|
+
type?: string | undefined;
|
|
19122
|
+
})[] | undefined;
|
|
19123
|
+
readonly lookupPageSize?: number | undefined;
|
|
19124
|
+
readonly lookupFilters?: {
|
|
19125
|
+
field: string;
|
|
19126
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
19127
|
+
value: any;
|
|
19128
|
+
}[] | undefined;
|
|
19129
|
+
readonly dependsOn?: (string | {
|
|
19130
|
+
field: string;
|
|
19131
|
+
param?: string | undefined;
|
|
19132
|
+
})[] | undefined;
|
|
19133
|
+
readonly allowCreate?: boolean | undefined;
|
|
17408
19134
|
readonly expression?: {
|
|
17409
19135
|
dialect: "cel" | "js" | "cron" | "template";
|
|
17410
19136
|
source?: string | undefined;
|
|
@@ -17560,6 +19286,25 @@ declare const SysReportSchedule: Omit<{
|
|
|
17560
19286
|
readonly relatedList?: boolean | undefined;
|
|
17561
19287
|
readonly relatedListTitle?: string | undefined;
|
|
17562
19288
|
readonly relatedListColumns?: any[] | undefined;
|
|
19289
|
+
readonly displayField?: string | undefined;
|
|
19290
|
+
readonly descriptionField?: string | undefined;
|
|
19291
|
+
readonly lookupColumns?: (string | {
|
|
19292
|
+
field: string;
|
|
19293
|
+
label?: string | undefined;
|
|
19294
|
+
width?: string | undefined;
|
|
19295
|
+
type?: string | undefined;
|
|
19296
|
+
})[] | undefined;
|
|
19297
|
+
readonly lookupPageSize?: number | undefined;
|
|
19298
|
+
readonly lookupFilters?: {
|
|
19299
|
+
field: string;
|
|
19300
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
19301
|
+
value: any;
|
|
19302
|
+
}[] | undefined;
|
|
19303
|
+
readonly dependsOn?: (string | {
|
|
19304
|
+
field: string;
|
|
19305
|
+
param?: string | undefined;
|
|
19306
|
+
})[] | undefined;
|
|
19307
|
+
readonly allowCreate?: boolean | undefined;
|
|
17563
19308
|
readonly expression?: {
|
|
17564
19309
|
dialect: "cel" | "js" | "cron" | "template";
|
|
17565
19310
|
source?: string | undefined;
|
|
@@ -17715,6 +19460,25 @@ declare const SysReportSchedule: Omit<{
|
|
|
17715
19460
|
readonly relatedList?: boolean | undefined;
|
|
17716
19461
|
readonly relatedListTitle?: string | undefined;
|
|
17717
19462
|
readonly relatedListColumns?: any[] | undefined;
|
|
19463
|
+
readonly displayField?: string | undefined;
|
|
19464
|
+
readonly descriptionField?: string | undefined;
|
|
19465
|
+
readonly lookupColumns?: (string | {
|
|
19466
|
+
field: string;
|
|
19467
|
+
label?: string | undefined;
|
|
19468
|
+
width?: string | undefined;
|
|
19469
|
+
type?: string | undefined;
|
|
19470
|
+
})[] | undefined;
|
|
19471
|
+
readonly lookupPageSize?: number | undefined;
|
|
19472
|
+
readonly lookupFilters?: {
|
|
19473
|
+
field: string;
|
|
19474
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
19475
|
+
value: any;
|
|
19476
|
+
}[] | undefined;
|
|
19477
|
+
readonly dependsOn?: (string | {
|
|
19478
|
+
field: string;
|
|
19479
|
+
param?: string | undefined;
|
|
19480
|
+
})[] | undefined;
|
|
19481
|
+
readonly allowCreate?: boolean | undefined;
|
|
17718
19482
|
readonly expression?: {
|
|
17719
19483
|
dialect: "cel" | "js" | "cron" | "template";
|
|
17720
19484
|
source?: string | undefined;
|
|
@@ -17870,6 +19634,25 @@ declare const SysReportSchedule: Omit<{
|
|
|
17870
19634
|
readonly relatedList?: boolean | undefined;
|
|
17871
19635
|
readonly relatedListTitle?: string | undefined;
|
|
17872
19636
|
readonly relatedListColumns?: any[] | undefined;
|
|
19637
|
+
readonly displayField?: string | undefined;
|
|
19638
|
+
readonly descriptionField?: string | undefined;
|
|
19639
|
+
readonly lookupColumns?: (string | {
|
|
19640
|
+
field: string;
|
|
19641
|
+
label?: string | undefined;
|
|
19642
|
+
width?: string | undefined;
|
|
19643
|
+
type?: string | undefined;
|
|
19644
|
+
})[] | undefined;
|
|
19645
|
+
readonly lookupPageSize?: number | undefined;
|
|
19646
|
+
readonly lookupFilters?: {
|
|
19647
|
+
field: string;
|
|
19648
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
19649
|
+
value: any;
|
|
19650
|
+
}[] | undefined;
|
|
19651
|
+
readonly dependsOn?: (string | {
|
|
19652
|
+
field: string;
|
|
19653
|
+
param?: string | undefined;
|
|
19654
|
+
})[] | undefined;
|
|
19655
|
+
readonly allowCreate?: boolean | undefined;
|
|
17873
19656
|
readonly expression?: {
|
|
17874
19657
|
dialect: "cel" | "js" | "cron" | "template";
|
|
17875
19658
|
source?: string | undefined;
|
|
@@ -18025,6 +19808,25 @@ declare const SysReportSchedule: Omit<{
|
|
|
18025
19808
|
readonly relatedList?: boolean | undefined;
|
|
18026
19809
|
readonly relatedListTitle?: string | undefined;
|
|
18027
19810
|
readonly relatedListColumns?: any[] | undefined;
|
|
19811
|
+
readonly displayField?: string | undefined;
|
|
19812
|
+
readonly descriptionField?: string | undefined;
|
|
19813
|
+
readonly lookupColumns?: (string | {
|
|
19814
|
+
field: string;
|
|
19815
|
+
label?: string | undefined;
|
|
19816
|
+
width?: string | undefined;
|
|
19817
|
+
type?: string | undefined;
|
|
19818
|
+
})[] | undefined;
|
|
19819
|
+
readonly lookupPageSize?: number | undefined;
|
|
19820
|
+
readonly lookupFilters?: {
|
|
19821
|
+
field: string;
|
|
19822
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
19823
|
+
value: any;
|
|
19824
|
+
}[] | undefined;
|
|
19825
|
+
readonly dependsOn?: (string | {
|
|
19826
|
+
field: string;
|
|
19827
|
+
param?: string | undefined;
|
|
19828
|
+
})[] | undefined;
|
|
19829
|
+
readonly allowCreate?: boolean | undefined;
|
|
18028
19830
|
readonly expression?: {
|
|
18029
19831
|
dialect: "cel" | "js" | "cron" | "template";
|
|
18030
19832
|
source?: string | undefined;
|
|
@@ -18208,6 +20010,25 @@ declare const SysJob: Omit<{
|
|
|
18208
20010
|
relatedList?: boolean | undefined;
|
|
18209
20011
|
relatedListTitle?: string | undefined;
|
|
18210
20012
|
relatedListColumns?: any[] | undefined;
|
|
20013
|
+
displayField?: string | undefined;
|
|
20014
|
+
descriptionField?: string | undefined;
|
|
20015
|
+
lookupColumns?: (string | {
|
|
20016
|
+
field: string;
|
|
20017
|
+
label?: string | undefined;
|
|
20018
|
+
width?: string | undefined;
|
|
20019
|
+
type?: string | undefined;
|
|
20020
|
+
})[] | undefined;
|
|
20021
|
+
lookupPageSize?: number | undefined;
|
|
20022
|
+
lookupFilters?: {
|
|
20023
|
+
field: string;
|
|
20024
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
20025
|
+
value: any;
|
|
20026
|
+
}[] | undefined;
|
|
20027
|
+
dependsOn?: (string | {
|
|
20028
|
+
field: string;
|
|
20029
|
+
param?: string | undefined;
|
|
20030
|
+
})[] | undefined;
|
|
20031
|
+
allowCreate?: boolean | undefined;
|
|
18211
20032
|
expression?: {
|
|
18212
20033
|
dialect: "cel" | "js" | "cron" | "template";
|
|
18213
20034
|
source?: string | undefined;
|
|
@@ -18483,7 +20304,7 @@ declare const SysJob: Omit<{
|
|
|
18483
20304
|
} | undefined;
|
|
18484
20305
|
compactLayout?: string[] | undefined;
|
|
18485
20306
|
listViews?: Record<string, {
|
|
18486
|
-
type: "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
20307
|
+
type: "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
18487
20308
|
columns: string[] | {
|
|
18488
20309
|
field: string;
|
|
18489
20310
|
label?: string | undefined;
|
|
@@ -18600,6 +20421,7 @@ declare const SysJob: Omit<{
|
|
|
18600
20421
|
colorField?: string | undefined;
|
|
18601
20422
|
} | undefined;
|
|
18602
20423
|
gantt?: {
|
|
20424
|
+
[x: string]: unknown;
|
|
18603
20425
|
startDateField: string;
|
|
18604
20426
|
endDateField: string;
|
|
18605
20427
|
titleField: string;
|
|
@@ -18650,6 +20472,13 @@ declare const SysJob: Omit<{
|
|
|
18650
20472
|
values: string[];
|
|
18651
20473
|
dimensions?: string[] | undefined;
|
|
18652
20474
|
} | undefined;
|
|
20475
|
+
tree?: {
|
|
20476
|
+
[x: string]: unknown;
|
|
20477
|
+
parentField?: string | undefined;
|
|
20478
|
+
labelField?: string | undefined;
|
|
20479
|
+
fields?: string[] | undefined;
|
|
20480
|
+
defaultExpandedDepth?: number | undefined;
|
|
20481
|
+
} | undefined;
|
|
18653
20482
|
description?: string | undefined;
|
|
18654
20483
|
sharing?: {
|
|
18655
20484
|
type: "personal" | "collaborative";
|
|
@@ -18705,7 +20534,7 @@ declare const SysJob: Omit<{
|
|
|
18705
20534
|
} | undefined;
|
|
18706
20535
|
appearance?: {
|
|
18707
20536
|
showDescription: boolean;
|
|
18708
|
-
allowedVisualizations?: ("grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
20537
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
18709
20538
|
} | undefined;
|
|
18710
20539
|
tabs?: {
|
|
18711
20540
|
name: string;
|
|
@@ -18774,6 +20603,7 @@ declare const SysJob: Omit<{
|
|
|
18774
20603
|
} | undefined;
|
|
18775
20604
|
}> | undefined;
|
|
18776
20605
|
defaultDetailForm?: string | undefined;
|
|
20606
|
+
searchableFields?: string[] | undefined;
|
|
18777
20607
|
search?: {
|
|
18778
20608
|
fields: string[];
|
|
18779
20609
|
displayFields?: string[] | undefined;
|
|
@@ -18966,6 +20796,25 @@ declare const SysJob: Omit<{
|
|
|
18966
20796
|
readonly relatedList?: boolean | undefined;
|
|
18967
20797
|
readonly relatedListTitle?: string | undefined;
|
|
18968
20798
|
readonly relatedListColumns?: any[] | undefined;
|
|
20799
|
+
readonly displayField?: string | undefined;
|
|
20800
|
+
readonly descriptionField?: string | undefined;
|
|
20801
|
+
readonly lookupColumns?: (string | {
|
|
20802
|
+
field: string;
|
|
20803
|
+
label?: string | undefined;
|
|
20804
|
+
width?: string | undefined;
|
|
20805
|
+
type?: string | undefined;
|
|
20806
|
+
})[] | undefined;
|
|
20807
|
+
readonly lookupPageSize?: number | undefined;
|
|
20808
|
+
readonly lookupFilters?: {
|
|
20809
|
+
field: string;
|
|
20810
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
20811
|
+
value: any;
|
|
20812
|
+
}[] | undefined;
|
|
20813
|
+
readonly dependsOn?: (string | {
|
|
20814
|
+
field: string;
|
|
20815
|
+
param?: string | undefined;
|
|
20816
|
+
})[] | undefined;
|
|
20817
|
+
readonly allowCreate?: boolean | undefined;
|
|
18969
20818
|
readonly expression?: {
|
|
18970
20819
|
dialect: "cel" | "js" | "cron" | "template";
|
|
18971
20820
|
source?: string | undefined;
|
|
@@ -19121,6 +20970,25 @@ declare const SysJob: Omit<{
|
|
|
19121
20970
|
readonly relatedList?: boolean | undefined;
|
|
19122
20971
|
readonly relatedListTitle?: string | undefined;
|
|
19123
20972
|
readonly relatedListColumns?: any[] | undefined;
|
|
20973
|
+
readonly displayField?: string | undefined;
|
|
20974
|
+
readonly descriptionField?: string | undefined;
|
|
20975
|
+
readonly lookupColumns?: (string | {
|
|
20976
|
+
field: string;
|
|
20977
|
+
label?: string | undefined;
|
|
20978
|
+
width?: string | undefined;
|
|
20979
|
+
type?: string | undefined;
|
|
20980
|
+
})[] | undefined;
|
|
20981
|
+
readonly lookupPageSize?: number | undefined;
|
|
20982
|
+
readonly lookupFilters?: {
|
|
20983
|
+
field: string;
|
|
20984
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
20985
|
+
value: any;
|
|
20986
|
+
}[] | undefined;
|
|
20987
|
+
readonly dependsOn?: (string | {
|
|
20988
|
+
field: string;
|
|
20989
|
+
param?: string | undefined;
|
|
20990
|
+
})[] | undefined;
|
|
20991
|
+
readonly allowCreate?: boolean | undefined;
|
|
19124
20992
|
readonly expression?: {
|
|
19125
20993
|
dialect: "cel" | "js" | "cron" | "template";
|
|
19126
20994
|
source?: string | undefined;
|
|
@@ -19276,6 +21144,25 @@ declare const SysJob: Omit<{
|
|
|
19276
21144
|
readonly relatedList?: boolean | undefined;
|
|
19277
21145
|
readonly relatedListTitle?: string | undefined;
|
|
19278
21146
|
readonly relatedListColumns?: any[] | undefined;
|
|
21147
|
+
readonly displayField?: string | undefined;
|
|
21148
|
+
readonly descriptionField?: string | undefined;
|
|
21149
|
+
readonly lookupColumns?: (string | {
|
|
21150
|
+
field: string;
|
|
21151
|
+
label?: string | undefined;
|
|
21152
|
+
width?: string | undefined;
|
|
21153
|
+
type?: string | undefined;
|
|
21154
|
+
})[] | undefined;
|
|
21155
|
+
readonly lookupPageSize?: number | undefined;
|
|
21156
|
+
readonly lookupFilters?: {
|
|
21157
|
+
field: string;
|
|
21158
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
21159
|
+
value: any;
|
|
21160
|
+
}[] | undefined;
|
|
21161
|
+
readonly dependsOn?: (string | {
|
|
21162
|
+
field: string;
|
|
21163
|
+
param?: string | undefined;
|
|
21164
|
+
})[] | undefined;
|
|
21165
|
+
readonly allowCreate?: boolean | undefined;
|
|
19279
21166
|
readonly expression?: {
|
|
19280
21167
|
dialect: "cel" | "js" | "cron" | "template";
|
|
19281
21168
|
source?: string | undefined;
|
|
@@ -19431,6 +21318,25 @@ declare const SysJob: Omit<{
|
|
|
19431
21318
|
readonly relatedList?: boolean | undefined;
|
|
19432
21319
|
readonly relatedListTitle?: string | undefined;
|
|
19433
21320
|
readonly relatedListColumns?: any[] | undefined;
|
|
21321
|
+
readonly displayField?: string | undefined;
|
|
21322
|
+
readonly descriptionField?: string | undefined;
|
|
21323
|
+
readonly lookupColumns?: (string | {
|
|
21324
|
+
field: string;
|
|
21325
|
+
label?: string | undefined;
|
|
21326
|
+
width?: string | undefined;
|
|
21327
|
+
type?: string | undefined;
|
|
21328
|
+
})[] | undefined;
|
|
21329
|
+
readonly lookupPageSize?: number | undefined;
|
|
21330
|
+
readonly lookupFilters?: {
|
|
21331
|
+
field: string;
|
|
21332
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
21333
|
+
value: any;
|
|
21334
|
+
}[] | undefined;
|
|
21335
|
+
readonly dependsOn?: (string | {
|
|
21336
|
+
field: string;
|
|
21337
|
+
param?: string | undefined;
|
|
21338
|
+
})[] | undefined;
|
|
21339
|
+
readonly allowCreate?: boolean | undefined;
|
|
19434
21340
|
readonly expression?: {
|
|
19435
21341
|
dialect: "cel" | "js" | "cron" | "template";
|
|
19436
21342
|
source?: string | undefined;
|
|
@@ -19586,6 +21492,25 @@ declare const SysJob: Omit<{
|
|
|
19586
21492
|
readonly relatedList?: boolean | undefined;
|
|
19587
21493
|
readonly relatedListTitle?: string | undefined;
|
|
19588
21494
|
readonly relatedListColumns?: any[] | undefined;
|
|
21495
|
+
readonly displayField?: string | undefined;
|
|
21496
|
+
readonly descriptionField?: string | undefined;
|
|
21497
|
+
readonly lookupColumns?: (string | {
|
|
21498
|
+
field: string;
|
|
21499
|
+
label?: string | undefined;
|
|
21500
|
+
width?: string | undefined;
|
|
21501
|
+
type?: string | undefined;
|
|
21502
|
+
})[] | undefined;
|
|
21503
|
+
readonly lookupPageSize?: number | undefined;
|
|
21504
|
+
readonly lookupFilters?: {
|
|
21505
|
+
field: string;
|
|
21506
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
21507
|
+
value: any;
|
|
21508
|
+
}[] | undefined;
|
|
21509
|
+
readonly dependsOn?: (string | {
|
|
21510
|
+
field: string;
|
|
21511
|
+
param?: string | undefined;
|
|
21512
|
+
})[] | undefined;
|
|
21513
|
+
readonly allowCreate?: boolean | undefined;
|
|
19589
21514
|
readonly expression?: {
|
|
19590
21515
|
dialect: "cel" | "js" | "cron" | "template";
|
|
19591
21516
|
source?: string | undefined;
|
|
@@ -19741,6 +21666,25 @@ declare const SysJob: Omit<{
|
|
|
19741
21666
|
readonly relatedList?: boolean | undefined;
|
|
19742
21667
|
readonly relatedListTitle?: string | undefined;
|
|
19743
21668
|
readonly relatedListColumns?: any[] | undefined;
|
|
21669
|
+
readonly displayField?: string | undefined;
|
|
21670
|
+
readonly descriptionField?: string | undefined;
|
|
21671
|
+
readonly lookupColumns?: (string | {
|
|
21672
|
+
field: string;
|
|
21673
|
+
label?: string | undefined;
|
|
21674
|
+
width?: string | undefined;
|
|
21675
|
+
type?: string | undefined;
|
|
21676
|
+
})[] | undefined;
|
|
21677
|
+
readonly lookupPageSize?: number | undefined;
|
|
21678
|
+
readonly lookupFilters?: {
|
|
21679
|
+
field: string;
|
|
21680
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
21681
|
+
value: any;
|
|
21682
|
+
}[] | undefined;
|
|
21683
|
+
readonly dependsOn?: (string | {
|
|
21684
|
+
field: string;
|
|
21685
|
+
param?: string | undefined;
|
|
21686
|
+
})[] | undefined;
|
|
21687
|
+
readonly allowCreate?: boolean | undefined;
|
|
19744
21688
|
readonly expression?: {
|
|
19745
21689
|
dialect: "cel" | "js" | "cron" | "template";
|
|
19746
21690
|
source?: string | undefined;
|
|
@@ -19896,6 +21840,25 @@ declare const SysJob: Omit<{
|
|
|
19896
21840
|
readonly relatedList?: boolean | undefined;
|
|
19897
21841
|
readonly relatedListTitle?: string | undefined;
|
|
19898
21842
|
readonly relatedListColumns?: any[] | undefined;
|
|
21843
|
+
readonly displayField?: string | undefined;
|
|
21844
|
+
readonly descriptionField?: string | undefined;
|
|
21845
|
+
readonly lookupColumns?: (string | {
|
|
21846
|
+
field: string;
|
|
21847
|
+
label?: string | undefined;
|
|
21848
|
+
width?: string | undefined;
|
|
21849
|
+
type?: string | undefined;
|
|
21850
|
+
})[] | undefined;
|
|
21851
|
+
readonly lookupPageSize?: number | undefined;
|
|
21852
|
+
readonly lookupFilters?: {
|
|
21853
|
+
field: string;
|
|
21854
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
21855
|
+
value: any;
|
|
21856
|
+
}[] | undefined;
|
|
21857
|
+
readonly dependsOn?: (string | {
|
|
21858
|
+
field: string;
|
|
21859
|
+
param?: string | undefined;
|
|
21860
|
+
})[] | undefined;
|
|
21861
|
+
readonly allowCreate?: boolean | undefined;
|
|
19899
21862
|
readonly expression?: {
|
|
19900
21863
|
dialect: "cel" | "js" | "cron" | "template";
|
|
19901
21864
|
source?: string | undefined;
|
|
@@ -20051,6 +22014,25 @@ declare const SysJob: Omit<{
|
|
|
20051
22014
|
readonly relatedList?: boolean | undefined;
|
|
20052
22015
|
readonly relatedListTitle?: string | undefined;
|
|
20053
22016
|
readonly relatedListColumns?: any[] | undefined;
|
|
22017
|
+
readonly displayField?: string | undefined;
|
|
22018
|
+
readonly descriptionField?: string | undefined;
|
|
22019
|
+
readonly lookupColumns?: (string | {
|
|
22020
|
+
field: string;
|
|
22021
|
+
label?: string | undefined;
|
|
22022
|
+
width?: string | undefined;
|
|
22023
|
+
type?: string | undefined;
|
|
22024
|
+
})[] | undefined;
|
|
22025
|
+
readonly lookupPageSize?: number | undefined;
|
|
22026
|
+
readonly lookupFilters?: {
|
|
22027
|
+
field: string;
|
|
22028
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
22029
|
+
value: any;
|
|
22030
|
+
}[] | undefined;
|
|
22031
|
+
readonly dependsOn?: (string | {
|
|
22032
|
+
field: string;
|
|
22033
|
+
param?: string | undefined;
|
|
22034
|
+
})[] | undefined;
|
|
22035
|
+
readonly allowCreate?: boolean | undefined;
|
|
20054
22036
|
readonly expression?: {
|
|
20055
22037
|
dialect: "cel" | "js" | "cron" | "template";
|
|
20056
22038
|
source?: string | undefined;
|
|
@@ -20206,6 +22188,25 @@ declare const SysJob: Omit<{
|
|
|
20206
22188
|
readonly relatedList?: boolean | undefined;
|
|
20207
22189
|
readonly relatedListTitle?: string | undefined;
|
|
20208
22190
|
readonly relatedListColumns?: any[] | undefined;
|
|
22191
|
+
readonly displayField?: string | undefined;
|
|
22192
|
+
readonly descriptionField?: string | undefined;
|
|
22193
|
+
readonly lookupColumns?: (string | {
|
|
22194
|
+
field: string;
|
|
22195
|
+
label?: string | undefined;
|
|
22196
|
+
width?: string | undefined;
|
|
22197
|
+
type?: string | undefined;
|
|
22198
|
+
})[] | undefined;
|
|
22199
|
+
readonly lookupPageSize?: number | undefined;
|
|
22200
|
+
readonly lookupFilters?: {
|
|
22201
|
+
field: string;
|
|
22202
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
22203
|
+
value: any;
|
|
22204
|
+
}[] | undefined;
|
|
22205
|
+
readonly dependsOn?: (string | {
|
|
22206
|
+
field: string;
|
|
22207
|
+
param?: string | undefined;
|
|
22208
|
+
})[] | undefined;
|
|
22209
|
+
readonly allowCreate?: boolean | undefined;
|
|
20209
22210
|
readonly expression?: {
|
|
20210
22211
|
dialect: "cel" | "js" | "cron" | "template";
|
|
20211
22212
|
source?: string | undefined;
|
|
@@ -20361,6 +22362,25 @@ declare const SysJob: Omit<{
|
|
|
20361
22362
|
readonly relatedList?: boolean | undefined;
|
|
20362
22363
|
readonly relatedListTitle?: string | undefined;
|
|
20363
22364
|
readonly relatedListColumns?: any[] | undefined;
|
|
22365
|
+
readonly displayField?: string | undefined;
|
|
22366
|
+
readonly descriptionField?: string | undefined;
|
|
22367
|
+
readonly lookupColumns?: (string | {
|
|
22368
|
+
field: string;
|
|
22369
|
+
label?: string | undefined;
|
|
22370
|
+
width?: string | undefined;
|
|
22371
|
+
type?: string | undefined;
|
|
22372
|
+
})[] | undefined;
|
|
22373
|
+
readonly lookupPageSize?: number | undefined;
|
|
22374
|
+
readonly lookupFilters?: {
|
|
22375
|
+
field: string;
|
|
22376
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
22377
|
+
value: any;
|
|
22378
|
+
}[] | undefined;
|
|
22379
|
+
readonly dependsOn?: (string | {
|
|
22380
|
+
field: string;
|
|
22381
|
+
param?: string | undefined;
|
|
22382
|
+
})[] | undefined;
|
|
22383
|
+
readonly allowCreate?: boolean | undefined;
|
|
20364
22384
|
readonly expression?: {
|
|
20365
22385
|
dialect: "cel" | "js" | "cron" | "template";
|
|
20366
22386
|
source?: string | undefined;
|
|
@@ -20516,6 +22536,25 @@ declare const SysJob: Omit<{
|
|
|
20516
22536
|
readonly relatedList?: boolean | undefined;
|
|
20517
22537
|
readonly relatedListTitle?: string | undefined;
|
|
20518
22538
|
readonly relatedListColumns?: any[] | undefined;
|
|
22539
|
+
readonly displayField?: string | undefined;
|
|
22540
|
+
readonly descriptionField?: string | undefined;
|
|
22541
|
+
readonly lookupColumns?: (string | {
|
|
22542
|
+
field: string;
|
|
22543
|
+
label?: string | undefined;
|
|
22544
|
+
width?: string | undefined;
|
|
22545
|
+
type?: string | undefined;
|
|
22546
|
+
})[] | undefined;
|
|
22547
|
+
readonly lookupPageSize?: number | undefined;
|
|
22548
|
+
readonly lookupFilters?: {
|
|
22549
|
+
field: string;
|
|
22550
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
22551
|
+
value: any;
|
|
22552
|
+
}[] | undefined;
|
|
22553
|
+
readonly dependsOn?: (string | {
|
|
22554
|
+
field: string;
|
|
22555
|
+
param?: string | undefined;
|
|
22556
|
+
})[] | undefined;
|
|
22557
|
+
readonly allowCreate?: boolean | undefined;
|
|
20519
22558
|
readonly expression?: {
|
|
20520
22559
|
dialect: "cel" | "js" | "cron" | "template";
|
|
20521
22560
|
source?: string | undefined;
|
|
@@ -20671,6 +22710,25 @@ declare const SysJob: Omit<{
|
|
|
20671
22710
|
readonly relatedList?: boolean | undefined;
|
|
20672
22711
|
readonly relatedListTitle?: string | undefined;
|
|
20673
22712
|
readonly relatedListColumns?: any[] | undefined;
|
|
22713
|
+
readonly displayField?: string | undefined;
|
|
22714
|
+
readonly descriptionField?: string | undefined;
|
|
22715
|
+
readonly lookupColumns?: (string | {
|
|
22716
|
+
field: string;
|
|
22717
|
+
label?: string | undefined;
|
|
22718
|
+
width?: string | undefined;
|
|
22719
|
+
type?: string | undefined;
|
|
22720
|
+
})[] | undefined;
|
|
22721
|
+
readonly lookupPageSize?: number | undefined;
|
|
22722
|
+
readonly lookupFilters?: {
|
|
22723
|
+
field: string;
|
|
22724
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
22725
|
+
value: any;
|
|
22726
|
+
}[] | undefined;
|
|
22727
|
+
readonly dependsOn?: (string | {
|
|
22728
|
+
field: string;
|
|
22729
|
+
param?: string | undefined;
|
|
22730
|
+
})[] | undefined;
|
|
22731
|
+
readonly allowCreate?: boolean | undefined;
|
|
20674
22732
|
readonly expression?: {
|
|
20675
22733
|
dialect: "cel" | "js" | "cron" | "template";
|
|
20676
22734
|
source?: string | undefined;
|
|
@@ -20826,6 +22884,25 @@ declare const SysJob: Omit<{
|
|
|
20826
22884
|
readonly relatedList?: boolean | undefined;
|
|
20827
22885
|
readonly relatedListTitle?: string | undefined;
|
|
20828
22886
|
readonly relatedListColumns?: any[] | undefined;
|
|
22887
|
+
readonly displayField?: string | undefined;
|
|
22888
|
+
readonly descriptionField?: string | undefined;
|
|
22889
|
+
readonly lookupColumns?: (string | {
|
|
22890
|
+
field: string;
|
|
22891
|
+
label?: string | undefined;
|
|
22892
|
+
width?: string | undefined;
|
|
22893
|
+
type?: string | undefined;
|
|
22894
|
+
})[] | undefined;
|
|
22895
|
+
readonly lookupPageSize?: number | undefined;
|
|
22896
|
+
readonly lookupFilters?: {
|
|
22897
|
+
field: string;
|
|
22898
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
22899
|
+
value: any;
|
|
22900
|
+
}[] | undefined;
|
|
22901
|
+
readonly dependsOn?: (string | {
|
|
22902
|
+
field: string;
|
|
22903
|
+
param?: string | undefined;
|
|
22904
|
+
})[] | undefined;
|
|
22905
|
+
readonly allowCreate?: boolean | undefined;
|
|
20829
22906
|
readonly expression?: {
|
|
20830
22907
|
dialect: "cel" | "js" | "cron" | "template";
|
|
20831
22908
|
source?: string | undefined;
|
|
@@ -21008,6 +23085,25 @@ declare const SysJobRun: Omit<{
|
|
|
21008
23085
|
relatedList?: boolean | undefined;
|
|
21009
23086
|
relatedListTitle?: string | undefined;
|
|
21010
23087
|
relatedListColumns?: any[] | undefined;
|
|
23088
|
+
displayField?: string | undefined;
|
|
23089
|
+
descriptionField?: string | undefined;
|
|
23090
|
+
lookupColumns?: (string | {
|
|
23091
|
+
field: string;
|
|
23092
|
+
label?: string | undefined;
|
|
23093
|
+
width?: string | undefined;
|
|
23094
|
+
type?: string | undefined;
|
|
23095
|
+
})[] | undefined;
|
|
23096
|
+
lookupPageSize?: number | undefined;
|
|
23097
|
+
lookupFilters?: {
|
|
23098
|
+
field: string;
|
|
23099
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
23100
|
+
value: any;
|
|
23101
|
+
}[] | undefined;
|
|
23102
|
+
dependsOn?: (string | {
|
|
23103
|
+
field: string;
|
|
23104
|
+
param?: string | undefined;
|
|
23105
|
+
})[] | undefined;
|
|
23106
|
+
allowCreate?: boolean | undefined;
|
|
21011
23107
|
expression?: {
|
|
21012
23108
|
dialect: "cel" | "js" | "cron" | "template";
|
|
21013
23109
|
source?: string | undefined;
|
|
@@ -21283,7 +23379,7 @@ declare const SysJobRun: Omit<{
|
|
|
21283
23379
|
} | undefined;
|
|
21284
23380
|
compactLayout?: string[] | undefined;
|
|
21285
23381
|
listViews?: Record<string, {
|
|
21286
|
-
type: "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
23382
|
+
type: "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
21287
23383
|
columns: string[] | {
|
|
21288
23384
|
field: string;
|
|
21289
23385
|
label?: string | undefined;
|
|
@@ -21400,6 +23496,7 @@ declare const SysJobRun: Omit<{
|
|
|
21400
23496
|
colorField?: string | undefined;
|
|
21401
23497
|
} | undefined;
|
|
21402
23498
|
gantt?: {
|
|
23499
|
+
[x: string]: unknown;
|
|
21403
23500
|
startDateField: string;
|
|
21404
23501
|
endDateField: string;
|
|
21405
23502
|
titleField: string;
|
|
@@ -21450,6 +23547,13 @@ declare const SysJobRun: Omit<{
|
|
|
21450
23547
|
values: string[];
|
|
21451
23548
|
dimensions?: string[] | undefined;
|
|
21452
23549
|
} | undefined;
|
|
23550
|
+
tree?: {
|
|
23551
|
+
[x: string]: unknown;
|
|
23552
|
+
parentField?: string | undefined;
|
|
23553
|
+
labelField?: string | undefined;
|
|
23554
|
+
fields?: string[] | undefined;
|
|
23555
|
+
defaultExpandedDepth?: number | undefined;
|
|
23556
|
+
} | undefined;
|
|
21453
23557
|
description?: string | undefined;
|
|
21454
23558
|
sharing?: {
|
|
21455
23559
|
type: "personal" | "collaborative";
|
|
@@ -21505,7 +23609,7 @@ declare const SysJobRun: Omit<{
|
|
|
21505
23609
|
} | undefined;
|
|
21506
23610
|
appearance?: {
|
|
21507
23611
|
showDescription: boolean;
|
|
21508
|
-
allowedVisualizations?: ("grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
23612
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
21509
23613
|
} | undefined;
|
|
21510
23614
|
tabs?: {
|
|
21511
23615
|
name: string;
|
|
@@ -21574,6 +23678,7 @@ declare const SysJobRun: Omit<{
|
|
|
21574
23678
|
} | undefined;
|
|
21575
23679
|
}> | undefined;
|
|
21576
23680
|
defaultDetailForm?: string | undefined;
|
|
23681
|
+
searchableFields?: string[] | undefined;
|
|
21577
23682
|
search?: {
|
|
21578
23683
|
fields: string[];
|
|
21579
23684
|
displayFields?: string[] | undefined;
|
|
@@ -21766,6 +23871,25 @@ declare const SysJobRun: Omit<{
|
|
|
21766
23871
|
readonly relatedList?: boolean | undefined;
|
|
21767
23872
|
readonly relatedListTitle?: string | undefined;
|
|
21768
23873
|
readonly relatedListColumns?: any[] | undefined;
|
|
23874
|
+
readonly displayField?: string | undefined;
|
|
23875
|
+
readonly descriptionField?: string | undefined;
|
|
23876
|
+
readonly lookupColumns?: (string | {
|
|
23877
|
+
field: string;
|
|
23878
|
+
label?: string | undefined;
|
|
23879
|
+
width?: string | undefined;
|
|
23880
|
+
type?: string | undefined;
|
|
23881
|
+
})[] | undefined;
|
|
23882
|
+
readonly lookupPageSize?: number | undefined;
|
|
23883
|
+
readonly lookupFilters?: {
|
|
23884
|
+
field: string;
|
|
23885
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
23886
|
+
value: any;
|
|
23887
|
+
}[] | undefined;
|
|
23888
|
+
readonly dependsOn?: (string | {
|
|
23889
|
+
field: string;
|
|
23890
|
+
param?: string | undefined;
|
|
23891
|
+
})[] | undefined;
|
|
23892
|
+
readonly allowCreate?: boolean | undefined;
|
|
21769
23893
|
readonly expression?: {
|
|
21770
23894
|
dialect: "cel" | "js" | "cron" | "template";
|
|
21771
23895
|
source?: string | undefined;
|
|
@@ -21921,6 +24045,25 @@ declare const SysJobRun: Omit<{
|
|
|
21921
24045
|
readonly relatedList?: boolean | undefined;
|
|
21922
24046
|
readonly relatedListTitle?: string | undefined;
|
|
21923
24047
|
readonly relatedListColumns?: any[] | undefined;
|
|
24048
|
+
readonly displayField?: string | undefined;
|
|
24049
|
+
readonly descriptionField?: string | undefined;
|
|
24050
|
+
readonly lookupColumns?: (string | {
|
|
24051
|
+
field: string;
|
|
24052
|
+
label?: string | undefined;
|
|
24053
|
+
width?: string | undefined;
|
|
24054
|
+
type?: string | undefined;
|
|
24055
|
+
})[] | undefined;
|
|
24056
|
+
readonly lookupPageSize?: number | undefined;
|
|
24057
|
+
readonly lookupFilters?: {
|
|
24058
|
+
field: string;
|
|
24059
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
24060
|
+
value: any;
|
|
24061
|
+
}[] | undefined;
|
|
24062
|
+
readonly dependsOn?: (string | {
|
|
24063
|
+
field: string;
|
|
24064
|
+
param?: string | undefined;
|
|
24065
|
+
})[] | undefined;
|
|
24066
|
+
readonly allowCreate?: boolean | undefined;
|
|
21924
24067
|
readonly expression?: {
|
|
21925
24068
|
dialect: "cel" | "js" | "cron" | "template";
|
|
21926
24069
|
source?: string | undefined;
|
|
@@ -22076,6 +24219,25 @@ declare const SysJobRun: Omit<{
|
|
|
22076
24219
|
readonly relatedList?: boolean | undefined;
|
|
22077
24220
|
readonly relatedListTitle?: string | undefined;
|
|
22078
24221
|
readonly relatedListColumns?: any[] | undefined;
|
|
24222
|
+
readonly displayField?: string | undefined;
|
|
24223
|
+
readonly descriptionField?: string | undefined;
|
|
24224
|
+
readonly lookupColumns?: (string | {
|
|
24225
|
+
field: string;
|
|
24226
|
+
label?: string | undefined;
|
|
24227
|
+
width?: string | undefined;
|
|
24228
|
+
type?: string | undefined;
|
|
24229
|
+
})[] | undefined;
|
|
24230
|
+
readonly lookupPageSize?: number | undefined;
|
|
24231
|
+
readonly lookupFilters?: {
|
|
24232
|
+
field: string;
|
|
24233
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
24234
|
+
value: any;
|
|
24235
|
+
}[] | undefined;
|
|
24236
|
+
readonly dependsOn?: (string | {
|
|
24237
|
+
field: string;
|
|
24238
|
+
param?: string | undefined;
|
|
24239
|
+
})[] | undefined;
|
|
24240
|
+
readonly allowCreate?: boolean | undefined;
|
|
22079
24241
|
readonly expression?: {
|
|
22080
24242
|
dialect: "cel" | "js" | "cron" | "template";
|
|
22081
24243
|
source?: string | undefined;
|
|
@@ -22231,6 +24393,25 @@ declare const SysJobRun: Omit<{
|
|
|
22231
24393
|
readonly relatedList?: boolean | undefined;
|
|
22232
24394
|
readonly relatedListTitle?: string | undefined;
|
|
22233
24395
|
readonly relatedListColumns?: any[] | undefined;
|
|
24396
|
+
readonly displayField?: string | undefined;
|
|
24397
|
+
readonly descriptionField?: string | undefined;
|
|
24398
|
+
readonly lookupColumns?: (string | {
|
|
24399
|
+
field: string;
|
|
24400
|
+
label?: string | undefined;
|
|
24401
|
+
width?: string | undefined;
|
|
24402
|
+
type?: string | undefined;
|
|
24403
|
+
})[] | undefined;
|
|
24404
|
+
readonly lookupPageSize?: number | undefined;
|
|
24405
|
+
readonly lookupFilters?: {
|
|
24406
|
+
field: string;
|
|
24407
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
24408
|
+
value: any;
|
|
24409
|
+
}[] | undefined;
|
|
24410
|
+
readonly dependsOn?: (string | {
|
|
24411
|
+
field: string;
|
|
24412
|
+
param?: string | undefined;
|
|
24413
|
+
})[] | undefined;
|
|
24414
|
+
readonly allowCreate?: boolean | undefined;
|
|
22234
24415
|
readonly expression?: {
|
|
22235
24416
|
dialect: "cel" | "js" | "cron" | "template";
|
|
22236
24417
|
source?: string | undefined;
|
|
@@ -22386,6 +24567,25 @@ declare const SysJobRun: Omit<{
|
|
|
22386
24567
|
readonly relatedList?: boolean | undefined;
|
|
22387
24568
|
readonly relatedListTitle?: string | undefined;
|
|
22388
24569
|
readonly relatedListColumns?: any[] | undefined;
|
|
24570
|
+
readonly displayField?: string | undefined;
|
|
24571
|
+
readonly descriptionField?: string | undefined;
|
|
24572
|
+
readonly lookupColumns?: (string | {
|
|
24573
|
+
field: string;
|
|
24574
|
+
label?: string | undefined;
|
|
24575
|
+
width?: string | undefined;
|
|
24576
|
+
type?: string | undefined;
|
|
24577
|
+
})[] | undefined;
|
|
24578
|
+
readonly lookupPageSize?: number | undefined;
|
|
24579
|
+
readonly lookupFilters?: {
|
|
24580
|
+
field: string;
|
|
24581
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
24582
|
+
value: any;
|
|
24583
|
+
}[] | undefined;
|
|
24584
|
+
readonly dependsOn?: (string | {
|
|
24585
|
+
field: string;
|
|
24586
|
+
param?: string | undefined;
|
|
24587
|
+
})[] | undefined;
|
|
24588
|
+
readonly allowCreate?: boolean | undefined;
|
|
22389
24589
|
readonly expression?: {
|
|
22390
24590
|
dialect: "cel" | "js" | "cron" | "template";
|
|
22391
24591
|
source?: string | undefined;
|
|
@@ -22541,6 +24741,25 @@ declare const SysJobRun: Omit<{
|
|
|
22541
24741
|
readonly relatedList?: boolean | undefined;
|
|
22542
24742
|
readonly relatedListTitle?: string | undefined;
|
|
22543
24743
|
readonly relatedListColumns?: any[] | undefined;
|
|
24744
|
+
readonly displayField?: string | undefined;
|
|
24745
|
+
readonly descriptionField?: string | undefined;
|
|
24746
|
+
readonly lookupColumns?: (string | {
|
|
24747
|
+
field: string;
|
|
24748
|
+
label?: string | undefined;
|
|
24749
|
+
width?: string | undefined;
|
|
24750
|
+
type?: string | undefined;
|
|
24751
|
+
})[] | undefined;
|
|
24752
|
+
readonly lookupPageSize?: number | undefined;
|
|
24753
|
+
readonly lookupFilters?: {
|
|
24754
|
+
field: string;
|
|
24755
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
24756
|
+
value: any;
|
|
24757
|
+
}[] | undefined;
|
|
24758
|
+
readonly dependsOn?: (string | {
|
|
24759
|
+
field: string;
|
|
24760
|
+
param?: string | undefined;
|
|
24761
|
+
})[] | undefined;
|
|
24762
|
+
readonly allowCreate?: boolean | undefined;
|
|
22544
24763
|
readonly expression?: {
|
|
22545
24764
|
dialect: "cel" | "js" | "cron" | "template";
|
|
22546
24765
|
source?: string | undefined;
|
|
@@ -22696,6 +24915,25 @@ declare const SysJobRun: Omit<{
|
|
|
22696
24915
|
readonly relatedList?: boolean | undefined;
|
|
22697
24916
|
readonly relatedListTitle?: string | undefined;
|
|
22698
24917
|
readonly relatedListColumns?: any[] | undefined;
|
|
24918
|
+
readonly displayField?: string | undefined;
|
|
24919
|
+
readonly descriptionField?: string | undefined;
|
|
24920
|
+
readonly lookupColumns?: (string | {
|
|
24921
|
+
field: string;
|
|
24922
|
+
label?: string | undefined;
|
|
24923
|
+
width?: string | undefined;
|
|
24924
|
+
type?: string | undefined;
|
|
24925
|
+
})[] | undefined;
|
|
24926
|
+
readonly lookupPageSize?: number | undefined;
|
|
24927
|
+
readonly lookupFilters?: {
|
|
24928
|
+
field: string;
|
|
24929
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
24930
|
+
value: any;
|
|
24931
|
+
}[] | undefined;
|
|
24932
|
+
readonly dependsOn?: (string | {
|
|
24933
|
+
field: string;
|
|
24934
|
+
param?: string | undefined;
|
|
24935
|
+
})[] | undefined;
|
|
24936
|
+
readonly allowCreate?: boolean | undefined;
|
|
22699
24937
|
readonly expression?: {
|
|
22700
24938
|
dialect: "cel" | "js" | "cron" | "template";
|
|
22701
24939
|
source?: string | undefined;
|
|
@@ -22851,6 +25089,25 @@ declare const SysJobRun: Omit<{
|
|
|
22851
25089
|
readonly relatedList?: boolean | undefined;
|
|
22852
25090
|
readonly relatedListTitle?: string | undefined;
|
|
22853
25091
|
readonly relatedListColumns?: any[] | undefined;
|
|
25092
|
+
readonly displayField?: string | undefined;
|
|
25093
|
+
readonly descriptionField?: string | undefined;
|
|
25094
|
+
readonly lookupColumns?: (string | {
|
|
25095
|
+
field: string;
|
|
25096
|
+
label?: string | undefined;
|
|
25097
|
+
width?: string | undefined;
|
|
25098
|
+
type?: string | undefined;
|
|
25099
|
+
})[] | undefined;
|
|
25100
|
+
readonly lookupPageSize?: number | undefined;
|
|
25101
|
+
readonly lookupFilters?: {
|
|
25102
|
+
field: string;
|
|
25103
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
25104
|
+
value: any;
|
|
25105
|
+
}[] | undefined;
|
|
25106
|
+
readonly dependsOn?: (string | {
|
|
25107
|
+
field: string;
|
|
25108
|
+
param?: string | undefined;
|
|
25109
|
+
})[] | undefined;
|
|
25110
|
+
readonly allowCreate?: boolean | undefined;
|
|
22854
25111
|
readonly expression?: {
|
|
22855
25112
|
dialect: "cel" | "js" | "cron" | "template";
|
|
22856
25113
|
source?: string | undefined;
|
|
@@ -23006,6 +25263,25 @@ declare const SysJobRun: Omit<{
|
|
|
23006
25263
|
readonly relatedList?: boolean | undefined;
|
|
23007
25264
|
readonly relatedListTitle?: string | undefined;
|
|
23008
25265
|
readonly relatedListColumns?: any[] | undefined;
|
|
25266
|
+
readonly displayField?: string | undefined;
|
|
25267
|
+
readonly descriptionField?: string | undefined;
|
|
25268
|
+
readonly lookupColumns?: (string | {
|
|
25269
|
+
field: string;
|
|
25270
|
+
label?: string | undefined;
|
|
25271
|
+
width?: string | undefined;
|
|
25272
|
+
type?: string | undefined;
|
|
25273
|
+
})[] | undefined;
|
|
25274
|
+
readonly lookupPageSize?: number | undefined;
|
|
25275
|
+
readonly lookupFilters?: {
|
|
25276
|
+
field: string;
|
|
25277
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
25278
|
+
value: any;
|
|
25279
|
+
}[] | undefined;
|
|
25280
|
+
readonly dependsOn?: (string | {
|
|
25281
|
+
field: string;
|
|
25282
|
+
param?: string | undefined;
|
|
25283
|
+
})[] | undefined;
|
|
25284
|
+
readonly allowCreate?: boolean | undefined;
|
|
23009
25285
|
readonly expression?: {
|
|
23010
25286
|
dialect: "cel" | "js" | "cron" | "template";
|
|
23011
25287
|
source?: string | undefined;
|
|
@@ -23161,6 +25437,25 @@ declare const SysJobRun: Omit<{
|
|
|
23161
25437
|
readonly relatedList?: boolean | undefined;
|
|
23162
25438
|
readonly relatedListTitle?: string | undefined;
|
|
23163
25439
|
readonly relatedListColumns?: any[] | undefined;
|
|
25440
|
+
readonly displayField?: string | undefined;
|
|
25441
|
+
readonly descriptionField?: string | undefined;
|
|
25442
|
+
readonly lookupColumns?: (string | {
|
|
25443
|
+
field: string;
|
|
25444
|
+
label?: string | undefined;
|
|
25445
|
+
width?: string | undefined;
|
|
25446
|
+
type?: string | undefined;
|
|
25447
|
+
})[] | undefined;
|
|
25448
|
+
readonly lookupPageSize?: number | undefined;
|
|
25449
|
+
readonly lookupFilters?: {
|
|
25450
|
+
field: string;
|
|
25451
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
25452
|
+
value: any;
|
|
25453
|
+
}[] | undefined;
|
|
25454
|
+
readonly dependsOn?: (string | {
|
|
25455
|
+
field: string;
|
|
25456
|
+
param?: string | undefined;
|
|
25457
|
+
})[] | undefined;
|
|
25458
|
+
readonly allowCreate?: boolean | undefined;
|
|
23164
25459
|
readonly expression?: {
|
|
23165
25460
|
dialect: "cel" | "js" | "cron" | "template";
|
|
23166
25461
|
source?: string | undefined;
|
|
@@ -23351,6 +25646,25 @@ declare const SysJobQueue: Omit<{
|
|
|
23351
25646
|
relatedList?: boolean | undefined;
|
|
23352
25647
|
relatedListTitle?: string | undefined;
|
|
23353
25648
|
relatedListColumns?: any[] | undefined;
|
|
25649
|
+
displayField?: string | undefined;
|
|
25650
|
+
descriptionField?: string | undefined;
|
|
25651
|
+
lookupColumns?: (string | {
|
|
25652
|
+
field: string;
|
|
25653
|
+
label?: string | undefined;
|
|
25654
|
+
width?: string | undefined;
|
|
25655
|
+
type?: string | undefined;
|
|
25656
|
+
})[] | undefined;
|
|
25657
|
+
lookupPageSize?: number | undefined;
|
|
25658
|
+
lookupFilters?: {
|
|
25659
|
+
field: string;
|
|
25660
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
25661
|
+
value: any;
|
|
25662
|
+
}[] | undefined;
|
|
25663
|
+
dependsOn?: (string | {
|
|
25664
|
+
field: string;
|
|
25665
|
+
param?: string | undefined;
|
|
25666
|
+
})[] | undefined;
|
|
25667
|
+
allowCreate?: boolean | undefined;
|
|
23354
25668
|
expression?: {
|
|
23355
25669
|
dialect: "cel" | "js" | "cron" | "template";
|
|
23356
25670
|
source?: string | undefined;
|
|
@@ -23626,7 +25940,7 @@ declare const SysJobQueue: Omit<{
|
|
|
23626
25940
|
} | undefined;
|
|
23627
25941
|
compactLayout?: string[] | undefined;
|
|
23628
25942
|
listViews?: Record<string, {
|
|
23629
|
-
type: "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
25943
|
+
type: "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
23630
25944
|
columns: string[] | {
|
|
23631
25945
|
field: string;
|
|
23632
25946
|
label?: string | undefined;
|
|
@@ -23743,6 +26057,7 @@ declare const SysJobQueue: Omit<{
|
|
|
23743
26057
|
colorField?: string | undefined;
|
|
23744
26058
|
} | undefined;
|
|
23745
26059
|
gantt?: {
|
|
26060
|
+
[x: string]: unknown;
|
|
23746
26061
|
startDateField: string;
|
|
23747
26062
|
endDateField: string;
|
|
23748
26063
|
titleField: string;
|
|
@@ -23793,6 +26108,13 @@ declare const SysJobQueue: Omit<{
|
|
|
23793
26108
|
values: string[];
|
|
23794
26109
|
dimensions?: string[] | undefined;
|
|
23795
26110
|
} | undefined;
|
|
26111
|
+
tree?: {
|
|
26112
|
+
[x: string]: unknown;
|
|
26113
|
+
parentField?: string | undefined;
|
|
26114
|
+
labelField?: string | undefined;
|
|
26115
|
+
fields?: string[] | undefined;
|
|
26116
|
+
defaultExpandedDepth?: number | undefined;
|
|
26117
|
+
} | undefined;
|
|
23796
26118
|
description?: string | undefined;
|
|
23797
26119
|
sharing?: {
|
|
23798
26120
|
type: "personal" | "collaborative";
|
|
@@ -23848,7 +26170,7 @@ declare const SysJobQueue: Omit<{
|
|
|
23848
26170
|
} | undefined;
|
|
23849
26171
|
appearance?: {
|
|
23850
26172
|
showDescription: boolean;
|
|
23851
|
-
allowedVisualizations?: ("grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
26173
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
23852
26174
|
} | undefined;
|
|
23853
26175
|
tabs?: {
|
|
23854
26176
|
name: string;
|
|
@@ -23917,6 +26239,7 @@ declare const SysJobQueue: Omit<{
|
|
|
23917
26239
|
} | undefined;
|
|
23918
26240
|
}> | undefined;
|
|
23919
26241
|
defaultDetailForm?: string | undefined;
|
|
26242
|
+
searchableFields?: string[] | undefined;
|
|
23920
26243
|
search?: {
|
|
23921
26244
|
fields: string[];
|
|
23922
26245
|
displayFields?: string[] | undefined;
|
|
@@ -24109,6 +26432,25 @@ declare const SysJobQueue: Omit<{
|
|
|
24109
26432
|
readonly relatedList?: boolean | undefined;
|
|
24110
26433
|
readonly relatedListTitle?: string | undefined;
|
|
24111
26434
|
readonly relatedListColumns?: any[] | undefined;
|
|
26435
|
+
readonly displayField?: string | undefined;
|
|
26436
|
+
readonly descriptionField?: string | undefined;
|
|
26437
|
+
readonly lookupColumns?: (string | {
|
|
26438
|
+
field: string;
|
|
26439
|
+
label?: string | undefined;
|
|
26440
|
+
width?: string | undefined;
|
|
26441
|
+
type?: string | undefined;
|
|
26442
|
+
})[] | undefined;
|
|
26443
|
+
readonly lookupPageSize?: number | undefined;
|
|
26444
|
+
readonly lookupFilters?: {
|
|
26445
|
+
field: string;
|
|
26446
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
26447
|
+
value: any;
|
|
26448
|
+
}[] | undefined;
|
|
26449
|
+
readonly dependsOn?: (string | {
|
|
26450
|
+
field: string;
|
|
26451
|
+
param?: string | undefined;
|
|
26452
|
+
})[] | undefined;
|
|
26453
|
+
readonly allowCreate?: boolean | undefined;
|
|
24112
26454
|
readonly expression?: {
|
|
24113
26455
|
dialect: "cel" | "js" | "cron" | "template";
|
|
24114
26456
|
source?: string | undefined;
|
|
@@ -24264,6 +26606,25 @@ declare const SysJobQueue: Omit<{
|
|
|
24264
26606
|
readonly relatedList?: boolean | undefined;
|
|
24265
26607
|
readonly relatedListTitle?: string | undefined;
|
|
24266
26608
|
readonly relatedListColumns?: any[] | undefined;
|
|
26609
|
+
readonly displayField?: string | undefined;
|
|
26610
|
+
readonly descriptionField?: string | undefined;
|
|
26611
|
+
readonly lookupColumns?: (string | {
|
|
26612
|
+
field: string;
|
|
26613
|
+
label?: string | undefined;
|
|
26614
|
+
width?: string | undefined;
|
|
26615
|
+
type?: string | undefined;
|
|
26616
|
+
})[] | undefined;
|
|
26617
|
+
readonly lookupPageSize?: number | undefined;
|
|
26618
|
+
readonly lookupFilters?: {
|
|
26619
|
+
field: string;
|
|
26620
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
26621
|
+
value: any;
|
|
26622
|
+
}[] | undefined;
|
|
26623
|
+
readonly dependsOn?: (string | {
|
|
26624
|
+
field: string;
|
|
26625
|
+
param?: string | undefined;
|
|
26626
|
+
})[] | undefined;
|
|
26627
|
+
readonly allowCreate?: boolean | undefined;
|
|
24267
26628
|
readonly expression?: {
|
|
24268
26629
|
dialect: "cel" | "js" | "cron" | "template";
|
|
24269
26630
|
source?: string | undefined;
|
|
@@ -24419,6 +26780,25 @@ declare const SysJobQueue: Omit<{
|
|
|
24419
26780
|
readonly relatedList?: boolean | undefined;
|
|
24420
26781
|
readonly relatedListTitle?: string | undefined;
|
|
24421
26782
|
readonly relatedListColumns?: any[] | undefined;
|
|
26783
|
+
readonly displayField?: string | undefined;
|
|
26784
|
+
readonly descriptionField?: string | undefined;
|
|
26785
|
+
readonly lookupColumns?: (string | {
|
|
26786
|
+
field: string;
|
|
26787
|
+
label?: string | undefined;
|
|
26788
|
+
width?: string | undefined;
|
|
26789
|
+
type?: string | undefined;
|
|
26790
|
+
})[] | undefined;
|
|
26791
|
+
readonly lookupPageSize?: number | undefined;
|
|
26792
|
+
readonly lookupFilters?: {
|
|
26793
|
+
field: string;
|
|
26794
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
26795
|
+
value: any;
|
|
26796
|
+
}[] | undefined;
|
|
26797
|
+
readonly dependsOn?: (string | {
|
|
26798
|
+
field: string;
|
|
26799
|
+
param?: string | undefined;
|
|
26800
|
+
})[] | undefined;
|
|
26801
|
+
readonly allowCreate?: boolean | undefined;
|
|
24422
26802
|
readonly expression?: {
|
|
24423
26803
|
dialect: "cel" | "js" | "cron" | "template";
|
|
24424
26804
|
source?: string | undefined;
|
|
@@ -24574,6 +26954,25 @@ declare const SysJobQueue: Omit<{
|
|
|
24574
26954
|
readonly relatedList?: boolean | undefined;
|
|
24575
26955
|
readonly relatedListTitle?: string | undefined;
|
|
24576
26956
|
readonly relatedListColumns?: any[] | undefined;
|
|
26957
|
+
readonly displayField?: string | undefined;
|
|
26958
|
+
readonly descriptionField?: string | undefined;
|
|
26959
|
+
readonly lookupColumns?: (string | {
|
|
26960
|
+
field: string;
|
|
26961
|
+
label?: string | undefined;
|
|
26962
|
+
width?: string | undefined;
|
|
26963
|
+
type?: string | undefined;
|
|
26964
|
+
})[] | undefined;
|
|
26965
|
+
readonly lookupPageSize?: number | undefined;
|
|
26966
|
+
readonly lookupFilters?: {
|
|
26967
|
+
field: string;
|
|
26968
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
26969
|
+
value: any;
|
|
26970
|
+
}[] | undefined;
|
|
26971
|
+
readonly dependsOn?: (string | {
|
|
26972
|
+
field: string;
|
|
26973
|
+
param?: string | undefined;
|
|
26974
|
+
})[] | undefined;
|
|
26975
|
+
readonly allowCreate?: boolean | undefined;
|
|
24577
26976
|
readonly expression?: {
|
|
24578
26977
|
dialect: "cel" | "js" | "cron" | "template";
|
|
24579
26978
|
source?: string | undefined;
|
|
@@ -24729,6 +27128,25 @@ declare const SysJobQueue: Omit<{
|
|
|
24729
27128
|
readonly relatedList?: boolean | undefined;
|
|
24730
27129
|
readonly relatedListTitle?: string | undefined;
|
|
24731
27130
|
readonly relatedListColumns?: any[] | undefined;
|
|
27131
|
+
readonly displayField?: string | undefined;
|
|
27132
|
+
readonly descriptionField?: string | undefined;
|
|
27133
|
+
readonly lookupColumns?: (string | {
|
|
27134
|
+
field: string;
|
|
27135
|
+
label?: string | undefined;
|
|
27136
|
+
width?: string | undefined;
|
|
27137
|
+
type?: string | undefined;
|
|
27138
|
+
})[] | undefined;
|
|
27139
|
+
readonly lookupPageSize?: number | undefined;
|
|
27140
|
+
readonly lookupFilters?: {
|
|
27141
|
+
field: string;
|
|
27142
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
27143
|
+
value: any;
|
|
27144
|
+
}[] | undefined;
|
|
27145
|
+
readonly dependsOn?: (string | {
|
|
27146
|
+
field: string;
|
|
27147
|
+
param?: string | undefined;
|
|
27148
|
+
})[] | undefined;
|
|
27149
|
+
readonly allowCreate?: boolean | undefined;
|
|
24732
27150
|
readonly expression?: {
|
|
24733
27151
|
dialect: "cel" | "js" | "cron" | "template";
|
|
24734
27152
|
source?: string | undefined;
|
|
@@ -24884,6 +27302,25 @@ declare const SysJobQueue: Omit<{
|
|
|
24884
27302
|
readonly relatedList?: boolean | undefined;
|
|
24885
27303
|
readonly relatedListTitle?: string | undefined;
|
|
24886
27304
|
readonly relatedListColumns?: any[] | undefined;
|
|
27305
|
+
readonly displayField?: string | undefined;
|
|
27306
|
+
readonly descriptionField?: string | undefined;
|
|
27307
|
+
readonly lookupColumns?: (string | {
|
|
27308
|
+
field: string;
|
|
27309
|
+
label?: string | undefined;
|
|
27310
|
+
width?: string | undefined;
|
|
27311
|
+
type?: string | undefined;
|
|
27312
|
+
})[] | undefined;
|
|
27313
|
+
readonly lookupPageSize?: number | undefined;
|
|
27314
|
+
readonly lookupFilters?: {
|
|
27315
|
+
field: string;
|
|
27316
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
27317
|
+
value: any;
|
|
27318
|
+
}[] | undefined;
|
|
27319
|
+
readonly dependsOn?: (string | {
|
|
27320
|
+
field: string;
|
|
27321
|
+
param?: string | undefined;
|
|
27322
|
+
})[] | undefined;
|
|
27323
|
+
readonly allowCreate?: boolean | undefined;
|
|
24887
27324
|
readonly expression?: {
|
|
24888
27325
|
dialect: "cel" | "js" | "cron" | "template";
|
|
24889
27326
|
source?: string | undefined;
|
|
@@ -25039,6 +27476,25 @@ declare const SysJobQueue: Omit<{
|
|
|
25039
27476
|
readonly relatedList?: boolean | undefined;
|
|
25040
27477
|
readonly relatedListTitle?: string | undefined;
|
|
25041
27478
|
readonly relatedListColumns?: any[] | undefined;
|
|
27479
|
+
readonly displayField?: string | undefined;
|
|
27480
|
+
readonly descriptionField?: string | undefined;
|
|
27481
|
+
readonly lookupColumns?: (string | {
|
|
27482
|
+
field: string;
|
|
27483
|
+
label?: string | undefined;
|
|
27484
|
+
width?: string | undefined;
|
|
27485
|
+
type?: string | undefined;
|
|
27486
|
+
})[] | undefined;
|
|
27487
|
+
readonly lookupPageSize?: number | undefined;
|
|
27488
|
+
readonly lookupFilters?: {
|
|
27489
|
+
field: string;
|
|
27490
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
27491
|
+
value: any;
|
|
27492
|
+
}[] | undefined;
|
|
27493
|
+
readonly dependsOn?: (string | {
|
|
27494
|
+
field: string;
|
|
27495
|
+
param?: string | undefined;
|
|
27496
|
+
})[] | undefined;
|
|
27497
|
+
readonly allowCreate?: boolean | undefined;
|
|
25042
27498
|
readonly expression?: {
|
|
25043
27499
|
dialect: "cel" | "js" | "cron" | "template";
|
|
25044
27500
|
source?: string | undefined;
|
|
@@ -25194,6 +27650,25 @@ declare const SysJobQueue: Omit<{
|
|
|
25194
27650
|
readonly relatedList?: boolean | undefined;
|
|
25195
27651
|
readonly relatedListTitle?: string | undefined;
|
|
25196
27652
|
readonly relatedListColumns?: any[] | undefined;
|
|
27653
|
+
readonly displayField?: string | undefined;
|
|
27654
|
+
readonly descriptionField?: string | undefined;
|
|
27655
|
+
readonly lookupColumns?: (string | {
|
|
27656
|
+
field: string;
|
|
27657
|
+
label?: string | undefined;
|
|
27658
|
+
width?: string | undefined;
|
|
27659
|
+
type?: string | undefined;
|
|
27660
|
+
})[] | undefined;
|
|
27661
|
+
readonly lookupPageSize?: number | undefined;
|
|
27662
|
+
readonly lookupFilters?: {
|
|
27663
|
+
field: string;
|
|
27664
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
27665
|
+
value: any;
|
|
27666
|
+
}[] | undefined;
|
|
27667
|
+
readonly dependsOn?: (string | {
|
|
27668
|
+
field: string;
|
|
27669
|
+
param?: string | undefined;
|
|
27670
|
+
})[] | undefined;
|
|
27671
|
+
readonly allowCreate?: boolean | undefined;
|
|
25197
27672
|
readonly expression?: {
|
|
25198
27673
|
dialect: "cel" | "js" | "cron" | "template";
|
|
25199
27674
|
source?: string | undefined;
|
|
@@ -25349,6 +27824,25 @@ declare const SysJobQueue: Omit<{
|
|
|
25349
27824
|
readonly relatedList?: boolean | undefined;
|
|
25350
27825
|
readonly relatedListTitle?: string | undefined;
|
|
25351
27826
|
readonly relatedListColumns?: any[] | undefined;
|
|
27827
|
+
readonly displayField?: string | undefined;
|
|
27828
|
+
readonly descriptionField?: string | undefined;
|
|
27829
|
+
readonly lookupColumns?: (string | {
|
|
27830
|
+
field: string;
|
|
27831
|
+
label?: string | undefined;
|
|
27832
|
+
width?: string | undefined;
|
|
27833
|
+
type?: string | undefined;
|
|
27834
|
+
})[] | undefined;
|
|
27835
|
+
readonly lookupPageSize?: number | undefined;
|
|
27836
|
+
readonly lookupFilters?: {
|
|
27837
|
+
field: string;
|
|
27838
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
27839
|
+
value: any;
|
|
27840
|
+
}[] | undefined;
|
|
27841
|
+
readonly dependsOn?: (string | {
|
|
27842
|
+
field: string;
|
|
27843
|
+
param?: string | undefined;
|
|
27844
|
+
})[] | undefined;
|
|
27845
|
+
readonly allowCreate?: boolean | undefined;
|
|
25352
27846
|
readonly expression?: {
|
|
25353
27847
|
dialect: "cel" | "js" | "cron" | "template";
|
|
25354
27848
|
source?: string | undefined;
|
|
@@ -25504,6 +27998,25 @@ declare const SysJobQueue: Omit<{
|
|
|
25504
27998
|
readonly relatedList?: boolean | undefined;
|
|
25505
27999
|
readonly relatedListTitle?: string | undefined;
|
|
25506
28000
|
readonly relatedListColumns?: any[] | undefined;
|
|
28001
|
+
readonly displayField?: string | undefined;
|
|
28002
|
+
readonly descriptionField?: string | undefined;
|
|
28003
|
+
readonly lookupColumns?: (string | {
|
|
28004
|
+
field: string;
|
|
28005
|
+
label?: string | undefined;
|
|
28006
|
+
width?: string | undefined;
|
|
28007
|
+
type?: string | undefined;
|
|
28008
|
+
})[] | undefined;
|
|
28009
|
+
readonly lookupPageSize?: number | undefined;
|
|
28010
|
+
readonly lookupFilters?: {
|
|
28011
|
+
field: string;
|
|
28012
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
28013
|
+
value: any;
|
|
28014
|
+
}[] | undefined;
|
|
28015
|
+
readonly dependsOn?: (string | {
|
|
28016
|
+
field: string;
|
|
28017
|
+
param?: string | undefined;
|
|
28018
|
+
})[] | undefined;
|
|
28019
|
+
readonly allowCreate?: boolean | undefined;
|
|
25507
28020
|
readonly expression?: {
|
|
25508
28021
|
dialect: "cel" | "js" | "cron" | "template";
|
|
25509
28022
|
source?: string | undefined;
|
|
@@ -25659,6 +28172,25 @@ declare const SysJobQueue: Omit<{
|
|
|
25659
28172
|
readonly relatedList?: boolean | undefined;
|
|
25660
28173
|
readonly relatedListTitle?: string | undefined;
|
|
25661
28174
|
readonly relatedListColumns?: any[] | undefined;
|
|
28175
|
+
readonly displayField?: string | undefined;
|
|
28176
|
+
readonly descriptionField?: string | undefined;
|
|
28177
|
+
readonly lookupColumns?: (string | {
|
|
28178
|
+
field: string;
|
|
28179
|
+
label?: string | undefined;
|
|
28180
|
+
width?: string | undefined;
|
|
28181
|
+
type?: string | undefined;
|
|
28182
|
+
})[] | undefined;
|
|
28183
|
+
readonly lookupPageSize?: number | undefined;
|
|
28184
|
+
readonly lookupFilters?: {
|
|
28185
|
+
field: string;
|
|
28186
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
28187
|
+
value: any;
|
|
28188
|
+
}[] | undefined;
|
|
28189
|
+
readonly dependsOn?: (string | {
|
|
28190
|
+
field: string;
|
|
28191
|
+
param?: string | undefined;
|
|
28192
|
+
})[] | undefined;
|
|
28193
|
+
readonly allowCreate?: boolean | undefined;
|
|
25662
28194
|
readonly expression?: {
|
|
25663
28195
|
dialect: "cel" | "js" | "cron" | "template";
|
|
25664
28196
|
source?: string | undefined;
|
|
@@ -25814,6 +28346,25 @@ declare const SysJobQueue: Omit<{
|
|
|
25814
28346
|
readonly relatedList?: boolean | undefined;
|
|
25815
28347
|
readonly relatedListTitle?: string | undefined;
|
|
25816
28348
|
readonly relatedListColumns?: any[] | undefined;
|
|
28349
|
+
readonly displayField?: string | undefined;
|
|
28350
|
+
readonly descriptionField?: string | undefined;
|
|
28351
|
+
readonly lookupColumns?: (string | {
|
|
28352
|
+
field: string;
|
|
28353
|
+
label?: string | undefined;
|
|
28354
|
+
width?: string | undefined;
|
|
28355
|
+
type?: string | undefined;
|
|
28356
|
+
})[] | undefined;
|
|
28357
|
+
readonly lookupPageSize?: number | undefined;
|
|
28358
|
+
readonly lookupFilters?: {
|
|
28359
|
+
field: string;
|
|
28360
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
28361
|
+
value: any;
|
|
28362
|
+
}[] | undefined;
|
|
28363
|
+
readonly dependsOn?: (string | {
|
|
28364
|
+
field: string;
|
|
28365
|
+
param?: string | undefined;
|
|
28366
|
+
})[] | undefined;
|
|
28367
|
+
readonly allowCreate?: boolean | undefined;
|
|
25817
28368
|
readonly expression?: {
|
|
25818
28369
|
dialect: "cel" | "js" | "cron" | "template";
|
|
25819
28370
|
source?: string | undefined;
|
|
@@ -25969,6 +28520,25 @@ declare const SysJobQueue: Omit<{
|
|
|
25969
28520
|
readonly relatedList?: boolean | undefined;
|
|
25970
28521
|
readonly relatedListTitle?: string | undefined;
|
|
25971
28522
|
readonly relatedListColumns?: any[] | undefined;
|
|
28523
|
+
readonly displayField?: string | undefined;
|
|
28524
|
+
readonly descriptionField?: string | undefined;
|
|
28525
|
+
readonly lookupColumns?: (string | {
|
|
28526
|
+
field: string;
|
|
28527
|
+
label?: string | undefined;
|
|
28528
|
+
width?: string | undefined;
|
|
28529
|
+
type?: string | undefined;
|
|
28530
|
+
})[] | undefined;
|
|
28531
|
+
readonly lookupPageSize?: number | undefined;
|
|
28532
|
+
readonly lookupFilters?: {
|
|
28533
|
+
field: string;
|
|
28534
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
28535
|
+
value: any;
|
|
28536
|
+
}[] | undefined;
|
|
28537
|
+
readonly dependsOn?: (string | {
|
|
28538
|
+
field: string;
|
|
28539
|
+
param?: string | undefined;
|
|
28540
|
+
})[] | undefined;
|
|
28541
|
+
readonly allowCreate?: boolean | undefined;
|
|
25972
28542
|
readonly expression?: {
|
|
25973
28543
|
dialect: "cel" | "js" | "cron" | "template";
|
|
25974
28544
|
source?: string | undefined;
|
|
@@ -26124,6 +28694,25 @@ declare const SysJobQueue: Omit<{
|
|
|
26124
28694
|
readonly relatedList?: boolean | undefined;
|
|
26125
28695
|
readonly relatedListTitle?: string | undefined;
|
|
26126
28696
|
readonly relatedListColumns?: any[] | undefined;
|
|
28697
|
+
readonly displayField?: string | undefined;
|
|
28698
|
+
readonly descriptionField?: string | undefined;
|
|
28699
|
+
readonly lookupColumns?: (string | {
|
|
28700
|
+
field: string;
|
|
28701
|
+
label?: string | undefined;
|
|
28702
|
+
width?: string | undefined;
|
|
28703
|
+
type?: string | undefined;
|
|
28704
|
+
})[] | undefined;
|
|
28705
|
+
readonly lookupPageSize?: number | undefined;
|
|
28706
|
+
readonly lookupFilters?: {
|
|
28707
|
+
field: string;
|
|
28708
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
28709
|
+
value: any;
|
|
28710
|
+
}[] | undefined;
|
|
28711
|
+
readonly dependsOn?: (string | {
|
|
28712
|
+
field: string;
|
|
28713
|
+
param?: string | undefined;
|
|
28714
|
+
})[] | undefined;
|
|
28715
|
+
readonly allowCreate?: boolean | undefined;
|
|
26127
28716
|
readonly expression?: {
|
|
26128
28717
|
dialect: "cel" | "js" | "cron" | "template";
|
|
26129
28718
|
source?: string | undefined;
|
|
@@ -26279,6 +28868,25 @@ declare const SysJobQueue: Omit<{
|
|
|
26279
28868
|
readonly relatedList?: boolean | undefined;
|
|
26280
28869
|
readonly relatedListTitle?: string | undefined;
|
|
26281
28870
|
readonly relatedListColumns?: any[] | undefined;
|
|
28871
|
+
readonly displayField?: string | undefined;
|
|
28872
|
+
readonly descriptionField?: string | undefined;
|
|
28873
|
+
readonly lookupColumns?: (string | {
|
|
28874
|
+
field: string;
|
|
28875
|
+
label?: string | undefined;
|
|
28876
|
+
width?: string | undefined;
|
|
28877
|
+
type?: string | undefined;
|
|
28878
|
+
})[] | undefined;
|
|
28879
|
+
readonly lookupPageSize?: number | undefined;
|
|
28880
|
+
readonly lookupFilters?: {
|
|
28881
|
+
field: string;
|
|
28882
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
28883
|
+
value: any;
|
|
28884
|
+
}[] | undefined;
|
|
28885
|
+
readonly dependsOn?: (string | {
|
|
28886
|
+
field: string;
|
|
28887
|
+
param?: string | undefined;
|
|
28888
|
+
})[] | undefined;
|
|
28889
|
+
readonly allowCreate?: boolean | undefined;
|
|
26282
28890
|
readonly expression?: {
|
|
26283
28891
|
dialect: "cel" | "js" | "cron" | "template";
|
|
26284
28892
|
source?: string | undefined;
|
|
@@ -26434,6 +29042,25 @@ declare const SysJobQueue: Omit<{
|
|
|
26434
29042
|
readonly relatedList?: boolean | undefined;
|
|
26435
29043
|
readonly relatedListTitle?: string | undefined;
|
|
26436
29044
|
readonly relatedListColumns?: any[] | undefined;
|
|
29045
|
+
readonly displayField?: string | undefined;
|
|
29046
|
+
readonly descriptionField?: string | undefined;
|
|
29047
|
+
readonly lookupColumns?: (string | {
|
|
29048
|
+
field: string;
|
|
29049
|
+
label?: string | undefined;
|
|
29050
|
+
width?: string | undefined;
|
|
29051
|
+
type?: string | undefined;
|
|
29052
|
+
})[] | undefined;
|
|
29053
|
+
readonly lookupPageSize?: number | undefined;
|
|
29054
|
+
readonly lookupFilters?: {
|
|
29055
|
+
field: string;
|
|
29056
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
29057
|
+
value: any;
|
|
29058
|
+
}[] | undefined;
|
|
29059
|
+
readonly dependsOn?: (string | {
|
|
29060
|
+
field: string;
|
|
29061
|
+
param?: string | undefined;
|
|
29062
|
+
})[] | undefined;
|
|
29063
|
+
readonly allowCreate?: boolean | undefined;
|
|
26437
29064
|
readonly expression?: {
|
|
26438
29065
|
dialect: "cel" | "js" | "cron" | "template";
|
|
26439
29066
|
source?: string | undefined;
|
|
@@ -26589,6 +29216,25 @@ declare const SysJobQueue: Omit<{
|
|
|
26589
29216
|
readonly relatedList?: boolean | undefined;
|
|
26590
29217
|
readonly relatedListTitle?: string | undefined;
|
|
26591
29218
|
readonly relatedListColumns?: any[] | undefined;
|
|
29219
|
+
readonly displayField?: string | undefined;
|
|
29220
|
+
readonly descriptionField?: string | undefined;
|
|
29221
|
+
readonly lookupColumns?: (string | {
|
|
29222
|
+
field: string;
|
|
29223
|
+
label?: string | undefined;
|
|
29224
|
+
width?: string | undefined;
|
|
29225
|
+
type?: string | undefined;
|
|
29226
|
+
})[] | undefined;
|
|
29227
|
+
readonly lookupPageSize?: number | undefined;
|
|
29228
|
+
readonly lookupFilters?: {
|
|
29229
|
+
field: string;
|
|
29230
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
29231
|
+
value: any;
|
|
29232
|
+
}[] | undefined;
|
|
29233
|
+
readonly dependsOn?: (string | {
|
|
29234
|
+
field: string;
|
|
29235
|
+
param?: string | undefined;
|
|
29236
|
+
})[] | undefined;
|
|
29237
|
+
readonly allowCreate?: boolean | undefined;
|
|
26592
29238
|
readonly expression?: {
|
|
26593
29239
|
dialect: "cel" | "js" | "cron" | "template";
|
|
26594
29240
|
source?: string | undefined;
|
|
@@ -26744,6 +29390,25 @@ declare const SysJobQueue: Omit<{
|
|
|
26744
29390
|
readonly relatedList?: boolean | undefined;
|
|
26745
29391
|
readonly relatedListTitle?: string | undefined;
|
|
26746
29392
|
readonly relatedListColumns?: any[] | undefined;
|
|
29393
|
+
readonly displayField?: string | undefined;
|
|
29394
|
+
readonly descriptionField?: string | undefined;
|
|
29395
|
+
readonly lookupColumns?: (string | {
|
|
29396
|
+
field: string;
|
|
29397
|
+
label?: string | undefined;
|
|
29398
|
+
width?: string | undefined;
|
|
29399
|
+
type?: string | undefined;
|
|
29400
|
+
})[] | undefined;
|
|
29401
|
+
readonly lookupPageSize?: number | undefined;
|
|
29402
|
+
readonly lookupFilters?: {
|
|
29403
|
+
field: string;
|
|
29404
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
29405
|
+
value: any;
|
|
29406
|
+
}[] | undefined;
|
|
29407
|
+
readonly dependsOn?: (string | {
|
|
29408
|
+
field: string;
|
|
29409
|
+
param?: string | undefined;
|
|
29410
|
+
})[] | undefined;
|
|
29411
|
+
readonly allowCreate?: boolean | undefined;
|
|
26747
29412
|
readonly expression?: {
|
|
26748
29413
|
dialect: "cel" | "js" | "cron" | "template";
|
|
26749
29414
|
source?: string | undefined;
|
|
@@ -26899,6 +29564,25 @@ declare const SysJobQueue: Omit<{
|
|
|
26899
29564
|
readonly relatedList?: boolean | undefined;
|
|
26900
29565
|
readonly relatedListTitle?: string | undefined;
|
|
26901
29566
|
readonly relatedListColumns?: any[] | undefined;
|
|
29567
|
+
readonly displayField?: string | undefined;
|
|
29568
|
+
readonly descriptionField?: string | undefined;
|
|
29569
|
+
readonly lookupColumns?: (string | {
|
|
29570
|
+
field: string;
|
|
29571
|
+
label?: string | undefined;
|
|
29572
|
+
width?: string | undefined;
|
|
29573
|
+
type?: string | undefined;
|
|
29574
|
+
})[] | undefined;
|
|
29575
|
+
readonly lookupPageSize?: number | undefined;
|
|
29576
|
+
readonly lookupFilters?: {
|
|
29577
|
+
field: string;
|
|
29578
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
29579
|
+
value: any;
|
|
29580
|
+
}[] | undefined;
|
|
29581
|
+
readonly dependsOn?: (string | {
|
|
29582
|
+
field: string;
|
|
29583
|
+
param?: string | undefined;
|
|
29584
|
+
})[] | undefined;
|
|
29585
|
+
readonly allowCreate?: boolean | undefined;
|
|
26902
29586
|
readonly expression?: {
|
|
26903
29587
|
dialect: "cel" | "js" | "cron" | "template";
|
|
26904
29588
|
source?: string | undefined;
|