@monarkmarkets/api-client 1.3.10 → 1.3.12
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/dist/Client.d.ts +321 -78
- package/dist/Client.js +584 -61
- package/package.json +1 -1
package/dist/Client.js
CHANGED
|
@@ -704,6 +704,7 @@ export class Client {
|
|
|
704
704
|
* Create an Indication of Interest
|
|
705
705
|
* @param body (optional) create IndicationOfInterest information.
|
|
706
706
|
* @return The newly created IndicationOfInterest.
|
|
707
|
+
* @deprecated
|
|
707
708
|
*/
|
|
708
709
|
createIndicationOfInterest(body) {
|
|
709
710
|
let url_ = this.baseUrl + "/primary/v1/indication-of-interest";
|
|
@@ -755,6 +756,7 @@ export class Client {
|
|
|
755
756
|
* Update an Indication of Interest
|
|
756
757
|
* @param body (optional) Update Indication of Interest information.
|
|
757
758
|
* @return The updated Indication of Interest.
|
|
759
|
+
* @deprecated
|
|
758
760
|
*/
|
|
759
761
|
updateIndicationOfInterest(body) {
|
|
760
762
|
let url_ = this.baseUrl + "/primary/v1/indication-of-interest";
|
|
@@ -821,6 +823,7 @@ export class Client {
|
|
|
821
823
|
* @param sortProperty (optional) Which property to sort by.
|
|
822
824
|
* @param sortOrder (optional) Which direction to sort by.
|
|
823
825
|
* @return Returns the list of IndicationOfInterest.
|
|
826
|
+
* @deprecated
|
|
824
827
|
*/
|
|
825
828
|
getAllIndicationOfInterests(searchTerm, investorId, page, pageSize, sortProperty, sortOrder) {
|
|
826
829
|
let url_ = this.baseUrl + "/primary/v1/indication-of-interest?";
|
|
@@ -885,6 +888,7 @@ export class Client {
|
|
|
885
888
|
* Delete an Indication of Interest by ID.
|
|
886
889
|
* @param id The ID of the Indication of Interest to delete.
|
|
887
890
|
* @return The Indication of Interest was successfully deleted.
|
|
891
|
+
* @deprecated
|
|
888
892
|
*/
|
|
889
893
|
deleteIndicationOfInterest(id) {
|
|
890
894
|
let url_ = this.baseUrl + "/primary/v1/indication-of-interest/{id}";
|
|
@@ -931,6 +935,7 @@ export class Client {
|
|
|
931
935
|
* Get an IndicationOfInterest by Id
|
|
932
936
|
* @param id Unique ID of the IOI to find.
|
|
933
937
|
* @return Returns the IndicationOfInterest with the specified Id.
|
|
938
|
+
* @deprecated
|
|
934
939
|
*/
|
|
935
940
|
getIndicationOfInterestById(id) {
|
|
936
941
|
let url_ = this.baseUrl + "/primary/v1/indication-of-interest/{id}";
|
|
@@ -978,6 +983,284 @@ export class Client {
|
|
|
978
983
|
}
|
|
979
984
|
return Promise.resolve(null);
|
|
980
985
|
}
|
|
986
|
+
/**
|
|
987
|
+
* Create an Indication of Interest
|
|
988
|
+
* @param body (optional) create IndicationOfInterest information.
|
|
989
|
+
* @return The newly created IndicationOfInterest.
|
|
990
|
+
*/
|
|
991
|
+
createIndicationOfInterestV2(body) {
|
|
992
|
+
let url_ = this.baseUrl + "/primary/v2/indication-of-interest";
|
|
993
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
994
|
+
const content_ = JSON.stringify(body);
|
|
995
|
+
let options_ = {
|
|
996
|
+
body: content_,
|
|
997
|
+
method: "POST",
|
|
998
|
+
headers: {
|
|
999
|
+
"Content-Type": "application/json",
|
|
1000
|
+
"Accept": "application/json"
|
|
1001
|
+
}
|
|
1002
|
+
};
|
|
1003
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
1004
|
+
return this.processCreateIndicationOfInterestV2(_response);
|
|
1005
|
+
});
|
|
1006
|
+
}
|
|
1007
|
+
processCreateIndicationOfInterestV2(response) {
|
|
1008
|
+
const status = response.status;
|
|
1009
|
+
let _headers = {};
|
|
1010
|
+
if (response.headers && response.headers.forEach) {
|
|
1011
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
1012
|
+
}
|
|
1013
|
+
;
|
|
1014
|
+
if (status === 201) {
|
|
1015
|
+
return response.text().then((_responseText) => {
|
|
1016
|
+
let result201 = null;
|
|
1017
|
+
let resultData201 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
1018
|
+
result201 = IndicationOfInterestV2.fromJS(resultData201);
|
|
1019
|
+
return result201;
|
|
1020
|
+
});
|
|
1021
|
+
}
|
|
1022
|
+
else if (status === 400) {
|
|
1023
|
+
return response.text().then((_responseText) => {
|
|
1024
|
+
let result400 = null;
|
|
1025
|
+
let resultData400 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
1026
|
+
result400 = ProblemDetails.fromJS(resultData400);
|
|
1027
|
+
return throwException("Bad request if required fields are missing.", status, _responseText, _headers, result400);
|
|
1028
|
+
});
|
|
1029
|
+
}
|
|
1030
|
+
else if (status !== 200 && status !== 204) {
|
|
1031
|
+
return response.text().then((_responseText) => {
|
|
1032
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
1033
|
+
});
|
|
1034
|
+
}
|
|
1035
|
+
return Promise.resolve(null);
|
|
1036
|
+
}
|
|
1037
|
+
/**
|
|
1038
|
+
* Update an Indication of Interest.
|
|
1039
|
+
* @param body (optional) Update Indication of Interest information.
|
|
1040
|
+
* @return The updated Indication of Interest.
|
|
1041
|
+
*/
|
|
1042
|
+
updateIndicationOfInterestV2(body) {
|
|
1043
|
+
let url_ = this.baseUrl + "/primary/v2/indication-of-interest";
|
|
1044
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
1045
|
+
const content_ = JSON.stringify(body);
|
|
1046
|
+
let options_ = {
|
|
1047
|
+
body: content_,
|
|
1048
|
+
method: "PUT",
|
|
1049
|
+
headers: {
|
|
1050
|
+
"Content-Type": "application/json",
|
|
1051
|
+
"Accept": "application/json"
|
|
1052
|
+
}
|
|
1053
|
+
};
|
|
1054
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
1055
|
+
return this.processUpdateIndicationOfInterestV2(_response);
|
|
1056
|
+
});
|
|
1057
|
+
}
|
|
1058
|
+
processUpdateIndicationOfInterestV2(response) {
|
|
1059
|
+
const status = response.status;
|
|
1060
|
+
let _headers = {};
|
|
1061
|
+
if (response.headers && response.headers.forEach) {
|
|
1062
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
1063
|
+
}
|
|
1064
|
+
;
|
|
1065
|
+
if (status === 200) {
|
|
1066
|
+
return response.text().then((_responseText) => {
|
|
1067
|
+
let result200 = null;
|
|
1068
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
1069
|
+
result200 = IndicationOfInterestV2.fromJS(resultData200);
|
|
1070
|
+
return result200;
|
|
1071
|
+
});
|
|
1072
|
+
}
|
|
1073
|
+
else if (status === 400) {
|
|
1074
|
+
return response.text().then((_responseText) => {
|
|
1075
|
+
let result400 = null;
|
|
1076
|
+
let resultData400 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
1077
|
+
result400 = ProblemDetails.fromJS(resultData400);
|
|
1078
|
+
return throwException("Bad request if required fields are missing.", status, _responseText, _headers, result400);
|
|
1079
|
+
});
|
|
1080
|
+
}
|
|
1081
|
+
else if (status === 404) {
|
|
1082
|
+
return response.text().then((_responseText) => {
|
|
1083
|
+
let result404 = null;
|
|
1084
|
+
let resultData404 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
1085
|
+
result404 = ProblemDetails.fromJS(resultData404);
|
|
1086
|
+
return throwException("Not found if the Indication of Interest does not exist.", status, _responseText, _headers, result404);
|
|
1087
|
+
});
|
|
1088
|
+
}
|
|
1089
|
+
else if (status !== 200 && status !== 204) {
|
|
1090
|
+
return response.text().then((_responseText) => {
|
|
1091
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
1092
|
+
});
|
|
1093
|
+
}
|
|
1094
|
+
return Promise.resolve(null);
|
|
1095
|
+
}
|
|
1096
|
+
/**
|
|
1097
|
+
* Get all IndicationOfInterests.
|
|
1098
|
+
* @param searchTerm (optional) Optional search term on the company/target name.
|
|
1099
|
+
* @param investorId (optional) Filter the returned IndicationOfInterests by an InvestorId.
|
|
1100
|
+
* @param page (optional) Number of the page to retrieve.
|
|
1101
|
+
Defaults to 1 if not specified.
|
|
1102
|
+
* @param pageSize (optional) Size of the page to retrieve.
|
|
1103
|
+
Defaults to 25 if not specified.
|
|
1104
|
+
* @param sortProperty (optional) Which property to sort by.
|
|
1105
|
+
* @param sortOrder (optional) Which direction to sort by.
|
|
1106
|
+
* @return Returns the list of IndicationOfInterest.
|
|
1107
|
+
*/
|
|
1108
|
+
getAllIndicationOfInterestsV2(searchTerm, investorId, page, pageSize, sortProperty, sortOrder) {
|
|
1109
|
+
let url_ = this.baseUrl + "/primary/v2/indication-of-interest?";
|
|
1110
|
+
if (searchTerm === null)
|
|
1111
|
+
throw new globalThis.Error("The parameter 'searchTerm' cannot be null.");
|
|
1112
|
+
else if (searchTerm !== undefined)
|
|
1113
|
+
url_ += "searchTerm=" + encodeURIComponent("" + searchTerm) + "&";
|
|
1114
|
+
if (investorId === null)
|
|
1115
|
+
throw new globalThis.Error("The parameter 'investorId' cannot be null.");
|
|
1116
|
+
else if (investorId !== undefined)
|
|
1117
|
+
url_ += "investorId=" + encodeURIComponent("" + investorId) + "&";
|
|
1118
|
+
if (page === null)
|
|
1119
|
+
throw new globalThis.Error("The parameter 'page' cannot be null.");
|
|
1120
|
+
else if (page !== undefined)
|
|
1121
|
+
url_ += "page=" + encodeURIComponent("" + page) + "&";
|
|
1122
|
+
if (pageSize === null)
|
|
1123
|
+
throw new globalThis.Error("The parameter 'pageSize' cannot be null.");
|
|
1124
|
+
else if (pageSize !== undefined)
|
|
1125
|
+
url_ += "pageSize=" + encodeURIComponent("" + pageSize) + "&";
|
|
1126
|
+
if (sortProperty === null)
|
|
1127
|
+
throw new globalThis.Error("The parameter 'sortProperty' cannot be null.");
|
|
1128
|
+
else if (sortProperty !== undefined)
|
|
1129
|
+
url_ += "sortProperty=" + encodeURIComponent("" + sortProperty) + "&";
|
|
1130
|
+
if (sortOrder === null)
|
|
1131
|
+
throw new globalThis.Error("The parameter 'sortOrder' cannot be null.");
|
|
1132
|
+
else if (sortOrder !== undefined)
|
|
1133
|
+
url_ += "sortOrder=" + encodeURIComponent("" + sortOrder) + "&";
|
|
1134
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
1135
|
+
let options_ = {
|
|
1136
|
+
method: "GET",
|
|
1137
|
+
headers: {
|
|
1138
|
+
"Accept": "application/json"
|
|
1139
|
+
}
|
|
1140
|
+
};
|
|
1141
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
1142
|
+
return this.processGetAllIndicationOfInterestsV2(_response);
|
|
1143
|
+
});
|
|
1144
|
+
}
|
|
1145
|
+
processGetAllIndicationOfInterestsV2(response) {
|
|
1146
|
+
const status = response.status;
|
|
1147
|
+
let _headers = {};
|
|
1148
|
+
if (response.headers && response.headers.forEach) {
|
|
1149
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
1150
|
+
}
|
|
1151
|
+
;
|
|
1152
|
+
if (status === 200) {
|
|
1153
|
+
return response.text().then((_responseText) => {
|
|
1154
|
+
let result200 = null;
|
|
1155
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
1156
|
+
result200 = IndicationOfInterestV2ApiResponse.fromJS(resultData200);
|
|
1157
|
+
return result200;
|
|
1158
|
+
});
|
|
1159
|
+
}
|
|
1160
|
+
else if (status !== 200 && status !== 204) {
|
|
1161
|
+
return response.text().then((_responseText) => {
|
|
1162
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
1163
|
+
});
|
|
1164
|
+
}
|
|
1165
|
+
return Promise.resolve(null);
|
|
1166
|
+
}
|
|
1167
|
+
/**
|
|
1168
|
+
* Get an IndicationOfInterest by Id.
|
|
1169
|
+
* @param id Unique ID of the IOI to find.
|
|
1170
|
+
* @return Returns the IndicationOfInterest with the specified Id.
|
|
1171
|
+
*/
|
|
1172
|
+
getIndicationOfInterestByIdV2(id) {
|
|
1173
|
+
let url_ = this.baseUrl + "/primary/v2/indication-of-interest/{id}";
|
|
1174
|
+
if (id === undefined || id === null)
|
|
1175
|
+
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
1176
|
+
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
1177
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
1178
|
+
let options_ = {
|
|
1179
|
+
method: "GET",
|
|
1180
|
+
headers: {
|
|
1181
|
+
"Accept": "application/json"
|
|
1182
|
+
}
|
|
1183
|
+
};
|
|
1184
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
1185
|
+
return this.processGetIndicationOfInterestByIdV2(_response);
|
|
1186
|
+
});
|
|
1187
|
+
}
|
|
1188
|
+
processGetIndicationOfInterestByIdV2(response) {
|
|
1189
|
+
const status = response.status;
|
|
1190
|
+
let _headers = {};
|
|
1191
|
+
if (response.headers && response.headers.forEach) {
|
|
1192
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
1193
|
+
}
|
|
1194
|
+
;
|
|
1195
|
+
if (status === 200) {
|
|
1196
|
+
return response.text().then((_responseText) => {
|
|
1197
|
+
let result200 = null;
|
|
1198
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
1199
|
+
result200 = IndicationOfInterestV2.fromJS(resultData200);
|
|
1200
|
+
return result200;
|
|
1201
|
+
});
|
|
1202
|
+
}
|
|
1203
|
+
else if (status === 404) {
|
|
1204
|
+
return response.text().then((_responseText) => {
|
|
1205
|
+
let result404 = null;
|
|
1206
|
+
let resultData404 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
1207
|
+
result404 = ProblemDetails.fromJS(resultData404);
|
|
1208
|
+
return throwException("IndicationOfInterest not found.", status, _responseText, _headers, result404);
|
|
1209
|
+
});
|
|
1210
|
+
}
|
|
1211
|
+
else if (status !== 200 && status !== 204) {
|
|
1212
|
+
return response.text().then((_responseText) => {
|
|
1213
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
1214
|
+
});
|
|
1215
|
+
}
|
|
1216
|
+
return Promise.resolve(null);
|
|
1217
|
+
}
|
|
1218
|
+
/**
|
|
1219
|
+
* Delete an Indication of Interest by ID.
|
|
1220
|
+
* @param id The ID of the Indication of Interest to delete.
|
|
1221
|
+
* @return The Indication of Interest was successfully deleted.
|
|
1222
|
+
*/
|
|
1223
|
+
deleteIndicationOfInterestV2(id) {
|
|
1224
|
+
let url_ = this.baseUrl + "/primary/v2/indication-of-interest/{id}";
|
|
1225
|
+
if (id === undefined || id === null)
|
|
1226
|
+
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
1227
|
+
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
1228
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
1229
|
+
let options_ = {
|
|
1230
|
+
method: "DELETE",
|
|
1231
|
+
headers: {}
|
|
1232
|
+
};
|
|
1233
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
1234
|
+
return this.processDeleteIndicationOfInterestV2(_response);
|
|
1235
|
+
});
|
|
1236
|
+
}
|
|
1237
|
+
processDeleteIndicationOfInterestV2(response) {
|
|
1238
|
+
const status = response.status;
|
|
1239
|
+
let _headers = {};
|
|
1240
|
+
if (response.headers && response.headers.forEach) {
|
|
1241
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
1242
|
+
}
|
|
1243
|
+
;
|
|
1244
|
+
if (status === 204) {
|
|
1245
|
+
return response.text().then((_responseText) => {
|
|
1246
|
+
return;
|
|
1247
|
+
});
|
|
1248
|
+
}
|
|
1249
|
+
else if (status === 404) {
|
|
1250
|
+
return response.text().then((_responseText) => {
|
|
1251
|
+
let result404 = null;
|
|
1252
|
+
let resultData404 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
1253
|
+
result404 = ProblemDetails.fromJS(resultData404);
|
|
1254
|
+
return throwException("Not found if the Indication of Interest does not exist.", status, _responseText, _headers, result404);
|
|
1255
|
+
});
|
|
1256
|
+
}
|
|
1257
|
+
else if (status !== 200 && status !== 204) {
|
|
1258
|
+
return response.text().then((_responseText) => {
|
|
1259
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
1260
|
+
});
|
|
1261
|
+
}
|
|
1262
|
+
return Promise.resolve(null);
|
|
1263
|
+
}
|
|
981
1264
|
/**
|
|
982
1265
|
* Create an Investor.
|
|
983
1266
|
* @param body (optional) create Investor information.
|
|
@@ -5895,9 +6178,10 @@ export class Client {
|
|
|
5895
6178
|
* Get the RegisteredFund by the specified Id.
|
|
5896
6179
|
* @param id ID of the RegisteredFund to find.
|
|
5897
6180
|
* @param includeDocuments (optional) Return associated documents
|
|
6181
|
+
* @param financialInstitutionId (optional) Optional financial institution ID for access control.
|
|
5898
6182
|
* @return Returns the RegisteredFund with the specified Id.
|
|
5899
6183
|
*/
|
|
5900
|
-
getRegisteredFundById(id, includeDocuments) {
|
|
6184
|
+
getRegisteredFundById(id, includeDocuments, financialInstitutionId) {
|
|
5901
6185
|
let url_ = this.baseUrl + "/primary/v1/registered-fund/{id}?";
|
|
5902
6186
|
if (id === undefined || id === null)
|
|
5903
6187
|
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
@@ -5906,6 +6190,10 @@ export class Client {
|
|
|
5906
6190
|
throw new globalThis.Error("The parameter 'includeDocuments' cannot be null.");
|
|
5907
6191
|
else if (includeDocuments !== undefined)
|
|
5908
6192
|
url_ += "includeDocuments=" + encodeURIComponent("" + includeDocuments) + "&";
|
|
6193
|
+
if (financialInstitutionId === null)
|
|
6194
|
+
throw new globalThis.Error("The parameter 'financialInstitutionId' cannot be null.");
|
|
6195
|
+
else if (financialInstitutionId !== undefined)
|
|
6196
|
+
url_ += "financialInstitutionId=" + encodeURIComponent("" + financialInstitutionId) + "&";
|
|
5909
6197
|
url_ = url_.replace(/[?&]$/, "");
|
|
5910
6198
|
let options_ = {
|
|
5911
6199
|
method: "GET",
|
|
@@ -5955,9 +6243,11 @@ export class Client {
|
|
|
5955
6243
|
Defaults to 25 if not specified.
|
|
5956
6244
|
* @param searchTerm (optional) Search term to filter results on based on 'Name' field
|
|
5957
6245
|
* @param sortOrder (optional) Which way to sort order, defaults to Descending.
|
|
6246
|
+
* @param financialInstitutionId (optional) Optional financial institution ID for access control.
|
|
6247
|
+
* @param assetClass (optional) Optional asset class to filter registered funds by asset class.
|
|
5958
6248
|
* @return OK
|
|
5959
6249
|
*/
|
|
5960
|
-
getAllRegisteredFunds(page, pageSize, searchTerm, sortOrder) {
|
|
6250
|
+
getAllRegisteredFunds(page, pageSize, searchTerm, sortOrder, financialInstitutionId, assetClass) {
|
|
5961
6251
|
let url_ = this.baseUrl + "/primary/v1/registered-fund?";
|
|
5962
6252
|
if (page === null)
|
|
5963
6253
|
throw new globalThis.Error("The parameter 'page' cannot be null.");
|
|
@@ -5975,6 +6265,14 @@ export class Client {
|
|
|
5975
6265
|
throw new globalThis.Error("The parameter 'sortOrder' cannot be null.");
|
|
5976
6266
|
else if (sortOrder !== undefined)
|
|
5977
6267
|
url_ += "sortOrder=" + encodeURIComponent("" + sortOrder) + "&";
|
|
6268
|
+
if (financialInstitutionId === null)
|
|
6269
|
+
throw new globalThis.Error("The parameter 'financialInstitutionId' cannot be null.");
|
|
6270
|
+
else if (financialInstitutionId !== undefined)
|
|
6271
|
+
url_ += "financialInstitutionId=" + encodeURIComponent("" + financialInstitutionId) + "&";
|
|
6272
|
+
if (assetClass === null)
|
|
6273
|
+
throw new globalThis.Error("The parameter 'assetClass' cannot be null.");
|
|
6274
|
+
else if (assetClass !== undefined)
|
|
6275
|
+
url_ += "assetClass=" + encodeURIComponent("" + assetClass) + "&";
|
|
5978
6276
|
url_ = url_.replace(/[?&]$/, "");
|
|
5979
6277
|
let options_ = {
|
|
5980
6278
|
method: "GET",
|
|
@@ -8446,6 +8744,43 @@ export class CreateIndicationOfInterest {
|
|
|
8446
8744
|
return data;
|
|
8447
8745
|
}
|
|
8448
8746
|
}
|
|
8747
|
+
/** CreateIndicationOfInterestV2 represents the v2 request to create a generic IOI supporting multiple asset types. */
|
|
8748
|
+
export class CreateIndicationOfInterestV2 {
|
|
8749
|
+
constructor(data) {
|
|
8750
|
+
if (data) {
|
|
8751
|
+
for (var property in data) {
|
|
8752
|
+
if (data.hasOwnProperty(property))
|
|
8753
|
+
this[property] = data[property];
|
|
8754
|
+
}
|
|
8755
|
+
}
|
|
8756
|
+
}
|
|
8757
|
+
init(_data) {
|
|
8758
|
+
if (_data) {
|
|
8759
|
+
this.investorId = _data["investorId"];
|
|
8760
|
+
this.targetId = _data["targetId"];
|
|
8761
|
+
this.targetAssetType = _data["targetAssetType"];
|
|
8762
|
+
this.numberOfClients = _data["numberOfClients"];
|
|
8763
|
+
this.notionalAmount = _data["notionalAmount"];
|
|
8764
|
+
this.currency = _data["currency"];
|
|
8765
|
+
}
|
|
8766
|
+
}
|
|
8767
|
+
static fromJS(data) {
|
|
8768
|
+
data = typeof data === 'object' ? data : {};
|
|
8769
|
+
let result = new CreateIndicationOfInterestV2();
|
|
8770
|
+
result.init(data);
|
|
8771
|
+
return result;
|
|
8772
|
+
}
|
|
8773
|
+
toJSON(data) {
|
|
8774
|
+
data = typeof data === 'object' ? data : {};
|
|
8775
|
+
data["investorId"] = this.investorId;
|
|
8776
|
+
data["targetId"] = this.targetId;
|
|
8777
|
+
data["targetAssetType"] = this.targetAssetType;
|
|
8778
|
+
data["numberOfClients"] = this.numberOfClients;
|
|
8779
|
+
data["notionalAmount"] = this.notionalAmount;
|
|
8780
|
+
data["currency"] = this.currency;
|
|
8781
|
+
return data;
|
|
8782
|
+
}
|
|
8783
|
+
}
|
|
8449
8784
|
export class CreateIndividualEntityInvestors {
|
|
8450
8785
|
constructor(data) {
|
|
8451
8786
|
if (data) {
|
|
@@ -9145,6 +9480,7 @@ export class EvergreenFund {
|
|
|
9145
9480
|
if (_data) {
|
|
9146
9481
|
this.id = _data["id"];
|
|
9147
9482
|
this.fundName = _data["fundName"];
|
|
9483
|
+
this.cik = _data["cik"];
|
|
9148
9484
|
this.manager = _data["manager"];
|
|
9149
9485
|
this.inception = _data["inception"];
|
|
9150
9486
|
this.dealTypeFocus = _data["dealTypeFocus"];
|
|
@@ -9154,6 +9490,12 @@ export class EvergreenFund {
|
|
|
9154
9490
|
this.registration = _data["registration"];
|
|
9155
9491
|
this.repurchaseFrequency = _data["repurchaseFrequency"];
|
|
9156
9492
|
this.subscriptionFrequency = _data["subscriptionFrequency"];
|
|
9493
|
+
this.evergreenReturns = _data["evergreenReturns"] ? EvergreenReturns.fromJS(_data["evergreenReturns"]) : undefined;
|
|
9494
|
+
if (Array.isArray(_data["evergreenShareClasses"])) {
|
|
9495
|
+
this.evergreenShareClasses = [];
|
|
9496
|
+
for (let item of _data["evergreenShareClasses"])
|
|
9497
|
+
this.evergreenShareClasses.push(EvergreenShareClasses.fromJS(item));
|
|
9498
|
+
}
|
|
9157
9499
|
}
|
|
9158
9500
|
}
|
|
9159
9501
|
static fromJS(data) {
|
|
@@ -9166,6 +9508,7 @@ export class EvergreenFund {
|
|
|
9166
9508
|
data = typeof data === 'object' ? data : {};
|
|
9167
9509
|
data["id"] = this.id;
|
|
9168
9510
|
data["fundName"] = this.fundName;
|
|
9511
|
+
data["cik"] = this.cik;
|
|
9169
9512
|
data["manager"] = this.manager;
|
|
9170
9513
|
data["inception"] = this.inception;
|
|
9171
9514
|
data["dealTypeFocus"] = this.dealTypeFocus;
|
|
@@ -9175,6 +9518,12 @@ export class EvergreenFund {
|
|
|
9175
9518
|
data["registration"] = this.registration;
|
|
9176
9519
|
data["repurchaseFrequency"] = this.repurchaseFrequency;
|
|
9177
9520
|
data["subscriptionFrequency"] = this.subscriptionFrequency;
|
|
9521
|
+
data["evergreenReturns"] = this.evergreenReturns ? this.evergreenReturns.toJSON() : undefined;
|
|
9522
|
+
if (Array.isArray(this.evergreenShareClasses)) {
|
|
9523
|
+
data["evergreenShareClasses"] = [];
|
|
9524
|
+
for (let item of this.evergreenShareClasses)
|
|
9525
|
+
data["evergreenShareClasses"].push(item ? item.toJSON() : undefined);
|
|
9526
|
+
}
|
|
9178
9527
|
return data;
|
|
9179
9528
|
}
|
|
9180
9529
|
}
|
|
@@ -9737,8 +10086,8 @@ export class FinancialInstitutionApiResponse {
|
|
|
9737
10086
|
return data;
|
|
9738
10087
|
}
|
|
9739
10088
|
}
|
|
9740
|
-
/**
|
|
9741
|
-
export class
|
|
10089
|
+
/** FundManager represents the advisor responsible for managing the Registered Fund */
|
|
10090
|
+
export class FundManager {
|
|
9742
10091
|
constructor(data) {
|
|
9743
10092
|
if (data) {
|
|
9744
10093
|
for (var property in data) {
|
|
@@ -9752,6 +10101,7 @@ export class FundAdvisor {
|
|
|
9752
10101
|
this.id = _data["id"];
|
|
9753
10102
|
this.name = _data["name"];
|
|
9754
10103
|
this.legalName = _data["legalName"];
|
|
10104
|
+
this.fundAdvisorName = _data["fundAdvisorName"];
|
|
9755
10105
|
this.logoUrl = _data["logoUrl"];
|
|
9756
10106
|
this.foundingDate = _data["foundingDate"] ? new Date(_data["foundingDate"].toString()) : undefined;
|
|
9757
10107
|
this.aum = _data["aum"];
|
|
@@ -9770,7 +10120,7 @@ export class FundAdvisor {
|
|
|
9770
10120
|
}
|
|
9771
10121
|
static fromJS(data) {
|
|
9772
10122
|
data = typeof data === 'object' ? data : {};
|
|
9773
|
-
let result = new
|
|
10123
|
+
let result = new FundManager();
|
|
9774
10124
|
result.init(data);
|
|
9775
10125
|
return result;
|
|
9776
10126
|
}
|
|
@@ -9779,6 +10129,7 @@ export class FundAdvisor {
|
|
|
9779
10129
|
data["id"] = this.id;
|
|
9780
10130
|
data["name"] = this.name;
|
|
9781
10131
|
data["legalName"] = this.legalName;
|
|
10132
|
+
data["fundAdvisorName"] = this.fundAdvisorName;
|
|
9782
10133
|
data["logoUrl"] = this.logoUrl;
|
|
9783
10134
|
data["foundingDate"] = this.foundingDate ? formatDate(this.foundingDate) : undefined;
|
|
9784
10135
|
data["aum"] = this.aum;
|
|
@@ -9901,6 +10252,93 @@ export class IndicationOfInterestApiResponse {
|
|
|
9901
10252
|
return data;
|
|
9902
10253
|
}
|
|
9903
10254
|
}
|
|
10255
|
+
/** IndicationOfInterestV2 represents the v2 generic IOI model supporting multiple asset types. */
|
|
10256
|
+
export class IndicationOfInterestV2 {
|
|
10257
|
+
constructor(data) {
|
|
10258
|
+
if (data) {
|
|
10259
|
+
for (var property in data) {
|
|
10260
|
+
if (data.hasOwnProperty(property))
|
|
10261
|
+
this[property] = data[property];
|
|
10262
|
+
}
|
|
10263
|
+
}
|
|
10264
|
+
}
|
|
10265
|
+
init(_data) {
|
|
10266
|
+
if (_data) {
|
|
10267
|
+
this.id = _data["id"];
|
|
10268
|
+
this.investorId = _data["investorId"];
|
|
10269
|
+
this.targetId = _data["targetId"];
|
|
10270
|
+
this.targetAssetType = _data["targetAssetType"];
|
|
10271
|
+
this.numberOfClients = _data["numberOfClients"];
|
|
10272
|
+
this.notionalAmount = _data["notionalAmount"];
|
|
10273
|
+
this.currency = _data["currency"];
|
|
10274
|
+
this.createdAt = _data["createdAt"] ? new Date(_data["createdAt"].toString()) : undefined;
|
|
10275
|
+
this.updatedAt = _data["updatedAt"] ? new Date(_data["updatedAt"].toString()) : undefined;
|
|
10276
|
+
this.partnerName = _data["partnerName"];
|
|
10277
|
+
this.investorFirstName = _data["investorFirstName"];
|
|
10278
|
+
this.investorLastName = _data["investorLastName"];
|
|
10279
|
+
this.targetName = _data["targetName"];
|
|
10280
|
+
}
|
|
10281
|
+
}
|
|
10282
|
+
static fromJS(data) {
|
|
10283
|
+
data = typeof data === 'object' ? data : {};
|
|
10284
|
+
let result = new IndicationOfInterestV2();
|
|
10285
|
+
result.init(data);
|
|
10286
|
+
return result;
|
|
10287
|
+
}
|
|
10288
|
+
toJSON(data) {
|
|
10289
|
+
data = typeof data === 'object' ? data : {};
|
|
10290
|
+
data["id"] = this.id;
|
|
10291
|
+
data["investorId"] = this.investorId;
|
|
10292
|
+
data["targetId"] = this.targetId;
|
|
10293
|
+
data["targetAssetType"] = this.targetAssetType;
|
|
10294
|
+
data["numberOfClients"] = this.numberOfClients;
|
|
10295
|
+
data["notionalAmount"] = this.notionalAmount;
|
|
10296
|
+
data["currency"] = this.currency;
|
|
10297
|
+
data["createdAt"] = this.createdAt ? this.createdAt.toISOString() : undefined;
|
|
10298
|
+
data["updatedAt"] = this.updatedAt ? this.updatedAt.toISOString() : undefined;
|
|
10299
|
+
data["partnerName"] = this.partnerName;
|
|
10300
|
+
data["investorFirstName"] = this.investorFirstName;
|
|
10301
|
+
data["investorLastName"] = this.investorLastName;
|
|
10302
|
+
data["targetName"] = this.targetName;
|
|
10303
|
+
return data;
|
|
10304
|
+
}
|
|
10305
|
+
}
|
|
10306
|
+
export class IndicationOfInterestV2ApiResponse {
|
|
10307
|
+
constructor(data) {
|
|
10308
|
+
if (data) {
|
|
10309
|
+
for (var property in data) {
|
|
10310
|
+
if (data.hasOwnProperty(property))
|
|
10311
|
+
this[property] = data[property];
|
|
10312
|
+
}
|
|
10313
|
+
}
|
|
10314
|
+
}
|
|
10315
|
+
init(_data) {
|
|
10316
|
+
if (_data) {
|
|
10317
|
+
if (Array.isArray(_data["items"])) {
|
|
10318
|
+
this.items = [];
|
|
10319
|
+
for (let item of _data["items"])
|
|
10320
|
+
this.items.push(IndicationOfInterestV2.fromJS(item));
|
|
10321
|
+
}
|
|
10322
|
+
this.pagination = _data["pagination"] ? Pagination.fromJS(_data["pagination"]) : undefined;
|
|
10323
|
+
}
|
|
10324
|
+
}
|
|
10325
|
+
static fromJS(data) {
|
|
10326
|
+
data = typeof data === 'object' ? data : {};
|
|
10327
|
+
let result = new IndicationOfInterestV2ApiResponse();
|
|
10328
|
+
result.init(data);
|
|
10329
|
+
return result;
|
|
10330
|
+
}
|
|
10331
|
+
toJSON(data) {
|
|
10332
|
+
data = typeof data === 'object' ? data : {};
|
|
10333
|
+
if (Array.isArray(this.items)) {
|
|
10334
|
+
data["items"] = [];
|
|
10335
|
+
for (let item of this.items)
|
|
10336
|
+
data["items"].push(item ? item.toJSON() : undefined);
|
|
10337
|
+
}
|
|
10338
|
+
data["pagination"] = this.pagination ? this.pagination.toJSON() : undefined;
|
|
10339
|
+
return data;
|
|
10340
|
+
}
|
|
10341
|
+
}
|
|
9904
10342
|
export class IndividualEntityInvestor {
|
|
9905
10343
|
constructor(data) {
|
|
9906
10344
|
if (data) {
|
|
@@ -13479,9 +13917,10 @@ export class RegisteredFund {
|
|
|
13479
13917
|
init(_data) {
|
|
13480
13918
|
if (_data) {
|
|
13481
13919
|
this.id = _data["id"];
|
|
13482
|
-
this.
|
|
13920
|
+
this.fundManagerId = _data["fundManagerId"];
|
|
13483
13921
|
this.partnerId = _data["partnerId"];
|
|
13484
13922
|
this.name = _data["name"];
|
|
13923
|
+
this.cik = _data["cik"];
|
|
13485
13924
|
this.website = _data["website"];
|
|
13486
13925
|
this.symbol = _data["symbol"];
|
|
13487
13926
|
this.logoUrl = _data["logoUrl"];
|
|
@@ -13492,7 +13931,6 @@ export class RegisteredFund {
|
|
|
13492
13931
|
this.assetNum = _data["assetNum"];
|
|
13493
13932
|
this.description = _data["description"];
|
|
13494
13933
|
this.structure = _data["structure"];
|
|
13495
|
-
this.act33Exemption = _data["act33Exemption"];
|
|
13496
13934
|
this.subscriptionCadence = _data["subscriptionCadence"];
|
|
13497
13935
|
this.subscriptionProcess = _data["subscriptionProcess"];
|
|
13498
13936
|
this.redemptionCadence = _data["redemptionCadence"];
|
|
@@ -13500,12 +13938,14 @@ export class RegisteredFund {
|
|
|
13500
13938
|
this.redemptionProcess = _data["redemptionProcess"];
|
|
13501
13939
|
this.distributionCadence = _data["distributionCadence"];
|
|
13502
13940
|
this.distributionProcess = _data["distributionProcess"];
|
|
13503
|
-
this.
|
|
13941
|
+
this.allInvestors = _data["allInvestors"];
|
|
13504
13942
|
this.accreditedInvestor = _data["accreditedInvestor"];
|
|
13505
13943
|
this.qualifiedClientInvestor = _data["qualifiedClientInvestor"];
|
|
13506
13944
|
this.qualifiedPurchaserInvestor = _data["qualifiedPurchaserInvestor"];
|
|
13507
13945
|
this.nonUSInvestor = _data["nonUSInvestor"];
|
|
13508
|
-
this.
|
|
13946
|
+
this.taxReporting = _data["taxReporting"];
|
|
13947
|
+
this.taxForm = _data["taxForm"];
|
|
13948
|
+
this.fundManager = _data["fundManager"] ? FundManager.fromJS(_data["fundManager"]) : undefined;
|
|
13509
13949
|
if (Array.isArray(_data["shareClasses"])) {
|
|
13510
13950
|
this.shareClasses = [];
|
|
13511
13951
|
for (let item of _data["shareClasses"])
|
|
@@ -13521,6 +13961,7 @@ export class RegisteredFund {
|
|
|
13521
13961
|
for (let item of _data["documents"])
|
|
13522
13962
|
this.documents.push(Document.fromJS(item));
|
|
13523
13963
|
}
|
|
13964
|
+
this.thirdPartyData = _data["thirdPartyData"] ? RegisteredFundThirdPartyData.fromJS(_data["thirdPartyData"]) : undefined;
|
|
13524
13965
|
}
|
|
13525
13966
|
}
|
|
13526
13967
|
static fromJS(data) {
|
|
@@ -13532,9 +13973,10 @@ export class RegisteredFund {
|
|
|
13532
13973
|
toJSON(data) {
|
|
13533
13974
|
data = typeof data === 'object' ? data : {};
|
|
13534
13975
|
data["id"] = this.id;
|
|
13535
|
-
data["
|
|
13976
|
+
data["fundManagerId"] = this.fundManagerId;
|
|
13536
13977
|
data["partnerId"] = this.partnerId;
|
|
13537
13978
|
data["name"] = this.name;
|
|
13979
|
+
data["cik"] = this.cik;
|
|
13538
13980
|
data["website"] = this.website;
|
|
13539
13981
|
data["symbol"] = this.symbol;
|
|
13540
13982
|
data["logoUrl"] = this.logoUrl;
|
|
@@ -13545,7 +13987,6 @@ export class RegisteredFund {
|
|
|
13545
13987
|
data["assetNum"] = this.assetNum;
|
|
13546
13988
|
data["description"] = this.description;
|
|
13547
13989
|
data["structure"] = this.structure;
|
|
13548
|
-
data["act33Exemption"] = this.act33Exemption;
|
|
13549
13990
|
data["subscriptionCadence"] = this.subscriptionCadence;
|
|
13550
13991
|
data["subscriptionProcess"] = this.subscriptionProcess;
|
|
13551
13992
|
data["redemptionCadence"] = this.redemptionCadence;
|
|
@@ -13553,12 +13994,14 @@ export class RegisteredFund {
|
|
|
13553
13994
|
data["redemptionProcess"] = this.redemptionProcess;
|
|
13554
13995
|
data["distributionCadence"] = this.distributionCadence;
|
|
13555
13996
|
data["distributionProcess"] = this.distributionProcess;
|
|
13556
|
-
data["
|
|
13997
|
+
data["allInvestors"] = this.allInvestors;
|
|
13557
13998
|
data["accreditedInvestor"] = this.accreditedInvestor;
|
|
13558
13999
|
data["qualifiedClientInvestor"] = this.qualifiedClientInvestor;
|
|
13559
14000
|
data["qualifiedPurchaserInvestor"] = this.qualifiedPurchaserInvestor;
|
|
13560
14001
|
data["nonUSInvestor"] = this.nonUSInvestor;
|
|
13561
|
-
data["
|
|
14002
|
+
data["taxReporting"] = this.taxReporting;
|
|
14003
|
+
data["taxForm"] = this.taxForm;
|
|
14004
|
+
data["fundManager"] = this.fundManager ? this.fundManager.toJSON() : undefined;
|
|
13562
14005
|
if (Array.isArray(this.shareClasses)) {
|
|
13563
14006
|
data["shareClasses"] = [];
|
|
13564
14007
|
for (let item of this.shareClasses)
|
|
@@ -13574,6 +14017,7 @@ export class RegisteredFund {
|
|
|
13574
14017
|
for (let item of this.documents)
|
|
13575
14018
|
data["documents"].push(item ? item.toJSON() : undefined);
|
|
13576
14019
|
}
|
|
14020
|
+
data["thirdPartyData"] = this.thirdPartyData ? this.thirdPartyData.toJSON() : undefined;
|
|
13577
14021
|
return data;
|
|
13578
14022
|
}
|
|
13579
14023
|
}
|
|
@@ -13613,6 +14057,33 @@ export class RegisteredFundApiResponse {
|
|
|
13613
14057
|
return data;
|
|
13614
14058
|
}
|
|
13615
14059
|
}
|
|
14060
|
+
/** Represents third party data for a registered fund. */
|
|
14061
|
+
export class RegisteredFundThirdPartyData {
|
|
14062
|
+
constructor(data) {
|
|
14063
|
+
if (data) {
|
|
14064
|
+
for (var property in data) {
|
|
14065
|
+
if (data.hasOwnProperty(property))
|
|
14066
|
+
this[property] = data[property];
|
|
14067
|
+
}
|
|
14068
|
+
}
|
|
14069
|
+
}
|
|
14070
|
+
init(_data) {
|
|
14071
|
+
if (_data) {
|
|
14072
|
+
this.secondaryLinkFund = _data["secondaryLinkFund"] ? EvergreenFund.fromJS(_data["secondaryLinkFund"]) : undefined;
|
|
14073
|
+
}
|
|
14074
|
+
}
|
|
14075
|
+
static fromJS(data) {
|
|
14076
|
+
data = typeof data === 'object' ? data : {};
|
|
14077
|
+
let result = new RegisteredFundThirdPartyData();
|
|
14078
|
+
result.init(data);
|
|
14079
|
+
return result;
|
|
14080
|
+
}
|
|
14081
|
+
toJSON(data) {
|
|
14082
|
+
data = typeof data === 'object' ? data : {};
|
|
14083
|
+
data["secondaryLinkFund"] = this.secondaryLinkFund ? this.secondaryLinkFund.toJSON() : undefined;
|
|
14084
|
+
return data;
|
|
14085
|
+
}
|
|
14086
|
+
}
|
|
13616
14087
|
export class RuntimeFieldHandle {
|
|
13617
14088
|
constructor(data) {
|
|
13618
14089
|
if (data) {
|
|
@@ -14698,6 +15169,39 @@ export class UpdateIndicationOfInterest {
|
|
|
14698
15169
|
return data;
|
|
14699
15170
|
}
|
|
14700
15171
|
}
|
|
15172
|
+
/** UpdateIndicationOfInterestV2 represents the v2 request to update a generic IOI supporting multiple asset types. */
|
|
15173
|
+
export class UpdateIndicationOfInterestV2 {
|
|
15174
|
+
constructor(data) {
|
|
15175
|
+
if (data) {
|
|
15176
|
+
for (var property in data) {
|
|
15177
|
+
if (data.hasOwnProperty(property))
|
|
15178
|
+
this[property] = data[property];
|
|
15179
|
+
}
|
|
15180
|
+
}
|
|
15181
|
+
}
|
|
15182
|
+
init(_data) {
|
|
15183
|
+
if (_data) {
|
|
15184
|
+
this.id = _data["id"];
|
|
15185
|
+
this.numberOfClients = _data["numberOfClients"];
|
|
15186
|
+
this.notionalAmount = _data["notionalAmount"];
|
|
15187
|
+
this.currency = _data["currency"];
|
|
15188
|
+
}
|
|
15189
|
+
}
|
|
15190
|
+
static fromJS(data) {
|
|
15191
|
+
data = typeof data === 'object' ? data : {};
|
|
15192
|
+
let result = new UpdateIndicationOfInterestV2();
|
|
15193
|
+
result.init(data);
|
|
15194
|
+
return result;
|
|
15195
|
+
}
|
|
15196
|
+
toJSON(data) {
|
|
15197
|
+
data = typeof data === 'object' ? data : {};
|
|
15198
|
+
data["id"] = this.id;
|
|
15199
|
+
data["numberOfClients"] = this.numberOfClients;
|
|
15200
|
+
data["notionalAmount"] = this.notionalAmount;
|
|
15201
|
+
data["currency"] = this.currency;
|
|
15202
|
+
return data;
|
|
15203
|
+
}
|
|
15204
|
+
}
|
|
14701
15205
|
export class UpdateIndividualEntityInvestor {
|
|
14702
15206
|
constructor(data) {
|
|
14703
15207
|
if (data) {
|
|
@@ -15335,8 +15839,6 @@ export var SortProperty;
|
|
|
15335
15839
|
(function (SortProperty) {
|
|
15336
15840
|
SortProperty["UpdatedAt"] = "UpdatedAt";
|
|
15337
15841
|
SortProperty["CreatedAt"] = "CreatedAt";
|
|
15338
|
-
SortProperty["PreIpoValuation"] = "PreIpoValuation";
|
|
15339
|
-
SortProperty["PreIpoTotalFunding"] = "PreIpoTotalFunding";
|
|
15340
15842
|
SortProperty["NotionalAmount"] = "NotionalAmount";
|
|
15341
15843
|
})(SortProperty || (SortProperty = {}));
|
|
15342
15844
|
export var SortOrder4;
|
|
@@ -15344,11 +15846,22 @@ export var SortOrder4;
|
|
|
15344
15846
|
SortOrder4["Ascending"] = "Ascending";
|
|
15345
15847
|
SortOrder4["Descending"] = "Descending";
|
|
15346
15848
|
})(SortOrder4 || (SortOrder4 = {}));
|
|
15849
|
+
export var SortProperty2;
|
|
15850
|
+
(function (SortProperty2) {
|
|
15851
|
+
SortProperty2["UpdatedAt"] = "UpdatedAt";
|
|
15852
|
+
SortProperty2["CreatedAt"] = "CreatedAt";
|
|
15853
|
+
SortProperty2["NotionalAmount"] = "NotionalAmount";
|
|
15854
|
+
})(SortProperty2 || (SortProperty2 = {}));
|
|
15347
15855
|
export var SortOrder5;
|
|
15348
15856
|
(function (SortOrder5) {
|
|
15349
15857
|
SortOrder5["Ascending"] = "Ascending";
|
|
15350
15858
|
SortOrder5["Descending"] = "Descending";
|
|
15351
15859
|
})(SortOrder5 || (SortOrder5 = {}));
|
|
15860
|
+
export var SortOrder6;
|
|
15861
|
+
(function (SortOrder6) {
|
|
15862
|
+
SortOrder6["Ascending"] = "Ascending";
|
|
15863
|
+
SortOrder6["Descending"] = "Descending";
|
|
15864
|
+
})(SortOrder6 || (SortOrder6 = {}));
|
|
15352
15865
|
export var InvestorStatus;
|
|
15353
15866
|
(function (InvestorStatus) {
|
|
15354
15867
|
InvestorStatus["Pending"] = "Pending";
|
|
@@ -15364,11 +15877,11 @@ export var Status;
|
|
|
15364
15877
|
Status["Rejected"] = "Rejected";
|
|
15365
15878
|
Status["Failed"] = "Failed";
|
|
15366
15879
|
})(Status || (Status = {}));
|
|
15367
|
-
export var
|
|
15368
|
-
(function (
|
|
15369
|
-
|
|
15370
|
-
|
|
15371
|
-
})(
|
|
15880
|
+
export var SortOrder7;
|
|
15881
|
+
(function (SortOrder7) {
|
|
15882
|
+
SortOrder7["Ascending"] = "Ascending";
|
|
15883
|
+
SortOrder7["Descending"] = "Descending";
|
|
15884
|
+
})(SortOrder7 || (SortOrder7 = {}));
|
|
15372
15885
|
export var SortBy;
|
|
15373
15886
|
(function (SortBy) {
|
|
15374
15887
|
SortBy["UpdatedAt"] = "UpdatedAt";
|
|
@@ -15376,11 +15889,11 @@ export var SortBy;
|
|
|
15376
15889
|
SortBy["LastValuation"] = "LastValuation";
|
|
15377
15890
|
SortBy["TotalFunding"] = "TotalFunding";
|
|
15378
15891
|
})(SortBy || (SortBy = {}));
|
|
15379
|
-
export var
|
|
15380
|
-
(function (
|
|
15381
|
-
|
|
15382
|
-
|
|
15383
|
-
})(
|
|
15892
|
+
export var SortOrder8;
|
|
15893
|
+
(function (SortOrder8) {
|
|
15894
|
+
SortOrder8["Ascending"] = "Ascending";
|
|
15895
|
+
SortOrder8["Descending"] = "Descending";
|
|
15896
|
+
})(SortOrder8 || (SortOrder8 = {}));
|
|
15384
15897
|
export var FilterBy;
|
|
15385
15898
|
(function (FilterBy) {
|
|
15386
15899
|
FilterBy["Company"] = "Company";
|
|
@@ -15395,11 +15908,6 @@ export var Includes;
|
|
|
15395
15908
|
Includes["Investments"] = "Investments";
|
|
15396
15909
|
Includes["Spvs"] = "Spvs";
|
|
15397
15910
|
})(Includes || (Includes = {}));
|
|
15398
|
-
export var SortOrder8;
|
|
15399
|
-
(function (SortOrder8) {
|
|
15400
|
-
SortOrder8["Ascending"] = "Ascending";
|
|
15401
|
-
SortOrder8["Descending"] = "Descending";
|
|
15402
|
-
})(SortOrder8 || (SortOrder8 = {}));
|
|
15403
15911
|
export var SortOrder9;
|
|
15404
15912
|
(function (SortOrder9) {
|
|
15405
15913
|
SortOrder9["Ascending"] = "Ascending";
|
|
@@ -15415,6 +15923,11 @@ export var SortOrder11;
|
|
|
15415
15923
|
SortOrder11["Ascending"] = "Ascending";
|
|
15416
15924
|
SortOrder11["Descending"] = "Descending";
|
|
15417
15925
|
})(SortOrder11 || (SortOrder11 = {}));
|
|
15926
|
+
export var SortOrder12;
|
|
15927
|
+
(function (SortOrder12) {
|
|
15928
|
+
SortOrder12["Ascending"] = "Ascending";
|
|
15929
|
+
SortOrder12["Descending"] = "Descending";
|
|
15930
|
+
})(SortOrder12 || (SortOrder12 = {}));
|
|
15418
15931
|
export var ResearchType;
|
|
15419
15932
|
(function (ResearchType) {
|
|
15420
15933
|
ResearchType["INTERVIEW"] = "INTERVIEW";
|
|
@@ -15469,11 +15982,11 @@ export var ExemptionsClaimed;
|
|
|
15469
15982
|
ExemptionsClaimed["SECURITIES_ACT_SECTION_3_c_14"] = "SECURITIES_ACT_SECTION_3_c_14";
|
|
15470
15983
|
ExemptionsClaimed["Reg_S"] = "Reg_S";
|
|
15471
15984
|
})(ExemptionsClaimed || (ExemptionsClaimed = {}));
|
|
15472
|
-
export var
|
|
15473
|
-
(function (
|
|
15474
|
-
|
|
15475
|
-
|
|
15476
|
-
})(
|
|
15985
|
+
export var SortOrder13;
|
|
15986
|
+
(function (SortOrder13) {
|
|
15987
|
+
SortOrder13["Ascending"] = "Ascending";
|
|
15988
|
+
SortOrder13["Descending"] = "Descending";
|
|
15989
|
+
})(SortOrder13 || (SortOrder13 = {}));
|
|
15477
15990
|
export var SortBy2;
|
|
15478
15991
|
(function (SortBy2) {
|
|
15479
15992
|
SortBy2["UpdatedAt"] = "UpdatedAt";
|
|
@@ -15485,11 +15998,6 @@ export var SortBy2;
|
|
|
15485
15998
|
SortBy2["Valuation"] = "Valuation";
|
|
15486
15999
|
SortBy2["MinCommitmentAmount"] = "MinCommitmentAmount";
|
|
15487
16000
|
})(SortBy2 || (SortBy2 = {}));
|
|
15488
|
-
export var SortOrder13;
|
|
15489
|
-
(function (SortOrder13) {
|
|
15490
|
-
SortOrder13["Ascending"] = "Ascending";
|
|
15491
|
-
SortOrder13["Descending"] = "Descending";
|
|
15492
|
-
})(SortOrder13 || (SortOrder13 = {}));
|
|
15493
16001
|
export var SortOrder14;
|
|
15494
16002
|
(function (SortOrder14) {
|
|
15495
16003
|
SortOrder14["Ascending"] = "Ascending";
|
|
@@ -15525,31 +16033,39 @@ export var SortOrder20;
|
|
|
15525
16033
|
SortOrder20["Ascending"] = "Ascending";
|
|
15526
16034
|
SortOrder20["Descending"] = "Descending";
|
|
15527
16035
|
})(SortOrder20 || (SortOrder20 = {}));
|
|
16036
|
+
export var SortOrder21;
|
|
16037
|
+
(function (SortOrder21) {
|
|
16038
|
+
SortOrder21["Ascending"] = "Ascending";
|
|
16039
|
+
SortOrder21["Descending"] = "Descending";
|
|
16040
|
+
})(SortOrder21 || (SortOrder21 = {}));
|
|
15528
16041
|
export var TargetAssetType;
|
|
15529
16042
|
(function (TargetAssetType) {
|
|
15530
16043
|
TargetAssetType["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
15531
16044
|
TargetAssetType["RegisteredFund"] = "RegisteredFund";
|
|
16045
|
+
TargetAssetType["PreIPOCompany"] = "PreIPOCompany";
|
|
15532
16046
|
})(TargetAssetType || (TargetAssetType = {}));
|
|
15533
16047
|
export var TargetAssetType2;
|
|
15534
16048
|
(function (TargetAssetType2) {
|
|
15535
16049
|
TargetAssetType2["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
15536
16050
|
TargetAssetType2["RegisteredFund"] = "RegisteredFund";
|
|
16051
|
+
TargetAssetType2["PreIPOCompany"] = "PreIPOCompany";
|
|
15537
16052
|
})(TargetAssetType2 || (TargetAssetType2 = {}));
|
|
15538
16053
|
export var TargetAssetType3;
|
|
15539
16054
|
(function (TargetAssetType3) {
|
|
15540
16055
|
TargetAssetType3["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
15541
16056
|
TargetAssetType3["RegisteredFund"] = "RegisteredFund";
|
|
16057
|
+
TargetAssetType3["PreIPOCompany"] = "PreIPOCompany";
|
|
15542
16058
|
})(TargetAssetType3 || (TargetAssetType3 = {}));
|
|
15543
|
-
export var SortOrder21;
|
|
15544
|
-
(function (SortOrder21) {
|
|
15545
|
-
SortOrder21["Ascending"] = "Ascending";
|
|
15546
|
-
SortOrder21["Descending"] = "Descending";
|
|
15547
|
-
})(SortOrder21 || (SortOrder21 = {}));
|
|
15548
16059
|
export var SortOrder22;
|
|
15549
16060
|
(function (SortOrder22) {
|
|
15550
16061
|
SortOrder22["Ascending"] = "Ascending";
|
|
15551
16062
|
SortOrder22["Descending"] = "Descending";
|
|
15552
16063
|
})(SortOrder22 || (SortOrder22 = {}));
|
|
16064
|
+
export var SortOrder23;
|
|
16065
|
+
(function (SortOrder23) {
|
|
16066
|
+
SortOrder23["Ascending"] = "Ascending";
|
|
16067
|
+
SortOrder23["Descending"] = "Descending";
|
|
16068
|
+
})(SortOrder23 || (SortOrder23 = {}));
|
|
15553
16069
|
export var EventType;
|
|
15554
16070
|
(function (EventType) {
|
|
15555
16071
|
EventType["PreIPOCompany"] = "PreIPOCompany";
|
|
@@ -15676,6 +16192,7 @@ export var ConstructorInfoMethodImplementationFlags;
|
|
|
15676
16192
|
ConstructorInfoMethodImplementationFlags["AggressiveInlining"] = "AggressiveInlining";
|
|
15677
16193
|
ConstructorInfoMethodImplementationFlags["AggressiveOptimization"] = "AggressiveOptimization";
|
|
15678
16194
|
ConstructorInfoMethodImplementationFlags["InternalCall"] = "InternalCall";
|
|
16195
|
+
ConstructorInfoMethodImplementationFlags["Async"] = "Async";
|
|
15679
16196
|
ConstructorInfoMethodImplementationFlags["MaxMethodImplVal"] = "MaxMethodImplVal";
|
|
15680
16197
|
})(ConstructorInfoMethodImplementationFlags || (ConstructorInfoMethodImplementationFlags = {}));
|
|
15681
16198
|
export var ConstructorInfoCallingConvention;
|
|
@@ -15698,6 +16215,12 @@ export var ConstructorInfoMemberType;
|
|
|
15698
16215
|
ConstructorInfoMemberType["NestedType"] = "NestedType";
|
|
15699
16216
|
ConstructorInfoMemberType["All"] = "All";
|
|
15700
16217
|
})(ConstructorInfoMemberType || (ConstructorInfoMemberType = {}));
|
|
16218
|
+
export var CreateIndicationOfInterestV2TargetAssetType;
|
|
16219
|
+
(function (CreateIndicationOfInterestV2TargetAssetType) {
|
|
16220
|
+
CreateIndicationOfInterestV2TargetAssetType["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
16221
|
+
CreateIndicationOfInterestV2TargetAssetType["RegisteredFund"] = "RegisteredFund";
|
|
16222
|
+
CreateIndicationOfInterestV2TargetAssetType["PreIPOCompany"] = "PreIPOCompany";
|
|
16223
|
+
})(CreateIndicationOfInterestV2TargetAssetType || (CreateIndicationOfInterestV2TargetAssetType = {}));
|
|
15701
16224
|
export var CreateInvestorType;
|
|
15702
16225
|
(function (CreateInvestorType) {
|
|
15703
16226
|
CreateInvestorType["IndividualInvestor"] = "IndividualInvestor";
|
|
@@ -15725,6 +16248,7 @@ export var CreateTransactionTargetAssetType;
|
|
|
15725
16248
|
(function (CreateTransactionTargetAssetType) {
|
|
15726
16249
|
CreateTransactionTargetAssetType["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
15727
16250
|
CreateTransactionTargetAssetType["RegisteredFund"] = "RegisteredFund";
|
|
16251
|
+
CreateTransactionTargetAssetType["PreIPOCompany"] = "PreIPOCompany";
|
|
15728
16252
|
})(CreateTransactionTargetAssetType || (CreateTransactionTargetAssetType = {}));
|
|
15729
16253
|
export var CreateTransactionSide;
|
|
15730
16254
|
(function (CreateTransactionSide) {
|
|
@@ -15895,10 +16419,16 @@ export var FinancialInstitutionKycRequired;
|
|
|
15895
16419
|
FinancialInstitutionKycRequired["Auto"] = "Auto";
|
|
15896
16420
|
FinancialInstitutionKycRequired["Bypass"] = "Bypass";
|
|
15897
16421
|
})(FinancialInstitutionKycRequired || (FinancialInstitutionKycRequired = {}));
|
|
15898
|
-
export var
|
|
15899
|
-
(function (
|
|
15900
|
-
|
|
15901
|
-
})(
|
|
16422
|
+
export var FundManagerRegistration;
|
|
16423
|
+
(function (FundManagerRegistration) {
|
|
16424
|
+
FundManagerRegistration["RIA"] = "RIA";
|
|
16425
|
+
})(FundManagerRegistration || (FundManagerRegistration = {}));
|
|
16426
|
+
export var IndicationOfInterestV2TargetAssetType;
|
|
16427
|
+
(function (IndicationOfInterestV2TargetAssetType) {
|
|
16428
|
+
IndicationOfInterestV2TargetAssetType["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
16429
|
+
IndicationOfInterestV2TargetAssetType["RegisteredFund"] = "RegisteredFund";
|
|
16430
|
+
IndicationOfInterestV2TargetAssetType["PreIPOCompany"] = "PreIPOCompany";
|
|
16431
|
+
})(IndicationOfInterestV2TargetAssetType || (IndicationOfInterestV2TargetAssetType = {}));
|
|
15902
16432
|
export var IndividualEntityInvestorQualifiedStatus;
|
|
15903
16433
|
(function (IndividualEntityInvestorQualifiedStatus) {
|
|
15904
16434
|
IndividualEntityInvestorQualifiedStatus["QUALIFIED_PURCHASER"] = "QUALIFIED_PURCHASER";
|
|
@@ -16063,6 +16593,7 @@ export var MethodBaseMethodImplementationFlags;
|
|
|
16063
16593
|
MethodBaseMethodImplementationFlags["AggressiveInlining"] = "AggressiveInlining";
|
|
16064
16594
|
MethodBaseMethodImplementationFlags["AggressiveOptimization"] = "AggressiveOptimization";
|
|
16065
16595
|
MethodBaseMethodImplementationFlags["InternalCall"] = "InternalCall";
|
|
16596
|
+
MethodBaseMethodImplementationFlags["Async"] = "Async";
|
|
16066
16597
|
MethodBaseMethodImplementationFlags["MaxMethodImplVal"] = "MaxMethodImplVal";
|
|
16067
16598
|
})(MethodBaseMethodImplementationFlags || (MethodBaseMethodImplementationFlags = {}));
|
|
16068
16599
|
export var MethodBaseCallingConvention;
|
|
@@ -16113,6 +16644,7 @@ export var MethodInfoMethodImplementationFlags;
|
|
|
16113
16644
|
MethodInfoMethodImplementationFlags["AggressiveInlining"] = "AggressiveInlining";
|
|
16114
16645
|
MethodInfoMethodImplementationFlags["AggressiveOptimization"] = "AggressiveOptimization";
|
|
16115
16646
|
MethodInfoMethodImplementationFlags["InternalCall"] = "InternalCall";
|
|
16647
|
+
MethodInfoMethodImplementationFlags["Async"] = "Async";
|
|
16116
16648
|
MethodInfoMethodImplementationFlags["MaxMethodImplVal"] = "MaxMethodImplVal";
|
|
16117
16649
|
})(MethodInfoMethodImplementationFlags || (MethodInfoMethodImplementationFlags = {}));
|
|
16118
16650
|
export var MethodInfoCallingConvention;
|
|
@@ -16387,18 +16919,6 @@ export var QuestionnaireQuestionAnswerQuestionFormat;
|
|
|
16387
16919
|
QuestionnaireQuestionAnswerQuestionFormat["Email"] = "Email";
|
|
16388
16920
|
QuestionnaireQuestionAnswerQuestionFormat["Scale"] = "Scale";
|
|
16389
16921
|
})(QuestionnaireQuestionAnswerQuestionFormat || (QuestionnaireQuestionAnswerQuestionFormat = {}));
|
|
16390
|
-
export var RegisteredFundAssetClass;
|
|
16391
|
-
(function (RegisteredFundAssetClass) {
|
|
16392
|
-
RegisteredFundAssetClass["PrivateEquity"] = "PrivateEquity";
|
|
16393
|
-
RegisteredFundAssetClass["PrivateCredit"] = "PrivateCredit";
|
|
16394
|
-
})(RegisteredFundAssetClass || (RegisteredFundAssetClass = {}));
|
|
16395
|
-
export var RegisteredFundStructure;
|
|
16396
|
-
(function (RegisteredFundStructure) {
|
|
16397
|
-
RegisteredFundStructure["REIT"] = "REIT";
|
|
16398
|
-
RegisteredFundStructure["BDC"] = "BDC";
|
|
16399
|
-
RegisteredFundStructure["TenderOfferFund"] = "TenderOfferFund";
|
|
16400
|
-
RegisteredFundStructure["IntervalFund"] = "IntervalFund";
|
|
16401
|
-
})(RegisteredFundStructure || (RegisteredFundStructure = {}));
|
|
16402
16922
|
export var RegisteredFundSubscriptionCadence;
|
|
16403
16923
|
(function (RegisteredFundSubscriptionCadence) {
|
|
16404
16924
|
RegisteredFundSubscriptionCadence["Monthly"] = "Monthly";
|
|
@@ -16584,6 +17104,7 @@ export var TransactionTargetAssetType;
|
|
|
16584
17104
|
(function (TransactionTargetAssetType) {
|
|
16585
17105
|
TransactionTargetAssetType["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
16586
17106
|
TransactionTargetAssetType["RegisteredFund"] = "RegisteredFund";
|
|
17107
|
+
TransactionTargetAssetType["PreIPOCompany"] = "PreIPOCompany";
|
|
16587
17108
|
})(TransactionTargetAssetType || (TransactionTargetAssetType = {}));
|
|
16588
17109
|
export var TransactionSide;
|
|
16589
17110
|
(function (TransactionSide) {
|
|
@@ -16812,11 +17333,13 @@ export var UpdateTransactionTargetAssetType;
|
|
|
16812
17333
|
(function (UpdateTransactionTargetAssetType) {
|
|
16813
17334
|
UpdateTransactionTargetAssetType["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
16814
17335
|
UpdateTransactionTargetAssetType["RegisteredFund"] = "RegisteredFund";
|
|
17336
|
+
UpdateTransactionTargetAssetType["PreIPOCompany"] = "PreIPOCompany";
|
|
16815
17337
|
})(UpdateTransactionTargetAssetType || (UpdateTransactionTargetAssetType = {}));
|
|
16816
17338
|
export var UpdateTransactionReferenceTargetAssetType;
|
|
16817
17339
|
(function (UpdateTransactionReferenceTargetAssetType) {
|
|
16818
17340
|
UpdateTransactionReferenceTargetAssetType["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
16819
17341
|
UpdateTransactionReferenceTargetAssetType["RegisteredFund"] = "RegisteredFund";
|
|
17342
|
+
UpdateTransactionReferenceTargetAssetType["PreIPOCompany"] = "PreIPOCompany";
|
|
16820
17343
|
})(UpdateTransactionReferenceTargetAssetType || (UpdateTransactionReferenceTargetAssetType = {}));
|
|
16821
17344
|
export var WebhookEventDeliveryStatus;
|
|
16822
17345
|
(function (WebhookEventDeliveryStatus) {
|