@vrplatform/api 1.3.1-stage.1742 → 1.3.1-stage.1743

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.
@@ -1726,7 +1726,7 @@ export interface paths {
1726
1726
  path?: never;
1727
1727
  cookie?: never;
1728
1728
  };
1729
- /** @description Get Owner Statement CSV by month */
1729
+ /** @description Get Owner Statement CSV export */
1730
1730
  get: operations["getStatementsCsv"];
1731
1731
  put?: never;
1732
1732
  post?: never;
@@ -1743,7 +1743,7 @@ export interface paths {
1743
1743
  path?: never;
1744
1744
  cookie?: never;
1745
1745
  };
1746
- /** @description Get Owner Statement CSV ZIP for a month */
1746
+ /** @description Get Owner Statement CSV ZIP export */
1747
1747
  get: operations["getStatementsCsvBatch"];
1748
1748
  put?: never;
1749
1749
  post?: never;
@@ -24733,14 +24733,31 @@ export interface operations {
24733
24733
  };
24734
24734
  getStatementsCsv: {
24735
24735
  parameters: {
24736
- query: {
24737
- viewAs?: "owner" | "manager";
24738
- listingId: string;
24736
+ query?: {
24737
+ limit?: number;
24738
+ page?: number;
24739
+ /** @description comma separated periods */
24740
+ periodIds?: string;
24741
+ /** @description Year in format YYYY */
24742
+ year?: number;
24743
+ /** @description comma separated listings */
24744
+ listingIds?: string;
24745
+ /** @description comma separated statements */
24746
+ statementIds?: string;
24739
24747
  /** @description Date in format YYYY-MM */
24740
- month: string;
24741
- /** @description Currency in ISO 4217 format, will be converted to lowercase */
24742
- currency?: string;
24743
- contactId?: string;
24748
+ month?: string;
24749
+ search?: string;
24750
+ status?: ("draft" | "inReview" | "published") | "all";
24751
+ /** @description comma separated owners */
24752
+ ownerIds?: string;
24753
+ /** @description comma separated owners */
24754
+ listingCollectionIds?: string;
24755
+ /** @description comma separated recurring fees */
24756
+ recurringFeeIds?: string;
24757
+ /** @description Date range in format YYYY-MM-DD...YYYY-MM-DD */
24758
+ dateRange?: string;
24759
+ /** @description Whether the end date is inclusive or exclusive */
24760
+ isDateRangeEndInclusive?: boolean;
24744
24761
  };
24745
24762
  header?: never;
24746
24763
  path?: never;
@@ -24755,11 +24772,8 @@ export interface operations {
24755
24772
  };
24756
24773
  content: {
24757
24774
  "application/json": {
24758
- data: {
24759
- url: string;
24760
- contactId: string;
24761
- expIn: number;
24762
- }[];
24775
+ url: string;
24776
+ expIn: number;
24763
24777
  };
24764
24778
  };
24765
24779
  };
@@ -24848,8 +24862,8 @@ export interface operations {
24848
24862
  getStatementsCsvBatch: {
24849
24863
  parameters: {
24850
24864
  query: {
24851
- /** @description comma separated listing ids */
24852
- listingIds: string;
24865
+ /** @description comma separated ownership periods */
24866
+ ownershipPeriodIds: string;
24853
24867
  /** @description Date in format YYYY-MM */
24854
24868
  month: string;
24855
24869
  /** @description Currency in ISO 4217 format, will be converted to lowercase */