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