@vrplatform/api 1.3.1-stage.1853 → 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.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.3.1-stage.1853",
6
+ "version": "1.3.1-stage.1854",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -16151,11 +16151,15 @@ export interface operations {
16151
16151
  /** @enum {string} */
16152
16152
  status: "booked" | "cancelled";
16153
16153
  total: number;
16154
+ charges: number;
16155
+ payments: number;
16154
16156
  listings: {
16155
16157
  /** Format: uuid */
16156
16158
  id: string;
16157
16159
  name: string;
16158
16160
  total: number;
16161
+ charges: number;
16162
+ payments: number;
16159
16163
  reservations: {
16160
16164
  /** Format: uuid */
16161
16165
  id: string;
@@ -16168,6 +16172,8 @@ export interface operations {
16168
16172
  confirmationCode: string;
16169
16173
  nights: number;
16170
16174
  total: number;
16175
+ charges: number;
16176
+ payments: number;
16171
16177
  }[];
16172
16178
  }[];
16173
16179
  }[];