gps-global-types 1.0.94 → 1.0.98

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.
@@ -5,7 +5,7 @@ interface TableData {
5
5
  data: RowDataType[];
6
6
  headers: DataGridHeaderType[];
7
7
  }
8
- type TableMultiView = Partial<Record<validViews, TableData>>;
8
+ export type TableMultiView = Partial<Record<validViews, TableData>>;
9
9
  export interface TableDataMultiView extends TableMultiView {
10
10
  neighbors?: ObjectId[];
11
11
  }
@@ -24,6 +24,7 @@ export interface LatestNodes {
24
24
  }
25
25
  export interface MSTGraph {
26
26
  name?: string;
27
+ distances: string;
27
28
  scheme: ValidCGMLSTSchemes;
28
29
  colorCalendar: Partial<Record<dateKey, Record<string, Color>>>;
29
30
  form?: mstGlobalForm;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gps-global-types",
3
- "version": "1.0.94",
3
+ "version": "1.0.98",
4
4
  "description": "types shared between front-end and back-end",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -24,5 +24,8 @@
24
24
  ">0.2%",
25
25
  "not dead",
26
26
  "not op_mini all"
27
- ]
27
+ ],
28
+ "devDependencies": {
29
+ "@types/react": "^19.2.14"
30
+ }
28
31
  }
@@ -1,4 +0,0 @@
1
- import { KlebFields } from "./isolate.types";
2
- export interface KlebTableObj extends Record<keyof typeof KlebFields, string> {
3
- mrsnId: string;
4
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });