@vrplatform/api 1.3.0-stage.1169 → 1.3.0-stage.1171

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.3.0-stage.1169",
6
+ "version": "1.3.0-stage.1171",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -1563,6 +1563,40 @@ export interface paths {
1563
1563
  patch?: never;
1564
1564
  trace?: never;
1565
1565
  };
1566
+ "/reports/trust-reconciliation/by-listing": {
1567
+ parameters: {
1568
+ query?: never;
1569
+ header?: never;
1570
+ path?: never;
1571
+ cookie?: never;
1572
+ };
1573
+ /** @description Trust reconciliation grouped by listing */
1574
+ get: operations["getTrustReconciliationReportByListing"];
1575
+ put?: never;
1576
+ post?: never;
1577
+ delete?: never;
1578
+ options?: never;
1579
+ head?: never;
1580
+ patch?: never;
1581
+ trace?: never;
1582
+ };
1583
+ "/reports/trust-reconciliation/by-listing/csv": {
1584
+ parameters: {
1585
+ query?: never;
1586
+ header?: never;
1587
+ path?: never;
1588
+ cookie?: never;
1589
+ };
1590
+ /** @description Trust reconciliation grouped by listing (CSV) */
1591
+ get: operations["getTrustReconciliationReportByListingCsv"];
1592
+ put?: never;
1593
+ post?: never;
1594
+ delete?: never;
1595
+ options?: never;
1596
+ head?: never;
1597
+ patch?: never;
1598
+ trace?: never;
1599
+ };
1566
1600
  "/reports/trust-reconciliation/csv": {
1567
1601
  parameters: {
1568
1602
  query?: never;
@@ -22491,6 +22525,168 @@ export interface operations {
22491
22525
  };
22492
22526
  };
22493
22527
  };
22528
+ getTrustReconciliationReportByListing: {
22529
+ parameters: {
22530
+ query: {
22531
+ endDate: string;
22532
+ listingId?: string;
22533
+ };
22534
+ header?: {
22535
+ "X-Team-Id"?: string;
22536
+ };
22537
+ path?: never;
22538
+ cookie?: never;
22539
+ };
22540
+ requestBody?: never;
22541
+ responses: {
22542
+ /** @description Successful response */
22543
+ 200: {
22544
+ headers: {
22545
+ [name: string]: unknown;
22546
+ };
22547
+ content: {
22548
+ "application/json": {
22549
+ data: {
22550
+ id: string;
22551
+ name: string;
22552
+ total: number;
22553
+ sections: {
22554
+ /** @enum {string} */
22555
+ name: "Owner Balance" | "Other Net Liabilities";
22556
+ total: number;
22557
+ /** @enum {string} */
22558
+ type: "accounts";
22559
+ accounts: {
22560
+ id: string;
22561
+ name: string;
22562
+ categoryId: string;
22563
+ total: number;
22564
+ }[];
22565
+ }[];
22566
+ }[];
22567
+ total: number;
22568
+ };
22569
+ };
22570
+ };
22571
+ /** @description Invalid input data */
22572
+ 400: {
22573
+ headers: {
22574
+ [name: string]: unknown;
22575
+ };
22576
+ content: {
22577
+ "application/json": components["schemas"]["error.BAD_REQUEST"];
22578
+ };
22579
+ };
22580
+ /** @description Authorization not provided */
22581
+ 401: {
22582
+ headers: {
22583
+ [name: string]: unknown;
22584
+ };
22585
+ content: {
22586
+ "application/json": components["schemas"]["error.UNAUTHORIZED"];
22587
+ };
22588
+ };
22589
+ /** @description Insufficient access */
22590
+ 403: {
22591
+ headers: {
22592
+ [name: string]: unknown;
22593
+ };
22594
+ content: {
22595
+ "application/json": components["schemas"]["error.FORBIDDEN"];
22596
+ };
22597
+ };
22598
+ /** @description Not found */
22599
+ 404: {
22600
+ headers: {
22601
+ [name: string]: unknown;
22602
+ };
22603
+ content: {
22604
+ "application/json": components["schemas"]["error.NOT_FOUND"];
22605
+ };
22606
+ };
22607
+ /** @description Internal server error */
22608
+ 500: {
22609
+ headers: {
22610
+ [name: string]: unknown;
22611
+ };
22612
+ content: {
22613
+ "application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
22614
+ };
22615
+ };
22616
+ };
22617
+ };
22618
+ getTrustReconciliationReportByListingCsv: {
22619
+ parameters: {
22620
+ query: {
22621
+ endDate: string;
22622
+ listingId?: string;
22623
+ };
22624
+ header?: {
22625
+ "X-Team-Id"?: string;
22626
+ };
22627
+ path?: never;
22628
+ cookie?: never;
22629
+ };
22630
+ requestBody?: never;
22631
+ responses: {
22632
+ /** @description Successful response */
22633
+ 200: {
22634
+ headers: {
22635
+ [name: string]: unknown;
22636
+ };
22637
+ content: {
22638
+ "application/json": {
22639
+ url: string;
22640
+ };
22641
+ };
22642
+ };
22643
+ /** @description Invalid input data */
22644
+ 400: {
22645
+ headers: {
22646
+ [name: string]: unknown;
22647
+ };
22648
+ content: {
22649
+ "application/json": components["schemas"]["error.BAD_REQUEST"];
22650
+ };
22651
+ };
22652
+ /** @description Authorization not provided */
22653
+ 401: {
22654
+ headers: {
22655
+ [name: string]: unknown;
22656
+ };
22657
+ content: {
22658
+ "application/json": components["schemas"]["error.UNAUTHORIZED"];
22659
+ };
22660
+ };
22661
+ /** @description Insufficient access */
22662
+ 403: {
22663
+ headers: {
22664
+ [name: string]: unknown;
22665
+ };
22666
+ content: {
22667
+ "application/json": components["schemas"]["error.FORBIDDEN"];
22668
+ };
22669
+ };
22670
+ /** @description Not found */
22671
+ 404: {
22672
+ headers: {
22673
+ [name: string]: unknown;
22674
+ };
22675
+ content: {
22676
+ "application/json": components["schemas"]["error.NOT_FOUND"];
22677
+ };
22678
+ };
22679
+ /** @description Internal server error */
22680
+ 500: {
22681
+ headers: {
22682
+ [name: string]: unknown;
22683
+ };
22684
+ content: {
22685
+ "application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
22686
+ };
22687
+ };
22688
+ };
22689
+ };
22494
22690
  getTrustReconciliationReportCsv: {
22495
22691
  parameters: {
22496
22692
  query: {