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

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.
@@ -1769,24 +1769,63 @@ export interface components {
1769
1769
  }[];
1770
1770
  };
1771
1771
  /** @example {
1772
- * "id": "netOperatingIncome",
1773
- * "title": "Net Operating Income",
1774
- * "total": 1234.56,
1775
- * "classifications": [
1772
+ * "id": "netIncome",
1773
+ * "title": "Net Income",
1774
+ * "total": 10879029,
1775
+ * "computedValues": [
1776
1776
  * {
1777
- * "id": "revenue",
1778
- * "title": "Revenue",
1779
- * "total": 2345.67,
1780
- * "values": [
1777
+ * "id": "2025",
1778
+ * "title": "2025",
1779
+ * "total": 10879029,
1780
+ * "percentage": 52.3
1781
+ * }
1782
+ * ],
1783
+ * "groups": [
1784
+ * {
1785
+ * "id": "netOperatingIncome",
1786
+ * "title": "Net Operating Income",
1787
+ * "total": 5678901,
1788
+ * "computedValues": [
1781
1789
  * {
1782
1790
  * "id": "2025",
1783
1791
  * "title": "2025",
1792
+ * "total": 5678901,
1793
+ * "percentage": 26.1
1794
+ * }
1795
+ * ],
1796
+ * "groups": [
1797
+ * {
1798
+ * "id": "revenue",
1799
+ * "title": "Revenue",
1784
1800
  * "total": 10879029,
1785
- * "accounts": [
1801
+ * "values": [
1786
1802
  * {
1787
- * "id": "18580972-de27-4df2-99d5-7c6888419bf9",
1788
- * "title": "Rents",
1789
- * "total": 10879029
1803
+ * "id": "2025",
1804
+ * "title": "2025",
1805
+ * "total": 10879029,
1806
+ * "percentage": 52.3
1807
+ * }
1808
+ * ],
1809
+ * "categories": [
1810
+ * {
1811
+ * "id": "cat-revenue-rents",
1812
+ * "title": "Revenue - Rents",
1813
+ * "total": 10879029,
1814
+ * "accounts": [
1815
+ * {
1816
+ * "id": "18580972-de27-4df2-99d5-7c6888419bf9",
1817
+ * "title": "Rents",
1818
+ * "total": 10879029,
1819
+ * "values": [
1820
+ * {
1821
+ * "id": "2025",
1822
+ * "title": "2025",
1823
+ * "total": 10879029,
1824
+ * "percentage": 52.3
1825
+ * }
1826
+ * ]
1827
+ * }
1828
+ * ]
1790
1829
  * }
1791
1830
  * ]
1792
1831
  * }
@@ -1794,44 +1833,71 @@ export interface components {
1794
1833
  * }
1795
1834
  * ]
1796
1835
  * } */
