@nuskin/ns-product-lib 2.17.2-cx24-7003.2 → 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 +1 -1
- package/src/graph-ql/product.js +2 -2
package/package.json
CHANGED
package/src/graph-ql/product.js
CHANGED
@@ -446,7 +446,7 @@ function mapChildSKU(kitBundleProducts) {
|
|
446
446
|
return {
|
447
447
|
productId: product.id,
|
448
448
|
skuId: variant.sku,
|
449
|
-
type: 'MANDATORY',
|
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,
|
@@ -462,7 +462,7 @@ function mapChildSKU(kitBundleProducts) {
|
|
462
462
|
return {
|
463
463
|
productId: product.id,
|
464
464
|
skuId: defaultVariant.sku,
|
465
|
-
type: 'MANDATORY',
|
465
|
+
type: kitProduct.isMandatory ? 'MANDATORY' : 'OPTIONAL',
|
466
466
|
skuQuantity: kitProduct.quantity,
|
467
467
|
availableChannels: Array.isArray(kitBundleProducts.availableChannels) ? kitBundleProducts.availableChannels.join(',') : kitBundleProducts.availableChannels,
|
468
468
|
inventory: {
|