@erp-galoper/types 1.0.1668 → 1.0.1670
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 +54 -0
- 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"
|
|
@@ -24240,7 +24248,41 @@ export interface components {
|
|
|
24240
24248
|
* @default []
|
|
24241
24249
|
*/
|
|
24242
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"][];
|
|
24243
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";
|
|
24244
24286
|
/**
|
|
24245
24287
|
* BasePermissionsSchema_Sales_DownpaymentEnum
|
|
24246
24288
|
* @enum {string}
|
|
@@ -24251,6 +24293,16 @@ export interface components {
|
|
|
24251
24293
|
* @enum {string}
|
|
24252
24294
|
*/
|
|
24253
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";
|
|
24254
24306
|
/**
|
|
24255
24307
|
* BasePermissionsSchema_Sales_ReceiptvoucherEnum
|
|
24256
24308
|
* @enum {string}
|
|
@@ -99364,6 +99416,8 @@ export interface operations {
|
|
|
99364
99416
|
packages?: string[] | null;
|
|
99365
99417
|
/** @description List of UOM IDs */
|
|
99366
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;
|
|
99367
99421
|
};
|
|
99368
99422
|
header?: never;
|
|
99369
99423
|
path?: never;
|