dataset-types 3.0.38 → 3.0.39

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
@@ -304,7 +304,7 @@ export type IDatasetsPackage = {
304
304
  [datatype: string]: IDatasetTable;
305
305
  };
306
306
  export type ICleanTransformCallback = (data: IDatasetTable, datatype: string) => IDatasetsPackage;
307
- export type IFilterCallback = (datatype: string, row: any) => boolean;
307
+ export type IFilterCallback = (datatype: string, row: any, links: IDocumentEntityLink) => boolean;
308
308
  export type IGetIdsForDataCallback = (datatype: string, data: IDatasetTable) => string[];
309
309
  export type IGetDataByIdsCallback = (datatype: string, ids: string[]) => Promise<IDatasetTable>;
310
310
  export type ICombineExistingAndUpdateCallback = (datatype: string, updatedata: IDatasetTable, existing: IDatasetTable) => Promise<IDatasetTable>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dataset-types",
3
- "version": "3.0.38",
3
+ "version": "3.0.39",
4
4
  "scripts": {
5
5
  "start": "npm run build && npm run package",
6
6
  "build": "tsc --rootDir 'src/types' --outDir './dist'",