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.
- package/index.d.ts +1 -1
- 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>;
|