@erp-galoper/types 1.0.1301 → 1.0.1302

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 +14 -2
  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"];
@@ -95174,7 +95186,7 @@ export interface operations {
95174
95186
  [name: string]: unknown;
95175
95187
  };
95176
95188
  content: {
95177
- "application/json": components["schemas"]["ItemMovementReportSchema"][];
95189
+ "application/json": components["schemas"]["ItemMovementReportResponse"];
95178
95190
  };
95179
95191
  };
95180
95192
  /** @description Bad Request */
@@ -95242,7 +95254,7 @@ export interface operations {
95242
95254
  [name: string]: unknown;
95243
95255
  };
95244
95256
  content: {
95245
- "application/json": components["schemas"]["ItemAvailabilityReportSchema"][];
95257
+ "application/json": components["schemas"]["ItemAvailabilityReportResponse"];
95246
95258
  };
95247
95259
  };
95248
95260
  /** @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.1302",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],