@constructor-io/constructorio-node 5.3.0 → 5.3.2

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": "@constructor-io/constructorio-node",
3
- "version": "5.3.0",
3
+ "version": "5.3.2",
4
4
  "description": "Constructor.io Node.js client",
5
5
  "main": "src/constructorio.js",
6
6
  "types": "src/types/constructorio.d.ts",
@@ -338,9 +338,9 @@ export interface ItemTracked {
338
338
  itemName?: string;
339
339
  itemId?: string;
340
340
  variationId?: string;
341
+ price?: number;
341
342
  }
342
343
 
343
344
  export interface ItemTrackedPurchased extends ItemTracked {
344
- price: number,
345
345
  count: number
346
346
  }