@softwear/latestcollectioncore 1.0.166 → 1.0.168

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/consts.d.ts CHANGED
@@ -22,5 +22,5 @@ declare const SUBSCRIPTION_LIMITS: {
22
22
  };
23
23
  };
24
24
  declare const latestCollectionGLN: "8719332204995";
25
- declare const DATA_PROVIDERS: "euretco,fashionunited,fashioncloud,linolux,barcodebot,triumph_it";
25
+ declare const DATA_PROVIDERS: "fashionunited,fashioncloud,linolux,barcodebot,triumph_it";
26
26
  export { MAPPING_CATEGORIES, SUBSCRIPTION_LIMITS, DATA_PROVIDERS, latestCollectionGLN };
package/dist/consts.js CHANGED
@@ -42,5 +42,5 @@ const SUBSCRIPTION_LIMITS = {
42
42
  exports.SUBSCRIPTION_LIMITS = SUBSCRIPTION_LIMITS;
43
43
  const latestCollectionGLN = '8719332204995';
44
44
  exports.latestCollectionGLN = latestCollectionGLN;
45
- const DATA_PROVIDERS = 'euretco,fashionunited,fashioncloud,linolux,barcodebot,triumph_it';
45
+ const DATA_PROVIDERS = 'fashionunited,fashioncloud,linolux,barcodebot,triumph_it';
46
46
  exports.DATA_PROVIDERS = DATA_PROVIDERS;
package/dist/types.d.ts CHANGED
@@ -180,6 +180,7 @@ interface ProductI {
180
180
  MATRIX?: MatrixI;
181
181
  SIZES: Array<string>;
182
182
  SKUS: Array<MarkedSkuI>;
183
+ PRODUCT?: string;
183
184
  active: boolean;
184
185
  articleCode: string;
185
186
  articleCodeSupplier?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softwear/latestcollectioncore",
3
- "version": "1.0.166",
3
+ "version": "1.0.168",
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 CHANGED
@@ -36,5 +36,5 @@ const SUBSCRIPTION_LIMITS = {
36
36
  },
37
37
  } as const
38
38
  const latestCollectionGLN = '8719332204995' as const
39
- const DATA_PROVIDERS = 'euretco,fashionunited,fashioncloud,linolux,barcodebot,triumph_it' as const
39
+ const DATA_PROVIDERS = 'fashionunited,fashioncloud,linolux,barcodebot,triumph_it' as const
40
40
  export { MAPPING_CATEGORIES, SUBSCRIPTION_LIMITS, DATA_PROVIDERS, latestCollectionGLN }
package/src/types.ts CHANGED
@@ -193,6 +193,7 @@ interface ProductI {
193
193
  MATRIX?: MatrixI
194
194
  SIZES: Array<string>
195
195
  SKUS: Array<MarkedSkuI>
196
+ PRODUCT?: string
196
197
  active: boolean
197
198
  articleCode: string
198
199
  articleCodeSupplier?: string