@erp-galoper/main-package 1.0.45 → 1.0.46

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 +1 -13
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -994,18 +994,6 @@ export interface components {
994
994
  * @enum {string}
995
995
  */
996
996
  PeriodType: "thisMonth" | "thisYear" | "lastMonth" | "lastYear" | "custom";
997
- /** SubRowsSchema */
998
- SubRowsSchema: {
999
- /** Title */
1000
- title: string;
1001
- /** Type */
1002
- type: string;
1003
- /** Usd */
1004
- usd?: number | null;
1005
- /** Company */
1006
- company?: number | null;
1007
- [key: string]: unknown;
1008
- };
1009
997
  /** profitAndLossSchema */
1010
998
  profitAndLossSchema: {
1011
999
  /** Title */
@@ -1020,7 +1008,7 @@ export interface components {
1020
1008
  * Subrows
1021
1009
  * @default []
1022
1010
  */
1023
- subRows?: components["schemas"]["SubRowsSchema"][] | null;
1011
+ subRows?: components["schemas"]["profitAndLossSchema"][] | null;
1024
1012
  [key: string]: unknown;
1025
1013
  };
1026
1014
  /** CurrencyList */
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@erp-galoper/main-package",
3
- "version": "1.0.45",
3
+ "version": "1.0.46",
4
4
  "main": "openapi.ts"
5
5
  }