@erp-galoper/types 1.0.1470 → 1.0.1472
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 +19 -0
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -4774,6 +4774,21 @@ export interface paths {
|
|
|
4774
4774
|
/**
|
|
4775
4775
|
* List Internal Transfers
|
|
4776
4776
|
* @description Endpoint for List Internal Transfer Documents
|
|
4777
|
+
*
|
|
4778
|
+
* Query Parameters:
|
|
4779
|
+
* - fromWarehouse: List of warehouse IDs to filter by source warehouse
|
|
4780
|
+
* - toWarehouse: List of warehouse IDs to filter by destination warehouse
|
|
4781
|
+
* - search: Search by item name, SKU, barcodes, batch numbers, serial numbers, or warehouse names
|
|
4782
|
+
*
|
|
4783
|
+
* Search functionality:
|
|
4784
|
+
* - Item name (details__item__name)
|
|
4785
|
+
* - Item SKU code (details__item__sku_code)
|
|
4786
|
+
* - Item barcodes (details__item__item_barcodes__barcode)
|
|
4787
|
+
* - Batch numbers (details__batch__number)
|
|
4788
|
+
* - Serial numbers (details__serial__number)
|
|
4789
|
+
* - From warehouse name (from_warehouse__name)
|
|
4790
|
+
* - To warehouse name (to_warehouse__name)
|
|
4791
|
+
*
|
|
4777
4792
|
* Responses:
|
|
4778
4793
|
* - 200: InternalTransferHeaderListSchema
|
|
4779
4794
|
* - 400: {"message": "Error applying filter {error}", "code": "invalidFilterFormat"}
|
|
@@ -68037,6 +68052,10 @@ export interface operations {
|
|
|
68037
68052
|
/** @description Page size */
|
|
68038
68053
|
pageSize?: number;
|
|
68039
68054
|
search?: string | null;
|
|
68055
|
+
/** @description List of from warehouse IDs */
|
|
68056
|
+
fromWarehouse?: number[] | null;
|
|
68057
|
+
/** @description List of to warehouse IDs */
|
|
68058
|
+
toWarehouse?: number[] | null;
|
|
68040
68059
|
};
|
|
68041
68060
|
header?: never;
|
|
68042
68061
|
path?: never;
|