@vrplatform/api 1.3.1-stage.4009 → 1.3.1-stage.4011
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.
|
@@ -24779,6 +24779,8 @@ export interface operations {
|
|
|
24779
24779
|
search?: string;
|
|
24780
24780
|
/** @description comma separated listing ids */
|
|
24781
24781
|
listingIds?: string;
|
|
24782
|
+
/** @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids. */
|
|
24783
|
+
listingScope?: "exact" | "withChildren";
|
|
24782
24784
|
status?: "active" | "inactive";
|
|
24783
24785
|
type?: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
|
|
24784
24786
|
limit?: number;
|
|
@@ -25206,6 +25208,8 @@ export interface operations {
|
|
|
25206
25208
|
query?: {
|
|
25207
25209
|
recurringFeeId?: string;
|
|
25208
25210
|
listingId?: string;
|
|
25211
|
+
/** @description Controls listingId filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing id. */
|
|
25212
|
+
listingScope?: "exact" | "withChildren";
|
|
25209
25213
|
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
25210
25214
|
date?: string;
|
|
25211
25215
|
recurringFeeType?: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
|
|
@@ -32538,6 +32542,8 @@ export interface operations {
|
|
|
32538
32542
|
view?: "ledger" | "party" | "listing" | "month" | "quarter" | "year";
|
|
32539
32543
|
listingIds?: string;
|
|
32540
32544
|
ledger?: "trust" | "operating";
|
|
32545
|
+
/** @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids. */
|
|
32546
|
+
listingScope?: "exact" | "withChildren";
|
|
32541
32547
|
};
|
|
32542
32548
|
header?: never;
|
|
32543
32549
|
path?: never;
|
|
@@ -34082,6 +34088,8 @@ export interface operations {
|
|
|
34082
34088
|
view?: "ledger" | "party" | "listing" | "month" | "quarter" | "year";
|
|
34083
34089
|
listingIds?: string;
|
|
34084
34090
|
ledger?: "trust" | "operating";
|
|
34091
|
+
/** @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids. */
|
|
34092
|
+
listingScope?: "exact" | "withChildren";
|
|
34085
34093
|
};
|
|
34086
34094
|
header?: never;
|
|
34087
34095
|
path?: never;
|