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