@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/system/index.d.ts
CHANGED
|
@@ -74,6 +74,25 @@ declare const SysSetting: Omit<{
|
|
|
74
74
|
relatedList?: boolean | undefined;
|
|
75
75
|
relatedListTitle?: string | undefined;
|
|
76
76
|
relatedListColumns?: any[] | undefined;
|
|
77
|
+
displayField?: string | undefined;
|
|
78
|
+
descriptionField?: string | undefined;
|
|
79
|
+
lookupColumns?: (string | {
|
|
80
|
+
field: string;
|
|
81
|
+
label?: string | undefined;
|
|
82
|
+
width?: string | undefined;
|
|
83
|
+
type?: string | undefined;
|
|
84
|
+
})[] | undefined;
|
|
85
|
+
lookupPageSize?: number | undefined;
|
|
86
|
+
lookupFilters?: {
|
|
87
|
+
field: string;
|
|
88
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
89
|
+
value: any;
|
|
90
|
+
}[] | undefined;
|
|
91
|
+
dependsOn?: (string | {
|
|
92
|
+
field: string;
|
|
93
|
+
param?: string | undefined;
|
|
94
|
+
})[] | undefined;
|
|
95
|
+
allowCreate?: boolean | undefined;
|
|
77
96
|
expression?: {
|
|
78
97
|
dialect: "cel" | "js" | "cron" | "template";
|
|
79
98
|
source?: string | undefined;
|
|
@@ -349,7 +368,7 @@ declare const SysSetting: Omit<{
|
|
|
349
368
|
} | undefined;
|
|
350
369
|
compactLayout?: string[] | undefined;
|
|
351
370
|
listViews?: Record<string, {
|
|
352
|
-
type: "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
371
|
+
type: "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
353
372
|
columns: string[] | {
|
|
354
373
|
field: string;
|
|
355
374
|
label?: string | undefined;
|
|
@@ -466,6 +485,7 @@ declare const SysSetting: Omit<{
|
|
|
466
485
|
colorField?: string | undefined;
|
|
467
486
|
} | undefined;
|
|
468
487
|
gantt?: {
|
|
488
|
+
[x: string]: unknown;
|
|
469
489
|
startDateField: string;
|
|
470
490
|
endDateField: string;
|
|
471
491
|
titleField: string;
|
|
@@ -516,6 +536,13 @@ declare const SysSetting: Omit<{
|
|
|
516
536
|
values: string[];
|
|
517
537
|
dimensions?: string[] | undefined;
|
|
518
538
|
} | undefined;
|
|
539
|
+
tree?: {
|
|
540
|
+
[x: string]: unknown;
|
|
541
|
+
parentField?: string | undefined;
|
|
542
|
+
labelField?: string | undefined;
|
|
543
|
+
fields?: string[] | undefined;
|
|
544
|
+
defaultExpandedDepth?: number | undefined;
|
|
545
|
+
} | undefined;
|
|
519
546
|
description?: string | undefined;
|
|
520
547
|
sharing?: {
|
|
521
548
|
type: "personal" | "collaborative";
|
|
@@ -571,7 +598,7 @@ declare const SysSetting: Omit<{
|
|
|
571
598
|
} | undefined;
|
|
572
599
|
appearance?: {
|
|
573
600
|
showDescription: boolean;
|
|
574
|
-
allowedVisualizations?: ("grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
601
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
575
602
|
} | undefined;
|
|
576
603
|
tabs?: {
|
|
577
604
|
name: string;
|
|
@@ -640,6 +667,7 @@ declare const SysSetting: Omit<{
|
|
|
640
667
|
} | undefined;
|
|
641
668
|
}> | undefined;
|
|
642
669
|
defaultDetailForm?: string | undefined;
|
|
670
|
+
searchableFields?: string[] | undefined;
|
|
643
671
|
search?: {
|
|
644
672
|
fields: string[];
|
|
645
673
|
displayFields?: string[] | undefined;
|
|
@@ -928,6 +956,25 @@ declare const SysSetting: Omit<{
|
|
|
928
956
|
readonly relatedList?: boolean | undefined;
|
|
929
957
|
readonly relatedListTitle?: string | undefined;
|
|
930
958
|
readonly relatedListColumns?: any[] | undefined;
|
|
959
|
+
readonly displayField?: string | undefined;
|
|
960
|
+
readonly descriptionField?: string | undefined;
|
|
961
|
+
readonly lookupColumns?: (string | {
|
|
962
|
+
field: string;
|
|
963
|
+
label?: string | undefined;
|
|
964
|
+
width?: string | undefined;
|
|
965
|
+
type?: string | undefined;
|
|
966
|
+
})[] | undefined;
|
|
967
|
+
readonly lookupPageSize?: number | undefined;
|
|
968
|
+
readonly lookupFilters?: {
|
|
969
|
+
field: string;
|
|
970
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
971
|
+
value: any;
|
|
972
|
+
}[] | undefined;
|
|
973
|
+
readonly dependsOn?: (string | {
|
|
974
|
+
field: string;
|
|
975
|
+
param?: string | undefined;
|
|
976
|
+
})[] | undefined;
|
|
977
|
+
readonly allowCreate?: boolean | undefined;
|
|
931
978
|
readonly expression?: {
|
|
932
979
|
dialect: "cel" | "js" | "cron" | "template";
|
|
933
980
|
source?: string | undefined;
|
|
@@ -1083,6 +1130,25 @@ declare const SysSetting: Omit<{
|
|
|
1083
1130
|
readonly relatedList?: boolean | undefined;
|
|
1084
1131
|
readonly relatedListTitle?: string | undefined;
|
|
1085
1132
|
readonly relatedListColumns?: any[] | undefined;
|
|
1133
|
+
readonly displayField?: string | undefined;
|
|
1134
|
+
readonly descriptionField?: string | undefined;
|
|
1135
|
+
readonly lookupColumns?: (string | {
|
|
1136
|
+
field: string;
|
|
1137
|
+
label?: string | undefined;
|
|
1138
|
+
width?: string | undefined;
|
|
1139
|
+
type?: string | undefined;
|
|
1140
|
+
})[] | undefined;
|
|
1141
|
+
readonly lookupPageSize?: number | undefined;
|
|
1142
|
+
readonly lookupFilters?: {
|
|
1143
|
+
field: string;
|
|
1144
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1145
|
+
value: any;
|
|
1146
|
+
}[] | undefined;
|
|
1147
|
+
readonly dependsOn?: (string | {
|
|
1148
|
+
field: string;
|
|
1149
|
+
param?: string | undefined;
|
|
1150
|
+
})[] | undefined;
|
|
1151
|
+
readonly allowCreate?: boolean | undefined;
|
|
1086
1152
|
readonly expression?: {
|
|
1087
1153
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1088
1154
|
source?: string | undefined;
|
|
@@ -1238,6 +1304,25 @@ declare const SysSetting: Omit<{
|
|
|
1238
1304
|
readonly relatedList?: boolean | undefined;
|
|
1239
1305
|
readonly relatedListTitle?: string | undefined;
|
|
1240
1306
|
readonly relatedListColumns?: any[] | undefined;
|
|
1307
|
+
readonly displayField?: string | undefined;
|
|
1308
|
+
readonly descriptionField?: string | undefined;
|
|
1309
|
+
readonly lookupColumns?: (string | {
|
|
1310
|
+
field: string;
|
|
1311
|
+
label?: string | undefined;
|
|
1312
|
+
width?: string | undefined;
|
|
1313
|
+
type?: string | undefined;
|
|
1314
|
+
})[] | undefined;
|
|
1315
|
+
readonly lookupPageSize?: number | undefined;
|
|
1316
|
+
readonly lookupFilters?: {
|
|
1317
|
+
field: string;
|
|
1318
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1319
|
+
value: any;
|
|
1320
|
+
}[] | undefined;
|
|
1321
|
+
readonly dependsOn?: (string | {
|
|
1322
|
+
field: string;
|
|
1323
|
+
param?: string | undefined;
|
|
1324
|
+
})[] | undefined;
|
|
1325
|
+
readonly allowCreate?: boolean | undefined;
|
|
1241
1326
|
readonly expression?: {
|
|
1242
1327
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1243
1328
|
source?: string | undefined;
|
|
@@ -1393,6 +1478,25 @@ declare const SysSetting: Omit<{
|
|
|
1393
1478
|
readonly relatedList?: boolean | undefined;
|
|
1394
1479
|
readonly relatedListTitle?: string | undefined;
|
|
1395
1480
|
readonly relatedListColumns?: any[] | undefined;
|
|
1481
|
+
readonly displayField?: string | undefined;
|
|
1482
|
+
readonly descriptionField?: string | undefined;
|
|
1483
|
+
readonly lookupColumns?: (string | {
|
|
1484
|
+
field: string;
|
|
1485
|
+
label?: string | undefined;
|
|
1486
|
+
width?: string | undefined;
|
|
1487
|
+
type?: string | undefined;
|
|
1488
|
+
})[] | undefined;
|
|
1489
|
+
readonly lookupPageSize?: number | undefined;
|
|
1490
|
+
readonly lookupFilters?: {
|
|
1491
|
+
field: string;
|
|
1492
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1493
|
+
value: any;
|
|
1494
|
+
}[] | undefined;
|
|
1495
|
+
readonly dependsOn?: (string | {
|
|
1496
|
+
field: string;
|
|
1497
|
+
param?: string | undefined;
|
|
1498
|
+
})[] | undefined;
|
|
1499
|
+
readonly allowCreate?: boolean | undefined;
|
|
1396
1500
|
readonly expression?: {
|
|
1397
1501
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1398
1502
|
source?: string | undefined;
|
|
@@ -1548,6 +1652,25 @@ declare const SysSetting: Omit<{
|
|
|
1548
1652
|
readonly relatedList?: boolean | undefined;
|
|
1549
1653
|
readonly relatedListTitle?: string | undefined;
|
|
1550
1654
|
readonly relatedListColumns?: any[] | undefined;
|
|
1655
|
+
readonly displayField?: string | undefined;
|
|
1656
|
+
readonly descriptionField?: string | undefined;
|
|
1657
|
+
readonly lookupColumns?: (string | {
|
|
1658
|
+
field: string;
|
|
1659
|
+
label?: string | undefined;
|
|
1660
|
+
width?: string | undefined;
|
|
1661
|
+
type?: string | undefined;
|
|
1662
|
+
})[] | undefined;
|
|
1663
|
+
readonly lookupPageSize?: number | undefined;
|
|
1664
|
+
readonly lookupFilters?: {
|
|
1665
|
+
field: string;
|
|
1666
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1667
|
+
value: any;
|
|
1668
|
+
}[] | undefined;
|
|
1669
|
+
readonly dependsOn?: (string | {
|
|
1670
|
+
field: string;
|
|
1671
|
+
param?: string | undefined;
|
|
1672
|
+
})[] | undefined;
|
|
1673
|
+
readonly allowCreate?: boolean | undefined;
|
|
1551
1674
|
readonly expression?: {
|
|
1552
1675
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1553
1676
|
source?: string | undefined;
|
|
@@ -1703,6 +1826,25 @@ declare const SysSetting: Omit<{
|
|
|
1703
1826
|
readonly relatedList?: boolean | undefined;
|
|
1704
1827
|
readonly relatedListTitle?: string | undefined;
|
|
1705
1828
|
readonly relatedListColumns?: any[] | undefined;
|
|
1829
|
+
readonly displayField?: string | undefined;
|
|
1830
|
+
readonly descriptionField?: string | undefined;
|
|
1831
|
+
readonly lookupColumns?: (string | {
|
|
1832
|
+
field: string;
|
|
1833
|
+
label?: string | undefined;
|
|
1834
|
+
width?: string | undefined;
|
|
1835
|
+
type?: string | undefined;
|
|
1836
|
+
})[] | undefined;
|
|
1837
|
+
readonly lookupPageSize?: number | undefined;
|
|
1838
|
+
readonly lookupFilters?: {
|
|
1839
|
+
field: string;
|
|
1840
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1841
|
+
value: any;
|
|
1842
|
+
}[] | undefined;
|
|
1843
|
+
readonly dependsOn?: (string | {
|
|
1844
|
+
field: string;
|
|
1845
|
+
param?: string | undefined;
|
|
1846
|
+
})[] | undefined;
|
|
1847
|
+
readonly allowCreate?: boolean | undefined;
|
|
1706
1848
|
readonly expression?: {
|
|
1707
1849
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1708
1850
|
source?: string | undefined;
|
|
@@ -1858,6 +2000,25 @@ declare const SysSetting: Omit<{
|
|
|
1858
2000
|
readonly relatedList?: boolean | undefined;
|
|
1859
2001
|
readonly relatedListTitle?: string | undefined;
|
|
1860
2002
|
readonly relatedListColumns?: any[] | undefined;
|
|
2003
|
+
readonly displayField?: string | undefined;
|
|
2004
|
+
readonly descriptionField?: string | undefined;
|
|
2005
|
+
readonly lookupColumns?: (string | {
|
|
2006
|
+
field: string;
|
|
2007
|
+
label?: string | undefined;
|
|
2008
|
+
width?: string | undefined;
|
|
2009
|
+
type?: string | undefined;
|
|
2010
|
+
})[] | undefined;
|
|
2011
|
+
readonly lookupPageSize?: number | undefined;
|
|
2012
|
+
readonly lookupFilters?: {
|
|
2013
|
+
field: string;
|
|
2014
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
2015
|
+
value: any;
|
|
2016
|
+
}[] | undefined;
|
|
2017
|
+
readonly dependsOn?: (string | {
|
|
2018
|
+
field: string;
|
|
2019
|
+
param?: string | undefined;
|
|
2020
|
+
})[] | undefined;
|
|
2021
|
+
readonly allowCreate?: boolean | undefined;
|
|
1861
2022
|
readonly expression?: {
|
|
1862
2023
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1863
2024
|
source?: string | undefined;
|
|
@@ -2013,6 +2174,25 @@ declare const SysSetting: Omit<{
|
|
|
2013
2174
|
readonly relatedList?: boolean | undefined;
|
|
2014
2175
|
readonly relatedListTitle?: string | undefined;
|
|
2015
2176
|
readonly relatedListColumns?: any[] | undefined;
|
|
2177
|
+
readonly displayField?: string | undefined;
|
|
2178
|
+
readonly descriptionField?: string | undefined;
|
|
2179
|
+
readonly lookupColumns?: (string | {
|
|
2180
|
+
field: string;
|
|
2181
|
+
label?: string | undefined;
|
|
2182
|
+
width?: string | undefined;
|
|
2183
|
+
type?: string | undefined;
|
|
2184
|
+
})[] | undefined;
|
|
2185
|
+
readonly lookupPageSize?: number | undefined;
|
|
2186
|
+
readonly lookupFilters?: {
|
|
2187
|
+
field: string;
|
|
2188
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
2189
|
+
value: any;
|
|
2190
|
+
}[] | undefined;
|
|
2191
|
+
readonly dependsOn?: (string | {
|
|
2192
|
+
field: string;
|
|
2193
|
+
param?: string | undefined;
|
|
2194
|
+
})[] | undefined;
|
|
2195
|
+
readonly allowCreate?: boolean | undefined;
|
|
2016
2196
|
readonly expression?: {
|
|
2017
2197
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2018
2198
|
source?: string | undefined;
|
|
@@ -2168,6 +2348,25 @@ declare const SysSetting: Omit<{
|
|
|
2168
2348
|
readonly relatedList?: boolean | undefined;
|
|
2169
2349
|
readonly relatedListTitle?: string | undefined;
|
|
2170
2350
|
readonly relatedListColumns?: any[] | undefined;
|
|
2351
|
+
readonly displayField?: string | undefined;
|
|
2352
|
+
readonly descriptionField?: string | undefined;
|
|
2353
|
+
readonly lookupColumns?: (string | {
|
|
2354
|
+
field: string;
|
|
2355
|
+
label?: string | undefined;
|
|
2356
|
+
width?: string | undefined;
|
|
2357
|
+
type?: string | undefined;
|
|
2358
|
+
})[] | undefined;
|
|
2359
|
+
readonly lookupPageSize?: number | undefined;
|
|
2360
|
+
readonly lookupFilters?: {
|
|
2361
|
+
field: string;
|
|
2362
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
2363
|
+
value: any;
|
|
2364
|
+
}[] | undefined;
|
|
2365
|
+
readonly dependsOn?: (string | {
|
|
2366
|
+
field: string;
|
|
2367
|
+
param?: string | undefined;
|
|
2368
|
+
})[] | undefined;
|
|
2369
|
+
readonly allowCreate?: boolean | undefined;
|
|
2171
2370
|
readonly expression?: {
|
|
2172
2371
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2173
2372
|
source?: string | undefined;
|
|
@@ -2323,6 +2522,25 @@ declare const SysSetting: Omit<{
|
|
|
2323
2522
|
readonly relatedList?: boolean | undefined;
|
|
2324
2523
|
readonly relatedListTitle?: string | undefined;
|
|
2325
2524
|
readonly relatedListColumns?: any[] | undefined;
|
|
2525
|
+
readonly displayField?: string | undefined;
|
|
2526
|
+
readonly descriptionField?: string | undefined;
|
|
2527
|
+
readonly lookupColumns?: (string | {
|
|
2528
|
+
field: string;
|
|
2529
|
+
label?: string | undefined;
|
|
2530
|
+
width?: string | undefined;
|
|
2531
|
+
type?: string | undefined;
|
|
2532
|
+
})[] | undefined;
|
|
2533
|
+
readonly lookupPageSize?: number | undefined;
|
|
2534
|
+
readonly lookupFilters?: {
|
|
2535
|
+
field: string;
|
|
2536
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
2537
|
+
value: any;
|
|
2538
|
+
}[] | undefined;
|
|
2539
|
+
readonly dependsOn?: (string | {
|
|
2540
|
+
field: string;
|
|
2541
|
+
param?: string | undefined;
|
|
2542
|
+
})[] | undefined;
|
|
2543
|
+
readonly allowCreate?: boolean | undefined;
|
|
2326
2544
|
readonly expression?: {
|
|
2327
2545
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2328
2546
|
source?: string | undefined;
|
|
@@ -2478,6 +2696,25 @@ declare const SysSetting: Omit<{
|
|
|
2478
2696
|
readonly relatedList?: boolean | undefined;
|
|
2479
2697
|
readonly relatedListTitle?: string | undefined;
|
|
2480
2698
|
readonly relatedListColumns?: any[] | undefined;
|
|
2699
|
+
readonly displayField?: string | undefined;
|
|
2700
|
+
readonly descriptionField?: string | undefined;
|
|
2701
|
+
readonly lookupColumns?: (string | {
|
|
2702
|
+
field: string;
|
|
2703
|
+
label?: string | undefined;
|
|
2704
|
+
width?: string | undefined;
|
|
2705
|
+
type?: string | undefined;
|
|
2706
|
+
})[] | undefined;
|
|
2707
|
+
readonly lookupPageSize?: number | undefined;
|
|
2708
|
+
readonly lookupFilters?: {
|
|
2709
|
+
field: string;
|
|
2710
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
2711
|
+
value: any;
|
|
2712
|
+
}[] | undefined;
|
|
2713
|
+
readonly dependsOn?: (string | {
|
|
2714
|
+
field: string;
|
|
2715
|
+
param?: string | undefined;
|
|
2716
|
+
})[] | undefined;
|
|
2717
|
+
readonly allowCreate?: boolean | undefined;
|
|
2481
2718
|
readonly expression?: {
|
|
2482
2719
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2483
2720
|
source?: string | undefined;
|
|
@@ -2633,6 +2870,25 @@ declare const SysSetting: Omit<{
|
|
|
2633
2870
|
readonly relatedList?: boolean | undefined;
|
|
2634
2871
|
readonly relatedListTitle?: string | undefined;
|
|
2635
2872
|
readonly relatedListColumns?: any[] | undefined;
|
|
2873
|
+
readonly displayField?: string | undefined;
|
|
2874
|
+
readonly descriptionField?: string | undefined;
|
|
2875
|
+
readonly lookupColumns?: (string | {
|
|
2876
|
+
field: string;
|
|
2877
|
+
label?: string | undefined;
|
|
2878
|
+
width?: string | undefined;
|
|
2879
|
+
type?: string | undefined;
|
|
2880
|
+
})[] | undefined;
|
|
2881
|
+
readonly lookupPageSize?: number | undefined;
|
|
2882
|
+
readonly lookupFilters?: {
|
|
2883
|
+
field: string;
|
|
2884
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
2885
|
+
value: any;
|
|
2886
|
+
}[] | undefined;
|
|
2887
|
+
readonly dependsOn?: (string | {
|
|
2888
|
+
field: string;
|
|
2889
|
+
param?: string | undefined;
|
|
2890
|
+
})[] | undefined;
|
|
2891
|
+
readonly allowCreate?: boolean | undefined;
|
|
2636
2892
|
readonly expression?: {
|
|
2637
2893
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2638
2894
|
source?: string | undefined;
|
|
@@ -2788,6 +3044,25 @@ declare const SysSetting: Omit<{
|
|
|
2788
3044
|
readonly relatedList?: boolean | undefined;
|
|
2789
3045
|
readonly relatedListTitle?: string | undefined;
|
|
2790
3046
|
readonly relatedListColumns?: any[] | undefined;
|
|
3047
|
+
readonly displayField?: string | undefined;
|
|
3048
|
+
readonly descriptionField?: string | undefined;
|
|
3049
|
+
readonly lookupColumns?: (string | {
|
|
3050
|
+
field: string;
|
|
3051
|
+
label?: string | undefined;
|
|
3052
|
+
width?: string | undefined;
|
|
3053
|
+
type?: string | undefined;
|
|
3054
|
+
})[] | undefined;
|
|
3055
|
+
readonly lookupPageSize?: number | undefined;
|
|
3056
|
+
readonly lookupFilters?: {
|
|
3057
|
+
field: string;
|
|
3058
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
3059
|
+
value: any;
|
|
3060
|
+
}[] | undefined;
|
|
3061
|
+
readonly dependsOn?: (string | {
|
|
3062
|
+
field: string;
|
|
3063
|
+
param?: string | undefined;
|
|
3064
|
+
})[] | undefined;
|
|
3065
|
+
readonly allowCreate?: boolean | undefined;
|
|
2791
3066
|
readonly expression?: {
|
|
2792
3067
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2793
3068
|
source?: string | undefined;
|
|
@@ -2996,6 +3271,25 @@ declare const SysSecret: Omit<{
|
|
|
2996
3271
|
relatedList?: boolean | undefined;
|
|
2997
3272
|
relatedListTitle?: string | undefined;
|
|
2998
3273
|
relatedListColumns?: any[] | undefined;
|
|
3274
|
+
displayField?: string | undefined;
|
|
3275
|
+
descriptionField?: string | undefined;
|
|
3276
|
+
lookupColumns?: (string | {
|
|
3277
|
+
field: string;
|
|
3278
|
+
label?: string | undefined;
|
|
3279
|
+
width?: string | undefined;
|
|
3280
|
+
type?: string | undefined;
|
|
3281
|
+
})[] | undefined;
|
|
3282
|
+
lookupPageSize?: number | undefined;
|
|
3283
|
+
lookupFilters?: {
|
|
3284
|
+
field: string;
|
|
3285
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
3286
|
+
value: any;
|
|
3287
|
+
}[] | undefined;
|
|
3288
|
+
dependsOn?: (string | {
|
|
3289
|
+
field: string;
|
|
3290
|
+
param?: string | undefined;
|
|
3291
|
+
})[] | undefined;
|
|
3292
|
+
allowCreate?: boolean | undefined;
|
|
2999
3293
|
expression?: {
|
|
3000
3294
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3001
3295
|
source?: string | undefined;
|
|
@@ -3271,7 +3565,7 @@ declare const SysSecret: Omit<{
|
|
|
3271
3565
|
} | undefined;
|
|
3272
3566
|
compactLayout?: string[] | undefined;
|
|
3273
3567
|
listViews?: Record<string, {
|
|
3274
|
-
type: "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
3568
|
+
type: "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
3275
3569
|
columns: string[] | {
|
|
3276
3570
|
field: string;
|
|
3277
3571
|
label?: string | undefined;
|
|
@@ -3388,6 +3682,7 @@ declare const SysSecret: Omit<{
|
|
|
3388
3682
|
colorField?: string | undefined;
|
|
3389
3683
|
} | undefined;
|
|
3390
3684
|
gantt?: {
|
|
3685
|
+
[x: string]: unknown;
|
|
3391
3686
|
startDateField: string;
|
|
3392
3687
|
endDateField: string;
|
|
3393
3688
|
titleField: string;
|
|
@@ -3438,6 +3733,13 @@ declare const SysSecret: Omit<{
|
|
|
3438
3733
|
values: string[];
|
|
3439
3734
|
dimensions?: string[] | undefined;
|
|
3440
3735
|
} | undefined;
|
|
3736
|
+
tree?: {
|
|
3737
|
+
[x: string]: unknown;
|
|
3738
|
+
parentField?: string | undefined;
|
|
3739
|
+
labelField?: string | undefined;
|
|
3740
|
+
fields?: string[] | undefined;
|
|
3741
|
+
defaultExpandedDepth?: number | undefined;
|
|
3742
|
+
} | undefined;
|
|
3441
3743
|
description?: string | undefined;
|
|
3442
3744
|
sharing?: {
|
|
3443
3745
|
type: "personal" | "collaborative";
|
|
@@ -3493,7 +3795,7 @@ declare const SysSecret: Omit<{
|
|
|
3493
3795
|
} | undefined;
|
|
3494
3796
|
appearance?: {
|
|
3495
3797
|
showDescription: boolean;
|
|
3496
|
-
allowedVisualizations?: ("grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
3798
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
3497
3799
|
} | undefined;
|
|
3498
3800
|
tabs?: {
|
|
3499
3801
|
name: string;
|
|
@@ -3562,6 +3864,7 @@ declare const SysSecret: Omit<{
|
|
|
3562
3864
|
} | undefined;
|
|
3563
3865
|
}> | undefined;
|
|
3564
3866
|
defaultDetailForm?: string | undefined;
|
|
3867
|
+
searchableFields?: string[] | undefined;
|
|
3565
3868
|
search?: {
|
|
3566
3869
|
fields: string[];
|
|
3567
3870
|
displayFields?: string[] | undefined;
|
|
@@ -3760,6 +4063,25 @@ declare const SysSecret: Omit<{
|
|
|
3760
4063
|
readonly relatedList?: boolean | undefined;
|
|
3761
4064
|
readonly relatedListTitle?: string | undefined;
|
|
3762
4065
|
readonly relatedListColumns?: any[] | undefined;
|
|
4066
|
+
readonly displayField?: string | undefined;
|
|
4067
|
+
readonly descriptionField?: string | undefined;
|
|
4068
|
+
readonly lookupColumns?: (string | {
|
|
4069
|
+
field: string;
|
|
4070
|
+
label?: string | undefined;
|
|
4071
|
+
width?: string | undefined;
|
|
4072
|
+
type?: string | undefined;
|
|
4073
|
+
})[] | undefined;
|
|
4074
|
+
readonly lookupPageSize?: number | undefined;
|
|
4075
|
+
readonly lookupFilters?: {
|
|
4076
|
+
field: string;
|
|
4077
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
4078
|
+
value: any;
|
|
4079
|
+
}[] | undefined;
|
|
4080
|
+
readonly dependsOn?: (string | {
|
|
4081
|
+
field: string;
|
|
4082
|
+
param?: string | undefined;
|
|
4083
|
+
})[] | undefined;
|
|
4084
|
+
readonly allowCreate?: boolean | undefined;
|
|
3763
4085
|
readonly expression?: {
|
|
3764
4086
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3765
4087
|
source?: string | undefined;
|
|
@@ -3915,6 +4237,25 @@ declare const SysSecret: Omit<{
|
|
|
3915
4237
|
readonly relatedList?: boolean | undefined;
|
|
3916
4238
|
readonly relatedListTitle?: string | undefined;
|
|
3917
4239
|
readonly relatedListColumns?: any[] | undefined;
|
|
4240
|
+
readonly displayField?: string | undefined;
|
|
4241
|
+
readonly descriptionField?: string | undefined;
|
|
4242
|
+
readonly lookupColumns?: (string | {
|
|
4243
|
+
field: string;
|
|
4244
|
+
label?: string | undefined;
|
|
4245
|
+
width?: string | undefined;
|
|
4246
|
+
type?: string | undefined;
|
|
4247
|
+
})[] | undefined;
|
|
4248
|
+
readonly lookupPageSize?: number | undefined;
|
|
4249
|
+
readonly lookupFilters?: {
|
|
4250
|
+
field: string;
|
|
4251
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
4252
|
+
value: any;
|
|
4253
|
+
}[] | undefined;
|
|
4254
|
+
readonly dependsOn?: (string | {
|
|
4255
|
+
field: string;
|
|
4256
|
+
param?: string | undefined;
|
|
4257
|
+
})[] | undefined;
|
|
4258
|
+
readonly allowCreate?: boolean | undefined;
|
|
3918
4259
|
readonly expression?: {
|
|
3919
4260
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3920
4261
|
source?: string | undefined;
|
|
@@ -4070,6 +4411,25 @@ declare const SysSecret: Omit<{
|
|
|
4070
4411
|
readonly relatedList?: boolean | undefined;
|
|
4071
4412
|
readonly relatedListTitle?: string | undefined;
|
|
4072
4413
|
readonly relatedListColumns?: any[] | undefined;
|
|
4414
|
+
readonly displayField?: string | undefined;
|
|
4415
|
+
readonly descriptionField?: string | undefined;
|
|
4416
|
+
readonly lookupColumns?: (string | {
|
|
4417
|
+
field: string;
|
|
4418
|
+
label?: string | undefined;
|
|
4419
|
+
width?: string | undefined;
|
|
4420
|
+
type?: string | undefined;
|
|
4421
|
+
})[] | undefined;
|
|
4422
|
+
readonly lookupPageSize?: number | undefined;
|
|
4423
|
+
readonly lookupFilters?: {
|
|
4424
|
+
field: string;
|
|
4425
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
4426
|
+
value: any;
|
|
4427
|
+
}[] | undefined;
|
|
4428
|
+
readonly dependsOn?: (string | {
|
|
4429
|
+
field: string;
|
|
4430
|
+
param?: string | undefined;
|
|
4431
|
+
})[] | undefined;
|
|
4432
|
+
readonly allowCreate?: boolean | undefined;
|
|
4073
4433
|
readonly expression?: {
|
|
4074
4434
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4075
4435
|
source?: string | undefined;
|
|
@@ -4231,6 +4591,25 @@ declare const SysSecret: Omit<{
|
|
|
4231
4591
|
readonly relatedList?: boolean | undefined;
|
|
4232
4592
|
readonly relatedListTitle?: string | undefined;
|
|
4233
4593
|
readonly relatedListColumns?: any[] | undefined;
|
|
4594
|
+
readonly displayField?: string | undefined;
|
|
4595
|
+
readonly descriptionField?: string | undefined;
|
|
4596
|
+
readonly lookupColumns?: (string | {
|
|
4597
|
+
field: string;
|
|
4598
|
+
label?: string | undefined;
|
|
4599
|
+
width?: string | undefined;
|
|
4600
|
+
type?: string | undefined;
|
|
4601
|
+
})[] | undefined;
|
|
4602
|
+
readonly lookupPageSize?: number | undefined;
|
|
4603
|
+
readonly lookupFilters?: {
|
|
4604
|
+
field: string;
|
|
4605
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
4606
|
+
value: any;
|
|
4607
|
+
}[] | undefined;
|
|
4608
|
+
readonly dependsOn?: (string | {
|
|
4609
|
+
field: string;
|
|
4610
|
+
param?: string | undefined;
|
|
4611
|
+
})[] | undefined;
|
|
4612
|
+
readonly allowCreate?: boolean | undefined;
|
|
4234
4613
|
readonly expression?: {
|
|
4235
4614
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4236
4615
|
source?: string | undefined;
|
|
@@ -4386,6 +4765,25 @@ declare const SysSecret: Omit<{
|
|
|
4386
4765
|
readonly relatedList?: boolean | undefined;
|
|
4387
4766
|
readonly relatedListTitle?: string | undefined;
|
|
4388
4767
|
readonly relatedListColumns?: any[] | undefined;
|
|
4768
|
+
readonly displayField?: string | undefined;
|
|
4769
|
+
readonly descriptionField?: string | undefined;
|
|
4770
|
+
readonly lookupColumns?: (string | {
|
|
4771
|
+
field: string;
|
|
4772
|
+
label?: string | undefined;
|
|
4773
|
+
width?: string | undefined;
|
|
4774
|
+
type?: string | undefined;
|
|
4775
|
+
})[] | undefined;
|
|
4776
|
+
readonly lookupPageSize?: number | undefined;
|
|
4777
|
+
readonly lookupFilters?: {
|
|
4778
|
+
field: string;
|
|
4779
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
4780
|
+
value: any;
|
|
4781
|
+
}[] | undefined;
|
|
4782
|
+
readonly dependsOn?: (string | {
|
|
4783
|
+
field: string;
|
|
4784
|
+
param?: string | undefined;
|
|
4785
|
+
})[] | undefined;
|
|
4786
|
+
readonly allowCreate?: boolean | undefined;
|
|
4389
4787
|
readonly expression?: {
|
|
4390
4788
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4391
4789
|
source?: string | undefined;
|
|
@@ -4542,6 +4940,25 @@ declare const SysSecret: Omit<{
|
|
|
4542
4940
|
readonly relatedList?: boolean | undefined;
|
|
4543
4941
|
readonly relatedListTitle?: string | undefined;
|
|
4544
4942
|
readonly relatedListColumns?: any[] | undefined;
|
|
4943
|
+
readonly displayField?: string | undefined;
|
|
4944
|
+
readonly descriptionField?: string | undefined;
|
|
4945
|
+
readonly lookupColumns?: (string | {
|
|
4946
|
+
field: string;
|
|
4947
|
+
label?: string | undefined;
|
|
4948
|
+
width?: string | undefined;
|
|
4949
|
+
type?: string | undefined;
|
|
4950
|
+
})[] | undefined;
|
|
4951
|
+
readonly lookupPageSize?: number | undefined;
|
|
4952
|
+
readonly lookupFilters?: {
|
|
4953
|
+
field: string;
|
|
4954
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
4955
|
+
value: any;
|
|
4956
|
+
}[] | undefined;
|
|
4957
|
+
readonly dependsOn?: (string | {
|
|
4958
|
+
field: string;
|
|
4959
|
+
param?: string | undefined;
|
|
4960
|
+
})[] | undefined;
|
|
4961
|
+
readonly allowCreate?: boolean | undefined;
|
|
4545
4962
|
readonly expression?: {
|
|
4546
4963
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4547
4964
|
source?: string | undefined;
|
|
@@ -4698,6 +5115,25 @@ declare const SysSecret: Omit<{
|
|
|
4698
5115
|
readonly relatedList?: boolean | undefined;
|
|
4699
5116
|
readonly relatedListTitle?: string | undefined;
|
|
4700
5117
|
readonly relatedListColumns?: any[] | undefined;
|
|
5118
|
+
readonly displayField?: string | undefined;
|
|
5119
|
+
readonly descriptionField?: string | undefined;
|
|
5120
|
+
readonly lookupColumns?: (string | {
|
|
5121
|
+
field: string;
|
|
5122
|
+
label?: string | undefined;
|
|
5123
|
+
width?: string | undefined;
|
|
5124
|
+
type?: string | undefined;
|
|
5125
|
+
})[] | undefined;
|
|
5126
|
+
readonly lookupPageSize?: number | undefined;
|
|
5127
|
+
readonly lookupFilters?: {
|
|
5128
|
+
field: string;
|
|
5129
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
5130
|
+
value: any;
|
|
5131
|
+
}[] | undefined;
|
|
5132
|
+
readonly dependsOn?: (string | {
|
|
5133
|
+
field: string;
|
|
5134
|
+
param?: string | undefined;
|
|
5135
|
+
})[] | undefined;
|
|
5136
|
+
readonly allowCreate?: boolean | undefined;
|
|
4701
5137
|
readonly expression?: {
|
|
4702
5138
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4703
5139
|
source?: string | undefined;
|
|
@@ -4854,6 +5290,25 @@ declare const SysSecret: Omit<{
|
|
|
4854
5290
|
readonly relatedList?: boolean | undefined;
|
|
4855
5291
|
readonly relatedListTitle?: string | undefined;
|
|
4856
5292
|
readonly relatedListColumns?: any[] | undefined;
|
|
5293
|
+
readonly displayField?: string | undefined;
|
|
5294
|
+
readonly descriptionField?: string | undefined;
|
|
5295
|
+
readonly lookupColumns?: (string | {
|
|
5296
|
+
field: string;
|
|
5297
|
+
label?: string | undefined;
|
|
5298
|
+
width?: string | undefined;
|
|
5299
|
+
type?: string | undefined;
|
|
5300
|
+
})[] | undefined;
|
|
5301
|
+
readonly lookupPageSize?: number | undefined;
|
|
5302
|
+
readonly lookupFilters?: {
|
|
5303
|
+
field: string;
|
|
5304
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
5305
|
+
value: any;
|
|
5306
|
+
}[] | undefined;
|
|
5307
|
+
readonly dependsOn?: (string | {
|
|
5308
|
+
field: string;
|
|
5309
|
+
param?: string | undefined;
|
|
5310
|
+
})[] | undefined;
|
|
5311
|
+
readonly allowCreate?: boolean | undefined;
|
|
4857
5312
|
readonly expression?: {
|
|
4858
5313
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4859
5314
|
source?: string | undefined;
|
|
@@ -5009,6 +5464,25 @@ declare const SysSecret: Omit<{
|
|
|
5009
5464
|
readonly relatedList?: boolean | undefined;
|
|
5010
5465
|
readonly relatedListTitle?: string | undefined;
|
|
5011
5466
|
readonly relatedListColumns?: any[] | undefined;
|
|
5467
|
+
readonly displayField?: string | undefined;
|
|
5468
|
+
readonly descriptionField?: string | undefined;
|
|
5469
|
+
readonly lookupColumns?: (string | {
|
|
5470
|
+
field: string;
|
|
5471
|
+
label?: string | undefined;
|
|
5472
|
+
width?: string | undefined;
|
|
5473
|
+
type?: string | undefined;
|
|
5474
|
+
})[] | undefined;
|
|
5475
|
+
readonly lookupPageSize?: number | undefined;
|
|
5476
|
+
readonly lookupFilters?: {
|
|
5477
|
+
field: string;
|
|
5478
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
5479
|
+
value: any;
|
|
5480
|
+
}[] | undefined;
|
|
5481
|
+
readonly dependsOn?: (string | {
|
|
5482
|
+
field: string;
|
|
5483
|
+
param?: string | undefined;
|
|
5484
|
+
})[] | undefined;
|
|
5485
|
+
readonly allowCreate?: boolean | undefined;
|
|
5012
5486
|
readonly expression?: {
|
|
5013
5487
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5014
5488
|
source?: string | undefined;
|
|
@@ -5207,6 +5681,25 @@ declare const SysSettingAudit: Omit<{
|
|
|
5207
5681
|
relatedList?: boolean | undefined;
|
|
5208
5682
|
relatedListTitle?: string | undefined;
|
|
5209
5683
|
relatedListColumns?: any[] | undefined;
|
|
5684
|
+
displayField?: string | undefined;
|
|
5685
|
+
descriptionField?: string | undefined;
|
|
5686
|
+
lookupColumns?: (string | {
|
|
5687
|
+
field: string;
|
|
5688
|
+
label?: string | undefined;
|
|
5689
|
+
width?: string | undefined;
|
|
5690
|
+
type?: string | undefined;
|
|
5691
|
+
})[] | undefined;
|
|
5692
|
+
lookupPageSize?: number | undefined;
|
|
5693
|
+
lookupFilters?: {
|
|
5694
|
+
field: string;
|
|
5695
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
5696
|
+
value: any;
|
|
5697
|
+
}[] | undefined;
|
|
5698
|
+
dependsOn?: (string | {
|
|
5699
|
+
field: string;
|
|
5700
|
+
param?: string | undefined;
|
|
5701
|
+
})[] | undefined;
|
|
5702
|
+
allowCreate?: boolean | undefined;
|
|
5210
5703
|
expression?: {
|
|
5211
5704
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5212
5705
|
source?: string | undefined;
|
|
@@ -5482,7 +5975,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
5482
5975
|
} | undefined;
|
|
5483
5976
|
compactLayout?: string[] | undefined;
|
|
5484
5977
|
listViews?: Record<string, {
|
|
5485
|
-
type: "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
5978
|
+
type: "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
5486
5979
|
columns: string[] | {
|
|
5487
5980
|
field: string;
|
|
5488
5981
|
label?: string | undefined;
|
|
@@ -5599,6 +6092,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
5599
6092
|
colorField?: string | undefined;
|
|
5600
6093
|
} | undefined;
|
|
5601
6094
|
gantt?: {
|
|
6095
|
+
[x: string]: unknown;
|
|
5602
6096
|
startDateField: string;
|
|
5603
6097
|
endDateField: string;
|
|
5604
6098
|
titleField: string;
|
|
@@ -5649,6 +6143,13 @@ declare const SysSettingAudit: Omit<{
|
|
|
5649
6143
|
values: string[];
|
|
5650
6144
|
dimensions?: string[] | undefined;
|
|
5651
6145
|
} | undefined;
|
|
6146
|
+
tree?: {
|
|
6147
|
+
[x: string]: unknown;
|
|
6148
|
+
parentField?: string | undefined;
|
|
6149
|
+
labelField?: string | undefined;
|
|
6150
|
+
fields?: string[] | undefined;
|
|
6151
|
+
defaultExpandedDepth?: number | undefined;
|
|
6152
|
+
} | undefined;
|
|
5652
6153
|
description?: string | undefined;
|
|
5653
6154
|
sharing?: {
|
|
5654
6155
|
type: "personal" | "collaborative";
|
|
@@ -5704,7 +6205,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
5704
6205
|
} | undefined;
|
|
5705
6206
|
appearance?: {
|
|
5706
6207
|
showDescription: boolean;
|
|
5707
|
-
allowedVisualizations?: ("grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
6208
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
5708
6209
|
} | undefined;
|
|
5709
6210
|
tabs?: {
|
|
5710
6211
|
name: string;
|
|
@@ -5773,6 +6274,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
5773
6274
|
} | undefined;
|
|
5774
6275
|
}> | undefined;
|
|
5775
6276
|
defaultDetailForm?: string | undefined;
|
|
6277
|
+
searchableFields?: string[] | undefined;
|
|
5776
6278
|
search?: {
|
|
5777
6279
|
fields: string[];
|
|
5778
6280
|
displayFields?: string[] | undefined;
|
|
@@ -5975,6 +6477,25 @@ declare const SysSettingAudit: Omit<{
|
|
|
5975
6477
|
readonly relatedList?: boolean | undefined;
|
|
5976
6478
|
readonly relatedListTitle?: string | undefined;
|
|
5977
6479
|
readonly relatedListColumns?: any[] | undefined;
|
|
6480
|
+
readonly displayField?: string | undefined;
|
|
6481
|
+
readonly descriptionField?: string | undefined;
|
|
6482
|
+
readonly lookupColumns?: (string | {
|
|
6483
|
+
field: string;
|
|
6484
|
+
label?: string | undefined;
|
|
6485
|
+
width?: string | undefined;
|
|
6486
|
+
type?: string | undefined;
|
|
6487
|
+
})[] | undefined;
|
|
6488
|
+
readonly lookupPageSize?: number | undefined;
|
|
6489
|
+
readonly lookupFilters?: {
|
|
6490
|
+
field: string;
|
|
6491
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
6492
|
+
value: any;
|
|
6493
|
+
}[] | undefined;
|
|
6494
|
+
readonly dependsOn?: (string | {
|
|
6495
|
+
field: string;
|
|
6496
|
+
param?: string | undefined;
|
|
6497
|
+
})[] | undefined;
|
|
6498
|
+
readonly allowCreate?: boolean | undefined;
|
|
5978
6499
|
readonly expression?: {
|
|
5979
6500
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5980
6501
|
source?: string | undefined;
|
|
@@ -6130,6 +6651,25 @@ declare const SysSettingAudit: Omit<{
|
|
|
6130
6651
|
readonly relatedList?: boolean | undefined;
|
|
6131
6652
|
readonly relatedListTitle?: string | undefined;
|
|
6132
6653
|
readonly relatedListColumns?: any[] | undefined;
|
|
6654
|
+
readonly displayField?: string | undefined;
|
|
6655
|
+
readonly descriptionField?: string | undefined;
|
|
6656
|
+
readonly lookupColumns?: (string | {
|
|
6657
|
+
field: string;
|
|
6658
|
+
label?: string | undefined;
|
|
6659
|
+
width?: string | undefined;
|
|
6660
|
+
type?: string | undefined;
|
|
6661
|
+
})[] | undefined;
|
|
6662
|
+
readonly lookupPageSize?: number | undefined;
|
|
6663
|
+
readonly lookupFilters?: {
|
|
6664
|
+
field: string;
|
|
6665
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
6666
|
+
value: any;
|
|
6667
|
+
}[] | undefined;
|
|
6668
|
+
readonly dependsOn?: (string | {
|
|
6669
|
+
field: string;
|
|
6670
|
+
param?: string | undefined;
|
|
6671
|
+
})[] | undefined;
|
|
6672
|
+
readonly allowCreate?: boolean | undefined;
|
|
6133
6673
|
readonly expression?: {
|
|
6134
6674
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6135
6675
|
source?: string | undefined;
|
|
@@ -6285,6 +6825,25 @@ declare const SysSettingAudit: Omit<{
|
|
|
6285
6825
|
readonly relatedList?: boolean | undefined;
|
|
6286
6826
|
readonly relatedListTitle?: string | undefined;
|
|
6287
6827
|
readonly relatedListColumns?: any[] | undefined;
|
|
6828
|
+
readonly displayField?: string | undefined;
|
|
6829
|
+
readonly descriptionField?: string | undefined;
|
|
6830
|
+
readonly lookupColumns?: (string | {
|
|
6831
|
+
field: string;
|
|
6832
|
+
label?: string | undefined;
|
|
6833
|
+
width?: string | undefined;
|
|
6834
|
+
type?: string | undefined;
|
|
6835
|
+
})[] | undefined;
|
|
6836
|
+
readonly lookupPageSize?: number | undefined;
|
|
6837
|
+
readonly lookupFilters?: {
|
|
6838
|
+
field: string;
|
|
6839
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
6840
|
+
value: any;
|
|
6841
|
+
}[] | undefined;
|
|
6842
|
+
readonly dependsOn?: (string | {
|
|
6843
|
+
field: string;
|
|
6844
|
+
param?: string | undefined;
|
|
6845
|
+
})[] | undefined;
|
|
6846
|
+
readonly allowCreate?: boolean | undefined;
|
|
6288
6847
|
readonly expression?: {
|
|
6289
6848
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6290
6849
|
source?: string | undefined;
|
|
@@ -6440,6 +6999,25 @@ declare const SysSettingAudit: Omit<{
|
|
|
6440
6999
|
readonly relatedList?: boolean | undefined;
|
|
6441
7000
|
readonly relatedListTitle?: string | undefined;
|
|
6442
7001
|
readonly relatedListColumns?: any[] | undefined;
|
|
7002
|
+
readonly displayField?: string | undefined;
|
|
7003
|
+
readonly descriptionField?: string | undefined;
|
|
7004
|
+
readonly lookupColumns?: (string | {
|
|
7005
|
+
field: string;
|
|
7006
|
+
label?: string | undefined;
|
|
7007
|
+
width?: string | undefined;
|
|
7008
|
+
type?: string | undefined;
|
|
7009
|
+
})[] | undefined;
|
|
7010
|
+
readonly lookupPageSize?: number | undefined;
|
|
7011
|
+
readonly lookupFilters?: {
|
|
7012
|
+
field: string;
|
|
7013
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7014
|
+
value: any;
|
|
7015
|
+
}[] | undefined;
|
|
7016
|
+
readonly dependsOn?: (string | {
|
|
7017
|
+
field: string;
|
|
7018
|
+
param?: string | undefined;
|
|
7019
|
+
})[] | undefined;
|
|
7020
|
+
readonly allowCreate?: boolean | undefined;
|
|
6443
7021
|
readonly expression?: {
|
|
6444
7022
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6445
7023
|
source?: string | undefined;
|
|
@@ -6595,6 +7173,25 @@ declare const SysSettingAudit: Omit<{
|
|
|
6595
7173
|
readonly relatedList?: boolean | undefined;
|
|
6596
7174
|
readonly relatedListTitle?: string | undefined;
|
|
6597
7175
|
readonly relatedListColumns?: any[] | undefined;
|
|
7176
|
+
readonly displayField?: string | undefined;
|
|
7177
|
+
readonly descriptionField?: string | undefined;
|
|
7178
|
+
readonly lookupColumns?: (string | {
|
|
7179
|
+
field: string;
|
|
7180
|
+
label?: string | undefined;
|
|
7181
|
+
width?: string | undefined;
|
|
7182
|
+
type?: string | undefined;
|
|
7183
|
+
})[] | undefined;
|
|
7184
|
+
readonly lookupPageSize?: number | undefined;
|
|
7185
|
+
readonly lookupFilters?: {
|
|
7186
|
+
field: string;
|
|
7187
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7188
|
+
value: any;
|
|
7189
|
+
}[] | undefined;
|
|
7190
|
+
readonly dependsOn?: (string | {
|
|
7191
|
+
field: string;
|
|
7192
|
+
param?: string | undefined;
|
|
7193
|
+
})[] | undefined;
|
|
7194
|
+
readonly allowCreate?: boolean | undefined;
|
|
6598
7195
|
readonly expression?: {
|
|
6599
7196
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6600
7197
|
source?: string | undefined;
|
|
@@ -6750,6 +7347,25 @@ declare const SysSettingAudit: Omit<{
|
|
|
6750
7347
|
readonly relatedList?: boolean | undefined;
|
|
6751
7348
|
readonly relatedListTitle?: string | undefined;
|
|
6752
7349
|
readonly relatedListColumns?: any[] | undefined;
|
|
7350
|
+
readonly displayField?: string | undefined;
|
|
7351
|
+
readonly descriptionField?: string | undefined;
|
|
7352
|
+
readonly lookupColumns?: (string | {
|
|
7353
|
+
field: string;
|
|
7354
|
+
label?: string | undefined;
|
|
7355
|
+
width?: string | undefined;
|
|
7356
|
+
type?: string | undefined;
|
|
7357
|
+
})[] | undefined;
|
|
7358
|
+
readonly lookupPageSize?: number | undefined;
|
|
7359
|
+
readonly lookupFilters?: {
|
|
7360
|
+
field: string;
|
|
7361
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7362
|
+
value: any;
|
|
7363
|
+
}[] | undefined;
|
|
7364
|
+
readonly dependsOn?: (string | {
|
|
7365
|
+
field: string;
|
|
7366
|
+
param?: string | undefined;
|
|
7367
|
+
})[] | undefined;
|
|
7368
|
+
readonly allowCreate?: boolean | undefined;
|
|
6753
7369
|
readonly expression?: {
|
|
6754
7370
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6755
7371
|
source?: string | undefined;
|
|
@@ -6905,6 +7521,25 @@ declare const SysSettingAudit: Omit<{
|
|
|
6905
7521
|
readonly relatedList?: boolean | undefined;
|
|
6906
7522
|
readonly relatedListTitle?: string | undefined;
|
|
6907
7523
|
readonly relatedListColumns?: any[] | undefined;
|
|
7524
|
+
readonly displayField?: string | undefined;
|
|
7525
|
+
readonly descriptionField?: string | undefined;
|
|
7526
|
+
readonly lookupColumns?: (string | {
|
|
7527
|
+
field: string;
|
|
7528
|
+
label?: string | undefined;
|
|
7529
|
+
width?: string | undefined;
|
|
7530
|
+
type?: string | undefined;
|
|
7531
|
+
})[] | undefined;
|
|
7532
|
+
readonly lookupPageSize?: number | undefined;
|
|
7533
|
+
readonly lookupFilters?: {
|
|
7534
|
+
field: string;
|
|
7535
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7536
|
+
value: any;
|
|
7537
|
+
}[] | undefined;
|
|
7538
|
+
readonly dependsOn?: (string | {
|
|
7539
|
+
field: string;
|
|
7540
|
+
param?: string | undefined;
|
|
7541
|
+
})[] | undefined;
|
|
7542
|
+
readonly allowCreate?: boolean | undefined;
|
|
6908
7543
|
readonly expression?: {
|
|
6909
7544
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6910
7545
|
source?: string | undefined;
|
|
@@ -7065,6 +7700,25 @@ declare const SysSettingAudit: Omit<{
|
|
|
7065
7700
|
readonly relatedList?: boolean | undefined;
|
|
7066
7701
|
readonly relatedListTitle?: string | undefined;
|
|
7067
7702
|
readonly relatedListColumns?: any[] | undefined;
|
|
7703
|
+
readonly displayField?: string | undefined;
|
|
7704
|
+
readonly descriptionField?: string | undefined;
|
|
7705
|
+
readonly lookupColumns?: (string | {
|
|
7706
|
+
field: string;
|
|
7707
|
+
label?: string | undefined;
|
|
7708
|
+
width?: string | undefined;
|
|
7709
|
+
type?: string | undefined;
|
|
7710
|
+
})[] | undefined;
|
|
7711
|
+
readonly lookupPageSize?: number | undefined;
|
|
7712
|
+
readonly lookupFilters?: {
|
|
7713
|
+
field: string;
|
|
7714
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7715
|
+
value: any;
|
|
7716
|
+
}[] | undefined;
|
|
7717
|
+
readonly dependsOn?: (string | {
|
|
7718
|
+
field: string;
|
|
7719
|
+
param?: string | undefined;
|
|
7720
|
+
})[] | undefined;
|
|
7721
|
+
readonly allowCreate?: boolean | undefined;
|
|
7068
7722
|
readonly expression?: {
|
|
7069
7723
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7070
7724
|
source?: string | undefined;
|
|
@@ -7221,6 +7875,25 @@ declare const SysSettingAudit: Omit<{
|
|
|
7221
7875
|
readonly relatedList?: boolean | undefined;
|
|
7222
7876
|
readonly relatedListTitle?: string | undefined;
|
|
7223
7877
|
readonly relatedListColumns?: any[] | undefined;
|
|
7878
|
+
readonly displayField?: string | undefined;
|
|
7879
|
+
readonly descriptionField?: string | undefined;
|
|
7880
|
+
readonly lookupColumns?: (string | {
|
|
7881
|
+
field: string;
|
|
7882
|
+
label?: string | undefined;
|
|
7883
|
+
width?: string | undefined;
|
|
7884
|
+
type?: string | undefined;
|
|
7885
|
+
})[] | undefined;
|
|
7886
|
+
readonly lookupPageSize?: number | undefined;
|
|
7887
|
+
readonly lookupFilters?: {
|
|
7888
|
+
field: string;
|
|
7889
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7890
|
+
value: any;
|
|
7891
|
+
}[] | undefined;
|
|
7892
|
+
readonly dependsOn?: (string | {
|
|
7893
|
+
field: string;
|
|
7894
|
+
param?: string | undefined;
|
|
7895
|
+
})[] | undefined;
|
|
7896
|
+
readonly allowCreate?: boolean | undefined;
|
|
7224
7897
|
readonly expression?: {
|
|
7225
7898
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7226
7899
|
source?: string | undefined;
|
|
@@ -7382,6 +8055,25 @@ declare const SysSettingAudit: Omit<{
|
|
|
7382
8055
|
readonly relatedList?: boolean | undefined;
|
|
7383
8056
|
readonly relatedListTitle?: string | undefined;
|
|
7384
8057
|
readonly relatedListColumns?: any[] | undefined;
|
|
8058
|
+
readonly displayField?: string | undefined;
|
|
8059
|
+
readonly descriptionField?: string | undefined;
|
|
8060
|
+
readonly lookupColumns?: (string | {
|
|
8061
|
+
field: string;
|
|
8062
|
+
label?: string | undefined;
|
|
8063
|
+
width?: string | undefined;
|
|
8064
|
+
type?: string | undefined;
|
|
8065
|
+
})[] | undefined;
|
|
8066
|
+
readonly lookupPageSize?: number | undefined;
|
|
8067
|
+
readonly lookupFilters?: {
|
|
8068
|
+
field: string;
|
|
8069
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
8070
|
+
value: any;
|
|
8071
|
+
}[] | undefined;
|
|
8072
|
+
readonly dependsOn?: (string | {
|
|
8073
|
+
field: string;
|
|
8074
|
+
param?: string | undefined;
|
|
8075
|
+
})[] | undefined;
|
|
8076
|
+
readonly allowCreate?: boolean | undefined;
|
|
7385
8077
|
readonly expression?: {
|
|
7386
8078
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7387
8079
|
source?: string | undefined;
|
|
@@ -7538,6 +8230,25 @@ declare const SysSettingAudit: Omit<{
|
|
|
7538
8230
|
readonly relatedList?: boolean | undefined;
|
|
7539
8231
|
readonly relatedListTitle?: string | undefined;
|
|
7540
8232
|
readonly relatedListColumns?: any[] | undefined;
|
|
8233
|
+
readonly displayField?: string | undefined;
|
|
8234
|
+
readonly descriptionField?: string | undefined;
|
|
8235
|
+
readonly lookupColumns?: (string | {
|
|
8236
|
+
field: string;
|
|
8237
|
+
label?: string | undefined;
|
|
8238
|
+
width?: string | undefined;
|
|
8239
|
+
type?: string | undefined;
|
|
8240
|
+
})[] | undefined;
|
|
8241
|
+
readonly lookupPageSize?: number | undefined;
|
|
8242
|
+
readonly lookupFilters?: {
|
|
8243
|
+
field: string;
|
|
8244
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
8245
|
+
value: any;
|
|
8246
|
+
}[] | undefined;
|
|
8247
|
+
readonly dependsOn?: (string | {
|
|
8248
|
+
field: string;
|
|
8249
|
+
param?: string | undefined;
|
|
8250
|
+
})[] | undefined;
|
|
8251
|
+
readonly allowCreate?: boolean | undefined;
|
|
7541
8252
|
readonly expression?: {
|
|
7542
8253
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7543
8254
|
source?: string | undefined;
|
|
@@ -7694,6 +8405,25 @@ declare const SysSettingAudit: Omit<{
|
|
|
7694
8405
|
readonly relatedList?: boolean | undefined;
|
|
7695
8406
|
readonly relatedListTitle?: string | undefined;
|
|
7696
8407
|
readonly relatedListColumns?: any[] | undefined;
|
|
8408
|
+
readonly displayField?: string | undefined;
|
|
8409
|
+
readonly descriptionField?: string | undefined;
|
|
8410
|
+
readonly lookupColumns?: (string | {
|
|
8411
|
+
field: string;
|
|
8412
|
+
label?: string | undefined;
|
|
8413
|
+
width?: string | undefined;
|
|
8414
|
+
type?: string | undefined;
|
|
8415
|
+
})[] | undefined;
|
|
8416
|
+
readonly lookupPageSize?: number | undefined;
|
|
8417
|
+
readonly lookupFilters?: {
|
|
8418
|
+
field: string;
|
|
8419
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
8420
|
+
value: any;
|
|
8421
|
+
}[] | undefined;
|
|
8422
|
+
readonly dependsOn?: (string | {
|
|
8423
|
+
field: string;
|
|
8424
|
+
param?: string | undefined;
|
|
8425
|
+
})[] | undefined;
|
|
8426
|
+
readonly allowCreate?: boolean | undefined;
|
|
7697
8427
|
readonly expression?: {
|
|
7698
8428
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7699
8429
|
source?: string | undefined;
|
|
@@ -7850,6 +8580,25 @@ declare const SysSettingAudit: Omit<{
|
|
|
7850
8580
|
readonly relatedList?: boolean | undefined;
|
|
7851
8581
|
readonly relatedListTitle?: string | undefined;
|
|
7852
8582
|
readonly relatedListColumns?: any[] | undefined;
|
|
8583
|
+
readonly displayField?: string | undefined;
|
|
8584
|
+
readonly descriptionField?: string | undefined;
|
|
8585
|
+
readonly lookupColumns?: (string | {
|
|
8586
|
+
field: string;
|
|
8587
|
+
label?: string | undefined;
|
|
8588
|
+
width?: string | undefined;
|
|
8589
|
+
type?: string | undefined;
|
|
8590
|
+
})[] | undefined;
|
|
8591
|
+
readonly lookupPageSize?: number | undefined;
|
|
8592
|
+
readonly lookupFilters?: {
|
|
8593
|
+
field: string;
|
|
8594
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
8595
|
+
value: any;
|
|
8596
|
+
}[] | undefined;
|
|
8597
|
+
readonly dependsOn?: (string | {
|
|
8598
|
+
field: string;
|
|
8599
|
+
param?: string | undefined;
|
|
8600
|
+
})[] | undefined;
|
|
8601
|
+
readonly allowCreate?: boolean | undefined;
|
|
7853
8602
|
readonly expression?: {
|
|
7854
8603
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7855
8604
|
source?: string | undefined;
|