@objectstack/metadata-core 8.0.1 → 9.0.1

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
@@ -743,10 +743,9 @@ declare const SysMetadataObject: Omit<{
743
743
  } | undefined;
744
744
  chart?: {
745
745
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
746
- xAxisField: string;
747
- yAxisFields: string[];
748
- aggregation?: "min" | "max" | "count" | "sum" | "avg" | undefined;
749
- groupByField?: string | undefined;
746
+ dataset: string;
747
+ values: string[];
748
+ dimensions?: string[] | undefined;
750
749
  } | undefined;
751
750
  description?: string | undefined;
752
751
  sharing?: {
@@ -6487,10 +6486,9 @@ declare const SysMetadataHistoryObject: Omit<{
6487
6486
  } | undefined;
6488
6487
  chart?: {
6489
6488
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
6490
- xAxisField: string;
6491
- yAxisFields: string[];
6492
- aggregation?: "min" | "max" | "count" | "sum" | "avg" | undefined;
6493
- groupByField?: string | undefined;
6489
+ dataset: string;
6490
+ values: string[];
6491
+ dimensions?: string[] | undefined;
6494
6492
  } | undefined;
6495
6493
  description?: string | undefined;
6496
6494
  sharing?: {
@@ -10261,10 +10259,9 @@ declare const SysMetadataAuditObject: Omit<{
10261
10259
  } | undefined;
10262
10260
  chart?: {
10263
10261
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
10264
- xAxisField: string;
10265
- yAxisFields: string[];
10266
- aggregation?: "min" | "max" | "count" | "sum" | "avg" | undefined;
10267
- groupByField?: string | undefined;
10262
+ dataset: string;
10263
+ values: string[];
10264
+ dimensions?: string[] | undefined;
10268
10265
  } | undefined;
10269
10266
  description?: string | undefined;
10270
10267
  sharing?: {
@@ -14027,10 +14024,9 @@ declare const SysViewDefinitionObject: Omit<{
14027
14024
  } | undefined;
14028
14025
  chart?: {
14029
14026
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
14030
- xAxisField: string;
14031
- yAxisFields: string[];
14032
- aggregation?: "min" | "max" | "count" | "sum" | "avg" | undefined;
14033
- groupByField?: string | undefined;
14027
+ dataset: string;
14028
+ values: string[];
14029
+ dimensions?: string[] | undefined;
14034
14030
  } | undefined;
14035
14031
  description?: string | undefined;
14036
14032
  sharing?: {
package/dist/index.d.ts CHANGED
@@ -743,10 +743,9 @@ declare const SysMetadataObject: Omit<{
743
743
  } | undefined;
744
744
  chart?: {
745
745
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
746
- xAxisField: string;
747
- yAxisFields: string[];
748
- aggregation?: "min" | "max" | "count" | "sum" | "avg" | undefined;
749
- groupByField?: string | undefined;
746
+ dataset: string;
747
+ values: string[];
748
+ dimensions?: string[] | undefined;
750
749
  } | undefined;
751
750
  description?: string | undefined;
752
751
  sharing?: {
@@ -6487,10 +6486,9 @@ declare const SysMetadataHistoryObject: Omit<{
6487
6486
  } | undefined;
6488
6487
  chart?: {
6489
6488
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
6490
- xAxisField: string;
6491
- yAxisFields: string[];
6492
- aggregation?: "min" | "max" | "count" | "sum" | "avg" | undefined;
6493
- groupByField?: string | undefined;
6489
+ dataset: string;
6490
+ values: string[];
6491
+ dimensions?: string[] | undefined;
6494
6492
  } | undefined;
6495
6493
  description?: string | undefined;
6496
6494
  sharing?: {
@@ -10261,10 +10259,9 @@ declare const SysMetadataAuditObject: Omit<{
10261
10259
  } | undefined;
10262
10260
  chart?: {
10263
10261
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
10264
- xAxisField: string;
10265
- yAxisFields: string[];
10266
- aggregation?: "min" | "max" | "count" | "sum" | "avg" | undefined;
10267
- groupByField?: string | undefined;
10262
+ dataset: string;
10263
+ values: string[];
10264
+ dimensions?: string[] | undefined;
10268
10265
  } | undefined;
10269
10266
  description?: string | undefined;
10270
10267
  sharing?: {
@@ -14027,10 +14024,9 @@ declare const SysViewDefinitionObject: Omit<{
14027
14024
  } | undefined;
14028
14025
  chart?: {
14029
14026
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
14030
- xAxisField: string;
14031
- yAxisFields: string[];
14032
- aggregation?: "min" | "max" | "count" | "sum" | "avg" | undefined;
14033
- groupByField?: string | undefined;
14027
+ dataset: string;
14028
+ values: string[];
14029
+ dimensions?: string[] | undefined;
14034
14030
  } | undefined;
14035
14031
  description?: string | undefined;
14036
14032
  sharing?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectstack/metadata-core",
3
- "version": "8.0.1",
3
+ "version": "9.0.1",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Metadata Repository contracts: types, canonicalization, errors, interface (ADR-0008).",
6
6
  "type": "module",
@@ -30,7 +30,7 @@
30
30
  ],
31
31
  "dependencies": {
32
32
  "zod": "^4.4.3",
33
- "@objectstack/spec": "8.0.1"
33
+ "@objectstack/spec": "9.0.1"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "vitest": "^4.0.0"
@@ -41,7 +41,7 @@
41
41
  }
42
42
  },
43
43
  "devDependencies": {
44
- "@types/node": "^25.9.1",
44
+ "@types/node": "^25.9.2",
45
45
  "fast-check": "^4.8.0",
46
46
  "tsup": "^8.5.1",
47
47
  "typescript": "^6.0.3",