@contrail/entity-types 1.1.57 → 1.1.58-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 +6 -1
- package/lib/loader.js +5 -0
- package/lib/property-type.d.ts +2 -1
- package/lib/property-type.js +1 -0
- package/package.json +1 -1
package/lib/loader.d.ts
CHANGED
|
@@ -184,6 +184,7 @@ export declare class LoaderProcess implements OrgManagedEntity {
|
|
|
184
184
|
hasErrors?: boolean;
|
|
185
185
|
parallelWorkerCount?: number;
|
|
186
186
|
messageGroupId?: string;
|
|
187
|
+
isPartialFailure?: boolean;
|
|
187
188
|
}
|
|
188
189
|
export declare enum IssueType {
|
|
189
190
|
CONFIG = "CONFIG",
|
|
@@ -203,5 +204,9 @@ export declare enum LoaderFailureArea {
|
|
|
203
204
|
}
|
|
204
205
|
export declare enum EntityType {
|
|
205
206
|
COLOR = "color",
|
|
206
|
-
CUSTOM_ENTITY = "custom-entity"
|
|
207
|
+
CUSTOM_ENTITY = "custom-entity",
|
|
208
|
+
ITEM = "item",
|
|
209
|
+
PROJECT_ITEM = "project-item",
|
|
210
|
+
ASSORTMENT_ITEM = "assortment-item",
|
|
211
|
+
SIZE_RANGE_TEMPLATE = "size-range-template"
|
|
207
212
|
}
|
package/lib/loader.js
CHANGED
|
@@ -81,6 +81,7 @@ class LoaderProcess {
|
|
|
81
81
|
hasErrors;
|
|
82
82
|
parallelWorkerCount;
|
|
83
83
|
messageGroupId;
|
|
84
|
+
isPartialFailure;
|
|
84
85
|
}
|
|
85
86
|
exports.LoaderProcess = LoaderProcess;
|
|
86
87
|
var IssueType;
|
|
@@ -105,4 +106,8 @@ var EntityType;
|
|
|
105
106
|
(function (EntityType) {
|
|
106
107
|
EntityType["COLOR"] = "color";
|
|
107
108
|
EntityType["CUSTOM_ENTITY"] = "custom-entity";
|
|
109
|
+
EntityType["ITEM"] = "item";
|
|
110
|
+
EntityType["PROJECT_ITEM"] = "project-item";
|
|
111
|
+
EntityType["ASSORTMENT_ITEM"] = "assortment-item";
|
|
112
|
+
EntityType["SIZE_RANGE_TEMPLATE"] = "size-range-template";
|
|
108
113
|
})(EntityType = exports.EntityType || (exports.EntityType = {}));
|
package/lib/property-type.d.ts
CHANGED
package/lib/property-type.js
CHANGED