@vrplatform/api 1.2.33-stage.745 → 1.2.33-stage.748

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,69 +1769,135 @@ export interface components {
1769
1769
  }[];
1770
1770
  };
1771
1771
  /** @example {
1772
- * "id": "netOperatingIncome",
1773
- * "title": "Net Operating Income",
1774
- * "total": 1234.56,
1775
- * "values": [
1772
+ * "id": "netIncome",
1773
+ * "title": "Net Income",
1774
+ * "total": 10879029,
1775
+ * "computedValues": [
1776
1776
  * {
1777
1777
  * "id": "2025",
1778
1778
  * "title": "2025",
1779
1779
  * "total": 10879029,
1780
- * "percentage": 52.3,
1781
- * "accounts": [
1780
+ * "percentage": 52.3
1781
+ * }
1782
+ * ],
1783
+ * "groups": [
1784
+ * {
1785
+ * "id": "netOperatingIncome",
1786
+ * "title": "Net Operating Income",
1787
+ * "total": 5678901,
1788
+ * "computedValues": [
1782
1789
  * {
1783
- * "id": "18580972-de27-4df2-99d5-7c6888419bf9",
1784
- * "title": "Rents",
1785
- * "total": 10879029
1790
+ * "id": "2025",
1791
+ * "title": "2025",
1792
+ * "total": 5678901,
1793
+ * "percentage": 26.1
1794
+ * }
1795
+ * ],
1796
+ * "groups": [
1797
+ * {
1798
+ * "id": "revenue",
1799
+ * "title": "Revenue",
1800
+ * "total": 10879029,
1801
+ * "values": [
1802
+ * {
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
+ * ]
1829
+ * }
1830
+ * ]
1786
1831
  * }
1787
1832
  * ]
1788
1833
  * }
1789
- * ],
1790
- * "classifications": []
1834
+ * ]
1791
1835
  * } */
