@erp-galoper/types 1.0.1835 → 1.0.1837
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 +9 -0
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -55091,6 +55091,11 @@ export interface components {
|
|
|
55091
55091
|
* @enum {string}
|
|
55092
55092
|
*/
|
|
55093
55093
|
SalesDocumentTypeSchema: "default" | "salesCreditNote" | "receiptVoucher";
|
|
55094
|
+
/**
|
|
55095
|
+
* SalesInvoiceSortBy
|
|
55096
|
+
* @enum {string}
|
|
55097
|
+
*/
|
|
55098
|
+
SalesInvoiceSortBy: "customerRegion" | "customerCity" | "serialNumber" | "date";
|
|
55094
55099
|
/** SalesInvoiceListSchema */
|
|
55095
55100
|
SalesInvoiceListSchema: {
|
|
55096
55101
|
info: components["schemas"]["PageInfoSchema"];
|
|
@@ -97733,6 +97738,10 @@ export interface operations {
|
|
|
97733
97738
|
type?: "default" | "salesCreditNote" | "receiptVoucher";
|
|
97734
97739
|
/** @description customer id, required when type is salesCreditNote or receiptVoucher */
|
|
97735
97740
|
customer?: string;
|
|
97741
|
+
/** @description Field to sort invoices by */
|
|
97742
|
+
sortBy?: components["schemas"]["SalesInvoiceSortBy"] | null;
|
|
97743
|
+
/** @description Sort order: ascending or descending */
|
|
97744
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
97736
97745
|
};
|
|
97737
97746
|
header?: never;
|
|
97738
97747
|
path?: never;
|