@erp-galoper/types 1.0.1249 → 1.0.1250

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 +3 -3
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -31283,7 +31283,7 @@ export interface components {
31283
31283
  * DocumentTypeEnum
31284
31284
  * @enum {string}
31285
31285
  */
31286
- DocumentTypeEnum: "purchaseRefundVoucher" | "creditNote" | "advancePayment" | "goodsReceiptNote" | "salesPerson" | "returnOrder" | "returnInvoice";
31286
+ DocumentTypeEnum: "purchaseRefundVoucher" | "creditNote" | "advancePayment" | "goodsReceiptNote" | "salesPerson" | "returnOrder" | "returnInvoice" | "expenseVoucher";
31287
31287
  /**
31288
31288
  * typeSuppliers
31289
31289
  * @enum {string}
@@ -54092,7 +54092,7 @@ export interface components {
54092
54092
  * @description - Supplier id
54093
54093
  * - visible and required when voucherType equals supplierRelated
54094
54094
  * - if selected category has preferred supplier, supplier should be the preferred supplier, and if user dont have permission to override supplier then this field should be disabled, required permission expensevoucher [override_preferred_supplier]
54095
- * - get suppliers using route /api/v1/suppliers/?type=children and filter by isActive equals true, and type equals expense
54095
+ * - get suppliers using route /api/v1/suppliers/?documentType=expenseVoucher
54096
54096
  */
54097
54097
  supplier?: number;
54098
54098
  /**
@@ -66284,7 +66284,7 @@ export interface operations {
66284
66284
  /** @description Type of supplier to get */
66285
66285
  type?: "parents" | "children";
66286
66286
  /** @description type of document for listing suppliers, example : purchaseRefundVoucher */
66287
- documentType?: "purchaseRefundVoucher" | "creditNote" | "advancePayment" | "goodsReceiptNote" | "salesPerson" | "returnOrder" | "returnInvoice";
66287
+ documentType?: "purchaseRefundVoucher" | "creditNote" | "advancePayment" | "goodsReceiptNote" | "salesPerson" | "returnOrder" | "returnInvoice" | "expenseVoucher";
66288
66288
  search?: string | null;
66289
66289
  /** @description Branch ID */
66290
66290
  branch?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1249",
3
+ "version": "1.0.1250",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],