dataset-types 3.2.9 → 3.2.10

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.
Files changed (2) hide show
  1. package/index.d.ts +1 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -284,7 +284,7 @@ export interface IManageDataSetConfiguration {
284
284
  [datatype: string]: HOOK_USE_DATA;
285
285
  };
286
286
  validators: any;
287
- groupColumns: (dt: IDatasetTable, b: boolean) => ITable | undefined;
287
+ groupColumns?: (dt: IDatasetTable, b: boolean) => ITable | undefined;
288
288
  }
289
289
  export type API_POST_SAMPLE = (source: string) => Promise<ICommandResult>;
290
290
  export type API_POST_REPLAY = (source: string, logs: ILog[]) => Promise<ICommandResult>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dataset-types",
3
- "version": "3.2.9",
3
+ "version": "3.2.10",
4
4
  "scripts": {
5
5
  "start": "npm run build && npm run package",
6
6
  "build": "tsc --rootDir 'src/types' --outDir './dist'",