@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.
- package/chargehive.d.ts +3 -3
- 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
|
|
250
|
+
quantity?: number;
|
|
251
251
|
unitPrice: number;
|
|
252
|
-
taxAmount
|
|
253
|
-
discountAmount
|
|
252
|
+
taxAmount?: number;
|
|
253
|
+
discountAmount?: number;
|
|
254
254
|
name: string;
|
|
255
255
|
description: string;
|
|
256
256
|
productCode: string;
|
package/package.json
CHANGED