@contrail/entity-types 1.1.55-0 → 1.1.55-2
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/lib/loader.d.ts +3 -1
- package/package.json +1 -1
package/lib/loader.d.ts
CHANGED
|
@@ -50,6 +50,8 @@ export interface LoadResult {
|
|
|
50
50
|
projectItemsLoadResult?: ProjectItemsLoadResult;
|
|
51
51
|
assortmentItemsLoadResult?: AssortmentItemsLoadResult;
|
|
52
52
|
transformErrors: any[];
|
|
53
|
+
transformWarnings?: any[];
|
|
54
|
+
globalIssues?: GeneralIssueDetails[];
|
|
53
55
|
}
|
|
54
56
|
export interface RowLoadError {
|
|
55
57
|
data: any;
|
|
@@ -122,7 +124,7 @@ export interface AssortmentItemsLoadResult extends GeneralLoadResult {
|
|
|
122
124
|
assortmentItemsFailedDelete: RowLoadError[];
|
|
123
125
|
failed: boolean;
|
|
124
126
|
}
|
|
125
|
-
export interface PreprocessingStepStoredResultSummary
|
|
127
|
+
export interface PreprocessingStepStoredResultSummary {
|
|
126
128
|
preprocessingStepName: string;
|
|
127
129
|
fileId: string;
|
|
128
130
|
numberOfWarnings: number;
|