@erp-galoper/types 1.0.780 → 1.0.782

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 +11 -2
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -17349,6 +17349,7 @@ export interface paths {
17349
17349
  * - branchDoesNotExist
17350
17350
  * - itemNotInOrder
17351
17351
  * - itemNotInInvoice
17352
+ * - quantityOrderedIsRequired
17352
17353
  * - 403: - noModuleAccess
17353
17354
  * - permissionDenied
17354
17355
  * - noBranchAccess
@@ -36330,7 +36331,11 @@ export interface components {
36330
36331
  quantityReceived: number;
36331
36332
  /**
36332
36333
  * Quantityordered
36333
- * @description Quantity of the item ordered (if applicable)
36334
+ * @description
36335
+ * Quantity of the item ordered (if applicable)
36336
+ * - if the item is not linked to a purchase order or invoice, this field should be None
36337
+ * - if the item is linked to a purchase order or invoice, this field should be the quantity ordered from the purchase order or invoice
36338
+ *
36334
36339
  */
36335
36340
  quantityOrdered?: number | null;
36336
36341
  /**
@@ -46387,7 +46392,11 @@ export interface components {
46387
46392
  quantity: number;
46388
46393
  /**
46389
46394
  * Quantityordered
46390
- * @description Quantity of the item ordered (if applicable)
46395
+ * @description
46396
+ * Quantity of the item ordered (if applicable)
46397
+ * - if the item is not linked to a sales order or invoice, this field should be None
46398
+ * - if the item is linked to a sales order or invoice, this field should be the quantity ordered from the sales order or invoice
46399
+ *
46391
46400
  */
46392
46401
  quantityOrdered?: number | null;
46393
46402
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.780",
3
+ "version": "1.0.782",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],