@open-tender/types 0.0.92 → 0.0.94

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.
@@ -73,7 +73,7 @@ export interface CartItem {
73
73
  increment: number;
74
74
  max: number;
75
75
  min: number;
76
- points: number | null;
76
+ points: any;
77
77
  upsellItems: number[];
78
78
  similarItems: number[];
79
79
  totalPrice: number;
@@ -173,4 +173,5 @@ export interface CheckoutCheck {
173
173
  timezone: TimezonePython;
174
174
  totals: OrderTotals;
175
175
  gift_cards: Array<Partial<CustomerGiftCard>>;
176
+ errors: any;
176
177
  }
@@ -73,7 +73,7 @@ export interface CartItem {
73
73
  increment: number;
74
74
  max: number;
75
75
  min: number;
76
- points: number | null;
76
+ points: any;
77
77
  upsellItems: number[];
78
78
  similarItems: number[];
79
79
  totalPrice: number;
@@ -173,4 +173,5 @@ export interface CheckoutCheck {
173
173
  timezone: TimezonePython;
174
174
  totals: OrderTotals;
175
175
  gift_cards: Array<Partial<CustomerGiftCard>>;
176
+ errors: any;
176
177
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.0.92",
3
+ "version": "0.0.94",
4
4
  "description": "A library of types for use with Open Tender applications that utilize our cloud-based Order API.",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",