dataset-types 3.0.15 → 3.0.16

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 +3 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -248,7 +248,9 @@ export interface IManageDatasetReplayConfiguration {
248
248
  postReplay: {
249
249
  [datatype: string]: API_POST_REPLAY;
250
250
  };
251
- useFiles: HOOK_USE_FILES;
251
+ useFiles?: {
252
+ [datatype: string]: HOOK_USE_FILES;
253
+ };
252
254
  }
253
255
  export interface IMenuLink {
254
256
  path: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dataset-types",
3
- "version": "3.0.15",
3
+ "version": "3.0.16",
4
4
  "scripts": {
5
5
  "start": "npm run build && npm run package",
6
6
  "build": "tsc --rootDir 'src/types' --outDir './dist'",