@vrplatform/api 1.2.33-stage.751 → 1.2.33-stage.752
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
|
@@ -4926,6 +4926,42 @@ export interface operations {
|
|
|
4926
4926
|
/** @enum {string|null} */
|
|
4927
4927
|
party?: "owners" | "manager" | null;
|
|
4928
4928
|
}[] | null;
|
|
4929
|
+
/** @description Lines to be added (can not be combined with "lines" in the same request) */
|
|
4930
|
+
lines_create?: {
|
|
4931
|
+
/** Format: uuid */
|
|
4932
|
+
id?: string | null;
|
|
4933
|
+
uniqueRef?: string | null;
|
|
4934
|
+
type: string;
|
|
4935
|
+
description?: string | null;
|
|
4936
|
+
reservationRef?: string | null;
|
|
4937
|
+
/** @description Value in cents (100 = 1€) */
|
|
4938
|
+
amount: number;
|
|
4939
|
+
accountId?: string | null;
|
|
4940
|
+
accountRef?: string | null;
|
|
4941
|
+
connectionId?: string | null;
|
|
4942
|
+
metadata?: {
|
|
4943
|
+
[key: string]: unknown;
|
|
4944
|
+
} | null;
|
|
4945
|
+
}[] | null;
|
|
4946
|
+
/** @description Lines to be updated (can not be combined with "lines" in the same request) */
|
|
4947
|
+
lines_update?: {
|
|
4948
|
+
/** Format: uuid */
|
|
4949
|
+
id: string;
|
|
4950
|
+
uniqueRef?: string | null;
|
|
4951
|
+
type?: string;
|
|
4952
|
+
description?: string | null;
|
|
4953
|
+
reservationRef?: string | null;
|
|
4954
|
+
/** @description Value in cents (100 = 1€) */
|
|
4955
|
+
amount?: number;
|
|
4956
|
+
accountId?: string | null;
|
|
4957
|
+
accountRef?: string | null;
|
|
4958
|
+
connectionId?: string | null;
|
|
4959
|
+
metadata?: {
|
|
4960
|
+
[key: string]: unknown;
|
|
4961
|
+
} | null;
|
|
4962
|
+
}[] | null;
|
|
4963
|
+
/** @description Lines to be deleted (can not be combined with "lines" in the same request) */
|
|
4964
|
+
lines_delete?: string[] | null;
|
|
4929
4965
|
/** @description Lines to be added (can not be combined with "adjustments" in the same request) */
|
|
4930
4966
|
adjustments_create?: {
|
|
4931
4967
|
/** Format: uuid */
|