@vrplatform/api 1.3.1-stage.1743 → 1.3.1-stage.1744
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.
|
@@ -1279,7 +1279,7 @@ export interface paths {
|
|
|
1279
1279
|
path?: never;
|
|
1280
1280
|
cookie?: never;
|
|
1281
1281
|
};
|
|
1282
|
-
/** @description Owner statement summary CSV
|
|
1282
|
+
/** @description Owner statement summary CSV */
|
|
1283
1283
|
get: operations["getOwnerStatementSummariesPerLayoutReportCsv"];
|
|
1284
1284
|
put?: never;
|
|
1285
1285
|
post?: never;
|
|
@@ -1289,6 +1289,23 @@ export interface paths {
|
|
|
1289
1289
|
patch?: never;
|
|
1290
1290
|
trace?: never;
|
|
1291
1291
|
};
|
|
1292
|
+
"/reports/owner-statement-summaries-per-layout/csv/detailed": {
|
|
1293
|
+
parameters: {
|
|
1294
|
+
query?: never;
|
|
1295
|
+
header?: never;
|
|
1296
|
+
path?: never;
|
|
1297
|
+
cookie?: never;
|
|
1298
|
+
};
|
|
1299
|
+
/** @description Owner statement summary detailed CSV (aggregated by listing/month) */
|
|
1300
|
+
get: operations["getOwnerStatementSummariesPerLayoutReportCsvDetailed"];
|
|
1301
|
+
put?: never;
|
|
1302
|
+
post?: never;
|
|
1303
|
+
delete?: never;
|
|
1304
|
+
options?: never;
|
|
1305
|
+
head?: never;
|
|
1306
|
+
patch?: never;
|
|
1307
|
+
trace?: never;
|
|
1308
|
+
};
|
|
1292
1309
|
"/reports/owner-statement-summaries-per-layout/details/{contactId}": {
|
|
1293
1310
|
parameters: {
|
|
1294
1311
|
query?: never;
|
|
@@ -17496,6 +17513,115 @@ export interface operations {
|
|
|
17496
17513
|
};
|
|
17497
17514
|
};
|
|
17498
17515
|
};
|
|
17516
|
+
getOwnerStatementSummariesPerLayoutReportCsvDetailed: {
|
|
17517
|
+
parameters: {
|
|
17518
|
+
query: {
|
|
17519
|
+
startAt: string;
|
|
17520
|
+
endAt: string;
|
|
17521
|
+
/** @description comma separated listings */
|
|
17522
|
+
listingIds?: string;
|
|
17523
|
+
currency?: string;
|
|
17524
|
+
viewAs?: "owner" | "manager";
|
|
17525
|
+
};
|
|
17526
|
+
header?: never;
|
|
17527
|
+
path?: never;
|
|
17528
|
+
cookie?: never;
|
|
17529
|
+
};
|
|
17530
|
+
requestBody?: never;
|
|
17531
|
+
responses: {
|
|
17532
|
+
/** @description Successful response */
|
|
17533
|
+
200: {
|
|
17534
|
+
headers: {
|
|
17535
|
+
[name: string]: unknown;
|
|
17536
|
+
};
|
|
17537
|
+
content: {
|
|
17538
|
+
"application/json": {
|
|
17539
|
+
url: string;
|
|
17540
|
+
};
|
|
17541
|
+
};
|
|
17542
|
+
};
|
|
17543
|
+
/** @description Bad request */
|
|
17544
|
+
400: {
|
|
17545
|
+
headers: {
|
|
17546
|
+
[name: string]: unknown;
|
|
17547
|
+
};
|
|
17548
|
+
content: {
|
|
17549
|
+
"application/json": {
|
|
17550
|
+
code: string;
|
|
17551
|
+
message: string;
|
|
17552
|
+
issues?: {
|
|
17553
|
+
message: string;
|
|
17554
|
+
}[];
|
|
17555
|
+
context?: unknown;
|
|
17556
|
+
};
|
|
17557
|
+
};
|
|
17558
|
+
};
|
|
17559
|
+
/** @description Unauthorized */
|
|
17560
|
+
401: {
|
|
17561
|
+
headers: {
|
|
17562
|
+
[name: string]: unknown;
|
|
17563
|
+
};
|
|
17564
|
+
content: {
|
|
17565
|
+
"application/json": {
|
|
17566
|
+
code: string;
|
|
17567
|
+
message: string;
|
|
17568
|
+
issues?: {
|
|
17569
|
+
message: string;
|
|
17570
|
+
}[];
|
|
17571
|
+
context?: unknown;
|
|
17572
|
+
};
|
|
17573
|
+
};
|
|
17574
|
+
};
|
|
17575
|
+
/** @description Forbidden */
|
|
17576
|
+
403: {
|
|
17577
|
+
headers: {
|
|
17578
|
+
[name: string]: unknown;
|
|
17579
|
+
};
|
|
17580
|
+
content: {
|
|
17581
|
+
"application/json": {
|
|
17582
|
+
code: string;
|
|
17583
|
+
message: string;
|
|
17584
|
+
issues?: {
|
|
17585
|
+
message: string;
|
|
17586
|
+
}[];
|
|
17587
|
+
context?: unknown;
|
|
17588
|
+
};
|
|
17589
|
+
};
|
|
17590
|
+
};
|
|
17591
|
+
/** @description Not found */
|
|
17592
|
+
404: {
|
|
17593
|
+
headers: {
|
|
17594
|
+
[name: string]: unknown;
|
|
17595
|
+
};
|
|
17596
|
+
content: {
|
|
17597
|
+
"application/json": {
|
|
17598
|
+
code: string;
|
|
17599
|
+
message: string;
|
|
17600
|
+
issues?: {
|
|
17601
|
+
message: string;
|
|
17602
|
+
}[];
|
|
17603
|
+
context?: unknown;
|
|
17604
|
+
};
|
|
17605
|
+
};
|
|
17606
|
+
};
|
|
17607
|
+
/** @description Internal server error */
|
|
17608
|
+
500: {
|
|
17609
|
+
headers: {
|
|
17610
|
+
[name: string]: unknown;
|
|
17611
|
+
};
|
|
17612
|
+
content: {
|
|
17613
|
+
"application/json": {
|
|
17614
|
+
code: string;
|
|
17615
|
+
message: string;
|
|
17616
|
+
issues?: {
|
|
17617
|
+
message: string;
|
|
17618
|
+
}[];
|
|
17619
|
+
context?: unknown;
|
|
17620
|
+
};
|
|
17621
|
+
};
|
|
17622
|
+
};
|
|
17623
|
+
};
|
|
17624
|
+
};
|
|
17499
17625
|
getOwnerStatementSummaryPerLayoutDetailsReport: {
|
|
17500
17626
|
parameters: {
|
|
17501
17627
|
query: {
|
|
@@ -24752,6 +24878,8 @@ export interface operations {
|
|
|
24752
24878
|
ownerIds?: string;
|
|
24753
24879
|
/** @description comma separated owners */
|
|
24754
24880
|
listingCollectionIds?: string;
|
|
24881
|
+
/** @description statement layout id */
|
|
24882
|
+
layoutId?: string;
|
|
24755
24883
|
/** @description comma separated recurring fees */
|
|
24756
24884
|
recurringFeeIds?: string;
|
|
24757
24885
|
/** @description Date range in format YYYY-MM-DD...YYYY-MM-DD */
|