@vrplatform/api 1.3.1-stage.2331 → 1.3.1-stage.2332

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.2331",
6
+ "version": "1.3.1-stage.2332",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -39697,9 +39697,7 @@ export interface operations {
39697
39697
  reservationId?: string | null;
39698
39698
  listingId?: string | null;
39699
39699
  /** @description Value in cents (100 = 1€) */
39700
- payment: number;
39701
- /** @description Value in cents (100 = 1€) */
39702
- refund: number;
39700
+ amount: number;
39703
39701
  }[];
39704
39702
  };
39705
39703
  };
@@ -39797,14 +39795,13 @@ export interface operations {
39797
39795
  content: {
39798
39796
  "application/json": {
39799
39797
  accountId?: string | null;
39800
- amount?: number | null;
39801
39798
  currency?: string | null;
39802
39799
  reservations: {
39803
39800
  /** Format: uuid */
39804
39801
  reservationId: string;
39805
39802
  listingId?: string | null;
39806
- payment?: number | null;
39807
- refund?: number | null;
39803
+ /** @description Value in cents (100 = 1€) */
39804
+ amount: number;
39808
39805
  }[];
39809
39806
  };
39810
39807
  };
@@ -39832,9 +39829,7 @@ export interface operations {
39832
39829
  reservationId?: string | null;
39833
39830
  listingId?: string | null;
39834
39831
  /** @description Value in cents (100 = 1€) */
39835
- payment: number;
39836
- /** @description Value in cents (100 = 1€) */
39837
- refund: number;
39832
+ amount: number;
39838
39833
  }[];
39839
39834
  };
39840
39835
  };