@vrplatform/api 1.3.1-stage.1399 → 1.3.1-stage.1400

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.
@@ -19699,6 +19699,43 @@ export interface operations {
19699
19699
  }[] | null;
19700
19700
  /** @description Lines to be deleted (can not be combined with "lines" in the same request) */
19701
19701
  lines_delete?: string[] | null;
19702
+ /** @description Adjustments to be created */
19703
+ adjustments_create?: {
19704
+ id?: string | null;
19705
+ description?: string | null;
19706
+ reservationRef?: string | null;
19707
+ /** @description Value in cents (100 = 1€) */
19708
+ amount: number;
19709
+ accountId?: string | null;
19710
+ accountRef?: string | null;
19711
+ metadata?: {
19712
+ [key: string]: unknown;
19713
+ } | null;
19714
+ type?: string | null;
19715
+ recurringFeeId?: string | null;
19716
+ party?: ("owners" | "manager") | null;
19717
+ generalLedgerPostingAt?: string | null;
19718
+ }[] | null;
19719
+ /** @description Adjustments to be updated */
19720
+ adjustments_update?: {
19721
+ /** Format: uuid */
19722
+ id: string;
19723
+ description?: string | null;
19724
+ reservationRef?: string | null;
19725
+ /** @description Value in cents (100 = 1€) */
19726
+ amount?: number;
19727
+ accountId?: string | null;
19728
+ accountRef?: string | null;
19729
+ metadata?: {
19730
+ [key: string]: unknown;
19731
+ } | null;
19732
+ type?: string | null;
19733
+ recurringFeeId?: string | null;
19734
+ party?: ("owners" | "manager") | null;
19735
+ generalLedgerPostingAt?: string | null;
19736
+ }[] | null;
19737
+ /** @description Adjustments to be deleted */
19738
+ adjustments_delete?: string[] | null;
19702
19739
  };
19703
19740
  };
19704
19741
  };