@erp-galoper/types 1.0.1838 → 1.0.1840
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
|
@@ -33276,6 +33276,11 @@ export interface components {
|
|
|
33276
33276
|
* @enum {string}
|
|
33277
33277
|
*/
|
|
33278
33278
|
CustomerDocumentTypeEnum: "default" | "receiptVoucher" | "salesCreditNote" | "returnablePackageReconciliation" | "salesReturnPackage" | "salesRefundVoucher" | "downPayment" | "goodsDeliveryNote" | "salesPerson" | "returnOrder" | "returnInvoice";
|
|
33279
|
+
/**
|
|
33280
|
+
* CustomerSortBy
|
|
33281
|
+
* @enum {string}
|
|
33282
|
+
*/
|
|
33283
|
+
CustomerSortBy: "name" | "accountNumber" | "region" | "city";
|
|
33279
33284
|
/**
|
|
33280
33285
|
* typeCustomers
|
|
33281
33286
|
* @enum {string}
|
|
@@ -74121,6 +74126,10 @@ export interface operations {
|
|
|
74121
74126
|
/** @description type of document for listing customers, example : receiptVoucher */
|
|
74122
74127
|
documentType?: "default" | "receiptVoucher" | "salesCreditNote" | "returnablePackageReconciliation" | "salesReturnPackage" | "salesRefundVoucher" | "downPayment" | "goodsDeliveryNote" | "salesPerson" | "returnOrder" | "returnInvoice";
|
|
74123
74128
|
search?: string | null;
|
|
74129
|
+
/** @description Field to sort customers by */
|
|
74130
|
+
sortBy?: components["schemas"]["CustomerSortBy"] | null;
|
|
74131
|
+
/** @description Sort order: ascending or descending */
|
|
74132
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
74124
74133
|
};
|
|
74125
74134
|
header?: never;
|
|
74126
74135
|
path?: never;
|