@magento/peregrine 12.1.0-alpha.1 → 12.1.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,7 +6,7 @@ import { useCartContext } from '../../context/cart';
6
6
  import operations from './addToCart.gql';
7
7
 
8
8
  /**
9
- * @param {Number} props.item.id - id of item
9
+ * @param {String} props.item.uid - uid of item
10
10
  * @param {String} props.item.name - name of item
11
11
  * @param {String} props.item.stock_status - stock status of item
12
12
  * @param {String} props.item.type_id - product type
@@ -42,6 +42,7 @@ export const PRODUCT_SEARCH = gql`
42
42
  ) {
43
43
  items {
44
44
  id
45
+ uid
45
46
  name
46
47
  price_range {
47
48
  maximum_price {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magento/peregrine",
3
- "version": "12.1.0-alpha.1",
3
+ "version": "12.1.0-beta.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },