@vrplatform/api 1.2.33-stage.785 → 1.2.33-stage.788

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.
@@ -1641,6 +1641,40 @@ export interface paths {
1641
1641
  patch?: never;
1642
1642
  trace?: never;
1643
1643
  };
1644
+ "/reports/owner-statement-summaries": {
1645
+ parameters: {
1646
+ query?: never;
1647
+ header?: never;
1648
+ path?: never;
1649
+ cookie?: never;
1650
+ };
1651
+ /** @description Owner statement summaries aggregated by contact */
1652
+ get: operations["getOwnerStatementSummariesReport"];
1653
+ put?: never;
1654
+ post?: never;
1655
+ delete?: never;
1656
+ options?: never;
1657
+ head?: never;
1658
+ patch?: never;
1659
+ trace?: never;
1660
+ };
1661
+ "/reports/owner-statement-summaries/csv": {
1662
+ parameters: {
1663
+ query?: never;
1664
+ header?: never;
1665
+ path?: never;
1666
+ cookie?: never;
1667
+ };
1668
+ /** @description Owner statement summaries aggregated by contact (CSV) */
1669
+ get: operations["getOwnerStatementSummariesReportCsv"];
1670
+ put?: never;
1671
+ post?: never;
1672
+ delete?: never;
1673
+ options?: never;
1674
+ head?: never;
1675
+ patch?: never;
1676
+ trace?: never;
1677
+ };
1644
1678
  "/calendar-blocks": {
1645
1679
  parameters: {
1646
1680
  query?: never;
@@ -2572,7 +2606,7 @@ export interface operations {
2572
2606
  etaAt?: string | null;
2573
2607
  paidAt?: string | null;
2574
2608
  currency: string;
2575
- description: string;
2609
+ description?: string | null;
2576
2610
  metadata?: {
2577
2611
  [key: string]: unknown;
2578
2612
  } | null;
@@ -2619,7 +2653,7 @@ export interface operations {
2619
2653
  paidAt?: string | null;
2620
2654
  connectionId: string;
2621
2655
  currency: string;
2622
- description: string;
2656
+ description?: string | null;
2623
2657
  metadata?: {
2624
2658
  [key: string]: unknown;
2625
2659
  } | null;
@@ -2787,7 +2821,7 @@ export interface operations {
2787
2821
  paidAt?: string | null;
2788
2822
  connectionId: string;
2789
2823
  currency: string;
2790
- description: string;
2824
+ description?: string | null;
2791
2825
  metadata?: {
2792
2826
  [key: string]: unknown;
2793
2827
  } | null;
@@ -2950,7 +2984,7 @@ export interface operations {
2950
2984
  paidAt?: string | null;
2951
2985
  connectionId?: string;
2952
2986
  currency?: string;
2953
- description?: string;
2987
+ description?: string | null;
2954
2988
  metadata?: {
2955
2989
  [key: string]: unknown;
2956
2990
  } | null;
@@ -2995,7 +3029,7 @@ export interface operations {
2995
3029
  paidAt?: string | null;
2996
3030
  connectionId: string;
2997
3031
  currency: string;
2998
- description: string;
3032
+ description?: string | null;
2999
3033
  metadata?: {
3000
3034
  [key: string]: unknown;
3001
3035
  } | null;
@@ -3242,7 +3276,7 @@ export interface operations {
3242
3276
  paidAt?: string | null;
3243
3277
  connectionId: string;
3244
3278
  currency: string;
3245
- description: string;
3279
+ description?: string | null;
3246
3280
  metadata?: {
3247
3281
  [key: string]: unknown;
3248
3282
  } | null;
@@ -3415,7 +3449,7 @@ export interface operations {
3415
3449
  paidAt?: string | null;
3416
3450
  connectionId: string;
3417
3451
  currency: string;
3418
- description: string;
3452
+ description?: string | null;
3419
3453
  metadata?: {
3420
3454
  [key: string]: unknown;
3421
3455
  } | null;
@@ -3460,7 +3494,7 @@ export interface operations {
3460
3494
  paidAt?: string | null;
3461
3495
  connectionId: string;
3462
3496
  currency: string;
3463
- description: string;
3497
+ description?: string | null;
3464
3498
  metadata?: {
3465
3499
  [key: string]: unknown;
3466
3500
  } | null;
@@ -23889,6 +23923,166 @@ export interface operations {
23889
23923
  };
23890
23924
  };
23891
23925
  };
23926
+ getOwnerStatementSummariesReport: {
23927
+ parameters: {
23928
+ query: {
23929
+ /** @description Year in format YYYY */
23930
+ year: number;
23931
+ };
23932
+ header?: {
23933
+ "X-Team-Id"?: string;
23934
+ };
23935
+ path?: never;
23936
+ cookie?: never;
23937
+ };
23938
+ requestBody?: never;
23939
+ responses: {
23940
+ /** @description Successful response */
23941
+ 200: {
23942
+ headers: {
23943
+ [name: string]: unknown;
23944
+ };
23945
+ content: {
23946
+ "application/json": {
23947
+ data: {
23948
+ contact: {
23949
+ contactId: string;
23950
+ name: string | null;
23951
+ firstName: string | null;
23952
+ email: string | null;
23953
+ phone: string | null;
23954
+ };
23955
+ currency: string;
23956
+ financials: {
23957
+ startingBalance: number;
23958
+ netIncome: number;
23959
+ currentBalance: number;
23960
+ ownerPayout: number;
23961
+ endingBalance: number;
23962
+ };
23963
+ }[];
23964
+ };
23965
+ };
23966
+ };
23967
+ /** @description Invalid input data */
23968
+ 400: {
23969
+ headers: {
23970
+ [name: string]: unknown;
23971
+ };
23972
+ content: {
23973
+ "application/json": components["schemas"]["error.BAD_REQUEST"];
23974
+ };
23975
+ };
23976
+ /** @description Authorization not provided */
23977
+ 401: {
23978
+ headers: {
23979
+ [name: string]: unknown;
23980
+ };
23981
+ content: {
23982
+ "application/json": components["schemas"]["error.UNAUTHORIZED"];
23983
+ };
23984
+ };
23985
+ /** @description Insufficient access */
23986
+ 403: {
23987
+ headers: {
23988
+ [name: string]: unknown;
23989
+ };
23990
+ content: {
23991
+ "application/json": components["schemas"]["error.FORBIDDEN"];
23992
+ };
23993
+ };
23994
+ /** @description Not found */
23995
+ 404: {
23996
+ headers: {
23997
+ [name: string]: unknown;
23998
+ };
23999
+ content: {
24000
+ "application/json": components["schemas"]["error.NOT_FOUND"];
24001
+ };
24002
+ };
24003
+ /** @description Internal server error */
24004
+ 500: {
24005
+ headers: {
24006
+ [name: string]: unknown;
24007
+ };
24008
+ content: {
24009
+ "application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
24010
+ };
24011
+ };
24012
+ };
24013
+ };
24014
+ getOwnerStatementSummariesReportCsv: {
24015
+ parameters: {
24016
+ query: {
24017
+ /** @description Year in format YYYY */
24018
+ year: number;
24019
+ };
24020
+ header?: {
24021
+ "X-Team-Id"?: string;
24022
+ };
24023
+ path?: never;
24024
+ cookie?: never;
24025
+ };
24026
+ requestBody?: never;
24027
+ responses: {
24028
+ /** @description Successful response */
24029
+ 200: {
24030
+ headers: {
24031
+ [name: string]: unknown;
24032
+ };
24033
+ content: {
24034
+ "application/json": {
24035
+ url: string;
24036
+ };
24037
+ };
24038
+ };
24039
+ /** @description Invalid input data */
24040
+ 400: {
24041
+ headers: {
24042
+ [name: string]: unknown;
24043
+ };
24044
+ content: {
24045
+ "application/json": components["schemas"]["error.BAD_REQUEST"];
24046
+ };
24047
+ };
24048
+ /** @description Authorization not provided */
24049
+ 401: {
24050
+ headers: {
24051
+ [name: string]: unknown;
24052
+ };
24053
+ content: {
24054
+ "application/json": components["schemas"]["error.UNAUTHORIZED"];
24055
+ };
24056
+ };
24057
+ /** @description Insufficient access */
24058
+ 403: {
24059
+ headers: {
24060
+ [name: string]: unknown;
24061
+ };
24062
+ content: {
24063
+ "application/json": components["schemas"]["error.FORBIDDEN"];
24064
+ };
24065
+ };
24066
+ /** @description Not found */
24067
+ 404: {
24068
+ headers: {
24069
+ [name: string]: unknown;
24070
+ };
24071
+ content: {
24072
+ "application/json": components["schemas"]["error.NOT_FOUND"];
24073
+ };
24074
+ };
24075
+ /** @description Internal server error */
24076
+ 500: {
24077
+ headers: {
24078
+ [name: string]: unknown;
24079
+ };
24080
+ content: {
24081
+ "application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
24082
+ };
24083
+ };
24084
+ };
24085
+ };
23892
24086
  getCalendar: {
23893
24087
  parameters: {
23894
24088
  query: {