@vrplatform/api 1.3.1-stage.1748 → 1.3.1-stage.1753

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.
@@ -1770,6 +1770,23 @@ export interface paths {
1770
1770
  patch?: never;
1771
1771
  trace?: never;
1772
1772
  };
1773
+ "/statements/csv/detailed": {
1774
+ parameters: {
1775
+ query?: never;
1776
+ header?: never;
1777
+ path?: never;
1778
+ cookie?: never;
1779
+ };
1780
+ /** @description Get Owner Statement CSV export (detailed) */
1781
+ get: operations["getStatementsCsvDetailed"];
1782
+ put?: never;
1783
+ post?: never;
1784
+ delete?: never;
1785
+ options?: never;
1786
+ head?: never;
1787
+ patch?: never;
1788
+ trace?: never;
1789
+ };
1773
1790
  "/statements/layouts": {
1774
1791
  parameters: {
1775
1792
  query?: never;
@@ -24971,8 +24988,6 @@ export interface operations {
24971
24988
  ownerIds?: string;
24972
24989
  /** @description comma separated owners */
24973
24990
  listingCollectionIds?: string;
24974
- /** @description statement layout id */
24975
- layoutId?: string;
24976
24991
  /** @description comma separated recurring fees */
24977
24992
  recurringFeeIds?: string;
24978
24993
  /** @description Date range in format YYYY-MM-DD...YYYY-MM-DD */
@@ -25190,6 +25205,136 @@ export interface operations {
25190
25205
  };
25191
25206
  };
25192
25207
  };
25208
+ getStatementsCsvDetailed: {
25209
+ parameters: {
25210
+ query?: {
25211
+ limit?: number;
25212
+ page?: number;
25213
+ /** @description comma separated periods */
25214
+ periodIds?: string;
25215
+ /** @description Year in format YYYY */
25216
+ year?: number;
25217
+ /** @description comma separated listings */
25218
+ listingIds?: string;
25219
+ /** @description comma separated statements */
25220
+ statementIds?: string;
25221
+ /** @description Date in format YYYY-MM */
25222
+ month?: string;
25223
+ search?: string;
25224
+ status?: ("draft" | "inReview" | "published") | "all";
25225
+ /** @description comma separated owners */
25226
+ ownerIds?: string;
25227
+ /** @description comma separated owners */
25228
+ listingCollectionIds?: string;
25229
+ /** @description statement layout id */
25230
+ layoutId?: string;
25231
+ /** @description comma separated recurring fees */
25232
+ recurringFeeIds?: string;
25233
+ /** @description Date range in format YYYY-MM-DD...YYYY-MM-DD */
25234
+ dateRange?: string;
25235
+ /** @description Whether the end date is inclusive or exclusive */
25236
+ isDateRangeEndInclusive?: boolean;
25237
+ };
25238
+ header?: never;
25239
+ path?: never;
25240
+ cookie?: never;
25241
+ };
25242
+ requestBody?: never;
25243
+ responses: {
25244
+ /** @description Successful response */
25245
+ 200: {
25246
+ headers: {
25247
+ [name: string]: unknown;
25248
+ };
25249
+ content: {
25250
+ "application/json": {
25251
+ url: string;
25252
+ expIn: number;
25253
+ };
25254
+ };
25255
+ };
25256
+ /** @description Bad request */
25257
+ 400: {
25258
+ headers: {
25259
+ [name: string]: unknown;
25260
+ };
25261
+ content: {
25262
+ "application/json": {
25263
+ code: string;
25264
+ message: string;
25265
+ issues?: {
25266
+ message: string;
25267
+ }[];
25268
+ context?: unknown;
25269
+ };
25270
+ };
25271
+ };
25272
+ /** @description Unauthorized */
25273
+ 401: {
25274
+ headers: {
25275
+ [name: string]: unknown;
25276
+ };
25277
+ content: {
25278
+ "application/json": {
25279
+ code: string;
25280
+ message: string;
25281
+ issues?: {
25282
+ message: string;
25283
+ }[];
25284
+ context?: unknown;
25285
+ };
25286
+ };
25287
+ };
25288
+ /** @description Forbidden */
25289
+ 403: {
25290
+ headers: {
25291
+ [name: string]: unknown;
25292
+ };
25293
+ content: {
25294
+ "application/json": {
25295
+ code: string;
25296
+ message: string;
25297
+ issues?: {
25298
+ message: string;
25299
+ }[];
25300
+ context?: unknown;
25301
+ };
25302
+ };
25303
+ };
25304
+ /** @description Not found */
25305
+ 404: {
25306
+ headers: {
25307
+ [name: string]: unknown;
25308
+ };
25309
+ content: {
25310
+ "application/json": {
25311
+ code: string;
25312
+ message: string;
25313
+ issues?: {
25314
+ message: string;
25315
+ }[];
25316
+ context?: unknown;
25317
+ };
25318
+ };
25319
+ };
25320
+ /** @description Internal server error */
25321
+ 500: {
25322
+ headers: {
25323
+ [name: string]: unknown;
25324
+ };
25325
+ content: {
25326
+ "application/json": {
25327
+ code: string;
25328
+ message: string;
25329
+ issues?: {
25330
+ message: string;
25331
+ }[];
25332
+ context?: unknown;
25333
+ };
25334
+ };
25335
+ };
25336
+ };
25337
+ };
25193
25338
  getStatementsLayouts: {
25194
25339
  parameters: {
25195
25340
  query?: {