@nuskin/ns-product-lib 2.17.2-cx24-7003.3 → 2.17.2-cx24-7003.4

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuskin/ns-product-lib",
3
- "version": "2.17.2-cx24-7003.3",
3
+ "version": "2.17.2-cx24-7003.4",
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": {
@@ -446,7 +446,7 @@ function mapChildSKU(kitBundleProducts) {
446
446
  return {
447
447
  productId: product.id,
448
448
  skuId: variant.sku,
449
- type: variant.isMandatory ? 'MANDATORY' : 'OPTIONAL',
449
+ type: kitProduct.isMandatory ? 'MANDATORY' : 'OPTIONAL',
450
450
  skuQuantity: variant.availableQuantity,
451
451
  // eslint-disable-next-line max-len
452
452
  availableChannels: Array.isArray(kitBundleProducts.availableChannels) ? kitBundleProducts.availableChannels.join(',') : kitBundleProducts.availableChannels,