@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.
package/package.json
CHANGED
package/src/generated/v1.ts
CHANGED
|
@@ -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 */
|
|
@@ -16068,6 +16068,7 @@ export interface operations {
|
|
|
16068
16068
|
endAt: string;
|
|
16069
16069
|
/** @description comma separated listings */
|
|
16070
16070
|
listingIds?: string;
|
|
16071
|
+
viewAs?: "owner" | "manager";
|
|
16071
16072
|
};
|
|
16072
16073
|
header?: never;
|
|
16073
16074
|
path?: never;
|
|
@@ -16195,6 +16196,7 @@ export interface operations {
|
|
|
16195
16196
|
endAt: string;
|
|
16196
16197
|
/** @description comma separated listings */
|
|
16197
16198
|
listingIds?: string;
|
|
16199
|
+
viewAs?: "owner" | "manager";
|
|
16198
16200
|
};
|
|
16199
16201
|
header?: never;
|
|
16200
16202
|
path?: never;
|
|
@@ -21701,6 +21703,10 @@ export interface operations {
|
|
|
21701
21703
|
listingCollectionIds?: string;
|
|
21702
21704
|
/** @description comma separated recurring fees */
|
|
21703
21705
|
recurringFeeIds?: string;
|
|
21706
|
+
/** @description Date range in format YYYY-MM-DD...YYYY-MM-DD */
|
|
21707
|
+
dateRange?: string;
|
|
21708
|
+
/** @description Whether the end date is inclusive or exclusive */
|
|
21709
|
+
isDateRangeEndInclusive?: boolean;
|
|
21704
21710
|
};
|
|
21705
21711
|
header?: never;
|
|
21706
21712
|
path?: never;
|