@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.
package/package.json
CHANGED
package/src/generated/v1.ts
CHANGED
|
@@ -1642,6 +1642,40 @@ export interface paths {
|
|
|
1642
1642
|
patch?: never;
|
|
1643
1643
|
trace?: never;
|
|
1644
1644
|
};
|
|
1645
|
+
"/reports/owner-statement-summaries": {
|
|
1646
|
+
parameters: {
|
|
1647
|
+
query?: never;
|
|
1648
|
+
header?: never;
|
|
1649
|
+
path?: never;
|
|
1650
|
+
cookie?: never;
|
|
1651
|
+
};
|
|
1652
|
+
/** @description Owner statement summaries aggregated by contact */
|
|
1653
|
+
get: operations["getOwnerStatementSummariesReport"];
|
|
1654
|
+
put?: never;
|
|
1655
|
+
post?: never;
|
|
1656
|
+
delete?: never;
|
|
1657
|
+
options?: never;
|
|
1658
|
+
head?: never;
|
|
1659
|
+
patch?: never;
|
|
1660
|
+
trace?: never;
|
|
1661
|
+
};
|
|
1662
|
+
"/reports/owner-statement-summaries/csv": {
|
|
1663
|
+
parameters: {
|
|
1664
|
+
query?: never;
|
|
1665
|
+
header?: never;
|
|
1666
|
+
path?: never;
|
|
1667
|
+
cookie?: never;
|
|
1668
|
+
};
|
|
1669
|
+
/** @description Owner statement summaries aggregated by contact (CSV) */
|
|
1670
|
+
get: operations["getOwnerStatementSummariesReportCsv"];
|
|
1671
|
+
put?: never;
|
|
1672
|
+
post?: never;
|
|
1673
|
+
delete?: never;
|
|
1674
|
+
options?: never;
|
|
1675
|
+
head?: never;
|
|
1676
|
+
patch?: never;
|
|
1677
|
+
trace?: never;
|
|
1678
|
+
};
|
|
1645
1679
|
"/calendar-blocks": {
|
|
1646
1680
|
parameters: {
|
|
1647
1681
|
query?: never;
|
|
@@ -23890,6 +23924,166 @@ export interface operations {
|
|
|
23890
23924
|
};
|
|
23891
23925
|
};
|
|
23892
23926
|
};
|
|
23927
|
+
getOwnerStatementSummariesReport: {
|
|
23928
|
+
parameters: {
|
|
23929
|
+
query: {
|
|
23930
|
+
/** @description Year in format YYYY */
|
|
23931
|
+
year: number;
|
|
23932
|
+
};
|
|
23933
|
+
header?: {
|
|
23934
|
+
"X-Team-Id"?: string;
|
|
23935
|
+
};
|
|
23936
|
+
path?: never;
|
|
23937
|
+
cookie?: never;
|
|
23938
|
+
};
|
|
23939
|
+
requestBody?: never;
|
|
23940
|
+
responses: {
|
|
23941
|
+
/** @description Successful response */
|
|
23942
|
+
200: {
|
|
23943
|
+
headers: {
|
|
23944
|
+
[name: string]: unknown;
|
|
23945
|
+
};
|
|
23946
|
+
content: {
|
|
23947
|
+
"application/json": {
|
|
23948
|
+
data: {
|
|
23949
|
+
contact: {
|
|
23950
|
+
contactId: string;
|
|
23951
|
+
name: string | null;
|
|
23952
|
+
firstName: string | null;
|
|
23953
|
+
email: string | null;
|
|
23954
|
+
phone: string | null;
|
|
23955
|
+
};
|
|
23956
|
+
currency: string;
|
|
23957
|
+
financials: {
|
|
23958
|
+
startingBalance: number;
|
|
23959
|
+
netIncome: number;
|
|
23960
|
+
currentBalance: number;
|
|
23961
|
+
ownerPayout: number;
|
|
23962
|
+
endingBalance: number;
|
|
23963
|
+
};
|
|
23964
|
+
}[];
|
|
23965
|
+
};
|
|
23966
|
+
};
|
|
23967
|
+
};
|
|
23968
|
+
/** @description Invalid input data */
|
|
23969
|
+
400: {
|
|
23970
|
+
headers: {
|
|
23971
|
+
[name: string]: unknown;
|
|
23972
|
+
};
|
|
23973
|
+
content: {
|
|
23974
|
+
"application/json": components["schemas"]["error.BAD_REQUEST"];
|
|
23975
|
+
};
|
|
23976
|
+
};
|
|
23977
|
+
/** @description Authorization not provided */
|
|
23978
|
+
401: {
|
|
23979
|
+
headers: {
|
|
23980
|
+
[name: string]: unknown;
|
|
23981
|
+
};
|
|
23982
|
+
content: {
|
|
23983
|
+
"application/json": components["schemas"]["error.UNAUTHORIZED"];
|
|
23984
|
+
};
|
|
23985
|
+
};
|
|
23986
|
+
/** @description Insufficient access */
|
|
23987
|
+
403: {
|
|
23988
|
+
headers: {
|
|
23989
|
+
[name: string]: unknown;
|
|
23990
|
+
};
|
|
23991
|
+
content: {
|
|
23992
|
+
"application/json": components["schemas"]["error.FORBIDDEN"];
|
|
23993
|
+
};
|
|
23994
|
+
};
|
|
23995
|
+
/** @description Not found */
|
|
23996
|
+
404: {
|
|
23997
|
+
headers: {
|
|
23998
|
+
[name: string]: unknown;
|
|
23999
|
+
};
|
|
24000
|
+
content: {
|
|
24001
|
+
"application/json": components["schemas"]["error.NOT_FOUND"];
|
|
24002
|
+
};
|
|
24003
|
+
};
|
|
24004
|
+
/** @description Internal server error */
|
|
24005
|
+
500: {
|
|
24006
|
+
headers: {
|
|
24007
|
+
[name: string]: unknown;
|
|
24008
|
+
};
|
|
24009
|
+
content: {
|
|
24010
|
+
"application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
|
|
24011
|
+
};
|
|
24012
|
+
};
|
|
24013
|
+
};
|
|
24014
|
+
};
|
|
24015
|
+
getOwnerStatementSummariesReportCsv: {
|
|
24016
|
+
parameters: {
|
|
24017
|
+
query: {
|
|
24018
|
+
/** @description Year in format YYYY */
|
|
24019
|
+
year: number;
|
|
24020
|
+
};
|
|
24021
|
+
header?: {
|
|
24022
|
+
"X-Team-Id"?: string;
|
|
24023
|
+
};
|
|
24024
|
+
path?: never;
|
|
24025
|
+
cookie?: never;
|
|
24026
|
+
};
|
|
24027
|
+
requestBody?: never;
|
|
24028
|
+
responses: {
|
|
24029
|
+
/** @description Successful response */
|
|
24030
|
+
200: {
|
|
24031
|
+
headers: {
|
|
24032
|
+
[name: string]: unknown;
|
|
24033
|
+
};
|
|
24034
|
+
content: {
|
|
24035
|
+
"application/json": {
|
|
24036
|
+
url: string;
|
|
24037
|
+
};
|
|
24038
|
+
};
|
|
24039
|
+
};
|
|
24040
|
+
/** @description Invalid input data */
|
|
24041
|
+
400: {
|
|
24042
|
+
headers: {
|
|
24043
|
+
[name: string]: unknown;
|
|
24044
|
+
};
|
|
24045
|
+
content: {
|
|
24046
|
+
"application/json": components["schemas"]["error.BAD_REQUEST"];
|
|
24047
|
+
};
|
|
24048
|
+
};
|
|
24049
|
+
/** @description Authorization not provided */
|
|
24050
|
+
401: {
|
|
24051
|
+
headers: {
|
|
24052
|
+
[name: string]: unknown;
|
|
24053
|
+
};
|
|
24054
|
+
content: {
|
|
24055
|
+
"application/json": components["schemas"]["error.UNAUTHORIZED"];
|
|
24056
|
+
};
|
|
24057
|
+
};
|
|
24058
|
+
/** @description Insufficient access */
|
|
24059
|
+
403: {
|
|
24060
|
+
headers: {
|
|
24061
|
+
[name: string]: unknown;
|
|
24062
|
+
};
|
|
24063
|
+
content: {
|
|
24064
|
+
"application/json": components["schemas"]["error.FORBIDDEN"];
|
|
24065
|
+
};
|
|
24066
|
+
};
|
|
24067
|
+
/** @description Not found */
|
|
24068
|
+
404: {
|
|
24069
|
+
headers: {
|
|
24070
|
+
[name: string]: unknown;
|
|
24071
|
+
};
|
|
24072
|
+
content: {
|
|
24073
|
+
"application/json": components["schemas"]["error.NOT_FOUND"];
|
|
24074
|
+
};
|
|
24075
|
+
};
|
|
24076
|
+
/** @description Internal server error */
|
|
24077
|
+
500: {
|
|
24078
|
+
headers: {
|
|
24079
|
+
[name: string]: unknown;
|
|
24080
|
+
};
|
|
24081
|
+
content: {
|
|
24082
|
+
"application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
|
|
24083
|
+
};
|
|
24084
|
+
};
|
|
24085
|
+
};
|
|
24086
|
+
};
|
|
23893
24087
|
getCalendar: {
|
|
23894
24088
|
parameters: {
|
|
23895
24089
|
query: {
|