@erp-galoper/types 1.0.1302 → 1.0.1303

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.
Files changed (2) hide show
  1. package/openapi.ts +39 -5
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -53568,15 +53568,49 @@ export interface components {
53568
53568
  */
53569
53569
  locations: components["schemas"]["ItemLocationSchema"][];
53570
53570
  };
53571
+ /** PackedInventorySummarySchema */
53572
+ PackedInventorySummarySchema: {
53573
+ /**
53574
+ * Stockquantity
53575
+ * @default 0
53576
+ */
53577
+ stockQuantity: number;
53578
+ /**
53579
+ * Reservedquantity
53580
+ * @default 0
53581
+ */
53582
+ reservedQuantity: number;
53583
+ /**
53584
+ * Availablequantity
53585
+ * @default 0
53586
+ */
53587
+ availableQuantity: number;
53588
+ /**
53589
+ * Totalpacks
53590
+ * @default 0
53591
+ */
53592
+ totalPacks: number;
53593
+ /**
53594
+ * Totalreservedpacks
53595
+ * @default 0
53596
+ */
53597
+ totalReservedPacks: number;
53598
+ /**
53599
+ * Totalavailablepacks
53600
+ * @default 0
53601
+ */
53602
+ totalAvailablePacks: number;
53603
+ /**
53604
+ * Packages
53605
+ * @default []
53606
+ */
53607
+ packages: components["schemas"]["PackedInventorySchema"][];
53608
+ };
53571
53609
  /** UOMGroupSchema */
53572
53610
  UOMGroupSchema: {
53573
53611
  unitOfMeasure: components["schemas"]["UnitOfMeasureSchema"];
53574
53612
  unpacked: components["schemas"]["UnpackedInventorySchema"];
53575
- /**
53576
- * Packed
53577
- * @default []
53578
- */
53579
- packed: components["schemas"]["PackedInventorySchema"][];
53613
+ packed: components["schemas"]["PackedInventorySummarySchema"];
53580
53614
  /**
53581
53615
  * Totalstockquantity
53582
53616
  * @default 0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1302",
3
+ "version": "1.0.1303",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],