1792
- ProfitAndLossCategoryRow: {
1836
+ ProfitAndLossGroup: {
1793
1837
  id: string;
1794
1838
  title: string;
1795
1839
  total: number;
1796
1840
  values?: components["schemas"]["ProfitAndLossValueCell"][];
1797
- computedValues?: {
1798
- id: string;
1799
- title: string;
1800
- total: number;
1801
- percentage: number;
1802
- accounts?: components["schemas"]["ProfitAndLossValueAccountCell"][];
1803
- }[];
1804
- classifications?: components["schemas"]["ProfitAndLossCategoryRow"][];
1841
+ computedValues?: components["schemas"]["ProfitAndLossValueCell"][];
1842
+ categories?: components["schemas"]["ProfitAndLossCategory"][];
1843
+ groups?: components["schemas"]["ProfitAndLossGroup"][];
1805
1844
  };
1806
1845
  /** @example {
1807
1846
  * "id": "2025",
1808
1847
  * "title": "2025",
1809
1848
  * "total": 10879029,
1810
- * "percentage": 52.3,
1849
+ * "percentage": 52.3
1850
+ * } */
1851
+ ProfitAndLossValueCell: {
1852
+ id: string;
1853
+ title: string;
1854
+ total: number;
1855
+ percentage?: number;
1856
+ };
1857
+ /** @example {
1858
+ * "id": "cat-revenue-rents",
1859
+ * "title": "Revenue - Rents",
1860
+ * "total": 10879029,
1811
1861
  * "accounts": [
1812
1862
  * {
1813
1863
  * "id": "18580972-de27-4df2-99d5-7c6888419bf9",
1814
1864
  * "title": "Rents",
1815
- * "total": 10879029
1865
+ * "total": 10879029,
1866
+ * "values": [
1867
+ * {
1868
+ * "id": "2025",
1869
+ * "title": "2025",
1870
+ * "total": 10879029,
1871
+ * "percentage": 52.3
1872
+ * }
1873
+ * ]
1816
1874
  * }
1817
1875
  * ]
1818
1876
  * } */
1819
- ProfitAndLossValueCell: {
1877
+ ProfitAndLossCategory: {
1820
1878
  id: string;
1821
1879
  title: string;
1822
1880
  total: number;
1823
- accounts?: components["schemas"]["ProfitAndLossValueAccountCell"][];
1824
- percentage?: number;
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-10 */
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-10 */
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-10 */
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-10 */
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-10 */
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-10 */
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-10 */
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-10 */
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-10 */
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-10 */
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-10 */
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-10 */
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-10 */
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-10 */
7614
+ /** @default 2025-10-11 */
7549
7615
  startAt: string;
7550
7616
  endAt?: string | null;
7551
7617
  setListingInactive?: boolean | null;
@@ -11900,6 +11966,27 @@ export interface operations {
11900
11966
  severity: "warning";
11901
11967
  context: Record<string, never>;
11902
11968
  message: string;
11969
+ } | {
11970
+ /** @enum {string} */
11971
+ code: "netRevenueMismatch";
11972
+ /** @enum {string} */
11973
+ severity: "warning";
11974
+ context: Record<string, never>;
11975
+ message: string;
11976
+ } | {
11977
+ /** @enum {string} */
11978
+ code: "expensesMismatch";
11979
+ /** @enum {string} */
11980
+ severity: "warning";
11981
+ context: Record<string, never>;
11982
+ message: string;
11983
+ } | {
11984
+ /** @enum {string} */
11985
+ code: "transfersMismatch";
11986
+ /** @enum {string} */
11987
+ severity: "warning";
11988
+ context: Record<string, never>;
11989
+ message: string;
11903
11990
  } | {
11904
11991
  /** @enum {string} */
11905
11992
  code: "previousMonthJournalEntries";
@@ -12317,6 +12404,27 @@ export interface operations {
12317
12404
  severity: "warning";
12318
12405
  context: Record<string, never>;
12319
12406
  message: string;
12407
+ } | {
12408
+ /** @enum {string} */
12409
+ code: "netRevenueMismatch";
12410
+ /** @enum {string} */
12411
+ severity: "warning";
12412
+ context: Record<string, never>;
12413
+ message: string;
12414
+ } | {
12415
+ /** @enum {string} */
12416
+ code: "expensesMismatch";
12417
+ /** @enum {string} */
12418
+ severity: "warning";
12419
+ context: Record<string, never>;
12420
+ message: string;
12421
+ } | {
12422
+ /** @enum {string} */
12423
+ code: "transfersMismatch";
12424
+ /** @enum {string} */
12425
+ severity: "warning";
12426
+ context: Record<string, never>;
12427
+ message: string;
12320
12428
  } | {
12321
12429
  /** @enum {string} */
12322
12430
  code: "previousMonthJournalEntries";
@@ -12748,6 +12856,27 @@ export interface operations {
12748
12856
  severity: "warning";
12749
12857
  context: Record<string, never>;
12750
12858
  message: string;
12859
+ } | {
12860
+ /** @enum {string} */
12861
+ code: "netRevenueMismatch";
12862
+ /** @enum {string} */
12863
+ severity: "warning";
12864
+ context: Record<string, never>;
12865
+ message: string;
12866
+ } | {
12867
+ /** @enum {string} */
12868
+ code: "expensesMismatch";
12869
+ /** @enum {string} */
12870
+ severity: "warning";
12871
+ context: Record<string, never>;
12872
+ message: string;
12873
+ } | {
12874
+ /** @enum {string} */
12875
+ code: "transfersMismatch";
12876
+ /** @enum {string} */
12877
+ severity: "warning";
12878
+ context: Record<string, never>;
12879
+ message: string;
12751
12880
  } | {
12752
12881
  /** @enum {string} */
12753
12882
  code: "previousMonthJournalEntries";
@@ -13255,6 +13384,27 @@ export interface operations {
13255
13384
  severity: "warning";
13256
13385
  context: Record<string, never>;
13257
13386
  message: string;
13387
+ } | {
13388
+ /** @enum {string} */
13389
+ code: "netRevenueMismatch";
13390
+ /** @enum {string} */
13391
+ severity: "warning";
13392
+ context: Record<string, never>;
13393
+ message: string;
13394
+ } | {
13395
+ /** @enum {string} */
13396
+ code: "expensesMismatch";
13397
+ /** @enum {string} */
13398
+ severity: "warning";
13399
+ context: Record<string, never>;
13400
+ message: string;
13401
+ } | {
13402
+ /** @enum {string} */
13403
+ code: "transfersMismatch";
13404
+ /** @enum {string} */
13405
+ severity: "warning";
13406
+ context: Record<string, never>;
13407
+ message: string;
13258
13408
  } | {
13259
13409
  /** @enum {string} */
13260
13410
  code: "previousMonthJournalEntries";
@@ -13482,6 +13632,27 @@ export interface operations {
13482
13632
  severity: "warning";
13483
13633
  context: Record<string, never>;
13484
13634
  message: string;
13635
+ } | {
13636
+ /** @enum {string} */
13637
+ code: "netRevenueMismatch";
13638
+ /** @enum {string} */
13639
+ severity: "warning";
13640
+ context: Record<string, never>;
13641
+ message: string;
13642
+ } | {
13643
+ /** @enum {string} */
13644
+ code: "expensesMismatch";
13645
+ /** @enum {string} */
13646
+ severity: "warning";
13647
+ context: Record<string, never>;
13648
+ message: string;
13649
+ } | {
13650
+ /** @enum {string} */
13651
+ code: "transfersMismatch";
13652
+ /** @enum {string} */
13653
+ severity: "warning";
13654
+ context: Record<string, never>;
13655
+ message: string;
13485
13656
  } | {
13486
13657
  /** @enum {string} */
13487
13658
  code: "previousMonthJournalEntries";
@@ -22979,56 +23150,71 @@ export interface operations {
22979
23150
  content: {
22980
23151
  "application/json": {
22981
23152
  /** @example {
22982
- * "id": "netOperatingIncome",
22983
- * "title": "Net Operating Income",
22984
- * "total": 1234.56,
22985
- * "values": [
23153
+ * "id": "netIncome",
23154
+ * "title": "Net Income",
23155
+ * "total": 10879029,
23156
+ * "computedValues": [
22986
23157
  * {
22987
23158
  * "id": "2025",
22988
23159
  * "title": "2025",
22989
23160
  * "total": 10879029,
22990
- * "percentage": 52.3,
22991
- * "accounts": [
22992
- * {
22993
- * "id": "18580972-de27-4df2-99d5-7c6888419bf9",
22994
- * "title": "Rents",
22995
- * "total": 10879029
22996
- * }
22997
- * ]
23161
+ * "percentage": 52.3
22998
23162
  * }
22999
23163
  * ],
23000
- * "classifications": [
23164
+ * "groups": [
23001
23165
  * {
23002
23166
  * "id": "netOperatingIncome",
23003
23167
  * "title": "Net Operating Income",
23004
- * "total": 1234.56,
23005
- * "values": [
23168
+ * "total": 5678901,
23169
+ * "computedValues": [
23006
23170
  * {
23007
23171
  * "id": "2025",
23008
23172
  * "title": "2025",
23173
+ * "total": 5678901,
23174
+ * "percentage": 26.1
23175
+ * }
23176
+ * ],
23177
+ * "groups": [
23178
+ * {
23179
+ * "id": "revenue",
23180
+ * "title": "Revenue",
23009
23181
  * "total": 10879029,
23010
- * "percentage": 52.3,
23011
- * "accounts": [
23182
+ * "values": [
23183
+ * {
23184
+ * "id": "2025",
23185
+ * "title": "2025",
23186
+ * "total": 10879029,
23187
+ * "percentage": 52.3
23188
+ * }
23189
+ * ],
23190
+ * "categories": [
23012
23191
  * {
23013
- * "id": "18580972-de27-4df2-99d5-7c6888419bf9",
23014
- * "title": "Rents",
23015
- * "total": 10879029
23192
+ * "id": "cat-revenue-rents",
23193
+ * "title": "Revenue - Rents",
23194
+ * "total": 10879029,
23195
+ * "accounts": [
23196
+ * {
23197
+ * "id": "18580972-de27-4df2-99d5-7c6888419bf9",
23198
+ * "title": "Rents",
23199
+ * "total": 10879029,
23200
+ * "values": [
23201
+ * {
23202
+ * "id": "2025",
23203
+ * "title": "2025",
23204
+ * "total": 10879029,
23205
+ * "percentage": 52.3
23206
+ * }
23207
+ * ]
23208
+ * }
23209
+ * ]
23016
23210
  * }
23017
23211
  * ]
23018
23212
  * }
23019
- * ],
23020
- * "classifications": []
23213
+ * ]
23021
23214
  * }
23022
23215
  * ]
23023
23216
  * } */
23024
- netIncome: {
23025
- id: string;
23026
- title: string;
23027
- classifications: components["schemas"]["ProfitAndLossCategoryRow"][];
23028
- total: number;
23029
- values?: components["schemas"]["ProfitAndLossValueCell"][];
23030
- computedValues?: components["schemas"]["ProfitAndLossValueCell"][];
23031
- } | null;
23217
+ netIncome: components["schemas"]["ProfitAndLossGroup"] | null;
23032
23218
  };
23033
23219
  };
23034
23220
  };