@objectstack/platform-objects 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.
@@ -512,10 +512,9 @@ declare const SysSetting: Omit<{
512
512
  } | undefined;
513
513
  chart?: {
514
514
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
515
- xAxisField: string;
516
- yAxisFields: string[];
517
- aggregation?: "min" | "max" | "count" | "sum" | "avg" | undefined;
518
- groupByField?: string | undefined;
515
+ dataset: string;
516
+ values: string[];
517
+ dimensions?: string[] | undefined;
519
518
  } | undefined;
520
519
  description?: string | undefined;
521
520
  sharing?: {
@@ -4147,10 +4146,9 @@ declare const SysSecret: Omit<{
4147
4146
  } | undefined;
4148
4147
  chart?: {
4149
4148
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
4150
- xAxisField: string;
4151
- yAxisFields: string[];
4152
- aggregation?: "min" | "max" | "count" | "sum" | "avg" | undefined;
4153
- groupByField?: string | undefined;
4149
+ dataset: string;
4150
+ values: string[];
4151
+ dimensions?: string[] | undefined;
4154
4152
  } | undefined;
4155
4153
  description?: string | undefined;
4156
4154
  sharing?: {
@@ -6851,10 +6849,9 @@ declare const SysSettingAudit: Omit<{
6851
6849
  } | undefined;
6852
6850
  chart?: {
6853
6851
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
6854
- xAxisField: string;
6855
- yAxisFields: string[];
6856
- aggregation?: "min" | "max" | "count" | "sum" | "avg" | undefined;
6857
- groupByField?: string | undefined;
6852
+ dataset: string;
6853
+ values: string[];
6854
+ dimensions?: string[] | undefined;
6858
6855
  } | undefined;
6859
6856
  description?: string | undefined;
6860
6857
  sharing?: {
@@ -512,10 +512,9 @@ declare const SysSetting: Omit<{
512
512
  } | undefined;
513
513
  chart?: {
514
514
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
515
- xAxisField: string;
516
- yAxisFields: string[];
517
- aggregation?: "min" | "max" | "count" | "sum" | "avg" | undefined;
518
- groupByField?: string | undefined;
515
+ dataset: string;
516
+ values: string[];
517
+ dimensions?: string[] | undefined;
519
518
  } | undefined;
520
519
  description?: string | undefined;
521
520
  sharing?: {
@@ -4147,10 +4146,9 @@ declare const SysSecret: Omit<{
4147
4146
  } | undefined;
4148
4147
  chart?: {
4149
4148
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
4150
- xAxisField: string;
4151
- yAxisFields: string[];
4152
- aggregation?: "min" | "max" | "count" | "sum" | "avg" | undefined;
4153
- groupByField?: string | undefined;
4149
+ dataset: string;
4150
+ values: string[];
4151
+ dimensions?: string[] | undefined;
4154
4152
  } | undefined;
4155
4153
  description?: string | undefined;
4156
4154
  sharing?: {
@@ -6851,10 +6849,9 @@ declare const SysSettingAudit: Omit<{
6851
6849
  } | undefined;
6852
6850
  chart?: {
6853
6851
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
6854
- xAxisField: string;
6855
- yAxisFields: string[];
6856
- aggregation?: "min" | "max" | "count" | "sum" | "avg" | undefined;
6857
- groupByField?: string | undefined;
6852
+ dataset: string;
6853
+ values: string[];
6854
+ dimensions?: string[] | undefined;
6858
6855
  } | undefined;
6859
6856
  description?: string | undefined;
6860
6857
  sharing?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectstack/platform-objects",
3
- "version": "8.0.1",
3
+ "version": "9.0.1",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Core platform object schemas for ObjectStack — identity, security, audit, tenant, and metadata objects",
6
6
  "main": "dist/index.js",
@@ -63,11 +63,11 @@
63
63
  }
64
64
  },
65
65
  "dependencies": {
66
- "@objectstack/metadata-core": "8.0.1",
67
- "@objectstack/spec": "8.0.1"
66
+ "@objectstack/metadata-core": "9.0.1",
67
+ "@objectstack/spec": "9.0.1"
68
68
  },
69
69
  "devDependencies": {
70
- "@types/node": "^25.9.1",
70
+ "@types/node": "^25.9.2",
71
71
  "tsup": "^8.5.1",
72
72
  "typescript": "^6.0.3",
73
73
  "vitest": "^4.1.8"