@erp-galoper/types 1.0.1979 → 1.0.1981

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 +5 -5
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -20428,10 +20428,10 @@ export interface paths {
20428
20428
  * - excludeZeroQty: Exclude items with zero total stock quantity
20429
20429
  * - zeroQtyOnly: Only items with zero total stock quantity
20430
20430
  *
20431
- * Search supports case-insensitive substring search across:
20432
- * - Item name (including fuzzy matching)
20433
- * - Barcode
20434
- * - SKU code
20431
+ * Search uses the same contains matching as the item list:
20432
+ * - Item name, short name, SKU
20433
+ * - Barcode, brand, family, category, tag
20434
+ * - Serial number, batch number
20435
20435
  *
20436
20436
  * Responses:
20437
20437
  * - 200: Item Availability Report results
@@ -105686,7 +105686,7 @@ export interface operations {
105686
105686
  packages?: string[] | null;
105687
105687
  /** @description List of UOM IDs */
105688
105688
  unitOfMeasure?: string[] | null;
105689
- /** @description Search by item name, barcode, or SKU code */
105689
+ /** @description Search like the item list in contains mode (name, short name, SKU, barcode, brand, family, category, tag, serial, batch) */
105690
105690
  search?: string | null;
105691
105691
  /** @description Filter items by stock quantity: all, excludeZeroQty, zeroQtyOnly */
105692
105692
  showItemsWith?: "all" | "excludeZeroQty" | "zeroQtyOnly";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1979",
3
+ "version": "1.0.1981",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],