@vrplatform/api 1.3.1-1697 → 1.3.1-1706

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.
@@ -1718,6 +1718,40 @@ export interface paths {
1718
1718
  patch?: never;
1719
1719
  trace?: never;
1720
1720
  };
1721
+ "/statements/csv": {
1722
+ parameters: {
1723
+ query?: never;
1724
+ header?: never;
1725
+ path?: never;
1726
+ cookie?: never;
1727
+ };
1728
+ /** @description Get Owner Statement CSV by month */
1729
+ get: operations["getStatementsCsv"];
1730
+ put?: never;
1731
+ post?: never;
1732
+ delete?: never;
1733
+ options?: never;
1734
+ head?: never;
1735
+ patch?: never;
1736
+ trace?: never;
1737
+ };
1738
+ "/statements/csv/batch": {
1739
+ parameters: {
1740
+ query?: never;
1741
+ header?: never;
1742
+ path?: never;
1743
+ cookie?: never;
1744
+ };
1745
+ /** @description Get Owner Statement CSV ZIP for a month */
1746
+ get: operations["getStatementsCsvBatch"];
1747
+ put?: never;
1748
+ post?: never;
1749
+ delete?: never;
1750
+ options?: never;
1751
+ head?: never;
1752
+ patch?: never;
1753
+ trace?: never;
1754
+ };
1721
1755
  "/statements/layouts": {
1722
1756
  parameters: {
1723
1757
  query?: never;
@@ -6489,8 +6523,7 @@ export interface operations {
6489
6523
  companyType?: ("c_corporation" | "limited_liability_company" | "partnership" | "s_corporation" | "trust_estate") | null;
6490
6524
  taxIdentifier?: string | null;
6491
6525
  uniqueRef?: string | null;
6492
- /** @enum {string} */
6493
- status: "active" | "inactive";
6526
+ status: ("active" | "inactive") | "pending";
6494
6527
  payoutAccountId?: string | null;
6495
6528
  /** Format: uuid */
6496
6529
  id: string;
@@ -6675,8 +6708,7 @@ export interface operations {
6675
6708
  companyType?: ("c_corporation" | "limited_liability_company" | "partnership" | "s_corporation" | "trust_estate") | null;
6676
6709
  taxIdentifier?: string | null;
6677
6710
  uniqueRef?: string | null;
6678
- /** @enum {string} */
6679
- status: "active" | "inactive";
6711
+ status: ("active" | "inactive") | "pending";
6680
6712
  payoutAccountId?: string | null;
6681
6713
  /** Format: uuid */
6682
6714
  id: string;
@@ -7082,8 +7114,7 @@ export interface operations {
7082
7114
  companyType?: ("c_corporation" | "limited_liability_company" | "partnership" | "s_corporation" | "trust_estate") | null;
7083
7115
  taxIdentifier?: string | null;
7084
7116
  uniqueRef?: string | null;
7085
- /** @enum {string} */
7086
- status: "active" | "inactive";
7117
+ status: ("active" | "inactive") | "pending";
7087
7118
  payoutAccountId?: string | null;
7088
7119
  /** Format: uuid */
7089
7120
  id: string;
@@ -7259,8 +7290,7 @@ export interface operations {
7259
7290
  companyType?: ("c_corporation" | "limited_liability_company" | "partnership" | "s_corporation" | "trust_estate") | null;
7260
7291
  taxIdentifier?: string | null;
7261
7292
  uniqueRef?: string | null;
7262
- /** @enum {string} */
7263
- status: "active" | "inactive";
7293
+ status: ("active" | "inactive") | "pending";
7264
7294
  payoutAccountId?: string | null;
7265
7295
  /** Format: uuid */
7266
7296
  id: string;
@@ -24351,6 +24381,230 @@ export interface operations {
24351
24381
  };
24352
24382
  };
24353
24383
  };
24384
+ getStatementsCsv: {
24385
+ parameters: {
24386
+ query: {
24387
+ viewAs?: "owner" | "manager";
24388
+ listingId: string;
24389
+ /** @description Date in format YYYY-MM */
24390
+ month: string;
24391
+ /** @description Currency in ISO 4217 format, will be converted to lowercase */
24392
+ currency?: string;
24393
+ contactId?: string;
24394
+ };
24395
+ header?: never;
24396
+ path?: never;
24397
+ cookie?: never;
24398
+ };
24399
+ requestBody?: never;
24400
+ responses: {
24401
+ /** @description Successful response */
24402
+ 200: {
24403
+ headers: {
24404
+ [name: string]: unknown;
24405
+ };
24406
+ content: {
24407
+ "application/json": {
24408
+ data: {
24409
+ url: string;
24410
+ contactId: string;
24411
+ expIn: number;
24412
+ }[];
24413
+ };
24414
+ };
24415
+ };
24416
+ /** @description Bad request */
24417
+ 400: {
24418
+ headers: {
24419
+ [name: string]: unknown;
24420
+ };
24421
+ content: {
24422
+ "application/json": {
24423
+ code: string;
24424
+ message: string;
24425
+ issues?: {
24426
+ message: string;
24427
+ }[];
24428
+ context?: unknown;
24429
+ };
24430
+ };
24431
+ };
24432
+ /** @description Unauthorized */
24433
+ 401: {
24434
+ headers: {
24435
+ [name: string]: unknown;
24436
+ };
24437
+ content: {
24438
+ "application/json": {
24439
+ code: string;
24440
+ message: string;
24441
+ issues?: {
24442
+ message: string;
24443
+ }[];
24444
+ context?: unknown;
24445
+ };
24446
+ };
24447
+ };
24448
+ /** @description Forbidden */
24449
+ 403: {
24450
+ headers: {
24451
+ [name: string]: unknown;
24452
+ };
24453
+ content: {
24454
+ "application/json": {
24455
+ code: string;
24456
+ message: string;
24457
+ issues?: {
24458
+ message: string;
24459
+ }[];
24460
+ context?: unknown;
24461
+ };
24462
+ };
24463
+ };
24464
+ /** @description Not found */
24465
+ 404: {
24466
+ headers: {
24467
+ [name: string]: unknown;
24468
+ };
24469
+ content: {
24470
+ "application/json": {
24471
+ code: string;
24472
+ message: string;
24473
+ issues?: {
24474
+ message: string;
24475
+ }[];
24476
+ context?: unknown;
24477
+ };
24478
+ };
24479
+ };
24480
+ /** @description Internal server error */
24481
+ 500: {
24482
+ headers: {
24483
+ [name: string]: unknown;
24484
+ };
24485
+ content: {
24486
+ "application/json": {
24487
+ code: string;
24488
+ message: string;
24489
+ issues?: {
24490
+ message: string;
24491
+ }[];
24492
+ context?: unknown;
24493
+ };
24494
+ };
24495
+ };
24496
+ };
24497
+ };
24498
+ getStatementsCsvBatch: {
24499
+ parameters: {
24500
+ query: {
24501
+ /** @description comma separated listing ids */
24502
+ listingIds: string;
24503
+ /** @description Date in format YYYY-MM */
24504
+ month: string;
24505
+ /** @description Currency in ISO 4217 format, will be converted to lowercase */
24506
+ currency?: string;
24507
+ };
24508
+ header?: never;
24509
+ path?: never;
24510
+ cookie?: never;
24511
+ };
24512
+ requestBody?: never;
24513
+ responses: {
24514
+ /** @description Successful response */
24515
+ 200: {
24516
+ headers: {
24517
+ [name: string]: unknown;
24518
+ };
24519
+ content: {
24520
+ "application/json": {
24521
+ url: string;
24522
+ expIn: number;
24523
+ };
24524
+ };
24525
+ };
24526
+ /** @description Bad request */
24527
+ 400: {
24528
+ headers: {
24529
+ [name: string]: unknown;
24530
+ };
24531
+ content: {
24532
+ "application/json": {
24533
+ code: string;
24534
+ message: string;
24535
+ issues?: {
24536
+ message: string;
24537
+ }[];
24538
+ context?: unknown;
24539
+ };
24540
+ };
24541
+ };
24542
+ /** @description Unauthorized */
24543
+ 401: {
24544
+ headers: {
24545
+ [name: string]: unknown;
24546
+ };
24547
+ content: {
24548
+ "application/json": {
24549
+ code: string;
24550
+ message: string;
24551
+ issues?: {
24552
+ message: string;
24553
+ }[];
24554
+ context?: unknown;
24555
+ };
24556
+ };
24557
+ };
24558
+ /** @description Forbidden */
24559
+ 403: {
24560
+ headers: {
24561
+ [name: string]: unknown;
24562
+ };
24563
+ content: {
24564
+ "application/json": {
24565
+ code: string;
24566
+ message: string;
24567
+ issues?: {
24568
+ message: string;
24569
+ }[];
24570
+ context?: unknown;
24571
+ };
24572
+ };
24573
+ };
24574
+ /** @description Not found */
24575
+ 404: {
24576
+ headers: {
24577
+ [name: string]: unknown;
24578
+ };
24579
+ content: {
24580
+ "application/json": {
24581
+ code: string;
24582
+ message: string;
24583
+ issues?: {
24584
+ message: string;
24585
+ }[];
24586
+ context?: unknown;
24587
+ };
24588
+ };
24589
+ };
24590
+ /** @description Internal server error */
24591
+ 500: {
24592
+ headers: {
24593
+ [name: string]: unknown;
24594
+ };
24595
+ content: {
24596
+ "application/json": {
24597
+ code: string;
24598
+ message: string;
24599
+ issues?: {
24600
+ message: string;
24601
+ }[];
24602
+ context?: unknown;
24603
+ };
24604
+ };
24605
+ };
24606
+ };
24607
+ };
24354
24608
  getStatementsLayouts: {
24355
24609
  parameters: {
24356
24610
  query?: {