@vrplatform/api 1.3.1-stage.1851 → 1.3.1-stage.1854

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.
@@ -16150,11 +16150,15 @@ export interface operations {
16150
16150
  /** @enum {string} */
16151
16151
  status: "booked" | "cancelled";
16152
16152
  total: number;
16153
+ charges: number;
16154
+ payments: number;
16153
16155
  listings: {
16154
16156
  /** Format: uuid */
16155
16157
  id: string;
16156
16158
  name: string;
16157
16159
  total: number;
16160
+ charges: number;
16161
+ payments: number;
16158
16162
  reservations: {
16159
16163
  /** Format: uuid */
16160
16164
  id: string;
@@ -16167,6 +16171,8 @@ export interface operations {
16167
16171
  confirmationCode: string;
16168
16172
  nights: number;
16169
16173
  total: number;
16174
+ charges: number;
16175
+ payments: number;
16170
16176
  }[];
16171
16177
  }[];
16172
16178
  }[];