@vrplatform/api 1.2.33-stage.786 → 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;
|
|
@@ -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: {
|