@vrplatform/api 1.3.1-stage.1503 → 1.3.1-stage.1505

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.
@@ -1670,6 +1670,23 @@ export interface paths {
1670
1670
  patch?: never;
1671
1671
  trace?: never;
1672
1672
  };
1673
+ "/statements/pdf/batch": {
1674
+ parameters: {
1675
+ query?: never;
1676
+ header?: never;
1677
+ path?: never;
1678
+ cookie?: never;
1679
+ };
1680
+ /** @description Get Owner Statements ZIP for a month */
1681
+ get: operations["getStatementsPdfBatch"];
1682
+ put?: never;
1683
+ post?: never;
1684
+ delete?: never;
1685
+ options?: never;
1686
+ head?: never;
1687
+ patch?: never;
1688
+ trace?: never;
1689
+ };
1673
1690
  "/statements/totals": {
1674
1691
  parameters: {
1675
1692
  query?: never;
@@ -24545,6 +24562,116 @@ export interface operations {
24545
24562
  };
24546
24563
  };
24547
24564
  };
24565
+ getStatementsPdfBatch: {
24566
+ parameters: {
24567
+ query: {
24568
+ /** @description comma separated ownership periods */
24569
+ ownershipPeriodIds: string;
24570
+ /** @description Date in format YYYY-MM */
24571
+ month: string;
24572
+ /** @description Currency in ISO 4217 format, will be converted to lowercase */
24573
+ currency?: string;
24574
+ };
24575
+ header?: never;
24576
+ path?: never;
24577
+ cookie?: never;
24578
+ };
24579
+ requestBody?: never;
24580
+ responses: {
24581
+ /** @description Successful response */
24582
+ 200: {
24583
+ headers: {
24584
+ [name: string]: unknown;
24585
+ };
24586
+ content: {
24587
+ "application/json": {
24588
+ url: string;
24589
+ expIn: number;
24590
+ };
24591
+ };
24592
+ };
24593
+ /** @description Bad request */
24594
+ 400: {
24595
+ headers: {
24596
+ [name: string]: unknown;
24597
+ };
24598
+ content: {
24599
+ "application/json": {
24600
+ code: string;
24601
+ message: string;
24602
+ issues?: {
24603
+ message: string;
24604
+ }[];
24605
+ context?: unknown;
24606
+ };
24607
+ };
24608
+ };
24609
+ /** @description Unauthorized */
24610
+ 401: {
24611
+ headers: {
24612
+ [name: string]: unknown;
24613
+ };
24614
+ content: {
24615
+ "application/json": {
24616
+ code: string;
24617
+ message: string;
24618
+ issues?: {
24619
+ message: string;
24620
+ }[];
24621
+ context?: unknown;
24622
+ };
24623
+ };
24624
+ };
24625
+ /** @description Forbidden */
24626
+ 403: {
24627
+ headers: {
24628
+ [name: string]: unknown;
24629
+ };
24630
+ content: {
24631
+ "application/json": {
24632
+ code: string;
24633
+ message: string;
24634
+ issues?: {
24635
+ message: string;
24636
+ }[];
24637
+ context?: unknown;
24638
+ };
24639
+ };
24640
+ };
24641
+ /** @description Not found */
24642
+ 404: {
24643
+ headers: {
24644
+ [name: string]: unknown;
24645
+ };
24646
+ content: {
24647
+ "application/json": {
24648
+ code: string;
24649
+ message: string;
24650
+ issues?: {
24651
+ message: string;
24652
+ }[];
24653
+ context?: unknown;
24654
+ };
24655
+ };
24656
+ };
24657
+ /** @description Internal server error */
24658
+ 500: {
24659
+ headers: {
24660
+ [name: string]: unknown;
24661
+ };
24662
+ content: {
24663
+ "application/json": {
24664
+ code: string;
24665
+ message: string;
24666
+ issues?: {
24667
+ message: string;
24668
+ }[];
24669
+ context?: unknown;
24670
+ };
24671
+ };
24672
+ };
24673
+ };
24674
+ };
24548
24675
  getStatementsTotals: {
24549
24676
  parameters: {
24550
24677
  query: {