@vrplatform/api 1.3.1-stage.1441 → 1.3.1-stage.1443

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
@@ -6,7 +6,7 @@
6
6
  "typings": "build/main/index.d.ts",
7
7
  "module": "build/module/index.js"
8
8
  },
9
- "version": "1.3.1-stage.1441",
9
+ "version": "1.3.1-stage.1443",
10
10
  "description": "",
11
11
  "main": "build/main/index.js",
12
12
  "module": "build/module/index.js",
@@ -1572,7 +1572,7 @@ export interface paths {
1572
1572
  path?: never;
1573
1573
  cookie?: never;
1574
1574
  };
1575
- /** @description Get Statements List. Get Statements, either by year + a single listing/owner or by month */
1575
+ /** @description Get Statements List. Get Statements, either by year/dateRange + a single listing/owner or by month */
1576
1576
  get: operations["getStatements"];
1577
1577
  put?: never;
1578
1578
  /** @description Create Statements */
@@ -21701,6 +21701,10 @@ export interface operations {
21701
21701
  listingCollectionIds?: string;
21702
21702
  /** @description comma separated recurring fees */
21703
21703
  recurringFeeIds?: string;
21704
+ /** @description Date range in format YYYY-MM-DD...YYYY-MM-DD */
21705
+ dateRange?: string;
21706
+ /** @description Whether the end date is inclusive or exclusive */
21707
+ isDateRangeEndInclusive?: boolean;
21704
21708
  };
21705
21709
  header?: never;
21706
21710
  path?: never;