digicust_types 1.8.91 → 1.8.93
Sign up to get free protection for your applications and to get access to all the features.
@@ -31,7 +31,8 @@ export interface ProjectModel {
|
|
31
31
|
masterData?: {
|
32
32
|
bulkImport: {
|
33
33
|
type: string;
|
34
|
-
|
34
|
+
fileName: string;
|
35
|
+
status: "inProgress" | "completed" | "error";
|
35
36
|
timestamp: Date;
|
36
37
|
numberOfEntries: number;
|
37
38
|
classificationType: ClassificationTypes;
|
@@ -30,4 +30,5 @@ var DigicustDocumentType;
|
|
30
30
|
DigicustDocumentType["EUR1"] = "EUR1";
|
31
31
|
DigicustDocumentType["UserInput"] = "UserInput";
|
32
32
|
DigicustDocumentType["XML"] = "XML";
|
33
|
+
DigicustDocumentType["SplittedDocument"] = "splittedDocument";
|
33
34
|
})(DigicustDocumentType || (exports.DigicustDocumentType = DigicustDocumentType = {}));
|