dataset-types 3.0.4 → 3.0.5
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 +14 -7
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -107,19 +107,26 @@ export interface ILog {
|
|
|
107
107
|
documentId?: string;
|
|
108
108
|
name?: string;
|
|
109
109
|
localfilename?: string;
|
|
110
|
-
|
|
111
|
-
user?: string;
|
|
110
|
+
user: string;
|
|
112
111
|
meta: {
|
|
113
112
|
documenttype: string;
|
|
114
|
-
context
|
|
113
|
+
context: string;
|
|
114
|
+
projectcontext: string;
|
|
115
115
|
entity?: string;
|
|
116
|
-
user?: string;
|
|
117
|
-
createdat?: string;
|
|
118
|
-
recordstatus?: string;
|
|
119
|
-
effective?: string;
|
|
120
116
|
};
|
|
121
117
|
document?: IDocument;
|
|
118
|
+
processing?: any[];
|
|
122
119
|
rawdata?: any[];
|
|
120
|
+
transformeddata?: any[];
|
|
121
|
+
content_mappings?: any[];
|
|
122
|
+
enriched_contentmappings?: any[];
|
|
123
|
+
enricheddata?: any[];
|
|
124
|
+
persisted_data_result?: any[];
|
|
125
|
+
classifieddata?: any[];
|
|
126
|
+
filetype?: string;
|
|
127
|
+
filter?: any;
|
|
128
|
+
error?: string;
|
|
129
|
+
archiveid?: string;
|
|
123
130
|
}
|
|
124
131
|
export interface IUser {
|
|
125
132
|
id: string;
|