@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
|
@@ -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;
|
|
@@ -1726,7 +1743,7 @@ export interface paths {
|
|
|
1726
1743
|
path?: never;
|
|
1727
1744
|
cookie?: never;
|
|
1728
1745
|
};
|
|
1729
|
-
/** @description Get Owner Statement CSV
|
|
1746
|
+
/** @description Get Owner Statement CSV export */
|
|
1730
1747
|
get: operations["getStatementsCsv"];
|
|
1731
1748
|
put?: never;
|
|
1732
1749
|
post?: never;
|
|
@@ -1743,7 +1760,7 @@ export interface paths {
|
|
|
1743
1760
|
path?: never;
|
|
1744
1761
|
cookie?: never;
|
|
1745
1762
|
};
|
|
1746
|
-
/** @description Get Owner Statement CSV ZIP
|
|
1763
|
+
/** @description Get Owner Statement CSV ZIP export */
|
|
1747
1764
|
get: operations["getStatementsCsvBatch"];
|
|
1748
1765
|
put?: never;
|
|
1749
1766
|
post?: 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: {
|
|
@@ -24733,14 +24859,33 @@ export interface operations {
|
|
|
24733
24859
|
};
|
|
24734
24860
|
getStatementsCsv: {
|
|
24735
24861
|
parameters: {
|
|
24736
|
-
query
|
|
24737
|
-
|
|
24738
|
-
|
|
24862
|
+
query?: {
|
|
24863
|
+
limit?: number;
|
|
24864
|
+
page?: number;
|
|
24865
|
+
/** @description comma separated periods */
|
|
24866
|
+
periodIds?: string;
|
|
24867
|
+
/** @description Year in format YYYY */
|
|
24868
|
+
year?: number;
|
|
24869
|
+
/** @description comma separated listings */
|
|
24870
|
+
listingIds?: string;
|
|
24871
|
+
/** @description comma separated statements */
|
|
24872
|
+
statementIds?: string;
|
|
24739
24873
|
/** @description Date in format YYYY-MM */
|
|
24740
|
-
month
|
|
24741
|
-
|
|
24742
|
-
|
|
24743
|
-
|
|
24874
|
+
month?: string;
|
|
24875
|
+
search?: string;
|
|
24876
|
+
status?: ("draft" | "inReview" | "published") | "all";
|
|
24877
|
+
/** @description comma separated owners */
|
|
24878
|
+
ownerIds?: string;
|
|
24879
|
+
/** @description comma separated owners */
|
|
24880
|
+
listingCollectionIds?: string;
|
|
24881
|
+
/** @description statement layout id */
|
|
24882
|
+
layoutId?: string;
|
|
24883
|
+
/** @description comma separated recurring fees */
|
|
24884
|
+
recurringFeeIds?: string;
|
|
24885
|
+
/** @description Date range in format YYYY-MM-DD...YYYY-MM-DD */
|
|
24886
|
+
dateRange?: string;
|
|
24887
|
+
/** @description Whether the end date is inclusive or exclusive */
|
|
24888
|
+
isDateRangeEndInclusive?: boolean;
|
|
24744
24889
|
};
|
|
24745
24890
|
header?: never;
|
|
24746
24891
|
path?: never;
|
|
@@ -24755,11 +24900,8 @@ export interface operations {
|
|
|
24755
24900
|
};
|
|
24756
24901
|
content: {
|
|
24757
24902
|
"application/json": {
|
|
24758
|
-
|
|
24759
|
-
|
|
24760
|
-
contactId: string;
|
|
24761
|
-
expIn: number;
|
|
24762
|
-
}[];
|
|
24903
|
+
url: string;
|
|
24904
|
+
expIn: number;
|
|
24763
24905
|
};
|
|
24764
24906
|
};
|
|
24765
24907
|
};
|
|
@@ -24848,8 +24990,8 @@ export interface operations {
|
|
|
24848
24990
|
getStatementsCsvBatch: {
|
|
24849
24991
|
parameters: {
|
|
24850
24992
|
query: {
|
|
24851
|
-
/** @description comma separated
|
|
24852
|
-
|
|
24993
|
+
/** @description comma separated ownership periods */
|
|
24994
|
+
ownershipPeriodIds: string;
|
|
24853
24995
|
/** @description Date in format YYYY-MM */
|
|
24854
24996
|
month: string;
|
|
24855
24997
|
/** @description Currency in ISO 4217 format, will be converted to lowercase */
|