digicust_types 1.8.133 → 1.8.134

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.
@@ -16,6 +16,24 @@ export interface Mapping {
16
16
  description?: string;
17
17
  mapping?: MappingObject[];
18
18
  }
19
+ export interface BulkUploadFileStatistics {
20
+ type: string;
21
+ fileName: string;
22
+ status: "inProgress" | "completed" | "error";
23
+ startTime: Date;
24
+ endTime: Date;
25
+ numberOfEntries: number;
26
+ classificationType: ClassificationTypes;
27
+ statistics: {
28
+ classified?: number;
29
+ processed?: number;
30
+ updated?: number;
31
+ skipped?: {
32
+ index: number;
33
+ reason: string;
34
+ }[];
35
+ };
36
+ }
19
37
  /**
20
38
  * Project Model provides all the data related to a project and customer
21
39
  */
@@ -30,15 +48,7 @@ export interface ProjectModel {
30
48
  mappings?: Mapping[];
31
49
  rules?: Rule[];
32
50
  masterData?: {
33
- bulkImport: {
34
- type: string;
35
- fileName: string;
36
- status: "inProgress" | "completed" | "error";
37
- startTime: Date;
38
- endTime: Date;
39
- numberOfEntries: number;
40
- classificationType: ClassificationTypes;
41
- }[];
51
+ bulkImport: BulkUploadFileStatistics[];
42
52
  };
43
53
  }
44
54
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.133",
3
+ "version": "1.8.134",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",