digicust_types 1.8.133 → 1.8.134
Sign up to get free protection for your applications and to get access to all the features.
@@ -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
|
/**
|