@objectstack/plugin-security 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.mts CHANGED
@@ -822,10 +822,9 @@ declare const securityObjects: ((Omit<{
822
822
  } | undefined;
823
823
  chart?: {
824
824
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
825
- xAxisField: string;
826
- yAxisFields: string[];
827
- aggregation?: "count" | "min" | "max" | "sum" | "avg" | undefined;
828
- groupByField?: string | undefined;
825
+ dataset: string;
826
+ values: string[];
827
+ dimensions?: string[] | undefined;
829
828
  } | undefined;
830
829
  description?: string | undefined;
831
830
  sharing?: {
@@ -3660,10 +3659,9 @@ declare const securityObjects: ((Omit<{
3660
3659
  } | undefined;
3661
3660
  chart?: {
3662
3661
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
3663
- xAxisField: string;
3664
- yAxisFields: string[];
3665
- aggregation?: "count" | "min" | "max" | "sum" | "avg" | undefined;
3666
- groupByField?: string | undefined;
3662
+ dataset: string;
3663
+ values: string[];
3664
+ dimensions?: string[] | undefined;
3667
3665
  } | undefined;
3668
3666
  description?: string | undefined;
3669
3667
  sharing?: {
@@ -7092,10 +7090,9 @@ declare const securityObjects: ((Omit<{
7092
7090
  } | undefined;
7093
7091
  chart?: {
7094
7092
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
7095
- xAxisField: string;
7096
- yAxisFields: string[];
7097
- aggregation?: "count" | "min" | "max" | "sum" | "avg" | undefined;
7098
- groupByField?: string | undefined;
7093
+ dataset: string;
7094
+ values: string[];
7095
+ dimensions?: string[] | undefined;
7099
7096
  } | undefined;
7100
7097
  description?: string | undefined;
7101
7098
  sharing?: {
@@ -9341,10 +9338,9 @@ declare const securityObjects: ((Omit<{
9341
9338
  } | undefined;
9342
9339
  chart?: {
9343
9340
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
9344
- xAxisField: string;
9345
- yAxisFields: string[];
9346
- aggregation?: "count" | "min" | "max" | "sum" | "avg" | undefined;
9347
- groupByField?: string | undefined;
9341
+ dataset: string;
9342
+ values: string[];
9343
+ dimensions?: string[] | undefined;
9348
9344
  } | undefined;
9349
9345
  description?: string | undefined;
9350
9346
  sharing?: {
package/dist/index.d.ts CHANGED
@@ -822,10 +822,9 @@ declare const securityObjects: ((Omit<{
822
822
  } | undefined;
823
823
  chart?: {
824
824
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
825
- xAxisField: string;
826
- yAxisFields: string[];
827
- aggregation?: "count" | "min" | "max" | "sum" | "avg" | undefined;
828
- groupByField?: string | undefined;
825
+ dataset: string;
826
+ values: string[];
827
+ dimensions?: string[] | undefined;
829
828
  } | undefined;
830
829
  description?: string | undefined;
831
830
  sharing?: {
@@ -3660,10 +3659,9 @@ declare const securityObjects: ((Omit<{
3660
3659
  } | undefined;
3661
3660
  chart?: {
3662
3661
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
3663
- xAxisField: string;
3664
- yAxisFields: string[];
3665
- aggregation?: "count" | "min" | "max" | "sum" | "avg" | undefined;
3666
- groupByField?: string | undefined;
3662
+ dataset: string;
3663
+ values: string[];
3664
+ dimensions?: string[] | undefined;
3667
3665
  } | undefined;
3668
3666
  description?: string | undefined;
3669
3667
  sharing?: {
@@ -7092,10 +7090,9 @@ declare const securityObjects: ((Omit<{
7092
7090
  } | undefined;
7093
7091
  chart?: {
7094
7092
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
7095
- xAxisField: string;
7096
- yAxisFields: string[];
7097
- aggregation?: "count" | "min" | "max" | "sum" | "avg" | undefined;
7098
- groupByField?: string | undefined;
7093
+ dataset: string;
7094
+ values: string[];
7095
+ dimensions?: string[] | undefined;
7099
7096
  } | undefined;
7100
7097
  description?: string | undefined;
7101
7098
  sharing?: {
@@ -9341,10 +9338,9 @@ declare const securityObjects: ((Omit<{
9341
9338
  } | undefined;
9342
9339
  chart?: {
9343
9340
  chartType: "bar" | "line" | "pie" | "area" | "scatter";
9344
- xAxisField: string;
9345
- yAxisFields: string[];
9346
- aggregation?: "count" | "min" | "max" | "sum" | "avg" | undefined;
9347
- groupByField?: string | undefined;
9341
+ dataset: string;
9342
+ values: string[];
9343
+ dimensions?: string[] | undefined;
9348
9344
  } | undefined;
9349
9345
  description?: string | undefined;
9350
9346
  sharing?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectstack/plugin-security",
3
- "version": "8.0.1",
3
+ "version": "9.0.0",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Security Plugin for ObjectStack — RBAC, RLS, and Field-Level Security Runtime",
6
6
  "main": "dist/index.js",
@@ -13,12 +13,12 @@
13
13
  }
14
14
  },
15
15
  "dependencies": {
16
- "@objectstack/core": "8.0.1",
17
- "@objectstack/platform-objects": "8.0.1",
18
- "@objectstack/spec": "8.0.1"
16
+ "@objectstack/core": "9.0.0",
17
+ "@objectstack/platform-objects": "9.0.0",
18
+ "@objectstack/spec": "9.0.0"
19
19
  },
20
20
  "devDependencies": {
21
- "@types/node": "^25.9.1",
21
+ "@types/node": "^25.9.2",
22
22
  "typescript": "^6.0.3",
23
23
  "vitest": "^4.1.8"
24
24
  },