@orderingstack/ordering-types 1.14.0 → 1.14.1

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.
@@ -404,7 +404,7 @@ export interface IOrderLine {
404
404
  id: string;
405
405
  price: string;
406
406
  product: IOrderProduct;
407
- productConfig: IProductState;
407
+ productConfig: Partial<IProductState>;
408
408
  productId: string;
409
409
  quantity: number;
410
410
  source: string;
@@ -404,7 +404,7 @@ export interface IOrderLine {
404
404
  id: string;
405
405
  price: string;
406
406
  product: IOrderProduct;
407
- productConfig: IProductState;
407
+ productConfig: Partial<IProductState>;
408
408
  productId: string;
409
409
  quantity: number;
410
410
  source: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orderingstack/ordering-types",
3
- "version": "1.14.0",
3
+ "version": "1.14.1",
4
4
  "description": "Typescript types for @orderingstack",
5
5
  "types": "dist/esm/index.d.ts",
6
6
  "main": "dist/cjs/index.js",