@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.d.ts
CHANGED
|
@@ -117,6 +117,7 @@ export declare class Client {
|
|
|
117
117
|
* Create an Indication of Interest
|
|
118
118
|
* @param body (optional) create IndicationOfInterest information.
|
|
119
119
|
* @return The newly created IndicationOfInterest.
|
|
120
|
+
* @deprecated
|
|
120
121
|
*/
|
|
121
122
|
createIndicationOfInterest(body: CreateIndicationOfInterest | undefined): Promise<IndicationOfInterest>;
|
|
122
123
|
protected processCreateIndicationOfInterest(response: Response): Promise<IndicationOfInterest>;
|
|
@@ -124,6 +125,7 @@ export declare class Client {
|
|
|
124
125
|
* Update an Indication of Interest
|
|
125
126
|
* @param body (optional) Update Indication of Interest information.
|
|
126
127
|
* @return The updated Indication of Interest.
|
|
128
|
+
* @deprecated
|
|
127
129
|
*/
|
|
128
130
|
updateIndicationOfInterest(body: UpdateIndicationOfInterest | undefined): Promise<IndicationOfInterest>;
|
|
129
131
|
protected processUpdateIndicationOfInterest(response: Response): Promise<IndicationOfInterest>;
|
|
@@ -138,6 +140,7 @@ export declare class Client {
|
|
|
138
140
|
* @param sortProperty (optional) Which property to sort by.
|
|
139
141
|
* @param sortOrder (optional) Which direction to sort by.
|
|
140
142
|
* @return Returns the list of IndicationOfInterest.
|
|
143
|
+
* @deprecated
|
|
141
144
|
*/
|
|
142
145
|
getAllIndicationOfInterests(searchTerm: string | undefined, investorId: string | undefined, page: number | undefined, pageSize: number | undefined, sortProperty: SortProperty | undefined, sortOrder: SortOrder4 | undefined): Promise<IndicationOfInterestApiResponse>;
|
|
143
146
|
protected processGetAllIndicationOfInterests(response: Response): Promise<IndicationOfInterestApiResponse>;
|
|
@@ -145,6 +148,7 @@ export declare class Client {
|
|
|
145
148
|
* Delete an Indication of Interest by ID.
|
|
146
149
|
* @param id The ID of the Indication of Interest to delete.
|
|
147
150
|
* @return The Indication of Interest was successfully deleted.
|
|
151
|
+
* @deprecated
|
|
148
152
|
*/
|
|
149
153
|
deleteIndicationOfInterest(id: string): Promise<void>;
|
|
150
154
|
protected processDeleteIndicationOfInterest(response: Response): Promise<void>;
|
|
@@ -152,9 +156,52 @@ export declare class Client {
|
|
|
152
156
|
* Get an IndicationOfInterest by Id
|
|
153
157
|
* @param id Unique ID of the IOI to find.
|
|
154
158
|
* @return Returns the IndicationOfInterest with the specified Id.
|
|
159
|
+
* @deprecated
|
|
155
160
|
*/
|
|
156
161
|
getIndicationOfInterestById(id: string): Promise<IndicationOfInterest>;
|
|
157
162
|
protected processGetIndicationOfInterestById(response: Response): Promise<IndicationOfInterest>;
|
|
163
|
+
/**
|
|
164
|
+
* Create an Indication of Interest
|
|
165
|
+
* @param body (optional) create IndicationOfInterest information.
|
|
166
|
+
* @return The newly created IndicationOfInterest.
|
|
167
|
+
*/
|
|
168
|
+
createIndicationOfInterestV2(body: CreateIndicationOfInterestV2 | undefined): Promise<IndicationOfInterestV2>;
|
|
169
|
+
protected processCreateIndicationOfInterestV2(response: Response): Promise<IndicationOfInterestV2>;
|
|
170
|
+
/**
|
|
171
|
+
* Update an Indication of Interest.
|
|
172
|
+
* @param body (optional) Update Indication of Interest information.
|
|
173
|
+
* @return The updated Indication of Interest.
|
|
174
|
+
*/
|
|
175
|
+
updateIndicationOfInterestV2(body: UpdateIndicationOfInterestV2 | undefined): Promise<IndicationOfInterestV2>;
|
|
176
|
+
protected processUpdateIndicationOfInterestV2(response: Response): Promise<IndicationOfInterestV2>;
|
|
177
|
+
/**
|
|
178
|
+
* Get all IndicationOfInterests.
|
|
179
|
+
* @param searchTerm (optional) Optional search term on the company/target name.
|
|
180
|
+
* @param investorId (optional) Filter the returned IndicationOfInterests by an InvestorId.
|
|
181
|
+
* @param page (optional) Number of the page to retrieve.
|
|
182
|
+
Defaults to 1 if not specified.
|
|
183
|
+
* @param pageSize (optional) Size of the page to retrieve.
|
|
184
|
+
Defaults to 25 if not specified.
|
|
185
|
+
* @param sortProperty (optional) Which property to sort by.
|
|
186
|
+
* @param sortOrder (optional) Which direction to sort by.
|
|
187
|
+
* @return Returns the list of IndicationOfInterest.
|
|
188
|
+
*/
|
|
189
|
+
getAllIndicationOfInterestsV2(searchTerm: string | undefined, investorId: string | undefined, page: number | undefined, pageSize: number | undefined, sortProperty: SortProperty2 | undefined, sortOrder: SortOrder5 | undefined): Promise<IndicationOfInterestV2ApiResponse>;
|
|
190
|
+
protected processGetAllIndicationOfInterestsV2(response: Response): Promise<IndicationOfInterestV2ApiResponse>;
|
|
191
|
+
/**
|
|
192
|
+
* Get an IndicationOfInterest by Id.
|
|
193
|
+
* @param id Unique ID of the IOI to find.
|
|
194
|
+
* @return Returns the IndicationOfInterest with the specified Id.
|
|
195
|
+
*/
|
|
196
|
+
getIndicationOfInterestByIdV2(id: string): Promise<IndicationOfInterestV2>;
|
|
197
|
+
protected processGetIndicationOfInterestByIdV2(response: Response): Promise<IndicationOfInterestV2>;
|
|
198
|
+
/**
|
|
199
|
+
* Delete an Indication of Interest by ID.
|
|
200
|
+
* @param id The ID of the Indication of Interest to delete.
|
|
201
|
+
* @return The Indication of Interest was successfully deleted.
|
|
202
|
+
*/
|
|
203
|
+
deleteIndicationOfInterestV2(id: string): Promise<void>;
|
|
204
|
+
protected processDeleteIndicationOfInterestV2(response: Response): Promise<void>;
|
|
158
205
|
/**
|
|
159
206
|
* Create an Investor.
|
|
160
207
|
* @param body (optional) create Investor information.
|
|
@@ -180,7 +227,7 @@ export declare class Client {
|
|
|
180
227
|
* @param financialInstitutionId (optional) Optional filter to get by the Financial Institution.
|
|
181
228
|
* @return Returns the paginated list of Investors.
|
|
182
229
|
*/
|
|
183
|
-
getAllInvestors(page: number | undefined, pageSize: number | undefined, sortOrder:
|
|
230
|
+
getAllInvestors(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder6 | undefined, investorStatus: InvestorStatus | undefined, financialInstitutionId: string | undefined): Promise<InvestorApiResponse>;
|
|
184
231
|
protected processGetAllInvestors(response: Response): Promise<InvestorApiResponse>;
|
|
185
232
|
/**
|
|
186
233
|
* Update an Investor’s accreditation status.
|
|
@@ -257,7 +304,7 @@ export declare class Client {
|
|
|
257
304
|
* @return OK
|
|
258
305
|
* @deprecated
|
|
259
306
|
*/
|
|
260
|
-
getAllSubscriptions(preIpoCompanySpvId: string | undefined, page: number | undefined, pageSize: number | undefined, investorId: string | undefined, status: Status | undefined, preIPOCompanyName: string | undefined, preIPOCompanySPVName: string | undefined, tradingSymbol: string | undefined, orderReferenceId: string | undefined, sortOrder:
|
|
307
|
+
getAllSubscriptions(preIpoCompanySpvId: string | undefined, page: number | undefined, pageSize: number | undefined, investorId: string | undefined, status: Status | undefined, preIPOCompanyName: string | undefined, preIPOCompanySPVName: string | undefined, tradingSymbol: string | undefined, orderReferenceId: string | undefined, sortOrder: SortOrder7 | undefined): Promise<InvestorSubscriptionApiResponse>;
|
|
261
308
|
protected processGetAllSubscriptions(response: Response): Promise<InvestorSubscriptionApiResponse>;
|
|
262
309
|
/**
|
|
263
310
|
* Update an InvestorSubscription.
|
|
@@ -618,7 +665,7 @@ export declare class Client {
|
|
|
618
665
|
* @param isActive (optional) Optional active state filter.
|
|
619
666
|
* @return OK
|
|
620
667
|
*/
|
|
621
|
-
getAllPreIPOCompanies(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, searchCategories: string[] | undefined, sortBy: SortBy | undefined, sortOrder:
|
|
668
|
+
getAllPreIPOCompanies(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, searchCategories: string[] | undefined, sortBy: SortBy | undefined, sortOrder: SortOrder8 | undefined, minLastValuation: number | undefined, maxLastValuation: number | undefined, minTotalFunding: number | undefined, maxTotalFunding: number | undefined, listingType: string | undefined, isActive: boolean | undefined): Promise<PreIPOCompanyApiResponse>;
|
|
622
669
|
protected processGetAllPreIPOCompanies(response: Response): Promise<PreIPOCompanyApiResponse>;
|
|
623
670
|
/**
|
|
624
671
|
* Bulk Download all PreIPOCompanies.
|
|
@@ -654,7 +701,7 @@ export declare class Client {
|
|
|
654
701
|
* @param sortOrder (optional)
|
|
655
702
|
* @return OK
|
|
656
703
|
*/
|
|
657
|
-
getAllPreIPOCompanyFundingRounds(page: number | undefined, pageSize: number | undefined, preIPOCompanyId: string | undefined, searchTerm: string | undefined, sortOrder:
|
|
704
|
+
getAllPreIPOCompanyFundingRounds(page: number | undefined, pageSize: number | undefined, preIPOCompanyId: string | undefined, searchTerm: string | undefined, sortOrder: SortOrder9 | undefined): Promise<PreIPOCompanyFundingRoundApiResponse>;
|
|
658
705
|
protected processGetAllPreIPOCompanyFundingRounds(response: Response): Promise<PreIPOCompanyFundingRoundApiResponse>;
|
|
659
706
|
/**
|
|
660
707
|
* Get a PreIPOCompanyInvestment by Id
|
|
@@ -676,7 +723,7 @@ export declare class Client {
|
|
|
676
723
|
* @param sortOrder (optional)
|
|
677
724
|
* @return OK
|
|
678
725
|
*/
|
|
679
|
-
getAllPreIPOCompanyInvestments(investorId: string, nameFilter: string | undefined, page: number | undefined, pageSize: number | undefined, preIpoCompanyId: string | undefined, sortOrder:
|
|
726
|
+
getAllPreIPOCompanyInvestments(investorId: string, nameFilter: string | undefined, page: number | undefined, pageSize: number | undefined, preIpoCompanyId: string | undefined, sortOrder: SortOrder10 | undefined): Promise<PreIPOCompanyInvestmentApiResponse>;
|
|
680
727
|
protected processGetAllPreIPOCompanyInvestments(response: Response): Promise<PreIPOCompanyInvestmentApiResponse>;
|
|
681
728
|
/**
|
|
682
729
|
* Get a PreIPOCompanyNews by Id.
|
|
@@ -696,7 +743,7 @@ export declare class Client {
|
|
|
696
743
|
* @param sortOrder (optional)
|
|
697
744
|
* @return OK
|
|
698
745
|
*/
|
|
699
|
-
getAllPreIPOCompanyNews(searchTerm: string | undefined, page: number | undefined, pageSize: number | undefined, preIPOCompanyId: string | undefined, sortOrder:
|
|
746
|
+
getAllPreIPOCompanyNews(searchTerm: string | undefined, page: number | undefined, pageSize: number | undefined, preIPOCompanyId: string | undefined, sortOrder: SortOrder11 | undefined): Promise<PreIPOCompanyNewsApiResponse>;
|
|
700
747
|
protected processGetAllPreIPOCompanyNews(response: Response): Promise<PreIPOCompanyNewsApiResponse>;
|
|
701
748
|
/**
|
|
702
749
|
* Get a PreIPOCompanyResearch by Id.
|
|
@@ -718,7 +765,7 @@ export declare class Client {
|
|
|
718
765
|
* @param relation (optional)
|
|
719
766
|
* @return OK
|
|
720
767
|
*/
|
|
721
|
-
getPreIPOCompanyResearchAll(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, preIPOCompanyId: string | undefined, sortOrder:
|
|
768
|
+
getPreIPOCompanyResearchAll(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, preIPOCompanyId: string | undefined, sortOrder: SortOrder12 | undefined, researchType: ResearchType | undefined, relation: Relation | undefined): Promise<PreIPOCompanyResearchApiResponse>;
|
|
722
769
|
protected processGetPreIPOCompanyResearchAll(response: Response): Promise<PreIPOCompanyResearchApiResponse>;
|
|
723
770
|
/**
|
|
724
771
|
* Get a PreIPOCompanySPV by Id
|
|
@@ -754,7 +801,7 @@ export declare class Client {
|
|
|
754
801
|
* @param sortBy (optional)
|
|
755
802
|
* @return OK
|
|
756
803
|
*/
|
|
757
|
-
getAllPreIPOCompanySPVs(investorId: string, monarkStage: MonarkStage | undefined, exemptionsClaimed: ExemptionsClaimed[] | undefined, nameFilter: string | undefined, preIPOCompanyId: string | undefined, preIPOCompanyInvestmentId: string | undefined, isApproved: boolean | undefined, page: number | undefined, pageSize: number | undefined, sortOrder:
|
|
804
|
+
getAllPreIPOCompanySPVs(investorId: string, monarkStage: MonarkStage | undefined, exemptionsClaimed: ExemptionsClaimed[] | undefined, nameFilter: string | undefined, preIPOCompanyId: string | undefined, preIPOCompanyInvestmentId: string | undefined, isApproved: boolean | undefined, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder13 | undefined, sortBy: SortBy2 | undefined): Promise<PreIPOCompanySPVApiResponse>;
|
|
758
805
|
protected processGetAllPreIPOCompanySPVs(response: Response): Promise<PreIPOCompanySPVApiResponse>;
|
|
759
806
|
/**
|
|
760
807
|
* Gets all Financial Institutions that have access to a specific SPV
|
|
@@ -833,7 +880,7 @@ export declare class Client {
|
|
|
833
880
|
* @param sortOrder (optional) Sort order for results.
|
|
834
881
|
* @return Returns the list of approval records.
|
|
835
882
|
*/
|
|
836
|
-
getAllPartnerSpvApprovals(page: number | undefined, pageSize: number | undefined, sortOrder:
|
|
883
|
+
getAllPartnerSpvApprovals(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder14 | undefined): Promise<PreIPOCompanySPVPartnerApprovalApiResponse>;
|
|
837
884
|
protected processGetAllPartnerSpvApprovals(response: Response): Promise<PreIPOCompanySPVPartnerApprovalApiResponse>;
|
|
838
885
|
/**
|
|
839
886
|
* Create a Questionnaire.
|
|
@@ -858,7 +905,7 @@ export declare class Client {
|
|
|
858
905
|
* @param sortOrder (optional)
|
|
859
906
|
* @return Returns the list of Questionnaires.
|
|
860
907
|
*/
|
|
861
|
-
getAllQuestionnaires(page: number | undefined, pageSize: number | undefined, sortOrder:
|
|
908
|
+
getAllQuestionnaires(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder15 | undefined): Promise<QuestionnaireApiResponse>;
|
|
862
909
|
protected processGetAllQuestionnaires(response: Response): Promise<QuestionnaireApiResponse>;
|
|
863
910
|
/**
|
|
864
911
|
* Delete a Questionnaire.
|
|
@@ -892,7 +939,7 @@ export declare class Client {
|
|
|
892
939
|
* @param sortOrder (optional)
|
|
893
940
|
* @return Returns the list of Questionnaire.
|
|
894
941
|
*/
|
|
895
|
-
getAllQuestionnaireAnswers(investorId: string | undefined, questionnaireId: string | undefined, page: number | undefined, pageSize: number | undefined, sortOrder:
|
|
942
|
+
getAllQuestionnaireAnswers(investorId: string | undefined, questionnaireId: string | undefined, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder16 | undefined): Promise<QuestionnaireAnswerApiResponse>;
|
|
896
943
|
protected processGetAllQuestionnaireAnswers(response: Response): Promise<QuestionnaireAnswerApiResponse>;
|
|
897
944
|
/**
|
|
898
945
|
* Get a QuestionnaireAnswer by Id
|
|
@@ -905,9 +952,10 @@ export declare class Client {
|
|
|
905
952
|
* Get the RegisteredFund by the specified Id.
|
|
906
953
|
* @param id ID of the RegisteredFund to find.
|
|
907
954
|
* @param includeDocuments (optional) Return associated documents
|
|
955
|
+
* @param financialInstitutionId (optional) Optional financial institution ID for access control.
|
|
908
956
|
* @return Returns the RegisteredFund with the specified Id.
|
|
909
957
|
*/
|
|
910
|
-
getRegisteredFundById(id: string, includeDocuments: boolean | undefined): Promise<RegisteredFund>;
|
|
958
|
+
getRegisteredFundById(id: string, includeDocuments: boolean | undefined, financialInstitutionId: string | undefined): Promise<RegisteredFund>;
|
|
911
959
|
protected processGetRegisteredFundById(response: Response): Promise<RegisteredFund>;
|
|
912
960
|
/**
|
|
913
961
|
* Get all RegisteredFunds
|
|
@@ -917,9 +965,11 @@ export declare class Client {
|
|
|
917
965
|
Defaults to 25 if not specified.
|
|
918
966
|
* @param searchTerm (optional) Search term to filter results on based on 'Name' field
|
|
919
967
|
* @param sortOrder (optional) Which way to sort order, defaults to Descending.
|
|
968
|
+
* @param financialInstitutionId (optional) Optional financial institution ID for access control.
|
|
969
|
+
* @param assetClass (optional) Optional asset class to filter registered funds by asset class.
|
|
920
970
|
* @return OK
|
|
921
971
|
*/
|
|
922
|
-
getAllRegisteredFunds(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder:
|
|
972
|
+
getAllRegisteredFunds(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder17 | undefined, financialInstitutionId: string | undefined, assetClass: string | undefined): Promise<RegisteredFundApiResponse>;
|
|
923
973
|
protected processGetAllRegisteredFunds(response: Response): Promise<RegisteredFundApiResponse>;
|
|
924
974
|
/**
|
|
925
975
|
* Gets a SecondaryLink Evergreen Fund by ID.
|
|
@@ -944,7 +994,7 @@ export declare class Client {
|
|
|
944
994
|
* @param fundType (optional) Optional filter for fund type.
|
|
945
995
|
* @return Returns the list of EvergreenFund.
|
|
946
996
|
*/
|
|
947
|
-
getAllSecondaryLinkEvergreenFunds(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder:
|
|
997
|
+
getAllSecondaryLinkEvergreenFunds(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder18 | undefined, strategyFocus: string | undefined, fundName: string | undefined, manager: string | undefined, fundType: string | undefined): Promise<EvergreenFundApiResponse>;
|
|
948
998
|
protected processGetAllSecondaryLinkEvergreenFunds(response: Response): Promise<EvergreenFundApiResponse>;
|
|
949
999
|
/**
|
|
950
1000
|
* Gets a SecondaryLink Evergreen News record by ID.
|
|
@@ -967,7 +1017,7 @@ export declare class Client {
|
|
|
967
1017
|
* @param evergreenFundId (optional) Optional filter for evergreen fund ID.
|
|
968
1018
|
* @return Returns the list of EvergreenNews.
|
|
969
1019
|
*/
|
|
970
|
-
getAllSecondaryLinkEvergreenNews(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder:
|
|
1020
|
+
getAllSecondaryLinkEvergreenNews(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder19 | undefined, fundName: string | undefined, evergreenFundId: string | undefined): Promise<EvergreenNewsApiResponse>;
|
|
971
1021
|
protected processGetAllSecondaryLinkEvergreenNews(response: Response): Promise<EvergreenNewsApiResponse>;
|
|
972
1022
|
/**
|
|
973
1023
|
* Gets a SecondaryLink Evergreen Returns record by ID.
|
|
@@ -990,7 +1040,7 @@ export declare class Client {
|
|
|
990
1040
|
* @param evergreenFundId (optional) Optional filter for evergreen fund ID.
|
|
991
1041
|
* @return Returns the list of EvergreenReturns.
|
|
992
1042
|
*/
|
|
993
|
-
getAllSecondaryLinkEvergreenReturns(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder:
|
|
1043
|
+
getAllSecondaryLinkEvergreenReturns(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder20 | undefined, fundName: string | undefined, evergreenFundId: string | undefined): Promise<EvergreenReturnsApiResponse>;
|
|
994
1044
|
protected processGetAllSecondaryLinkEvergreenReturns(response: Response): Promise<EvergreenReturnsApiResponse>;
|
|
995
1045
|
/**
|
|
996
1046
|
* Gets a SecondaryLink Evergreen Share Classes record by ID.
|
|
@@ -1013,7 +1063,7 @@ export declare class Client {
|
|
|
1013
1063
|
* @param evergreenFundId (optional) Optional filter for evergreen fund ID.
|
|
1014
1064
|
* @return Returns the list of EvergreenShareClasses.
|
|
1015
1065
|
*/
|
|
1016
|
-
getAllSecondaryLinkEvergreenShareClasses(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder:
|
|
1066
|
+
getAllSecondaryLinkEvergreenShareClasses(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder21 | undefined, fundName: string | undefined, evergreenFundId: string | undefined): Promise<EvergreenShareClassesApiResponse>;
|
|
1017
1067
|
protected processGetAllSecondaryLinkEvergreenShareClasses(response: Response): Promise<EvergreenShareClassesApiResponse>;
|
|
1018
1068
|
/**
|
|
1019
1069
|
* Create a new order (subscription or redemption).
|
|
@@ -1123,7 +1173,7 @@ export declare class Client {
|
|
|
1123
1173
|
* @param sortOrder (optional) Order of which to sort the webhooks by. Default is Descending
|
|
1124
1174
|
* @return Returns a list of Webhooks.
|
|
1125
1175
|
*/
|
|
1126
|
-
getAllWebhooks(page: number | undefined, pageSize: number | undefined, sortOrder:
|
|
1176
|
+
getAllWebhooks(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder22 | undefined): Promise<WebhookApiResponse>;
|
|
1127
1177
|
protected processGetAllWebhooks(response: Response): Promise<WebhookApiResponse>;
|
|
1128
1178
|
/**
|
|
1129
1179
|
* Update a Webhook’s Information
|
|
@@ -1160,7 +1210,7 @@ export declare class Client {
|
|
|
1160
1210
|
* @param deliveryStatus (optional) Optional filter by delivery status.
|
|
1161
1211
|
* @return Returns a list of Webhook Events.
|
|
1162
1212
|
*/
|
|
1163
|
-
getAllWebhookEvents(id: string, from: Date, to: Date, page: number | undefined, pageSize: number | undefined, sortOrder:
|
|
1213
|
+
getAllWebhookEvents(id: string, from: Date, to: Date, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder23 | undefined, eventType: EventType | undefined, deliveryStatus: DeliveryStatus | undefined): Promise<WebhookEventApiResponse>;
|
|
1164
1214
|
protected processGetAllWebhookEvents(response: Response): Promise<WebhookEventApiResponse>;
|
|
1165
1215
|
}
|
|
1166
1216
|
/** Represents the version information of the API */
|
|
@@ -1809,6 +1859,40 @@ export interface ICreateIndicationOfInterest {
|
|
|
1809
1859
|
/** Currency in which the IOI was submitted. Monark only accepts IOIs submitted in USD. */
|
|
1810
1860
|
currency: string;
|
|
1811
1861
|
}
|
|
1862
|
+
/** CreateIndicationOfInterestV2 represents the v2 request to create a generic IOI supporting multiple asset types. */
|
|
1863
|
+
export declare class CreateIndicationOfInterestV2 implements ICreateIndicationOfInterestV2 {
|
|
1864
|
+
/** Represents the unique ID, provided by Monark, associated with the Investor submitting an IOI, investing in an SPV, or taking any action in the secondary market. */
|
|
1865
|
+
investorId?: string;
|
|
1866
|
+
/** The unique ID of the target asset (company, fund, etc.) that the IoI request is for. */
|
|
1867
|
+
targetId?: string;
|
|
1868
|
+
/** The asset type of the target being invested in (PreIPOCompany, PrivateCompany, etc.) */
|
|
1869
|
+
targetAssetType?: CreateIndicationOfInterestV2TargetAssetType;
|
|
1870
|
+
/** Optional number of clients represented in this IOI (for aggregated IOIs) */
|
|
1871
|
+
numberOfClients?: number | undefined;
|
|
1872
|
+
/** Notional amount of an IOI. */
|
|
1873
|
+
notionalAmount: number;
|
|
1874
|
+
/** Currency in which the IOI was submitted. Monark only accepts IOIs submitted in USD. */
|
|
1875
|
+
currency: string | undefined;
|
|
1876
|
+
constructor(data?: ICreateIndicationOfInterestV2);
|
|
1877
|
+
init(_data?: any): void;
|
|
1878
|
+
static fromJS(data: any): CreateIndicationOfInterestV2;
|
|
1879
|
+
toJSON(data?: any): any;
|
|
1880
|
+
}
|
|
1881
|
+
/** CreateIndicationOfInterestV2 represents the v2 request to create a generic IOI supporting multiple asset types. */
|
|
1882
|
+
export interface ICreateIndicationOfInterestV2 {
|
|
1883
|
+
/** Represents the unique ID, provided by Monark, associated with the Investor submitting an IOI, investing in an SPV, or taking any action in the secondary market. */
|
|
1884
|
+
investorId?: string;
|
|
1885
|
+
/** The unique ID of the target asset (company, fund, etc.) that the IoI request is for. */
|
|
1886
|
+
targetId?: string;
|
|
1887
|
+
/** The asset type of the target being invested in (PreIPOCompany, PrivateCompany, etc.) */
|
|
1888
|
+
targetAssetType?: CreateIndicationOfInterestV2TargetAssetType;
|
|
1889
|
+
/** Optional number of clients represented in this IOI (for aggregated IOIs) */
|
|
1890
|
+
numberOfClients?: number | undefined;
|
|
1891
|
+
/** Notional amount of an IOI. */
|
|
1892
|
+
notionalAmount: number;
|
|
1893
|
+
/** Currency in which the IOI was submitted. Monark only accepts IOIs submitted in USD. */
|
|
1894
|
+
currency: string | undefined;
|
|
1895
|
+
}
|
|
1812
1896
|
export declare class CreateIndividualEntityInvestors implements ICreateIndividualEntityInvestors {
|
|
1813
1897
|
individualInvestors?: IndividualEntityInvestorBase[] | undefined;
|
|
1814
1898
|
constructor(data?: ICreateIndividualEntityInvestors);
|
|
@@ -2321,6 +2405,8 @@ export declare class EvergreenFund implements IEvergreenFund {
|
|
|
2321
2405
|
id: string;
|
|
2322
2406
|
/** Official name of the Evergreen Fund */
|
|
2323
2407
|
fundName: string | undefined;
|
|
2408
|
+
/** Central Index Key assigned by the SEC. */
|
|
2409
|
+
cik?: number | undefined;
|
|
2324
2410
|
/** Manager of the Evergreen Fund */
|
|
2325
2411
|
manager?: string | undefined;
|
|
2326
2412
|
/** Year of inception for the Evergreen Fund */
|
|
@@ -2339,6 +2425,10 @@ export declare class EvergreenFund implements IEvergreenFund {
|
|
|
2339
2425
|
repurchaseFrequency?: string | undefined;
|
|
2340
2426
|
/** Frequency at which subscriptions occur */
|
|
2341
2427
|
subscriptionFrequency?: string | undefined;
|
|
2428
|
+
/** The Evergreen Return associated with this fund. */
|
|
2429
|
+
evergreenReturns?: EvergreenReturns | undefined;
|
|
2430
|
+
/** Collection of Evergreen Share Classes associated with this fund. */
|
|
2431
|
+
evergreenShareClasses?: EvergreenShareClasses[] | undefined;
|
|
2342
2432
|
constructor(data?: IEvergreenFund);
|
|
2343
2433
|
init(_data?: any): void;
|
|
2344
2434
|
static fromJS(data: any): EvergreenFund;
|
|
@@ -2350,6 +2440,8 @@ export interface IEvergreenFund {
|
|
|
2350
2440
|
id: string;
|
|
2351
2441
|
/** Official name of the Evergreen Fund */
|
|
2352
2442
|
fundName: string | undefined;
|
|
2443
|
+
/** Central Index Key assigned by the SEC. */
|
|
2444
|
+
cik?: number | undefined;
|
|
2353
2445
|
/** Manager of the Evergreen Fund */
|
|
2354
2446
|
manager?: string | undefined;
|
|
2355
2447
|
/** Year of inception for the Evergreen Fund */
|
|
@@ -2368,6 +2460,10 @@ export interface IEvergreenFund {
|
|
|
2368
2460
|
repurchaseFrequency?: string | undefined;
|
|
2369
2461
|
/** Frequency at which subscriptions occur */
|
|
2370
2462
|
subscriptionFrequency?: string | undefined;
|
|
2463
|
+
/** The Evergreen Return associated with this fund. */
|
|
2464
|
+
evergreenReturns?: EvergreenReturns | undefined;
|
|
2465
|
+
/** Collection of Evergreen Share Classes associated with this fund. */
|
|
2466
|
+
evergreenShareClasses?: EvergreenShareClasses[] | undefined;
|
|
2371
2467
|
}
|
|
2372
2468
|
export declare class EvergreenFundApiResponse implements IEvergreenFundApiResponse {
|
|
2373
2469
|
items?: EvergreenFund[] | undefined;
|
|
@@ -2781,14 +2877,16 @@ export interface IFinancialInstitutionApiResponse {
|
|
|
2781
2877
|
items?: FinancialInstitution[] | undefined;
|
|
2782
2878
|
pagination?: Pagination | undefined;
|
|
2783
2879
|
}
|
|
2784
|
-
/**
|
|
2785
|
-
export declare class
|
|
2880
|
+
/** FundManager represents the advisor responsible for managing the Registered Fund */
|
|
2881
|
+
export declare class FundManager implements IFundManager {
|
|
2786
2882
|
/** Unique ID for fund advisor */
|
|
2787
2883
|
id: string;
|
|
2788
2884
|
/** Fund advisor name */
|
|
2789
2885
|
name: string | undefined;
|
|
2790
2886
|
/** Fund advisor legal name */
|
|
2791
2887
|
legalName: string | undefined;
|
|
2888
|
+
/** Name of the fund manager's advisor. */
|
|
2889
|
+
fundAdvisorName?: string | undefined;
|
|
2792
2890
|
/** Link to representative logo for fund advisor */
|
|
2793
2891
|
logoUrl: string | undefined;
|
|
2794
2892
|
/** Year when fund advisor firm was first established */
|
|
@@ -2804,7 +2902,7 @@ export declare class FundAdvisor implements IFundAdvisor {
|
|
|
2804
2902
|
/** City where fund advisor was established */
|
|
2805
2903
|
city?: string | undefined;
|
|
2806
2904
|
/** Registration or exemption */
|
|
2807
|
-
registration?:
|
|
2905
|
+
registration?: FundManagerRegistration | undefined;
|
|
2808
2906
|
/** CRD number if fund advisor firm is registered */
|
|
2809
2907
|
crdNumber?: string | undefined;
|
|
2810
2908
|
/** Link to fund advisor's website */
|
|
@@ -2817,19 +2915,21 @@ export declare class FundAdvisor implements IFundAdvisor {
|
|
|
2817
2915
|
email?: string | undefined;
|
|
2818
2916
|
/** Main office phone number of fund advisor */
|
|
2819
2917
|
phone?: string | undefined;
|
|
2820
|
-
constructor(data?:
|
|
2918
|
+
constructor(data?: IFundManager);
|
|
2821
2919
|
init(_data?: any): void;
|
|
2822
|
-
static fromJS(data: any):
|
|
2920
|
+
static fromJS(data: any): FundManager;
|
|
2823
2921
|
toJSON(data?: any): any;
|
|
2824
2922
|
}
|
|
2825
|
-
/**
|
|
2826
|
-
export interface
|
|
2923
|
+
/** FundManager represents the advisor responsible for managing the Registered Fund */
|
|
2924
|
+
export interface IFundManager {
|
|
2827
2925
|
/** Unique ID for fund advisor */
|
|
2828
2926
|
id: string;
|
|
2829
2927
|
/** Fund advisor name */
|
|
2830
2928
|
name: string | undefined;
|
|
2831
2929
|
/** Fund advisor legal name */
|
|
2832
2930
|
legalName: string | undefined;
|
|
2931
|
+
/** Name of the fund manager's advisor. */
|
|
2932
|
+
fundAdvisorName?: string | undefined;
|
|
2833
2933
|
/** Link to representative logo for fund advisor */
|
|
2834
2934
|
logoUrl: string | undefined;
|
|
2835
2935
|
/** Year when fund advisor firm was first established */
|
|
@@ -2845,7 +2945,7 @@ export interface IFundAdvisor {
|
|
|
2845
2945
|
/** City where fund advisor was established */
|
|
2846
2946
|
city?: string | undefined;
|
|
2847
2947
|
/** Registration or exemption */
|
|
2848
|
-
registration?:
|
|
2948
|
+
registration?: FundManagerRegistration | undefined;
|
|
2849
2949
|
/** CRD number if fund advisor firm is registered */
|
|
2850
2950
|
crdNumber?: string | undefined;
|
|
2851
2951
|
/** Link to fund advisor's website */
|
|
@@ -2933,6 +3033,80 @@ export interface IIndicationOfInterestApiResponse {
|
|
|
2933
3033
|
items?: IndicationOfInterest[] | undefined;
|
|
2934
3034
|
pagination?: Pagination | undefined;
|
|
2935
3035
|
}
|
|
3036
|
+
/** IndicationOfInterestV2 represents the v2 generic IOI model supporting multiple asset types. */
|
|
3037
|
+
export declare class IndicationOfInterestV2 implements IIndicationOfInterestV2 {
|
|
3038
|
+
/** Unique ID associated with an IOI. */
|
|
3039
|
+
id?: string;
|
|
3040
|
+
/** Represents the unique ID, provided by Monark, associated with the Investor submitting an IOI, investing in an SPV, or taking any action in the secondary market. */
|
|
3041
|
+
investorId?: string;
|
|
3042
|
+
/** The unique ID of the target asset (company, fund, etc.) that the IoI request is for. */
|
|
3043
|
+
targetId?: string;
|
|
3044
|
+
/** The asset type of the target being invested in (PreIPOCompany, PrivateCompany, etc.) */
|
|
3045
|
+
targetAssetType?: IndicationOfInterestV2TargetAssetType;
|
|
3046
|
+
/** Optional number of clients represented in this IOI (for aggregated IOIs) */
|
|
3047
|
+
numberOfClients?: number | undefined;
|
|
3048
|
+
/** Notional amount of an IOI. */
|
|
3049
|
+
notionalAmount: number;
|
|
3050
|
+
/** Currency in which the IOI was submitted. Monark only accepts IOIs submitted in USD. */
|
|
3051
|
+
currency: string | undefined;
|
|
3052
|
+
/** Created at the specified date. */
|
|
3053
|
+
createdAt?: Date;
|
|
3054
|
+
/** Updated at the specified date. */
|
|
3055
|
+
updatedAt?: Date | undefined;
|
|
3056
|
+
/** Name of the Partner associated with an IOI. */
|
|
3057
|
+
partnerName?: string | undefined;
|
|
3058
|
+
/** The first name of the Investor. */
|
|
3059
|
+
investorFirstName?: string | undefined;
|
|
3060
|
+
/** The last name of the Investor. */
|
|
3061
|
+
investorLastName?: string | undefined;
|
|
3062
|
+
/** The name of the target asset (for display purposes). */
|
|
3063
|
+
targetName?: string | undefined;
|
|
3064
|
+
constructor(data?: IIndicationOfInterestV2);
|
|
3065
|
+
init(_data?: any): void;
|
|
3066
|
+
static fromJS(data: any): IndicationOfInterestV2;
|
|
3067
|
+
toJSON(data?: any): any;
|
|
3068
|
+
}
|
|
3069
|
+
/** IndicationOfInterestV2 represents the v2 generic IOI model supporting multiple asset types. */
|
|
3070
|
+
export interface IIndicationOfInterestV2 {
|
|
3071
|
+
/** Unique ID associated with an IOI. */
|
|
3072
|
+
id?: string;
|
|
3073
|
+
/** Represents the unique ID, provided by Monark, associated with the Investor submitting an IOI, investing in an SPV, or taking any action in the secondary market. */
|
|
3074
|
+
investorId?: string;
|
|
3075
|
+
/** The unique ID of the target asset (company, fund, etc.) that the IoI request is for. */
|
|
3076
|
+
targetId?: string;
|
|
3077
|
+
/** The asset type of the target being invested in (PreIPOCompany, PrivateCompany, etc.) */
|
|
3078
|
+
targetAssetType?: IndicationOfInterestV2TargetAssetType;
|
|
3079
|
+
/** Optional number of clients represented in this IOI (for aggregated IOIs) */
|
|
3080
|
+
numberOfClients?: number | undefined;
|
|
3081
|
+
/** Notional amount of an IOI. */
|
|
3082
|
+
notionalAmount: number;
|
|
3083
|
+
/** Currency in which the IOI was submitted. Monark only accepts IOIs submitted in USD. */
|
|
3084
|
+
currency: string | undefined;
|
|
3085
|
+
/** Created at the specified date. */
|
|
3086
|
+
createdAt?: Date;
|
|
3087
|
+
/** Updated at the specified date. */
|
|
3088
|
+
updatedAt?: Date | undefined;
|
|
3089
|
+
/** Name of the Partner associated with an IOI. */
|
|
3090
|
+
partnerName?: string | undefined;
|
|
3091
|
+
/** The first name of the Investor. */
|
|
3092
|
+
investorFirstName?: string | undefined;
|
|
3093
|
+
/** The last name of the Investor. */
|
|
3094
|
+
investorLastName?: string | undefined;
|
|
3095
|
+
/** The name of the target asset (for display purposes). */
|
|
3096
|
+
targetName?: string | undefined;
|
|
3097
|
+
}
|
|
3098
|
+
export declare class IndicationOfInterestV2ApiResponse implements IIndicationOfInterestV2ApiResponse {
|
|
3099
|
+
items?: IndicationOfInterestV2[] | undefined;
|
|
3100
|
+
pagination?: Pagination | undefined;
|
|
3101
|
+
constructor(data?: IIndicationOfInterestV2ApiResponse);
|
|
3102
|
+
init(_data?: any): void;
|
|
3103
|
+
static fromJS(data: any): IndicationOfInterestV2ApiResponse;
|
|
3104
|
+
toJSON(data?: any): any;
|
|
3105
|
+
}
|
|
3106
|
+
export interface IIndicationOfInterestV2ApiResponse {
|
|
3107
|
+
items?: IndicationOfInterestV2[] | undefined;
|
|
3108
|
+
pagination?: Pagination | undefined;
|
|
3109
|
+
}
|
|
2936
3110
|
export declare class IndividualEntityInvestor implements IIndividualEntityInvestor {
|
|
2937
3111
|
/** First name of the Investor. */
|
|
2938
3112
|
firstName: string | undefined;
|
|
@@ -6194,15 +6368,17 @@ export declare class RegisteredFund implements IRegisteredFund {
|
|
|
6194
6368
|
/** Unique identification number for Registered Fund */
|
|
6195
6369
|
id: string;
|
|
6196
6370
|
/** ID of underlying fund advisor */
|
|
6197
|
-
|
|
6371
|
+
fundManagerId?: string | undefined;
|
|
6198
6372
|
/** ID of the Partner associated with a registered fund. */
|
|
6199
6373
|
partnerId?: string | undefined;
|
|
6200
6374
|
/** Official name of Registered Fund */
|
|
6201
6375
|
name: string | undefined;
|
|
6376
|
+
/** Central Index Key assigned by the SEC. */
|
|
6377
|
+
cik?: number | undefined;
|
|
6202
6378
|
/** Fund's website */
|
|
6203
6379
|
website?: string | undefined;
|
|
6204
6380
|
/** Symbol assigned to this registered fund */
|
|
6205
|
-
symbol
|
|
6381
|
+
symbol?: string | undefined;
|
|
6206
6382
|
/** Link to logo for Registered Fund */
|
|
6207
6383
|
logoUrl?: string | undefined;
|
|
6208
6384
|
/** Current reported AUM of Registered Fund */
|
|
@@ -6210,7 +6386,7 @@ export declare class RegisteredFund implements IRegisteredFund {
|
|
|
6210
6386
|
/** Base currency of the fund */
|
|
6211
6387
|
currency?: string | undefined;
|
|
6212
6388
|
/** General asset class the Registered Fund is targeting */
|
|
6213
|
-
assetClass
|
|
6389
|
+
assetClass: string | undefined;
|
|
6214
6390
|
/** First year the fund began fundraising efforts */
|
|
6215
6391
|
vintage?: number;
|
|
6216
6392
|
/** The number of assets held by this fund */
|
|
@@ -6218,9 +6394,7 @@ export declare class RegisteredFund implements IRegisteredFund {
|
|
|
6218
6394
|
/** Brief description of fund */
|
|
6219
6395
|
description: string | undefined;
|
|
6220
6396
|
/** Structure of the fund */
|
|
6221
|
-
structure
|
|
6222
|
-
/** Indicates the exemption used to distribute securities in the Registered Fund */
|
|
6223
|
-
act33Exemption?: string | undefined;
|
|
6397
|
+
structure: string | undefined;
|
|
6224
6398
|
/** Subscription cadence of the fund */
|
|
6225
6399
|
subscriptionCadence?: RegisteredFundSubscriptionCadence | undefined;
|
|
6226
6400
|
/** Describes the subscription process of the fund */
|
|
@@ -6235,8 +6409,8 @@ export declare class RegisteredFund implements IRegisteredFund {
|
|
|
6235
6409
|
distributionCadence?: RegisteredFundDistributionCadence;
|
|
6236
6410
|
/** Describes the fund's process for distributions */
|
|
6237
6411
|
distributionProcess?: string | undefined;
|
|
6238
|
-
/** Does this registered fund accept non
|
|
6239
|
-
|
|
6412
|
+
/** Does this registered fund accept all investors (including non-accredited)? */
|
|
6413
|
+
allInvestors?: boolean;
|
|
6240
6414
|
/** Does this registered fund require accreditation status? */
|
|
6241
6415
|
accreditedInvestor?: boolean;
|
|
6242
6416
|
/** Does this registered fund require investors to be qualified clients? */
|
|
@@ -6245,14 +6419,20 @@ export declare class RegisteredFund implements IRegisteredFund {
|
|
|
6245
6419
|
qualifiedPurchaserInvestor?: boolean;
|
|
6246
6420
|
/** Does this registered fund allow for non-US based investors? */
|
|
6247
6421
|
nonUSInvestor?: boolean;
|
|
6422
|
+
/** Optional tax reporting designation. */
|
|
6423
|
+
taxReporting?: string | undefined;
|
|
6424
|
+
/** Optional tax form designation. */
|
|
6425
|
+
taxForm?: string | undefined;
|
|
6248
6426
|
/** The fund advisor for this registered fund. */
|
|
6249
|
-
|
|
6427
|
+
fundManager?: FundManager | undefined;
|
|
6250
6428
|
/** Associated share classes for the fund. */
|
|
6251
6429
|
shareClasses?: ShareClass[] | undefined;
|
|
6252
6430
|
/** Collection of Fee Structures directly associated with this Registered Fund. */
|
|
6253
6431
|
feeStructures?: FeeStructure[] | undefined;
|
|
6254
6432
|
/** Documents associated with the Registered Fund. */
|
|
6255
6433
|
documents?: Document[] | undefined;
|
|
6434
|
+
/** Third party data for the Registered Fund. */
|
|
6435
|
+
thirdPartyData?: RegisteredFundThirdPartyData | undefined;
|
|
6256
6436
|
constructor(data?: IRegisteredFund);
|
|
6257
6437
|
init(_data?: any): void;
|
|
6258
6438
|
static fromJS(data: any): RegisteredFund;
|
|
@@ -6263,15 +6443,17 @@ export interface IRegisteredFund {
|
|
|
6263
6443
|
/** Unique identification number for Registered Fund */
|
|
6264
6444
|
id: string;
|
|
6265
6445
|
/** ID of underlying fund advisor */
|
|
6266
|
-
|
|
6446
|
+
fundManagerId?: string | undefined;
|
|
6267
6447
|
/** ID of the Partner associated with a registered fund. */
|
|
6268
6448
|
partnerId?: string | undefined;
|
|
6269
6449
|
/** Official name of Registered Fund */
|
|
6270
6450
|
name: string | undefined;
|
|
6451
|
+
/** Central Index Key assigned by the SEC. */
|
|
6452
|
+
cik?: number | undefined;
|
|
6271
6453
|
/** Fund's website */
|
|
6272
6454
|
website?: string | undefined;
|
|
6273
6455
|
/** Symbol assigned to this registered fund */
|
|
6274
|
-
symbol
|
|
6456
|
+
symbol?: string | undefined;
|
|
6275
6457
|
/** Link to logo for Registered Fund */
|
|
6276
6458
|
logoUrl?: string | undefined;
|
|
6277
6459
|
/** Current reported AUM of Registered Fund */
|
|
@@ -6279,7 +6461,7 @@ export interface IRegisteredFund {
|
|
|
6279
6461
|
/** Base currency of the fund */
|
|
6280
6462
|
currency?: string | undefined;
|
|
6281
6463
|
/** General asset class the Registered Fund is targeting */
|
|
6282
|
-
assetClass
|
|
6464
|
+
assetClass: string | undefined;
|
|
6283
6465
|
/** First year the fund began fundraising efforts */
|
|
6284
6466
|
vintage?: number;
|
|
6285
6467
|
/** The number of assets held by this fund */
|
|
@@ -6287,9 +6469,7 @@ export interface IRegisteredFund {
|
|
|
6287
6469
|
/** Brief description of fund */
|
|
6288
6470
|
description: string | undefined;
|
|
6289
6471
|
/** Structure of the fund */
|
|
6290
|
-
structure
|
|
6291
|
-
/** Indicates the exemption used to distribute securities in the Registered Fund */
|
|
6292
|
-
act33Exemption?: string | undefined;
|
|
6472
|
+
structure: string | undefined;
|
|
6293
6473
|
/** Subscription cadence of the fund */
|
|
6294
6474
|
subscriptionCadence?: RegisteredFundSubscriptionCadence | undefined;
|
|
6295
6475
|
/** Describes the subscription process of the fund */
|
|
@@ -6304,8 +6484,8 @@ export interface IRegisteredFund {
|
|
|
6304
6484
|
distributionCadence?: RegisteredFundDistributionCadence;
|
|
6305
6485
|
/** Describes the fund's process for distributions */
|
|
6306
6486
|
distributionProcess?: string | undefined;
|
|
6307
|
-
/** Does this registered fund accept non
|
|
6308
|
-
|
|
6487
|
+
/** Does this registered fund accept all investors (including non-accredited)? */
|
|
6488
|
+
allInvestors?: boolean;
|
|
6309
6489
|
/** Does this registered fund require accreditation status? */
|
|
6310
6490
|
accreditedInvestor?: boolean;
|
|
6311
6491
|
/** Does this registered fund require investors to be qualified clients? */
|
|
@@ -6314,14 +6494,20 @@ export interface IRegisteredFund {
|
|
|
6314
6494
|
qualifiedPurchaserInvestor?: boolean;
|
|
6315
6495
|
/** Does this registered fund allow for non-US based investors? */
|
|
6316
6496
|
nonUSInvestor?: boolean;
|
|
6497
|
+
/** Optional tax reporting designation. */
|
|
6498
|
+
taxReporting?: string | undefined;
|
|
6499
|
+
/** Optional tax form designation. */
|
|
6500
|
+
taxForm?: string | undefined;
|
|
6317
6501
|
/** The fund advisor for this registered fund. */
|
|
6318
|
-
|
|
6502
|
+
fundManager?: FundManager | undefined;
|
|
6319
6503
|
/** Associated share classes for the fund. */
|
|
6320
6504
|
shareClasses?: ShareClass[] | undefined;
|
|
6321
6505
|
/** Collection of Fee Structures directly associated with this Registered Fund. */
|
|
6322
6506
|
feeStructures?: FeeStructure[] | undefined;
|
|
6323
6507
|
/** Documents associated with the Registered Fund. */
|
|
6324
6508
|
documents?: Document[] | undefined;
|
|
6509
|
+
/** Third party data for the Registered Fund. */
|
|
6510
|
+
thirdPartyData?: RegisteredFundThirdPartyData | undefined;
|
|
6325
6511
|
}
|
|
6326
6512
|
export declare class RegisteredFundApiResponse implements IRegisteredFundApiResponse {
|
|
6327
6513
|
items?: RegisteredFund[] | undefined;
|
|
@@ -6335,6 +6521,20 @@ export interface IRegisteredFundApiResponse {
|
|
|
6335
6521
|
items?: RegisteredFund[] | undefined;
|
|
6336
6522
|
pagination?: Pagination | undefined;
|
|
6337
6523
|
}
|
|
6524
|
+
/** Represents third party data for a registered fund. */
|
|
6525
|
+
export declare class RegisteredFundThirdPartyData implements IRegisteredFundThirdPartyData {
|
|
6526
|
+
/** Represents an evergreen fund. */
|
|
6527
|
+
secondaryLinkFund?: EvergreenFund | undefined;
|
|
6528
|
+
constructor(data?: IRegisteredFundThirdPartyData);
|
|
6529
|
+
init(_data?: any): void;
|
|
6530
|
+
static fromJS(data: any): RegisteredFundThirdPartyData;
|
|
6531
|
+
toJSON(data?: any): any;
|
|
6532
|
+
}
|
|
6533
|
+
/** Represents third party data for a registered fund. */
|
|
6534
|
+
export interface IRegisteredFundThirdPartyData {
|
|
6535
|
+
/** Represents an evergreen fund. */
|
|
6536
|
+
secondaryLinkFund?: EvergreenFund | undefined;
|
|
6537
|
+
}
|
|
6338
6538
|
export declare class RuntimeFieldHandle implements IRuntimeFieldHandle {
|
|
6339
6539
|
readonly value?: IntPtr;
|
|
6340
6540
|
constructor(data?: IRuntimeFieldHandle);
|
|
@@ -7263,6 +7463,32 @@ export interface IUpdateIndicationOfInterest {
|
|
|
7263
7463
|
/** Currency in which the IOI was submitted. Monark only accepts IOIs submitted in USD. */
|
|
7264
7464
|
currency: string;
|
|
7265
7465
|
}
|
|
7466
|
+
/** UpdateIndicationOfInterestV2 represents the v2 request to update a generic IOI supporting multiple asset types. */
|
|
7467
|
+
export declare class UpdateIndicationOfInterestV2 implements IUpdateIndicationOfInterestV2 {
|
|
7468
|
+
/** Unique ID associated with an IOI. */
|
|
7469
|
+
id?: string;
|
|
7470
|
+
/** Optional number of clients represented in this IOI (for aggregated IOIs) */
|
|
7471
|
+
numberOfClients?: number | undefined;
|
|
7472
|
+
/** Notional amount of an IOI. */
|
|
7473
|
+
notionalAmount: number;
|
|
7474
|
+
/** Currency in which the IOI was submitted. Monark only accepts IOIs submitted in USD. */
|
|
7475
|
+
currency: string | undefined;
|
|
7476
|
+
constructor(data?: IUpdateIndicationOfInterestV2);
|
|
7477
|
+
init(_data?: any): void;
|
|
7478
|
+
static fromJS(data: any): UpdateIndicationOfInterestV2;
|
|
7479
|
+
toJSON(data?: any): any;
|
|
7480
|
+
}
|
|
7481
|
+
/** UpdateIndicationOfInterestV2 represents the v2 request to update a generic IOI supporting multiple asset types. */
|
|
7482
|
+
export interface IUpdateIndicationOfInterestV2 {
|
|
7483
|
+
/** Unique ID associated with an IOI. */
|
|
7484
|
+
id?: string;
|
|
7485
|
+
/** Optional number of clients represented in this IOI (for aggregated IOIs) */
|
|
7486
|
+
numberOfClients?: number | undefined;
|
|
7487
|
+
/** Notional amount of an IOI. */
|
|
7488
|
+
notionalAmount: number;
|
|
7489
|
+
/** Currency in which the IOI was submitted. Monark only accepts IOIs submitted in USD. */
|
|
7490
|
+
currency: string | undefined;
|
|
7491
|
+
}
|
|
7266
7492
|
export declare class UpdateIndividualEntityInvestor implements IUpdateIndividualEntityInvestor {
|
|
7267
7493
|
/** First name of the Investor. */
|
|
7268
7494
|
firstName: string;
|
|
@@ -7810,18 +8036,25 @@ export declare enum SortOrder3 {
|
|
|
7810
8036
|
export declare enum SortProperty {
|
|
7811
8037
|
UpdatedAt = "UpdatedAt",
|
|
7812
8038
|
CreatedAt = "CreatedAt",
|
|
7813
|
-
PreIpoValuation = "PreIpoValuation",
|
|
7814
|
-
PreIpoTotalFunding = "PreIpoTotalFunding",
|
|
7815
8039
|
NotionalAmount = "NotionalAmount"
|
|
7816
8040
|
}
|
|
7817
8041
|
export declare enum SortOrder4 {
|
|
7818
8042
|
Ascending = "Ascending",
|
|
7819
8043
|
Descending = "Descending"
|
|
7820
8044
|
}
|
|
8045
|
+
export declare enum SortProperty2 {
|
|
8046
|
+
UpdatedAt = "UpdatedAt",
|
|
8047
|
+
CreatedAt = "CreatedAt",
|
|
8048
|
+
NotionalAmount = "NotionalAmount"
|
|
8049
|
+
}
|
|
7821
8050
|
export declare enum SortOrder5 {
|
|
7822
8051
|
Ascending = "Ascending",
|
|
7823
8052
|
Descending = "Descending"
|
|
7824
8053
|
}
|
|
8054
|
+
export declare enum SortOrder6 {
|
|
8055
|
+
Ascending = "Ascending",
|
|
8056
|
+
Descending = "Descending"
|
|
8057
|
+
}
|
|
7825
8058
|
export declare enum InvestorStatus {
|
|
7826
8059
|
Pending = "Pending",
|
|
7827
8060
|
Limited = "Limited",
|
|
@@ -7835,7 +8068,7 @@ export declare enum Status {
|
|
|
7835
8068
|
Rejected = "Rejected",
|
|
7836
8069
|
Failed = "Failed"
|
|
7837
8070
|
}
|
|
7838
|
-
export declare enum
|
|
8071
|
+
export declare enum SortOrder7 {
|
|
7839
8072
|
Ascending = "Ascending",
|
|
7840
8073
|
Descending = "Descending"
|
|
7841
8074
|
}
|
|
@@ -7845,7 +8078,7 @@ export declare enum SortBy {
|
|
|
7845
8078
|
LastValuation = "LastValuation",
|
|
7846
8079
|
TotalFunding = "TotalFunding"
|
|
7847
8080
|
}
|
|
7848
|
-
export declare enum
|
|
8081
|
+
export declare enum SortOrder8 {
|
|
7849
8082
|
Ascending = "Ascending",
|
|
7850
8083
|
Descending = "Descending"
|
|
7851
8084
|
}
|
|
@@ -7861,10 +8094,6 @@ export declare enum Includes {
|
|
|
7861
8094
|
Investments = "Investments",
|
|
7862
8095
|
Spvs = "Spvs"
|
|
7863
8096
|
}
|
|
7864
|
-
export declare enum SortOrder8 {
|
|
7865
|
-
Ascending = "Ascending",
|
|
7866
|
-
Descending = "Descending"
|
|
7867
|
-
}
|
|
7868
8097
|
export declare enum SortOrder9 {
|
|
7869
8098
|
Ascending = "Ascending",
|
|
7870
8099
|
Descending = "Descending"
|
|
@@ -7877,6 +8106,10 @@ export declare enum SortOrder11 {
|
|
|
7877
8106
|
Ascending = "Ascending",
|
|
7878
8107
|
Descending = "Descending"
|
|
7879
8108
|
}
|
|
8109
|
+
export declare enum SortOrder12 {
|
|
8110
|
+
Ascending = "Ascending",
|
|
8111
|
+
Descending = "Descending"
|
|
8112
|
+
}
|
|
7880
8113
|
export declare enum ResearchType {
|
|
7881
8114
|
INTERVIEW = "INTERVIEW",
|
|
7882
8115
|
MARKET = "MARKET",
|
|
@@ -7927,7 +8160,7 @@ export declare enum ExemptionsClaimed {
|
|
|
7927
8160
|
SECURITIES_ACT_SECTION_3_c_14 = "SECURITIES_ACT_SECTION_3_c_14",
|
|
7928
8161
|
Reg_S = "Reg_S"
|
|
7929
8162
|
}
|
|
7930
|
-
export declare enum
|
|
8163
|
+
export declare enum SortOrder13 {
|
|
7931
8164
|
Ascending = "Ascending",
|
|
7932
8165
|
Descending = "Descending"
|
|
7933
8166
|
}
|
|
@@ -7941,10 +8174,6 @@ export declare enum SortBy2 {
|
|
|
7941
8174
|
Valuation = "Valuation",
|
|
7942
8175
|
MinCommitmentAmount = "MinCommitmentAmount"
|
|
7943
8176
|
}
|
|
7944
|
-
export declare enum SortOrder13 {
|
|
7945
|
-
Ascending = "Ascending",
|
|
7946
|
-
Descending = "Descending"
|
|
7947
|
-
}
|
|
7948
8177
|
export declare enum SortOrder14 {
|
|
7949
8178
|
Ascending = "Ascending",
|
|
7950
8179
|
Descending = "Descending"
|
|
@@ -7973,23 +8202,30 @@ export declare enum SortOrder20 {
|
|
|
7973
8202
|
Ascending = "Ascending",
|
|
7974
8203
|
Descending = "Descending"
|
|
7975
8204
|
}
|
|
8205
|
+
export declare enum SortOrder21 {
|
|
8206
|
+
Ascending = "Ascending",
|
|
8207
|
+
Descending = "Descending"
|
|
8208
|
+
}
|
|
7976
8209
|
export declare enum TargetAssetType {
|
|
7977
8210
|
PreIPOCompanySPV = "PreIPOCompanySPV",
|
|
7978
|
-
RegisteredFund = "RegisteredFund"
|
|
8211
|
+
RegisteredFund = "RegisteredFund",
|
|
8212
|
+
PreIPOCompany = "PreIPOCompany"
|
|
7979
8213
|
}
|
|
7980
8214
|
export declare enum TargetAssetType2 {
|
|
7981
8215
|
PreIPOCompanySPV = "PreIPOCompanySPV",
|
|
7982
|
-
RegisteredFund = "RegisteredFund"
|
|
8216
|
+
RegisteredFund = "RegisteredFund",
|
|
8217
|
+
PreIPOCompany = "PreIPOCompany"
|
|
7983
8218
|
}
|
|
7984
8219
|
export declare enum TargetAssetType3 {
|
|
7985
8220
|
PreIPOCompanySPV = "PreIPOCompanySPV",
|
|
7986
|
-
RegisteredFund = "RegisteredFund"
|
|
8221
|
+
RegisteredFund = "RegisteredFund",
|
|
8222
|
+
PreIPOCompany = "PreIPOCompany"
|
|
7987
8223
|
}
|
|
7988
|
-
export declare enum
|
|
8224
|
+
export declare enum SortOrder22 {
|
|
7989
8225
|
Ascending = "Ascending",
|
|
7990
8226
|
Descending = "Descending"
|
|
7991
8227
|
}
|
|
7992
|
-
export declare enum
|
|
8228
|
+
export declare enum SortOrder23 {
|
|
7993
8229
|
Ascending = "Ascending",
|
|
7994
8230
|
Descending = "Descending"
|
|
7995
8231
|
}
|
|
@@ -8111,6 +8347,7 @@ export declare enum ConstructorInfoMethodImplementationFlags {
|
|
|
8111
8347
|
AggressiveInlining = "AggressiveInlining",
|
|
8112
8348
|
AggressiveOptimization = "AggressiveOptimization",
|
|
8113
8349
|
InternalCall = "InternalCall",
|
|
8350
|
+
Async = "Async",
|
|
8114
8351
|
MaxMethodImplVal = "MaxMethodImplVal"
|
|
8115
8352
|
}
|
|
8116
8353
|
export declare enum ConstructorInfoCallingConvention {
|
|
@@ -8131,6 +8368,11 @@ export declare enum ConstructorInfoMemberType {
|
|
|
8131
8368
|
NestedType = "NestedType",
|
|
8132
8369
|
All = "All"
|
|
8133
8370
|
}
|
|
8371
|
+
export declare enum CreateIndicationOfInterestV2TargetAssetType {
|
|
8372
|
+
PreIPOCompanySPV = "PreIPOCompanySPV",
|
|
8373
|
+
RegisteredFund = "RegisteredFund",
|
|
8374
|
+
PreIPOCompany = "PreIPOCompany"
|
|
8375
|
+
}
|
|
8134
8376
|
export declare enum CreateInvestorType {
|
|
8135
8377
|
IndividualInvestor = "IndividualInvestor",
|
|
8136
8378
|
EntityInvestor = "EntityInvestor"
|
|
@@ -8153,7 +8395,8 @@ export declare enum CreateQuestionnaireQuestionFormat {
|
|
|
8153
8395
|
}
|
|
8154
8396
|
export declare enum CreateTransactionTargetAssetType {
|
|
8155
8397
|
PreIPOCompanySPV = "PreIPOCompanySPV",
|
|
8156
|
-
RegisteredFund = "RegisteredFund"
|
|
8398
|
+
RegisteredFund = "RegisteredFund",
|
|
8399
|
+
PreIPOCompany = "PreIPOCompany"
|
|
8157
8400
|
}
|
|
8158
8401
|
export declare enum CreateTransactionSide {
|
|
8159
8402
|
Subscription = "Subscription",
|
|
@@ -8312,9 +8555,14 @@ export declare enum FinancialInstitutionKycRequired {
|
|
|
8312
8555
|
Auto = "Auto",
|
|
8313
8556
|
Bypass = "Bypass"
|
|
8314
8557
|
}
|
|
8315
|
-
export declare enum
|
|
8558
|
+
export declare enum FundManagerRegistration {
|
|
8316
8559
|
RIA = "RIA"
|
|
8317
8560
|
}
|
|
8561
|
+
export declare enum IndicationOfInterestV2TargetAssetType {
|
|
8562
|
+
PreIPOCompanySPV = "PreIPOCompanySPV",
|
|
8563
|
+
RegisteredFund = "RegisteredFund",
|
|
8564
|
+
PreIPOCompany = "PreIPOCompany"
|
|
8565
|
+
}
|
|
8318
8566
|
export declare enum IndividualEntityInvestorQualifiedStatus {
|
|
8319
8567
|
QUALIFIED_PURCHASER = "QUALIFIED_PURCHASER",
|
|
8320
8568
|
QUALIFIED_CLIENT = "QUALIFIED_CLIENT",
|
|
@@ -8461,6 +8709,7 @@ export declare enum MethodBaseMethodImplementationFlags {
|
|
|
8461
8709
|
AggressiveInlining = "AggressiveInlining",
|
|
8462
8710
|
AggressiveOptimization = "AggressiveOptimization",
|
|
8463
8711
|
InternalCall = "InternalCall",
|
|
8712
|
+
Async = "Async",
|
|
8464
8713
|
MaxMethodImplVal = "MaxMethodImplVal"
|
|
8465
8714
|
}
|
|
8466
8715
|
export declare enum MethodBaseCallingConvention {
|
|
@@ -8508,6 +8757,7 @@ export declare enum MethodInfoMethodImplementationFlags {
|
|
|
8508
8757
|
AggressiveInlining = "AggressiveInlining",
|
|
8509
8758
|
AggressiveOptimization = "AggressiveOptimization",
|
|
8510
8759
|
InternalCall = "InternalCall",
|
|
8760
|
+
Async = "Async",
|
|
8511
8761
|
MaxMethodImplVal = "MaxMethodImplVal"
|
|
8512
8762
|
}
|
|
8513
8763
|
export declare enum MethodInfoCallingConvention {
|
|
@@ -8763,16 +9013,6 @@ export declare enum QuestionnaireQuestionAnswerQuestionFormat {
|
|
|
8763
9013
|
Email = "Email",
|
|
8764
9014
|
Scale = "Scale"
|
|
8765
9015
|
}
|
|
8766
|
-
export declare enum RegisteredFundAssetClass {
|
|
8767
|
-
PrivateEquity = "PrivateEquity",
|
|
8768
|
-
PrivateCredit = "PrivateCredit"
|
|
8769
|
-
}
|
|
8770
|
-
export declare enum RegisteredFundStructure {
|
|
8771
|
-
REIT = "REIT",
|
|
8772
|
-
BDC = "BDC",
|
|
8773
|
-
TenderOfferFund = "TenderOfferFund",
|
|
8774
|
-
IntervalFund = "IntervalFund"
|
|
8775
|
-
}
|
|
8776
9016
|
export declare enum RegisteredFundSubscriptionCadence {
|
|
8777
9017
|
Monthly = "Monthly",
|
|
8778
9018
|
Quarterly = "Quarterly",
|
|
@@ -8940,7 +9180,8 @@ export declare enum StructLayoutAttributeValue {
|
|
|
8940
9180
|
}
|
|
8941
9181
|
export declare enum TransactionTargetAssetType {
|
|
8942
9182
|
PreIPOCompanySPV = "PreIPOCompanySPV",
|
|
8943
|
-
RegisteredFund = "RegisteredFund"
|
|
9183
|
+
RegisteredFund = "RegisteredFund",
|
|
9184
|
+
PreIPOCompany = "PreIPOCompany"
|
|
8944
9185
|
}
|
|
8945
9186
|
export declare enum TransactionSide {
|
|
8946
9187
|
Subscription = "Subscription",
|
|
@@ -9147,11 +9388,13 @@ export declare enum UpdateTransactionSide {
|
|
|
9147
9388
|
}
|
|
9148
9389
|
export declare enum UpdateTransactionTargetAssetType {
|
|
9149
9390
|
PreIPOCompanySPV = "PreIPOCompanySPV",
|
|
9150
|
-
RegisteredFund = "RegisteredFund"
|
|
9391
|
+
RegisteredFund = "RegisteredFund",
|
|
9392
|
+
PreIPOCompany = "PreIPOCompany"
|
|
9151
9393
|
}
|
|
9152
9394
|
export declare enum UpdateTransactionReferenceTargetAssetType {
|
|
9153
9395
|
PreIPOCompanySPV = "PreIPOCompanySPV",
|
|
9154
|
-
RegisteredFund = "RegisteredFund"
|
|
9396
|
+
RegisteredFund = "RegisteredFund",
|
|
9397
|
+
PreIPOCompany = "PreIPOCompany"
|
|
9155
9398
|
}
|
|
9156
9399
|
export declare enum WebhookEventDeliveryStatus {
|
|
9157
9400
|
Pending = "Pending",
|