@softwear/latestcollectioncore 1.0.167 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softwear/latestcollectioncore",
3
- "version": "1.0.167",
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 }