@vrplatform/api 1.2.33-stage.869 → 1.2.33-stage.871

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.2.33-stage.869",
6
+ "version": "1.2.33-stage.871",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -8523,9 +8523,9 @@ export interface operations {
8523
8523
  content: {
8524
8524
  "application/json": {
8525
8525
  /** Format: uuid */
8526
- accountId: string;
8526
+ accountId?: string | null;
8527
8527
  /** @description Value in cents (100 = 1€) */
8528
- amount: number;
8528
+ amount?: number | null;
8529
8529
  currency?: string | null;
8530
8530
  effectiveAt?: string | null;
8531
8531
  note?: string | null;
@@ -19120,11 +19120,11 @@ export interface operations {
19120
19120
  [name: string]: unknown;
19121
19121
  };
19122
19122
  content: {
19123
- "application/json": {
19123
+ "application/json": ({
19124
19124
  /** Format: uuid */
19125
19125
  id: string;
19126
19126
  /** @enum {string} */
19127
- status: "completed" | "failed";
19127
+ status: "completed";
19128
19128
  message: string;
19129
19129
  /** @enum {string} */
19130
19130
  type: "reservation";
@@ -19134,7 +19134,7 @@ export interface operations {
19134
19134
  /** Format: uuid */
19135
19135
  id: string;
19136
19136
  /** @enum {string} */
19137
- status: "completed" | "failed";
19137
+ status: "completed";
19138
19138
  message: string;
19139
19139
  /** @enum {string} */
19140
19140
  type: "listing";
@@ -19144,12 +19144,20 @@ export interface operations {
19144
19144
  /** Format: uuid */
19145
19145
  id: string;
19146
19146
  /** @enum {string} */
19147
- status: "completed" | "failed";
19147
+ status: "completed";
19148
19148
  message: string;
19149
19149
  /** @enum {string} */
19150
19150
  type: "payout";
19151
19151
  /** Format: uuid */
19152
19152
  paymentId: string;
19153
+ }) | {
19154
+ /** Format: uuid */
19155
+ id: string;
19156
+ /** @enum {string} */
19157
+ status: "failed";
19158
+ message: string;
19159
+ /** @enum {string} */
19160
+ type: "reservation" | "listing" | "payout";
19153
19161
  };
19154
19162
  };
19155
19163
  };