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