@vrplatform/api 1.2.33-stage.739 → 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.
|
@@ -1768,21 +1768,70 @@ 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;
|
|
1774
1800
|
total: number;
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1801
|
+
classifications: components["schemas"]["ProfitAndLossCategoryRow"][];
|
|
1802
|
+
} | {
|
|
1803
|
+
id: string;
|
|
1804
|
+
title: string;
|
|
1805
|
+
total: number;
|
|
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;
|
|
1786
1835
|
};
|
|
1787
1836
|
};
|
|
1788
1837
|
responses: never;
|
|
@@ -22910,11 +22959,9 @@ export interface operations {
|
|
|
22910
22959
|
query?: {
|
|
22911
22960
|
startDate?: string;
|
|
22912
22961
|
endDate?: string;
|
|
22913
|
-
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating" | "netOperatingIncome" | "netIncome")[];
|
|
22914
|
-
categoryIds?: string[];
|
|
22915
|
-
listingIds?: string[];
|
|
22916
22962
|
party?: "manager" | "owners";
|
|
22917
|
-
view?:
|
|
22963
|
+
view?: "party" | "listing" | "month" | "quarter" | "year";
|
|
22964
|
+
listingIds?: string[];
|
|
22918
22965
|
};
|
|
22919
22966
|
header?: {
|
|
22920
22967
|
"X-Team-Id"?: string;
|
|
@@ -22937,6 +22984,39 @@ export interface operations {
|
|
|
22937
22984
|
classifications: components["schemas"]["ProfitAndLossCategoryRow"][];
|
|
22938
22985
|
total: number;
|
|
22939
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
|
+
* } */
|
|
22940
23020
|
netIncome?: {
|
|
22941
23021
|
id: string;
|
|
22942
23022
|
title: string;
|
|
@@ -22998,11 +23078,9 @@ export interface operations {
|
|
|
22998
23078
|
query?: {
|
|
22999
23079
|
startDate?: string;
|
|
23000
23080
|
endDate?: string;
|
|
23001
|
-
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating" | "netOperatingIncome" | "netIncome")[];
|
|
23002
|
-
categoryIds?: string[];
|
|
23003
|
-
listingIds?: string[];
|
|
23004
23081
|
party?: "manager" | "owners";
|
|
23005
|
-
view?:
|
|
23082
|
+
view?: "party" | "listing" | "month" | "quarter" | "year";
|
|
23083
|
+
listingIds?: string[];
|
|
23006
23084
|
};
|
|
23007
23085
|
header?: {
|
|
23008
23086
|
"X-Team-Id"?: string;
|