@erp-galoper/types 1.0.1746 → 1.0.1747

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 +4 -3
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -42518,7 +42518,7 @@ export interface components {
42518
42518
  * TypeSchema
42519
42519
  * @enum {string}
42520
42520
  */
42521
- TypeSchema: "default" | "creditNote" | "paymentVoucher";
42521
+ TypeSchema: "default" | "creditNote" | "paymentVoucher" | "goodsReceiptNote";
42522
42522
  /** PurchaseInvoiceDetailSchema */
42523
42523
  PurchaseInvoiceDetailSchema: {
42524
42524
  /**
@@ -84697,7 +84697,8 @@ export interface operations {
84697
84697
  search?: string | null;
84698
84698
  /** @description Filter by branch id */
84699
84699
  branchId: number;
84700
- type?: "default" | "creditNote" | "paymentVoucher";
84700
+ /** @description default: all invoices in range; creditNote: remaining after credits/returns (supplier required); paymentVoucher: unpaid or partially paid; goodsReceiptNote: not received or partially received only. */
84701
+ type?: "default" | "creditNote" | "paymentVoucher" | "goodsReceiptNote";
84701
84702
  /** @description supplier id, required when type is creditNote or paymentVoucher */
84702
84703
  supplier?: number;
84703
84704
  /** @description If true, includes invoice items in the response */
@@ -84801,7 +84802,7 @@ export interface operations {
84801
84802
  purchase_purchase_invoice_views_get_purchase_invoice: {
84802
84803
  parameters: {
84803
84804
  query?: {
84804
- type?: "default" | "creditNote" | "paymentVoucher";
84805
+ type?: "default" | "creditNote" | "paymentVoucher" | "goodsReceiptNote";
84805
84806
  grn?: boolean;
84806
84807
  };
84807
84808
  header?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1746",
3
+ "version": "1.0.1747",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],