@vrplatform/api 1.3.1-stage.1443 → 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.
|
@@ -16067,6 +16067,7 @@ export interface operations {
|
|
|
16067
16067
|
endAt: string;
|
|
16068
16068
|
/** @description comma separated listings */
|
|
16069
16069
|
listingIds?: string;
|
|
16070
|
+
viewAs?: "owner" | "manager";
|
|
16070
16071
|
};
|
|
16071
16072
|
header?: never;
|
|
16072
16073
|
path?: never;
|
|
@@ -16194,6 +16195,7 @@ export interface operations {
|
|
|
16194
16195
|
endAt: string;
|
|
16195
16196
|
/** @description comma separated listings */
|
|
16196
16197
|
listingIds?: string;
|
|
16198
|
+
viewAs?: "owner" | "manager";
|
|
16197
16199
|
};
|
|
16198
16200
|
header?: never;
|
|
16199
16201
|
path?: never;
|
|
@@ -31845,6 +31847,61 @@ export interface operations {
|
|
|
31845
31847
|
} | null;
|
|
31846
31848
|
id?: string;
|
|
31847
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;
|
|
31848
31905
|
};
|
|
31849
31906
|
};
|
|
31850
31907
|
};
|