@vrplatform/api 1.3.1-stage.2032 → 1.3.1-stage.2039

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