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