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.
- package/index.d.ts +4 -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
|
|
251
|
+
useFiles?: {
|
|
252
|
+
[datatype: string]: HOOK_USE_FILES;
|
|
253
|
+
};
|
|
252
254
|
}
|
|
253
255
|
export interface IMenuLink {
|
|
254
256
|
path: string;
|