@erp-galoper/types 1.0.1301 → 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 +53 -7
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -53301,6 +53301,12 @@ export interface components {
53301
53301
  */
53302
53302
  unitOfMeasure: components["schemas"]["UnitOfMeasureSchema"][];
53303
53303
  };
53304
+ /** ItemMovementReportResponse */
53305
+ ItemMovementReportResponse: {
53306
+ info: components["schemas"]["PageInfoSchema"];
53307
+ /** Results */
53308
+ results: components["schemas"]["ItemMovementReportSchema"][];
53309
+ };
53304
53310
  /** ItemMovementReportSchema */
53305
53311
  ItemMovementReportSchema: {
53306
53312
  item: components["schemas"]["ItemDetailSchemaForReport"];
@@ -53407,6 +53413,12 @@ export interface components {
53407
53413
  */
53408
53414
  movements: components["schemas"]["MovementTransactionSchema"][];
53409
53415
  };
53416
+ /** ItemAvailabilityReportResponse */
53417
+ ItemAvailabilityReportResponse: {
53418
+ info: components["schemas"]["PageInfoSchema"];
53419
+ /** Results */
53420
+ results: components["schemas"]["ItemAvailabilityReportSchema"][];
53421
+ };
53410
53422
  /** ItemAvailabilityReportSchema */
53411
53423
  ItemAvailabilityReportSchema: {
53412
53424
  item: components["schemas"]["ItemDetailSchemaForReport"];
@@ -53556,15 +53568,49 @@ export interface components {
53556
53568
  */
53557
53569
  locations: components["schemas"]["ItemLocationSchema"][];
53558
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
+ };
53559
53609
  /** UOMGroupSchema */
53560
53610
  UOMGroupSchema: {
53561
53611
  unitOfMeasure: components["schemas"]["UnitOfMeasureSchema"];
53562
53612
  unpacked: components["schemas"]["UnpackedInventorySchema"];
53563
- /**
53564
- * Packed
53565
- * @default []
53566
- */
53567
- packed: components["schemas"]["PackedInventorySchema"][];
53613
+ packed: components["schemas"]["PackedInventorySummarySchema"];
53568
53614
  /**
53569
53615
  * Totalstockquantity
53570
53616
  * @default 0
@@ -95174,7 +95220,7 @@ export interface operations {
95174
95220
  [name: string]: unknown;
95175
95221
  };
95176
95222
  content: {
95177
- "application/json": components["schemas"]["ItemMovementReportSchema"][];
95223
+ "application/json": components["schemas"]["ItemMovementReportResponse"];
95178
95224
  };
95179
95225
  };
95180
95226
  /** @description Bad Request */
@@ -95242,7 +95288,7 @@ export interface operations {
95242
95288
  [name: string]: unknown;
95243
95289
  };
95244
95290
  content: {
95245
- "application/json": components["schemas"]["ItemAvailabilityReportSchema"][];
95291
+ "application/json": components["schemas"]["ItemAvailabilityReportResponse"];
95246
95292
  };
95247
95293
  };
95248
95294
  /** @description Bad Request */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1301",
3
+ "version": "1.0.1303",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],