dataset-types 3.1.0 → 3.2.0

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
@@ -251,7 +251,7 @@ export interface IDataTypeMeta {
251
251
  tooltip: string;
252
252
  value: (ci: IConfigurationItem) => string;
253
253
  }
254
- export type HOOK_USE_FILES = (context: string, projectcontext: string, term: string, recordtype: string, onlyenabled: boolean, hash: number, page: number, pageSize: number) => IResults<any>;
254
+ export type HOOK_USE_FILES = (context: string, projectcontext: string, term: string, recordtype: string, onlyenabled: boolean, level: string, hash: number, page: number, pageSize: number) => IResults<any>;
255
255
  export type POST_SUBMIT_SAMPLE = () => any;
256
256
  export interface IManageDatasetReplayConfiguration {
257
257
  context: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dataset-types",
3
- "version": "3.1.0",
3
+ "version": "3.2.0",
4
4
  "scripts": {
5
5
  "start": "npm run build && npm run package",
6
6
  "build": "tsc --rootDir 'src/types' --outDir './dist'",