@erp-galoper/types 1.0.1463 → 1.0.1465

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 +29 -1
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -4601,6 +4601,18 @@ export interface paths {
4601
4601
  /**
4602
4602
  * List Stock Adjustments
4603
4603
  * @description Endpoint for List Stock Adjustment Documents
4604
+ *
4605
+ * Query Parameters:
4606
+ * - warehouse: Filter by specific warehouse ID(s)
4607
+ *
4608
+ * Search functionality:
4609
+ * - Search by warehouse name
4610
+ * - Search by item name, SKU code, or short name
4611
+ * - Search by item barcodes
4612
+ * - Search by serial numbers
4613
+ * - Search by batch numbers
4614
+ * - Search by description
4615
+ *
4604
4616
  * Responses:
4605
4617
  * - 200: StockAdjustmentHeaderListSchema
4606
4618
  * - 400: "invalidFilterFormat"
@@ -4745,6 +4757,17 @@ export interface paths {
4745
4757
  /**
4746
4758
  * List Opening Quantity
4747
4759
  * @description Endpoint for List Opening Quantity Documents
4760
+ *
4761
+ * Query Parameters:
4762
+ * - warehouse: Filter by specific warehouse ID(s)
4763
+ *
4764
+ * Search functionality:
4765
+ * - Search by warehouse name
4766
+ * - Search by item name, SKU code, or short name
4767
+ * - Search by item barcodes
4768
+ * - Search by serial numbers
4769
+ * - Search by batch numbers
4770
+ *
4748
4771
  * Responses:
4749
4772
  * - 200: OpeningQuantityHeaderListSchema
4750
4773
  * - 400: {"message": "Error applying filter {error}", "code": "invalidFilterFormat"}
@@ -68091,8 +68114,10 @@ export interface operations {
68091
68114
  page?: number;
68092
68115
  /** @description Page size */
68093
68116
  pageSize?: number;
68094
- /** @description Search term */
68117
+ /** @description Search by warehouse name, item (name, SKU, short name), barcodes, serial numbers, batch numbers, or description */
68095
68118
  search?: string | null;
68119
+ /** @description Filter by warehouse ID(s). If not provided, all assigned warehouses will be included. */
68120
+ warehouse?: number[] | null;
68096
68121
  };
68097
68122
  header?: never;
68098
68123
  path?: never;
@@ -68430,7 +68455,10 @@ export interface operations {
68430
68455
  page?: number;
68431
68456
  /** @description Page size */
68432
68457
  pageSize?: number;
68458
+ /** @description Search by warehouse name, item (name, SKU, short name), barcodes, serial numbers, or batch numbers */
68433
68459
  search?: string | null;
68460
+ /** @description Filter by warehouse ID(s). If not provided, all assigned warehouses will be included. */
68461
+ warehouse?: number[] | null;
68434
68462
  };
68435
68463
  header?: never;
68436
68464
  path?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1463",
3
+ "version": "1.0.1465",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],