@orderingstack/ordering-types 1.9.1 → 1.9.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.
@@ -217,10 +217,10 @@ export interface IOrder {
217
217
  statusInfo?: string;
218
218
  comments?: IOrderComment[];
219
219
  claimCode?: string;
220
- buckets: IOrderInBucket[];
220
+ buckets?: IOrderInBucket[];
221
221
  payments?: IOrderPayment[];
222
222
  fiscal?: IOrderFiscal[];
223
- tax: ITaxSummary[];
223
+ tax?: ITaxSummary[];
224
224
  extra?: IOrderExtra;
225
225
  traces?: {
226
226
  [propName: string]: string;
@@ -217,10 +217,10 @@ export interface IOrder {
217
217
  statusInfo?: string;
218
218
  comments?: IOrderComment[];
219
219
  claimCode?: string;
220
- buckets: IOrderInBucket[];
220
+ buckets?: IOrderInBucket[];
221
221
  payments?: IOrderPayment[];
222
222
  fiscal?: IOrderFiscal[];
223
- tax: ITaxSummary[];
223
+ tax?: ITaxSummary[];
224
224
  extra?: IOrderExtra;
225
225
  traces?: {
226
226
  [propName: string]: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orderingstack/ordering-types",
3
- "version": "1.9.1",
3
+ "version": "1.9.2",
4
4
  "description": "Typescript types for @orderingstack",
5
5
  "types": "dist/esm/index.d.ts",
6
6
  "main": "dist/cjs/index.js",