@erp-galoper/types 1.0.1826 → 1.0.1828

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 +3 -2
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -28017,9 +28017,10 @@ export interface components {
28017
28017
  id?: number | null;
28018
28018
  /**
28019
28019
  * Branch
28020
+ * Format: uuid
28020
28021
  * @description Branch ID to assign minimum quantity in stock for. Must be one of the current user's assigned branches.
28021
28022
  */
28022
- branch: number;
28023
+ branch: string;
28023
28024
  /**
28024
28025
  * Minimumquantityinstock
28025
28026
  * @description Minimum quantity in stock for this branch. Use 0 to clear the threshold. Cannot be null.
@@ -63821,7 +63822,7 @@ export interface operations {
63821
63822
  viewType?: "flat" | "tree";
63822
63823
  itemQuantity?: boolean;
63823
63824
  branchId?: string;
63824
- /** @description search by item name, short name, sku code, barcode, serial number, batch number, category, brand, tag, or family */
63825
+ /** @description search by item name, short name, sku code, barcode, serial number, batch number, category, brand, tag, or family. Multiple words (spaces or /) require every word to match an individual word in the item name */
63825
63826
  search?: string;
63826
63827
  /** @description Search match mode: contains (default), startswith, endswith, exact, or similar. All modes search name, sku, short name, barcode, brand, family, category, tag, serial, and batch. */
63827
63828
  searchMode?: "contains" | "startswith" | "endswith" | "exact" | "similar";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1826",
3
+ "version": "1.0.1828",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],