@erp-galoper/types 1.0.1738 → 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.
Files changed (2) hide show
  1. package/openapi.ts +30 -5
  2. 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:** inventoryreport: ["view"]
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"];
@@ -59602,9 +59631,7 @@ export interface components {
59602
59631
  /** Name */
59603
59632
  name: string;
59604
59633
  expenseAccount: components["schemas"]["ExpenseCategoryAccount"];
59605
- /** @description visible when hasLimit is true */
59606
59634
  prepaidExpenseAccount: components["schemas"]["ExpenseCategoryAccount"] | null;
59607
- /** @description visible when hasLimit is true */
59608
59635
  deferredExpenseAccount: components["schemas"]["ExpenseCategoryAccount"] | null;
59609
59636
  /** Haslimit */
59610
59637
  hasLimit: boolean;
@@ -59656,14 +59683,12 @@ export interface components {
59656
59683
  /**
59657
59684
  * Prepaidexpenseaccount
59658
59685
  * @description - prepaid expense account id
59659
- * - visible and required when hasLimit is true
59660
59686
  * - get accounts using route /api/v1/chart_of_account/?branchId=1&type=prepaidExpense
59661
59687
  */
59662
59688
  prepaidExpenseAccount?: number;
59663
59689
  /**
59664
59690
  * Deferredexpenseaccount
59665
59691
  * @description - deferred expense account id
59666
- * - visible and required when hasLimit is true
59667
59692
  * - get accounts using route /api/v1/chart_of_account/?branchId=1&type=deferredExpense
59668
59693
  */
59669
59694
  deferredExpenseAccount?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1738",
3
+ "version": "1.0.1740",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],