@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.
package/package.json
CHANGED
package/src/generated/v1.ts
CHANGED
|
@@ -1769,21 +1769,70 @@ 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;
|
|
1775
1801
|
total: number;
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1802
|
+
classifications: components["schemas"]["ProfitAndLossCategoryRow"][];
|
|
1803
|
+
} | {
|
|
1804
|
+
id: string;
|
|
1805
|
+
title: string;
|
|
1806
|
+
total: number;
|
|
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;
|
|
1787
1836
|
};
|
|
1788
1837
|
};
|
|
1789
1838
|
responses: never;
|
|
@@ -22911,11 +22960,9 @@ export interface operations {
|
|
|
22911
22960
|
query?: {
|
|
22912
22961
|
startDate?: string;
|
|
22913
22962
|
endDate?: string;
|
|
22914
|
-
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating" | "netOperatingIncome" | "netIncome")[];
|
|
22915
|
-
categoryIds?: string[];
|
|
22916
|
-
listingIds?: string[];
|
|
22917
22963
|
party?: "manager" | "owners";
|
|
22918
|
-
view?:
|
|
22964
|
+
view?: "party" | "listing" | "month" | "quarter" | "year";
|
|
22965
|
+
listingIds?: string[];
|
|
22919
22966
|
};
|
|
22920
22967
|
header?: {
|
|
22921
22968
|
"X-Team-Id"?: string;
|
|
@@ -22938,6 +22985,39 @@ export interface operations {
|
|
|
22938
22985
|
classifications: components["schemas"]["ProfitAndLossCategoryRow"][];
|
|
22939
22986
|
total: number;
|
|
22940
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
|
+
* } */
|
|
22941
23021
|
netIncome?: {
|
|
22942
23022
|
id: string;
|
|
22943
23023
|
title: string;
|
|
@@ -22999,11 +23079,9 @@ export interface operations {
|
|
|
22999
23079
|
query?: {
|
|
23000
23080
|
startDate?: string;
|
|
23001
23081
|
endDate?: string;
|
|
23002
|
-
classificationKeys?: ("revenue" | "directCosts" | "operatingExpenses" | "nonOperating" | "netOperatingIncome" | "netIncome")[];
|
|
23003
|
-
categoryIds?: string[];
|
|
23004
|
-
listingIds?: string[];
|
|
23005
23082
|
party?: "manager" | "owners";
|
|
23006
|
-
view?:
|
|
23083
|
+
view?: "party" | "listing" | "month" | "quarter" | "year";
|
|
23084
|
+
listingIds?: string[];
|
|
23007
23085
|
};
|
|
23008
23086
|
header?: {
|
|
23009
23087
|
"X-Team-Id"?: string;
|