@vrplatform/api 1.3.0-stage.1242 → 1.3.0-stage.1244

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.0-stage.1242",
6
+ "version": "1.3.0-stage.1244",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -8969,6 +8969,7 @@ export interface operations {
8969
8969
  recurringFeeId?: string;
8970
8970
  listingId?: string;
8971
8971
  date?: string;
8972
+ recurringFeeType?: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
8972
8973
  limit?: number;
8973
8974
  page?: number;
8974
8975
  };
@@ -9839,8 +9840,10 @@ export interface operations {
9839
9840
  parameters: {
9840
9841
  query?: {
9841
9842
  search?: string;
9842
- listingId?: string;
9843
+ /** @description comma separated listing ids */
9844
+ listingIds?: string;
9843
9845
  status?: "active" | "inactive";
9846
+ type?: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
9844
9847
  limit?: number;
9845
9848
  page?: number;
9846
9849
  };