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