@vrplatform/api 1.2.33-stage.740 → 1.2.33-stage.741

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.2.33-stage.740",
6
+ "version": "1.2.33-stage.741",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -1769,6 +1769,32 @@ export interface components {
1769
1769
  message: string;
1770
1770
  }[];
1771
1771
  };
1772
+ /** @example {
1773
+ * "id": "netOperatingIncome",
1774
+ * "title": "Net Operating Income",
1775
+ * "total": 1234.56,
1776
+ * "classifications": [
1777
+ * {
1778
+ * "id": "revenue",
1779
+ * "title": "Revenue",
1780
+ * "total": 2345.67,
1781
+ * "values": [
1782
+ * {
1783
+ * "id": "2025",
1784
+ * "title": "2025",
1785
+ * "total": 10879029,
1786
+ * "accounts": [
1787
+ * {
1788
+ * "id": "18580972-de27-4df2-99d5-7c6888419bf9",
1789
+ * "title": "Rents",
1790
+ * "total": 10879029
1791
+ * }
1792
+ * ]
1793
+ * }
1794
+ * ]
1795
+ * }
1796
+ * ]
1797
+ * } */
1772
1798
  ProfitAndLossCategoryRow: {
1773
1799
  id: string;
1774
1800
  title: string;
@@ -1778,16 +1804,35 @@ export interface components {
1778
1804
  id: string;
1779
1805
  title: string;
1780
1806
  total: number;
1781
- values: {
1782
- id: string;
1783
- title: string;
1784
- total: number;
1785
- accounts?: {
1786
- id: string;
1787
- title: string;
1788
- total: number;
1789
- }[];
1790
- }[];
1807
+ values: components["schemas"]["ProfitAndLossValueCell"][];
1808
+ };
1809
+ /** @example {
1810
+ * "id": "2025",
1811
+ * "title": "2025",
1812
+ * "total": 10879029,
1813
+ * "accounts": [
1814
+ * {
1815
+ * "id": "18580972-de27-4df2-99d5-7c6888419bf9",
1816
+ * "title": "Rents",
1817
+ * "total": 10879029
1818
+ * }
1819
+ * ]
1820
+ * } */
1821
+ ProfitAndLossValueCell: {
1822
+ id: string;
1823
+ title: string;
1824
+ total: number;
1825
+ accounts?: components["schemas"]["ProfitAndLossValueAccountCell"][];
1826
+ };
1827
+ /** @example {
1828
+ * "id": "18580972-de27-4df2-99d5-7c6888419bf9",
1829
+ * "title": "Rents",
1830
+ * "total": 10879029
1831
+ * } */
1832
+ ProfitAndLossValueAccountCell: {
1833
+ id: string;
1834
+ title: string;
1835
+ total: number;
1791
1836
  };
1792
1837
  };
1793
1838
  responses: never;
@@ -22940,6 +22985,39 @@ export interface operations {
22940
22985
  classifications: components["schemas"]["ProfitAndLossCategoryRow"][];
22941
22986
  total: number;
22942
22987
  }[];
22988
+ /** @example {
22989
+ * "id": "netOperatingIncome",
22990
+ * "title": "Net Operating Income",
22991
+ * "total": 1234.56,
22992
+ * "classifications": [
22993
+ * {
22994
+ * "id": "netOperatingIncome",
22995
+ * "title": "Net Operating Income",
22996
+ * "total": 1234.56,
22997
+ * "classifications": [
22998
+ * {
22999
+ * "id": "revenue",
23000
+ * "title": "Revenue",
23001
+ * "total": 2345.67,
23002
+ * "values": [
23003
+ * {
23004
+ * "id": "2025",
23005
+ * "title": "2025",
23006
+ * "total": 10879029,
23007
+ * "accounts": [
23008
+ * {
23009
+ * "id": "18580972-de27-4df2-99d5-7c6888419bf9",
23010
+ * "title": "Rents",
23011
+ * "total": 10879029
23012
+ * }
23013
+ * ]
23014
+ * }
23015
+ * ]
23016
+ * }
23017
+ * ]
23018
+ * }
23019
+ * ]
23020
+ * } */
22943
23021
  netIncome?: {
22944
23022
  id: string;
22945
23023
  title: string;