@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.
package/package.json
CHANGED
package/src/generated/v1.ts
CHANGED
|
@@ -16068,6 +16068,7 @@ export interface operations {
|
|
|
16068
16068
|
endAt: string;
|
|
16069
16069
|
/** @description comma separated listings */
|
|
16070
16070
|
listingIds?: string;
|
|
16071
|
+
viewAs?: "owner" | "manager";
|
|
16071
16072
|
};
|
|
16072
16073
|
header?: never;
|
|
16073
16074
|
path?: never;
|
|
@@ -16195,6 +16196,7 @@ export interface operations {
|
|
|
16195
16196
|
endAt: string;
|
|
16196
16197
|
/** @description comma separated listings */
|
|
16197
16198
|
listingIds?: string;
|
|
16199
|
+
viewAs?: "owner" | "manager";
|
|
16198
16200
|
};
|
|
16199
16201
|
header?: never;
|
|
16200
16202
|
path?: never;
|
|
@@ -31846,6 +31848,61 @@ export interface operations {
|
|
|
31846
31848
|
} | null;
|
|
31847
31849
|
id?: string;
|
|
31848
31850
|
}[] | null;
|
|
31851
|
+
/** @description Lines to be added (can not be combined with "lines" in the same request) */
|
|
31852
|
+
lines_create?: {
|
|
31853
|
+
recurringTemplateId?: string | null;
|
|
31854
|
+
uniqueRef?: string | null;
|
|
31855
|
+
description: string;
|
|
31856
|
+
accountId?: string | null;
|
|
31857
|
+
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;
|
|
31858
|
+
/** @description Value in cents (100 = 1€) */
|
|
31859
|
+
amount: number;
|
|
31860
|
+
markup?: {
|
|
31861
|
+
amount?: number | null;
|
|
31862
|
+
taxRateId?: string | null;
|
|
31863
|
+
taxBehavior?: ("excluded" | "included") | null;
|
|
31864
|
+
} | null;
|
|
31865
|
+
listingId?: string | null;
|
|
31866
|
+
reservationId?: string | null;
|
|
31867
|
+
ownerStatementId?: string | null;
|
|
31868
|
+
party?: ("owners" | "manager") | null;
|
|
31869
|
+
contactId?: string | null;
|
|
31870
|
+
matchers?: {
|
|
31871
|
+
confirmationCode?: string | null;
|
|
31872
|
+
customerId?: string | null;
|
|
31873
|
+
lineType?: string | null;
|
|
31874
|
+
} | null;
|
|
31875
|
+
id?: string | null;
|
|
31876
|
+
}[] | null;
|
|
31877
|
+
/** @description Lines to be updated (can not be combined with "lines" in the same request) */
|
|
31878
|
+
lines_update?: {
|
|
31879
|
+
recurringTemplateId?: string | null;
|
|
31880
|
+
uniqueRef?: string | null;
|
|
31881
|
+
description?: string;
|
|
31882
|
+
accountId?: string | null;
|
|
31883
|
+
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;
|
|
31884
|
+
/** @description Value in cents (100 = 1€) */
|
|
31885
|
+
amount?: number;
|
|
31886
|
+
markup?: {
|
|
31887
|
+
amount?: number | null;
|
|
31888
|
+
taxRateId?: string | null;
|
|
31889
|
+
taxBehavior?: ("excluded" | "included") | null;
|
|
31890
|
+
} | null;
|
|
31891
|
+
listingId?: string | null;
|
|
31892
|
+
reservationId?: string | null;
|
|
31893
|
+
ownerStatementId?: string | null;
|
|
31894
|
+
party?: ("owners" | "manager") | null;
|
|
31895
|
+
contactId?: string | null;
|
|
31896
|
+
matchers?: {
|
|
31897
|
+
confirmationCode?: string | null;
|
|
31898
|
+
customerId?: string | null;
|
|
31899
|
+
lineType?: string | null;
|
|
31900
|
+
} | null;
|
|
31901
|
+
/** Format: uuid */
|
|
31902
|
+
id: string;
|
|
31903
|
+
}[] | null;
|
|
31904
|
+
/** @description Lines to be deleted (can not be combined with "lines" in the same request) */
|
|
31905
|
+
lines_delete?: string[] | null;
|
|
31849
31906
|
};
|
|
31850
31907
|
};
|
|
31851
31908
|
};
|