@vrplatform/api 1.3.1-stage.1442 → 1.3.1-stage.1444
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.
|
@@ -1571,7 +1571,7 @@ export interface paths {
|
|
|
1571
1571
|
path?: never;
|
|
1572
1572
|
cookie?: never;
|
|
1573
1573
|
};
|
|
1574
|
-
/** @description Get Statements List. Get Statements, either by year + a single listing/owner or by month */
|
|
1574
|
+
/** @description Get Statements List. Get Statements, either by year/dateRange + a single listing/owner or by month */
|
|
1575
1575
|
get: operations["getStatements"];
|
|
1576
1576
|
put?: never;
|
|
1577
1577
|
/** @description Create Statements */
|
|
@@ -16067,6 +16067,7 @@ export interface operations {
|
|
|
16067
16067
|
endAt: string;
|
|
16068
16068
|
/** @description comma separated listings */
|
|
16069
16069
|
listingIds?: string;
|
|
16070
|
+
viewAs?: "owner" | "manager";
|
|
16070
16071
|
};
|
|
16071
16072
|
header?: never;
|
|
16072
16073
|
path?: never;
|
|
@@ -16194,6 +16195,7 @@ export interface operations {
|
|
|
16194
16195
|
endAt: string;
|
|
16195
16196
|
/** @description comma separated listings */
|
|
16196
16197
|
listingIds?: string;
|
|
16198
|
+
viewAs?: "owner" | "manager";
|
|
16197
16199
|
};
|
|
16198
16200
|
header?: never;
|
|
16199
16201
|
path?: never;
|
|
@@ -21700,6 +21702,10 @@ export interface operations {
|
|
|
21700
21702
|
listingCollectionIds?: string;
|
|
21701
21703
|
/** @description comma separated recurring fees */
|
|
21702
21704
|
recurringFeeIds?: string;
|
|
21705
|
+
/** @description Date range in format YYYY-MM-DD...YYYY-MM-DD */
|
|
21706
|
+
dateRange?: string;
|
|
21707
|
+
/** @description Whether the end date is inclusive or exclusive */
|
|
21708
|
+
isDateRangeEndInclusive?: boolean;
|
|
21703
21709
|
};
|
|
21704
21710
|
header?: never;
|
|
21705
21711
|
path?: never;
|