@vrplatform/api 1.3.1-stage.1957 → 1.3.1-stage.1959

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.1957",
6
+ "version": "1.3.1-stage.1959",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -2054,7 +2054,7 @@ export interface paths {
2054
2054
  path?: never;
2055
2055
  cookie?: never;
2056
2056
  };
2057
- /** @description Get Owner Statements ZIP for a month */
2057
+ /** @description Get Owner Statements ZIP by month or listing month range */
2058
2058
  get: operations["getStatementsPdfBatch"];
2059
2059
  put?: never;
2060
2060
  post?: never;
@@ -28619,11 +28619,16 @@ export interface operations {
28619
28619
  };
28620
28620
  getStatementsPdfBatch: {
28621
28621
  parameters: {
28622
- query: {
28622
+ query?: {
28623
28623
  /** @description comma separated ownership periods */
28624
- ownershipPeriodIds: string;
28624
+ ownershipPeriodIds?: string;
28625
28625
  /** @description Date in format YYYY-MM */
28626
- month: string;
28626
+ month?: string;
28627
+ listingId?: string;
28628
+ /** @description Date in format YYYY-MM */
28629
+ startMonth?: string;
28630
+ /** @description Date in format YYYY-MM */
28631
+ endMonth?: string;
28627
28632
  /** @description Currency in ISO 4217 format, will be converted to lowercase */
28628
28633
  currency?: string;
28629
28634
  };