dataset-types 3.0.40 → 3.0.42

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
@@ -46,6 +46,7 @@ export interface IDocument extends INamedEntity, ITimed {
46
46
  export interface IDocumentEntityLink {
47
47
  entity: string;
48
48
  documentId: string;
49
+ documentName?: string;
49
50
  }
50
51
  export interface IConfigurationItem extends INamedEntity, ITimed {
51
52
  itemtype: string;
@@ -109,7 +110,7 @@ export interface ILogStatus {
109
110
  error?: string;
110
111
  }
111
112
  export interface ILog {
112
- processingType: "Monitoring" | "Submission";
113
+ processingType: string;
113
114
  processingConfig?: IProcessingConfig;
114
115
  blobid?: string;
115
116
  documentId?: string;
@@ -270,6 +271,7 @@ export interface IManageDatasetReplayConfiguration {
270
271
  useFiles?: {
271
272
  [datatype: string]: HOOK_USE_FILES;
272
273
  };
274
+ customReplay: (log: ILog, base64content: string) => Promise<ILog[]>;
273
275
  }
274
276
  export interface IMenuLink {
275
277
  path: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dataset-types",
3
- "version": "3.0.40",
3
+ "version": "3.0.42",
4
4
  "scripts": {
5
5
  "start": "npm run build && npm run package",
6
6
  "build": "tsc --rootDir 'src/types' --outDir './dist'",