@nuskin/ns-product-lib 2.6.0-cx24-3377.1 → 2.6.0-cx24-33721.1

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,11 +1,9 @@
1
- # [2.6.0-cx24-3377.1](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.5.1...v2.6.0-cx24-3377.1) (2023-03-08)
1
+ # [2.6.0-cx24-33721.1](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.5.1...v2.6.0-cx24-33721.1) (2023-03-08)
2
2
 
3
3
 
4
4
  ### New
5
5
 
6
- * Fix multiple variants not loading properly (CX24-3377) ([fb7a856](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/fb7a856a39cb7189862d7b7be51b36b15569189e))
7
- * Fix multiple variants not loading properly (CX24-3377) ([2990272](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/29902726ac21a246638586b5645a070bed1b7fa4))
8
- * Fix multiple variants not loading properly (CX24-3377) ([0cee74b](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/0cee74bc366a9032966d235e54b731d03333f902))
6
+ * Update equinox query for KIT and its mapping ([7df6f96](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/7df6f9671c58eddb57c9acfd9d4b79b8dec6a78e))
9
7
 
10
8
  ## [2.5.1](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.5.0...v2.5.1) (2023-03-07)
11
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuskin/ns-product-lib",
3
- "version": "2.6.0-cx24-3377.1",
3
+ "version": "2.6.0-cx24-33721.1",
4
4
  "description": "This project contains shared Product models and code between the backend and frontend.",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
package/src/product.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
 
3
- const { isTrue } = require("@nuskin/ns-common-lib");
3
+ const { isTrue } = require("@nuskin/ns-common-lib");
4
4
 
5
5
  const ProductUtils = require("./productUtils.js");
6
6
 
@@ -8,7 +8,7 @@ const Agelocme = require("./agelocme.js");
8
8
  const PriceType = require("./models/priceType.js");
9
9
  const ProductStatus = require("./models/productStatus.js");
10
10
 
