@erp-galoper/types 1.0.740 → 1.0.742
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.
- package/openapi.ts +11 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -27564,7 +27564,7 @@ export interface components {
|
|
|
27564
27564
|
/**
|
|
27565
27565
|
* Id
|
|
27566
27566
|
* Format: uuid
|
|
27567
|
-
* @example
|
|
27567
|
+
* @example 2a9546a8-0c8e-45ce-97a5-7a9748106b15
|
|
27568
27568
|
*/
|
|
27569
27569
|
id: string;
|
|
27570
27570
|
/**
|
|
@@ -45775,6 +45775,11 @@ export interface components {
|
|
|
45775
45775
|
unitPackage: number | null;
|
|
45776
45776
|
/** Quantity */
|
|
45777
45777
|
quantity: number;
|
|
45778
|
+
/**
|
|
45779
|
+
* Quantityordered
|
|
45780
|
+
* @description Quantity ordered from the linked sales order or invoice
|
|
45781
|
+
*/
|
|
45782
|
+
quantityOrdered?: number | null;
|
|
45778
45783
|
/**
|
|
45779
45784
|
* Tracking
|
|
45780
45785
|
* @description Tracking details (serial numbers, batches, or quantities)
|
|
@@ -45900,6 +45905,11 @@ export interface components {
|
|
|
45900
45905
|
unitPackage?: number;
|
|
45901
45906
|
/** Quantity */
|
|
45902
45907
|
quantity: number;
|
|
45908
|
+
/**
|
|
45909
|
+
* Quantityordered
|
|
45910
|
+
* @description Quantity of the item ordered (if applicable)
|
|
45911
|
+
*/
|
|
45912
|
+
quantityOrdered?: number | null;
|
|
45903
45913
|
/**
|
|
45904
45914
|
* Tracking
|
|
45905
45915
|
* @description Get the tracking from the item
|