@vrplatform/api 1.3.1-stage.1695 → 1.3.1-stage.1700

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
@@ -6,7 +6,7 @@
6
6
  "typings": "build/main/index.d.ts",
7
7
  "module": "build/module/index.js"
8
8
  },
9
- "version": "1.3.1-stage.1695",
9
+ "version": "1.3.1-stage.1700",
10
10
  "description": "",
11
11
  "main": "build/main/index.js",
12
12
  "module": "build/module/index.js",
@@ -1719,6 +1719,40 @@ export interface paths {
1719
1719
  patch?: never;
1720
1720
  trace?: never;
1721
1721
  };
1722
+ "/statements/csv": {
1723
+ parameters: {
1724
+ query?: never;
1725
+ header?: never;
1726
+ path?: never;
1727
+ cookie?: never;
1728
+ };
1729
+ /** @description Get Owner Statement CSV by month */
1730
+ get: operations["getStatementsCsv"];
1731
+ put?: never;
1732
+ post?: never;
1733
+ delete?: never;
1734
+ options?: never;
1735
+ head?: never;
1736
+ patch?: never;
1737
+ trace?: never;
1738
+ };
1739
+ "/statements/csv/batch": {
1740
+ parameters: {
1741
+ query?: never;
1742
+ header?: never;
1743
+ path?: never;
1744
+ cookie?: never;
1745
+ };
1746
+ /** @description Get Owner Statement CSV ZIP for a month */
1747
+ get: operations["getStatementsCsvBatch"];
1748
+ put?: never;
1749
+ post?: never;
1750
+ delete?: never;
1751
+ options?: never;
1752
+ head?: never;
1753
+ patch?: never;
1754
+ trace?: never;
1755
+ };
1722
1756
  "/statements/layouts": {
1723
1757
  parameters: {
1724
1758
  query?: never;
@@ -24352,6 +24386,230 @@ export interface operations {
24352
24386
  };
24353
24387
  };
24354
24388
  };
