@erp-galoper/types 1.0.1011 → 1.0.1013

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 +20 -4
  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 */
@@ -47736,7 +47744,10 @@ export interface components {
47736
47744
  /** Notes */
47737
47745
  notes?: string;
47738
47746
  status: components["schemas"]["InternalStatusChoices"];
47739
- /** Items */
47747
+ /**
47748
+ * Items
47749
+ * @description when applies on is salesInvoice only one entry is allowed
47750
+ */
47740
47751
  items: components["schemas"]["SalesCreditNoteItemCreateSchema"][];
47741
47752
  };
47742
47753
  /** SalesCreditNoteItemCreateSchema */
@@ -47757,6 +47768,7 @@ export interface components {
47757
47768
  * - Always required except when reason is postSalesDiscountOrAllowances and appliesOn salesInvoice
47758
47769
  * API Endpoints for sales invoice item Retrieval:
47759
47770
  * - Use the API: /api/v1/sales/invoices/{invoice-id}/ where type is salesCreditNote and get items from field items
47771
+ * - sales invoice item should not be duplicated in items list
47760
47772
  *
47761
47773
  */
47762
47774
  salesInvoiceItem?: string;
@@ -47848,6 +47860,7 @@ export interface components {
47848
47860
  * - Always required except when reason is postSalesDiscountOrAllowances and appliesOn salesInvoice
47849
47861
  * API Endpoints for sales invoice item Retrieval:
47850
47862
  * - Use the API: /api/v1/sales/invoices/{invoice-id}/ where type is salesCreditNote and get items from field items
47863
+ * - sales invoice item should not be duplicated in items list
47851
47864
  *
47852
47865
  */
47853
47866
  salesInvoiceItem?: string;
@@ -47922,7 +47935,10 @@ export interface components {
47922
47935
  /** Notes */
47923
47936
  notes?: string;
47924
47937
  status: components["schemas"]["InternalStatusChoices"];
47925
- /** Items */
47938
+ /**
47939
+ * Items
47940
+ * @description when applies on is salesInvoice only one entry is allowed
47941
+ */
47926
47942
  items: components["schemas"]["SalesCreditNoteItemUpdateSchema"][];
47927
47943
  };
47928
47944
  /** SalesCreditNoteDeleteSchema */
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.1013",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],