@softwear/latestcollectioncore 1.0.6 → 1.0.7

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.
@@ -0,0 +1,2 @@
1
+ declare const MAPPING_CATEGORIES: readonly ["ERM", "ColorCode", "ColorDescription", "Collection", "ProductGroup", "Size", "SubSize", "CustomSize"];
2
+ export { MAPPING_CATEGORIES };
package/dist/consts.js ADDED
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MAPPING_CATEGORIES = void 0;
4
+ const MAPPING_CATEGORIES = ["ERM", "ColorCode", "ColorDescription", "Collection", "ProductGroup", "Size", "SubSize", "CustomSize"];
5
+ exports.MAPPING_CATEGORIES = MAPPING_CATEGORIES;
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export { default as ean13 } from "./ean13";
2
2
  export { default as hashBrand } from "./hashBrand";
3
3
  export * from "./types";
4
+ export * from "./consts";
package/dist/index.js CHANGED
@@ -23,3 +23,4 @@ Object.defineProperty(exports, "ean13", { enumerable: true, get: function () { r
23
23
  var hashBrand_1 = require("./hashBrand");
24
24
  Object.defineProperty(exports, "hashBrand", { enumerable: true, get: function () { return __importDefault(hashBrand_1).default; } });
25
25
  __exportStar(require("./types"), exports);
26
+ __exportStar(require("./consts"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softwear/latestcollectioncore",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Core functions for LatestCollections applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/consts.ts ADDED
@@ -0,0 +1,3 @@
1
+ const MAPPING_CATEGORIES = ["ERM", "ColorCode", "ColorDescription", "Collection", "ProductGroup", "Size", "SubSize", "CustomSize"] as const
2
+
3
+ export { MAPPING_CATEGORIES }
package/src/index.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export { default as ean13 } from "./ean13"
2
2
  export { default as hashBrand } from "./hashBrand"
3
3
  export * from "./types"
4
+ export * from "./consts"