placementt-core 1.400.912 → 1.400.913

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,6 +512,7 @@ export type DataViewerFilterView = {
512
512
  search?: string;
513
513
  sort?: string;
514
514
  filters?: FilterObject;
515
+ columns?: string[];
515
516
  permanent?: boolean;
516
517
  };
517
518
  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.912",
5
+ "version": "1.400.913",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -503,6 +503,7 @@ export type DataViewerFilterView = {
503
503
  search?: string,
504
504
  sort?: string,
505
505
  filters?: FilterObject,
506
+ columns?: string[],
506
507
  permanent?: boolean,
507
508
  }
508
509