@softwear/latestcollectioncore 1.0.75 → 1.0.76

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/dist/types.d.ts CHANGED
@@ -162,6 +162,7 @@ interface ColorI {
162
162
  interface ProductI {
163
163
  ATTRIBUTES: object;
164
164
  COLORS: Array<ColorI>;
165
+ DUPLICATES?: unknown;
165
166
  IMAGES?: unknown;
166
167
  INDEX: object;
167
168
  MATRIX?: MatrixI;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softwear/latestcollectioncore",
3
- "version": "1.0.75",
3
+ "version": "1.0.76",
4
4
  "description": "Core functions for LatestCollections applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/types.ts CHANGED
@@ -174,6 +174,7 @@ interface ColorI {
174
174
  interface ProductI {
175
175
  ATTRIBUTES: object
176
176
  COLORS: Array<ColorI>
177
+ DUPLICATES?: unknown
177
178
  IMAGES?: unknown
178
179
  INDEX: object
179
180
  MATRIX?: MatrixI