@objectstack/service-storage 11.9.0 → 12.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +236 -298
- package/dist/index.d.ts +236 -298
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/dist/index.d.ts
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;
|
|
@@ -756,10 +756,9 @@ declare const SystemFile: Omit<{
|
|
|
756
756
|
} | undefined;
|
|
757
757
|
} | undefined;
|
|
758
758
|
highlightFields?: string[] | undefined;
|
|
759
|
-
compactLayout?: string[] | undefined;
|
|
760
759
|
stageField?: string | false | undefined;
|
|
761
760
|
listViews?: Record<string, {
|
|
762
|
-
type: "map" | "tree" | "grid" | "kanban" | "
|
|
761
|
+
type: "map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart";
|
|
763
762
|
columns: string[] | {
|
|
764
763
|
field: string;
|
|
765
764
|
label?: string | undefined;
|
|
@@ -775,8 +774,55 @@ declare const SystemFile: Omit<{
|
|
|
775
774
|
link?: boolean | undefined;
|
|
776
775
|
action?: string | undefined;
|
|
777
776
|
}[];
|
|
778
|
-
|
|
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;
|
|
779
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;
|
|
780
826
|
data?: {
|
|
781
827
|
provider: "object";
|
|
782
828
|
object: string;
|
|
@@ -804,77 +850,42 @@ declare const SystemFile: Omit<{
|
|
|
804
850
|
schemaId: string;
|
|
805
851
|
schema?: Record<string, unknown> | undefined;
|
|
806
852
|
} | undefined;
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
field: string;
|
|
814
|
-
order: "asc" | "desc";
|
|
815
|
-
}[] | undefined;
|
|
816
|
-
searchableFields?: string[] | undefined;
|
|
817
|
-
filterableFields?: string[] | undefined;
|
|
818
|
-
userFilters?: {
|
|
819
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
820
|
-
fields?: {
|
|
821
|
-
field: string;
|
|
822
|
-
label?: string | undefined;
|
|
823
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
824
|
-
options?: {
|
|
825
|
-
value: string | number | boolean;
|
|
826
|
-
label: string;
|
|
827
|
-
color?: string | undefined;
|
|
828
|
-
}[] | undefined;
|
|
829
|
-
showCount?: boolean | undefined;
|
|
830
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
831
|
-
}[] | undefined;
|
|
832
|
-
tabs?: {
|
|
833
|
-
name: string;
|
|
834
|
-
pinned: boolean;
|
|
835
|
-
isDefault: boolean;
|
|
836
|
-
visible: boolean;
|
|
837
|
-
label?: string | undefined;
|
|
838
|
-
icon?: string | undefined;
|
|
839
|
-
view?: string | undefined;
|
|
840
|
-
filter?: {
|
|
841
|
-
field: string;
|
|
842
|
-
operator: string;
|
|
843
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
844
|
-
}[] | undefined;
|
|
845
|
-
order?: number | undefined;
|
|
846
|
-
}[] | undefined;
|
|
847
|
-
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;
|
|
848
859
|
} | undefined;
|
|
860
|
+
inlineEdit?: boolean | undefined;
|
|
861
|
+
virtualScroll?: boolean | undefined;
|
|
849
862
|
resizable?: boolean | undefined;
|
|
850
|
-
striped?: boolean | undefined;
|
|
851
|
-
bordered?: boolean | undefined;
|
|
852
|
-
compactToolbar?: boolean | undefined;
|
|
853
|
-
selection?: {
|
|
854
|
-
type: "none" | "multiple" | "single";
|
|
855
|
-
} | undefined;
|
|
856
|
-
navigation?: {
|
|
857
|
-
mode: "split" | "none" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
858
|
-
preventNavigation: boolean;
|
|
859
|
-
openNewTab: boolean;
|
|
860
|
-
view?: string | undefined;
|
|
861
|
-
width?: string | number | undefined;
|
|
862
|
-
} | undefined;
|
|
863
|
-
pagination?: {
|
|
864
|
-
pageSize: number;
|
|
865
|
-
pageSizeOptions?: number[] | undefined;
|
|
866
|
-
} | undefined;
|
|
867
863
|
kanban?: {
|
|
868
864
|
groupByField: string;
|
|
869
865
|
columns: string[];
|
|
870
866
|
summarizeField?: string | undefined;
|
|
871
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;
|
|
872
875
|
calendar?: {
|
|
873
876
|
startDateField: string;
|
|
874
877
|
titleField: string;
|
|
875
878
|
endDateField?: string | undefined;
|
|
876
879
|
colorField?: string | undefined;
|
|
877
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;
|
|
878
889
|
gantt?: {
|
|
879
890
|
[x: string]: unknown;
|
|
880
891
|
startDateField: string;
|
|
@@ -906,40 +917,40 @@ declare const SystemFile: Omit<{
|
|
|
906
917
|
}[] | undefined;
|
|
907
918
|
autoZoomToFilter?: boolean | undefined;
|
|
908
919
|
} | undefined;
|
|
909
|
-
gallery?: {
|
|
910
|
-
coverFit: "cover" | "contain";
|
|
911
|
-
cardSize: "small" | "medium" | "large";
|
|
912
|
-
coverField?: string | undefined;
|
|
913
|
-
titleField?: string | undefined;
|
|
914
|
-
visibleFields?: string[] | undefined;
|
|
915
|
-
} | undefined;
|
|
916
|
-
timeline?: {
|
|
917
|
-
startDateField: string;
|
|
918
|
-
titleField: string;
|
|
919
|
-
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
920
|
-
endDateField?: string | undefined;
|
|
921
|
-
groupByField?: string | undefined;
|
|
922
|
-
colorField?: string | undefined;
|
|
923
|
-
} | undefined;
|
|
924
920
|
chart?: {
|
|
925
921
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
926
922
|
dataset: string;
|
|
927
923
|
values: string[];
|
|
928
924
|
dimensions?: string[] | undefined;
|
|
929
925
|
} | undefined;
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
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";
|
|
936
949
|
} | undefined;
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
lockedBy?: string | undefined;
|
|
950
|
+
pagination?: {
|
|
951
|
+
pageSize: number;
|
|
952
|
+
pageSizeOptions?: number[] | undefined;
|
|
941
953
|
} | undefined;
|
|
942
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
943
954
|
grouping?: {
|
|
944
955
|
fields: {
|
|
945
956
|
field: string;
|
|
@@ -956,7 +967,6 @@ declare const SystemFile: Omit<{
|
|
|
956
967
|
rowActions?: string[] | undefined;
|
|
957
968
|
bulkActions?: string[] | undefined;
|
|
958
969
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
959
|
-
virtualScroll?: boolean | undefined;
|
|
960
970
|
conditionalFormatting?: {
|
|
961
971
|
condition: {
|
|
962
972
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -977,7 +987,6 @@ declare const SystemFile: Omit<{
|
|
|
977
987
|
};
|
|
978
988
|
style: Record<string, string>;
|
|
979
989
|
}[] | undefined;
|
|
980
|
-
inlineEdit?: boolean | undefined;
|
|
981
990
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
982
991
|
userActions?: {
|
|
983
992
|
sort: boolean;
|
|
@@ -990,23 +999,8 @@ declare const SystemFile: Omit<{
|
|
|
990
999
|
} | undefined;
|
|
991
1000
|
appearance?: {
|
|
992
1001
|
showDescription: boolean;
|
|
993
|
-
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "
|
|
1002
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
994
1003
|
} | undefined;
|
|
995
|
-
tabs?: {
|
|
996
|
-
name: string;
|
|
997
|
-
pinned: boolean;
|
|
998
|
-
isDefault: boolean;
|
|
999
|
-
visible: boolean;
|
|
1000
|
-
label?: string | undefined;
|
|
1001
|
-
icon?: string | undefined;
|
|
1002
|
-
view?: string | undefined;
|
|
1003
|
-
filter?: {
|
|
1004
|
-
field: string;
|
|
1005
|
-
operator: string;
|
|
1006
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
1007
|
-
}[] | undefined;
|
|
1008
|
-
order?: number | undefined;
|
|
1009
|
-
}[] | undefined;
|
|
1010
1004
|
addRecord?: {
|
|
1011
1005
|
enabled: boolean;
|
|
1012
1006
|
position: "top" | "bottom" | "both";
|
|
@@ -1020,31 +1014,6 @@ declare const SystemFile: Omit<{
|
|
|
1020
1014
|
message?: string | undefined;
|
|
1021
1015
|
icon?: string | undefined;
|
|
1022
1016
|
} | undefined;
|
|
1023
|
-
aria?: {
|
|
1024
|
-
ariaLabel?: string | undefined;
|
|
1025
|
-
ariaDescribedBy?: string | undefined;
|
|
1026
|
-
role?: string | undefined;
|
|
1027
|
-
} | undefined;
|
|
1028
|
-
responsive?: {
|
|
1029
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
1030
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
1031
|
-
columns?: {
|
|
1032
|
-
xs?: number | undefined;
|
|
1033
|
-
sm?: number | undefined;
|
|
1034
|
-
md?: number | undefined;
|
|
1035
|
-
lg?: number | undefined;
|
|
1036
|
-
xl?: number | undefined;
|
|
1037
|
-
'2xl'?: number | undefined;
|
|
1038
|
-
} | undefined;
|
|
1039
|
-
order?: {
|
|
1040
|
-
xs?: number | undefined;
|
|
1041
|
-
sm?: number | undefined;
|
|
1042
|
-
md?: number | undefined;
|
|
1043
|
-
lg?: number | undefined;
|
|
1044
|
-
xl?: number | undefined;
|
|
1045
|
-
'2xl'?: number | undefined;
|
|
1046
|
-
} | undefined;
|
|
1047
|
-
} | undefined;
|
|
1048
1017
|
performance?: {
|
|
1049
1018
|
lazyLoad?: boolean | undefined;
|
|
1050
1019
|
virtualScroll?: {
|
|
@@ -1203,7 +1172,7 @@ declare const SystemFile: Omit<{
|
|
|
1203
1172
|
readonly description: "Storage service file metadata (fileId ↔ key mapping)";
|
|
1204
1173
|
readonly nameField: "name";
|
|
1205
1174
|
readonly titleFormat: "{name}";
|
|
1206
|
-
readonly
|
|
1175
|
+
readonly highlightFields: ["name", "mime_type", "size", "status", "created_at"];
|
|
1207
1176
|
readonly fields: {
|
|
1208
1177
|
readonly id: {
|
|
1209
1178
|
readonly readonly?: boolean | undefined;
|
|
@@ -1244,7 +1213,7 @@ declare const SystemFile: Omit<{
|
|
|
1244
1213
|
readonly inlineTitle?: string | undefined;
|
|
1245
1214
|
readonly inlineColumns?: any[] | undefined;
|
|
1246
1215
|
readonly inlineAmountField?: string | undefined;
|
|
1247
|
-
readonly relatedList?: boolean | undefined;
|
|
1216
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1248
1217
|
readonly relatedListTitle?: string | undefined;
|
|
1249
1218
|
readonly relatedListColumns?: any[] | undefined;
|
|
1250
1219
|
readonly displayField?: string | undefined;
|
|
@@ -1418,7 +1387,7 @@ declare const SystemFile: Omit<{
|
|
|
1418
1387
|
readonly inlineTitle?: string | undefined;
|
|
1419
1388
|
readonly inlineColumns?: any[] | undefined;
|
|
1420
1389
|
readonly inlineAmountField?: string | undefined;
|
|
1421
|
-
readonly relatedList?: boolean | undefined;
|
|
1390
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1422
1391
|
readonly relatedListTitle?: string | undefined;
|
|
1423
1392
|
readonly relatedListColumns?: any[] | undefined;
|
|
1424
1393
|
readonly displayField?: string | undefined;
|
|
@@ -1592,7 +1561,7 @@ declare const SystemFile: Omit<{
|
|
|
1592
1561
|
readonly inlineTitle?: string | undefined;
|
|
1593
1562
|
readonly inlineColumns?: any[] | undefined;
|
|
1594
1563
|
readonly inlineAmountField?: string | undefined;
|
|
1595
|
-
readonly relatedList?: boolean | undefined;
|
|
1564
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1596
1565
|
readonly relatedListTitle?: string | undefined;
|
|
1597
1566
|
readonly relatedListColumns?: any[] | undefined;
|
|
1598
1567
|
readonly displayField?: string | undefined;
|
|
@@ -1766,7 +1735,7 @@ declare const SystemFile: Omit<{
|
|
|
1766
1735
|
readonly inlineTitle?: string | undefined;
|
|
1767
1736
|
readonly inlineColumns?: any[] | undefined;
|
|
1768
1737
|
readonly inlineAmountField?: string | undefined;
|
|
1769
|
-
readonly relatedList?: boolean | undefined;
|
|
1738
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1770
1739
|
readonly relatedListTitle?: string | undefined;
|
|
1771
1740
|
readonly relatedListColumns?: any[] | undefined;
|
|
1772
1741
|
readonly displayField?: string | undefined;
|
|
@@ -1940,7 +1909,7 @@ declare const SystemFile: Omit<{
|
|
|
1940
1909
|
readonly inlineTitle?: string | undefined;
|
|
1941
1910
|
readonly inlineColumns?: any[] | undefined;
|
|
1942
1911
|
readonly inlineAmountField?: string | undefined;
|
|
1943
|
-
readonly relatedList?: boolean | undefined;
|
|
1912
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1944
1913
|
readonly relatedListTitle?: string | undefined;
|
|
1945
1914
|
readonly relatedListColumns?: any[] | undefined;
|
|
1946
1915
|
readonly displayField?: string | undefined;
|
|
@@ -2114,7 +2083,7 @@ declare const SystemFile: Omit<{
|
|
|
2114
2083
|
readonly inlineTitle?: string | undefined;
|
|
2115
2084
|
readonly inlineColumns?: any[] | undefined;
|
|
2116
2085
|
readonly inlineAmountField?: string | undefined;
|
|
2117
|
-
readonly relatedList?: boolean | undefined;
|
|
2086
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2118
2087
|
readonly relatedListTitle?: string | undefined;
|
|
2119
2088
|
readonly relatedListColumns?: any[] | undefined;
|
|
2120
2089
|
readonly displayField?: string | undefined;
|
|
@@ -2288,7 +2257,7 @@ declare const SystemFile: Omit<{
|
|
|
2288
2257
|
readonly inlineTitle?: string | undefined;
|
|
2289
2258
|
readonly inlineColumns?: any[] | undefined;
|
|
2290
2259
|
readonly inlineAmountField?: string | undefined;
|
|
2291
|
-
readonly relatedList?: boolean | undefined;
|
|
2260
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2292
2261
|
readonly relatedListTitle?: string | undefined;
|
|
2293
2262
|
readonly relatedListColumns?: any[] | undefined;
|
|
2294
2263
|
readonly displayField?: string | undefined;
|
|
@@ -2462,7 +2431,7 @@ declare const SystemFile: Omit<{
|
|
|
2462
2431
|
readonly inlineTitle?: string | undefined;
|
|
2463
2432
|
readonly inlineColumns?: any[] | undefined;
|
|
2464
2433
|
readonly inlineAmountField?: string | undefined;
|
|
2465
|
-
readonly relatedList?: boolean | undefined;
|
|
2434
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2466
2435
|
readonly relatedListTitle?: string | undefined;
|
|
2467
2436
|
readonly relatedListColumns?: any[] | undefined;
|
|
2468
2437
|
readonly displayField?: string | undefined;
|
|
@@ -2636,7 +2605,7 @@ declare const SystemFile: Omit<{
|
|
|
2636
2605
|
readonly inlineTitle?: string | undefined;
|
|
2637
2606
|
readonly inlineColumns?: any[] | undefined;
|
|
2638
2607
|
readonly inlineAmountField?: string | undefined;
|
|
2639
|
-
readonly relatedList?: boolean | undefined;
|
|
2608
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2640
2609
|
readonly relatedListTitle?: string | undefined;
|
|
2641
2610
|
readonly relatedListColumns?: any[] | undefined;
|
|
2642
2611
|
readonly displayField?: string | undefined;
|
|
@@ -2810,7 +2779,7 @@ declare const SystemFile: Omit<{
|
|
|
2810
2779
|
readonly inlineTitle?: string | undefined;
|
|
2811
2780
|
readonly inlineColumns?: any[] | undefined;
|
|
2812
2781
|
readonly inlineAmountField?: string | undefined;
|
|
2813
|
-
readonly relatedList?: boolean | undefined;
|
|
2782
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2814
2783
|
readonly relatedListTitle?: string | undefined;
|
|
2815
2784
|
readonly relatedListColumns?: any[] | undefined;
|
|
2816
2785
|
readonly displayField?: string | undefined;
|
|
@@ -2984,7 +2953,7 @@ declare const SystemFile: Omit<{
|
|
|
2984
2953
|
readonly inlineTitle?: string | undefined;
|
|
2985
2954
|
readonly inlineColumns?: any[] | undefined;
|
|
2986
2955
|
readonly inlineAmountField?: string | undefined;
|
|
2987
|
-
readonly relatedList?: boolean | undefined;
|
|
2956
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2988
2957
|
readonly relatedListTitle?: string | undefined;
|
|
2989
2958
|
readonly relatedListColumns?: any[] | undefined;
|
|
2990
2959
|
readonly displayField?: string | undefined;
|
|
@@ -3158,7 +3127,7 @@ declare const SystemFile: Omit<{
|
|
|
3158
3127
|
readonly inlineTitle?: string | undefined;
|
|
3159
3128
|
readonly inlineColumns?: any[] | undefined;
|
|
3160
3129
|
readonly inlineAmountField?: string | undefined;
|
|
3161
|
-
readonly relatedList?: boolean | undefined;
|
|
3130
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3162
3131
|
readonly relatedListTitle?: string | undefined;
|
|
3163
3132
|
readonly relatedListColumns?: any[] | undefined;
|
|
3164
3133
|
readonly displayField?: string | undefined;
|
|
@@ -3332,7 +3301,7 @@ declare const SystemFile: Omit<{
|
|
|
3332
3301
|
readonly inlineTitle?: string | undefined;
|
|
3333
3302
|
readonly inlineColumns?: any[] | undefined;
|
|
3334
3303
|
readonly inlineAmountField?: string | undefined;
|
|
3335
|
-
readonly relatedList?: boolean | undefined;
|
|
3304
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3336
3305
|
readonly relatedListTitle?: string | undefined;
|
|
3337
3306
|
readonly relatedListColumns?: any[] | undefined;
|
|
3338
3307
|
readonly displayField?: string | undefined;
|
|
@@ -3506,7 +3475,7 @@ declare const SystemFile: Omit<{
|
|
|
3506
3475
|
readonly inlineTitle?: string | undefined;
|
|
3507
3476
|
readonly inlineColumns?: any[] | undefined;
|
|
3508
3477
|
readonly inlineAmountField?: string | undefined;
|
|
3509
|
-
readonly relatedList?: boolean | undefined;
|
|
3478
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3510
3479
|
readonly relatedListTitle?: string | undefined;
|
|
3511
3480
|
readonly relatedListColumns?: any[] | undefined;
|
|
3512
3481
|
readonly displayField?: string | undefined;
|
|
@@ -3695,7 +3664,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3695
3664
|
inlineTitle?: string | undefined;
|
|
3696
3665
|
inlineColumns?: any[] | undefined;
|
|
3697
3666
|
inlineAmountField?: string | undefined;
|
|
3698
|
-
relatedList?: boolean | undefined;
|
|
3667
|
+
relatedList?: boolean | "primary" | undefined;
|
|
3699
3668
|
relatedListTitle?: string | undefined;
|
|
3700
3669
|
relatedListColumns?: any[] | undefined;
|
|
3701
3670
|
displayField?: string | undefined;
|
|
@@ -3976,10 +3945,9 @@ declare const SystemUploadSession: Omit<{
|
|
|
3976
3945
|
} | undefined;
|
|
3977
3946
|
} | undefined;
|
|
3978
3947
|
highlightFields?: string[] | undefined;
|
|
3979
|
-
compactLayout?: string[] | undefined;
|
|
3980
3948
|
stageField?: string | false | undefined;
|
|
3981
3949
|
listViews?: Record<string, {
|
|
3982
|
-
type: "map" | "tree" | "grid" | "kanban" | "
|
|
3950
|
+
type: "map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart";
|
|
3983
3951
|
columns: string[] | {
|
|
3984
3952
|
field: string;
|
|
3985
3953
|
label?: string | undefined;
|
|
@@ -3995,8 +3963,55 @@ declare const SystemUploadSession: Omit<{
|
|
|
3995
3963
|
link?: boolean | undefined;
|
|
3996
3964
|
action?: string | undefined;
|
|
3997
3965
|
}[];
|
|
3998
|
-
|
|
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;
|
|
3999
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;
|
|
4000
4015
|
data?: {
|
|
4001
4016
|
provider: "object";
|
|
4002
4017
|
object: string;
|
|
@@ -4024,77 +4039,42 @@ declare const SystemUploadSession: Omit<{
|
|
|
4024
4039
|
schemaId: string;
|
|
4025
4040
|
schema?: Record<string, unknown> | undefined;
|
|
4026
4041
|
} | undefined;
|
|
4027
|
-
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
|
|
4031
|
-
|
|
4032
|
-
|
|
4033
|
-
field: string;
|
|
4034
|
-
order: "asc" | "desc";
|
|
4035
|
-
}[] | undefined;
|
|
4036
|
-
searchableFields?: string[] | undefined;
|
|
4037
|
-
filterableFields?: string[] | undefined;
|
|
4038
|
-
userFilters?: {
|
|
4039
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
4040
|
-
fields?: {
|
|
4041
|
-
field: string;
|
|
4042
|
-
label?: string | undefined;
|
|
4043
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
4044
|
-
options?: {
|
|
4045
|
-
value: string | number | boolean;
|
|
4046
|
-
label: string;
|
|
4047
|
-
color?: string | undefined;
|
|
4048
|
-
}[] | undefined;
|
|
4049
|
-
showCount?: boolean | undefined;
|
|
4050
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
4051
|
-
}[] | undefined;
|
|
4052
|
-
tabs?: {
|
|
4053
|
-
name: string;
|
|
4054
|
-
pinned: boolean;
|
|
4055
|
-
isDefault: boolean;
|
|
4056
|
-
visible: boolean;
|
|
4057
|
-
label?: string | undefined;
|
|
4058
|
-
icon?: string | undefined;
|
|
4059
|
-
view?: string | undefined;
|
|
4060
|
-
filter?: {
|
|
4061
|
-
field: string;
|
|
4062
|
-
operator: string;
|
|
4063
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
4064
|
-
}[] | undefined;
|
|
4065
|
-
order?: number | undefined;
|
|
4066
|
-
}[] | undefined;
|
|
4067
|
-
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;
|
|
4068
4048
|
} | undefined;
|
|
4049
|
+
inlineEdit?: boolean | undefined;
|
|
4050
|
+
virtualScroll?: boolean | undefined;
|
|
4069
4051
|
resizable?: boolean | undefined;
|
|
4070
|
-
striped?: boolean | undefined;
|
|
4071
|
-
bordered?: boolean | undefined;
|
|
4072
|
-
compactToolbar?: boolean | undefined;
|
|
4073
|
-
selection?: {
|
|
4074
|
-
type: "none" | "multiple" | "single";
|
|
4075
|
-
} | undefined;
|
|
4076
|
-
navigation?: {
|
|
4077
|
-
mode: "split" | "none" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
4078
|
-
preventNavigation: boolean;
|
|
4079
|
-
openNewTab: boolean;
|
|
4080
|
-
view?: string | undefined;
|
|
4081
|
-
width?: string | number | undefined;
|
|
4082
|
-
} | undefined;
|
|
4083
|
-
pagination?: {
|
|
4084
|
-
pageSize: number;
|
|
4085
|
-
pageSizeOptions?: number[] | undefined;
|
|
4086
|
-
} | undefined;
|
|
4087
4052
|
kanban?: {
|
|
4088
4053
|
groupByField: string;
|
|
4089
4054
|
columns: string[];
|
|
4090
4055
|
summarizeField?: string | undefined;
|
|
4091
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;
|
|
4092
4064
|
calendar?: {
|
|
4093
4065
|
startDateField: string;
|
|
4094
4066
|
titleField: string;
|
|
4095
4067
|
endDateField?: string | undefined;
|
|
4096
4068
|
colorField?: string | undefined;
|
|
4097
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;
|
|
4098
4078
|
gantt?: {
|
|
4099
4079
|
[x: string]: unknown;
|
|
4100
4080
|
startDateField: string;
|
|
@@ -4126,40 +4106,40 @@ declare const SystemUploadSession: Omit<{
|
|
|
4126
4106
|
}[] | undefined;
|
|
4127
4107
|
autoZoomToFilter?: boolean | undefined;
|
|
4128
4108
|
} | undefined;
|
|
4129
|
-
gallery?: {
|
|
4130
|
-
coverFit: "cover" | "contain";
|
|
4131
|
-
cardSize: "small" | "medium" | "large";
|
|
4132
|
-
coverField?: string | undefined;
|
|
4133
|
-
titleField?: string | undefined;
|
|
4134
|
-
visibleFields?: string[] | undefined;
|
|
4135
|
-
} | undefined;
|
|
4136
|
-
timeline?: {
|
|
4137
|
-
startDateField: string;
|
|
4138
|
-
titleField: string;
|
|
4139
|
-
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
4140
|
-
endDateField?: string | undefined;
|
|
4141
|
-
groupByField?: string | undefined;
|
|
4142
|
-
colorField?: string | undefined;
|
|
4143
|
-
} | undefined;
|
|
4144
4109
|
chart?: {
|
|
4145
4110
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
4146
4111
|
dataset: string;
|
|
4147
4112
|
values: string[];
|
|
4148
4113
|
dimensions?: string[] | undefined;
|
|
4149
4114
|
} | undefined;
|
|
4150
|
-
|
|
4151
|
-
|
|
4152
|
-
|
|
4153
|
-
|
|
4154
|
-
|
|
4155
|
-
|
|
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";
|
|
4156
4138
|
} | undefined;
|
|
4157
|
-
|
|
4158
|
-
|
|
4159
|
-
|
|
4160
|
-
lockedBy?: string | undefined;
|
|
4139
|
+
pagination?: {
|
|
4140
|
+
pageSize: number;
|
|
4141
|
+
pageSizeOptions?: number[] | undefined;
|
|
4161
4142
|
} | undefined;
|
|
4162
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
4163
4143
|
grouping?: {
|
|
4164
4144
|
fields: {
|
|
4165
4145
|
field: string;
|
|
@@ -4176,7 +4156,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4176
4156
|
rowActions?: string[] | undefined;
|
|
4177
4157
|
bulkActions?: string[] | undefined;
|
|
4178
4158
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
4179
|
-
virtualScroll?: boolean | undefined;
|
|
4180
4159
|
conditionalFormatting?: {
|
|
4181
4160
|
condition: {
|
|
4182
4161
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -4197,7 +4176,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4197
4176
|
};
|
|
4198
4177
|
style: Record<string, string>;
|
|
4199
4178
|
}[] | undefined;
|
|
4200
|
-
inlineEdit?: boolean | undefined;
|
|
4201
4179
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
4202
4180
|
userActions?: {
|
|
4203
4181
|
sort: boolean;
|
|
@@ -4210,23 +4188,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
4210
4188
|
} | undefined;
|
|
4211
4189
|
appearance?: {
|
|
4212
4190
|
showDescription: boolean;
|
|
4213
|
-
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "
|
|
4191
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
4214
4192
|
} | undefined;
|
|
4215
|
-
tabs?: {
|
|
4216
|
-
name: string;
|
|
4217
|
-
pinned: boolean;
|
|
4218
|
-
isDefault: boolean;
|
|
4219
|
-
visible: boolean;
|
|
4220
|
-
label?: string | undefined;
|
|
4221
|
-
icon?: string | undefined;
|
|
4222
|
-
view?: string | undefined;
|
|
4223
|
-
filter?: {
|
|
4224
|
-
field: string;
|
|
4225
|
-
operator: string;
|
|
4226
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
4227
|
-
}[] | undefined;
|
|
4228
|
-
order?: number | undefined;
|
|
4229
|
-
}[] | undefined;
|
|
4230
4193
|
addRecord?: {
|
|
4231
4194
|
enabled: boolean;
|
|
4232
4195
|
position: "top" | "bottom" | "both";
|
|
@@ -4240,31 +4203,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4240
4203
|
message?: string | undefined;
|
|
4241
4204
|
icon?: string | undefined;
|
|
4242
4205
|
} | undefined;
|
|
4243
|
-
aria?: {
|
|
4244
|
-
ariaLabel?: string | undefined;
|
|
4245
|
-
ariaDescribedBy?: string | undefined;
|
|
4246
|
-
role?: string | undefined;
|
|
4247
|
-
} | undefined;
|
|
4248
|
-
responsive?: {
|
|
4249
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
4250
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
4251
|
-
columns?: {
|
|
4252
|
-
xs?: number | undefined;
|
|
4253
|
-
sm?: number | undefined;
|
|
4254
|
-
md?: number | undefined;
|
|
4255
|
-
lg?: number | undefined;
|
|
4256
|
-
xl?: number | undefined;
|
|
4257
|
-
'2xl'?: number | undefined;
|
|
4258
|
-
} | undefined;
|
|
4259
|
-
order?: {
|
|
4260
|
-
xs?: number | undefined;
|
|
4261
|
-
sm?: number | undefined;
|
|
4262
|
-
md?: number | undefined;
|
|
4263
|
-
lg?: number | undefined;
|
|
4264
|
-
xl?: number | undefined;
|
|
4265
|
-
'2xl'?: number | undefined;
|
|
4266
|
-
} | undefined;
|
|
4267
|
-
} | undefined;
|
|
4268
4206
|
performance?: {
|
|
4269
4207
|
lazyLoad?: boolean | undefined;
|
|
4270
4208
|
virtualScroll?: {
|
|
@@ -4423,7 +4361,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4423
4361
|
readonly description: "Resumable multipart upload sessions tracked by service-storage";
|
|
4424
4362
|
readonly nameField: "filename";
|
|
4425
4363
|
readonly titleFormat: "{filename}";
|
|
4426
|
-
readonly
|
|
4364
|
+
readonly highlightFields: ["filename", "status", "uploaded_chunks", "total_chunks", "expires_at"];
|
|
4427
4365
|
readonly fields: {
|
|
4428
4366
|
readonly id: {
|
|
4429
4367
|
readonly readonly?: boolean | undefined;
|
|
@@ -4464,7 +4402,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4464
4402
|
readonly inlineTitle?: string | undefined;
|
|
4465
4403
|
readonly inlineColumns?: any[] | undefined;
|
|
4466
4404
|
readonly inlineAmountField?: string | undefined;
|
|
4467
|
-
readonly relatedList?: boolean | undefined;
|
|
4405
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4468
4406
|
readonly relatedListTitle?: string | undefined;
|
|
4469
4407
|
readonly relatedListColumns?: any[] | undefined;
|
|
4470
4408
|
readonly displayField?: string | undefined;
|
|
@@ -4638,7 +4576,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4638
4576
|
readonly inlineTitle?: string | undefined;
|
|
4639
4577
|
readonly inlineColumns?: any[] | undefined;
|
|
4640
4578
|
readonly inlineAmountField?: string | undefined;
|
|
4641
|
-
readonly relatedList?: boolean | undefined;
|
|
4579
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4642
4580
|
readonly relatedListTitle?: string | undefined;
|
|
4643
4581
|
readonly relatedListColumns?: any[] | undefined;
|
|
4644
4582
|
readonly displayField?: string | undefined;
|
|
@@ -4812,7 +4750,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4812
4750
|
readonly inlineTitle?: string | undefined;
|
|
4813
4751
|
readonly inlineColumns?: any[] | undefined;
|
|
4814
4752
|
readonly inlineAmountField?: string | undefined;
|
|
4815
|
-
readonly relatedList?: boolean | undefined;
|
|
4753
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4816
4754
|
readonly relatedListTitle?: string | undefined;
|
|
4817
4755
|
readonly relatedListColumns?: any[] | undefined;
|
|
4818
4756
|
readonly displayField?: string | undefined;
|
|
@@ -4986,7 +4924,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4986
4924
|
readonly inlineTitle?: string | undefined;
|
|
4987
4925
|
readonly inlineColumns?: any[] | undefined;
|
|
4988
4926
|
readonly inlineAmountField?: string | undefined;
|
|
4989
|
-
readonly relatedList?: boolean | undefined;
|
|
4927
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4990
4928
|
readonly relatedListTitle?: string | undefined;
|
|
4991
4929
|
readonly relatedListColumns?: any[] | undefined;
|
|
4992
4930
|
readonly displayField?: string | undefined;
|
|
@@ -5160,7 +5098,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5160
5098
|
readonly inlineTitle?: string | undefined;
|
|
5161
5099
|
readonly inlineColumns?: any[] | undefined;
|
|
5162
5100
|
readonly inlineAmountField?: string | undefined;
|
|
5163
|
-
readonly relatedList?: boolean | undefined;
|
|
5101
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5164
5102
|
readonly relatedListTitle?: string | undefined;
|
|
5165
5103
|
readonly relatedListColumns?: any[] | undefined;
|
|
5166
5104
|
readonly displayField?: string | undefined;
|
|
@@ -5334,7 +5272,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5334
5272
|
readonly inlineTitle?: string | undefined;
|
|
5335
5273
|
readonly inlineColumns?: any[] | undefined;
|
|
5336
5274
|
readonly inlineAmountField?: string | undefined;
|
|
5337
|
-
readonly relatedList?: boolean | undefined;
|
|
5275
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5338
5276
|
readonly relatedListTitle?: string | undefined;
|
|
5339
5277
|
readonly relatedListColumns?: any[] | undefined;
|
|
5340
5278
|
readonly displayField?: string | undefined;
|
|
@@ -5508,7 +5446,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5508
5446
|
readonly inlineTitle?: string | undefined;
|
|
5509
5447
|
readonly inlineColumns?: any[] | undefined;
|
|
5510
5448
|
readonly inlineAmountField?: string | undefined;
|
|
5511
|
-
readonly relatedList?: boolean | undefined;
|
|
5449
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5512
5450
|
readonly relatedListTitle?: string | undefined;
|
|
5513
5451
|
readonly relatedListColumns?: any[] | undefined;
|
|
5514
5452
|
readonly displayField?: string | undefined;
|
|
@@ -5682,7 +5620,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5682
5620
|
readonly inlineTitle?: string | undefined;
|
|
5683
5621
|
readonly inlineColumns?: any[] | undefined;
|
|
5684
5622
|
readonly inlineAmountField?: string | undefined;
|
|
5685
|
-
readonly relatedList?: boolean | undefined;
|
|
5623
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5686
5624
|
readonly relatedListTitle?: string | undefined;
|
|
5687
5625
|
readonly relatedListColumns?: any[] | undefined;
|
|
5688
5626
|
readonly displayField?: string | undefined;
|
|
@@ -5856,7 +5794,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5856
5794
|
readonly inlineTitle?: string | undefined;
|
|
5857
5795
|
readonly inlineColumns?: any[] | undefined;
|
|
5858
5796
|
readonly inlineAmountField?: string | undefined;
|
|
5859
|
-
readonly relatedList?: boolean | undefined;
|
|
5797
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5860
5798
|
readonly relatedListTitle?: string | undefined;
|
|
5861
5799
|
readonly relatedListColumns?: any[] | undefined;
|
|
5862
5800
|
readonly displayField?: string | undefined;
|
|
@@ -6030,7 +5968,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6030
5968
|
readonly inlineTitle?: string | undefined;
|
|
6031
5969
|
readonly inlineColumns?: any[] | undefined;
|
|
6032
5970
|
readonly inlineAmountField?: string | undefined;
|
|
6033
|
-
readonly relatedList?: boolean | undefined;
|
|
5971
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6034
5972
|
readonly relatedListTitle?: string | undefined;
|
|
6035
5973
|
readonly relatedListColumns?: any[] | undefined;
|
|
6036
5974
|
readonly displayField?: string | undefined;
|
|
@@ -6204,7 +6142,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6204
6142
|
readonly inlineTitle?: string | undefined;
|
|
6205
6143
|
readonly inlineColumns?: any[] | undefined;
|
|
6206
6144
|
readonly inlineAmountField?: string | undefined;
|
|
6207
|
-
readonly relatedList?: boolean | undefined;
|
|
6145
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6208
6146
|
readonly relatedListTitle?: string | undefined;
|
|
6209
6147
|
readonly relatedListColumns?: any[] | undefined;
|
|
6210
6148
|
readonly displayField?: string | undefined;
|
|
@@ -6378,7 +6316,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6378
6316
|
readonly inlineTitle?: string | undefined;
|
|
6379
6317
|
readonly inlineColumns?: any[] | undefined;
|
|
6380
6318
|
readonly inlineAmountField?: string | undefined;
|
|
6381
|
-
readonly relatedList?: boolean | undefined;
|
|
6319
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6382
6320
|
readonly relatedListTitle?: string | undefined;
|
|
6383
6321
|
readonly relatedListColumns?: any[] | undefined;
|
|
6384
6322
|
readonly displayField?: string | undefined;
|
|
@@ -6552,7 +6490,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6552
6490
|
readonly inlineTitle?: string | undefined;
|
|
6553
6491
|
readonly inlineColumns?: any[] | undefined;
|
|
6554
6492
|
readonly inlineAmountField?: string | undefined;
|
|
6555
|
-
readonly relatedList?: boolean | undefined;
|
|
6493
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6556
6494
|
readonly relatedListTitle?: string | undefined;
|
|
6557
6495
|
readonly relatedListColumns?: any[] | undefined;
|
|
6558
6496
|
readonly displayField?: string | undefined;
|
|
@@ -6726,7 +6664,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6726
6664
|
readonly inlineTitle?: string | undefined;
|
|
6727
6665
|
readonly inlineColumns?: any[] | undefined;
|
|
6728
6666
|
readonly inlineAmountField?: string | undefined;
|
|
6729
|
-
readonly relatedList?: boolean | undefined;
|
|
6667
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6730
6668
|
readonly relatedListTitle?: string | undefined;
|
|
6731
6669
|
readonly relatedListColumns?: any[] | undefined;
|
|
6732
6670
|
readonly displayField?: string | undefined;
|
|
@@ -6900,7 +6838,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6900
6838
|
readonly inlineTitle?: string | undefined;
|
|
6901
6839
|
readonly inlineColumns?: any[] | undefined;
|
|
6902
6840
|
readonly inlineAmountField?: string | undefined;
|
|
6903
|
-
readonly relatedList?: boolean | undefined;
|
|
6841
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6904
6842
|
readonly relatedListTitle?: string | undefined;
|
|
6905
6843
|
readonly relatedListColumns?: any[] | undefined;
|
|
6906
6844
|
readonly displayField?: string | undefined;
|
|
@@ -7074,7 +7012,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7074
7012
|
readonly inlineTitle?: string | undefined;
|
|
7075
7013
|
readonly inlineColumns?: any[] | undefined;
|
|
7076
7014
|
readonly inlineAmountField?: string | undefined;
|
|
7077
|
-
readonly relatedList?: boolean | undefined;
|
|
7015
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7078
7016
|
readonly relatedListTitle?: string | undefined;
|
|
7079
7017
|
readonly relatedListColumns?: any[] | undefined;
|
|
7080
7018
|
readonly displayField?: string | undefined;
|
|
@@ -7248,7 +7186,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7248
7186
|
readonly inlineTitle?: string | undefined;
|
|
7249
7187
|
readonly inlineColumns?: any[] | undefined;
|
|
7250
7188
|
readonly inlineAmountField?: string | undefined;
|
|
7251
|
-
readonly relatedList?: boolean | undefined;
|
|
7189
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7252
7190
|
readonly relatedListTitle?: string | undefined;
|
|
7253
7191
|
readonly relatedListColumns?: any[] | undefined;
|
|
7254
7192
|
readonly displayField?: string | undefined;
|
|
@@ -7422,7 +7360,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7422
7360
|
readonly inlineTitle?: string | undefined;
|
|
7423
7361
|
readonly inlineColumns?: any[] | undefined;
|
|
7424
7362
|
readonly inlineAmountField?: string | undefined;
|
|
7425
|
-
readonly relatedList?: boolean | undefined;
|
|
7363
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7426
7364
|
readonly relatedListTitle?: string | undefined;
|
|
7427
7365
|
readonly relatedListColumns?: any[] | undefined;
|
|
7428
7366
|
readonly displayField?: string | undefined;
|
|
@@ -7596,7 +7534,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7596
7534
|
readonly inlineTitle?: string | undefined;
|
|
7597
7535
|
readonly inlineColumns?: any[] | undefined;
|
|
7598
7536
|
readonly inlineAmountField?: string | undefined;
|
|
7599
|
-
readonly relatedList?: boolean | undefined;
|
|
7537
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7600
7538
|
readonly relatedListTitle?: string | undefined;
|
|
7601
7539
|
readonly relatedListColumns?: any[] | undefined;
|
|
7602
7540
|
readonly displayField?: string | undefined;
|
|
@@ -7770,7 +7708,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7770
7708
|
readonly inlineTitle?: string | undefined;
|
|
7771
7709
|
readonly inlineColumns?: any[] | undefined;
|
|
7772
7710
|
readonly inlineAmountField?: string | undefined;
|
|
7773
|
-
readonly relatedList?: boolean | undefined;
|
|
7711
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7774
7712
|
readonly relatedListTitle?: string | undefined;
|
|
7775
7713
|
readonly relatedListColumns?: any[] | undefined;
|
|
7776
7714
|
readonly displayField?: string | undefined;
|