@erp-galoper/types 1.0.1968 → 1.0.1970
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 +11 -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"
|
|
@@ -51032,6 +51037,11 @@ export interface components {
|
|
|
51032
51037
|
* @description - End date until which the price list is valid. Leave blank if the price list does not have an expiration date.- visible when price list type not equal to retail
|
|
51033
51038
|
*/
|
|
51034
51039
|
endDate?: string | null;
|
|
51040
|
+
/**
|
|
51041
|
+
* Ispos
|
|
51042
|
+
* @description Only applicable when price list type is retail. Only one retail price list per branch can have is_pos set to true.
|
|
51043
|
+
*/
|
|
51044
|
+
isPos?: boolean;
|
|
51035
51045
|
/** Attachments */
|
|
51036
51046
|
attachments?: string[] | null;
|
|
51037
51047
|
/** Description */
|
|
@@ -105187,7 +105197,7 @@ export interface operations {
|
|
|
105187
105197
|
packages?: string[] | null;
|
|
105188
105198
|
/** @description List of UOM IDs */
|
|
105189
105199
|
unitOfMeasure?: string[] | null;
|
|
105190
|
-
/** @description
|
|
105200
|
+
/** @description Search by item name, barcode, or SKU code */
|
|
105191
105201
|
search?: string | null;
|
|
105192
105202
|
/** @description Filter items by stock quantity: all, excludeZeroQty, zeroQtyOnly */
|
|
105193
105203
|
showItemsWith?: "all" | "excludeZeroQty" | "zeroQtyOnly";
|