@vrplatform/api 1.3.1-stage.1444 → 1.3.1-stage.1445

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.
@@ -31847,6 +31847,61 @@ export interface operations {
31847
31847
  } | null;
31848
31848
  id?: string;
31849
31849
  }[] | null;
31850
+ /** @description Lines to be added (can not be combined with "lines" in the same request) */
31851
+ lines_create?: {
31852
+ recurringTemplateId?: string | null;
31853
+ uniqueRef?: string | null;
31854
+ description: string;
31855
+ accountId?: string | null;
31856
+ assignment?: ("accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer") | null;
31857
+ /** @description Value in cents (100 = 1€) */
31858
+ amount: number;
31859
+ markup?: {
31860
+ amount?: number | null;
31861
+ taxRateId?: string | null;
31862
+ taxBehavior?: ("excluded" | "included") | null;
31863
+ } | null;
31864
+ listingId?: string | null;
31865
+ reservationId?: string | null;
31866
+ ownerStatementId?: string | null;
31867
+ party?: ("owners" | "manager") | null;
31868
+ contactId?: string | null;
31869
+ matchers?: {
31870
+ confirmationCode?: string | null;
31871
+ customerId?: string | null;
31872
+ lineType?: string | null;
31873
+ } | null;
31874
+ id?: string | null;
31875
+ }[] | null;
31876
+ /** @description Lines to be updated (can not be combined with "lines" in the same request) */
31877
+ lines_update?: {
31878
+ recurringTemplateId?: string | null;
31879
+ uniqueRef?: string | null;
31880
+ description?: string;
31881
+ accountId?: string | null;
31882
+ assignment?: ("accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer") | null;
31883
+ /** @description Value in cents (100 = 1€) */
31884
+ amount?: number;
31885
+ markup?: {
31886
+ amount?: number | null;
31887
+ taxRateId?: string | null;
31888
+ taxBehavior?: ("excluded" | "included") | null;
31889
+ } | null;
31890
+ listingId?: string | null;
31891
+ reservationId?: string | null;
31892
+ ownerStatementId?: string | null;
31893
+ party?: ("owners" | "manager") | null;
31894
+ contactId?: string | null;
31895
+ matchers?: {
31896
+ confirmationCode?: string | null;
31897
+ customerId?: string | null;
31898
+ lineType?: string | null;
31899
+ } | null;
31900
+ /** Format: uuid */
31901
+ id: string;
31902
+ }[] | null;
31903
+ /** @description Lines to be deleted (can not be combined with "lines" in the same request) */
31904
+ lines_delete?: string[] | null;
31850
31905
  };
31851
31906
  };
31852
31907
  };