@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.
Files changed (2) hide show
  1. package/openapi.ts +11 -1
  2. 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 Free text search on item name */
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";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1968",
3
+ "version": "1.0.1970",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],