@vrplatform/api 1.3.1-stage.2032 → 1.3.1-stage.2035
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.
|
@@ -1009,6 +1009,23 @@ export interface paths {
|
|
|
1009
1009
|
patch?: never;
|
|
1010
1010
|
trace?: never;
|
|
1011
1011
|
};
|
|
1012
|
+
"/metrics/listing-journal-entries": {
|
|
1013
|
+
parameters: {
|
|
1014
|
+
query?: never;
|
|
1015
|
+
header?: never;
|
|
1016
|
+
path?: never;
|
|
1017
|
+
cookie?: never;
|
|
1018
|
+
};
|
|
1019
|
+
/** @description Listing journal totals by owner-statement bucket and party */
|
|
1020
|
+
get: operations["getMetricListingJournalEntries"];
|
|
1021
|
+
put?: never;
|
|
1022
|
+
post?: never;
|
|
1023
|
+
delete?: never;
|
|
1024
|
+
options?: never;
|
|
1025
|
+
head?: never;
|
|
1026
|
+
patch?: never;
|
|
1027
|
+
trace?: never;
|
|
1028
|
+
};
|
|
1012
1029
|
"/metrics/occupancy-rate-over-time": {
|
|
1013
1030
|
parameters: {
|
|
1014
1031
|
query?: never;
|
|
@@ -14470,6 +14487,118 @@ export interface operations {
|
|
|
14470
14487
|
};
|
|
14471
14488
|
};
|
|
14472
14489
|
};
|
|
14490
|
+
getMetricListingJournalEntries: {
|
|
14491
|
+
parameters: {
|
|
14492
|
+
query: {
|
|
14493
|
+
listingId: string;
|
|
14494
|
+
party: "owners" | "manager";
|
|
14495
|
+
dimension?: "month" | "week" | "day" | "year";
|
|
14496
|
+
startDate: string;
|
|
14497
|
+
endDate: string;
|
|
14498
|
+
};
|
|
14499
|
+
header?: never;
|
|
14500
|
+
path?: never;
|
|
14501
|
+
cookie?: never;
|
|
14502
|
+
};
|
|
14503
|
+
requestBody?: never;
|
|
14504
|
+
responses: {
|
|
14505
|
+
/** @description Successful response */
|
|
14506
|
+
200: {
|
|
14507
|
+
headers: {
|
|
14508
|
+
[name: string]: unknown;
|
|
14509
|
+
};
|
|
14510
|
+
content: {
|
|
14511
|
+
"application/json": {
|
|
14512
|
+
data: {
|
|
14513
|
+
date: string;
|
|
14514
|
+
total: number;
|
|
14515
|
+
currency: string;
|
|
14516
|
+
}[];
|
|
14517
|
+
};
|
|
14518
|
+
};
|
|
14519
|
+
};
|
|
14520
|
+
/** @description Bad request */
|
|
14521
|
+
400: {
|
|
14522
|
+
headers: {
|
|
14523
|
+
[name: string]: unknown;
|
|
14524
|
+
};
|
|
14525
|
+
content: {
|
|
14526
|
+
"application/json": {
|
|
14527
|
+
code: string;
|
|
14528
|
+
message: string;
|
|
14529
|
+
issues?: {
|
|
14530
|
+
message: string;
|
|
14531
|
+
}[];
|
|
14532
|
+
context?: unknown;
|
|
14533
|
+
};
|
|
14534
|
+
};
|
|
14535
|
+
};
|
|
14536
|
+
/** @description Unauthorized */
|
|
14537
|
+
401: {
|
|
14538
|
+
headers: {
|
|
14539
|
+
[name: string]: unknown;
|
|
14540
|
+
};
|
|
14541
|
+
content: {
|
|
14542
|
+
"application/json": {
|
|
14543
|
+
code: string;
|
|
14544
|
+
message: string;
|
|
14545
|
+
issues?: {
|
|
14546
|
+
message: string;
|
|
14547
|
+
}[];
|
|
14548
|
+
context?: unknown;
|
|
14549
|
+
};
|
|
14550
|
+
};
|
|
14551
|
+
};
|
|
14552
|
+
/** @description Forbidden */
|
|
14553
|
+
403: {
|
|
14554
|
+
headers: {
|
|
14555
|
+
[name: string]: unknown;
|
|
14556
|
+
};
|
|
14557
|
+
content: {
|
|
14558
|
+
"application/json": {
|
|
14559
|
+
code: string;
|
|
14560
|
+
message: string;
|
|
14561
|
+
issues?: {
|
|
14562
|
+
message: string;
|
|
14563
|
+
}[];
|
|
14564
|
+
context?: unknown;
|
|
14565
|
+
};
|
|
14566
|
+
};
|
|
14567
|
+
};
|
|
14568
|
+
/** @description Not found */
|
|
14569
|
+
404: {
|
|
14570
|
+
headers: {
|
|
14571
|
+
[name: string]: unknown;
|
|
14572
|
+
};
|
|
14573
|
+
content: {
|
|
14574
|
+
"application/json": {
|
|
14575
|
+
code: string;
|
|
14576
|
+
message: string;
|
|
14577
|
+
issues?: {
|
|
14578
|
+
message: string;
|
|
14579
|
+
}[];
|
|
14580
|
+
context?: unknown;
|
|
14581
|
+
};
|
|
14582
|
+
};
|
|
14583
|
+
};
|
|
14584
|
+
/** @description Internal server error */
|
|
14585
|
+
500: {
|
|
14586
|
+
headers: {
|
|
14587
|
+
[name: string]: unknown;
|
|
14588
|
+
};
|
|
14589
|
+
content: {
|
|
14590
|
+
"application/json": {
|
|
14591
|
+
code: string;
|
|
14592
|
+
message: string;
|
|
14593
|
+
issues?: {
|
|
14594
|
+
message: string;
|
|
14595
|
+
}[];
|
|
14596
|
+
context?: unknown;
|
|
14597
|
+
};
|
|
14598
|
+
};
|
|
14599
|
+
};
|
|
14600
|
+
};
|
|
14601
|
+
};
|
|
14473
14602
|
getMetricOccupancyRateOverTime: {
|
|
14474
14603
|
parameters: {
|
|
14475
14604
|
query: {
|