24389
+ getStatementsCsv: {
24390
+ parameters: {
24391
+ query: {
24392
+ viewAs?: "owner" | "manager";
24393
+ listingId: string;
24394
+ /** @description Date in format YYYY-MM */
24395
+ month: string;
24396
+ /** @description Currency in ISO 4217 format, will be converted to lowercase */
24397
+ currency?: string;
24398
+ contactId?: string;
24399
+ };
24400
+ header?: never;
24401
+ path?: never;
24402
+ cookie?: never;
24403
+ };
24404
+ requestBody?: never;
24405
+ responses: {
24406
+ /** @description Successful response */
24407
+ 200: {
24408
+ headers: {
24409
+ [name: string]: unknown;
24410
+ };
24411
+ content: {
24412
+ "application/json": {
24413
+ data: {
24414
+ url: string;
24415
+ contactId: string;
24416
+ expIn: number;
24417
+ }[];
24418
+ };
24419
+ };
24420
+ };
24421
+ /** @description Bad request */
24422
+ 400: {
24423
+ headers: {
24424
+ [name: string]: unknown;
24425
+ };
24426
+ content: {
24427
+ "application/json": {
24428
+ code: string;
24429
+ message: string;
24430
+ issues?: {
24431
+ message: string;
24432
+ }[];
24433
+ context?: unknown;
24434
+ };
24435
+ };
24436
+ };
24437
+ /** @description Unauthorized */
24438
+ 401: {
24439
+ headers: {
24440
+ [name: string]: unknown;
24441
+ };
24442
+ content: {
24443
+ "application/json": {
24444
+ code: string;
24445
+ message: string;
24446
+ issues?: {
24447
+ message: string;
24448
+ }[];
24449
+ context?: unknown;
24450
+ };
24451
+ };
24452
+ };
24453
+ /** @description Forbidden */
24454
+ 403: {
24455
+ headers: {
24456
+ [name: string]: unknown;
24457
+ };
24458
+ content: {
24459
+ "application/json": {
24460
+ code: string;
24461
+ message: string;
24462
+ issues?: {
24463
+ message: string;
24464
+ }[];
24465
+ context?: unknown;
24466
+ };
24467
+ };
24468
+ };
24469
+ /** @description Not found */
24470
+ 404: {
24471
+ headers: {
24472
+ [name: string]: unknown;
24473
+ };
24474
+ content: {
24475
+ "application/json": {
24476
+ code: string;
24477
+ message: string;
24478
+ issues?: {
24479
+ message: string;
24480
+ }[];
24481
+ context?: unknown;
24482
+ };
24483
+ };
24484
+ };
24485
+ /** @description Internal server error */
24486
+ 500: {
24487
+ headers: {
24488
+ [name: string]: unknown;
24489
+ };
24490
+ content: {
24491
+ "application/json": {
24492
+ code: string;
24493
+ message: string;
24494
+ issues?: {
24495
+ message: string;
24496
+ }[];
24497
+ context?: unknown;
24498
+ };
24499
+ };
24500
+ };
24501
+ };
24502
+ };
24503
+ getStatementsCsvBatch: {
24504
+ parameters: {
24505
+ query: {
24506
+ /** @description comma separated listing ids */
24507
+ listingIds: string;
24508
+ /** @description Date in format YYYY-MM */
24509
+ month: string;
24510
+ /** @description Currency in ISO 4217 format, will be converted to lowercase */
24511
+ currency?: string;
24512
+ };
24513
+ header?: never;
24514
+ path?: never;
24515
+ cookie?: never;
24516
+ };
24517
+ requestBody?: never;
24518
+ responses: {
24519
+ /** @description Successful response */
24520
+ 200: {
24521
+ headers: {
24522
+ [name: string]: unknown;
24523
+ };
24524
+ content: {
24525
+ "application/json": {
24526
+ url: string;
24527
+ expIn: number;
24528
+ };
24529
+ };
24530
+ };
24531
+ /** @description Bad request */
24532
+ 400: {
24533
+ headers: {
24534
+ [name: string]: unknown;
24535
+ };
24536
+ content: {
24537
+ "application/json": {
24538
+ code: string;
24539
+ message: string;
24540
+ issues?: {
24541
+ message: string;
24542
+ }[];
24543
+ context?: unknown;
24544
+ };
24545
+ };
24546
+ };
24547
+ /** @description Unauthorized */
24548
+ 401: {
24549
+ headers: {
24550
+ [name: string]: unknown;
24551
+ };
24552
+ content: {
24553
+ "application/json": {
24554
+ code: string;
24555
+ message: string;
24556
+ issues?: {
24557
+ message: string;
24558
+ }[];
24559
+ context?: unknown;
24560
+ };
24561
+ };
24562
+ };
24563
+ /** @description Forbidden */
24564
+ 403: {
24565
+ headers: {
24566
+ [name: string]: unknown;
24567
+ };
24568
+ content: {
24569
+ "application/json": {
24570
+ code: string;
24571
+ message: string;
24572
+ issues?: {
24573
+ message: string;
24574
+ }[];
24575
+ context?: unknown;
24576
+ };
24577
+ };
24578
+ };
24579
+ /** @description Not found */
24580
+ 404: {
24581
+ headers: {
24582
+ [name: string]: unknown;
24583
+ };
24584
+ content: {
24585
+ "application/json": {
24586
+ code: string;
24587
+ message: string;
24588
+ issues?: {
24589
+ message: string;
24590
+ }[];
24591
+ context?: unknown;
24592
+ };
24593
+ };
24594
+ };
24595
+ /** @description Internal server error */
24596
+ 500: {
24597
+ headers: {
24598
+ [name: string]: unknown;
24599
+ };
24600
+ content: {
24601
+ "application/json": {
24602
+ code: string;
24603
+ message: string;
24604
+ issues?: {
24605
+ message: string;
24606
+ }[];
24607
+ context?: unknown;
24608
+ };
24609
+ };
24610
+ };
24611
+ };
24612
+ };
24355
24613
  getStatementsLayouts: {
24356
24614
  parameters: {
24357
24615
  query?: {