@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
package/src/generated/v1.ts
CHANGED
|
@@ -2054,7 +2054,7 @@ export interface paths {
|
|
|
2054
2054
|
path?: never;
|
|
2055
2055
|
cookie?: never;
|
|
2056
2056
|
};
|
|
2057
|
-
/** @description Get Owner Statements ZIP
|
|
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
|
|
28624
|
+
ownershipPeriodIds?: string;
|
|
28625
28625
|
/** @description Date in format YYYY-MM */
|
|
28626
|
-
month
|
|
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
|
};
|