@vrplatform/api 1.2.33-stage.863 → 1.2.33-stage.864
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.
|
@@ -19118,17 +19118,30 @@ export interface operations {
|
|
|
19118
19118
|
/** @enum {string} */
|
|
19119
19119
|
status: "completed" | "failed";
|
|
19120
19120
|
message: string;
|
|
19121
|
-
|
|
19122
|
-
|
|
19123
|
-
|
|
19124
|
-
|
|
19125
|
-
|
|
19126
|
-
|
|
19127
|
-
|
|
19128
|
-
|
|
19129
|
-
|
|
19130
|
-
|
|
19131
|
-
}
|
|
19121
|
+
/** @enum {string} */
|
|
19122
|
+
type: "reservation";
|
|
19123
|
+
/** Format: uuid */
|
|
19124
|
+
reservationId: string;
|
|
19125
|
+
} | {
|
|
19126
|
+
/** Format: uuid */
|
|
19127
|
+
id: string;
|
|
19128
|
+
/** @enum {string} */
|
|
19129
|
+
status: "completed" | "failed";
|
|
19130
|
+
message: string;
|
|
19131
|
+
/** @enum {string} */
|
|
19132
|
+
type: "listing";
|
|
19133
|
+
/** Format: uuid */
|
|
19134
|
+
listingId: string;
|
|
19135
|
+
} | {
|
|
19136
|
+
/** Format: uuid */
|
|
19137
|
+
id: string;
|
|
19138
|
+
/** @enum {string} */
|
|
19139
|
+
status: "completed" | "failed";
|
|
19140
|
+
message: string;
|
|
19141
|
+
/** @enum {string} */
|
|
19142
|
+
type: "payout";
|
|
19143
|
+
/** Format: uuid */
|
|
19144
|
+
paymentId: string;
|
|
19132
19145
|
};
|
|
19133
19146
|
};
|
|
19134
19147
|
};
|