@erp-galoper/types 1.0.1482 → 1.0.1484
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 +11 -2
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -25714,7 +25714,7 @@ export interface components {
|
|
|
25714
25714
|
* ItemSortBy
|
|
25715
25715
|
* @enum {string}
|
|
25716
25716
|
*/
|
|
25717
|
-
ItemSortBy: "name" | "shortName" | "skuCode" | "type" | "usage" | "active" | "dateCreated" | "dateModified" | "family" | "brand" | "categories" | "tags";
|
|
25717
|
+
ItemSortBy: "name" | "shortName" | "skuCode" | "type" | "usage" | "active" | "dateCreated" | "dateModified" | "family" | "brand" | "categories" | "tags" | "";
|
|
25718
25718
|
/**
|
|
25719
25719
|
* SortOrder
|
|
25720
25720
|
* @enum {string}
|
|
@@ -42805,6 +42805,15 @@ export interface components {
|
|
|
42805
42805
|
};
|
|
42806
42806
|
/** GoodsReceiptNoteSchema */
|
|
42807
42807
|
GoodsReceiptNoteSchema: {
|
|
42808
|
+
/**
|
|
42809
|
+
* Datecreated
|
|
42810
|
+
* Format: date-time
|
|
42811
|
+
*/
|
|
42812
|
+
dateCreated: string;
|
|
42813
|
+
/** Datemodified */
|
|
42814
|
+
dateModified: string | null;
|
|
42815
|
+
createdBy: components["schemas"]["RecordUserSchema"];
|
|
42816
|
+
modifiedBy: components["schemas"]["RecordUserSchema"] | null;
|
|
42808
42817
|
/**
|
|
42809
42818
|
* Id
|
|
42810
42819
|
* Format: uuid
|
|
@@ -59114,7 +59123,7 @@ export interface operations {
|
|
|
59114
59123
|
/** @description required when you want to get items sales prices from sales price list in sales features */
|
|
59115
59124
|
customerId?: number;
|
|
59116
59125
|
/** @description Field to sort items by */
|
|
59117
|
-
sortBy?: "name" | "shortName" | "skuCode" | "type" | "usage" | "active" | "dateCreated" | "dateModified" | "family" | "brand" | "categories" | "tags";
|
|
59126
|
+
sortBy?: "name" | "shortName" | "skuCode" | "type" | "usage" | "active" | "dateCreated" | "dateModified" | "family" | "brand" | "categories" | "tags" | "";
|
|
59118
59127
|
/** @description Sort order: ascending or descending */
|
|
59119
59128
|
order?: "asc" | "desc";
|
|
59120
59129
|
};
|