@erp-galoper/types 1.0.1839 → 1.0.1841

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.
Files changed (2) hide show
  1. package/openapi.ts +10 -1
  2. 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}
@@ -35431,7 +35436,7 @@ export interface components {
35431
35436
  dateCreated: string;
35432
35437
  /** Datemodified */
35433
35438
  dateModified: string | null;
35434
- createdBy: components["schemas"]["RecordUserSchema"];
35439
+ createdBy: components["schemas"]["RecordUserSchema"] | null;
35435
35440
  modifiedBy: components["schemas"]["RecordUserSchema"] | null;
35436
35441
  /**
35437
35442
  * Id
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1839",
3
+ "version": "1.0.1841",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],