@erp-galoper/types 1.0.1011 → 1.0.1012

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 -2
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -43952,7 +43952,10 @@ export interface components {
43952
43952
  /** Notes */
43953
43953
  notes?: string;
43954
43954
  status: components["schemas"]["InternalStatusChoices"];
43955
- /** Items */
43955
+ /**
43956
+ * Items
43957
+ * @description when applies on is purchaseInvoice only one entry is allowed
43958
+ */
43956
43959
  items: components["schemas"]["PurchaseCreditNoteItemCreateSchema"][];
43957
43960
  };
43958
43961
  /** PurchaseCreditNoteItemCreateSchema */
@@ -43972,6 +43975,7 @@ export interface components {
43972
43975
  * - Required when the reason is postPurchaseDiscountOrAllowances and applies to purchaseInvoiceItem, or if the reason is anything other than postPurchaseDiscountOrAllowances
43973
43976
  * API Endpoints for purchase invoice item Retrieval:
43974
43977
  * - Use the API: /api/v1/purchase/invoices/{invoice-id}/ where type is creditNote and get items from field items
43978
+ * - purchase invoice item should not be duplicated in items list
43975
43979
  *
43976
43980
  */
43977
43981
  purchaseInvoiceItem?: string;
@@ -44061,6 +44065,7 @@ export interface components {
44061
44065
  * - Required when the reason is postPurchaseDiscountOrAllowances and applies to purchaseInvoiceItem, or if the reason is anything other than postPurchaseDiscountOrAllowances
44062
44066
  * API Endpoints for purchase invoice item Retrieval:
44063
44067
  * - Use the API: /api/v1/purchase/invoices/{invoice-id}/ where type is creditNote and get items from field items
44068
+ * - purchase invoice item should not be duplicated in items list
44064
44069
  *
44065
44070
  */
44066
44071
  purchaseInvoiceItem?: string;
@@ -44141,7 +44146,10 @@ export interface components {
44141
44146
  /** Notes */
44142
44147
  notes?: string;
44143
44148
  status: components["schemas"]["InternalStatusChoices"];
44144
- /** Items */
44149
+ /**
44150
+ * Items
44151
+ * @description when applies on is purchaseInvoice only one entry is allowed
44152
+ */
44145
44153
  items: components["schemas"]["PurchaseCreditNoteItemUpdateSchema"][];
44146
44154
  };
44147
44155
  /** PurchaseCreditNoteDeleteSchema */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1011",
3
+ "version": "1.0.1012",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],