@openbox/shared-types 0.5.16 → 0.5.17

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.
@@ -6,6 +6,7 @@ export type InventoriesProducts = {
6
6
  barcode?: string;
7
7
  price?: number;
8
8
  threshold?: number;
9
+ trackInventory?: boolean;
9
10
  unit: InventoriesUnits;
10
11
  };
11
12
  export type InventoriesProductsRequest = Omit<InventoriesProducts, 'id' | 'unit'> & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.5.16",
3
+ "version": "0.5.17",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -7,6 +7,7 @@ export type InventoriesProducts = {
7
7
  barcode?: string
8
8
  price?: number
9
9
  threshold?: number
10
+ trackInventory?: boolean
10
11
  unit: InventoriesUnits
11
12
  }
12
13