@chargehive/types 2.2.0 → 2.2.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.
Files changed (2) hide show
  1. package/chargehive.d.ts +3 -3
  2. package/package.json +1 -1
package/chargehive.d.ts CHANGED
@@ -247,10 +247,10 @@ export interface OrderItem
247
247
  productType: number;
248
248
  skuType: number;
249
249
  deliveryType: number;
250
- quantity: number;
250
+ quantity?: number;
251
251
  unitPrice: number;
252
- taxAmount: number;
253
- discountAmount: number;
252
+ taxAmount?: number;
253
+ discountAmount?: number;
254
254
  name: string;
255
255
  description: string;
256
256
  productCode: string;
package/package.json CHANGED
@@ -9,5 +9,5 @@
9
9
  "typescript": "^3 || ^4",
10
10
  "@pci-bridge/types": "*"
11
11
  },
12
- "version": "2.2.0"
12
+ "version": "2.2.2"
13
13
  }