@erp-galoper/types 1.0.1667 → 1.0.1669

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 +54 -44
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -19911,6 +19911,14 @@ export interface paths {
19911
19911
  * The report tracks and summarizes all movements of inventory items, providing visibility
19912
19912
  * into how inventory is flowing through the organization.
19913
19913
  *
19914
+ * Search supports case-insensitive substring search across:
19915
+ * - Item name
19916
+ * - Short name
19917
+ * - Barcode
19918
+ * - SKU code
19919
+ * - Batch number
19920
+ * - Serial number
19921
+ *
19914
19922
  * Responses:
19915
19923
  * - 200: Item Movement Report results
19916
19924
  * - 400: "customPeriodError"
@@ -23532,41 +23540,7 @@ export interface components {
23532
23540
  * @default []
23533
23541
  */
23534
23542
  warehouse: components["schemas"]["BasePermissionsSchema_Inventory_WarehouseEnum"][];
23535
- /**
23536
- * Price
23537
- * @description price actions
23538
- * @default []
23539
- */
23540
- price: components["schemas"]["BasePermissionsSchema_Inventory_PriceEnum"][];
23541
- /**
23542
- * Discount
23543
- * @description discount actions
23544
- * @default []
23545
- */
23546
- discount: components["schemas"]["BasePermissionsSchema_Inventory_DiscountEnum"][];
23547
- /**
23548
- * Profit
23549
- * @description profit actions
23550
- * @default []
23551
- */
23552
- profit: components["schemas"]["BasePermissionsSchema_Inventory_ProfitEnum"][];
23553
- /**
23554
- * Cost
23555
- * @description cost actions
23556
- * @default []
23557
- */
23558
- cost: components["schemas"]["BasePermissionsSchema_Inventory_CostEnum"][];
23559
23543
  };
23560
- /**
23561
- * BasePermissionsSchema_Inventory_CostEnum
23562
- * @constant
23563
- */
23564
- BasePermissionsSchema_Inventory_CostEnum: "view";
23565
- /**
23566
- * BasePermissionsSchema_Inventory_DiscountEnum
23567
- * @constant
23568
- */
23569
- BasePermissionsSchema_Inventory_DiscountEnum: "add";
23570
23544
  /**
23571
23545
  * BasePermissionsSchema_Inventory_GoodsdeliverynoteEnum
23572
23546
  * @enum {string}
@@ -23607,16 +23581,6 @@ export interface components {
23607
23581
  * @enum {string}
23608
23582
  */
23609
23583
  BasePermissionsSchema_Inventory_PackagetypeEnum: "add" | "change" | "delete" | "view";
23610
- /**
23611
- * BasePermissionsSchema_Inventory_PriceEnum
23612
- * @constant
23613
- */
23614
- BasePermissionsSchema_Inventory_PriceEnum: "change";
23615
- /**
23616
- * BasePermissionsSchema_Inventory_ProfitEnum
23617
- * @constant
23618
- */
23619
- BasePermissionsSchema_Inventory_ProfitEnum: "view";
23620
23584
  /**
23621
23585
  * BasePermissionsSchema_Inventory_ReturnablepackagereconciliationEnum
23622
23586
  * @enum {string}
@@ -24284,7 +24248,41 @@ export interface components {
24284
24248
  * @default []
24285
24249
  */
24286
24250
  salesrefundvoucher: components["schemas"]["BasePermissionsSchema_Sales_SalesrefundvoucherEnum"][];
24251
+ /**
24252
+ * Cost
24253
+ * @description cost actions
24254
+ * @default []
24255
+ */
24256
+ cost: components["schemas"]["BasePermissionsSchema_Sales_CostEnum"][];
24257
+ /**
24258
+ * Discount
24259
+ * @description discount actions
24260
+ * @default []
24261
+ */
24262
+ discount: components["schemas"]["BasePermissionsSchema_Sales_DiscountEnum"][];
24263
+ /**
24264
+ * Price
24265
+ * @description price actions
24266
+ * @default []
24267
+ */
24268
+ price: components["schemas"]["BasePermissionsSchema_Sales_PriceEnum"][];
24269
+ /**
24270
+ * Profit
24271
+ * @description profit actions
24272
+ * @default []
24273
+ */
24274
+ profit: components["schemas"]["BasePermissionsSchema_Sales_ProfitEnum"][];
24287
24275
  };
24276
+ /**
24277
+ * BasePermissionsSchema_Sales_CostEnum
24278
+ * @constant
24279
+ */
24280
+ BasePermissionsSchema_Sales_CostEnum: "view";
24281
+ /**
24282
+ * BasePermissionsSchema_Sales_DiscountEnum
24283
+ * @constant
24284
+ */
24285
+ BasePermissionsSchema_Sales_DiscountEnum: "add";
24288
24286
  /**
24289
24287
  * BasePermissionsSchema_Sales_DownpaymentEnum
24290
24288
  * @enum {string}
@@ -24295,6 +24293,16 @@ export interface components {
24295
24293
  * @enum {string}
24296
24294
  */
24297
24295
  BasePermissionsSchema_Sales_OfferandpromotionEnum: "add" | "approve" | "cancel" | "change" | "delete" | "resettodraft" | "view";
24296
+ /**
24297
+ * BasePermissionsSchema_Sales_PriceEnum
24298
+ * @constant
24299
+ */
24300
+ BasePermissionsSchema_Sales_PriceEnum: "change";
24301
+ /**
24302
+ * BasePermissionsSchema_Sales_ProfitEnum
24303
+ * @constant
24304
+ */
24305
+ BasePermissionsSchema_Sales_ProfitEnum: "view";
24298
24306
  /**
24299
24307
  * BasePermissionsSchema_Sales_ReceiptvoucherEnum
24300
24308
  * @enum {string}
@@ -99408,6 +99416,8 @@ export interface operations {
99408
99416
  packages?: string[] | null;
99409
99417
  /** @description List of UOM IDs */
99410
99418
  unit_of_measure?: number[] | null;
99419
+ /** @description Search by item name, short name, barcode, SKU code, batch number, or serial number */
99420
+ search?: string | null;
99411
99421
  };
99412
99422
  header?: never;
99413
99423
  path?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1667",
3
+ "version": "1.0.1669",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],