@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
package/src/generated/v1.ts
CHANGED
|
@@ -8523,9 +8523,9 @@ export interface operations {
|
|
|
8523
8523
|
content: {
|
|
8524
8524
|
"application/json": {
|
|
8525
8525
|
/** Format: uuid */
|
|
8526
|
-
accountId
|
|
8526
|
+
accountId?: string | null;
|
|
8527
8527
|
/** @description Value in cents (100 = 1€) */
|
|
8528
|
-
amount
|
|
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"
|
|
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"
|
|
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"
|
|
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
|
};
|