@softwear/latestcollectioncore 1.0.165 → 1.0.167

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
@@ -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;
@@ -230,6 +231,7 @@ interface BrandSettingI {
230
231
  propertyMapping?: PropertyMappingI[];
231
232
  fashionCloudId?: string;
232
233
  sizeSystemPrefix?: string;
234
+ supplier?: string;
233
235
  }
234
236
  declare enum mappingStrategyE {
235
237
  MAP = "map",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softwear/latestcollectioncore",
3
- "version": "1.0.165",
3
+ "version": "1.0.167",
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
@@ -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
@@ -244,6 +245,7 @@ interface BrandSettingI {
244
245
  propertyMapping?: PropertyMappingI[]
245
246
  fashionCloudId?: string
246
247
  sizeSystemPrefix?: string
248
+ supplier?: string
247
249
  }
248
250
 
249
251
  enum mappingStrategyE {