@contrail/entity-types 1.1.58-2 → 1.1.58-4
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 +1 -4
- package/lib/loader.js +0 -3
- package/package.json +1 -1
package/lib/loader.d.ts
CHANGED
|
@@ -205,8 +205,5 @@ export declare enum LoaderFailureArea {
|
|
|
205
205
|
export declare enum EntityType {
|
|
206
206
|
COLOR = "color",
|
|
207
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"
|
|
208
|
+
ITEM = "item"
|
|
212
209
|
}
|
package/lib/loader.js
CHANGED
|
@@ -107,7 +107,4 @@ var EntityType;
|
|
|
107
107
|
EntityType["COLOR"] = "color";
|
|
108
108
|
EntityType["CUSTOM_ENTITY"] = "custom-entity";
|
|
109
109
|
EntityType["ITEM"] = "item";
|
|
110
|
-
EntityType["PROJECT_ITEM"] = "project-item";
|
|
111
|
-
EntityType["ASSORTMENT_ITEM"] = "assortment-item";
|
|
112
|
-
EntityType["SIZE_RANGE_TEMPLATE"] = "size-range-template";
|
|
113
110
|
})(EntityType = exports.EntityType || (exports.EntityType = {}));
|