@nuskin/ns-product-lib 2.6.0-cx24-3464.11 → 2.6.0-cx24-3464.12

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [2.6.0-cx24-3464.12](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.6.0-cx24-3464.11...v2.6.0-cx24-3464.12) (2023-03-11)
2
+
3
+
4
+ ### Update
5
+
6
+ * get child skus to be used for add-to-cart #CX24-3464 ([3ecdf5f](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/3ecdf5f9722f78256a1e5f48e368fcee3662856d)), closes [#CX24-3464](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/issues/CX24-3464)
7
+
1
8
  # [2.6.0-cx24-3464.11](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.6.0-cx24-3464.10...v2.6.0-cx24-3464.11) (2023-03-10)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuskin/ns-product-lib",
3
- "version": "2.6.0-cx24-3464.11",
3
+ "version": "2.6.0-cx24-3464.12",
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": {
@@ -534,7 +534,10 @@ const ProductData = {
534
534
  type: 'MANDATORY',
535
535
  skuQuantity: kit.qty,
536
536
  availableChannels: sku.properties.availableChannels,
537
- backOrdered: sku.inventoryProperties.backOrdered
537
+ inventory: {
538
+ atpQty: sku.inventoryProperties.atpQty,
539
+ backOrdered: sku.inventoryProperties.backOrdered
540
+ }
538
541
  }
539
542
  },
540
543