@coveo/relay-event-types 6.26.0 → 6.27.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coveo/relay-event-types",
3
- "version": "6.26.0",
3
+ "version": "6.27.0",
4
4
  "description": "Typescript types for Coveo Events, intended to be used with the Relay package.",
5
5
  "types": "./relay-event-types.d.ts",
6
6
  "author": "Coveo",
@@ -129,6 +129,9 @@ interface Product {
129
129
 
130
130
  interface ProductQuantity {
131
131
  product: Product;
132
+ /**
133
+ * Product quantity. Can be fractional but must be greater than 0.
134
+ */
132
135
  quantity: number;
133
136
  }
134
137