gps-global-types 1.0.69 → 1.0.73

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.
@@ -71,6 +71,7 @@ export interface DataGridHeaderType {
71
71
  headerName?: string;
72
72
  editable?: Boolean;
73
73
  id?: string;
74
+ renderCell?: Function;
74
75
  }
75
76
  export interface MSTValue {
76
77
  flash?: FlashData;
@@ -84,9 +85,11 @@ export interface MSTValue {
84
85
  data: Record<string, any>[];
85
86
  headers: DataGridHeaderType[];
86
87
  };
88
+ neighbors?: ObjectId[];
87
89
  };
88
90
  ids: string[];
89
91
  editableDict?: Record<ObjectId, Record<string, string>>;
92
+ missingTabular?: Record<string, any>[];
90
93
  }
91
94
  export type MSTResult = Record<string, MSTValue>;
92
95
  export interface LegendBullet {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gps-global-types",
3
- "version": "1.0.69",
3
+ "version": "1.0.73",
4
4
  "description": "types shared between front-end and back-end",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",