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

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.
@@ -1768,6 +1768,32 @@ export interface components {
1768
1768
  message: string;
1769
1769
  }[];
1770
1770
  };
1771
+ /** @example {
1772
+ * "id": "netOperatingIncome",
1773
+ * "title": "Net Operating Income",
1774
+ * "total": 1234.56,
1775
+ * "classifications": [
1776
+ * {
1777
+ * "id": "revenue",
1778
+ * "title": "Revenue",
1779
+ * "total": 2345.67,
1780
+ * "values": [
1781
+ * {
1782
+ * "id": "2025",
1783
+ * "title": "2025",
1784
+ * "total": 10879029,
1785
+ * "accounts": [
1786
+ * {
1787
+ * "id": "18580972-de27-4df2-99d5-7c6888419bf9",
1788
+ * "title": "Rents",
1789
+ * "total": 10879029
1790
+ * }
1791
+ * ]
1792
+ * }
1793
+ * ]
1794
+ * }
1795
+ * ]
1796
+ * } */
1771
1797
  ProfitAndLossCategoryRow: {
1772
1798
  id: string;
1773
1799
  title: string;
@@ -1777,16 +1803,35 @@ export interface components {
1777
1803
  id: string;
1778
1804
  title: string;
1779
1805
  total: number;
1780
- values: {
1781
- id: string;
1782
- title: string;
1783
- total: number;
1784
- accounts?: {
1785
- id: string;
1786
- title: string;
1787
- total: number;
1788
- }[];
1789
- }[];
1806
+ values: components["schemas"]["ProfitAndLossValueCell"][];
1807
+ };
1808
+ /** @example {
1809
+ * "id": "2025",
1810
+ * "title": "2025",
1811
+ * "total": 10879029,
1812
+ * "accounts": [
1813
+ * {
1814
+ * "id": "18580972-de27-4df2-99d5-7c6888419bf9",
1815
+ * "title": "Rents",
1816
+ * "total": 10879029
1817
+ * }
1818
+ * ]
1819
+ * } */
1820
+ ProfitAndLossValueCell: {
1821
+ id: string;
1822
+ title: string;
1823
+ total: number;
1824
+ accounts?: components["schemas"]["ProfitAndLossValueAccountCell"][];
1825
+ };
1826
+ /** @example {
1827
+ * "id": "18580972-de27-4df2-99d5-7c6888419bf9",
1828
+ * "title": "Rents",
1829
+ * "total": 10879029
1830
+ * } */
1831
+ ProfitAndLossValueAccountCell: {
1832
+ id: string;
1833
+ title: string;
1834
+ total: number;
1790
1835
  };
1791
1836
  };
1792
1837
  responses: never;
@@ -22916,7 +22961,7 @@ export interface operations {
22916
22961
  endDate?: string;
22917
22962
  party?: "manager" | "owners";
22918
22963
  view?: "party" | "listing" | "month" | "quarter" | "year";
22919
- listingIds?: string[];
22964
+ listingIds?: string;
22920
22965
  };
22921
22966
  header?: {
22922
22967
  "X-Team-Id"?: string;
@@ -22939,6 +22984,39 @@ export interface operations {
22939
22984
  classifications: components["schemas"]["ProfitAndLossCategoryRow"][];
22940
22985
  total: number;
22941
22986
  }[];
22987
+ /** @example {
22988
+ * "id": "netOperatingIncome",
22989
+ * "title": "Net Operating Income",
22990
+ * "total": 1234.56,
22991
+ * "classifications": [
22992
+ * {
22993
+ * "id": "netOperatingIncome",
22994
+ * "title": "Net Operating Income",
22995
+ * "total": 1234.56,
22996
+ * "classifications": [
22997
+ * {
22998
+ * "id": "revenue",
22999
+ * "title": "Revenue",
23000
+ * "total": 2345.67,
23001
+ * "values": [
23002
+ * {
23003
+ * "id": "2025",
23004
+ * "title": "2025",
23005
+ * "total": 10879029,
23006
+ * "accounts": [
23007
+ * {
23008
+ * "id": "18580972-de27-4df2-99d5-7c6888419bf9",
23009
+ * "title": "Rents",
23010
+ * "total": 10879029
23011
+ * }
23012
+ * ]
23013
+ * }
23014
+ * ]
23015
+ * }
23016
+ * ]
23017
+ * }
23018
+ * ]
23019
+ * } */
22942
23020
  netIncome?: {
22943
23021
  id: string;
22944
23022
  title: string;
@@ -23002,7 +23080,7 @@ export interface operations {
23002
23080
  endDate?: string;
23003
23081
  party?: "manager" | "owners";
23004
23082
  view?: "party" | "listing" | "month" | "quarter" | "year";
23005
- listingIds?: string[];
23083
+ listingIds?: string;
23006
23084
  };
23007
23085
  header?: {
23008
23086
  "X-Team-Id"?: string;