@erp-galoper/types 1.0.1467 → 1.0.1468
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 +14 -0
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -25976,6 +25976,16 @@ export interface components {
|
|
|
25976
25976
|
* @constant
|
|
25977
25977
|
*/
|
|
25978
25978
|
ItemIncludeOption: "opening_stock";
|
|
25979
|
+
/**
|
|
25980
|
+
* ItemSortBy
|
|
25981
|
+
* @enum {string}
|
|
25982
|
+
*/
|
|
25983
|
+
ItemSortBy: "name" | "shortName" | "skuCode" | "type" | "usage" | "active" | "dateCreated" | "dateModified" | "family" | "brand" | "categories" | "tags";
|
|
25984
|
+
/**
|
|
25985
|
+
* SortOrder
|
|
25986
|
+
* @enum {string}
|
|
25987
|
+
*/
|
|
25988
|
+
SortOrder: "asc" | "desc";
|
|
25979
25989
|
/**
|
|
25980
25990
|
* viewType
|
|
25981
25991
|
* @enum {string}
|
|
@@ -59502,6 +59512,10 @@ export interface operations {
|
|
|
59502
59512
|
supplierId?: number;
|
|
59503
59513
|
/** @description required when you want to get items sales prices from sales price list in sales features */
|
|
59504
59514
|
customerId?: number;
|
|
59515
|
+
/** @description Field to sort items by */
|
|
59516
|
+
sortBy?: "name" | "shortName" | "skuCode" | "type" | "usage" | "active" | "dateCreated" | "dateModified" | "family" | "brand" | "categories" | "tags";
|
|
59517
|
+
/** @description Sort order: ascending or descending */
|
|
59518
|
+
order?: "asc" | "desc";
|
|
59505
59519
|
};
|
|
59506
59520
|
header?: never;
|
|
59507
59521
|
path?: never;
|