@erp-galoper/types 1.0.1739 → 1.0.1740
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 +30 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -20066,7 +20066,7 @@ export interface paths {
|
|
|
20066
20066
|
* - "noBranchAccess"
|
|
20067
20067
|
* - 500: "serverError"
|
|
20068
20068
|
*
|
|
20069
|
-
* **Permission key:**
|
|
20069
|
+
* **Permission key:** inventoryvaluationreport: ["view"]
|
|
20070
20070
|
*/
|
|
20071
20071
|
get: operations["reports_inventoryreport_views_get_inventory_valuation_report"];
|
|
20072
20072
|
put?: never;
|
|
@@ -57709,6 +57709,11 @@ export interface components {
|
|
|
57709
57709
|
/** Quantity */
|
|
57710
57710
|
quantity: number;
|
|
57711
57711
|
cost: components["schemas"]["CurrencyAmountSchema"];
|
|
57712
|
+
/**
|
|
57713
|
+
* Locations
|
|
57714
|
+
* @description Combined unpacked + packed totals per location
|
|
57715
|
+
*/
|
|
57716
|
+
locations?: components["schemas"]["InventoryValuationLocationSchema"][];
|
|
57712
57717
|
};
|
|
57713
57718
|
/**
|
|
57714
57719
|
* InventoryValuationLineSchema
|
|
@@ -57721,6 +57726,11 @@ export interface components {
|
|
|
57721
57726
|
/** Quantity */
|
|
57722
57727
|
quantity: number;
|
|
57723
57728
|
cost: components["schemas"]["CurrencyAmountSchema"];
|
|
57729
|
+
/**
|
|
57730
|
+
* Locations
|
|
57731
|
+
* @description Totals per location (all UOMs combined)
|
|
57732
|
+
*/
|
|
57733
|
+
locations?: components["schemas"]["InventoryValuationLocationSchema"][];
|
|
57724
57734
|
};
|
|
57725
57735
|
/**
|
|
57726
57736
|
* InventoryValuationLocationSchema
|
|
@@ -57757,6 +57767,25 @@ export interface components {
|
|
|
57757
57767
|
* @description Packed inventory UOM valuation data
|
|
57758
57768
|
*/
|
|
57759
57769
|
PackedInventoryValuationSchema: {
|
|
57770
|
+
/** Quantity */
|
|
57771
|
+
quantity: number;
|
|
57772
|
+
cost: components["schemas"]["CurrencyAmountSchema"];
|
|
57773
|
+
/** Packages */
|
|
57774
|
+
packages?: components["schemas"]["PackedPackageValuationSchema"][];
|
|
57775
|
+
/**
|
|
57776
|
+
* Locations
|
|
57777
|
+
* @description Totals per location (all packages combined)
|
|
57778
|
+
*/
|
|
57779
|
+
locations?: components["schemas"]["InventoryValuationLocationSchema"][];
|
|
57780
|
+
};
|
|
57781
|
+
/**
|
|
57782
|
+
* PackedPackageValuationSchema
|
|
57783
|
+
* @description One package type within packed valuation (matches availability report shape).
|
|
57784
|
+
*/
|
|
57785
|
+
PackedPackageValuationSchema: {
|
|
57786
|
+
package: components["schemas"]["ItemPackageSummarySchema"];
|
|
57787
|
+
/** Packagequantity */
|
|
57788
|
+
packageQuantity: number;
|
|
57760
57789
|
/** Quantity */
|
|
57761
57790
|
quantity: number;
|
|
57762
57791
|
cost: components["schemas"]["CurrencyAmountSchema"];
|