@vrplatform/api 1.2.33-stage.863 → 1.2.33-stage.865
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.
|
@@ -2121,6 +2121,7 @@ export interface components {
|
|
|
2121
2121
|
* "id": "netIncome",
|
|
2122
2122
|
* "title": "Net Income",
|
|
2123
2123
|
* "total": 10879029,
|
|
2124
|
+
* "totalPercentage": 52.3,
|
|
2124
2125
|
* "computedValues": [
|
|
2125
2126
|
* {
|
|
2126
2127
|
* "id": "2025",
|
|
@@ -2134,6 +2135,7 @@ export interface components {
|
|
|
2134
2135
|
* "id": "netOperatingIncome",
|
|
2135
2136
|
* "title": "Net Operating Income",
|
|
2136
2137
|
* "total": 5678901,
|
|
2138
|
+
* "totalPercentage": 26.1,
|
|
2137
2139
|
* "computedValues": [
|
|
2138
2140
|
* {
|
|
2139
2141
|
* "id": "2025",
|
|
@@ -2147,6 +2149,7 @@ export interface components {
|
|
|
2147
2149
|
* "id": "revenue",
|
|
2148
2150
|
* "title": "Revenue",
|
|
2149
2151
|
* "total": 10879029,
|
|
2152
|
+
* "totalPercentage": 52.3,
|
|
2150
2153
|
* "values": [
|
|
2151
2154
|
* {
|
|
2152
2155
|
* "id": "2025",
|
|
@@ -2160,6 +2163,7 @@ export interface components {
|
|
|
2160
2163
|
* "id": "cat-revenue-rents",
|
|
2161
2164
|
* "title": "Revenue - Rents",
|
|
2162
2165
|
* "total": 10879029,
|
|
2166
|
+
* "totalPercentage": 52.3,
|
|
2163
2167
|
* "accounts": [
|
|
2164
2168
|
* {
|
|
2165
2169
|
* "id": "18580972-de27-4df2-99d5-7c6888419bf9",
|
|
@@ -2187,6 +2191,7 @@ export interface components {
|
|
|
2187
2191
|
id: string;
|
|
2188
2192
|
title: string;
|
|
2189
2193
|
total: number;
|
|
2194
|
+
totalPercentage?: number;
|
|
2190
2195
|
values?: components["schemas"]["ProfitAndLossValueCell"][];
|
|
2191
2196
|
computedValues?: components["schemas"]["ProfitAndLossValueCell"][];
|
|
2192
2197
|
categories?: components["schemas"]["ProfitAndLossCategory"][];
|
|
@@ -2211,6 +2216,7 @@ export interface components {
|
|
|
2211
2216
|
* "id": "cat-revenue-rents",
|
|
2212
2217
|
* "title": "Revenue - Rents",
|
|
2213
2218
|
* "total": 10879029,
|
|
2219
|
+
* "totalPercentage": 52.3,
|
|
2214
2220
|
* "accounts": [
|
|
2215
2221
|
* {
|
|
2216
2222
|
* "id": "18580972-de27-4df2-99d5-7c6888419bf9",
|
|
@@ -2232,6 +2238,7 @@ export interface components {
|
|
|
2232
2238
|
id: string;
|
|
2233
2239
|
title: string;
|
|
2234
2240
|
total: number;
|
|
2241
|
+
totalPercentage?: number;
|
|
2235
2242
|
accounts: components["schemas"]["ProfitAndLossAccount"][];
|
|
2236
2243
|
};
|
|
2237
2244
|
/**
|
|
@@ -19118,17 +19125,30 @@ export interface operations {
|
|
|
19118
19125
|
/** @enum {string} */
|
|
19119
19126
|
status: "completed" | "failed";
|
|
19120
19127
|
message: string;
|
|
19121
|
-
|
|
19122
|
-
|
|
19123
|
-
|
|
19124
|
-
|
|
19125
|
-
|
|
19126
|
-
|
|
19127
|
-
|
|
19128
|
-
|
|
19129
|
-
|
|
19130
|
-
|
|
19131
|
-
}
|
|
19128
|
+
/** @enum {string} */
|
|
19129
|
+
type: "reservation";
|
|
19130
|
+
/** Format: uuid */
|
|
19131
|
+
reservationId: string;
|
|
19132
|
+
} | {
|
|
19133
|
+
/** Format: uuid */
|
|
19134
|
+
id: string;
|
|
19135
|
+
/** @enum {string} */
|
|
19136
|
+
status: "completed" | "failed";
|
|
19137
|
+
message: string;
|
|
19138
|
+
/** @enum {string} */
|
|
19139
|
+
type: "listing";
|
|
19140
|
+
/** Format: uuid */
|
|
19141
|
+
listingId: string;
|
|
19142
|
+
} | {
|
|
19143
|
+
/** Format: uuid */
|
|
19144
|
+
id: string;
|
|
19145
|
+
/** @enum {string} */
|
|
19146
|
+
status: "completed" | "failed";
|
|
19147
|
+
message: string;
|
|
19148
|
+
/** @enum {string} */
|
|
19149
|
+
type: "payout";
|
|
19150
|
+
/** Format: uuid */
|
|
19151
|
+
paymentId: string;
|
|
19132
19152
|
};
|
|
19133
19153
|
};
|
|
19134
19154
|
};
|
|
@@ -24900,6 +24920,7 @@ export interface operations {
|
|
|
24900
24920
|
* "id": "netIncome",
|
|
24901
24921
|
* "title": "Net Income",
|
|
24902
24922
|
* "total": 10879029,
|
|
24923
|
+
* "totalPercentage": 52.3,
|
|
24903
24924
|
* "computedValues": [
|
|
24904
24925
|
* {
|
|
24905
24926
|
* "id": "2025",
|
|
@@ -24913,6 +24934,7 @@ export interface operations {
|
|
|
24913
24934
|
* "id": "netOperatingIncome",
|
|
24914
24935
|
* "title": "Net Operating Income",
|
|
24915
24936
|
* "total": 5678901,
|
|
24937
|
+
* "totalPercentage": 26.1,
|
|
24916
24938
|
* "computedValues": [
|
|
24917
24939
|
* {
|
|
24918
24940
|
* "id": "2025",
|
|
@@ -24926,6 +24948,7 @@ export interface operations {
|
|
|
24926
24948
|
* "id": "revenue",
|
|
24927
24949
|
* "title": "Revenue",
|
|
24928
24950
|
* "total": 10879029,
|
|
24951
|
+
* "totalPercentage": 52.3,
|
|
24929
24952
|
* "values": [
|
|
24930
24953
|
* {
|
|
24931
24954
|
* "id": "2025",
|
|
@@ -24939,6 +24962,7 @@ export interface operations {
|
|
|
24939
24962
|
* "id": "cat-revenue-rents",
|
|
24940
24963
|
* "title": "Revenue - Rents",
|
|
24941
24964
|
* "total": 10879029,
|
|
24965
|
+
* "totalPercentage": 52.3,
|
|
24942
24966
|
* "accounts": [
|
|
24943
24967
|
* {
|
|
24944
24968
|
* "id": "18580972-de27-4df2-99d5-7c6888419bf9",
|