dataset-types 3.0.15 → 3.0.17

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 +4 -2
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -163,7 +163,7 @@ export interface IDataArchivable extends IEntity {
163
163
  archived: boolean;
164
164
  archivedBy?: string;
165
165
  }
166
- export type IProject = IDataLockable & IDataArchivable & {
166
+ export type IProject = IDataLockable & IDataArchivable & IName & {
167
167
  description: string;
168
168
  updatedBy: string;
169
169
  updatedAt: Date;
@@ -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.17",
4
4
  "scripts": {
5
5
  "start": "npm run build && npm run package",
6
6
  "build": "tsc --rootDir 'src/types' --outDir './dist'",