@erp-galoper/types 1.0.1321 → 1.0.1323

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 -2
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -42422,14 +42422,14 @@ export interface components {
42422
42422
  /**
42423
42423
  * Purchaseorder
42424
42424
  * @description - if goods_receipt_note_source is purchase_order,
42425
- * - get the purchase orders with approval status approved or not_required,
42425
+ * - filter by receiving status not equal to received and approval status equals to approved or not_required
42426
42426
  * - when getting the purchase order, use query param grn = true
42427
42427
  */
42428
42428
  purchaseOrder?: string | null;
42429
42429
  /**
42430
42430
  * Purchaseinvoice
42431
42431
  * @description - if goods_receipt_note_source is purchase_invoice,
42432
- * - get the purchase invoice with approval status approved or not_required,
42432
+ * - filter by receiving status not equal to received and approval status equals to approved or not_required
42433
42433
  * - when getting the purchase invoice, use query param grn = true
42434
42434
  */
42435
42435
  purchaseInvoice?: string | null;
@@ -52295,6 +52295,7 @@ export interface components {
52295
52295
  * Salesorder
52296
52296
  * @description - if goods_delivery_note_source is sales_order,
52297
52297
  * - get the sales orders with approval status approved or not_required,
52298
+ * - filter by delivery status not equal to delivered and approval status equals to approved or not_required
52298
52299
  * - when getting the sales order, use query param gdn = true
52299
52300
  */
52300
52301
  salesOrder?: string | null;
@@ -52302,6 +52303,7 @@ export interface components {
52302
52303
  * Salesinvoice
52303
52304
  * @description - if goods_delivery_note_source is sales_invoice,
52304
52305
  * - get the sales invoices with approval status approved or not_required,
52306
+ * - filter by delivery status not equal to delivered and approval status equals to approved or not_required
52305
52307
  * - when getting the sales invoice, use query param gdn = true
52306
52308
  */
52307
52309
  salesInvoice?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1321",
3
+ "version": "1.0.1323",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],