@contrail/entity-types 1.1.55-10 → 1.1.55-11
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 +2 -10
- package/lib/loader.js +1 -0
- package/package.json +1 -1
package/lib/loader.d.ts
CHANGED
|
@@ -53,16 +53,8 @@ export interface LoadResult {
|
|
|
53
53
|
transformWarnings?: any[];
|
|
54
54
|
generalErrors?: GeneralIssueDetails[];
|
|
55
55
|
generalWarnings?: GeneralIssueDetails[];
|
|
56
|
-
failureArea?: LoaderFailureArea;
|
|
57
|
-
preprocessingStepResults: PreProcessingStep[];
|
|
58
56
|
systemErrors: GeneralIssueDetails[];
|
|
59
|
-
|
|
60
|
-
}
|
|
61
|
-
export interface PreProcessingStep {
|
|
62
|
-
preprocessingStepName: string;
|
|
63
|
-
numberOfWarnings: Number;
|
|
64
|
-
fileId: string;
|
|
65
|
-
numberOfErrors: Number;
|
|
57
|
+
failureArea?: LoaderFailureArea;
|
|
66
58
|
}
|
|
67
59
|
export interface RowLoadError {
|
|
68
60
|
data: any;
|
|
@@ -95,7 +87,6 @@ export interface ColumnIssueDetails {
|
|
|
95
87
|
export interface GeneralIssueDetails {
|
|
96
88
|
message: string;
|
|
97
89
|
issueType: IssueType;
|
|
98
|
-
issueKey?: string;
|
|
99
90
|
}
|
|
100
91
|
export interface GeneralLoadResult {
|
|
101
92
|
errors?: ProcessingIssues[];
|
|
@@ -182,6 +173,7 @@ export declare class LoaderProcess implements OrgManagedEntity {
|
|
|
182
173
|
messageGroupId?: string;
|
|
183
174
|
}
|
|
184
175
|
export declare enum IssueType {
|
|
176
|
+
CONFIG = "CONFIG",
|
|
185
177
|
INVALID_DATA = "INVALID_DATA",
|
|
186
178
|
MISSING_DATA = "MISSING_DATA",
|
|
187
179
|
DUPLICATE_FEDERATED_ID = "DUPLICATE_FEDERATED_ID",
|
package/lib/loader.js
CHANGED
|
@@ -85,6 +85,7 @@ class LoaderProcess {
|
|
|
85
85
|
exports.LoaderProcess = LoaderProcess;
|
|
86
86
|
var IssueType;
|
|
87
87
|
(function (IssueType) {
|
|
88
|
+
IssueType["CONFIG"] = "CONFIG";
|
|
88
89
|
IssueType["INVALID_DATA"] = "INVALID_DATA";
|
|
89
90
|
IssueType["MISSING_DATA"] = "MISSING_DATA";
|
|
90
91
|
IssueType["DUPLICATE_FEDERATED_ID"] = "DUPLICATE_FEDERATED_ID";
|