@nuskin/ns-product-lib 2.17.1-cx24-67682.2 → 2.17.1-cx24-67682.3
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 +3 -3
package/package.json
CHANGED
package/src/graph-ql/product.js
CHANGED
@@ -441,7 +441,7 @@ function mapChildSKU(kitBundleProducts) {
|
|
441
441
|
return kitBundleProducts.kitProducts.map((kitProduct) => {
|
442
442
|
const { product } = kitProduct;
|
443
443
|
if (product.variants.length > 1) {
|
444
|
-
|
444
|
+
return product.variants.map((variant) => {
|
445
445
|
return {
|
446
446
|
productId: product.id,
|
447
447
|
skuId: variant.sku,
|
@@ -455,7 +455,7 @@ function mapChildSKU(kitBundleProducts) {
|
|
455
455
|
backOrderedQty: variant.availableQuantity
|
456
456
|
}
|
457
457
|
}
|
458
|
-
}
|
458
|
+
})
|
459
459
|
} else {
|
460
460
|
const defaultVariant = product.variants[0];
|
461
461
|
return {
|
@@ -472,7 +472,7 @@ function mapChildSKU(kitBundleProducts) {
|
|
472
472
|
}
|
473
473
|
|
474
474
|
}
|
475
|
-
});
|
475
|
+
}).flat();
|
476
476
|
}
|
477
477
|
|
478
478
|
/**
|