@objectstack/service-storage 9.9.0 → 9.10.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 +48 -2
- package/dist/index.d.ts +48 -2
- package/package.json +5 -5
package/dist/index.d.cts
CHANGED
|
@@ -875,6 +875,29 @@ declare const SystemFile: Omit<{
|
|
|
875
875
|
titleField: string;
|
|
876
876
|
progressField?: string | undefined;
|
|
877
877
|
dependenciesField?: string | undefined;
|
|
878
|
+
colorField?: string | undefined;
|
|
879
|
+
parentField?: string | undefined;
|
|
880
|
+
typeField?: string | undefined;
|
|
881
|
+
baselineStartField?: string | undefined;
|
|
882
|
+
baselineEndField?: string | undefined;
|
|
883
|
+
groupByField?: string | undefined;
|
|
884
|
+
resourceView?: boolean | undefined;
|
|
885
|
+
assigneeField?: string | undefined;
|
|
886
|
+
effortField?: string | undefined;
|
|
887
|
+
capacity?: number | undefined;
|
|
888
|
+
tooltipFields?: (string | {
|
|
889
|
+
field: string;
|
|
890
|
+
label?: string | undefined;
|
|
891
|
+
})[] | undefined;
|
|
892
|
+
quickFilters?: {
|
|
893
|
+
field: string;
|
|
894
|
+
label?: string | undefined;
|
|
895
|
+
options?: (string | {
|
|
896
|
+
value: string | number;
|
|
897
|
+
label?: string | undefined;
|
|
898
|
+
})[] | undefined;
|
|
899
|
+
}[] | undefined;
|
|
900
|
+
autoZoomToFilter?: boolean | undefined;
|
|
878
901
|
} | undefined;
|
|
879
902
|
gallery?: {
|
|
880
903
|
coverFit: "cover" | "contain";
|
|
@@ -1070,7 +1093,7 @@ declare const SystemFile: Omit<{
|
|
|
1070
1093
|
} | {
|
|
1071
1094
|
language: "js";
|
|
1072
1095
|
source: string;
|
|
1073
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
1096
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
1074
1097
|
timeoutMs?: number | undefined;
|
|
1075
1098
|
memoryMb?: number | undefined;
|
|
1076
1099
|
} | undefined;
|
|
@@ -3794,6 +3817,29 @@ declare const SystemUploadSession: Omit<{
|
|
|
3794
3817
|
titleField: string;
|
|
3795
3818
|
progressField?: string | undefined;
|
|
3796
3819
|
dependenciesField?: string | undefined;
|
|
3820
|
+
colorField?: string | undefined;
|
|
3821
|
+
parentField?: string | undefined;
|
|
3822
|
+
typeField?: string | undefined;
|
|
3823
|
+
baselineStartField?: string | undefined;
|
|
3824
|
+
baselineEndField?: string | undefined;
|
|
3825
|
+
groupByField?: string | undefined;
|
|
3826
|
+
resourceView?: boolean | undefined;
|
|
3827
|
+
assigneeField?: string | undefined;
|
|
3828
|
+
effortField?: string | undefined;
|
|
3829
|
+
capacity?: number | undefined;
|
|
3830
|
+
tooltipFields?: (string | {
|
|
3831
|
+
field: string;
|
|
3832
|
+
label?: string | undefined;
|
|
3833
|
+
})[] | undefined;
|
|
3834
|
+
quickFilters?: {
|
|
3835
|
+
field: string;
|
|
3836
|
+
label?: string | undefined;
|
|
3837
|
+
options?: (string | {
|
|
3838
|
+
value: string | number;
|
|
3839
|
+
label?: string | undefined;
|
|
3840
|
+
})[] | undefined;
|
|
3841
|
+
}[] | undefined;
|
|
3842
|
+
autoZoomToFilter?: boolean | undefined;
|
|
3797
3843
|
} | undefined;
|
|
3798
3844
|
gallery?: {
|
|
3799
3845
|
coverFit: "cover" | "contain";
|
|
@@ -3989,7 +4035,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3989
4035
|
} | {
|
|
3990
4036
|
language: "js";
|
|
3991
4037
|
source: string;
|
|
3992
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
4038
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
3993
4039
|
timeoutMs?: number | undefined;
|
|
3994
4040
|
memoryMb?: number | undefined;
|
|
3995
4041
|
} | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -875,6 +875,29 @@ declare const SystemFile: Omit<{
|
|
|
875
875
|
titleField: string;
|
|
876
876
|
progressField?: string | undefined;
|
|
877
877
|
dependenciesField?: string | undefined;
|
|
878
|
+
colorField?: string | undefined;
|
|
879
|
+
parentField?: string | undefined;
|
|
880
|
+
typeField?: string | undefined;
|
|
881
|
+
baselineStartField?: string | undefined;
|
|
882
|
+
baselineEndField?: string | undefined;
|
|
883
|
+
groupByField?: string | undefined;
|
|
884
|
+
resourceView?: boolean | undefined;
|
|
885
|
+
assigneeField?: string | undefined;
|
|
886
|
+
effortField?: string | undefined;
|
|
887
|
+
capacity?: number | undefined;
|
|
888
|
+
tooltipFields?: (string | {
|
|
889
|
+
field: string;
|
|
890
|
+
label?: string | undefined;
|
|
891
|
+
})[] | undefined;
|
|
892
|
+
quickFilters?: {
|
|
893
|
+
field: string;
|
|
894
|
+
label?: string | undefined;
|
|
895
|
+
options?: (string | {
|
|
896
|
+
value: string | number;
|
|
897
|
+
label?: string | undefined;
|
|
898
|
+
})[] | undefined;
|
|
899
|
+
}[] | undefined;
|
|
900
|
+
autoZoomToFilter?: boolean | undefined;
|
|
878
901
|
} | undefined;
|
|
879
902
|
gallery?: {
|
|
880
903
|
coverFit: "cover" | "contain";
|
|
@@ -1070,7 +1093,7 @@ declare const SystemFile: Omit<{
|
|
|
1070
1093
|
} | {
|
|
1071
1094
|
language: "js";
|
|
1072
1095
|
source: string;
|
|
1073
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
1096
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
1074
1097
|
timeoutMs?: number | undefined;
|
|
1075
1098
|
memoryMb?: number | undefined;
|
|
1076
1099
|
} | undefined;
|
|
@@ -3794,6 +3817,29 @@ declare const SystemUploadSession: Omit<{
|
|
|
3794
3817
|
titleField: string;
|
|
3795
3818
|
progressField?: string | undefined;
|
|
3796
3819
|
dependenciesField?: string | undefined;
|
|
3820
|
+
colorField?: string | undefined;
|
|
3821
|
+
parentField?: string | undefined;
|
|
3822
|
+
typeField?: string | undefined;
|
|
3823
|
+
baselineStartField?: string | undefined;
|
|
3824
|
+
baselineEndField?: string | undefined;
|
|
3825
|
+
groupByField?: string | undefined;
|
|
3826
|
+
resourceView?: boolean | undefined;
|
|
3827
|
+
assigneeField?: string | undefined;
|
|
3828
|
+
effortField?: string | undefined;
|
|
3829
|
+
capacity?: number | undefined;
|
|
3830
|
+
tooltipFields?: (string | {
|
|
3831
|
+
field: string;
|
|
3832
|
+
label?: string | undefined;
|
|
3833
|
+
})[] | undefined;
|
|
3834
|
+
quickFilters?: {
|
|
3835
|
+
field: string;
|
|
3836
|
+
label?: string | undefined;
|
|
3837
|
+
options?: (string | {
|
|
3838
|
+
value: string | number;
|
|
3839
|
+
label?: string | undefined;
|
|
3840
|
+
})[] | undefined;
|
|
3841
|
+
}[] | undefined;
|
|
3842
|
+
autoZoomToFilter?: boolean | undefined;
|
|
3797
3843
|
} | undefined;
|
|
3798
3844
|
gallery?: {
|
|
3799
3845
|
coverFit: "cover" | "contain";
|
|
@@ -3989,7 +4035,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3989
4035
|
} | {
|
|
3990
4036
|
language: "js";
|
|
3991
4037
|
source: string;
|
|
3992
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
4038
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
3993
4039
|
timeoutMs?: number | undefined;
|
|
3994
4040
|
memoryMb?: number | undefined;
|
|
3995
4041
|
} | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/service-storage",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.10.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Storage Service for ObjectStack — implements IStorageService with local filesystem and S3 adapter skeleton",
|
|
6
6
|
"type": "module",
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@objectstack/core": "9.
|
|
18
|
-
"@objectstack/observability": "9.
|
|
19
|
-
"@objectstack/platform-objects": "9.
|
|
20
|
-
"@objectstack/spec": "9.
|
|
17
|
+
"@objectstack/core": "9.10.0",
|
|
18
|
+
"@objectstack/observability": "9.10.0",
|
|
19
|
+
"@objectstack/platform-objects": "9.10.0",
|
|
20
|
+
"@objectstack/spec": "9.10.0"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"@aws-sdk/client-s3": "^3.0.0",
|