dataset-types 3.0.41 → 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.
- package/index.d.ts +2 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -110,7 +110,7 @@ export interface ILogStatus {
|
|
|
110
110
|
error?: string;
|
|
111
111
|
}
|
|
112
112
|
export interface ILog {
|
|
113
|
-
processingType:
|
|
113
|
+
processingType: string;
|
|
114
114
|
processingConfig?: IProcessingConfig;
|
|
115
115
|
blobid?: string;
|
|
116
116
|
documentId?: string;
|
|
@@ -271,6 +271,7 @@ export interface IManageDatasetReplayConfiguration {
|
|
|
271
271
|
useFiles?: {
|
|
272
272
|
[datatype: string]: HOOK_USE_FILES;
|
|
273
273
|
};
|
|
274
|
+
customReplay: (log: ILog, base64content: string) => Promise<ILog[]>;
|
|
274
275
|
}
|
|
275
276
|
export interface IMenuLink {
|
|
276
277
|
path: string;
|