11
- const Product = function (productData) {
11
+ const Product = function(productData) {
12
12
  this.priceMap = {};
13
13
  this.pvMap = {};
14
14
  this.cvMap = {};
@@ -77,13 +77,13 @@ const Product = function (productData) {
77
77
  this.inventory = "";
78
78
  this.equinoxProductId = "";
79
79
 
80
- this.setMarketAttributes = function (productStatus) {
80
+ this.setMarketAttributes = function(productStatus) {
81
81
  if (productStatus.marketAttributes) {
82
82
  this.marketAttributes = productStatus.marketAttributes;
83
83
  }
84
84
  };
85
85
 
86
- this.getAgelocmeKeyPart = function () {
86
+ this.getAgelocmeKeyPart = function() {
87
87
  let keyPart = null;
88
88
  if (this.agelocme) {
89
89
  keyPart =
@@ -97,27 +97,27 @@ const Product = function (productData) {
97
97
  return keyPart;
98
98
  };
99
99
 
100
- this.getHighlightedSku = function () {
100
+ this.getHighlightedSku = function() {
101
101
  let rv = this.sku;
102
102
  if (this.highlightedSku) rv = this.highlightedSku;
103
103
  return rv;
104
104
  };
105
105
 
106
- this.getProductSearchTitle = function () {
106
+ this.getProductSearchTitle = function() {
107
107
  if (this.agelocme && this.agelocme.label) {
108
108
  return this.agelocme.label;
109
109
  }
110
110
  return this.title;
111
111
  };
112
112
 
113
- this.getProductSearchSku = function () {
113
+ this.getProductSearchSku = function() {
114
114
  if (this.agelocme && this.agelocme.code) {
115
115
  return this.agelocme.code;
116
116
  }
117
117
  return this.getHighlightedSku();
118
118
  };
119
119
 
120
- this.getDescription = function () {
120
+ this.getDescription = function() {
121
121
  let description = this.longDescr;
122
122
  if (!description || description.length === 0) {
123
123
  return this.shortDescr;
@@ -125,7 +125,7 @@ const Product = function (productData) {
125
125
  return description;
126
126
  };
127
127
 
128
- this.setFullImage = function (fullImage) {
128
+ this.setFullImage = function(fullImage) {
129
129
  if (fullImage) {
130
130
  this.fullImage = fullImage.replace("http:", "https:");
131
131
  } else {
@@ -133,19 +133,19 @@ const Product = function (productData) {
133
133
  }
134
134
  };
135
135
 
136
- this.getFullImage = function () {
136
+ this.getFullImage = function() {
137
137
  return this.fullImage ? this.fullImage.replace("http:", "https:") : "";
138
138
  };
139
139
 
140
- this.setProductCarouselImages = function (productCarouselImages) {
140
+ this.setProductCarouselImages = function(productCarouselImages) {
141
141
  this.productCarouselImages = productCarouselImages;
142
142
  };
143
143
 
144
- this.getProductCarouselImages = function () {
144
+ this.getProductCarouselImages = function() {
145
145
  return this.productCarouselImages;
146
146
  };
147
147
 
148
- this.setImageAltText = function (altText) {
148
+ this.setImageAltText = function(altText) {
149
149
  if (altText) {
150
150
  this.imageAltText = altText;
151
151
  } else {
@@ -153,11 +153,11 @@ const Product = function (productData) {
153
153
  }
154
154
  };
155
155
 
156
- this.getImageAltText = function () {
156
+ this.getImageAltText = function() {
157
157
  return this.imageAltText || this.title;
158
158
  };
159
159
 
160
- this.setThumbnail = function (thumbnail) {
160
+ this.setThumbnail = function(thumbnail) {
161
161
  if (thumbnail) {
162
162
  this.thumbnail = thumbnail.replace("http:", "https:");
163
163
  } else {
@@ -165,7 +165,7 @@ const Product = function (productData) {
165
165
  }
166
166
  };
167
167
 
168
- this.setThumbnailFromSku = function (sku) {
168
+ this.setThumbnailFromSku = function(sku) {
169
169
  // WARNING: Base URL will need to be handled in the client (call setBaseUrl)
170
170
  // eslint-disable-next-line max-len
171
171
  // this.thumbnail = `${RunConfigService.getBaseUrl()}/content/products/${ProductUtils.getTokenizedSku(sku)}/jcr:content/fullImage.img.100.100.png`;
@@ -175,43 +175,43 @@ const Product = function (productData) {
175
175
  )}/jcr:content/fullImage.img.100.100.png`;
176
176
  };
177
177
 
178
- this.getThumbnail = function () {
178
+ this.getThumbnail = function() {
179
179
  return this.thumbnail ? this.thumbnail.replace("http:", "https:") : "";
180
180
  };
181
181
 
182
- this.hasAvailableQuantity = function (qty = 1) {
182
+ this.hasAvailableQuantity = function(qty = 1) {
183
183
  return Math.min(this.maxQuantity, this.availableQuantity) >= qty;
184
184
  };
185
185
 
186
- this.setPoints = function (points) {
186
+ this.setPoints = function(points) {
187
187
  this.points = ensureFloatVal(points) || "";
188
188
  };
189
189
 
190
- this.getPointsFixed = function () {
190
+ this.getPointsFixed = function() {
191
191
  return parseFloat(this.points).toFixed(2);
192
192
  };
193
193
 
194
- this.setCv = function (cv) {
194
+ this.setCv = function(cv) {
195
195
  this.cv = ensureFloatVal(cv) || "";
196
196
  };
197
197
 
198
- this.getCvFixed = function () {
198
+ this.getCvFixed = function() {
199
199
  return parseFloat(this.cv).toFixed(2);
200
200
  };
201
201
 
202
- this.setPv = function (pv) {
202
+ this.setPv = function(pv) {
203
203
  this.pv = ensureFloatVal(pv) || "";
204
204
  };
205
205
 
206
- this.getPvFixed = function () {
206
+ this.getPvFixed = function() {
207
207
  return parseFloat(this.pv || 0).toFixed(2);
208
208
  };
209
209
 
210
- this.setPrice = function (price) {
210
+ this.setPrice = function(price) {
211
211
  this.price = ensureFloatVal(price, true);
212
212
  };
213
213
 
214
- this.setFormattedPrice = function (formattedPrice) {
214
+ this.setFormattedPrice = function(formattedPrice) {
215
215
  this.formattedPrice = formattedPrice;
216
216
  };
217
217
 
@@ -220,13 +220,13 @@ const Product = function (productData) {
220
220
  * added to the cart the event pricing needs to be remembered if toggling between
221
221
  * pricetypes with event pricing and pricetype without event pricing
222
222
  */
223
- this.lockEventName = function () {
223
+ this.lockEventName = function() {
224
224
  if (!this.savedEventName && this.eventName) {
225
225
  this.savedEventName = this.eventName;
226
226
  }
227
227
  };
228
228
 
229
- this.setPriceAndPvFromType = function (_priceType, _activeEvents = null, option = {}) {
229
+ this.setPriceAndPvFromType = function(_priceType, _activeEvents = null, option = {}) {
230
230
  // WARNING: priceType needs to be handled client-side
231
231
  // const priceType = ConfigService.getMarketConfig().showWholeSalePricing && !AccountManager.isLoggedIn()
232
232
  // ? PriceType.WWHL
@@ -271,11 +271,11 @@ const Product = function (productData) {
271
271
  return changed;
272
272
  };
273
273
 
274
- this.getPrice = function () {
274
+ this.getPrice = function() {
275
275
  return this.price ? this.price : 0;
276
276
  };
277
277
 
278
- this.getPriceFixed = function () {
278
+ this.getPriceFixed = function() {
279
279
  if (typeof this.price === "number") {
280
280
  return parseFloat(this.price.toFixed(2));
281
281
  } else {
@@ -283,15 +283,15 @@ const Product = function (productData) {
283
283
  }
284
284
  };
285
285
 
286
- this.getOriginalPrice = function () {
286
+ this.getOriginalPrice = function() {
287
287
  return this.priceType ? this.priceMap[this.priceType] : null;
288
288
  };
289
289
 
290
- this.addPricing = function (type, price) {
290
+ this.addPricing = function(type, price) {
291
291
  this.priceMap[type] = price;
292
292
  };
293
293
 
294
- this.addPricingFromStatus = function (productStatus, priceType, option = {}) {
294
+ this.addPricingFromStatus = function(productStatus, priceType, option ={}) {
295
295
  let modified = false;
296
296
 
297
297
  if (!priceType) {
@@ -326,7 +326,7 @@ const Product = function (productData) {
326
326
  }, this);
327
327
  }
328
328
  this.orderTypes = ProductUtils.mergeOrderTypes(this.orderTypes, productStatus.orderType);
329
- if (productStatus.childSkus) {
329
+ if(productStatus.childSkus) {
330
330
  this.childSkus = productStatus.childSkus;
331
331
  }
332
332
  this.setPriceAndPvFromType(priceType, null, option);
@@ -346,15 +346,15 @@ const Product = function (productData) {
346
346
  return modified;
347
347
  };
348
348
 
349
- this.addPvWithType = function (type, pv) {
349
+ this.addPvWithType = function(type, pv) {
350
350
  this.pvMap[type] = pv;
351
351
  };
352
352
 
353
- this.addCvWithType = function (type, cv) {
353
+ this.addCvWithType = function(type, cv) {
354
354
  this.cvMap[type] = cv;
355
355
  };
356
356
 
357
- this.getPricing = function (type) {
357
+ this.getPricing = function(type) {
358
358
  let retVal = null;
359
359
 
360
360
  if (type) {
@@ -381,7 +381,7 @@ const Product = function (productData) {
381
381
  return eventPriceTypes;
382
382
  };
383
383
 
384
- this.getPvWithType = function (type) {
384
+ this.getPvWithType = function(type) {
385
385
  let rv = this.pvMap[type];
386
386
  if (rv == null) {
387
387
  // Assumption: we always have WWHL from the service
@@ -391,7 +391,7 @@ const Product = function (productData) {
391
391
  return rv;
392
392
  };
393
393
 
394
- this.getCvWithType = function (type) {
394
+ this.getCvWithType = function(type) {
395
395
  let rv = this.cvMap[type];
396
396
  if (rv == null) {
397
397
  rv = this.cvMap[PriceType.WWHL];
@@ -399,80 +399,77 @@ const Product = function (productData) {
399
399
  return rv;
400
400
  };
401
401
 
402
- this.hasAdrOption = function () {
402
+ this.hasAdrOption = function() {
403
403
  return this.orderTypes["adr"];
404
404
  };
405
405
 
406
- this.isAdrOnly = function () {
406
+ this.isAdrOnly = function() {
407
407
  return this.hasAdrOption() && !this.hasOrderOption();
408
408
  };
409
409
 
410
- this.hasMultipleOrderTypes = function () {
410
+ this.hasMultipleOrderTypes = function() {
411
411
  return this.hasOrderOption() && this.hasAdrOption();
412
412
  };
413
413
 
414
- this.hasOrderOption = function () {
414
+ this.hasOrderOption = function() {
415
415
  return this.orderTypes["order"];
416
416
  };
417
417
 
418
- this.isDistributor = function () {
418
+ this.isDistributor = function() {
419
419
  return this.custTypes.includes("10");
420
420
  };
421
421
 
422
- this.isCustomer = function () {
422
+ this.isCustomer = function() {
423
423
  return this.custTypes.includes("20");
424
424
  };
425
425
 
426
- this.isPreferredCustomer = function () {
426
+ this.isPreferredCustomer = function() {
427
427
  return this.custTypes.includes("30");
428
428
  };
429
429
 
430
- this.isBase = function (option = {}) {
431
- if (option && option.isEquinoxEnabled) {
432
- return !!this.variants;
433
- }
430
+ this.isBase = function() {
434
431
  return this.sku.substring(2, 4) === "55";
435
432
  };
436
433
 
437
- this.isVariant = function () {
434
+ this.isVariant = function() {
438
435
  return this.baseSku.length > 0 && this.variantSkus().length === 0;
439
436
  };
440
437
 
441
- this.setVariant = function (variantProduct) {
438
+ this.setVariant = function(variantProduct) {
442
439
  if (variantProduct && variantProduct.sku) {
443
440
  this.variants[variantProduct.sku] = variantProduct;
444
441
  }
445
442
  };
446
443
 
447
- this.getVariant = function (sku) {
444
+ this.getVariant = function(sku) {
448
445
  return this.variants[sku];
449
446
  };
450
447
 
451
- this.variantSkus = function () {
448
+ this.variantSkus = function() {
452
449
  return Object.keys(this.variants);
453
450
  };
454
451
 
455
- this.getVariantsList = function () {
452
+ this.getVariantsList = function() {
456
453
  return Object.values(this.variants);
457
454
  };
458
455
 
459
- this.getMinPrice = function () {
456
+ this.getMinPrice = function() {
460
457
  return this.priceMap[`min-${this.priceType}`];
461
458
  };
462
459
 
463
- this.getMaxPrice = function () {
460
+ this.getMaxPrice = function() {
464
461
  return this.priceMap[`max-${this.priceType}`];
465
462
  };
466
463
 
467
- this.getMinPv = function () {
464
+ this.getMinPv = function() {
468
465
  return this.pvMap[`min-${this.priceType}`];
469
466
  };
470
467
 
471
- this.getMaxPv = function () {
468
+ this.getMaxPv = function() {
472
469
  return this.pvMap[`max-${this.priceType}`];
473
470
  };
474
471
 
475
- this.toJSON = function () {
472
+ this.toJSON = function() {
476
473
  let retData = {};
477
474
  retData.sku = this.sku;
478
475
  retData.globalProductID = this.globalProductID;
@@ -541,15 +538,15 @@ const Product = function (productData) {
541
538
  return retData;
542
539
  };
543
540
 
544
- this.setMeCommerceProductData = function (/*productData*/) {
541
+ this.setMeCommerceProductData = function(/*productData*/) {
545
542
  console.error("setMeCommerceProductData is deprecated!");
546
543
  };
547
544
 
548
- this.setBaseUrl = function (baseUrl, option = {}) {
545
+ this.setBaseUrl = function(baseUrl) {
549
546
  this.thumbnail = ProductUtils.applyBaseUrl(this.thumbnail, baseUrl);
550
547
  this.fullImage = ProductUtils.applyBaseUrl(this.fullImage, baseUrl);
551
548
 
552
- if (this.isBase(option)) {
549
+ if (this.isBase()) {
553
550
  for (const variantSku in this.variants) {
554
551
  const variant = this.variants[variantSku];
555
552
  variant.setBaseUrl(baseUrl);
@@ -557,7 +554,7 @@ const Product = function (productData) {
557
554
  }
558
555
  };
559
556
 
560
- this.setProductData = function (productData) {
557
+ this.setProductData = function(productData) {
561
558
  let data;
562
559
 
563
560
  if (productData) {
@@ -665,7 +662,7 @@ const Product = function (productData) {
665
662
  ? data.pvMap
666
663
  : this.pvMap;
667
664
  this.orderTypes = ProductUtils.mergeOrderTypes(this.orderTypes, data.orderTypes);
668
- if (data.childSkus) {
665
+ if(data.childSkus) {
669
666
  this.childSkus = data.childSkus;
670
667
  }
671
668
  this.custTypes = data.custTypes || [];
@@ -681,7 +678,7 @@ const Product = function (productData) {
681
678
  }
682
679
  };
683
680
 
684
- this.isEmpty = function () {
681
+ this.isEmpty = function() {
685
682
  return (
686
683
  isFieldEmpty(this.sku) &&
687
684
  isFieldEmpty(this.title) &&
@@ -27,11 +27,23 @@ const ProductData = {
27
27
  },
28
28
 
29
29
  getProductFromEquinox: async function (skus, locale, config) {
30
- const filter = `{"filters": [{"field": "index_key_skuId","operation": "IN", "value": "${skus.toString()}"}]}`;
30
+
31
+ let skuFilter = [];
32
+
33
+ if(Array.isArray(skus)) {
34
+ skus.forEach((sku) => {
35
+ skuFilter.push(`index_key_productId="${sku}" OR index_key_skuId="${sku}"`)
36
+ })
37
+ } else {
38
+ //all featured products
39
+ skuFilter.push(`index_key_productId="${skus}" OR index_key_skuId="${skus}"`)
40
+ }
41
+
42
+ const filter = skuFilter.join(" OR ")
31
43
  axios.defaults.withCredentials = true;
32
44
 
33
45
  const url = `${config.API_Base_URLs}/orchestrationservices/storefront/catalogs/search/`;
34
- const href = `${url}?filter=${encodeURI(filter)}`;
46
+ const href = `${url}?filter='\\\\''${encodeURI(filter)}'\\''`;
35
47
  const response = await axios.request({
36
48
  method: 'get',
37
49
  url: href,
@@ -99,7 +111,7 @@ const ProductData = {
99
111
  eqProductVariantMapper: function (eqVariant) {
100
112
 
101
113
  let imageURL = eqVariant.properties.imageURL;
102
- const regex = /\d+.\d+/
114
+ const regex = /\d+\.\d+/
103
115
  let thumbnailImage = ''
104
116
 
105
117
  if (imageURL.includes('contentstack')) {
@@ -318,8 +330,9 @@ const ProductData = {
318
330
  let variants = {};
319
331
 
320
332
  let prodArr = productDataResponse.map((data) => {
321
- let imageURL = data.sku[count].properties.imageURL;
322
- const regex = /\d+.\d+/
333
+ let product = (data.type && data.type === "kit") ? data : data.sku[count];
334
+ let imageURL = product.properties.imageURL;
335
+ const regex = /\d+\.\d+/
323
336
  let thumbnailImage = ''
324
337
 
325
338
  if (imageURL.includes('contentstack')) {
@@ -341,15 +354,15 @@ const ProductData = {
341
354
  eventLabels,
342
355
  computedPrice,
343
356
  defaultProductPrice
344
- } = this.getEqProductPromotions(data.sku[count]);
345
- const productPrice = eventName ? defaultProductPrice : data.sku[count].priceFacets["Regular Price"];
346
- const discountedPrice = eventName ? computedPrice : data.sku[count].priceFacets["Regular Price"];
357
+ } = this.getEqProductPromotions(product);
358
+ const productPrice = eventName ? defaultProductPrice : product.priceFacets["Regular Price"];
359
+ const discountedPrice = eventName ? computedPrice : product.priceFacets["Regular Price"];
347
360
 
348
361
  prod = {
349
- "sku": data.sku[count].identifier,
362
+ "sku": product.identifier,
350
363
  "globalProductID": data.identifier,
351
364
  "title": data.properties.name,
352
- "country": data.sku[count].properties.market,
365
+ "country": product.properties.market,
353
366
  "language": "en",
354
367
  "shortDescr": data.properties.description,
355
368
  "longDescr": data.properties.productDetailsDescription,
@@ -366,7 +379,7 @@ const ProductData = {
366
379
  "ingredients": data.properties.ingredients,
367
380
  "benefits": data.properties.benefits,
368
381
  "usage": data.properties.usage,
369
- "resources": data.sku[count].properties.resources,
382
+ "resources": product.properties.resources,
370
383
  "videos": "",
371
384
  "movie": "",
372
385
  "youtube": "",
@@ -377,48 +390,48 @@ const ProductData = {
377
390
  }
378
391
  ],
379
392
  "scanQualified": data.properties.scanQualifiedCount,
380
- "availableQuantity": data.sku[count].inventoryProperties.atpQty,
393
+ "availableQuantity": (product.inventoryProperties) ? product.inventoryProperties.atpQty : 0,
381
394
  "maxQuantity": 999,
382
395
  "points": "",
383
- "cv": (data.sku[count].priceFacets.CV) ? data.sku[count].priceFacets.CV : '',
384
- "pv": data.sku[count].priceFacets.PV,
396
+ "cv": (product.priceFacets.CV) ? product.priceFacets.CV : '',
397
+ "pv": product.priceFacets.PV,
385
398
  "priceType": "WRTL",
386
399
  "price": discountedPrice,
387
400
  "priceMap": {
388
401
  "WRTL": productPrice,
389
- "WADW-WRTL": data.sku[count].priceFacets["Regular Price"],
390
- "WADR": data.sku[count].priceFacets["Regular Price"],
391
- "RTL": data.sku[count].priceFacets["Regular Price"],
392
- "WADW": data.sku[count].priceFacets["Wholesale Price"],
393
- "WHL": data.sku[count].priceFacets["Wholesale Price"],
394
- "WWHL": data.sku[count].priceFacets["Wholesale Price"]
402
+ "WADW-WRTL": product.priceFacets["Regular Price"],
403
+ "WADR": product.priceFacets["Regular Price"],
404
+ "RTL": product.priceFacets["Regular Price"],
405
+ "WADW": product.priceFacets["Wholesale Price"],
406
+ "WHL": product.priceFacets["Wholesale Price"],
407
+ "WWHL": product.priceFacets["Wholesale Price"]
395
408
  },
396
409
  "cvMap": {
397
- "WWHL": (data.sku[count].priceFacets.CV) ? data.sku[count].priceFacets.CV : '',
398
- "WADW": (data.sku[count].priceFacets.CV) ? data.sku[count].priceFacets.CV : '',
399
- "WHL": (data.sku[count].priceFacets.CV) ? data.sku[count].priceFacets.CV : ''
410
+ "WWHL": (product.priceFacets.CV) ? product.priceFacets.CV : '',
411
+ "WADW": (product.priceFacets.CV) ? product.priceFacets.CV : '',
412
+ "WHL": (product.priceFacets.CV) ? product.priceFacets.CV : ''
400
413
  },
401
414
  "pvMap": {
402
- "WWHL": data.sku[count].priceFacets.PV,
403
- "WADW": data.sku[count].priceFacets.PV,
404
- "WHL": data.sku[count].priceFacets.PV
415
+ "WWHL": product.priceFacets.PV,
416
+ "WADW": product.priceFacets.PV,
417
+ "WHL": product.priceFacets.PV
405
418
  },
406
- "orderTypes": this._setOrderType(data.sku[count].properties),
419
+ "orderTypes": this._setOrderType(product.properties),
407
420
  "childSkus": [],
408
- "custTypes": this.switchCustType(data.sku[count].properties.customerTypes),
421
+ "custTypes": this.switchCustType(product.properties.customerTypes),
409
422
  "division": data.properties.division,
410
423
  "backOrderDate": null,
411
424
  "locallyProduced": false,
412
425
  "agelocme": null,
413
426
  "count": "",
414
427
  "flavor": "",
415
- "size": data.sku[count].properties.size,
428
+ "size": product.properties.size,
416
429
  "shade": "",
417
- "status": this.switchStatusFromEquinox(data.sku[count].properties.productStatus),
430
+ "status": this.switchStatusFromEquinox(product.properties.productStatus),
418
431
  "variantType": "Other",
419
- "variantDropdownLabel": data.sku[count].properties.variantLabel || "",
432
+ "variantDropdownLabel": product.properties.variantLabel || "",
420
433
  "variantDropdownPlaceholder": "Select Type",
421
- "variantsLabel": data.sku[count].properties.variantLabel || "",
434
+ "variantsLabel": product.properties.variantLabel || "",
422
435
  "groupOffer": false,
423
436
  "personalOffer": false,
424
437
  "savedEventName": eventName,
@@ -428,7 +441,7 @@ const ProductData = {
428
441
  "nettoWeight": "",
429
442
  "variants": variants,
430
443
  "searchScore": 0,
431
- "isExclusive": data.sku[count].properties.isExclusive || false,
444
+ "isExclusive": product.properties.isExclusive || false,
432
445
  "marketAttributes": {
433
446
  "discount": true,
434
447
  "redeem": true,
@@ -436,7 +449,7 @@ const ProductData = {
436
449
  },
437
450
  "restrictedMarkets": [],
438
451
  "addOns": [],
439
- "inventory": data.sku[count].inventory || "", //inventory label
452
+ "inventory": product.inventory || "", //inventory label
440
453
  "equinoxProductId": data.identifier
441
454
  };
442
455
  let newProduct = new Product(prod);