@objectstack/service-storage 11.10.0 → 12.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.cts +234 -294
- package/dist/index.d.ts +234 -294
- package/package.json +5 -5
package/dist/index.d.cts
CHANGED
|
@@ -475,7 +475,7 @@ declare const SystemFile: Omit<{
|
|
|
475
475
|
inlineTitle?: string | undefined;
|
|
476
476
|
inlineColumns?: any[] | undefined;
|
|
477
477
|
inlineAmountField?: string | undefined;
|
|
478
|
-
relatedList?: boolean | undefined;
|
|
478
|
+
relatedList?: boolean | "primary" | undefined;
|
|
479
479
|
relatedListTitle?: string | undefined;
|
|
480
480
|
relatedListColumns?: any[] | undefined;
|
|
481
481
|
displayField?: string | undefined;
|
|
@@ -758,7 +758,7 @@ declare const SystemFile: Omit<{
|
|
|
758
758
|
highlightFields?: string[] | undefined;
|
|
759
759
|
stageField?: string | false | undefined;
|
|
760
760
|
listViews?: Record<string, {
|
|
761
|
-
type: "map" | "tree" | "grid" | "kanban" | "
|
|
761
|
+
type: "map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart";
|
|
762
762
|
columns: string[] | {
|
|
763
763
|
field: string;
|
|
764
764
|
label?: string | undefined;
|
|
@@ -774,8 +774,55 @@ declare const SystemFile: Omit<{
|
|
|
774
774
|
link?: boolean | undefined;
|
|
775
775
|
action?: string | undefined;
|
|
776
776
|
}[];
|
|
777
|
-
|
|
777
|
+
sort?: string | {
|
|
778
|
+
field: string;
|
|
779
|
+
order: "asc" | "desc";
|
|
780
|
+
}[] | undefined;
|
|
781
|
+
filter?: {
|
|
782
|
+
field: string;
|
|
783
|
+
operator: string;
|
|
784
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
785
|
+
}[] | undefined;
|
|
786
|
+
description?: string | undefined;
|
|
778
787
|
label?: string | undefined;
|
|
788
|
+
name?: string | undefined;
|
|
789
|
+
responsive?: {
|
|
790
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
791
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
792
|
+
columns?: {
|
|
793
|
+
xs?: number | undefined;
|
|
794
|
+
sm?: number | undefined;
|
|
795
|
+
md?: number | undefined;
|
|
796
|
+
lg?: number | undefined;
|
|
797
|
+
xl?: number | undefined;
|
|
798
|
+
'2xl'?: number | undefined;
|
|
799
|
+
} | undefined;
|
|
800
|
+
order?: {
|
|
801
|
+
xs?: number | undefined;
|
|
802
|
+
sm?: number | undefined;
|
|
803
|
+
md?: number | undefined;
|
|
804
|
+
lg?: number | undefined;
|
|
805
|
+
xl?: number | undefined;
|
|
806
|
+
'2xl'?: number | undefined;
|
|
807
|
+
} | undefined;
|
|
808
|
+
} | undefined;
|
|
809
|
+
navigation?: {
|
|
810
|
+
mode: "split" | "none" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
811
|
+
preventNavigation: boolean;
|
|
812
|
+
openNewTab: boolean;
|
|
813
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
814
|
+
view?: string | undefined;
|
|
815
|
+
width?: string | number | undefined;
|
|
816
|
+
} | undefined;
|
|
817
|
+
sharing?: {
|
|
818
|
+
type: "personal" | "collaborative";
|
|
819
|
+
lockedBy?: string | undefined;
|
|
820
|
+
} | undefined;
|
|
821
|
+
aria?: {
|
|
822
|
+
ariaLabel?: string | undefined;
|
|
823
|
+
ariaDescribedBy?: string | undefined;
|
|
824
|
+
role?: string | undefined;
|
|
825
|
+
} | undefined;
|
|
779
826
|
data?: {
|
|
780
827
|
provider: "object";
|
|
781
828
|
object: string;
|
|
@@ -803,77 +850,42 @@ declare const SystemFile: Omit<{
|
|
|
803
850
|
schemaId: string;
|
|
804
851
|
schema?: Record<string, unknown> | undefined;
|
|
805
852
|
} | undefined;
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
field: string;
|
|
813
|
-
order: "asc" | "desc";
|
|
814
|
-
}[] | undefined;
|
|
815
|
-
searchableFields?: string[] | undefined;
|
|
816
|
-
filterableFields?: string[] | undefined;
|
|
817
|
-
userFilters?: {
|
|
818
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
819
|
-
fields?: {
|
|
820
|
-
field: string;
|
|
821
|
-
label?: string | undefined;
|
|
822
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
823
|
-
options?: {
|
|
824
|
-
value: string | number | boolean;
|
|
825
|
-
label: string;
|
|
826
|
-
color?: string | undefined;
|
|
827
|
-
}[] | undefined;
|
|
828
|
-
showCount?: boolean | undefined;
|
|
829
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
830
|
-
}[] | undefined;
|
|
831
|
-
tabs?: {
|
|
832
|
-
name: string;
|
|
833
|
-
pinned: boolean;
|
|
834
|
-
isDefault: boolean;
|
|
835
|
-
visible: boolean;
|
|
836
|
-
label?: string | undefined;
|
|
837
|
-
icon?: string | undefined;
|
|
838
|
-
view?: string | undefined;
|
|
839
|
-
filter?: {
|
|
840
|
-
field: string;
|
|
841
|
-
operator: string;
|
|
842
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
843
|
-
}[] | undefined;
|
|
844
|
-
order?: number | undefined;
|
|
845
|
-
}[] | undefined;
|
|
846
|
-
showAllRecords?: boolean | undefined;
|
|
853
|
+
tree?: {
|
|
854
|
+
[x: string]: unknown;
|
|
855
|
+
parentField?: string | undefined;
|
|
856
|
+
labelField?: string | undefined;
|
|
857
|
+
fields?: string[] | undefined;
|
|
858
|
+
defaultExpandedDepth?: number | undefined;
|
|
847
859
|
} | undefined;
|
|
860
|
+
inlineEdit?: boolean | undefined;
|
|
861
|
+
virtualScroll?: boolean | undefined;
|
|
848
862
|
resizable?: boolean | undefined;
|
|
849
|
-
striped?: boolean | undefined;
|
|
850
|
-
bordered?: boolean | undefined;
|
|
851
|
-
compactToolbar?: boolean | undefined;
|
|
852
|
-
selection?: {
|
|
853
|
-
type: "none" | "multiple" | "single";
|
|
854
|
-
} | undefined;
|
|
855
|
-
navigation?: {
|
|
856
|
-
mode: "split" | "none" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
857
|
-
preventNavigation: boolean;
|
|
858
|
-
openNewTab: boolean;
|
|
859
|
-
view?: string | undefined;
|
|
860
|
-
width?: string | number | undefined;
|
|
861
|
-
} | undefined;
|
|
862
|
-
pagination?: {
|
|
863
|
-
pageSize: number;
|
|
864
|
-
pageSizeOptions?: number[] | undefined;
|
|
865
|
-
} | undefined;
|
|
866
863
|
kanban?: {
|
|
867
864
|
groupByField: string;
|
|
868
865
|
columns: string[];
|
|
869
866
|
summarizeField?: string | undefined;
|
|
870
867
|
} | undefined;
|
|
868
|
+
gallery?: {
|
|
869
|
+
coverFit: "cover" | "contain";
|
|
870
|
+
cardSize: "small" | "medium" | "large";
|
|
871
|
+
coverField?: string | undefined;
|
|
872
|
+
titleField?: string | undefined;
|
|
873
|
+
visibleFields?: string[] | undefined;
|
|
874
|
+
} | undefined;
|
|
871
875
|
calendar?: {
|
|
872
876
|
startDateField: string;
|
|
873
877
|
titleField: string;
|
|
874
878
|
endDateField?: string | undefined;
|
|
875
879
|
colorField?: string | undefined;
|
|
876
880
|
} | undefined;
|
|
881
|
+
timeline?: {
|
|
882
|
+
startDateField: string;
|
|
883
|
+
titleField: string;
|
|
884
|
+
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
885
|
+
endDateField?: string | undefined;
|
|
886
|
+
groupByField?: string | undefined;
|
|
887
|
+
colorField?: string | undefined;
|
|
888
|
+
} | undefined;
|
|
877
889
|
gantt?: {
|
|
878
890
|
[x: string]: unknown;
|
|
879
891
|
startDateField: string;
|
|
@@ -905,40 +917,40 @@ declare const SystemFile: Omit<{
|
|
|
905
917
|
}[] | undefined;
|
|
906
918
|
autoZoomToFilter?: boolean | undefined;
|
|
907
919
|
} | undefined;
|
|
908
|
-
gallery?: {
|
|
909
|
-
coverFit: "cover" | "contain";
|
|
910
|
-
cardSize: "small" | "medium" | "large";
|
|
911
|
-
coverField?: string | undefined;
|
|
912
|
-
titleField?: string | undefined;
|
|
913
|
-
visibleFields?: string[] | undefined;
|
|
914
|
-
} | undefined;
|
|
915
|
-
timeline?: {
|
|
916
|
-
startDateField: string;
|
|
917
|
-
titleField: string;
|
|
918
|
-
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
919
|
-
endDateField?: string | undefined;
|
|
920
|
-
groupByField?: string | undefined;
|
|
921
|
-
colorField?: string | undefined;
|
|
922
|
-
} | undefined;
|
|
923
920
|
chart?: {
|
|
924
921
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
925
922
|
dataset: string;
|
|
926
923
|
values: string[];
|
|
927
924
|
dimensions?: string[] | undefined;
|
|
928
925
|
} | undefined;
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
926
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
927
|
+
tabs?: {
|
|
928
|
+
name: string;
|
|
929
|
+
pinned: boolean;
|
|
930
|
+
isDefault: boolean;
|
|
931
|
+
visible: boolean;
|
|
932
|
+
label?: string | undefined;
|
|
933
|
+
icon?: string | undefined;
|
|
934
|
+
view?: string | undefined;
|
|
935
|
+
filter?: {
|
|
936
|
+
field: string;
|
|
937
|
+
operator: string;
|
|
938
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
939
|
+
}[] | undefined;
|
|
940
|
+
order?: number | undefined;
|
|
941
|
+
}[] | undefined;
|
|
942
|
+
searchableFields?: string[] | undefined;
|
|
943
|
+
filterableFields?: string[] | undefined;
|
|
944
|
+
striped?: boolean | undefined;
|
|
945
|
+
bordered?: boolean | undefined;
|
|
946
|
+
compactToolbar?: boolean | undefined;
|
|
947
|
+
selection?: {
|
|
948
|
+
type: "none" | "multiple" | "single";
|
|
935
949
|
} | undefined;
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
lockedBy?: string | undefined;
|
|
950
|
+
pagination?: {
|
|
951
|
+
pageSize: number;
|
|
952
|
+
pageSizeOptions?: number[] | undefined;
|
|
940
953
|
} | undefined;
|
|
941
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
942
954
|
grouping?: {
|
|
943
955
|
fields: {
|
|
944
956
|
field: string;
|
|
@@ -955,7 +967,6 @@ declare const SystemFile: Omit<{
|
|
|
955
967
|
rowActions?: string[] | undefined;
|
|
956
968
|
bulkActions?: string[] | undefined;
|
|
957
969
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
958
|
-
virtualScroll?: boolean | undefined;
|
|
959
970
|
conditionalFormatting?: {
|
|
960
971
|
condition: {
|
|
961
972
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -976,7 +987,6 @@ declare const SystemFile: Omit<{
|
|
|
976
987
|
};
|
|
977
988
|
style: Record<string, string>;
|
|
978
989
|
}[] | undefined;
|
|
979
|
-
inlineEdit?: boolean | undefined;
|
|
980
990
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
981
991
|
userActions?: {
|
|
982
992
|
sort: boolean;
|
|
@@ -989,23 +999,8 @@ declare const SystemFile: Omit<{
|
|
|
989
999
|
} | undefined;
|
|
990
1000
|
appearance?: {
|
|
991
1001
|
showDescription: boolean;
|
|
992
|
-
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "
|
|
1002
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
993
1003
|
} | undefined;
|
|
994
|
-
tabs?: {
|
|
995
|
-
name: string;
|
|
996
|
-
pinned: boolean;
|
|
997
|
-
isDefault: boolean;
|
|
998
|
-
visible: boolean;
|
|
999
|
-
label?: string | undefined;
|
|
1000
|
-
icon?: string | undefined;
|
|
1001
|
-
view?: string | undefined;
|
|
1002
|
-
filter?: {
|
|
1003
|
-
field: string;
|
|
1004
|
-
operator: string;
|
|
1005
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
1006
|
-
}[] | undefined;
|
|
1007
|
-
order?: number | undefined;
|
|
1008
|
-
}[] | undefined;
|
|
1009
1004
|
addRecord?: {
|
|
1010
1005
|
enabled: boolean;
|
|
1011
1006
|
position: "top" | "bottom" | "both";
|
|
@@ -1019,31 +1014,6 @@ declare const SystemFile: Omit<{
|
|
|
1019
1014
|
message?: string | undefined;
|
|
1020
1015
|
icon?: string | undefined;
|
|
1021
1016
|
} | undefined;
|
|
1022
|
-
aria?: {
|
|
1023
|
-
ariaLabel?: string | undefined;
|
|
1024
|
-
ariaDescribedBy?: string | undefined;
|
|
1025
|
-
role?: string | undefined;
|
|
1026
|
-
} | undefined;
|
|
1027
|
-
responsive?: {
|
|
1028
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
1029
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
1030
|
-
columns?: {
|
|
1031
|
-
xs?: number | undefined;
|
|
1032
|
-
sm?: number | undefined;
|
|
1033
|
-
md?: number | undefined;
|
|
1034
|
-
lg?: number | undefined;
|
|
1035
|
-
xl?: number | undefined;
|
|
1036
|
-
'2xl'?: number | undefined;
|
|
1037
|
-
} | undefined;
|
|
1038
|
-
order?: {
|
|
1039
|
-
xs?: number | undefined;
|
|
1040
|
-
sm?: number | undefined;
|
|
1041
|
-
md?: number | undefined;
|
|
1042
|
-
lg?: number | undefined;
|
|
1043
|
-
xl?: number | undefined;
|
|
1044
|
-
'2xl'?: number | undefined;
|
|
1045
|
-
} | undefined;
|
|
1046
|
-
} | undefined;
|
|
1047
1017
|
performance?: {
|
|
1048
1018
|
lazyLoad?: boolean | undefined;
|
|
1049
1019
|
virtualScroll?: {
|
|
@@ -1243,7 +1213,7 @@ declare const SystemFile: Omit<{
|
|
|
1243
1213
|
readonly inlineTitle?: string | undefined;
|
|
1244
1214
|
readonly inlineColumns?: any[] | undefined;
|
|
1245
1215
|
readonly inlineAmountField?: string | undefined;
|
|
1246
|
-
readonly relatedList?: boolean | undefined;
|
|
1216
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1247
1217
|
readonly relatedListTitle?: string | undefined;
|
|
1248
1218
|
readonly relatedListColumns?: any[] | undefined;
|
|
1249
1219
|
readonly displayField?: string | undefined;
|
|
@@ -1417,7 +1387,7 @@ declare const SystemFile: Omit<{
|
|
|
1417
1387
|
readonly inlineTitle?: string | undefined;
|
|
1418
1388
|
readonly inlineColumns?: any[] | undefined;
|
|
1419
1389
|
readonly inlineAmountField?: string | undefined;
|
|
1420
|
-
readonly relatedList?: boolean | undefined;
|
|
1390
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1421
1391
|
readonly relatedListTitle?: string | undefined;
|
|
1422
1392
|
readonly relatedListColumns?: any[] | undefined;
|
|
1423
1393
|
readonly displayField?: string | undefined;
|
|
@@ -1591,7 +1561,7 @@ declare const SystemFile: Omit<{
|
|
|
1591
1561
|
readonly inlineTitle?: string | undefined;
|
|
1592
1562
|
readonly inlineColumns?: any[] | undefined;
|
|
1593
1563
|
readonly inlineAmountField?: string | undefined;
|
|
1594
|
-
readonly relatedList?: boolean | undefined;
|
|
1564
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1595
1565
|
readonly relatedListTitle?: string | undefined;
|
|
1596
1566
|
readonly relatedListColumns?: any[] | undefined;
|
|
1597
1567
|
readonly displayField?: string | undefined;
|
|
@@ -1765,7 +1735,7 @@ declare const SystemFile: Omit<{
|
|
|
1765
1735
|
readonly inlineTitle?: string | undefined;
|
|
1766
1736
|
readonly inlineColumns?: any[] | undefined;
|
|
1767
1737
|
readonly inlineAmountField?: string | undefined;
|
|
1768
|
-
readonly relatedList?: boolean | undefined;
|
|
1738
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1769
1739
|
readonly relatedListTitle?: string | undefined;
|
|
1770
1740
|
readonly relatedListColumns?: any[] | undefined;
|
|
1771
1741
|
readonly displayField?: string | undefined;
|
|
@@ -1939,7 +1909,7 @@ declare const SystemFile: Omit<{
|
|
|
1939
1909
|
readonly inlineTitle?: string | undefined;
|
|
1940
1910
|
readonly inlineColumns?: any[] | undefined;
|
|
1941
1911
|
readonly inlineAmountField?: string | undefined;
|
|
1942
|
-
readonly relatedList?: boolean | undefined;
|
|
1912
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1943
1913
|
readonly relatedListTitle?: string | undefined;
|
|
1944
1914
|
readonly relatedListColumns?: any[] | undefined;
|
|
1945
1915
|
readonly displayField?: string | undefined;
|
|
@@ -2113,7 +2083,7 @@ declare const SystemFile: Omit<{
|
|
|
2113
2083
|
readonly inlineTitle?: string | undefined;
|
|
2114
2084
|
readonly inlineColumns?: any[] | undefined;
|
|
2115
2085
|
readonly inlineAmountField?: string | undefined;
|
|
2116
|
-
readonly relatedList?: boolean | undefined;
|
|
2086
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2117
2087
|
readonly relatedListTitle?: string | undefined;
|
|
2118
2088
|
readonly relatedListColumns?: any[] | undefined;
|
|
2119
2089
|
readonly displayField?: string | undefined;
|
|
@@ -2287,7 +2257,7 @@ declare const SystemFile: Omit<{
|
|
|
2287
2257
|
readonly inlineTitle?: string | undefined;
|
|
2288
2258
|
readonly inlineColumns?: any[] | undefined;
|
|
2289
2259
|
readonly inlineAmountField?: string | undefined;
|
|
2290
|
-
readonly relatedList?: boolean | undefined;
|
|
2260
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2291
2261
|
readonly relatedListTitle?: string | undefined;
|
|
2292
2262
|
readonly relatedListColumns?: any[] | undefined;
|
|
2293
2263
|
readonly displayField?: string | undefined;
|
|
@@ -2461,7 +2431,7 @@ declare const SystemFile: Omit<{
|
|
|
2461
2431
|
readonly inlineTitle?: string | undefined;
|
|
2462
2432
|
readonly inlineColumns?: any[] | undefined;
|
|
2463
2433
|
readonly inlineAmountField?: string | undefined;
|
|
2464
|
-
readonly relatedList?: boolean | undefined;
|
|
2434
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2465
2435
|
readonly relatedListTitle?: string | undefined;
|
|
2466
2436
|
readonly relatedListColumns?: any[] | undefined;
|
|
2467
2437
|
readonly displayField?: string | undefined;
|
|
@@ -2635,7 +2605,7 @@ declare const SystemFile: Omit<{
|
|
|
2635
2605
|
readonly inlineTitle?: string | undefined;
|
|
2636
2606
|
readonly inlineColumns?: any[] | undefined;
|
|
2637
2607
|
readonly inlineAmountField?: string | undefined;
|
|
2638
|
-
readonly relatedList?: boolean | undefined;
|
|
2608
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2639
2609
|
readonly relatedListTitle?: string | undefined;
|
|
2640
2610
|
readonly relatedListColumns?: any[] | undefined;
|
|
2641
2611
|
readonly displayField?: string | undefined;
|
|
@@ -2809,7 +2779,7 @@ declare const SystemFile: Omit<{
|
|
|
2809
2779
|
readonly inlineTitle?: string | undefined;
|
|
2810
2780
|
readonly inlineColumns?: any[] | undefined;
|
|
2811
2781
|
readonly inlineAmountField?: string | undefined;
|
|
2812
|
-
readonly relatedList?: boolean | undefined;
|
|
2782
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2813
2783
|
readonly relatedListTitle?: string | undefined;
|
|
2814
2784
|
readonly relatedListColumns?: any[] | undefined;
|
|
2815
2785
|
readonly displayField?: string | undefined;
|
|
@@ -2983,7 +2953,7 @@ declare const SystemFile: Omit<{
|
|
|
2983
2953
|
readonly inlineTitle?: string | undefined;
|
|
2984
2954
|
readonly inlineColumns?: any[] | undefined;
|
|
2985
2955
|
readonly inlineAmountField?: string | undefined;
|
|
2986
|
-
readonly relatedList?: boolean | undefined;
|
|
2956
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2987
2957
|
readonly relatedListTitle?: string | undefined;
|
|
2988
2958
|
readonly relatedListColumns?: any[] | undefined;
|
|
2989
2959
|
readonly displayField?: string | undefined;
|
|
@@ -3157,7 +3127,7 @@ declare const SystemFile: Omit<{
|
|
|
3157
3127
|
readonly inlineTitle?: string | undefined;
|
|
3158
3128
|
readonly inlineColumns?: any[] | undefined;
|
|
3159
3129
|
readonly inlineAmountField?: string | undefined;
|
|
3160
|
-
readonly relatedList?: boolean | undefined;
|
|
3130
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3161
3131
|
readonly relatedListTitle?: string | undefined;
|
|
3162
3132
|
readonly relatedListColumns?: any[] | undefined;
|
|
3163
3133
|
readonly displayField?: string | undefined;
|
|
@@ -3331,7 +3301,7 @@ declare const SystemFile: Omit<{
|
|
|
3331
3301
|
readonly inlineTitle?: string | undefined;
|
|
3332
3302
|
readonly inlineColumns?: any[] | undefined;
|
|
3333
3303
|
readonly inlineAmountField?: string | undefined;
|
|
3334
|
-
readonly relatedList?: boolean | undefined;
|
|
3304
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3335
3305
|
readonly relatedListTitle?: string | undefined;
|
|
3336
3306
|
readonly relatedListColumns?: any[] | undefined;
|
|
3337
3307
|
readonly displayField?: string | undefined;
|
|
@@ -3505,7 +3475,7 @@ declare const SystemFile: Omit<{
|
|
|
3505
3475
|
readonly inlineTitle?: string | undefined;
|
|
3506
3476
|
readonly inlineColumns?: any[] | undefined;
|
|
3507
3477
|
readonly inlineAmountField?: string | undefined;
|
|
3508
|
-
readonly relatedList?: boolean | undefined;
|
|
3478
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3509
3479
|
readonly relatedListTitle?: string | undefined;
|
|
3510
3480
|
readonly relatedListColumns?: any[] | undefined;
|
|
3511
3481
|
readonly displayField?: string | undefined;
|
|
@@ -3694,7 +3664,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3694
3664
|
inlineTitle?: string | undefined;
|
|
3695
3665
|
inlineColumns?: any[] | undefined;
|
|
3696
3666
|
inlineAmountField?: string | undefined;
|
|
3697
|
-
relatedList?: boolean | undefined;
|
|
3667
|
+
relatedList?: boolean | "primary" | undefined;
|
|
3698
3668
|
relatedListTitle?: string | undefined;
|
|
3699
3669
|
relatedListColumns?: any[] | undefined;
|
|
3700
3670
|
displayField?: string | undefined;
|
|
@@ -3977,7 +3947,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3977
3947
|
highlightFields?: string[] | undefined;
|
|
3978
3948
|
stageField?: string | false | undefined;
|
|
3979
3949
|
listViews?: Record<string, {
|
|
3980
|
-
type: "map" | "tree" | "grid" | "kanban" | "
|
|
3950
|
+
type: "map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart";
|
|
3981
3951
|
columns: string[] | {
|
|
3982
3952
|
field: string;
|
|
3983
3953
|
label?: string | undefined;
|
|
@@ -3993,8 +3963,55 @@ declare const SystemUploadSession: Omit<{
|
|
|
3993
3963
|
link?: boolean | undefined;
|
|
3994
3964
|
action?: string | undefined;
|
|
3995
3965
|
}[];
|
|
3996
|
-
|
|
3966
|
+
sort?: string | {
|
|
3967
|
+
field: string;
|
|
3968
|
+
order: "asc" | "desc";
|
|
3969
|
+
}[] | undefined;
|
|
3970
|
+
filter?: {
|
|
3971
|
+
field: string;
|
|
3972
|
+
operator: string;
|
|
3973
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
3974
|
+
}[] | undefined;
|
|
3975
|
+
description?: string | undefined;
|
|
3997
3976
|
label?: string | undefined;
|
|
3977
|
+
name?: string | undefined;
|
|
3978
|
+
responsive?: {
|
|
3979
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
3980
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
3981
|
+
columns?: {
|
|
3982
|
+
xs?: number | undefined;
|
|
3983
|
+
sm?: number | undefined;
|
|
3984
|
+
md?: number | undefined;
|
|
3985
|
+
lg?: number | undefined;
|
|
3986
|
+
xl?: number | undefined;
|
|
3987
|
+
'2xl'?: number | undefined;
|
|
3988
|
+
} | undefined;
|
|
3989
|
+
order?: {
|
|
3990
|
+
xs?: number | undefined;
|
|
3991
|
+
sm?: number | undefined;
|
|
3992
|
+
md?: number | undefined;
|
|
3993
|
+
lg?: number | undefined;
|
|
3994
|
+
xl?: number | undefined;
|
|
3995
|
+
'2xl'?: number | undefined;
|
|
3996
|
+
} | undefined;
|
|
3997
|
+
} | undefined;
|
|
3998
|
+
navigation?: {
|
|
3999
|
+
mode: "split" | "none" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
4000
|
+
preventNavigation: boolean;
|
|
4001
|
+
openNewTab: boolean;
|
|
4002
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
4003
|
+
view?: string | undefined;
|
|
4004
|
+
width?: string | number | undefined;
|
|
4005
|
+
} | undefined;
|
|
4006
|
+
sharing?: {
|
|
4007
|
+
type: "personal" | "collaborative";
|
|
4008
|
+
lockedBy?: string | undefined;
|
|
4009
|
+
} | undefined;
|
|
4010
|
+
aria?: {
|
|
4011
|
+
ariaLabel?: string | undefined;
|
|
4012
|
+
ariaDescribedBy?: string | undefined;
|
|
4013
|
+
role?: string | undefined;
|
|
4014
|
+
} | undefined;
|
|
3998
4015
|
data?: {
|
|
3999
4016
|
provider: "object";
|
|
4000
4017
|
object: string;
|
|
@@ -4022,77 +4039,42 @@ declare const SystemUploadSession: Omit<{
|
|
|
4022
4039
|
schemaId: string;
|
|
4023
4040
|
schema?: Record<string, unknown> | undefined;
|
|
4024
4041
|
} | undefined;
|
|
4025
|
-
|
|
4026
|
-
|
|
4027
|
-
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
|
|
4031
|
-
field: string;
|
|
4032
|
-
order: "asc" | "desc";
|
|
4033
|
-
}[] | undefined;
|
|
4034
|
-
searchableFields?: string[] | undefined;
|
|
4035
|
-
filterableFields?: string[] | undefined;
|
|
4036
|
-
userFilters?: {
|
|
4037
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
4038
|
-
fields?: {
|
|
4039
|
-
field: string;
|
|
4040
|
-
label?: string | undefined;
|
|
4041
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
4042
|
-
options?: {
|
|
4043
|
-
value: string | number | boolean;
|
|
4044
|
-
label: string;
|
|
4045
|
-
color?: string | undefined;
|
|
4046
|
-
}[] | undefined;
|
|
4047
|
-
showCount?: boolean | undefined;
|
|
4048
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
4049
|
-
}[] | undefined;
|
|
4050
|
-
tabs?: {
|
|
4051
|
-
name: string;
|
|
4052
|
-
pinned: boolean;
|
|
4053
|
-
isDefault: boolean;
|
|
4054
|
-
visible: boolean;
|
|
4055
|
-
label?: string | undefined;
|
|
4056
|
-
icon?: string | undefined;
|
|
4057
|
-
view?: string | undefined;
|
|
4058
|
-
filter?: {
|
|
4059
|
-
field: string;
|
|
4060
|
-
operator: string;
|
|
4061
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
4062
|
-
}[] | undefined;
|
|
4063
|
-
order?: number | undefined;
|
|
4064
|
-
}[] | undefined;
|
|
4065
|
-
showAllRecords?: boolean | undefined;
|
|
4042
|
+
tree?: {
|
|
4043
|
+
[x: string]: unknown;
|
|
4044
|
+
parentField?: string | undefined;
|
|
4045
|
+
labelField?: string | undefined;
|
|
4046
|
+
fields?: string[] | undefined;
|
|
4047
|
+
defaultExpandedDepth?: number | undefined;
|
|
4066
4048
|
} | undefined;
|
|
4049
|
+
inlineEdit?: boolean | undefined;
|
|
4050
|
+
virtualScroll?: boolean | undefined;
|
|
4067
4051
|
resizable?: boolean | undefined;
|
|
4068
|
-
striped?: boolean | undefined;
|
|
4069
|
-
bordered?: boolean | undefined;
|
|
4070
|
-
compactToolbar?: boolean | undefined;
|
|
4071
|
-
selection?: {
|
|
4072
|
-
type: "none" | "multiple" | "single";
|
|
4073
|
-
} | undefined;
|
|
4074
|
-
navigation?: {
|
|
4075
|
-
mode: "split" | "none" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
4076
|
-
preventNavigation: boolean;
|
|
4077
|
-
openNewTab: boolean;
|
|
4078
|
-
view?: string | undefined;
|
|
4079
|
-
width?: string | number | undefined;
|
|
4080
|
-
} | undefined;
|
|
4081
|
-
pagination?: {
|
|
4082
|
-
pageSize: number;
|
|
4083
|
-
pageSizeOptions?: number[] | undefined;
|
|
4084
|
-
} | undefined;
|
|
4085
4052
|
kanban?: {
|
|
4086
4053
|
groupByField: string;
|
|
4087
4054
|
columns: string[];
|
|
4088
4055
|
summarizeField?: string | undefined;
|
|
4089
4056
|
} | undefined;
|
|
4057
|
+
gallery?: {
|
|
4058
|
+
coverFit: "cover" | "contain";
|
|
4059
|
+
cardSize: "small" | "medium" | "large";
|
|
4060
|
+
coverField?: string | undefined;
|
|
4061
|
+
titleField?: string | undefined;
|
|
4062
|
+
visibleFields?: string[] | undefined;
|
|
4063
|
+
} | undefined;
|
|
4090
4064
|
calendar?: {
|
|
4091
4065
|
startDateField: string;
|
|
4092
4066
|
titleField: string;
|
|
4093
4067
|
endDateField?: string | undefined;
|
|
4094
4068
|
colorField?: string | undefined;
|
|
4095
4069
|
} | undefined;
|
|
4070
|
+
timeline?: {
|
|
4071
|
+
startDateField: string;
|
|
4072
|
+
titleField: string;
|
|
4073
|
+
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
4074
|
+
endDateField?: string | undefined;
|
|
4075
|
+
groupByField?: string | undefined;
|
|
4076
|
+
colorField?: string | undefined;
|
|
4077
|
+
} | undefined;
|
|
4096
4078
|
gantt?: {
|
|
4097
4079
|
[x: string]: unknown;
|
|
4098
4080
|
startDateField: string;
|
|
@@ -4124,40 +4106,40 @@ declare const SystemUploadSession: Omit<{
|
|
|
4124
4106
|
}[] | undefined;
|
|
4125
4107
|
autoZoomToFilter?: boolean | undefined;
|
|
4126
4108
|
} | undefined;
|
|
4127
|
-
gallery?: {
|
|
4128
|
-
coverFit: "cover" | "contain";
|
|
4129
|
-
cardSize: "small" | "medium" | "large";
|
|
4130
|
-
coverField?: string | undefined;
|
|
4131
|
-
titleField?: string | undefined;
|
|
4132
|
-
visibleFields?: string[] | undefined;
|
|
4133
|
-
} | undefined;
|
|
4134
|
-
timeline?: {
|
|
4135
|
-
startDateField: string;
|
|
4136
|
-
titleField: string;
|
|
4137
|
-
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
4138
|
-
endDateField?: string | undefined;
|
|
4139
|
-
groupByField?: string | undefined;
|
|
4140
|
-
colorField?: string | undefined;
|
|
4141
|
-
} | undefined;
|
|
4142
4109
|
chart?: {
|
|
4143
4110
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
4144
4111
|
dataset: string;
|
|
4145
4112
|
values: string[];
|
|
4146
4113
|
dimensions?: string[] | undefined;
|
|
4147
4114
|
} | undefined;
|
|
4148
|
-
|
|
4149
|
-
|
|
4150
|
-
|
|
4151
|
-
|
|
4152
|
-
|
|
4153
|
-
|
|
4115
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
4116
|
+
tabs?: {
|
|
4117
|
+
name: string;
|
|
4118
|
+
pinned: boolean;
|
|
4119
|
+
isDefault: boolean;
|
|
4120
|
+
visible: boolean;
|
|
4121
|
+
label?: string | undefined;
|
|
4122
|
+
icon?: string | undefined;
|
|
4123
|
+
view?: string | undefined;
|
|
4124
|
+
filter?: {
|
|
4125
|
+
field: string;
|
|
4126
|
+
operator: string;
|
|
4127
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
4128
|
+
}[] | undefined;
|
|
4129
|
+
order?: number | undefined;
|
|
4130
|
+
}[] | undefined;
|
|
4131
|
+
searchableFields?: string[] | undefined;
|
|
4132
|
+
filterableFields?: string[] | undefined;
|
|
4133
|
+
striped?: boolean | undefined;
|
|
4134
|
+
bordered?: boolean | undefined;
|
|
4135
|
+
compactToolbar?: boolean | undefined;
|
|
4136
|
+
selection?: {
|
|
4137
|
+
type: "none" | "multiple" | "single";
|
|
4154
4138
|
} | undefined;
|
|
4155
|
-
|
|
4156
|
-
|
|
4157
|
-
|
|
4158
|
-
lockedBy?: string | undefined;
|
|
4139
|
+
pagination?: {
|
|
4140
|
+
pageSize: number;
|
|
4141
|
+
pageSizeOptions?: number[] | undefined;
|
|
4159
4142
|
} | undefined;
|
|
4160
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
4161
4143
|
grouping?: {
|
|
4162
4144
|
fields: {
|
|
4163
4145
|
field: string;
|
|
@@ -4174,7 +4156,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4174
4156
|
rowActions?: string[] | undefined;
|
|
4175
4157
|
bulkActions?: string[] | undefined;
|
|
4176
4158
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
4177
|
-
virtualScroll?: boolean | undefined;
|
|
4178
4159
|
conditionalFormatting?: {
|
|
4179
4160
|
condition: {
|
|
4180
4161
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -4195,7 +4176,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4195
4176
|
};
|
|
4196
4177
|
style: Record<string, string>;
|
|
4197
4178
|
}[] | undefined;
|
|
4198
|
-
inlineEdit?: boolean | undefined;
|
|
4199
4179
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
4200
4180
|
userActions?: {
|
|
4201
4181
|
sort: boolean;
|
|
@@ -4208,23 +4188,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
4208
4188
|
} | undefined;
|
|
4209
4189
|
appearance?: {
|
|
4210
4190
|
showDescription: boolean;
|
|
4211
|
-
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "
|
|
4191
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
4212
4192
|
} | undefined;
|
|
4213
|
-
tabs?: {
|
|
4214
|
-
name: string;
|
|
4215
|
-
pinned: boolean;
|
|
4216
|
-
isDefault: boolean;
|
|
4217
|
-
visible: boolean;
|
|
4218
|
-
label?: string | undefined;
|
|
4219
|
-
icon?: string | undefined;
|
|
4220
|
-
view?: string | undefined;
|
|
4221
|
-
filter?: {
|
|
4222
|
-
field: string;
|
|
4223
|
-
operator: string;
|
|
4224
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
4225
|
-
}[] | undefined;
|
|
4226
|
-
order?: number | undefined;
|
|
4227
|
-
}[] | undefined;
|
|
4228
4193
|
addRecord?: {
|
|
4229
4194
|
enabled: boolean;
|
|
4230
4195
|
position: "top" | "bottom" | "both";
|
|
@@ -4238,31 +4203,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4238
4203
|
message?: string | undefined;
|
|
4239
4204
|
icon?: string | undefined;
|
|
4240
4205
|
} | undefined;
|
|
4241
|
-
aria?: {
|
|
4242
|
-
ariaLabel?: string | undefined;
|
|
4243
|
-
ariaDescribedBy?: string | undefined;
|
|
4244
|
-
role?: string | undefined;
|
|
4245
|
-
} | undefined;
|
|
4246
|
-
responsive?: {
|
|
4247
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
4248
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
4249
|
-
columns?: {
|
|
4250
|
-
xs?: number | undefined;
|
|
4251
|
-
sm?: number | undefined;
|
|
4252
|
-
md?: number | undefined;
|
|
4253
|
-
lg?: number | undefined;
|
|
4254
|
-
xl?: number | undefined;
|
|
4255
|
-
'2xl'?: number | undefined;
|
|
4256
|
-
} | undefined;
|
|
4257
|
-
order?: {
|
|
4258
|
-
xs?: number | undefined;
|
|
4259
|
-
sm?: number | undefined;
|
|
4260
|
-
md?: number | undefined;
|
|
4261
|
-
lg?: number | undefined;
|
|
4262
|
-
xl?: number | undefined;
|
|
4263
|
-
'2xl'?: number | undefined;
|
|
4264
|
-
} | undefined;
|
|
4265
|
-
} | undefined;
|
|
4266
4206
|
performance?: {
|
|
4267
4207
|
lazyLoad?: boolean | undefined;
|
|
4268
4208
|
virtualScroll?: {
|
|
@@ -4462,7 +4402,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4462
4402
|
readonly inlineTitle?: string | undefined;
|
|
4463
4403
|
readonly inlineColumns?: any[] | undefined;
|
|
4464
4404
|
readonly inlineAmountField?: string | undefined;
|
|
4465
|
-
readonly relatedList?: boolean | undefined;
|
|
4405
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4466
4406
|
readonly relatedListTitle?: string | undefined;
|
|
4467
4407
|
readonly relatedListColumns?: any[] | undefined;
|
|
4468
4408
|
readonly displayField?: string | undefined;
|
|
@@ -4636,7 +4576,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4636
4576
|
readonly inlineTitle?: string | undefined;
|
|
4637
4577
|
readonly inlineColumns?: any[] | undefined;
|
|
4638
4578
|
readonly inlineAmountField?: string | undefined;
|
|
4639
|
-
readonly relatedList?: boolean | undefined;
|
|
4579
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4640
4580
|
readonly relatedListTitle?: string | undefined;
|
|
4641
4581
|
readonly relatedListColumns?: any[] | undefined;
|
|
4642
4582
|
readonly displayField?: string | undefined;
|
|
@@ -4810,7 +4750,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4810
4750
|
readonly inlineTitle?: string | undefined;
|
|
4811
4751
|
readonly inlineColumns?: any[] | undefined;
|
|
4812
4752
|
readonly inlineAmountField?: string | undefined;
|
|
4813
|
-
readonly relatedList?: boolean | undefined;
|
|
4753
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4814
4754
|
readonly relatedListTitle?: string | undefined;
|
|
4815
4755
|
readonly relatedListColumns?: any[] | undefined;
|
|
4816
4756
|
readonly displayField?: string | undefined;
|
|
@@ -4984,7 +4924,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4984
4924
|
readonly inlineTitle?: string | undefined;
|
|
4985
4925
|
readonly inlineColumns?: any[] | undefined;
|
|
4986
4926
|
readonly inlineAmountField?: string | undefined;
|
|
4987
|
-
readonly relatedList?: boolean | undefined;
|
|
4927
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4988
4928
|
readonly relatedListTitle?: string | undefined;
|
|
4989
4929
|
readonly relatedListColumns?: any[] | undefined;
|
|
4990
4930
|
readonly displayField?: string | undefined;
|
|
@@ -5158,7 +5098,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5158
5098
|
readonly inlineTitle?: string | undefined;
|
|
5159
5099
|
readonly inlineColumns?: any[] | undefined;
|
|
5160
5100
|
readonly inlineAmountField?: string | undefined;
|
|
5161
|
-
readonly relatedList?: boolean | undefined;
|
|
5101
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5162
5102
|
readonly relatedListTitle?: string | undefined;
|
|
5163
5103
|
readonly relatedListColumns?: any[] | undefined;
|
|
5164
5104
|
readonly displayField?: string | undefined;
|
|
@@ -5332,7 +5272,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5332
5272
|
readonly inlineTitle?: string | undefined;
|
|
5333
5273
|
readonly inlineColumns?: any[] | undefined;
|
|
5334
5274
|
readonly inlineAmountField?: string | undefined;
|
|
5335
|
-
readonly relatedList?: boolean | undefined;
|
|
5275
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5336
5276
|
readonly relatedListTitle?: string | undefined;
|
|
5337
5277
|
readonly relatedListColumns?: any[] | undefined;
|
|
5338
5278
|
readonly displayField?: string | undefined;
|
|
@@ -5506,7 +5446,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5506
5446
|
readonly inlineTitle?: string | undefined;
|
|
5507
5447
|
readonly inlineColumns?: any[] | undefined;
|
|
5508
5448
|
readonly inlineAmountField?: string | undefined;
|
|
5509
|
-
readonly relatedList?: boolean | undefined;
|
|
5449
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5510
5450
|
readonly relatedListTitle?: string | undefined;
|
|
5511
5451
|
readonly relatedListColumns?: any[] | undefined;
|
|
5512
5452
|
readonly displayField?: string | undefined;
|
|
@@ -5680,7 +5620,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5680
5620
|
readonly inlineTitle?: string | undefined;
|
|
5681
5621
|
readonly inlineColumns?: any[] | undefined;
|
|
5682
5622
|
readonly inlineAmountField?: string | undefined;
|
|
5683
|
-
readonly relatedList?: boolean | undefined;
|
|
5623
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5684
5624
|
readonly relatedListTitle?: string | undefined;
|
|
5685
5625
|
readonly relatedListColumns?: any[] | undefined;
|
|
5686
5626
|
readonly displayField?: string | undefined;
|
|
@@ -5854,7 +5794,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5854
5794
|
readonly inlineTitle?: string | undefined;
|
|
5855
5795
|
readonly inlineColumns?: any[] | undefined;
|
|
5856
5796
|
readonly inlineAmountField?: string | undefined;
|
|
5857
|
-
readonly relatedList?: boolean | undefined;
|
|
5797
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5858
5798
|
readonly relatedListTitle?: string | undefined;
|
|
5859
5799
|
readonly relatedListColumns?: any[] | undefined;
|
|
5860
5800
|
readonly displayField?: string | undefined;
|
|
@@ -6028,7 +5968,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6028
5968
|
readonly inlineTitle?: string | undefined;
|
|
6029
5969
|
readonly inlineColumns?: any[] | undefined;
|
|
6030
5970
|
readonly inlineAmountField?: string | undefined;
|
|
6031
|
-
readonly relatedList?: boolean | undefined;
|
|
5971
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6032
5972
|
readonly relatedListTitle?: string | undefined;
|
|
6033
5973
|
readonly relatedListColumns?: any[] | undefined;
|
|
6034
5974
|
readonly displayField?: string | undefined;
|
|
@@ -6202,7 +6142,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6202
6142
|
readonly inlineTitle?: string | undefined;
|
|
6203
6143
|
readonly inlineColumns?: any[] | undefined;
|
|
6204
6144
|
readonly inlineAmountField?: string | undefined;
|
|
6205
|
-
readonly relatedList?: boolean | undefined;
|
|
6145
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6206
6146
|
readonly relatedListTitle?: string | undefined;
|
|
6207
6147
|
readonly relatedListColumns?: any[] | undefined;
|
|
6208
6148
|
readonly displayField?: string | undefined;
|
|
@@ -6376,7 +6316,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6376
6316
|
readonly inlineTitle?: string | undefined;
|
|
6377
6317
|
readonly inlineColumns?: any[] | undefined;
|
|
6378
6318
|
readonly inlineAmountField?: string | undefined;
|
|
6379
|
-
readonly relatedList?: boolean | undefined;
|
|
6319
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6380
6320
|
readonly relatedListTitle?: string | undefined;
|
|
6381
6321
|
readonly relatedListColumns?: any[] | undefined;
|
|
6382
6322
|
readonly displayField?: string | undefined;
|
|
@@ -6550,7 +6490,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6550
6490
|
readonly inlineTitle?: string | undefined;
|
|
6551
6491
|
readonly inlineColumns?: any[] | undefined;
|
|
6552
6492
|
readonly inlineAmountField?: string | undefined;
|
|
6553
|
-
readonly relatedList?: boolean | undefined;
|
|
6493
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6554
6494
|
readonly relatedListTitle?: string | undefined;
|
|
6555
6495
|
readonly relatedListColumns?: any[] | undefined;
|
|
6556
6496
|
readonly displayField?: string | undefined;
|
|
@@ -6724,7 +6664,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6724
6664
|
readonly inlineTitle?: string | undefined;
|
|
6725
6665
|
readonly inlineColumns?: any[] | undefined;
|
|
6726
6666
|
readonly inlineAmountField?: string | undefined;
|
|
6727
|
-
readonly relatedList?: boolean | undefined;
|
|
6667
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6728
6668
|
readonly relatedListTitle?: string | undefined;
|
|
6729
6669
|
readonly relatedListColumns?: any[] | undefined;
|
|
6730
6670
|
readonly displayField?: string | undefined;
|
|
@@ -6898,7 +6838,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6898
6838
|
readonly inlineTitle?: string | undefined;
|
|
6899
6839
|
readonly inlineColumns?: any[] | undefined;
|
|
6900
6840
|
readonly inlineAmountField?: string | undefined;
|
|
6901
|
-
readonly relatedList?: boolean | undefined;
|
|
6841
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6902
6842
|
readonly relatedListTitle?: string | undefined;
|
|
6903
6843
|
readonly relatedListColumns?: any[] | undefined;
|
|
6904
6844
|
readonly displayField?: string | undefined;
|
|
@@ -7072,7 +7012,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7072
7012
|
readonly inlineTitle?: string | undefined;
|
|
7073
7013
|
readonly inlineColumns?: any[] | undefined;
|
|
7074
7014
|
readonly inlineAmountField?: string | undefined;
|
|
7075
|
-
readonly relatedList?: boolean | undefined;
|
|
7015
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7076
7016
|
readonly relatedListTitle?: string | undefined;
|
|
7077
7017
|
readonly relatedListColumns?: any[] | undefined;
|
|
7078
7018
|
readonly displayField?: string | undefined;
|
|
@@ -7246,7 +7186,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7246
7186
|
readonly inlineTitle?: string | undefined;
|
|
7247
7187
|
readonly inlineColumns?: any[] | undefined;
|
|
7248
7188
|
readonly inlineAmountField?: string | undefined;
|
|
7249
|
-
readonly relatedList?: boolean | undefined;
|
|
7189
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7250
7190
|
readonly relatedListTitle?: string | undefined;
|
|
7251
7191
|
readonly relatedListColumns?: any[] | undefined;
|
|
7252
7192
|
readonly displayField?: string | undefined;
|
|
@@ -7420,7 +7360,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7420
7360
|
readonly inlineTitle?: string | undefined;
|
|
7421
7361
|
readonly inlineColumns?: any[] | undefined;
|
|
7422
7362
|
readonly inlineAmountField?: string | undefined;
|
|
7423
|
-
readonly relatedList?: boolean | undefined;
|
|
7363
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7424
7364
|
readonly relatedListTitle?: string | undefined;
|
|
7425
7365
|
readonly relatedListColumns?: any[] | undefined;
|
|
7426
7366
|
readonly displayField?: string | undefined;
|
|
@@ -7594,7 +7534,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7594
7534
|
readonly inlineTitle?: string | undefined;
|
|
7595
7535
|
readonly inlineColumns?: any[] | undefined;
|
|
7596
7536
|
readonly inlineAmountField?: string | undefined;
|
|
7597
|
-
readonly relatedList?: boolean | undefined;
|
|
7537
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7598
7538
|
readonly relatedListTitle?: string | undefined;
|
|
7599
7539
|
readonly relatedListColumns?: any[] | undefined;
|
|
7600
7540
|
readonly displayField?: string | undefined;
|
|
@@ -7768,7 +7708,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7768
7708
|
readonly inlineTitle?: string | undefined;
|
|
7769
7709
|
readonly inlineColumns?: any[] | undefined;
|
|
7770
7710
|
readonly inlineAmountField?: string | undefined;
|
|
7771
|
-
readonly relatedList?: boolean | undefined;
|
|
7711
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7772
7712
|
readonly relatedListTitle?: string | undefined;
|
|
7773
7713
|
readonly relatedListColumns?: any[] | undefined;
|
|
7774
7714
|
readonly displayField?: string | undefined;
|