@monarkmarkets/api-client 1.3.14 → 1.3.16
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 +358 -110
- package/dist/Client.js +609 -121
- package/package.json +1 -1
package/dist/Client.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export declare class Client {
|
|
|
16
16
|
* Get a Document by ID.
|
|
17
17
|
* @param id The Document ID for the document to retrieve.
|
|
18
18
|
* @return OK
|
|
19
|
+
* @deprecated
|
|
19
20
|
*/
|
|
20
21
|
getDocumentById(id: string): Promise<Document>;
|
|
21
22
|
protected processGetDocumentById(response: Response): Promise<Document>;
|
|
@@ -36,6 +37,7 @@ export declare class Client {
|
|
|
36
37
|
* @param exactMatch (optional) Only returns the items exactly matching the parameters given.
|
|
37
38
|
* @param sortOrder (optional)
|
|
38
39
|
* @return OK
|
|
40
|
+
* @deprecated
|
|
39
41
|
*/
|
|
40
42
|
getAllDocuments(investorId: string | undefined, preIPOCompanyId: string | undefined, preIPOCompanySPVId: string | undefined, preIPOCompanyInvestmentId: string | undefined, investorSubscriptionId: string | undefined, registeredFundId: string | undefined, registeredFundSubscriptionId: string | undefined, documentType: DocumentType | undefined, page: number | undefined, pageSize: number | undefined, exactMatch: boolean | undefined, sortOrder: SortOrder | undefined): Promise<DocumentApiResponse>;
|
|
41
43
|
protected processGetAllDocuments(response: Response): Promise<DocumentApiResponse>;
|
|
@@ -44,6 +46,7 @@ export declare class Client {
|
|
|
44
46
|
* @param id The Document ID for the document to sign.
|
|
45
47
|
* @param body (optional) Data about the signing.
|
|
46
48
|
* @return No Content
|
|
49
|
+
* @deprecated
|
|
47
50
|
*/
|
|
48
51
|
signDocument(id: string, body: SignDocument | undefined): Promise<void>;
|
|
49
52
|
protected processSignDocument(response: Response): Promise<void>;
|
|
@@ -51,9 +54,51 @@ export declare class Client {
|
|
|
51
54
|
* Downloads a document using document ID and token. The document is accessed anonymously using a secure token.
|
|
52
55
|
* @param id The Document ID for the document to download.
|
|
53
56
|
* @param token The secure token required to access the document.
|
|
57
|
+
* @deprecated
|
|
54
58
|
*/
|
|
55
59
|
downloadDocument(id: string, token: string): Promise<void>;
|
|
56
60
|
protected processDownloadDocument(response: Response): Promise<void>;
|
|
61
|
+
/**
|
|
62
|
+
* Get a Document by ID.
|
|
63
|
+
* @param id The Document ID for the document to retrieve.
|
|
64
|
+
* @return OK
|
|
65
|
+
*/
|
|
66
|
+
getDocumentByIdV2(id: string): Promise<DocumentV2>;
|
|
67
|
+
protected processGetDocumentByIdV2(response: Response): Promise<DocumentV2>;
|
|
68
|
+
/**
|
|
69
|
+
* Get all Documents.
|
|
70
|
+
* @param investorId (optional) Investor ID to filter by.
|
|
71
|
+
* @param preIPOCompanyId (optional) PreIPOCompanyID to filter by.
|
|
72
|
+
* @param preIPOCompanySPVId (optional) TargetId to filter by.
|
|
73
|
+
* @param preIPOCompanyInvestmentId (optional) PreIPOCompanyInvestmentId to filter by.
|
|
74
|
+
* @param transactionId (optional) TransactionId to filter by (InvestorSubscription or RegisteredFundSubscription).
|
|
75
|
+
* @param registeredFundId (optional) RegisteredFundId to filter by.
|
|
76
|
+
* @param documentType (optional) Type of document to filter by.
|
|
77
|
+
* @param page (optional) Number of the page to retrieve.
|
|
78
|
+
Defaults to 1 if not specified.
|
|
79
|
+
* @param pageSize (optional) Size of the page to retrieve.
|
|
80
|
+
Defaults to 25 if not specified.
|
|
81
|
+
* @param exactMatch (optional) Only returns the items exactly matching the parameters given.
|
|
82
|
+
* @param sortOrder (optional) Sort order for results.
|
|
83
|
+
* @return OK
|
|
84
|
+
*/
|
|
85
|
+
getAllDocumentsV2(investorId: string | undefined, preIPOCompanyId: string | undefined, preIPOCompanySPVId: string | undefined, preIPOCompanyInvestmentId: string | undefined, transactionId: string | undefined, registeredFundId: string | undefined, documentType: DocumentType2 | undefined, page: number | undefined, pageSize: number | undefined, exactMatch: boolean | undefined, sortOrder: SortOrder2 | undefined): Promise<DocumentV2ApiResponse>;
|
|
86
|
+
protected processGetAllDocumentsV2(response: Response): Promise<DocumentV2ApiResponse>;
|
|
87
|
+
/**
|
|
88
|
+
* Signs a document by a document ID.
|
|
89
|
+
* @param id The Document ID for the document to sign.
|
|
90
|
+
* @param body (optional) Data about the signing.
|
|
91
|
+
* @return No Content
|
|
92
|
+
*/
|
|
93
|
+
signDocumentV2(id: string, body: SignDocument | undefined): Promise<void>;
|
|
94
|
+
protected processSignDocumentV2(response: Response): Promise<void>;
|
|
95
|
+
/**
|
|
96
|
+
* Downloads a document using document ID and token. The document is accessed anonymously using a secure token.
|
|
97
|
+
* @param id The Document ID for the document to download.
|
|
98
|
+
* @param token The secure token required to access the document.
|
|
99
|
+
*/
|
|
100
|
+
downloadDocumentV2(id: string, token: string): Promise<void>;
|
|
101
|
+
protected processDownloadDocumentV2(response: Response): Promise<void>;
|
|
57
102
|
/**
|
|
58
103
|
* Create a Financial Advisor.
|
|
59
104
|
* @param body (optional) create Financial Advisor information.
|
|
@@ -78,7 +123,7 @@ export declare class Client {
|
|
|
78
123
|
* @param financialInstitutionId (optional) Optional filter by Financial Institution ID.
|
|
79
124
|
* @return Returns the list of Financial Advisors.
|
|
80
125
|
*/
|
|
81
|
-
getAllFinancialAdvisors(page: number | undefined, pageSize: number | undefined, sortOrder:
|
|
126
|
+
getAllFinancialAdvisors(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder3 | undefined, financialInstitutionId: string | undefined): Promise<FinancialAdvisorApiResponse>;
|
|
82
127
|
protected processGetAllFinancialAdvisors(response: Response): Promise<FinancialAdvisorApiResponse>;
|
|
83
128
|
/**
|
|
84
129
|
* Get a Financial Advisor by Id.
|
|
@@ -104,7 +149,7 @@ export declare class Client {
|
|
|
104
149
|
* @param sortOrder (optional)
|
|
105
150
|
* @return OK
|
|
106
151
|
*/
|
|
107
|
-
getAllFinancialInstitutions(page: number | undefined, pageSize: number | undefined, referenceId: string | undefined, sortOrder:
|
|
152
|
+
getAllFinancialInstitutions(page: number | undefined, pageSize: number | undefined, referenceId: string | undefined, sortOrder: SortOrder4 | undefined): Promise<FinancialInstitutionApiResponse>;
|
|
108
153
|
protected processGetAllFinancialInstitutions(response: Response): Promise<FinancialInstitutionApiResponse>;
|
|
109
154
|
/**
|
|
110
155
|
* Update an Financial Institution's Reference ID.
|
|
@@ -142,7 +187,7 @@ export declare class Client {
|
|
|
142
187
|
* @return Returns the list of IndicationOfInterest.
|
|
143
188
|
* @deprecated
|
|
144
189
|
*/
|
|
145
|
-
getAllIndicationOfInterests(searchTerm: string | undefined, investorId: string | undefined, page: number | undefined, pageSize: number | undefined, sortProperty: SortProperty | undefined, sortOrder:
|
|
190
|
+
getAllIndicationOfInterests(searchTerm: string | undefined, investorId: string | undefined, page: number | undefined, pageSize: number | undefined, sortProperty: SortProperty | undefined, sortOrder: SortOrder5 | undefined): Promise<IndicationOfInterestApiResponse>;
|
|
146
191
|
protected processGetAllIndicationOfInterests(response: Response): Promise<IndicationOfInterestApiResponse>;
|
|
147
192
|
/**
|
|
148
193
|
* Delete an Indication of Interest by ID.
|
|
@@ -186,7 +231,7 @@ export declare class Client {
|
|
|
186
231
|
* @param sortOrder (optional) Which direction to sort by.
|
|
187
232
|
* @return Returns the list of IndicationOfInterest.
|
|
188
233
|
*/
|
|
189
|
-
getAllIndicationOfInterestsV2(searchTerm: string | undefined, investorId: string | undefined, page: number | undefined, pageSize: number | undefined, sortProperty: SortProperty2 | undefined, sortOrder:
|
|
234
|
+
getAllIndicationOfInterestsV2(searchTerm: string | undefined, investorId: string | undefined, page: number | undefined, pageSize: number | undefined, sortProperty: SortProperty2 | undefined, sortOrder: SortOrder6 | undefined): Promise<IndicationOfInterestV2ApiResponse>;
|
|
190
235
|
protected processGetAllIndicationOfInterestsV2(response: Response): Promise<IndicationOfInterestV2ApiResponse>;
|
|
191
236
|
/**
|
|
192
237
|
* Get an IndicationOfInterest by Id.
|
|
@@ -227,7 +272,7 @@ export declare class Client {
|
|
|
227
272
|
* @param financialInstitutionId (optional) Optional filter to get by the Financial Institution.
|
|
228
273
|
* @return Returns the paginated list of Investors.
|
|
229
274
|
*/
|
|
230
|
-
getAllInvestors(page: number | undefined, pageSize: number | undefined, sortOrder:
|
|
275
|
+
getAllInvestors(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder7 | undefined, investorStatus: InvestorStatus | undefined, financialInstitutionId: string | undefined): Promise<InvestorApiResponse>;
|
|
231
276
|
protected processGetAllInvestors(response: Response): Promise<InvestorApiResponse>;
|
|
232
277
|
/**
|
|
233
278
|
* Update an Investor’s accreditation status.
|
|
@@ -304,7 +349,7 @@ export declare class Client {
|
|
|
304
349
|
* @return OK
|
|
305
350
|
* @deprecated
|
|
306
351
|
*/
|
|
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:
|
|
352
|
+
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: SortOrder8 | undefined): Promise<InvestorSubscriptionApiResponse>;
|
|
308
353
|
protected processGetAllSubscriptions(response: Response): Promise<InvestorSubscriptionApiResponse>;
|
|
309
354
|
/**
|
|
310
355
|
* Update an InvestorSubscription.
|
|
@@ -665,7 +710,7 @@ export declare class Client {
|
|
|
665
710
|
* @param isActive (optional) Optional active state filter.
|
|
666
711
|
* @return OK
|
|
667
712
|
*/
|
|
668
|
-
getAllPreIPOCompanies(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, searchCategories: string[] | undefined, sortBy: SortBy | undefined, sortOrder:
|
|
713
|
+
getAllPreIPOCompanies(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, searchCategories: string[] | undefined, sortBy: SortBy | undefined, sortOrder: SortOrder9 | undefined, minLastValuation: number | undefined, maxLastValuation: number | undefined, minTotalFunding: number | undefined, maxTotalFunding: number | undefined, listingType: string | undefined, isActive: boolean | undefined): Promise<PreIPOCompanyApiResponse>;
|
|
669
714
|
protected processGetAllPreIPOCompanies(response: Response): Promise<PreIPOCompanyApiResponse>;
|
|
670
715
|
/**
|
|
671
716
|
* Bulk Download all PreIPOCompanies.
|
|
@@ -701,7 +746,7 @@ export declare class Client {
|
|
|
701
746
|
* @param sortOrder (optional)
|
|
702
747
|
* @return OK
|
|
703
748
|
*/
|
|
704
|
-
getAllPreIPOCompanyFundingRounds(page: number | undefined, pageSize: number | undefined, preIPOCompanyId: string | undefined, searchTerm: string | undefined, sortOrder:
|
|
749
|
+
getAllPreIPOCompanyFundingRounds(page: number | undefined, pageSize: number | undefined, preIPOCompanyId: string | undefined, searchTerm: string | undefined, sortOrder: SortOrder10 | undefined): Promise<PreIPOCompanyFundingRoundApiResponse>;
|
|
705
750
|
protected processGetAllPreIPOCompanyFundingRounds(response: Response): Promise<PreIPOCompanyFundingRoundApiResponse>;
|
|
706
751
|
/**
|
|
707
752
|
* Get a PreIPOCompanyInvestment by Id
|
|
@@ -723,7 +768,7 @@ export declare class Client {
|
|
|
723
768
|
* @param sortOrder (optional)
|
|
724
769
|
* @return OK
|
|
725
770
|
*/
|
|
726
|
-
getAllPreIPOCompanyInvestments(investorId: string, nameFilter: string | undefined, page: number | undefined, pageSize: number | undefined, preIpoCompanyId: string | undefined, sortOrder:
|
|
771
|
+
getAllPreIPOCompanyInvestments(investorId: string, nameFilter: string | undefined, page: number | undefined, pageSize: number | undefined, preIpoCompanyId: string | undefined, sortOrder: SortOrder11 | undefined): Promise<PreIPOCompanyInvestmentApiResponse>;
|
|
727
772
|
protected processGetAllPreIPOCompanyInvestments(response: Response): Promise<PreIPOCompanyInvestmentApiResponse>;
|
|
728
773
|
/**
|
|
729
774
|
* Get a PreIPOCompanyNews by Id.
|
|
@@ -743,7 +788,7 @@ export declare class Client {
|
|
|
743
788
|
* @param sortOrder (optional)
|
|
744
789
|
* @return OK
|
|
745
790
|
*/
|
|
746
|
-
getAllPreIPOCompanyNews(searchTerm: string | undefined, page: number | undefined, pageSize: number | undefined, preIPOCompanyId: string | undefined, sortOrder:
|
|
791
|
+
getAllPreIPOCompanyNews(searchTerm: string | undefined, page: number | undefined, pageSize: number | undefined, preIPOCompanyId: string | undefined, sortOrder: SortOrder12 | undefined): Promise<PreIPOCompanyNewsApiResponse>;
|
|
747
792
|
protected processGetAllPreIPOCompanyNews(response: Response): Promise<PreIPOCompanyNewsApiResponse>;
|
|
748
793
|
/**
|
|
749
794
|
* Get a PreIPOCompanyResearch by Id.
|
|
@@ -765,7 +810,7 @@ export declare class Client {
|
|
|
765
810
|
* @param relation (optional)
|
|
766
811
|
* @return OK
|
|
767
812
|
*/
|
|
768
|
-
getPreIPOCompanyResearchAll(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, preIPOCompanyId: string | undefined, sortOrder:
|
|
813
|
+
getPreIPOCompanyResearchAll(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, preIPOCompanyId: string | undefined, sortOrder: SortOrder13 | undefined, researchType: ResearchType | undefined, relation: Relation | undefined): Promise<PreIPOCompanyResearchApiResponse>;
|
|
769
814
|
protected processGetPreIPOCompanyResearchAll(response: Response): Promise<PreIPOCompanyResearchApiResponse>;
|
|
770
815
|
/**
|
|
771
816
|
* Get a PreIPOCompanySPV by Id
|
|
@@ -801,7 +846,7 @@ export declare class Client {
|
|
|
801
846
|
* @param sortBy (optional)
|
|
802
847
|
* @return OK
|
|
803
848
|
*/
|
|
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:
|
|
849
|
+
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: SortOrder14 | undefined, sortBy: SortBy2 | undefined): Promise<PreIPOCompanySPVApiResponse>;
|
|
805
850
|
protected processGetAllPreIPOCompanySPVs(response: Response): Promise<PreIPOCompanySPVApiResponse>;
|
|
806
851
|
/**
|
|
807
852
|
* Gets all Financial Institutions that have access to a specific SPV
|
|
@@ -880,7 +925,7 @@ export declare class Client {
|
|
|
880
925
|
* @param sortOrder (optional) Sort order for results.
|
|
881
926
|
* @return Returns the list of approval records.
|
|
882
927
|
*/
|
|
883
|
-
getAllPartnerSpvApprovals(page: number | undefined, pageSize: number | undefined, sortOrder:
|
|
928
|
+
getAllPartnerSpvApprovals(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder15 | undefined): Promise<PreIPOCompanySPVPartnerApprovalApiResponse>;
|
|
884
929
|
protected processGetAllPartnerSpvApprovals(response: Response): Promise<PreIPOCompanySPVPartnerApprovalApiResponse>;
|
|
885
930
|
/**
|
|
886
931
|
* Create a Questionnaire.
|
|
@@ -905,7 +950,7 @@ export declare class Client {
|
|
|
905
950
|
* @param sortOrder (optional)
|
|
906
951
|
* @return Returns the list of Questionnaires.
|
|
907
952
|
*/
|
|
908
|
-
getAllQuestionnaires(page: number | undefined, pageSize: number | undefined, sortOrder:
|
|
953
|
+
getAllQuestionnaires(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder16 | undefined): Promise<QuestionnaireApiResponse>;
|
|
909
954
|
protected processGetAllQuestionnaires(response: Response): Promise<QuestionnaireApiResponse>;
|
|
910
955
|
/**
|
|
911
956
|
* Delete a Questionnaire.
|
|
@@ -939,7 +984,7 @@ export declare class Client {
|
|
|
939
984
|
* @param sortOrder (optional)
|
|
940
985
|
* @return Returns the list of Questionnaire.
|
|
941
986
|
*/
|
|
942
|
-
getAllQuestionnaireAnswers(investorId: string | undefined, questionnaireId: string | undefined, page: number | undefined, pageSize: number | undefined, sortOrder:
|
|
987
|
+
getAllQuestionnaireAnswers(investorId: string | undefined, questionnaireId: string | undefined, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder17 | undefined): Promise<QuestionnaireAnswerApiResponse>;
|
|
943
988
|
protected processGetAllQuestionnaireAnswers(response: Response): Promise<QuestionnaireAnswerApiResponse>;
|
|
944
989
|
/**
|
|
945
990
|
* Get a QuestionnaireAnswer by Id
|
|
@@ -969,7 +1014,7 @@ export declare class Client {
|
|
|
969
1014
|
* @param assetClass (optional) Optional asset class to filter registered funds by asset class.
|
|
970
1015
|
* @return OK
|
|
971
1016
|
*/
|
|
972
|
-
getAllRegisteredFunds(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder:
|
|
1017
|
+
getAllRegisteredFunds(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder18 | undefined, financialInstitutionId: string | undefined, assetClass: string | undefined): Promise<RegisteredFundApiResponse>;
|
|
973
1018
|
protected processGetAllRegisteredFunds(response: Response): Promise<RegisteredFundApiResponse>;
|
|
974
1019
|
/**
|
|
975
1020
|
* Gets a SecondaryLink Evergreen Fund by ID.
|
|
@@ -994,7 +1039,7 @@ export declare class Client {
|
|
|
994
1039
|
* @param fundType (optional) Optional filter for fund type.
|
|
995
1040
|
* @return Returns the list of EvergreenFund.
|
|
996
1041
|
*/
|
|
997
|
-
getAllSecondaryLinkEvergreenFunds(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder:
|
|
1042
|
+
getAllSecondaryLinkEvergreenFunds(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder19 | undefined, strategyFocus: string | undefined, fundName: string | undefined, manager: string | undefined, fundType: string | undefined): Promise<EvergreenFundApiResponse>;
|
|
998
1043
|
protected processGetAllSecondaryLinkEvergreenFunds(response: Response): Promise<EvergreenFundApiResponse>;
|
|
999
1044
|
/**
|
|
1000
1045
|
* Gets a SecondaryLink Evergreen News record by ID.
|
|
@@ -1017,7 +1062,7 @@ export declare class Client {
|
|
|
1017
1062
|
* @param evergreenFundId (optional) Optional filter for evergreen fund ID.
|
|
1018
1063
|
* @return Returns the list of EvergreenNews.
|
|
1019
1064
|
*/
|
|
1020
|
-
getAllSecondaryLinkEvergreenNews(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder:
|
|
1065
|
+
getAllSecondaryLinkEvergreenNews(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder20 | undefined, fundName: string | undefined, evergreenFundId: string | undefined): Promise<EvergreenNewsApiResponse>;
|
|
1021
1066
|
protected processGetAllSecondaryLinkEvergreenNews(response: Response): Promise<EvergreenNewsApiResponse>;
|
|
1022
1067
|
/**
|
|
1023
1068
|
* Gets a SecondaryLink Evergreen Returns record by ID.
|
|
@@ -1040,7 +1085,7 @@ export declare class Client {
|
|
|
1040
1085
|
* @param evergreenFundId (optional) Optional filter for evergreen fund ID.
|
|
1041
1086
|
* @return Returns the list of EvergreenReturns.
|
|
1042
1087
|
*/
|
|
1043
|
-
getAllSecondaryLinkEvergreenReturns(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder:
|
|
1088
|
+
getAllSecondaryLinkEvergreenReturns(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder21 | undefined, fundName: string | undefined, evergreenFundId: string | undefined): Promise<EvergreenReturnsApiResponse>;
|
|
1044
1089
|
protected processGetAllSecondaryLinkEvergreenReturns(response: Response): Promise<EvergreenReturnsApiResponse>;
|
|
1045
1090
|
/**
|
|
1046
1091
|
* Gets a SecondaryLink Evergreen Share Classes record by ID.
|
|
@@ -1063,7 +1108,7 @@ export declare class Client {
|
|
|
1063
1108
|
* @param evergreenFundId (optional) Optional filter for evergreen fund ID.
|
|
1064
1109
|
* @return Returns the list of EvergreenShareClasses.
|
|
1065
1110
|
*/
|
|
1066
|
-
getAllSecondaryLinkEvergreenShareClasses(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder:
|
|
1111
|
+
getAllSecondaryLinkEvergreenShareClasses(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder22 | undefined, fundName: string | undefined, evergreenFundId: string | undefined): Promise<EvergreenShareClassesApiResponse>;
|
|
1067
1112
|
protected processGetAllSecondaryLinkEvergreenShareClasses(response: Response): Promise<EvergreenShareClassesApiResponse>;
|
|
1068
1113
|
/**
|
|
1069
1114
|
* Create a new order (subscription or redemption).
|
|
@@ -1097,9 +1142,10 @@ export declare class Client {
|
|
|
1097
1142
|
/**
|
|
1098
1143
|
* Get an order by ID.
|
|
1099
1144
|
* @param id The order ID.
|
|
1145
|
+
* @param includeDocuments (optional) Optional flag to include associated documents.
|
|
1100
1146
|
* @return OK
|
|
1101
1147
|
*/
|
|
1102
|
-
getTransactionById(id: string): Promise<Transaction>;
|
|
1148
|
+
getTransactionById(id: string, includeDocuments: boolean | undefined): Promise<Transaction>;
|
|
1103
1149
|
protected processGetTransactionById(response: Response): Promise<Transaction>;
|
|
1104
1150
|
/**
|
|
1105
1151
|
* Get all transactions for a specific investor filtered by target asset type.
|
|
@@ -1173,7 +1219,7 @@ export declare class Client {
|
|
|
1173
1219
|
* @param sortOrder (optional) Order of which to sort the webhooks by. Default is Descending
|
|
1174
1220
|
* @return Returns a list of Webhooks.
|
|
1175
1221
|
*/
|
|
1176
|
-
getAllWebhooks(page: number | undefined, pageSize: number | undefined, sortOrder:
|
|
1222
|
+
getAllWebhooks(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder23 | undefined): Promise<WebhookApiResponse>;
|
|
1177
1223
|
protected processGetAllWebhooks(response: Response): Promise<WebhookApiResponse>;
|
|
1178
1224
|
/**
|
|
1179
1225
|
* Update a Webhook’s Information
|
|
@@ -1210,7 +1256,7 @@ export declare class Client {
|
|
|
1210
1256
|
* @param deliveryStatus (optional) Optional filter by delivery status.
|
|
1211
1257
|
* @return Returns a list of Webhook Events.
|
|
1212
1258
|
*/
|
|
1213
|
-
getAllWebhookEvents(id: string, from: Date, to: Date, page: number | undefined, pageSize: number | undefined, sortOrder:
|
|
1259
|
+
getAllWebhookEvents(id: string, from: Date, to: Date, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder24 | undefined, eventType: EventType | undefined, deliveryStatus: DeliveryStatus | undefined): Promise<WebhookEventApiResponse>;
|
|
1214
1260
|
protected processGetAllWebhookEvents(response: Response): Promise<WebhookEventApiResponse>;
|
|
1215
1261
|
}
|
|
1216
1262
|
/** Represents the version information of the API */
|
|
@@ -1511,7 +1557,7 @@ export declare class BulkPreIPOCompanySPV implements IBulkPreIPOCompanySPV {
|
|
|
1511
1557
|
/** Flag that describes whether the holdback expenses will be passed through to investors */
|
|
1512
1558
|
holdbackEnabled?: boolean;
|
|
1513
1559
|
/** The base documents associated with the SPV (Optional). */
|
|
1514
|
-
documents?:
|
|
1560
|
+
documents?: DocumentV2[] | undefined;
|
|
1515
1561
|
/** SPV account ID. */
|
|
1516
1562
|
spvAccountID?: number | undefined;
|
|
1517
1563
|
/** The name of the parent company. */
|
|
@@ -1601,7 +1647,7 @@ export interface IBulkPreIPOCompanySPV {
|
|
|
1601
1647
|
/** Flag that describes whether the holdback expenses will be passed through to investors */
|
|
1602
1648
|
holdbackEnabled?: boolean;
|
|
1603
1649
|
/** The base documents associated with the SPV (Optional). */
|
|
1604
|
-
documents?:
|
|
1650
|
+
documents?: DocumentV2[] | undefined;
|
|
1605
1651
|
/** SPV account ID. */
|
|
1606
1652
|
spvAccountID?: number | undefined;
|
|
1607
1653
|
/** The name of the parent company. */
|
|
@@ -1751,33 +1797,33 @@ export interface ICookie {
|
|
|
1751
1797
|
}
|
|
1752
1798
|
export declare class CreateFinancialAdvisor implements ICreateFinancialAdvisor {
|
|
1753
1799
|
/** This is the unique identifier of the Institution that the Financial Advisor is attached to. */
|
|
1754
|
-
financialInstitutionId
|
|
1800
|
+
financialInstitutionId: string;
|
|
1755
1801
|
/** CRD Number of the Financial Advisor. */
|
|
1756
|
-
crdNumber
|
|
1802
|
+
crdNumber?: string | undefined;
|
|
1757
1803
|
/** IARD Number of the Financial Advisor. */
|
|
1758
1804
|
iardNumber?: string | undefined;
|
|
1759
1805
|
/** Financial Advisor first name. */
|
|
1760
|
-
firstName: string
|
|
1806
|
+
firstName: string;
|
|
1761
1807
|
/** Financial advisor middle name. */
|
|
1762
1808
|
middleName?: string | undefined;
|
|
1763
1809
|
/** Financial advisor last name. */
|
|
1764
|
-
lastName: string
|
|
1810
|
+
lastName: string;
|
|
1765
1811
|
/** Financial advisor mailing address. */
|
|
1766
|
-
mailingAddress: string
|
|
1812
|
+
mailingAddress: string;
|
|
1767
1813
|
/** Financial advisor mailing city. */
|
|
1768
|
-
mailingCity: string
|
|
1814
|
+
mailingCity: string;
|
|
1769
1815
|
/** Financial advisor mailing state. */
|
|
1770
|
-
mailingState: string
|
|
1816
|
+
mailingState: string;
|
|
1771
1817
|
/** Financial advisor mailing zip code. */
|
|
1772
|
-
mailingZipCode: string
|
|
1818
|
+
mailingZipCode: string;
|
|
1773
1819
|
/** Financial advisor mailing country code. */
|
|
1774
|
-
mailingCountryCode: string
|
|
1820
|
+
mailingCountryCode: string;
|
|
1775
1821
|
/** Financial Advisor branch number. */
|
|
1776
|
-
branchNumber: string
|
|
1822
|
+
branchNumber: string;
|
|
1777
1823
|
/** Financial advisor phone country code. */
|
|
1778
|
-
phoneCountryCode: string
|
|
1824
|
+
phoneCountryCode: string;
|
|
1779
1825
|
/** Financial advisor phone number. */
|
|
1780
|
-
phoneNumber: string
|
|
1826
|
+
phoneNumber: string;
|
|
1781
1827
|
/** Financial advisor phone number extension. */
|
|
1782
1828
|
phoneExtension?: string | undefined;
|
|
1783
1829
|
/** Financial advisor email address. */
|
|
@@ -1785,9 +1831,9 @@ export declare class CreateFinancialAdvisor implements ICreateFinancialAdvisor {
|
|
|
1785
1831
|
/** Financial advisor fax number. */
|
|
1786
1832
|
fax?: string | undefined;
|
|
1787
1833
|
/** Prefix for the Financial Advisor. */
|
|
1788
|
-
prefix: string
|
|
1834
|
+
prefix: string;
|
|
1789
1835
|
/** Financial advisor broker. */
|
|
1790
|
-
broker
|
|
1836
|
+
broker?: string | undefined;
|
|
1791
1837
|
constructor(data?: ICreateFinancialAdvisor);
|
|
1792
1838
|
init(_data?: any): void;
|
|
1793
1839
|
static fromJS(data: any): CreateFinancialAdvisor;
|
|
@@ -1795,33 +1841,33 @@ export declare class CreateFinancialAdvisor implements ICreateFinancialAdvisor {
|
|
|
1795
1841
|
}
|
|
1796
1842
|
export interface ICreateFinancialAdvisor {
|
|
1797
1843
|
/** This is the unique identifier of the Institution that the Financial Advisor is attached to. */
|
|
1798
|
-
financialInstitutionId
|
|
1844
|
+
financialInstitutionId: string;
|
|
1799
1845
|
/** CRD Number of the Financial Advisor. */
|
|
1800
|
-
crdNumber
|
|
1846
|
+
crdNumber?: string | undefined;
|
|
1801
1847
|
/** IARD Number of the Financial Advisor. */
|
|
1802
1848
|
iardNumber?: string | undefined;
|
|
1803
1849
|
/** Financial Advisor first name. */
|
|
1804
|
-
firstName: string
|
|
1850
|
+
firstName: string;
|
|
1805
1851
|
/** Financial advisor middle name. */
|
|
1806
1852
|
middleName?: string | undefined;
|
|
1807
1853
|
/** Financial advisor last name. */
|
|
1808
|
-
lastName: string
|
|
1854
|
+
lastName: string;
|
|
1809
1855
|
/** Financial advisor mailing address. */
|
|
1810
|
-
mailingAddress: string
|
|
1856
|
+
mailingAddress: string;
|
|
1811
1857
|
/** Financial advisor mailing city. */
|
|
1812
|
-
mailingCity: string
|
|
1858
|
+
mailingCity: string;
|
|
1813
1859
|
/** Financial advisor mailing state. */
|
|
1814
|
-
mailingState: string
|
|
1860
|
+
mailingState: string;
|
|
1815
1861
|
/** Financial advisor mailing zip code. */
|
|
1816
|
-
mailingZipCode: string
|
|
1862
|
+
mailingZipCode: string;
|
|
1817
1863
|
/** Financial advisor mailing country code. */
|
|
1818
|
-
mailingCountryCode: string
|
|
1864
|
+
mailingCountryCode: string;
|
|
1819
1865
|
/** Financial Advisor branch number. */
|
|
1820
|
-
branchNumber: string
|
|
1866
|
+
branchNumber: string;
|
|
1821
1867
|
/** Financial advisor phone country code. */
|
|
1822
|
-
phoneCountryCode: string
|
|
1868
|
+
phoneCountryCode: string;
|
|
1823
1869
|
/** Financial advisor phone number. */
|
|
1824
|
-
phoneNumber: string
|
|
1870
|
+
phoneNumber: string;
|
|
1825
1871
|
/** Financial advisor phone number extension. */
|
|
1826
1872
|
phoneExtension?: string | undefined;
|
|
1827
1873
|
/** Financial advisor email address. */
|
|
@@ -1829,9 +1875,9 @@ export interface ICreateFinancialAdvisor {
|
|
|
1829
1875
|
/** Financial advisor fax number. */
|
|
1830
1876
|
fax?: string | undefined;
|
|
1831
1877
|
/** Prefix for the Financial Advisor. */
|
|
1832
|
-
prefix: string
|
|
1878
|
+
prefix: string;
|
|
1833
1879
|
/** Financial advisor broker. */
|
|
1834
|
-
broker
|
|
1880
|
+
broker?: string | undefined;
|
|
1835
1881
|
}
|
|
1836
1882
|
/** CreateIndicationOfInterest represents the primary offering information to Create an IoI. */
|
|
1837
1883
|
export declare class CreateIndicationOfInterest implements ICreateIndicationOfInterest {
|
|
@@ -2198,7 +2244,7 @@ export declare class Document implements IDocument {
|
|
|
2198
2244
|
/** Unique identifier of the registered fund subscription, if any. */
|
|
2199
2245
|
registeredFundSubscriptionId?: string | undefined;
|
|
2200
2246
|
/** The type of Document. */
|
|
2201
|
-
type?:
|
|
2247
|
+
type?: DocumentType3;
|
|
2202
2248
|
/** Optional tax year to tag the document with. */
|
|
2203
2249
|
taxYear?: number | undefined;
|
|
2204
2250
|
/** Description of the Document. */
|
|
@@ -2233,7 +2279,7 @@ export interface IDocument {
|
|
|
2233
2279
|
/** Unique identifier of the registered fund subscription, if any. */
|
|
2234
2280
|
registeredFundSubscriptionId?: string | undefined;
|
|
2235
2281
|
/** The type of Document. */
|
|
2236
|
-
type?:
|
|
2282
|
+
type?: DocumentType3;
|
|
2237
2283
|
/** Optional tax year to tag the document with. */
|
|
2238
2284
|
taxYear?: number | undefined;
|
|
2239
2285
|
/** Description of the Document. */
|
|
@@ -2251,6 +2297,80 @@ export interface IDocumentApiResponse {
|
|
|
2251
2297
|
items?: Document[] | undefined;
|
|
2252
2298
|
pagination?: Pagination | undefined;
|
|
2253
2299
|
}
|
|
2300
|
+
/** Represents a document associated with the fund admin. */
|
|
2301
|
+
export declare class DocumentV2 implements IDocumentV2 {
|
|
2302
|
+
/** Unique identifier for the document. */
|
|
2303
|
+
id?: string;
|
|
2304
|
+
/** The name of the Document. */
|
|
2305
|
+
name?: string | undefined;
|
|
2306
|
+
/** URL link to view the document. */
|
|
2307
|
+
url: string | undefined;
|
|
2308
|
+
/** Unique identifier of the associated investor, if any. */
|
|
2309
|
+
investorId?: string | undefined;
|
|
2310
|
+
/** Unique identifier of the associated PreIPOCompany, if any. */
|
|
2311
|
+
preIPOCompanyId?: string | undefined;
|
|
2312
|
+
/** Unique identifier of the associated PreIPOCompanyInvestment, if any. */
|
|
2313
|
+
preIPOCompanyInvestmentId?: string | undefined;
|
|
2314
|
+
/** Unique identifier of the associated PreIPOCompanySPV, if any. */
|
|
2315
|
+
preIPOCompanySPVId?: string | undefined;
|
|
2316
|
+
/** Unique identifier of the associated partner, if any. */
|
|
2317
|
+
partnerId?: string | undefined;
|
|
2318
|
+
/** Unique identifier of the registered fund, if any. */
|
|
2319
|
+
registeredFundId?: string | undefined;
|
|
2320
|
+
/** Unique identifier of the associated Transaction (InvestorSubscription or RegisteredFundSubscription), if any. */
|
|
2321
|
+
transactionId?: string | undefined;
|
|
2322
|
+
/** The type of Document. */
|
|
2323
|
+
type?: DocumentV2Type;
|
|
2324
|
+
/** Optional tax year to tag the document with. */
|
|
2325
|
+
taxYear?: number | undefined;
|
|
2326
|
+
/** Description of the Document. */
|
|
2327
|
+
description?: string | undefined;
|
|
2328
|
+
constructor(data?: IDocumentV2);
|
|
2329
|
+
init(_data?: any): void;
|
|
2330
|
+
static fromJS(data: any): DocumentV2;
|
|
2331
|
+
toJSON(data?: any): any;
|
|
2332
|
+
}
|
|
2333
|
+
/** Represents a document associated with the fund admin. */
|
|
2334
|
+
export interface IDocumentV2 {
|
|
2335
|
+
/** Unique identifier for the document. */
|
|
2336
|
+
id?: string;
|
|
2337
|
+
/** The name of the Document. */
|
|
2338
|
+
name?: string | undefined;
|
|
2339
|
+
/** URL link to view the document. */
|
|
2340
|
+
url: string | undefined;
|
|
2341
|
+
/** Unique identifier of the associated investor, if any. */
|
|
2342
|
+
investorId?: string | undefined;
|
|
2343
|
+
/** Unique identifier of the associated PreIPOCompany, if any. */
|
|
2344
|
+
preIPOCompanyId?: string | undefined;
|
|
2345
|
+
/** Unique identifier of the associated PreIPOCompanyInvestment, if any. */
|
|
2346
|
+
preIPOCompanyInvestmentId?: string | undefined;
|
|
2347
|
+
/** Unique identifier of the associated PreIPOCompanySPV, if any. */
|
|
2348
|
+
preIPOCompanySPVId?: string | undefined;
|
|
2349
|
+
/** Unique identifier of the associated partner, if any. */
|
|
2350
|
+
partnerId?: string | undefined;
|
|
2351
|
+
/** Unique identifier of the registered fund, if any. */
|
|
2352
|
+
registeredFundId?: string | undefined;
|
|
2353
|
+
/** Unique identifier of the associated Transaction (InvestorSubscription or RegisteredFundSubscription), if any. */
|
|
2354
|
+
transactionId?: string | undefined;
|
|
2355
|
+
/** The type of Document. */
|
|
2356
|
+
type?: DocumentV2Type;
|
|
2357
|
+
/** Optional tax year to tag the document with. */
|
|
2358
|
+
taxYear?: number | undefined;
|
|
2359
|
+
/** Description of the Document. */
|
|
2360
|
+
description?: string | undefined;
|
|
2361
|
+
}
|
|
2362
|
+
export declare class DocumentV2ApiResponse implements IDocumentV2ApiResponse {
|
|
2363
|
+
items?: DocumentV2[] | undefined;
|
|
2364
|
+
pagination?: Pagination | undefined;
|
|
2365
|
+
constructor(data?: IDocumentV2ApiResponse);
|
|
2366
|
+
init(_data?: any): void;
|
|
2367
|
+
static fromJS(data: any): DocumentV2ApiResponse;
|
|
2368
|
+
toJSON(data?: any): any;
|
|
2369
|
+
}
|
|
2370
|
+
export interface IDocumentV2ApiResponse {
|
|
2371
|
+
items?: DocumentV2[] | undefined;
|
|
2372
|
+
pagination?: Pagination | undefined;
|
|
2373
|
+
}
|
|
2254
2374
|
/** Represents an entity investor within the primary offering. */
|
|
2255
2375
|
export declare class EntityInvestor implements IEntityInvestor {
|
|
2256
2376
|
/** Id of the Entity Investor. */
|
|
@@ -2736,7 +2856,7 @@ export declare class FinancialAdvisor implements IFinancialAdvisor {
|
|
|
2736
2856
|
/** This is the unique identifier of the Institution that the Financial Advisor is attached to. */
|
|
2737
2857
|
financialInstitutionId?: string;
|
|
2738
2858
|
/** CRD Number of the Financial Advisor. */
|
|
2739
|
-
crdNumber
|
|
2859
|
+
crdNumber?: string | undefined;
|
|
2740
2860
|
/** IARD Number of the Financial Advisor. */
|
|
2741
2861
|
iardNumber?: string | undefined;
|
|
2742
2862
|
/** Financial Advisor first name. */
|
|
@@ -2752,7 +2872,7 @@ export declare class FinancialAdvisor implements IFinancialAdvisor {
|
|
|
2752
2872
|
/** Prefix for the Financial Advisor. */
|
|
2753
2873
|
prefix: string | undefined;
|
|
2754
2874
|
/** Financial advisor broker. */
|
|
2755
|
-
broker
|
|
2875
|
+
broker?: string | undefined;
|
|
2756
2876
|
constructor(data?: IFinancialAdvisor);
|
|
2757
2877
|
init(_data?: any): void;
|
|
2758
2878
|
static fromJS(data: any): FinancialAdvisor;
|
|
@@ -2765,7 +2885,7 @@ export interface IFinancialAdvisor {
|
|
|
2765
2885
|
/** This is the unique identifier of the Institution that the Financial Advisor is attached to. */
|
|
2766
2886
|
financialInstitutionId?: string;
|
|
2767
2887
|
/** CRD Number of the Financial Advisor. */
|
|
2768
|
-
crdNumber
|
|
2888
|
+
crdNumber?: string | undefined;
|
|
2769
2889
|
/** IARD Number of the Financial Advisor. */
|
|
2770
2890
|
iardNumber?: string | undefined;
|
|
2771
2891
|
/** Financial Advisor first name. */
|
|
@@ -2781,7 +2901,7 @@ export interface IFinancialAdvisor {
|
|
|
2781
2901
|
/** Prefix for the Financial Advisor. */
|
|
2782
2902
|
prefix: string | undefined;
|
|
2783
2903
|
/** Financial advisor broker. */
|
|
2784
|
-
broker
|
|
2904
|
+
broker?: string | undefined;
|
|
2785
2905
|
}
|
|
2786
2906
|
export declare class FinancialAdvisorApiResponse implements IFinancialAdvisorApiResponse {
|
|
2787
2907
|
items?: FinancialAdvisor[] | undefined;
|
|
@@ -5934,7 +6054,7 @@ export declare class PreIPOCompanySPV implements IPreIPOCompanySPV {
|
|
|
5934
6054
|
/** Flag that describes whether the holdback expenses will be passed through to investors */
|
|
5935
6055
|
holdbackEnabled?: boolean;
|
|
5936
6056
|
/** The base documents associated with the SPV (Optional). */
|
|
5937
|
-
documents?:
|
|
6057
|
+
documents?: DocumentV2[] | undefined;
|
|
5938
6058
|
/** SPV account ID. */
|
|
5939
6059
|
spvAccountID?: number | undefined;
|
|
5940
6060
|
/** The name of the parent company. */
|
|
@@ -6023,7 +6143,7 @@ export interface IPreIPOCompanySPV {
|
|
|
6023
6143
|
/** Flag that describes whether the holdback expenses will be passed through to investors */
|
|
6024
6144
|
holdbackEnabled?: boolean;
|
|
6025
6145
|
/** The base documents associated with the SPV (Optional). */
|
|
6026
|
-
documents?:
|
|
6146
|
+
documents?: DocumentV2[] | undefined;
|
|
6027
6147
|
/** SPV account ID. */
|
|
6028
6148
|
spvAccountID?: number | undefined;
|
|
6029
6149
|
/** The name of the parent company. */
|
|
@@ -6428,7 +6548,7 @@ export declare class RegisteredFund implements IRegisteredFund {
|
|
|
6428
6548
|
/** Collection of Fee Structures directly associated with this Registered Fund. */
|
|
6429
6549
|
feeStructures?: FeeStructure[] | undefined;
|
|
6430
6550
|
/** Documents associated with the Registered Fund. */
|
|
6431
|
-
documents?:
|
|
6551
|
+
documents?: DocumentV2[] | undefined;
|
|
6432
6552
|
/** Third party data for the Registered Fund. */
|
|
6433
6553
|
thirdPartyData?: RegisteredFundThirdPartyData | undefined;
|
|
6434
6554
|
constructor(data?: IRegisteredFund);
|
|
@@ -6505,7 +6625,7 @@ export interface IRegisteredFund {
|
|
|
6505
6625
|
/** Collection of Fee Structures directly associated with this Registered Fund. */
|
|
6506
6626
|
feeStructures?: FeeStructure[] | undefined;
|
|
6507
6627
|
/** Documents associated with the Registered Fund. */
|
|
6508
|
-
documents?:
|
|
6628
|
+
documents?: DocumentV2[] | undefined;
|
|
6509
6629
|
/** Third party data for the Registered Fund. */
|
|
6510
6630
|
thirdPartyData?: RegisteredFundThirdPartyData | undefined;
|
|
6511
6631
|
}
|
|
@@ -6796,6 +6916,8 @@ export declare class Transaction implements ITransaction {
|
|
|
6796
6916
|
companyName?: string | undefined;
|
|
6797
6917
|
/** The reference ID of an order submitted. */
|
|
6798
6918
|
referenceId?: string | undefined;
|
|
6919
|
+
/** Optional list of documents associated with this transaction. */
|
|
6920
|
+
documents?: DocumentV2[] | undefined;
|
|
6799
6921
|
constructor(data?: ITransaction);
|
|
6800
6922
|
init(_data?: any): void;
|
|
6801
6923
|
static fromJS(data: any): Transaction;
|
|
@@ -6834,6 +6956,8 @@ export interface ITransaction {
|
|
|
6834
6956
|
companyName?: string | undefined;
|
|
6835
6957
|
/** The reference ID of an order submitted. */
|
|
6836
6958
|
referenceId?: string | undefined;
|
|
6959
|
+
/** Optional list of documents associated with this transaction. */
|
|
6960
|
+
documents?: DocumentV2[] | undefined;
|
|
6837
6961
|
}
|
|
6838
6962
|
export declare class TransactionAction implements ITransactionAction {
|
|
6839
6963
|
/** Unique ID associated with an TransactionAction. */
|
|
@@ -7331,33 +7455,33 @@ https://github.com/country-regions/country-region-data/blob/master/data.json for
|
|
|
7331
7455
|
}
|
|
7332
7456
|
export declare class UpdateFinancialAdvisor implements IUpdateFinancialAdvisor {
|
|
7333
7457
|
/** This is the unique identifier of the Institution that the Financial Advisor is attached to. */
|
|
7334
|
-
financialInstitutionId
|
|
7458
|
+
financialInstitutionId: string;
|
|
7335
7459
|
/** CRD Number of the Financial Advisor. */
|
|
7336
|
-
crdNumber
|
|
7460
|
+
crdNumber?: string | undefined;
|
|
7337
7461
|
/** IARD Number of the Financial Advisor. */
|
|
7338
7462
|
iardNumber?: string | undefined;
|
|
7339
7463
|
/** Financial Advisor first name. */
|
|
7340
|
-
firstName: string
|
|
7464
|
+
firstName: string;
|
|
7341
7465
|
/** Financial advisor middle name. */
|
|
7342
7466
|
middleName?: string | undefined;
|
|
7343
7467
|
/** Financial advisor last name. */
|
|
7344
|
-
lastName: string
|
|
7468
|
+
lastName: string;
|
|
7345
7469
|
/** Financial advisor mailing address. */
|
|
7346
|
-
mailingAddress: string
|
|
7470
|
+
mailingAddress: string;
|
|
7347
7471
|
/** Financial advisor mailing city. */
|
|
7348
|
-
mailingCity: string
|
|
7472
|
+
mailingCity: string;
|
|
7349
7473
|
/** Financial advisor mailing state. */
|
|
7350
|
-
mailingState: string
|
|
7474
|
+
mailingState: string;
|
|
7351
7475
|
/** Financial advisor mailing zip code. */
|
|
7352
|
-
mailingZipCode: string
|
|
7476
|
+
mailingZipCode: string;
|
|
7353
7477
|
/** Financial advisor mailing country code. */
|
|
7354
|
-
mailingCountryCode: string
|
|
7478
|
+
mailingCountryCode: string;
|
|
7355
7479
|
/** Financial Advisor branch number. */
|
|
7356
|
-
branchNumber: string
|
|
7480
|
+
branchNumber: string;
|
|
7357
7481
|
/** Financial advisor phone country code. */
|
|
7358
|
-
phoneCountryCode: string
|
|
7482
|
+
phoneCountryCode: string;
|
|
7359
7483
|
/** Financial advisor phone number. */
|
|
7360
|
-
phoneNumber: string
|
|
7484
|
+
phoneNumber: string;
|
|
7361
7485
|
/** Financial advisor phone number extension. */
|
|
7362
7486
|
phoneExtension?: string | undefined;
|
|
7363
7487
|
/** Financial advisor email address. */
|
|
@@ -7365,11 +7489,11 @@ export declare class UpdateFinancialAdvisor implements IUpdateFinancialAdvisor {
|
|
|
7365
7489
|
/** Financial advisor fax number. */
|
|
7366
7490
|
fax?: string | undefined;
|
|
7367
7491
|
/** Prefix for the Financial Advisor. */
|
|
7368
|
-
prefix: string
|
|
7492
|
+
prefix: string;
|
|
7369
7493
|
/** Financial advisor broker. */
|
|
7370
|
-
broker
|
|
7494
|
+
broker?: string | undefined;
|
|
7371
7495
|
/** ID of the FinancialAdvisor to edit. */
|
|
7372
|
-
id
|
|
7496
|
+
id: string;
|
|
7373
7497
|
constructor(data?: IUpdateFinancialAdvisor);
|
|
7374
7498
|
init(_data?: any): void;
|
|
7375
7499
|
static fromJS(data: any): UpdateFinancialAdvisor;
|
|
@@ -7377,33 +7501,33 @@ export declare class UpdateFinancialAdvisor implements IUpdateFinancialAdvisor {
|
|
|
7377
7501
|
}
|
|
7378
7502
|
export interface IUpdateFinancialAdvisor {
|
|
7379
7503
|
/** This is the unique identifier of the Institution that the Financial Advisor is attached to. */
|
|
7380
|
-
financialInstitutionId
|
|
7504
|
+
financialInstitutionId: string;
|
|
7381
7505
|
/** CRD Number of the Financial Advisor. */
|
|
7382
|
-
crdNumber
|
|
7506
|
+
crdNumber?: string | undefined;
|
|
7383
7507
|
/** IARD Number of the Financial Advisor. */
|
|
7384
7508
|
iardNumber?: string | undefined;
|
|
7385
7509
|
/** Financial Advisor first name. */
|
|
7386
|
-
firstName: string
|
|
7510
|
+
firstName: string;
|
|
7387
7511
|
/** Financial advisor middle name. */
|
|
7388
7512
|
middleName?: string | undefined;
|
|
7389
7513
|
/** Financial advisor last name. */
|
|
7390
|
-
lastName: string
|
|
7514
|
+
lastName: string;
|
|
7391
7515
|
/** Financial advisor mailing address. */
|
|
7392
|
-
mailingAddress: string
|
|
7516
|
+
mailingAddress: string;
|
|
7393
7517
|
/** Financial advisor mailing city. */
|
|
7394
|
-
mailingCity: string
|
|
7518
|
+
mailingCity: string;
|
|
7395
7519
|
/** Financial advisor mailing state. */
|
|
7396
|
-
mailingState: string
|
|
7520
|
+
mailingState: string;
|
|
7397
7521
|
/** Financial advisor mailing zip code. */
|
|
7398
|
-
mailingZipCode: string
|
|
7522
|
+
mailingZipCode: string;
|
|
7399
7523
|
/** Financial advisor mailing country code. */
|
|
7400
|
-
mailingCountryCode: string
|
|
7524
|
+
mailingCountryCode: string;
|
|
7401
7525
|
/** Financial Advisor branch number. */
|
|
7402
|
-
branchNumber: string
|
|
7526
|
+
branchNumber: string;
|
|
7403
7527
|
/** Financial advisor phone country code. */
|
|
7404
|
-
phoneCountryCode: string
|
|
7528
|
+
phoneCountryCode: string;
|
|
7405
7529
|
/** Financial advisor phone number. */
|
|
7406
|
-
phoneNumber: string
|
|
7530
|
+
phoneNumber: string;
|
|
7407
7531
|
/** Financial advisor phone number extension. */
|
|
7408
7532
|
phoneExtension?: string | undefined;
|
|
7409
7533
|
/** Financial advisor email address. */
|
|
@@ -7411,11 +7535,11 @@ export interface IUpdateFinancialAdvisor {
|
|
|
7411
7535
|
/** Financial advisor fax number. */
|
|
7412
7536
|
fax?: string | undefined;
|
|
7413
7537
|
/** Prefix for the Financial Advisor. */
|
|
7414
|
-
prefix: string
|
|
7538
|
+
prefix: string;
|
|
7415
7539
|
/** Financial advisor broker. */
|
|
7416
|
-
broker
|
|
7540
|
+
broker?: string | undefined;
|
|
7417
7541
|
/** ID of the FinancialAdvisor to edit. */
|
|
7418
|
-
id
|
|
7542
|
+
id: string;
|
|
7419
7543
|
}
|
|
7420
7544
|
export declare class UpdateFinancialInstitutionReferenceId implements IUpdateFinancialInstitutionReferenceId {
|
|
7421
7545
|
/** ID of the FinancialInstitution to edit. */
|
|
@@ -8025,6 +8149,66 @@ export declare enum SortOrder {
|
|
|
8025
8149
|
Ascending = "Ascending",
|
|
8026
8150
|
Descending = "Descending"
|
|
8027
8151
|
}
|
|
8152
|
+
export declare enum DocumentType2 {
|
|
8153
|
+
BUSINESS_FORMATION = "BUSINESS_FORMATION",
|
|
8154
|
+
BANK_STATEMENT = "BANK_STATEMENT",
|
|
8155
|
+
CAPITAL_ACCT_STATEMENT = "CAPITAL_ACCT_STATEMENT",
|
|
8156
|
+
CAPITAL_CALL_NOTICE = "CAPITAL_CALL_NOTICE",
|
|
8157
|
+
CARRY_SPLIT_AGREEMENT = "CARRY_SPLIT_AGREEMENT",
|
|
8158
|
+
CERTIFICATE_OF_FORMATION = "CERTIFICATE_OF_FORMATION",
|
|
8159
|
+
COMMITMENT_AGREEMENT = "COMMITMENT_AGREEMENT",
|
|
8160
|
+
COMPLIANCE = "COMPLIANCE",
|
|
8161
|
+
DRIVER_LICENSE = "DRIVER_LICENSE",
|
|
8162
|
+
DRAFT_INVESTMENT = "DRAFT_INVESTMENT",
|
|
8163
|
+
EIN_FORMATION = "EIN_FORMATION",
|
|
8164
|
+
FINAL_INVESTMENT = "FINAL_INVESTMENT",
|
|
8165
|
+
FINANCIAL_STATEMENT = "FINANCIAL_STATEMENT",
|
|
8166
|
+
INVESTOR_WIRE_INSTRUCTIONS = "INVESTOR_WIRE_INSTRUCTIONS",
|
|
8167
|
+
INVOICE = "INVOICE",
|
|
8168
|
+
K1 = "K1",
|
|
8169
|
+
LOCAL_OR_TRIBE_ID = "LOCAL_OR_TRIBE_ID",
|
|
8170
|
+
MASTER_AGREEMENT = "MASTER_AGREEMENT",
|
|
8171
|
+
MSA = "MSA",
|
|
8172
|
+
OTHER = "OTHER",
|
|
8173
|
+
PASSPORT = "PASSPORT",
|
|
8174
|
+
PASSPORT_FOREIGN = "PASSPORT_FOREIGN",
|
|
8175
|
+
PASSPORT_US = "PASSPORT_US",
|
|
8176
|
+
PITCH_DECK = "PITCH_DECK",
|
|
8177
|
+
POST_CLOSING_DOCUMENTS = "POST_CLOSING_DOCUMENTS",
|
|
8178
|
+
PROOF_OF_SOURCE_OF_FUNDS = "PROOF_OF_SOURCE_OF_FUNDS",
|
|
8179
|
+
PX_FILE = "PX_FILE",
|
|
8180
|
+
SCFUND_AGREEMENT = "SCFUND_AGREEMENT",
|
|
8181
|
+
SERIES_AGREEMENT = "SERIES_AGREEMENT",
|
|
8182
|
+
SIDE_LETTER = "SIDE_LETTER",
|
|
8183
|
+
SIGNABLE_AGREEMENT = "SIGNABLE_AGREEMENT",
|
|
8184
|
+
SOW = "SOW",
|
|
8185
|
+
STATEID = "STATEID",
|
|
8186
|
+
SUBSCRIPTION_AGREEMENT = "SUBSCRIPTION_AGREEMENT",
|
|
8187
|
+
SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED = "SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED",
|
|
8188
|
+
SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM = "SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM",
|
|
8189
|
+
TARGET_CAPTABLE = "TARGET_CAPTABLE",
|
|
8190
|
+
TERM_SHEET = "TERM_SHEET",
|
|
8191
|
+
TRANSFER_CONSENT_FORM = "TRANSFER_CONSENT_FORM",
|
|
8192
|
+
TRANSFER_OF_INTEREST_AGREEMENT = "TRANSFER_OF_INTEREST_AGREEMENT",
|
|
8193
|
+
W8 = "W8",
|
|
8194
|
+
W8_BEN = "W8_BEN",
|
|
8195
|
+
W8_BENE = "W8_BENE",
|
|
8196
|
+
W9 = "W9",
|
|
8197
|
+
LayeredSPVInvestmentDeck_Monark = "LayeredSPVInvestmentDeck_Monark",
|
|
8198
|
+
InvestmentMemo_Monark = "InvestmentMemo_Monark",
|
|
8199
|
+
DealMemo_Monark = "DealMemo_Monark",
|
|
8200
|
+
RiskFactors_Monark = "RiskFactors_Monark",
|
|
8201
|
+
PrivatePlacementMemorandum_Monark = "PrivatePlacementMemorandum_Monark",
|
|
8202
|
+
InvestorLogo_Monark = "InvestorLogo_Monark",
|
|
8203
|
+
SubscriptionAgreementPreview_Monark = "SubscriptionAgreementPreview_Monark",
|
|
8204
|
+
DealDiligence_Monark = "DealDiligence_Monark",
|
|
8205
|
+
NoLienAttestation_Monark = "NoLienAttestation_Monark",
|
|
8206
|
+
KeyTerms_Monark = "KeyTerms_Monark",
|
|
8207
|
+
RegisteredFundSubscriptionAgreement_Monark = "RegisteredFundSubscriptionAgreement_Monark",
|
|
8208
|
+
RegisteredFundProspectus_Monark = "RegisteredFundProspectus_Monark",
|
|
8209
|
+
RegisteredFundFactCard_Monark = "RegisteredFundFactCard_Monark",
|
|
8210
|
+
RegisteredFundQuiltChart_Monark = "RegisteredFundQuiltChart_Monark"
|
|
8211
|
+
}
|
|
8028
8212
|
export declare enum SortOrder2 {
|
|
8029
8213
|
Ascending = "Ascending",
|
|
8030
8214
|
Descending = "Descending"
|
|
@@ -8033,12 +8217,16 @@ export declare enum SortOrder3 {
|
|
|
8033
8217
|
Ascending = "Ascending",
|
|
8034
8218
|
Descending = "Descending"
|
|
8035
8219
|
}
|
|
8220
|
+
export declare enum SortOrder4 {
|
|
8221
|
+
Ascending = "Ascending",
|
|
8222
|
+
Descending = "Descending"
|
|
8223
|
+
}
|
|
8036
8224
|
export declare enum SortProperty {
|
|
8037
8225
|
UpdatedAt = "UpdatedAt",
|
|
8038
8226
|
CreatedAt = "CreatedAt",
|
|
8039
8227
|
NotionalAmount = "NotionalAmount"
|
|
8040
8228
|
}
|
|
8041
|
-
export declare enum
|
|
8229
|
+
export declare enum SortOrder5 {
|
|
8042
8230
|
Ascending = "Ascending",
|
|
8043
8231
|
Descending = "Descending"
|
|
8044
8232
|
}
|
|
@@ -8047,11 +8235,11 @@ export declare enum SortProperty2 {
|
|
|
8047
8235
|
CreatedAt = "CreatedAt",
|
|
8048
8236
|
NotionalAmount = "NotionalAmount"
|
|
8049
8237
|
}
|
|
8050
|
-
export declare enum
|
|
8238
|
+
export declare enum SortOrder6 {
|
|
8051
8239
|
Ascending = "Ascending",
|
|
8052
8240
|
Descending = "Descending"
|
|
8053
8241
|
}
|
|
8054
|
-
export declare enum
|
|
8242
|
+
export declare enum SortOrder7 {
|
|
8055
8243
|
Ascending = "Ascending",
|
|
8056
8244
|
Descending = "Descending"
|
|
8057
8245
|
}
|
|
@@ -8068,7 +8256,7 @@ export declare enum Status {
|
|
|
8068
8256
|
Rejected = "Rejected",
|
|
8069
8257
|
Failed = "Failed"
|
|
8070
8258
|
}
|
|
8071
|
-
export declare enum
|
|
8259
|
+
export declare enum SortOrder8 {
|
|
8072
8260
|
Ascending = "Ascending",
|
|
8073
8261
|
Descending = "Descending"
|
|
8074
8262
|
}
|
|
@@ -8078,7 +8266,7 @@ export declare enum SortBy {
|
|
|
8078
8266
|
LastValuation = "LastValuation",
|
|
8079
8267
|
TotalFunding = "TotalFunding"
|
|
8080
8268
|
}
|
|
8081
|
-
export declare enum
|
|
8269
|
+
export declare enum SortOrder9 {
|
|
8082
8270
|
Ascending = "Ascending",
|
|
8083
8271
|
Descending = "Descending"
|
|
8084
8272
|
}
|
|
@@ -8094,10 +8282,6 @@ export declare enum Includes {
|
|
|
8094
8282
|
Investments = "Investments",
|
|
8095
8283
|
Spvs = "Spvs"
|
|
8096
8284
|
}
|
|
8097
|
-
export declare enum SortOrder9 {
|
|
8098
|
-
Ascending = "Ascending",
|
|
8099
|
-
Descending = "Descending"
|
|
8100
|
-
}
|
|
8101
8285
|
export declare enum SortOrder10 {
|
|
8102
8286
|
Ascending = "Ascending",
|
|
8103
8287
|
Descending = "Descending"
|
|
@@ -8110,6 +8294,10 @@ export declare enum SortOrder12 {
|
|
|
8110
8294
|
Ascending = "Ascending",
|
|
8111
8295
|
Descending = "Descending"
|
|
8112
8296
|
}
|
|
8297
|
+
export declare enum SortOrder13 {
|
|
8298
|
+
Ascending = "Ascending",
|
|
8299
|
+
Descending = "Descending"
|
|
8300
|
+
}
|
|
8113
8301
|
export declare enum ResearchType {
|
|
8114
8302
|
INTERVIEW = "INTERVIEW",
|
|
8115
8303
|
MARKET = "MARKET",
|
|
@@ -8160,7 +8348,7 @@ export declare enum ExemptionsClaimed {
|
|
|
8160
8348
|
SECURITIES_ACT_SECTION_3_c_14 = "SECURITIES_ACT_SECTION_3_c_14",
|
|
8161
8349
|
Reg_S = "Reg_S"
|
|
8162
8350
|
}
|
|
8163
|
-
export declare enum
|
|
8351
|
+
export declare enum SortOrder14 {
|
|
8164
8352
|
Ascending = "Ascending",
|
|
8165
8353
|
Descending = "Descending"
|
|
8166
8354
|
}
|
|
@@ -8174,10 +8362,6 @@ export declare enum SortBy2 {
|
|
|
8174
8362
|
Valuation = "Valuation",
|
|
8175
8363
|
MinCommitmentAmount = "MinCommitmentAmount"
|
|
8176
8364
|
}
|
|
8177
|
-
export declare enum SortOrder14 {
|
|
8178
|
-
Ascending = "Ascending",
|
|
8179
|
-
Descending = "Descending"
|
|
8180
|
-
}
|
|
8181
8365
|
export declare enum SortOrder15 {
|
|
8182
8366
|
Ascending = "Ascending",
|
|
8183
8367
|
Descending = "Descending"
|
|
@@ -8206,6 +8390,10 @@ export declare enum SortOrder21 {
|
|
|
8206
8390
|
Ascending = "Ascending",
|
|
8207
8391
|
Descending = "Descending"
|
|
8208
8392
|
}
|
|
8393
|
+
export declare enum SortOrder22 {
|
|
8394
|
+
Ascending = "Ascending",
|
|
8395
|
+
Descending = "Descending"
|
|
8396
|
+
}
|
|
8209
8397
|
export declare enum TargetAssetType {
|
|
8210
8398
|
PreIPOCompanySPV = "PreIPOCompanySPV",
|
|
8211
8399
|
RegisteredFund = "RegisteredFund",
|
|
@@ -8221,11 +8409,11 @@ export declare enum TargetAssetType3 {
|
|
|
8221
8409
|
RegisteredFund = "RegisteredFund",
|
|
8222
8410
|
PreIPOCompany = "PreIPOCompany"
|
|
8223
8411
|
}
|
|
8224
|
-
export declare enum
|
|
8412
|
+
export declare enum SortOrder23 {
|
|
8225
8413
|
Ascending = "Ascending",
|
|
8226
8414
|
Descending = "Descending"
|
|
8227
8415
|
}
|
|
8228
|
-
export declare enum
|
|
8416
|
+
export declare enum SortOrder24 {
|
|
8229
8417
|
Ascending = "Ascending",
|
|
8230
8418
|
Descending = "Descending"
|
|
8231
8419
|
}
|
|
@@ -8402,7 +8590,67 @@ export declare enum CreateTransactionSide {
|
|
|
8402
8590
|
Subscription = "Subscription",
|
|
8403
8591
|
Redemption = "Redemption"
|
|
8404
8592
|
}
|
|
8405
|
-
export declare enum
|
|
8593
|
+
export declare enum DocumentType3 {
|
|
8594
|
+
BUSINESS_FORMATION = "BUSINESS_FORMATION",
|
|
8595
|
+
BANK_STATEMENT = "BANK_STATEMENT",
|
|
8596
|
+
CAPITAL_ACCT_STATEMENT = "CAPITAL_ACCT_STATEMENT",
|
|
8597
|
+
CAPITAL_CALL_NOTICE = "CAPITAL_CALL_NOTICE",
|
|
8598
|
+
CARRY_SPLIT_AGREEMENT = "CARRY_SPLIT_AGREEMENT",
|
|
8599
|
+
CERTIFICATE_OF_FORMATION = "CERTIFICATE_OF_FORMATION",
|
|
8600
|
+
COMMITMENT_AGREEMENT = "COMMITMENT_AGREEMENT",
|
|
8601
|
+
COMPLIANCE = "COMPLIANCE",
|
|
8602
|
+
DRIVER_LICENSE = "DRIVER_LICENSE",
|
|
8603
|
+
DRAFT_INVESTMENT = "DRAFT_INVESTMENT",
|
|
8604
|
+
EIN_FORMATION = "EIN_FORMATION",
|
|
8605
|
+
FINAL_INVESTMENT = "FINAL_INVESTMENT",
|
|
8606
|
+
FINANCIAL_STATEMENT = "FINANCIAL_STATEMENT",
|
|
8607
|
+
INVESTOR_WIRE_INSTRUCTIONS = "INVESTOR_WIRE_INSTRUCTIONS",
|
|
8608
|
+
INVOICE = "INVOICE",
|
|
8609
|
+
K1 = "K1",
|
|
8610
|
+
LOCAL_OR_TRIBE_ID = "LOCAL_OR_TRIBE_ID",
|
|
8611
|
+
MASTER_AGREEMENT = "MASTER_AGREEMENT",
|
|
8612
|
+
MSA = "MSA",
|
|
8613
|
+
OTHER = "OTHER",
|
|
8614
|
+
PASSPORT = "PASSPORT",
|
|
8615
|
+
PASSPORT_FOREIGN = "PASSPORT_FOREIGN",
|
|
8616
|
+
PASSPORT_US = "PASSPORT_US",
|
|
8617
|
+
PITCH_DECK = "PITCH_DECK",
|
|
8618
|
+
POST_CLOSING_DOCUMENTS = "POST_CLOSING_DOCUMENTS",
|
|
8619
|
+
PROOF_OF_SOURCE_OF_FUNDS = "PROOF_OF_SOURCE_OF_FUNDS",
|
|
8620
|
+
PX_FILE = "PX_FILE",
|
|
8621
|
+
SCFUND_AGREEMENT = "SCFUND_AGREEMENT",
|
|
8622
|
+
SERIES_AGREEMENT = "SERIES_AGREEMENT",
|
|
8623
|
+
SIDE_LETTER = "SIDE_LETTER",
|
|
8624
|
+
SIGNABLE_AGREEMENT = "SIGNABLE_AGREEMENT",
|
|
8625
|
+
SOW = "SOW",
|
|
8626
|
+
STATEID = "STATEID",
|
|
8627
|
+
SUBSCRIPTION_AGREEMENT = "SUBSCRIPTION_AGREEMENT",
|
|
8628
|
+
SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED = "SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED",
|
|
8629
|
+
SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM = "SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM",
|
|
8630
|
+
TARGET_CAPTABLE = "TARGET_CAPTABLE",
|
|
8631
|
+
TERM_SHEET = "TERM_SHEET",
|
|
8632
|
+
TRANSFER_CONSENT_FORM = "TRANSFER_CONSENT_FORM",
|
|
8633
|
+
TRANSFER_OF_INTEREST_AGREEMENT = "TRANSFER_OF_INTEREST_AGREEMENT",
|
|
8634
|
+
W8 = "W8",
|
|
8635
|
+
W8_BEN = "W8_BEN",
|
|
8636
|
+
W8_BENE = "W8_BENE",
|
|
8637
|
+
W9 = "W9",
|
|
8638
|
+
LayeredSPVInvestmentDeck_Monark = "LayeredSPVInvestmentDeck_Monark",
|
|
8639
|
+
InvestmentMemo_Monark = "InvestmentMemo_Monark",
|
|
8640
|
+
DealMemo_Monark = "DealMemo_Monark",
|
|
8641
|
+
RiskFactors_Monark = "RiskFactors_Monark",
|
|
8642
|
+
PrivatePlacementMemorandum_Monark = "PrivatePlacementMemorandum_Monark",
|
|
8643
|
+
InvestorLogo_Monark = "InvestorLogo_Monark",
|
|
8644
|
+
SubscriptionAgreementPreview_Monark = "SubscriptionAgreementPreview_Monark",
|
|
8645
|
+
DealDiligence_Monark = "DealDiligence_Monark",
|
|
8646
|
+
NoLienAttestation_Monark = "NoLienAttestation_Monark",
|
|
8647
|
+
KeyTerms_Monark = "KeyTerms_Monark",
|
|
8648
|
+
RegisteredFundSubscriptionAgreement_Monark = "RegisteredFundSubscriptionAgreement_Monark",
|
|
8649
|
+
RegisteredFundProspectus_Monark = "RegisteredFundProspectus_Monark",
|
|
8650
|
+
RegisteredFundFactCard_Monark = "RegisteredFundFactCard_Monark",
|
|
8651
|
+
RegisteredFundQuiltChart_Monark = "RegisteredFundQuiltChart_Monark"
|
|
8652
|
+
}
|
|
8653
|
+
export declare enum DocumentV2Type {
|
|
8406
8654
|
BUSINESS_FORMATION = "BUSINESS_FORMATION",
|
|
8407
8655
|
BANK_STATEMENT = "BANK_STATEMENT",
|
|
8408
8656
|
CAPITAL_ACCT_STATEMENT = "CAPITAL_ACCT_STATEMENT",
|