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