dataset-types 3.0.43 → 3.0.45

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 +5 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -31,6 +31,7 @@ export interface INamedEntity extends IEntity, IName, IContext {
31
31
  export interface ITimed {
32
32
  createdBy: string;
33
33
  createdAt: Date;
34
+ effective?: string;
34
35
  }
35
36
  export interface IDocumentReference extends IDataRow {
36
37
  filetype: string;
@@ -271,7 +272,10 @@ export interface IManageDatasetReplayConfiguration {
271
272
  useFiles?: {
272
273
  [datatype: string]: HOOK_USE_FILES;
273
274
  };
274
- customReplay?: (log: ILog, base64content: string) => Promise<ILog[]>;
275
+ customReplay?: {
276
+ name: string;
277
+ process: (log: ILog, base64content: string) => Promise<ILog[]>;
278
+ };
275
279
  }
276
280
  export interface IMenuLink {
277
281
  path: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dataset-types",
3
- "version": "3.0.43",
3
+ "version": "3.0.45",
4
4
  "scripts": {
5
5
  "start": "npm run build && npm run package",
6
6
  "build": "tsc --rootDir 'src/types' --outDir './dist'",