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
- filename: string;
34
+ fileName: string;
35
+ status: "inProgress" | "completed" | "error";
35
36
  timestamp: Date;
36
37
  numberOfEntries: number;
37
38
  classificationType: ClassificationTypes;
@@ -25,5 +25,6 @@ export declare enum DigicustDocumentType {
25
25
  ATR = "ATR",
26
26
  EUR1 = "EUR1",
27
27
  UserInput = "UserInput",
28
- XML = "XML"
28
+ XML = "XML",
29
+ SplittedDocument = "splittedDocument"
29
30
  }
@@ -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 = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.91",
3
+ "version": "1.8.93",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",