1797
- ProfitAndLossCategoryRow: {
1836
+ ProfitAndLossGroup: {
1798
1837
  id: string;
1799
1838
  title: string;
1800
1839
  total: number;
1801
- classifications: components["schemas"]["ProfitAndLossCategoryRow"][];
1802
- } | {
1840
+ values?: components["schemas"]["ProfitAndLossValueCell"][];
1841
+ computedValues?: components["schemas"]["ProfitAndLossValueCell"][];
1842
+ categories?: components["schemas"]["ProfitAndLossCategory"][];
1843
+ groups?: components["schemas"]["ProfitAndLossGroup"][];
1844
+ };
1845
+ /** @example {
1846
+ * "id": "2025",
1847
+ * "title": "2025",
1848
+ * "total": 10879029,
1849
+ * "percentage": 52.3
1850
+ * } */
1851
+ ProfitAndLossValueCell: {
1803
1852
  id: string;
1804
1853
  title: string;
1805
1854
  total: number;
1806
- values: components["schemas"]["ProfitAndLossValueCell"][];
1855
+ percentage?: number;
1807
1856
  };
1808
1857
  /** @example {
1809
- * "id": "2025",
1810
- * "title": "2025",
1858
+ * "id": "cat-revenue-rents",
1859
+ * "title": "Revenue - Rents",
1811
1860
  * "total": 10879029,
1812
1861
  * "accounts": [
1813
1862
  * {
1814
1863
  * "id": "18580972-de27-4df2-99d5-7c6888419bf9",
1815
1864
  * "title": "Rents",
1816
- * "total": 10879029
1865
+ * "total": 10879029,
1866
+ * "values": [
1867
+ * {
1868
+ * "id": "2025",
1869
+ * "title": "2025",
1870
+ * "total": 10879029,
1871
+ * "percentage": 52.3
1872
+ * }
1873
+ * ]
1817
1874
  * }
1818
1875
  * ]
1819
1876
  * } */
1820
- ProfitAndLossValueCell: {
1877
+ ProfitAndLossCategory: {
1821
1878
  id: string;
1822
1879
  title: string;
1823
1880
  total: number;
1824
- accounts?: components["schemas"]["ProfitAndLossValueAccountCell"][];
1881
+ accounts: components["schemas"]["ProfitAndLossAccount"][];
1825
1882
  };
1826
1883
  /** @example {
1827
1884
  * "id": "18580972-de27-4df2-99d5-7c6888419bf9",
1828
1885
  * "title": "Rents",
1829
- * "total": 10879029
1886
+ * "total": 10879029,
1887
+ * "values": [
1888
+ * {
1889
+ * "id": "2025",
1890
+ * "title": "2025",
1891
+ * "total": 10879029,
1892
+ * "percentage": 52.3
1893
+ * }
1894
+ * ]
1830
1895
  * } */
1831
- ProfitAndLossValueAccountCell: {
1896
+ ProfitAndLossAccount: {
1832
1897
  id: string;
1833
1898
  title: string;
1834
1899
  total: number;
1900
+ values: components["schemas"]["ProfitAndLossValueCell"][];
1835
1901
  };
1836
1902
  };
1837
1903
  responses: never;
@@ -6141,7 +6207,7 @@ export interface operations {
6141
6207
  data: {
6142
6208
  /** Format: uuid */
6143
6209
  listingId: string;
6144
- /** @default 2025-10-09 */
6210
+ /** @default 2025-10-11 */
6145
6211
  startAt: string;
6146
6212
  endAt?: string | null;
6147
6213
  setListingInactive?: boolean | null;
@@ -6223,7 +6289,7 @@ export interface operations {
6223
6289
  "application/json": {
6224
6290
  /** Format: uuid */
6225
6291
  listingId: string;
6226
- /** @default 2025-10-09 */
6292
+ /** @default 2025-10-11 */
6227
6293
  startAt?: string;
6228
6294
  endAt?: string | null;
6229
6295
  members: {
@@ -6257,7 +6323,7 @@ export interface operations {
6257
6323
  "application/json": {
6258
6324
  /** Format: uuid */
6259
6325
  listingId: string;
6260
- /** @default 2025-10-09 */
6326
+ /** @default 2025-10-11 */
6261
6327
  startAt: string;
6262
6328
  endAt?: string | null;
6263
6329
  setListingInactive?: boolean | null;
@@ -6337,7 +6403,7 @@ export interface operations {
6337
6403
  "application/json": {
6338
6404
  /** Format: uuid */
6339
6405
  listingId: string;
6340
- /** @default 2025-10-09 */
6406
+ /** @default 2025-10-11 */
6341
6407
  startAt: string;
6342
6408
  endAt?: string | null;
6343
6409
  setListingInactive?: boolean | null;
@@ -6420,7 +6486,7 @@ export interface operations {
6420
6486
  "application/json": {
6421
6487
  /** Format: uuid */
6422
6488
  listingId?: string;
6423
- /** @default 2025-10-09 */
6489
+ /** @default 2025-10-11 */
6424
6490
  startAt?: string;
6425
6491
  endAt?: string | null;
6426
6492
  members?: {
@@ -6449,7 +6515,7 @@ export interface operations {
6449
6515
  "application/json": {
6450
6516
  /** Format: uuid */
6451
6517
  listingId: string;
6452
- /** @default 2025-10-09 */
6518
+ /** @default 2025-10-11 */
6453
6519
  startAt: string;
6454
6520
  endAt?: string | null;
6455
6521
  setListingInactive?: boolean | null;
@@ -6635,7 +6701,7 @@ export interface operations {
6635
6701
  /** Format: uuid */
6636
6702
  sourceId?: string | null;
6637
6703
  initialOwnership?: {
6638
- /** @default 2025-10-09 */
6704
+ /** @default 2025-10-11 */
6639
6705
  startAt?: string;
6640
6706
  endAt?: string | null;
6641
6707
  members: {
@@ -6693,7 +6759,7 @@ export interface operations {
6693
6759
  status: "active" | "inactive";
6694
6760
  defaultCurrency?: string | null;
6695
6761
  activeOwnership?: {
6696
- /** @default 2025-10-09 */
6762
+ /** @default 2025-10-11 */
6697
6763
  startAt: string;
6698
6764
  endAt?: string | null;
6699
6765
  setListingInactive?: boolean | null;
@@ -6934,7 +7000,7 @@ export interface operations {
6934
7000
  status: "active" | "inactive";
6935
7001
  defaultCurrency?: string | null;
6936
7002
  activeOwnership?: {
6937
- /** @default 2025-10-09 */
7003
+ /** @default 2025-10-11 */
6938
7004
  startAt: string;
6939
7005
  endAt?: string | null;
6940
7006
  setListingInactive?: boolean | null;
@@ -7073,7 +7139,7 @@ export interface operations {
7073
7139
  /** Format: uuid */
7074
7140
  sourceId?: string | null;
7075
7141
  initialOwnership?: {
7076
- /** @default 2025-10-09 */
7142
+ /** @default 2025-10-11 */
7077
7143
  startAt?: string;
7078
7144
  endAt?: string | null;
7079
7145
  members: {
@@ -7127,7 +7193,7 @@ export interface operations {
7127
7193
  status: "active" | "inactive";
7128
7194
  defaultCurrency?: string | null;
7129
7195
  activeOwnership?: {
7130
- /** @default 2025-10-09 */
7196
+ /** @default 2025-10-11 */
7131
7197
  startAt: string;
7132
7198
  endAt?: string | null;
7133
7199
  setListingInactive?: boolean | null;
@@ -7344,7 +7410,7 @@ export interface operations {
7344
7410
  status: "active" | "inactive";
7345
7411
  defaultCurrency?: string | null;
7346
7412
  activeOwnership?: {
7347
- /** @default 2025-10-09 */
7413
+ /** @default 2025-10-11 */
7348
7414
  startAt: string;
7349
7415
  endAt?: string | null;
7350
7416
  setListingInactive?: boolean | null;
@@ -7491,7 +7557,7 @@ export interface operations {
7491
7557
  /** Format: uuid */
7492
7558
  sourceId?: string | null;
7493
7559
  initialOwnership?: {
7494
- /** @default 2025-10-09 */
7560
+ /** @default 2025-10-11 */
7495
7561
  startAt?: string;
7496
7562
  endAt?: string | null;
7497
7563
  members: {
@@ -7545,7 +7611,7 @@ export interface operations {
7545
7611
  status: "active" | "inactive";
7546
7612
  defaultCurrency?: string | null;
7547
7613
  activeOwnership?: {
7548
- /** @default 2025-10-09 */
7614
+ /** @default 2025-10-11 */
7549
7615
  startAt: string;
7550
7616
  endAt?: string | null;
7551
7617
  setListingInactive?: boolean | null;
@@ -22978,36 +23044,62 @@ export interface operations {
22978
23044
  };
22979
23045
  content: {
22980
23046
  "application/json": {
22981
- data: {
22982
- id: string;
22983
- title: string;
22984
- classifications: components["schemas"]["ProfitAndLossCategoryRow"][];
22985
- total: number;
22986
- }[];
22987
23047
  /** @example {
22988
- * "id": "netOperatingIncome",
22989
- * "title": "Net Operating Income",
22990
- * "total": 1234.56,
22991
- * "classifications": [
23048
+ * "id": "netIncome",
23049
+ * "title": "Net Income",
23050
+ * "total": 10879029,
23051
+ * "computedValues": [
23052
+ * {
23053
+ * "id": "2025",
23054
+ * "title": "2025",
23055
+ * "total": 10879029,
23056
+ * "percentage": 52.3
23057
+ * }
23058
+ * ],
23059
+ * "groups": [
22992
23060
  * {
22993
23061
  * "id": "netOperatingIncome",
22994
23062
  * "title": "Net Operating Income",
22995
- * "total": 1234.56,
22996
- * "classifications": [
23063
+ * "total": 5678901,
23064
+ * "computedValues": [
23065
+ * {
23066
+ * "id": "2025",
23067
+ * "title": "2025",
23068
+ * "total": 5678901,
23069
+ * "percentage": 26.1
23070
+ * }
23071
+ * ],
23072
+ * "groups": [
22997
23073
  * {
22998
23074
  * "id": "revenue",
22999
23075
  * "title": "Revenue",
23000
- * "total": 2345.67,
23076
+ * "total": 10879029,
23001
23077
  * "values": [
23002
23078
  * {
23003
23079
  * "id": "2025",
23004
23080
  * "title": "2025",
23005
23081
  * "total": 10879029,
23082
+ * "percentage": 52.3
23083
+ * }
23084
+ * ],
23085
+ * "categories": [
23086
+ * {
23087
+ * "id": "cat-revenue-rents",
23088
+ * "title": "Revenue - Rents",
23089
+ * "total": 10879029,
23006
23090
  * "accounts": [
23007
23091
  * {
23008
23092
  * "id": "18580972-de27-4df2-99d5-7c6888419bf9",
23009
23093
  * "title": "Rents",
23010
- * "total": 10879029
23094
+ * "total": 10879029,
23095
+ * "values": [
23096
+ * {
23097
+ * "id": "2025",
23098
+ * "title": "2025",
23099
+ * "total": 10879029,
23100
+ * "percentage": 52.3
23101
+ * }
23102
+ * ]
23011
23103
  * }
23012
23104
  * ]
23013
23105
  * }
@@ -23017,12 +23109,7 @@ export interface operations {
23017
23109
  * }
23018
23110
  * ]
23019
23111
  * } */
23020
- netIncome?: {
23021
- id: string;
23022
- title: string;
23023
- classifications: components["schemas"]["ProfitAndLossCategoryRow"][];
23024
- total: number;
23025
- } | null;
23112
+ netIncome: components["schemas"]["ProfitAndLossGroup"] | null;
23026
23113
  };
23027
23114
  };
23028
23115
  };