@vrplatform/api 1.3.1-stage.1734 → 1.3.1-stage.1736

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.
@@ -1279,7 +1279,7 @@ export interface paths {
1279
1279
  path?: never;
1280
1280
  cookie?: never;
1281
1281
  };
1282
- /** @description Owner statement summaries aggregated by contact (per layout, CSV) */
1282
+ /** @description Owner statement summary CSV (per statement layout, combined rows) */
1283
1283
  get: operations["getOwnerStatementSummariesPerLayoutReportCsv"];
1284
1284
  put?: never;
1285
1285
  post?: never;
@@ -1313,7 +1313,7 @@ export interface paths {
1313
1313
  path?: never;
1314
1314
  cookie?: never;
1315
1315
  };
1316
- /** @description Owner statement summary detail aggregated by listing, month, reservation, or booking channel (per layout, CSV) */
1316
+ /** @description Owner statement summary detail CSV (per statement layout, combined rows) */
1317
1317
  get: operations["getOwnerStatementSummaryPerLayoutDetailsReportCsv"];
1318
1318
  put?: never;
1319
1319
  post?: never;
@@ -2051,6 +2051,23 @@ export interface paths {
2051
2051
  patch?: never;
2052
2052
  trace?: never;
2053
2053
  };
2054
+ "/teams/opening-balances/advanced-deposits/synced-payments-refunds/{reservationId}": {
2055
+ parameters: {
2056
+ query?: never;
2057
+ header?: never;
2058
+ path?: never;
2059
+ cookie?: never;
2060
+ };
2061
+ /** @description Retrieve synced payments/refunds for a single reservation (review advanced deposits) */
2062
+ get: operations["getTeamsOpening-balancesAdvanced-depositsSynced-payments-refunds:reservationId"];
2063
+ put?: never;
2064
+ post?: never;
2065
+ delete?: never;
2066
+ options?: never;
2067
+ head?: never;
2068
+ patch?: never;
2069
+ trace?: never;
2070
+ };
2054
2071
  "/teams/opening-balances/tax-payable": {
2055
2072
  parameters: {
2056
2073
  query?: never;
@@ -17172,6 +17189,7 @@ export interface operations {
17172
17189
  endAt: string;
17173
17190
  /** @description comma separated listings */
17174
17191
  listingIds?: string;
17192
+ currency?: string;
17175
17193
  viewAs?: "owner" | "manager";
17176
17194
  };
17177
17195
  header?: never;
@@ -17300,6 +17318,7 @@ export interface operations {
17300
17318
  endAt: string;
17301
17319
  /** @description comma separated listings */
17302
17320
  listingIds?: string;
17321
+ currency?: string;
17303
17322
  viewAs?: "owner" | "manager";
17304
17323
  };
17305
17324
  header?: never;
@@ -29614,10 +29633,153 @@ export interface operations {
29614
29633
  checkIn?: string | null;
29615
29634
  checkOut?: string | null;
29616
29635
  bookedAt?: string | null;
29636
+ reservationAmount?: number | null;
29617
29637
  /** @description Value in cents (100 = 1€) */
29618
29638
  payment: number;
29619
29639
  /** @description Value in cents (100 = 1€) */
29620
29640
  refund: number;
29641
+ transactions: {
29642
+ /** Format: uuid */
29643
+ transactionId: string;
29644
+ /** Format: uuid */
29645
+ transactionLineId: string;
29646
+ date: string;
29647
+ uniqueRef?: string | null;
29648
+ description?: string | null;
29649
+ /** @description Value in cents (100 = 1€) */
29650
+ amount: number;
29651
+ /** @enum {string} */
29652
+ direction: "payment" | "refund";
29653
+ }[];
29654
+ }[];
29655
+ };
29656
+ };
29657
+ };
29658
+ /** @description Bad request */
29659
+ 400: {
29660
+ headers: {
29661
+ [name: string]: unknown;
29662
+ };
29663
+ content: {
29664
+ "application/json": {
29665
+ code: string;
29666
+ message: string;
29667
+ issues?: {
29668
+ message: string;
29669
+ }[];
29670
+ context?: unknown;
29671
+ };
29672
+ };
29673
+ };
29674
+ /** @description Unauthorized */
29675
+ 401: {
29676
+ headers: {
29677
+ [name: string]: unknown;
29678
+ };
29679
+ content: {
29680
+ "application/json": {
29681
+ code: string;
29682
+ message: string;
29683
+ issues?: {
29684
+ message: string;
29685
+ }[];
29686
+ context?: unknown;
29687
+ };
29688
+ };
29689
+ };
29690
+ /** @description Forbidden */
29691
+ 403: {
29692
+ headers: {
29693
+ [name: string]: unknown;
29694
+ };
29695
+ content: {
29696
+ "application/json": {
29697
+ code: string;
29698
+ message: string;
29699
+ issues?: {
29700
+ message: string;
29701
+ }[];
29702
+ context?: unknown;
29703
+ };
29704
+ };
29705
+ };
29706
+ /** @description Not found */
29707
+ 404: {
29708
+ headers: {
29709
+ [name: string]: unknown;
29710
+ };
29711
+ content: {
29712
+ "application/json": {
29713
+ code: string;
29714
+ message: string;
29715
+ issues?: {
29716
+ message: string;
29717
+ }[];
29718
+ context?: unknown;
29719
+ };
29720
+ };
29721
+ };
29722
+ /** @description Internal server error */
29723
+ 500: {
29724
+ headers: {
29725
+ [name: string]: unknown;
29726
+ };
29727
+ content: {
29728
+ "application/json": {
29729
+ code: string;
29730
+ message: string;
29731
+ issues?: {
29732
+ message: string;
29733
+ }[];
29734
+ context?: unknown;
29735
+ };
29736
+ };
29737
+ };
29738
+ };
29739
+ };
29740
+ "getTeamsOpening-balancesAdvanced-depositsSynced-payments-refunds:reservationId": {
29741
+ parameters: {
29742
+ query?: never;
29743
+ header?: never;
29744
+ path: {
29745
+ reservationId: string;
29746
+ };
29747
+ cookie?: never;
29748
+ };
29749
+ requestBody?: never;
29750
+ responses: {
29751
+ /** @description Successful response */
29752
+ 200: {
29753
+ headers: {
29754
+ [name: string]: unknown;
29755
+ };
29756
+ content: {
29757
+ "application/json": {
29758
+ /** Format: uuid */
29759
+ reservationId: string;
29760
+ listingId?: string | null;
29761
+ confirmationCode?: string | null;
29762
+ guestName?: string | null;
29763
+ checkIn?: string | null;
29764
+ checkOut?: string | null;
29765
+ bookedAt?: string | null;
29766
+ reservationAmount?: number | null;
29767
+ /** @description Value in cents (100 = 1€) */
29768
+ payment: number;
29769
+ /** @description Value in cents (100 = 1€) */
29770
+ refund: number;
29771
+ transactions: {
29772
+ /** Format: uuid */
29773
+ transactionId: string;
29774
+ /** Format: uuid */
29775
+ transactionLineId: string;
29776
+ date: string;
29777
+ uniqueRef?: string | null;
29778
+ description?: string | null;
29779
+ /** @description Value in cents (100 = 1€) */
29780
+ amount: number;
29781
+ /** @enum {string} */
29782
+ direction: "payment" | "refund";
29621
29783
  }[];
29622
29784
  };
29623
29785
  };