placementt-core 1.400.934 → 1.400.935

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.
@@ -526,6 +526,7 @@ export type DataViewerFilterView = {
526
526
  sort?: string;
527
527
  filters?: FilterObject;
528
528
  columns?: string[];
529
+ viewType?: "list" | "table";
529
530
  permanent?: boolean;
530
531
  };
531
532
  export type AnalyticsItem = {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.400.934",
5
+ "version": "1.400.935",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -524,6 +524,7 @@ export type DataViewerFilterView = {
524
524
  sort?: string,
525
525
  filters?: FilterObject,
526
526
  columns?: string[],
527
+ viewType?: "list"|"table",
527
528
  permanent?: boolean,
528
529
  }
529
530