@erp-galoper/types 1.0.1978 → 1.0.1980
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 -11
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -14995,7 +14995,7 @@ export interface paths {
|
|
|
14995
14995
|
*
|
|
14996
14996
|
* Header fields (any combination):
|
|
14997
14997
|
* - `name`, `description`, `notes`
|
|
14998
|
-
* - `
|
|
14998
|
+
* - `branches`, `status`, `currency`
|
|
14999
14999
|
* - `regions`, `customers`, `customerGroups`
|
|
15000
15000
|
* - `startDate`, `endDate`
|
|
15001
15001
|
* - `attachments`
|
|
@@ -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
|
|
20432
|
-
* - Item name
|
|
20433
|
-
* - Barcode
|
|
20434
|
-
* -
|
|
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
|
|
@@ -51103,6 +51103,11 @@ export interface components {
|
|
|
51103
51103
|
* @description Only applicable when price list type is retail. Only one retail price list per branch can have is_pos set to true.
|
|
51104
51104
|
*/
|
|
51105
51105
|
isPos?: boolean;
|
|
51106
|
+
/**
|
|
51107
|
+
* Branches
|
|
51108
|
+
* @description List of branch IDs where the price list applies.
|
|
51109
|
+
*/
|
|
51110
|
+
branches?: string[] | null;
|
|
51106
51111
|
/** Attachments */
|
|
51107
51112
|
attachments?: string[] | null;
|
|
51108
51113
|
/** Description */
|
|
@@ -63913,11 +63918,6 @@ export interface components {
|
|
|
63913
63918
|
* @default true
|
|
63914
63919
|
*/
|
|
63915
63920
|
canModify: boolean;
|
|
63916
|
-
/**
|
|
63917
|
-
* Cannotmodifyreason
|
|
63918
|
-
* @description Reason editing is blocked: paid or repair status is canceled.
|
|
63919
|
-
*/
|
|
63920
|
-
cannotModifyReason?: string | null;
|
|
63921
63921
|
/**
|
|
63922
63922
|
* Date
|
|
63923
63923
|
* Format: date
|
|
@@ -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
|
|
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";
|