@objectstack/service-storage 8.0.1 → 9.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.d.cts CHANGED
@@ -916,10 +916,9 @@ declare const SystemFile: Omit<{
916
916
  } | undefined;
917
917
  chart?: {
918
918
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
919
- xAxisField: string;
920
- yAxisFields: string[];
921
- aggregation?: "min" | "max" | "count" | "sum" | "avg" | undefined;
922
- groupByField?: string | undefined;
919
+ dataset: string;
920
+ values: string[];
921
+ dimensions?: string[] | undefined;
923
922
  } | undefined;
924
923
  description?: string | undefined;
925
924
  sharing?: {
@@ -4626,10 +4625,9 @@ declare const SystemUploadSession: Omit<{
4626
4625
  } | undefined;
4627
4626
  chart?: {
4628
4627
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
4629
- xAxisField: string;
4630
- yAxisFields: string[];
4631
- aggregation?: "min" | "max" | "count" | "sum" | "avg" | undefined;
4632
- groupByField?: string | undefined;
4628
+ dataset: string;
4629
+ values: string[];
4630
+ dimensions?: string[] | undefined;
4633
4631
  } | undefined;
4634
4632
  description?: string | undefined;
4635
4633
  sharing?: {
package/dist/index.d.ts CHANGED
@@ -916,10 +916,9 @@ declare const SystemFile: Omit<{
916
916
  } | undefined;
917
917
  chart?: {
918
918
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
919
- xAxisField: string;
920
- yAxisFields: string[];
921
- aggregation?: "min" | "max" | "count" | "sum" | "avg" | undefined;
922
- groupByField?: string | undefined;
919
+ dataset: string;
920
+ values: string[];
921
+ dimensions?: string[] | undefined;
923
922
  } | undefined;
924
923
  description?: string | undefined;
925
924
  sharing?: {
@@ -4626,10 +4625,9 @@ declare const SystemUploadSession: Omit<{
4626
4625
  } | undefined;
4627
4626
  chart?: {
4628
4627
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
4629
- xAxisField: string;
4630
- yAxisFields: string[];
4631
- aggregation?: "min" | "max" | "count" | "sum" | "avg" | undefined;
4632
- groupByField?: string | undefined;
4628
+ dataset: string;
4629
+ values: string[];
4630
+ dimensions?: string[] | undefined;
4633
4631
  } | undefined;
4634
4632
  description?: string | undefined;
4635
4633
  sharing?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectstack/service-storage",
3
- "version": "8.0.1",
3
+ "version": "9.0.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,9 +14,9 @@
14
14
  }
15
15
  },
16
16
  "dependencies": {
17
- "@objectstack/core": "8.0.1",
18
- "@objectstack/observability": "8.0.1",
19
- "@objectstack/spec": "8.0.1"
17
+ "@objectstack/core": "9.0.0",
18
+ "@objectstack/observability": "9.0.0",
19
+ "@objectstack/spec": "9.0.0"
20
20
  },
21
21
  "peerDependencies": {
22
22
  "@aws-sdk/client-s3": "^3.0.0",
@@ -31,7 +31,7 @@
31
31
  }
32
32
  },
33
33
  "devDependencies": {
34
- "@types/node": "^25.9.1",
34
+ "@types/node": "^25.9.2",
35
35
  "typescript": "^6.0.3",
36
36
  "vitest": "^4.1.8"
37
37
  },