@erp-galoper/types 1.0.1968 → 1.0.1969
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.
- package/openapi.ts +6 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -20428,6 +20428,11 @@ 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
|
|
20435
|
+
*
|
|
20431
20436
|
* Responses:
|
|
20432
20437
|
* - 200: Item Availability Report results
|
|
20433
20438
|
* - 400: "invalidFilterFormat"
|
|
@@ -105187,7 +105192,7 @@ export interface operations {
|
|
|
105187
105192
|
packages?: string[] | null;
|
|
105188
105193
|
/** @description List of UOM IDs */
|
|
105189
105194
|
unitOfMeasure?: string[] | null;
|
|
105190
|
-
/** @description
|
|
105195
|
+
/** @description Search by item name, barcode, or SKU code */
|
|
105191
105196
|
search?: string | null;
|
|
105192
105197
|
/** @description Filter items by stock quantity: all, excludeZeroQty, zeroQtyOnly */
|
|
105193
105198
|
showItemsWith?: "all" | "excludeZeroQty" | "zeroQtyOnly";
|