gps-global-types 1.0.70 → 1.0.74

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.
@@ -127,3 +127,6 @@ export declare const IsolateFields: {
127
127
  mrsnSuperFamily: StringConstructor;
128
128
  expectedPhenotype: StringConstructor;
129
129
  };
130
+ export interface RowDataType extends Record<string, any> {
131
+ _id: string;
132
+ }
@@ -1,6 +1,6 @@
1
1
  import { ClusterFields } from "./cluster.types";
2
2
  import { armordAccessionNumber, Color, mrsnId, ObjectId } from "./global.types";
3
- import { IsolateFields } from "./isolate.types";
3
+ import { IsolateFields, RowDataType } from "./isolate.types";
4
4
  import { EdgeType } from "./link.types";
5
5
  import { NodeType, PreNodeInterface } from "./pie.types";
6
6
  export interface ModelSnapshotProps {
@@ -85,9 +85,11 @@ export interface MSTValue {
85
85
  data: Record<string, any>[];
86
86
  headers: DataGridHeaderType[];
87
87
  };
88
+ neighbors?: ObjectId[];
88
89
  };
89
90
  ids: string[];
90
91
  editableDict?: Record<ObjectId, Record<string, string>>;
92
+ missingTabular?: RowDataType[];
91
93
  }
92
94
  export type MSTResult = Record<string, MSTValue>;
93
95
  export interface LegendBullet {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gps-global-types",
3
- "version": "1.0.70",
3
+ "version": "1.0.74",
4
4
  "description": "types shared between front-end and back-end",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",