@vrplatform/api 1.3.1-stage.6197 → 1.3.1-stage.6203
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.
|
@@ -2576,7 +2576,7 @@ export interface paths {
|
|
|
2576
2576
|
*/
|
|
2577
2577
|
get: operations["getListingsOwnershipPeriodsById"];
|
|
2578
2578
|
/**
|
|
2579
|
-
* @description Update a listing ownership period by ID. Date-range changes relink journal entries to the adjusted period, with onConflict controlling how overlaps with neighboring periods are resolved (updateExisting by default). Each changed date boundary is validated independently against locked history. Toggling setListingInactive flips the active flag of the journal entries in the range and refreshes affected reservation totals. Changes touching books-closed or statement-locked months are rejected. Supports dryRun. See https://docs.vrplatform.app/guides/build/portfolio.
|
|
2579
|
+
* @description Update a listing ownership period by ID. Date-range changes relink journal entries to the adjusted period, with onConflict controlling how overlaps with neighboring periods are resolved (updateExisting by default). Each changed date boundary is validated independently against locked history. Toggling setListingInactive flips the active flag of the journal entries in the range and refreshes affected reservation totals. Active periods require at least one member; deactivation periods require an empty members array, so change the mode and members atomically. Changes touching books-closed or statement-locked months are rejected. Supports dryRun. See https://docs.vrplatform.app/guides/build/portfolio.
|
|
2580
2580
|
*
|
|
2581
2581
|
* Required scope: ownerships:write
|
|
2582
2582
|
*/
|
|
@@ -54739,6 +54739,7 @@ export interface operations {
|
|
|
54739
54739
|
startAt?: string | null;
|
|
54740
54740
|
endAt?: string | null;
|
|
54741
54741
|
reserve?: number | null;
|
|
54742
|
+
/** @description One or more unique owners for an active period; use an empty array only with setListingInactive=true */
|
|
54742
54743
|
members: {
|
|
54743
54744
|
contactId?: string | null;
|
|
54744
54745
|
split?: number | null;
|
|
@@ -55307,6 +55308,7 @@ export interface operations {
|
|
|
55307
55308
|
startAt?: string | null;
|
|
55308
55309
|
endAt?: string | null;
|
|
55309
55310
|
reserve?: number | null;
|
|
55311
|
+
/** @description One or more unique owners for an active period; use an empty array only with setListingInactive=true */
|
|
55310
55312
|
members?: {
|
|
55311
55313
|
contactId?: string | null;
|
|
55312
55314
|
split?: number | null;
|