@vrplatform/api 1.3.1-stage.1742 → 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.
- package/build/main/generated/v1.d.ts +159 -17
- package/build/main/generated/v1.js.map +1 -1
- package/build/module/generated/v1.d.ts +159 -17
- package/build/module/generated/v1.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/v1.ts +159 -17
package/package.json
CHANGED
package/src/generated/v1.ts
CHANGED
|
@@ -1280,7 +1280,7 @@ export interface paths {
|
|
|
1280
1280
|
path?: never;
|
|
1281
1281
|
cookie?: never;
|
|
1282
1282
|
};
|
|
1283
|
-
/** @description Owner statement summary CSV
|
|
1283
|
+
/** @description Owner statement summary CSV */
|
|
1284
1284
|
get: operations["getOwnerStatementSummariesPerLayoutReportCsv"];
|
|
1285
1285
|
put?: never;
|
|
1286
1286
|
post?: never;
|
|
@@ -1290,6 +1290,23 @@ export interface paths {
|
|
|
1290
1290
|
patch?: never;
|
|
1291
1291
|
trace?: never;
|
|
1292
1292
|
};
|
|
1293
|
+
"/reports/owner-statement-summaries-per-layout/csv/detailed": {
|
|
1294
|
+
parameters: {
|
|
1295
|
+
query?: never;
|
|
1296
|
+
header?: never;
|
|
1297
|
+
path?: never;
|
|
1298
|
+
cookie?: never;
|
|
1299
|
+
};
|
|
1300
|
+
/** @description Owner statement summary detailed CSV (aggregated by listing/month) */
|
|
1301
|
+
get: operations["getOwnerStatementSummariesPerLayoutReportCsvDetailed"];
|
|
1302
|
+
put?: never;
|
|
1303
|
+
post?: never;
|
|
1304
|
+
delete?: never;
|
|
1305
|
+
options?: never;
|
|
1306
|
+
head?: never;
|
|
1307
|
+
patch?: never;
|
|
1308
|
+
trace?: never;
|
|
1309
|
+
};
|
|
1293
1310
|
"/reports/owner-statement-summaries-per-layout/details/{contactId}": {
|
|
1294
1311
|
parameters: {
|
|
1295
1312
|
query?: never;
|
|
@@ -1727,7 +1744,7 @@ export interface paths {
|
|
|
1727
1744
|
path?: never;
|
|
1728
1745
|
cookie?: never;
|
|
1729
1746
|
};
|
|
1730
|
-
/** @description Get Owner Statement CSV
|
|
1747
|
+
/** @description Get Owner Statement CSV export */
|
|
1731
1748
|
get: operations["getStatementsCsv"];
|
|
1732
1749
|
put?: never;
|
|
1733
1750
|
post?: never;
|
|
@@ -1744,7 +1761,7 @@ export interface paths {
|
|
|
1744
1761
|
path?: never;
|
|
1745
1762
|
cookie?: never;
|
|
1746
1763
|
};
|
|
1747
|
-
/** @description Get Owner Statement CSV ZIP
|
|
1764
|
+
/** @description Get Owner Statement CSV ZIP export */
|
|
1748
1765
|
get: operations["getStatementsCsvBatch"];
|
|
1749
1766
|
put?: never;
|
|
1750
1767
|
post?: never;
|
|
@@ -17497,6 +17514,115 @@ export interface operations {
|
|
|
17497
17514
|
};
|
|
17498
17515
|
};
|
|
17499
17516
|
};
|
|
17517
|
+
getOwnerStatementSummariesPerLayoutReportCsvDetailed: {
|
|
17518
|
+
parameters: {
|
|
17519
|
+
query: {
|
|
17520
|
+
startAt: string;
|
|
17521
|
+
endAt: string;
|
|
17522
|
+
/** @description comma separated listings */
|
|
17523
|
+
listingIds?: string;
|
|
17524
|
+
currency?: string;
|
|
17525
|
+
viewAs?: "owner" | "manager";
|
|
17526
|
+
};
|
|
17527
|
+
header?: never;
|
|
17528
|
+
path?: never;
|
|
17529
|
+
cookie?: never;
|
|
17530
|
+
};
|
|
17531
|
+
requestBody?: never;
|
|
17532
|
+
responses: {
|
|
17533
|
+
/** @description Successful response */
|
|
17534
|
+
200: {
|
|
17535
|
+
headers: {
|
|
17536
|
+
[name: string]: unknown;
|
|
17537
|
+
};
|
|
17538
|
+
content: {
|
|
17539
|
+
"application/json": {
|
|
17540
|
+
url: string;
|
|
17541
|
+
};
|
|
17542
|
+
};
|
|
17543
|
+
};
|
|
17544
|
+
/** @description Bad request */
|
|
17545
|
+
400: {
|
|
17546
|
+
headers: {
|
|
17547
|
+
[name: string]: unknown;
|
|
17548
|
+
};
|
|
17549
|
+
content: {
|
|
17550
|
+
"application/json": {
|
|
17551
|
+
code: string;
|
|
17552
|
+
message: string;
|
|
17553
|
+
issues?: {
|
|
17554
|
+
message: string;
|
|
17555
|
+
}[];
|
|
17556
|
+
context?: unknown;
|
|
17557
|
+
};
|
|
17558
|
+
};
|
|
17559
|
+
};
|
|
17560
|
+
/** @description Unauthorized */
|
|
17561
|
+
401: {
|
|
17562
|
+
headers: {
|
|
17563
|
+
[name: string]: unknown;
|
|
17564
|
+
};
|
|
17565
|
+
content: {
|
|
17566
|
+
"application/json": {
|
|
17567
|
+
code: string;
|
|
17568
|
+
message: string;
|
|
17569
|
+
issues?: {
|
|
17570
|
+
message: string;
|
|
17571
|
+
}[];
|
|
17572
|
+
context?: unknown;
|
|
17573
|
+
};
|
|
17574
|
+
};
|
|
17575
|
+
};
|
|
17576
|
+
/** @description Forbidden */
|
|
17577
|
+
403: {
|
|
17578
|
+
headers: {
|
|
17579
|
+
[name: string]: unknown;
|
|
17580
|
+
};
|
|
17581
|
+
content: {
|
|
17582
|
+
"application/json": {
|
|
17583
|
+
code: string;
|
|
17584
|
+
message: string;
|
|
17585
|
+
issues?: {
|
|
17586
|
+
message: string;
|
|
17587
|
+
}[];
|
|
17588
|
+
context?: unknown;
|
|
17589
|
+
};
|
|
17590
|
+
};
|
|
17591
|
+
};
|
|
17592
|
+
/** @description Not found */
|
|
17593
|
+
404: {
|
|
17594
|
+
headers: {
|
|
17595
|
+
[name: string]: unknown;
|
|
17596
|
+
};
|
|
17597
|
+
content: {
|
|
17598
|
+
"application/json": {
|
|
17599
|
+
code: string;
|
|
17600
|
+
message: string;
|
|
17601
|
+
issues?: {
|
|
17602
|
+
message: string;
|
|
17603
|
+
}[];
|
|
17604
|
+
context?: unknown;
|
|
17605
|
+
};
|
|
17606
|
+
};
|
|
17607
|
+
};
|
|
17608
|
+
/** @description Internal server error */
|
|
17609
|
+
500: {
|
|
17610
|
+
headers: {
|
|
17611
|
+
[name: string]: unknown;
|
|
17612
|
+
};
|
|
17613
|
+
content: {
|
|
17614
|
+
"application/json": {
|
|
17615
|
+
code: string;
|
|
17616
|
+
message: string;
|
|
17617
|
+
issues?: {
|
|
17618
|
+
message: string;
|
|
17619
|
+
}[];
|
|
17620
|
+
context?: unknown;
|
|
17621
|
+
};
|
|
17622
|
+
};
|
|
17623
|
+
};
|
|
17624
|
+
};
|
|
17625
|
+
};
|
|
17500
17626
|
getOwnerStatementSummaryPerLayoutDetailsReport: {
|
|
17501
17627
|
parameters: {
|
|
17502
17628
|
query: {
|
|
@@ -24734,14 +24860,33 @@ export interface operations {
|
|
|
24734
24860
|
};
|
|
24735
24861
|
getStatementsCsv: {
|
|
24736
24862
|
parameters: {
|
|
24737
|
-
query
|
|
24738
|
-
|
|
24739
|
-
|
|
24863
|
+
query?: {
|
|
24864
|
+
limit?: number;
|
|
24865
|
+
page?: number;
|
|
24866
|
+
/** @description comma separated periods */
|
|
24867
|
+
periodIds?: string;
|
|
24868
|
+
/** @description Year in format YYYY */
|
|
24869
|
+
year?: number;
|
|
24870
|
+
/** @description comma separated listings */
|
|
24871
|
+
listingIds?: string;
|
|
24872
|
+
/** @description comma separated statements */
|
|
24873
|
+
statementIds?: string;
|
|
24740
24874
|
/** @description Date in format YYYY-MM */
|
|
24741
|
-
month
|
|
24742
|
-
|
|
24743
|
-
|
|
24744
|
-
|
|
24875
|
+
month?: string;
|
|
24876
|
+
search?: string;
|
|
24877
|
+
status?: ("draft" | "inReview" | "published") | "all";
|
|
24878
|
+
/** @description comma separated owners */
|
|
24879
|
+
ownerIds?: string;
|
|
24880
|
+
/** @description comma separated owners */
|
|
24881
|
+
listingCollectionIds?: string;
|
|
24882
|
+
/** @description statement layout id */
|
|
24883
|
+
layoutId?: string;
|
|
24884
|
+
/** @description comma separated recurring fees */
|
|
24885
|
+
recurringFeeIds?: string;
|
|
24886
|
+
/** @description Date range in format YYYY-MM-DD...YYYY-MM-DD */
|
|
24887
|
+
dateRange?: string;
|
|
24888
|
+
/** @description Whether the end date is inclusive or exclusive */
|
|
24889
|
+
isDateRangeEndInclusive?: boolean;
|
|
24745
24890
|
};
|
|
24746
24891
|
header?: never;
|
|
24747
24892
|
path?: never;
|
|
@@ -24756,11 +24901,8 @@ export interface operations {
|
|
|
24756
24901
|
};
|
|
24757
24902
|
content: {
|
|
24758
24903
|
"application/json": {
|
|
24759
|
-
|
|
24760
|
-
|
|
24761
|
-
contactId: string;
|
|
24762
|
-
expIn: number;
|
|
24763
|
-
}[];
|
|
24904
|
+
url: string;
|
|
24905
|
+
expIn: number;
|
|
24764
24906
|
};
|
|
24765
24907
|
};
|
|
24766
24908
|
};
|
|
@@ -24849,8 +24991,8 @@ export interface operations {
|
|
|
24849
24991
|
getStatementsCsvBatch: {
|
|
24850
24992
|
parameters: {
|
|
24851
24993
|
query: {
|
|
24852
|
-
/** @description comma separated
|
|
24853
|
-
|
|
24994
|
+
/** @description comma separated ownership periods */
|
|
24995
|
+
ownershipPeriodIds: string;
|
|
24854
24996
|
/** @description Date in format YYYY-MM */
|
|
24855
24997
|
month: string;
|
|
24856
24998
|
/** @description Currency in ISO 4217 format, will be converted to lowercase */
|