@erp-galoper/types 1.0.1860 → 1.0.1861

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 +48 -46
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -58884,10 +58884,10 @@ export interface components {
58884
58884
  /** DetailedMovementSummarySchema */
58885
58885
  DetailedMovementSummarySchema: {
58886
58886
  /**
58887
- * Openingbalance
58887
+ * Openingquantity
58888
58888
  * @default 0
58889
58889
  */
58890
- openingBalance: number;
58890
+ openingQuantity: number;
58891
58891
  /**
58892
58892
  * Inwardmovements
58893
58893
  * @default 0
@@ -58899,10 +58899,10 @@ export interface components {
58899
58899
  */
58900
58900
  outwardMovements: number;
58901
58901
  /**
58902
- * Closingbalance
58902
+ * Closingquantity
58903
58903
  * @default 0
58904
58904
  */
58905
- closingBalance: number;
58905
+ closingQuantity: number;
58906
58906
  };
58907
58907
  /** DocumentAccount */
58908
58908
  DocumentAccount: {
@@ -58967,48 +58967,8 @@ export interface components {
58967
58967
  * @default []
58968
58968
  */
58969
58969
  packedMovements: components["schemas"]["PackedMovementsGroupSchema"][];
58970
- summary: components["schemas"]["ItemMovementSummarySchema"];
58971
- };
58972
- /** ItemMovementSummarySchema */
58973
- ItemMovementSummarySchema: {
58974
- /**
58975
- * Openingbalance
58976
- * @default 0
58977
- */
58978
- openingBalance: number;
58979
- /**
58980
- * @default {
58981
- * "opening_balance": 0,
58982
- * "inward_movements": 0,
58983
- * "outward_movements": 0,
58984
- * "closing_balance": 0
58985
- * }
58986
- */
58987
- unpacked: components["schemas"]["DetailedMovementSummarySchema"];
58988
- /**
58989
- * @default {
58990
- * "opening_balance": 0,
58991
- * "inward_movements": 0,
58992
- * "outward_movements": 0,
58993
- * "closing_balance": 0
58994
- * }
58995
- */
58996
- packed: components["schemas"]["DetailedMovementSummarySchema"];
58997
- /**
58998
- * Closingbalance
58999
- * @default 0
59000
- */
59001
- closingBalance: number;
59002
- /**
59003
- * Totalinward
59004
- * @default 0
59005
- */
59006
- totalInward: number;
59007
- /**
59008
- * Totaloutward
59009
- * @default 0
59010
- */
59011
- totalOutward: number;
58970
+ /** Summary */
58971
+ summary: components["schemas"]["UOMMovementSummarySchema"][];
59012
58972
  };
59013
58973
  /**
59014
58974
  * MovementAccountType
@@ -59063,6 +59023,48 @@ export interface components {
59063
59023
  */
59064
59024
  movements: components["schemas"]["MovementTransactionSchema"][];
59065
59025
  };
59026
+ /** UOMMovementSummarySchema */
59027
+ UOMMovementSummarySchema: {
59028
+ unitOfMeasure: components["schemas"]["UnitOfMeasureSchema"];
59029
+ /**
59030
+ * Openingquantity
59031
+ * @default 0
59032
+ */
59033
+ openingQuantity: number;
59034
+ /**
59035
+ * @default {
59036
+ * "opening_quantity": 0,
59037
+ * "inward_movements": 0,
59038
+ * "outward_movements": 0,
59039
+ * "closing_quantity": 0
59040
+ * }
59041
+ */
59042
+ unpacked: components["schemas"]["DetailedMovementSummarySchema"];
59043
+ /**
59044
+ * @default {
59045
+ * "opening_quantity": 0,
59046
+ * "inward_movements": 0,
59047
+ * "outward_movements": 0,
59048
+ * "closing_quantity": 0
59049
+ * }
59050
+ */
59051
+ packed: components["schemas"]["DetailedMovementSummarySchema"];
59052
+ /**
59053
+ * Closingquantity
59054
+ * @default 0
59055
+ */
59056
+ closingQuantity: number;
59057
+ /**
59058
+ * Totalinward
59059
+ * @default 0
59060
+ */
59061
+ totalInward: number;
59062
+ /**
59063
+ * Totaloutward
59064
+ * @default 0
59065
+ */
59066
+ totalOutward: number;
59067
+ };
59066
59068
  /** UnpackedMovementsGroupSchema */
59067
59069
  UnpackedMovementsGroupSchema: {
59068
59070
  unitOfMeasure: components["schemas"]["UnitOfMeasureSchema"];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1860",
3
+ "version": "1.0.1861",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],