@monarkmarkets/api-client 1.3.10 → 1.3.11
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 +248 -40
- package/dist/Client.js +503 -32
- 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
|
|
@@ -919,7 +966,7 @@ export declare class Client {
|
|
|
919
966
|
* @param sortOrder (optional) Which way to sort order, defaults to Descending.
|
|
920
967
|
* @return OK
|
|
921
968
|
*/
|
|
922
|
-
getAllRegisteredFunds(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder:
|
|
969
|
+
getAllRegisteredFunds(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder17 | undefined): Promise<RegisteredFundApiResponse>;
|
|
923
970
|
protected processGetAllRegisteredFunds(response: Response): Promise<RegisteredFundApiResponse>;
|
|
924
971
|
/**
|
|
925
972
|
* Gets a SecondaryLink Evergreen Fund by ID.
|
|
@@ -944,7 +991,7 @@ export declare class Client {
|
|
|
944
991
|
* @param fundType (optional) Optional filter for fund type.
|
|
945
992
|
* @return Returns the list of EvergreenFund.
|
|
946
993
|
*/
|
|
947
|
-
getAllSecondaryLinkEvergreenFunds(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder:
|
|
994
|
+
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
995
|
protected processGetAllSecondaryLinkEvergreenFunds(response: Response): Promise<EvergreenFundApiResponse>;
|
|
949
996
|
/**
|
|
950
997
|
* Gets a SecondaryLink Evergreen News record by ID.
|
|
@@ -967,7 +1014,7 @@ export declare class Client {
|
|
|
967
1014
|
* @param evergreenFundId (optional) Optional filter for evergreen fund ID.
|
|
968
1015
|
* @return Returns the list of EvergreenNews.
|
|
969
1016
|
*/
|
|
970
|
-
getAllSecondaryLinkEvergreenNews(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder:
|
|
1017
|
+
getAllSecondaryLinkEvergreenNews(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder19 | undefined, fundName: string | undefined, evergreenFundId: string | undefined): Promise<EvergreenNewsApiResponse>;
|
|
971
1018
|
protected processGetAllSecondaryLinkEvergreenNews(response: Response): Promise<EvergreenNewsApiResponse>;
|
|
972
1019
|
/**
|
|
973
1020
|
* Gets a SecondaryLink Evergreen Returns record by ID.
|
|
@@ -990,7 +1037,7 @@ export declare class Client {
|
|
|
990
1037
|
* @param evergreenFundId (optional) Optional filter for evergreen fund ID.
|
|
991
1038
|
* @return Returns the list of EvergreenReturns.
|
|
992
1039
|
*/
|
|
993
|
-
getAllSecondaryLinkEvergreenReturns(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder:
|
|
1040
|
+
getAllSecondaryLinkEvergreenReturns(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder20 | undefined, fundName: string | undefined, evergreenFundId: string | undefined): Promise<EvergreenReturnsApiResponse>;
|
|
994
1041
|
protected processGetAllSecondaryLinkEvergreenReturns(response: Response): Promise<EvergreenReturnsApiResponse>;
|
|
995
1042
|
/**
|
|
996
1043
|
* Gets a SecondaryLink Evergreen Share Classes record by ID.
|
|
@@ -1013,7 +1060,7 @@ export declare class Client {
|
|
|
1013
1060
|
* @param evergreenFundId (optional) Optional filter for evergreen fund ID.
|
|
1014
1061
|
* @return Returns the list of EvergreenShareClasses.
|
|
1015
1062
|
*/
|
|
1016
|
-
getAllSecondaryLinkEvergreenShareClasses(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder:
|
|
1063
|
+
getAllSecondaryLinkEvergreenShareClasses(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder21 | undefined, fundName: string | undefined, evergreenFundId: string | undefined): Promise<EvergreenShareClassesApiResponse>;
|
|
1017
1064
|
protected processGetAllSecondaryLinkEvergreenShareClasses(response: Response): Promise<EvergreenShareClassesApiResponse>;
|
|
1018
1065
|
/**
|
|
1019
1066
|
* Create a new order (subscription or redemption).
|
|
@@ -1123,7 +1170,7 @@ export declare class Client {
|
|
|
1123
1170
|
* @param sortOrder (optional) Order of which to sort the webhooks by. Default is Descending
|
|
1124
1171
|
* @return Returns a list of Webhooks.
|
|
1125
1172
|
*/
|
|
1126
|
-
getAllWebhooks(page: number | undefined, pageSize: number | undefined, sortOrder:
|
|
1173
|
+
getAllWebhooks(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder22 | undefined): Promise<WebhookApiResponse>;
|
|
1127
1174
|
protected processGetAllWebhooks(response: Response): Promise<WebhookApiResponse>;
|
|
1128
1175
|
/**
|
|
1129
1176
|
* Update a Webhook’s Information
|
|
@@ -1160,7 +1207,7 @@ export declare class Client {
|
|
|
1160
1207
|
* @param deliveryStatus (optional) Optional filter by delivery status.
|
|
1161
1208
|
* @return Returns a list of Webhook Events.
|
|
1162
1209
|
*/
|
|
1163
|
-
getAllWebhookEvents(id: string, from: Date, to: Date, page: number | undefined, pageSize: number | undefined, sortOrder:
|
|
1210
|
+
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
1211
|
protected processGetAllWebhookEvents(response: Response): Promise<WebhookEventApiResponse>;
|
|
1165
1212
|
}
|
|
1166
1213
|
/** Represents the version information of the API */
|
|
@@ -1809,6 +1856,40 @@ export interface ICreateIndicationOfInterest {
|
|
|
1809
1856
|
/** Currency in which the IOI was submitted. Monark only accepts IOIs submitted in USD. */
|
|
1810
1857
|
currency: string;
|
|
1811
1858
|
}
|
|
1859
|
+
/** CreateIndicationOfInterestV2 represents the v2 request to create a generic IOI supporting multiple asset types. */
|
|
1860
|
+
export declare class CreateIndicationOfInterestV2 implements ICreateIndicationOfInterestV2 {
|
|
1861
|
+
/** 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. */
|
|
1862
|
+
investorId?: string;
|
|
1863
|
+
/** The unique ID of the target asset (company, fund, etc.) that the IoI request is for. */
|
|
1864
|
+
targetId?: string;
|
|
1865
|
+
/** The asset type of the target being invested in (PreIPOCompany, PrivateCompany, etc.) */
|
|
1866
|
+
targetAssetType?: CreateIndicationOfInterestV2TargetAssetType;
|
|
1867
|
+
/** Optional number of clients represented in this IOI (for aggregated IOIs) */
|
|
1868
|
+
numberOfClients?: number | undefined;
|
|
1869
|
+
/** Notional amount of an IOI. */
|
|
1870
|
+
notionalAmount: number;
|
|
1871
|
+
/** Currency in which the IOI was submitted. Monark only accepts IOIs submitted in USD. */
|
|
1872
|
+
currency: string | undefined;
|
|
1873
|
+
constructor(data?: ICreateIndicationOfInterestV2);
|
|
1874
|
+
init(_data?: any): void;
|
|
1875
|
+
static fromJS(data: any): CreateIndicationOfInterestV2;
|
|
1876
|
+
toJSON(data?: any): any;
|
|
1877
|
+
}
|
|
1878
|
+
/** CreateIndicationOfInterestV2 represents the v2 request to create a generic IOI supporting multiple asset types. */
|
|
1879
|
+
export interface ICreateIndicationOfInterestV2 {
|
|
1880
|
+
/** 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. */
|
|
1881
|
+
investorId?: string;
|
|
1882
|
+
/** The unique ID of the target asset (company, fund, etc.) that the IoI request is for. */
|
|
1883
|
+
targetId?: string;
|
|
1884
|
+
/** The asset type of the target being invested in (PreIPOCompany, PrivateCompany, etc.) */
|
|
1885
|
+
targetAssetType?: CreateIndicationOfInterestV2TargetAssetType;
|
|
1886
|
+
/** Optional number of clients represented in this IOI (for aggregated IOIs) */
|
|
1887
|
+
numberOfClients?: number | undefined;
|
|
1888
|
+
/** Notional amount of an IOI. */
|
|
1889
|
+
notionalAmount: number;
|
|
1890
|
+
/** Currency in which the IOI was submitted. Monark only accepts IOIs submitted in USD. */
|
|
1891
|
+
currency: string | undefined;
|
|
1892
|
+
}
|
|
1812
1893
|
export declare class CreateIndividualEntityInvestors implements ICreateIndividualEntityInvestors {
|
|
1813
1894
|
individualInvestors?: IndividualEntityInvestorBase[] | undefined;
|
|
1814
1895
|
constructor(data?: ICreateIndividualEntityInvestors);
|
|
@@ -2933,6 +3014,80 @@ export interface IIndicationOfInterestApiResponse {
|
|
|
2933
3014
|
items?: IndicationOfInterest[] | undefined;
|
|
2934
3015
|
pagination?: Pagination | undefined;
|
|
2935
3016
|
}
|
|
3017
|
+
/** IndicationOfInterestV2 represents the v2 generic IOI model supporting multiple asset types. */
|
|
3018
|
+
export declare class IndicationOfInterestV2 implements IIndicationOfInterestV2 {
|
|
3019
|
+
/** Unique ID associated with an IOI. */
|
|
3020
|
+
id?: string;
|
|
3021
|
+
/** 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. */
|
|
3022
|
+
investorId?: string;
|
|
3023
|
+
/** The unique ID of the target asset (company, fund, etc.) that the IoI request is for. */
|
|
3024
|
+
targetId?: string;
|
|
3025
|
+
/** The asset type of the target being invested in (PreIPOCompany, PrivateCompany, etc.) */
|
|
3026
|
+
targetAssetType?: IndicationOfInterestV2TargetAssetType;
|
|
3027
|
+
/** Optional number of clients represented in this IOI (for aggregated IOIs) */
|
|
3028
|
+
numberOfClients?: number | undefined;
|
|
3029
|
+
/** Notional amount of an IOI. */
|
|
3030
|
+
notionalAmount: number;
|
|
3031
|
+
/** Currency in which the IOI was submitted. Monark only accepts IOIs submitted in USD. */
|
|
3032
|
+
currency: string | undefined;
|
|
3033
|
+
/** Created at the specified date. */
|
|
3034
|
+
createdAt?: Date;
|
|
3035
|
+
/** Updated at the specified date. */
|
|
3036
|
+
updatedAt?: Date | undefined;
|
|
3037
|
+
/** Name of the Partner associated with an IOI. */
|
|
3038
|
+
partnerName?: string | undefined;
|
|
3039
|
+
/** The first name of the Investor. */
|
|
3040
|
+
investorFirstName?: string | undefined;
|
|
3041
|
+
/** The last name of the Investor. */
|
|
3042
|
+
investorLastName?: string | undefined;
|
|
3043
|
+
/** The name of the target asset (for display purposes). */
|
|
3044
|
+
targetName?: string | undefined;
|
|
3045
|
+
constructor(data?: IIndicationOfInterestV2);
|
|
3046
|
+
init(_data?: any): void;
|
|
3047
|
+
static fromJS(data: any): IndicationOfInterestV2;
|
|
3048
|
+
toJSON(data?: any): any;
|
|
3049
|
+
}
|
|
3050
|
+
/** IndicationOfInterestV2 represents the v2 generic IOI model supporting multiple asset types. */
|
|
3051
|
+
export interface IIndicationOfInterestV2 {
|
|
3052
|
+
/** Unique ID associated with an IOI. */
|
|
3053
|
+
id?: string;
|
|
3054
|
+
/** 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. */
|
|
3055
|
+
investorId?: string;
|
|
3056
|
+
/** The unique ID of the target asset (company, fund, etc.) that the IoI request is for. */
|
|
3057
|
+
targetId?: string;
|
|
3058
|
+
/** The asset type of the target being invested in (PreIPOCompany, PrivateCompany, etc.) */
|
|
3059
|
+
targetAssetType?: IndicationOfInterestV2TargetAssetType;
|
|
3060
|
+
/** Optional number of clients represented in this IOI (for aggregated IOIs) */
|
|
3061
|
+
numberOfClients?: number | undefined;
|
|
3062
|
+
/** Notional amount of an IOI. */
|
|
3063
|
+
notionalAmount: number;
|
|
3064
|
+
/** Currency in which the IOI was submitted. Monark only accepts IOIs submitted in USD. */
|
|
3065
|
+
currency: string | undefined;
|
|
3066
|
+
/** Created at the specified date. */
|
|
3067
|
+
createdAt?: Date;
|
|
3068
|
+
/** Updated at the specified date. */
|
|
3069
|
+
updatedAt?: Date | undefined;
|
|
3070
|
+
/** Name of the Partner associated with an IOI. */
|
|
3071
|
+
partnerName?: string | undefined;
|
|
3072
|
+
/** The first name of the Investor. */
|
|
3073
|
+
investorFirstName?: string | undefined;
|
|
3074
|
+
/** The last name of the Investor. */
|
|
3075
|
+
investorLastName?: string | undefined;
|
|
3076
|
+
/** The name of the target asset (for display purposes). */
|
|
3077
|
+
targetName?: string | undefined;
|
|
3078
|
+
}
|
|
3079
|
+
export declare class IndicationOfInterestV2ApiResponse implements IIndicationOfInterestV2ApiResponse {
|
|
3080
|
+
items?: IndicationOfInterestV2[] | undefined;
|
|
3081
|
+
pagination?: Pagination | undefined;
|
|
3082
|
+
constructor(data?: IIndicationOfInterestV2ApiResponse);
|
|
3083
|
+
init(_data?: any): void;
|
|
3084
|
+
static fromJS(data: any): IndicationOfInterestV2ApiResponse;
|
|
3085
|
+
toJSON(data?: any): any;
|
|
3086
|
+
}
|
|
3087
|
+
export interface IIndicationOfInterestV2ApiResponse {
|
|
3088
|
+
items?: IndicationOfInterestV2[] | undefined;
|
|
3089
|
+
pagination?: Pagination | undefined;
|
|
3090
|
+
}
|
|
2936
3091
|
export declare class IndividualEntityInvestor implements IIndividualEntityInvestor {
|
|
2937
3092
|
/** First name of the Investor. */
|
|
2938
3093
|
firstName: string | undefined;
|
|
@@ -7263,6 +7418,32 @@ export interface IUpdateIndicationOfInterest {
|
|
|
7263
7418
|
/** Currency in which the IOI was submitted. Monark only accepts IOIs submitted in USD. */
|
|
7264
7419
|
currency: string;
|
|
7265
7420
|
}
|
|
7421
|
+
/** UpdateIndicationOfInterestV2 represents the v2 request to update a generic IOI supporting multiple asset types. */
|
|
7422
|
+
export declare class UpdateIndicationOfInterestV2 implements IUpdateIndicationOfInterestV2 {
|
|
7423
|
+
/** Unique ID associated with an IOI. */
|
|
7424
|
+
id?: string;
|
|
7425
|
+
/** Optional number of clients represented in this IOI (for aggregated IOIs) */
|
|
7426
|
+
numberOfClients?: number | undefined;
|
|
7427
|
+
/** Notional amount of an IOI. */
|
|
7428
|
+
notionalAmount: number;
|
|
7429
|
+
/** Currency in which the IOI was submitted. Monark only accepts IOIs submitted in USD. */
|
|
7430
|
+
currency: string | undefined;
|
|
7431
|
+
constructor(data?: IUpdateIndicationOfInterestV2);
|
|
7432
|
+
init(_data?: any): void;
|
|
7433
|
+
static fromJS(data: any): UpdateIndicationOfInterestV2;
|
|
7434
|
+
toJSON(data?: any): any;
|
|
7435
|
+
}
|
|
7436
|
+
/** UpdateIndicationOfInterestV2 represents the v2 request to update a generic IOI supporting multiple asset types. */
|
|
7437
|
+
export interface IUpdateIndicationOfInterestV2 {
|
|
7438
|
+
/** Unique ID associated with an IOI. */
|
|
7439
|
+
id?: string;
|
|
7440
|
+
/** Optional number of clients represented in this IOI (for aggregated IOIs) */
|
|
7441
|
+
numberOfClients?: number | undefined;
|
|
7442
|
+
/** Notional amount of an IOI. */
|
|
7443
|
+
notionalAmount: number;
|
|
7444
|
+
/** Currency in which the IOI was submitted. Monark only accepts IOIs submitted in USD. */
|
|
7445
|
+
currency: string | undefined;
|
|
7446
|
+
}
|
|
7266
7447
|
export declare class UpdateIndividualEntityInvestor implements IUpdateIndividualEntityInvestor {
|
|
7267
7448
|
/** First name of the Investor. */
|
|
7268
7449
|
firstName: string;
|
|
@@ -7810,18 +7991,25 @@ export declare enum SortOrder3 {
|
|
|
7810
7991
|
export declare enum SortProperty {
|
|
7811
7992
|
UpdatedAt = "UpdatedAt",
|
|
7812
7993
|
CreatedAt = "CreatedAt",
|
|
7813
|
-
PreIpoValuation = "PreIpoValuation",
|
|
7814
|
-
PreIpoTotalFunding = "PreIpoTotalFunding",
|
|
7815
7994
|
NotionalAmount = "NotionalAmount"
|
|
7816
7995
|
}
|
|
7817
7996
|
export declare enum SortOrder4 {
|
|
7818
7997
|
Ascending = "Ascending",
|
|
7819
7998
|
Descending = "Descending"
|
|
7820
7999
|
}
|
|
8000
|
+
export declare enum SortProperty2 {
|
|
8001
|
+
UpdatedAt = "UpdatedAt",
|
|
8002
|
+
CreatedAt = "CreatedAt",
|
|
8003
|
+
NotionalAmount = "NotionalAmount"
|
|
8004
|
+
}
|
|
7821
8005
|
export declare enum SortOrder5 {
|
|
7822
8006
|
Ascending = "Ascending",
|
|
7823
8007
|
Descending = "Descending"
|
|
7824
8008
|
}
|
|
8009
|
+
export declare enum SortOrder6 {
|
|
8010
|
+
Ascending = "Ascending",
|
|
8011
|
+
Descending = "Descending"
|
|
8012
|
+
}
|
|
7825
8013
|
export declare enum InvestorStatus {
|
|
7826
8014
|
Pending = "Pending",
|
|
7827
8015
|
Limited = "Limited",
|
|
@@ -7835,7 +8023,7 @@ export declare enum Status {
|
|
|
7835
8023
|
Rejected = "Rejected",
|
|
7836
8024
|
Failed = "Failed"
|
|
7837
8025
|
}
|
|
7838
|
-
export declare enum
|
|
8026
|
+
export declare enum SortOrder7 {
|
|
7839
8027
|
Ascending = "Ascending",
|
|
7840
8028
|
Descending = "Descending"
|
|
7841
8029
|
}
|
|
@@ -7845,7 +8033,7 @@ export declare enum SortBy {
|
|
|
7845
8033
|
LastValuation = "LastValuation",
|
|
7846
8034
|
TotalFunding = "TotalFunding"
|
|
7847
8035
|
}
|
|
7848
|
-
export declare enum
|
|
8036
|
+
export declare enum SortOrder8 {
|
|
7849
8037
|
Ascending = "Ascending",
|
|
7850
8038
|
Descending = "Descending"
|
|
7851
8039
|
}
|
|
@@ -7861,10 +8049,6 @@ export declare enum Includes {
|
|
|
7861
8049
|
Investments = "Investments",
|
|
7862
8050
|
Spvs = "Spvs"
|
|
7863
8051
|
}
|
|
7864
|
-
export declare enum SortOrder8 {
|
|
7865
|
-
Ascending = "Ascending",
|
|
7866
|
-
Descending = "Descending"
|
|
7867
|
-
}
|
|
7868
8052
|
export declare enum SortOrder9 {
|
|
7869
8053
|
Ascending = "Ascending",
|
|
7870
8054
|
Descending = "Descending"
|
|
@@ -7877,6 +8061,10 @@ export declare enum SortOrder11 {
|
|
|
7877
8061
|
Ascending = "Ascending",
|
|
7878
8062
|
Descending = "Descending"
|
|
7879
8063
|
}
|
|
8064
|
+
export declare enum SortOrder12 {
|
|
8065
|
+
Ascending = "Ascending",
|
|
8066
|
+
Descending = "Descending"
|
|
8067
|
+
}
|
|
7880
8068
|
export declare enum ResearchType {
|
|
7881
8069
|
INTERVIEW = "INTERVIEW",
|
|
7882
8070
|
MARKET = "MARKET",
|
|
@@ -7927,7 +8115,7 @@ export declare enum ExemptionsClaimed {
|
|
|
7927
8115
|
SECURITIES_ACT_SECTION_3_c_14 = "SECURITIES_ACT_SECTION_3_c_14",
|
|
7928
8116
|
Reg_S = "Reg_S"
|
|
7929
8117
|
}
|
|
7930
|
-
export declare enum
|
|
8118
|
+
export declare enum SortOrder13 {
|
|
7931
8119
|
Ascending = "Ascending",
|
|
7932
8120
|
Descending = "Descending"
|
|
7933
8121
|
}
|
|
@@ -7941,10 +8129,6 @@ export declare enum SortBy2 {
|
|
|
7941
8129
|
Valuation = "Valuation",
|
|
7942
8130
|
MinCommitmentAmount = "MinCommitmentAmount"
|
|
7943
8131
|
}
|
|
7944
|
-
export declare enum SortOrder13 {
|
|
7945
|
-
Ascending = "Ascending",
|
|
7946
|
-
Descending = "Descending"
|
|
7947
|
-
}
|
|
7948
8132
|
export declare enum SortOrder14 {
|
|
7949
8133
|
Ascending = "Ascending",
|
|
7950
8134
|
Descending = "Descending"
|
|
@@ -7973,23 +8157,30 @@ export declare enum SortOrder20 {
|
|
|
7973
8157
|
Ascending = "Ascending",
|
|
7974
8158
|
Descending = "Descending"
|
|
7975
8159
|
}
|
|
8160
|
+
export declare enum SortOrder21 {
|
|
8161
|
+
Ascending = "Ascending",
|
|
8162
|
+
Descending = "Descending"
|
|
8163
|
+
}
|
|
7976
8164
|
export declare enum TargetAssetType {
|
|
7977
8165
|
PreIPOCompanySPV = "PreIPOCompanySPV",
|
|
7978
|
-
RegisteredFund = "RegisteredFund"
|
|
8166
|
+
RegisteredFund = "RegisteredFund",
|
|
8167
|
+
PreIPOCompany = "PreIPOCompany"
|
|
7979
8168
|
}
|
|
7980
8169
|
export declare enum TargetAssetType2 {
|
|
7981
8170
|
PreIPOCompanySPV = "PreIPOCompanySPV",
|
|
7982
|
-
RegisteredFund = "RegisteredFund"
|
|
8171
|
+
RegisteredFund = "RegisteredFund",
|
|
8172
|
+
PreIPOCompany = "PreIPOCompany"
|
|
7983
8173
|
}
|
|
7984
8174
|
export declare enum TargetAssetType3 {
|
|
7985
8175
|
PreIPOCompanySPV = "PreIPOCompanySPV",
|
|
7986
|
-
RegisteredFund = "RegisteredFund"
|
|
8176
|
+
RegisteredFund = "RegisteredFund",
|
|
8177
|
+
PreIPOCompany = "PreIPOCompany"
|
|
7987
8178
|
}
|
|
7988
|
-
export declare enum
|
|
8179
|
+
export declare enum SortOrder22 {
|
|
7989
8180
|
Ascending = "Ascending",
|
|
7990
8181
|
Descending = "Descending"
|
|
7991
8182
|
}
|
|
7992
|
-
export declare enum
|
|
8183
|
+
export declare enum SortOrder23 {
|
|
7993
8184
|
Ascending = "Ascending",
|
|
7994
8185
|
Descending = "Descending"
|
|
7995
8186
|
}
|
|
@@ -8111,6 +8302,7 @@ export declare enum ConstructorInfoMethodImplementationFlags {
|
|
|
8111
8302
|
AggressiveInlining = "AggressiveInlining",
|
|
8112
8303
|
AggressiveOptimization = "AggressiveOptimization",
|
|
8113
8304
|
InternalCall = "InternalCall",
|
|
8305
|
+
Async = "Async",
|
|
8114
8306
|
MaxMethodImplVal = "MaxMethodImplVal"
|
|
8115
8307
|
}
|
|
8116
8308
|
export declare enum ConstructorInfoCallingConvention {
|
|
@@ -8131,6 +8323,11 @@ export declare enum ConstructorInfoMemberType {
|
|
|
8131
8323
|
NestedType = "NestedType",
|
|
8132
8324
|
All = "All"
|
|
8133
8325
|
}
|
|
8326
|
+
export declare enum CreateIndicationOfInterestV2TargetAssetType {
|
|
8327
|
+
PreIPOCompanySPV = "PreIPOCompanySPV",
|
|
8328
|
+
RegisteredFund = "RegisteredFund",
|
|
8329
|
+
PreIPOCompany = "PreIPOCompany"
|
|
8330
|
+
}
|
|
8134
8331
|
export declare enum CreateInvestorType {
|
|
8135
8332
|
IndividualInvestor = "IndividualInvestor",
|
|
8136
8333
|
EntityInvestor = "EntityInvestor"
|
|
@@ -8153,7 +8350,8 @@ export declare enum CreateQuestionnaireQuestionFormat {
|
|
|
8153
8350
|
}
|
|
8154
8351
|
export declare enum CreateTransactionTargetAssetType {
|
|
8155
8352
|
PreIPOCompanySPV = "PreIPOCompanySPV",
|
|
8156
|
-
RegisteredFund = "RegisteredFund"
|
|
8353
|
+
RegisteredFund = "RegisteredFund",
|
|
8354
|
+
PreIPOCompany = "PreIPOCompany"
|
|
8157
8355
|
}
|
|
8158
8356
|
export declare enum CreateTransactionSide {
|
|
8159
8357
|
Subscription = "Subscription",
|
|
@@ -8315,6 +8513,11 @@ export declare enum FinancialInstitutionKycRequired {
|
|
|
8315
8513
|
export declare enum FundAdvisorRegistration {
|
|
8316
8514
|
RIA = "RIA"
|
|
8317
8515
|
}
|
|
8516
|
+
export declare enum IndicationOfInterestV2TargetAssetType {
|
|
8517
|
+
PreIPOCompanySPV = "PreIPOCompanySPV",
|
|
8518
|
+
RegisteredFund = "RegisteredFund",
|
|
8519
|
+
PreIPOCompany = "PreIPOCompany"
|
|
8520
|
+
}
|
|
8318
8521
|
export declare enum IndividualEntityInvestorQualifiedStatus {
|
|
8319
8522
|
QUALIFIED_PURCHASER = "QUALIFIED_PURCHASER",
|
|
8320
8523
|
QUALIFIED_CLIENT = "QUALIFIED_CLIENT",
|
|
@@ -8461,6 +8664,7 @@ export declare enum MethodBaseMethodImplementationFlags {
|
|
|
8461
8664
|
AggressiveInlining = "AggressiveInlining",
|
|
8462
8665
|
AggressiveOptimization = "AggressiveOptimization",
|
|
8463
8666
|
InternalCall = "InternalCall",
|
|
8667
|
+
Async = "Async",
|
|
8464
8668
|
MaxMethodImplVal = "MaxMethodImplVal"
|
|
8465
8669
|
}
|
|
8466
8670
|
export declare enum MethodBaseCallingConvention {
|
|
@@ -8508,6 +8712,7 @@ export declare enum MethodInfoMethodImplementationFlags {
|
|
|
8508
8712
|
AggressiveInlining = "AggressiveInlining",
|
|
8509
8713
|
AggressiveOptimization = "AggressiveOptimization",
|
|
8510
8714
|
InternalCall = "InternalCall",
|
|
8715
|
+
Async = "Async",
|
|
8511
8716
|
MaxMethodImplVal = "MaxMethodImplVal"
|
|
8512
8717
|
}
|
|
8513
8718
|
export declare enum MethodInfoCallingConvention {
|
|
@@ -8940,7 +9145,8 @@ export declare enum StructLayoutAttributeValue {
|
|
|
8940
9145
|
}
|
|
8941
9146
|
export declare enum TransactionTargetAssetType {
|
|
8942
9147
|
PreIPOCompanySPV = "PreIPOCompanySPV",
|
|
8943
|
-
RegisteredFund = "RegisteredFund"
|
|
9148
|
+
RegisteredFund = "RegisteredFund",
|
|
9149
|
+
PreIPOCompany = "PreIPOCompany"
|
|
8944
9150
|
}
|
|
8945
9151
|
export declare enum TransactionSide {
|
|
8946
9152
|
Subscription = "Subscription",
|
|
@@ -9147,11 +9353,13 @@ export declare enum UpdateTransactionSide {
|
|
|
9147
9353
|
}
|
|
9148
9354
|
export declare enum UpdateTransactionTargetAssetType {
|
|
9149
9355
|
PreIPOCompanySPV = "PreIPOCompanySPV",
|
|
9150
|
-
RegisteredFund = "RegisteredFund"
|
|
9356
|
+
RegisteredFund = "RegisteredFund",
|
|
9357
|
+
PreIPOCompany = "PreIPOCompany"
|
|
9151
9358
|
}
|
|
9152
9359
|
export declare enum UpdateTransactionReferenceTargetAssetType {
|
|
9153
9360
|
PreIPOCompanySPV = "PreIPOCompanySPV",
|
|
9154
|
-
RegisteredFund = "RegisteredFund"
|
|
9361
|
+
RegisteredFund = "RegisteredFund",
|
|
9362
|
+
PreIPOCompany = "PreIPOCompany"
|
|
9155
9363
|
}
|
|
9156
9364
|
export declare enum WebhookEventDeliveryStatus {
|
|
9157
9365
|
Pending = "Pending",
|
package/dist/Client.js
CHANGED
|
@@ -704,6 +704,7 @@ export class Client {
|
|
|
704
704
|
* Create an Indication of Interest
|
|
705
705
|
* @param body (optional) create IndicationOfInterest information.
|
|
706
706
|
* @return The newly created IndicationOfInterest.
|
|
707
|
+
* @deprecated
|
|
707
708
|
*/
|
|
708
709
|
createIndicationOfInterest(body) {
|
|
709
710
|
let url_ = this.baseUrl + "/primary/v1/indication-of-interest";
|
|
@@ -755,6 +756,7 @@ export class Client {
|
|
|
755
756
|
* Update an Indication of Interest
|
|
756
757
|
* @param body (optional) Update Indication of Interest information.
|
|
757
758
|
* @return The updated Indication of Interest.
|
|
759
|
+
* @deprecated
|
|
758
760
|
*/
|
|
759
761
|
updateIndicationOfInterest(body) {
|
|
760
762
|
let url_ = this.baseUrl + "/primary/v1/indication-of-interest";
|
|
@@ -821,6 +823,7 @@ export class Client {
|
|
|
821
823
|
* @param sortProperty (optional) Which property to sort by.
|
|
822
824
|
* @param sortOrder (optional) Which direction to sort by.
|
|
823
825
|
* @return Returns the list of IndicationOfInterest.
|
|
826
|
+
* @deprecated
|
|
824
827
|
*/
|
|
825
828
|
getAllIndicationOfInterests(searchTerm, investorId, page, pageSize, sortProperty, sortOrder) {
|
|
826
829
|
let url_ = this.baseUrl + "/primary/v1/indication-of-interest?";
|
|
@@ -885,6 +888,7 @@ export class Client {
|
|
|
885
888
|
* Delete an Indication of Interest by ID.
|
|
886
889
|
* @param id The ID of the Indication of Interest to delete.
|
|
887
890
|
* @return The Indication of Interest was successfully deleted.
|
|
891
|
+
* @deprecated
|
|
888
892
|
*/
|
|
889
893
|
deleteIndicationOfInterest(id) {
|
|
890
894
|
let url_ = this.baseUrl + "/primary/v1/indication-of-interest/{id}";
|
|
@@ -931,6 +935,7 @@ export class Client {
|
|
|
931
935
|
* Get an IndicationOfInterest by Id
|
|
932
936
|
* @param id Unique ID of the IOI to find.
|
|
933
937
|
* @return Returns the IndicationOfInterest with the specified Id.
|
|
938
|
+
* @deprecated
|
|
934
939
|
*/
|
|
935
940
|
getIndicationOfInterestById(id) {
|
|
936
941
|
let url_ = this.baseUrl + "/primary/v1/indication-of-interest/{id}";
|
|
@@ -978,6 +983,284 @@ export class Client {
|
|
|
978
983
|
}
|
|
979
984
|
return Promise.resolve(null);
|
|
980
985
|
}
|
|
986
|
+
/**
|
|
987
|
+
* Create an Indication of Interest
|
|
988
|
+
* @param body (optional) create IndicationOfInterest information.
|
|
989
|
+
* @return The newly created IndicationOfInterest.
|
|
990
|
+
*/
|
|
991
|
+
createIndicationOfInterestV2(body) {
|
|
992
|
+
let url_ = this.baseUrl + "/primary/v2/indication-of-interest";
|
|
993
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
994
|
+
const content_ = JSON.stringify(body);
|
|
995
|
+
let options_ = {
|
|
996
|
+
body: content_,
|
|
997
|
+
method: "POST",
|
|
998
|
+
headers: {
|
|
999
|
+
"Content-Type": "application/json",
|
|
1000
|
+
"Accept": "application/json"
|
|
1001
|
+
}
|
|
1002
|
+
};
|
|
1003
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
1004
|
+
return this.processCreateIndicationOfInterestV2(_response);
|
|
1005
|
+
});
|
|
1006
|
+
}
|
|
1007
|
+
processCreateIndicationOfInterestV2(response) {
|
|
1008
|
+
const status = response.status;
|
|
1009
|
+
let _headers = {};
|
|
1010
|
+
if (response.headers && response.headers.forEach) {
|
|
1011
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
1012
|
+
}
|
|
1013
|
+
;
|
|
1014
|
+
if (status === 201) {
|
|
1015
|
+
return response.text().then((_responseText) => {
|
|
1016
|
+
let result201 = null;
|
|
1017
|
+
let resultData201 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
1018
|
+
result201 = IndicationOfInterestV2.fromJS(resultData201);
|
|
1019
|
+
return result201;
|
|
1020
|
+
});
|
|
1021
|
+
}
|
|
1022
|
+
else if (status === 400) {
|
|
1023
|
+
return response.text().then((_responseText) => {
|
|
1024
|
+
let result400 = null;
|
|
1025
|
+
let resultData400 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
1026
|
+
result400 = ProblemDetails.fromJS(resultData400);
|
|
1027
|
+
return throwException("Bad request if required fields are missing.", status, _responseText, _headers, result400);
|
|
1028
|
+
});
|
|
1029
|
+
}
|
|
1030
|
+
else if (status !== 200 && status !== 204) {
|
|
1031
|
+
return response.text().then((_responseText) => {
|
|
1032
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
1033
|
+
});
|
|
1034
|
+
}
|
|
1035
|
+
return Promise.resolve(null);
|
|
1036
|
+
}
|
|
1037
|
+
/**
|
|
1038
|
+
* Update an Indication of Interest.
|
|
1039
|
+
* @param body (optional) Update Indication of Interest information.
|
|
1040
|
+
* @return The updated Indication of Interest.
|
|
1041
|
+
*/
|
|
1042
|
+
updateIndicationOfInterestV2(body) {
|
|
1043
|
+
let url_ = this.baseUrl + "/primary/v2/indication-of-interest";
|
|
1044
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
1045
|
+
const content_ = JSON.stringify(body);
|
|
1046
|
+
let options_ = {
|
|
1047
|
+
body: content_,
|
|
1048
|
+
method: "PUT",
|
|
1049
|
+
headers: {
|
|
1050
|
+
"Content-Type": "application/json",
|
|
1051
|
+
"Accept": "application/json"
|
|
1052
|
+
}
|
|
1053
|
+
};
|
|
1054
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
1055
|
+
return this.processUpdateIndicationOfInterestV2(_response);
|
|
1056
|
+
});
|
|
1057
|
+
}
|
|
1058
|
+
processUpdateIndicationOfInterestV2(response) {
|
|
1059
|
+
const status = response.status;
|
|
1060
|
+
let _headers = {};
|
|
1061
|
+
if (response.headers && response.headers.forEach) {
|
|
1062
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
1063
|
+
}
|
|
1064
|
+
;
|
|
1065
|
+
if (status === 200) {
|
|
1066
|
+
return response.text().then((_responseText) => {
|
|
1067
|
+
let result200 = null;
|
|
1068
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
1069
|
+
result200 = IndicationOfInterestV2.fromJS(resultData200);
|
|
1070
|
+
return result200;
|
|
1071
|
+
});
|
|
1072
|
+
}
|
|
1073
|
+
else if (status === 400) {
|
|
1074
|
+
return response.text().then((_responseText) => {
|
|
1075
|
+
let result400 = null;
|
|
1076
|
+
let resultData400 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
1077
|
+
result400 = ProblemDetails.fromJS(resultData400);
|
|
1078
|
+
return throwException("Bad request if required fields are missing.", status, _responseText, _headers, result400);
|
|
1079
|
+
});
|
|
1080
|
+
}
|
|
1081
|
+
else if (status === 404) {
|
|
1082
|
+
return response.text().then((_responseText) => {
|
|
1083
|
+
let result404 = null;
|
|
1084
|
+
let resultData404 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
1085
|
+
result404 = ProblemDetails.fromJS(resultData404);
|
|
1086
|
+
return throwException("Not found if the Indication of Interest does not exist.", status, _responseText, _headers, result404);
|
|
1087
|
+
});
|
|
1088
|
+
}
|
|
1089
|
+
else if (status !== 200 && status !== 204) {
|
|
1090
|
+
return response.text().then((_responseText) => {
|
|
1091
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
1092
|
+
});
|
|
1093
|
+
}
|
|
1094
|
+
return Promise.resolve(null);
|
|
1095
|
+
}
|
|
1096
|
+
/**
|
|
1097
|
+
* Get all IndicationOfInterests.
|
|
1098
|
+
* @param searchTerm (optional) Optional search term on the company/target name.
|
|
1099
|
+
* @param investorId (optional) Filter the returned IndicationOfInterests by an InvestorId.
|
|
1100
|
+
* @param page (optional) Number of the page to retrieve.
|
|
1101
|
+
Defaults to 1 if not specified.
|
|
1102
|
+
* @param pageSize (optional) Size of the page to retrieve.
|
|
1103
|
+
Defaults to 25 if not specified.
|
|
1104
|
+
* @param sortProperty (optional) Which property to sort by.
|
|
1105
|
+
* @param sortOrder (optional) Which direction to sort by.
|
|
1106
|
+
* @return Returns the list of IndicationOfInterest.
|
|
1107
|
+
*/
|
|
1108
|
+
getAllIndicationOfInterestsV2(searchTerm, investorId, page, pageSize, sortProperty, sortOrder) {
|
|
1109
|
+
let url_ = this.baseUrl + "/primary/v2/indication-of-interest?";
|
|
1110
|
+
if (searchTerm === null)
|
|
1111
|
+
throw new globalThis.Error("The parameter 'searchTerm' cannot be null.");
|
|
1112
|
+
else if (searchTerm !== undefined)
|
|
1113
|
+
url_ += "searchTerm=" + encodeURIComponent("" + searchTerm) + "&";
|
|
1114
|
+
if (investorId === null)
|
|
1115
|
+
throw new globalThis.Error("The parameter 'investorId' cannot be null.");
|
|
1116
|
+
else if (investorId !== undefined)
|
|
1117
|
+
url_ += "investorId=" + encodeURIComponent("" + investorId) + "&";
|
|
1118
|
+
if (page === null)
|
|
1119
|
+
throw new globalThis.Error("The parameter 'page' cannot be null.");
|
|
1120
|
+
else if (page !== undefined)
|
|
1121
|
+
url_ += "page=" + encodeURIComponent("" + page) + "&";
|
|
1122
|
+
if (pageSize === null)
|
|
1123
|
+
throw new globalThis.Error("The parameter 'pageSize' cannot be null.");
|
|
1124
|
+
else if (pageSize !== undefined)
|
|
1125
|
+
url_ += "pageSize=" + encodeURIComponent("" + pageSize) + "&";
|
|
1126
|
+
if (sortProperty === null)
|
|
1127
|
+
throw new globalThis.Error("The parameter 'sortProperty' cannot be null.");
|
|
1128
|
+
else if (sortProperty !== undefined)
|
|
1129
|
+
url_ += "sortProperty=" + encodeURIComponent("" + sortProperty) + "&";
|
|
1130
|
+
if (sortOrder === null)
|
|
1131
|
+
throw new globalThis.Error("The parameter 'sortOrder' cannot be null.");
|
|
1132
|
+
else if (sortOrder !== undefined)
|
|
1133
|
+
url_ += "sortOrder=" + encodeURIComponent("" + sortOrder) + "&";
|
|
1134
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
1135
|
+
let options_ = {
|
|
1136
|
+
method: "GET",
|
|
1137
|
+
headers: {
|
|
1138
|
+
"Accept": "application/json"
|
|
1139
|
+
}
|
|
1140
|
+
};
|
|
1141
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
1142
|
+
return this.processGetAllIndicationOfInterestsV2(_response);
|
|
1143
|
+
});
|
|
1144
|
+
}
|
|
1145
|
+
processGetAllIndicationOfInterestsV2(response) {
|
|
1146
|
+
const status = response.status;
|
|
1147
|
+
let _headers = {};
|
|
1148
|
+
if (response.headers && response.headers.forEach) {
|
|
1149
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
1150
|
+
}
|
|
1151
|
+
;
|
|
1152
|
+
if (status === 200) {
|
|
1153
|
+
return response.text().then((_responseText) => {
|
|
1154
|
+
let result200 = null;
|
|
1155
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
1156
|
+
result200 = IndicationOfInterestV2ApiResponse.fromJS(resultData200);
|
|
1157
|
+
return result200;
|
|
1158
|
+
});
|
|
1159
|
+
}
|
|
1160
|
+
else if (status !== 200 && status !== 204) {
|
|
1161
|
+
return response.text().then((_responseText) => {
|
|
1162
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
1163
|
+
});
|
|
1164
|
+
}
|
|
1165
|
+
return Promise.resolve(null);
|
|
1166
|
+
}
|
|
1167
|
+
/**
|
|
1168
|
+
* Get an IndicationOfInterest by Id.
|
|
1169
|
+
* @param id Unique ID of the IOI to find.
|
|
1170
|
+
* @return Returns the IndicationOfInterest with the specified Id.
|
|
1171
|
+
*/
|
|
1172
|
+
getIndicationOfInterestByIdV2(id) {
|
|
1173
|
+
let url_ = this.baseUrl + "/primary/v2/indication-of-interest/{id}";
|
|
1174
|
+
if (id === undefined || id === null)
|
|
1175
|
+
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
1176
|
+
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
1177
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
1178
|
+
let options_ = {
|
|
1179
|
+
method: "GET",
|
|
1180
|
+
headers: {
|
|
1181
|
+
"Accept": "application/json"
|
|
1182
|
+
}
|
|
1183
|
+
};
|
|
1184
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
1185
|
+
return this.processGetIndicationOfInterestByIdV2(_response);
|
|
1186
|
+
});
|
|
1187
|
+
}
|
|
1188
|
+
processGetIndicationOfInterestByIdV2(response) {
|
|
1189
|
+
const status = response.status;
|
|
1190
|
+
let _headers = {};
|
|
1191
|
+
if (response.headers && response.headers.forEach) {
|
|
1192
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
1193
|
+
}
|
|
1194
|
+
;
|
|
1195
|
+
if (status === 200) {
|
|
1196
|
+
return response.text().then((_responseText) => {
|
|
1197
|
+
let result200 = null;
|
|
1198
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
1199
|
+
result200 = IndicationOfInterestV2.fromJS(resultData200);
|
|
1200
|
+
return result200;
|
|
1201
|
+
});
|
|
1202
|
+
}
|
|
1203
|
+
else if (status === 404) {
|
|
1204
|
+
return response.text().then((_responseText) => {
|
|
1205
|
+
let result404 = null;
|
|
1206
|
+
let resultData404 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
1207
|
+
result404 = ProblemDetails.fromJS(resultData404);
|
|
1208
|
+
return throwException("IndicationOfInterest not found.", status, _responseText, _headers, result404);
|
|
1209
|
+
});
|
|
1210
|
+
}
|
|
1211
|
+
else if (status !== 200 && status !== 204) {
|
|
1212
|
+
return response.text().then((_responseText) => {
|
|
1213
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
1214
|
+
});
|
|
1215
|
+
}
|
|
1216
|
+
return Promise.resolve(null);
|
|
1217
|
+
}
|
|
1218
|
+
/**
|
|
1219
|
+
* Delete an Indication of Interest by ID.
|
|
1220
|
+
* @param id The ID of the Indication of Interest to delete.
|
|
1221
|
+
* @return The Indication of Interest was successfully deleted.
|
|
1222
|
+
*/
|
|
1223
|
+
deleteIndicationOfInterestV2(id) {
|
|
1224
|
+
let url_ = this.baseUrl + "/primary/v2/indication-of-interest/{id}";
|
|
1225
|
+
if (id === undefined || id === null)
|
|
1226
|
+
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
1227
|
+
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
1228
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
1229
|
+
let options_ = {
|
|
1230
|
+
method: "DELETE",
|
|
1231
|
+
headers: {}
|
|
1232
|
+
};
|
|
1233
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
1234
|
+
return this.processDeleteIndicationOfInterestV2(_response);
|
|
1235
|
+
});
|
|
1236
|
+
}
|
|
1237
|
+
processDeleteIndicationOfInterestV2(response) {
|
|
1238
|
+
const status = response.status;
|
|
1239
|
+
let _headers = {};
|
|
1240
|
+
if (response.headers && response.headers.forEach) {
|
|
1241
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
1242
|
+
}
|
|
1243
|
+
;
|
|
1244
|
+
if (status === 204) {
|
|
1245
|
+
return response.text().then((_responseText) => {
|
|
1246
|
+
return;
|
|
1247
|
+
});
|
|
1248
|
+
}
|
|
1249
|
+
else if (status === 404) {
|
|
1250
|
+
return response.text().then((_responseText) => {
|
|
1251
|
+
let result404 = null;
|
|
1252
|
+
let resultData404 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
1253
|
+
result404 = ProblemDetails.fromJS(resultData404);
|
|
1254
|
+
return throwException("Not found if the Indication of Interest does not exist.", status, _responseText, _headers, result404);
|
|
1255
|
+
});
|
|
1256
|
+
}
|
|
1257
|
+
else if (status !== 200 && status !== 204) {
|
|
1258
|
+
return response.text().then((_responseText) => {
|
|
1259
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
1260
|
+
});
|
|
1261
|
+
}
|
|
1262
|
+
return Promise.resolve(null);
|
|
1263
|
+
}
|
|
981
1264
|
/**
|
|
982
1265
|
* Create an Investor.
|
|
983
1266
|
* @param body (optional) create Investor information.
|
|
@@ -8446,6 +8729,43 @@ export class CreateIndicationOfInterest {
|
|
|
8446
8729
|
return data;
|
|
8447
8730
|
}
|
|
8448
8731
|
}
|
|
8732
|
+
/** CreateIndicationOfInterestV2 represents the v2 request to create a generic IOI supporting multiple asset types. */
|
|
8733
|
+
export class CreateIndicationOfInterestV2 {
|
|
8734
|
+
constructor(data) {
|
|
8735
|
+
if (data) {
|
|
8736
|
+
for (var property in data) {
|
|
8737
|
+
if (data.hasOwnProperty(property))
|
|
8738
|
+
this[property] = data[property];
|
|
8739
|
+
}
|
|
8740
|
+
}
|
|
8741
|
+
}
|
|
8742
|
+
init(_data) {
|
|
8743
|
+
if (_data) {
|
|
8744
|
+
this.investorId = _data["investorId"];
|
|
8745
|
+
this.targetId = _data["targetId"];
|
|
8746
|
+
this.targetAssetType = _data["targetAssetType"];
|
|
8747
|
+
this.numberOfClients = _data["numberOfClients"];
|
|
8748
|
+
this.notionalAmount = _data["notionalAmount"];
|
|
8749
|
+
this.currency = _data["currency"];
|
|
8750
|
+
}
|
|
8751
|
+
}
|
|
8752
|
+
static fromJS(data) {
|
|
8753
|
+
data = typeof data === 'object' ? data : {};
|
|
8754
|
+
let result = new CreateIndicationOfInterestV2();
|
|
8755
|
+
result.init(data);
|
|
8756
|
+
return result;
|
|
8757
|
+
}
|
|
8758
|
+
toJSON(data) {
|
|
8759
|
+
data = typeof data === 'object' ? data : {};
|
|
8760
|
+
data["investorId"] = this.investorId;
|
|
8761
|
+
data["targetId"] = this.targetId;
|
|
8762
|
+
data["targetAssetType"] = this.targetAssetType;
|
|
8763
|
+
data["numberOfClients"] = this.numberOfClients;
|
|
8764
|
+
data["notionalAmount"] = this.notionalAmount;
|
|
8765
|
+
data["currency"] = this.currency;
|
|
8766
|
+
return data;
|
|
8767
|
+
}
|
|
8768
|
+
}
|
|
8449
8769
|
export class CreateIndividualEntityInvestors {
|
|
8450
8770
|
constructor(data) {
|
|
8451
8771
|
if (data) {
|
|
@@ -9901,6 +10221,93 @@ export class IndicationOfInterestApiResponse {
|
|
|
9901
10221
|
return data;
|
|
9902
10222
|
}
|
|
9903
10223
|
}
|
|
10224
|
+
/** IndicationOfInterestV2 represents the v2 generic IOI model supporting multiple asset types. */
|
|
10225
|
+
export class IndicationOfInterestV2 {
|
|
10226
|
+
constructor(data) {
|
|
10227
|
+
if (data) {
|
|
10228
|
+
for (var property in data) {
|
|
10229
|
+
if (data.hasOwnProperty(property))
|
|
10230
|
+
this[property] = data[property];
|
|
10231
|
+
}
|
|
10232
|
+
}
|
|
10233
|
+
}
|
|
10234
|
+
init(_data) {
|
|
10235
|
+
if (_data) {
|
|
10236
|
+
this.id = _data["id"];
|
|
10237
|
+
this.investorId = _data["investorId"];
|
|
10238
|
+
this.targetId = _data["targetId"];
|
|
10239
|
+
this.targetAssetType = _data["targetAssetType"];
|
|
10240
|
+
this.numberOfClients = _data["numberOfClients"];
|
|
10241
|
+
this.notionalAmount = _data["notionalAmount"];
|
|
10242
|
+
this.currency = _data["currency"];
|
|
10243
|
+
this.createdAt = _data["createdAt"] ? new Date(_data["createdAt"].toString()) : undefined;
|
|
10244
|
+
this.updatedAt = _data["updatedAt"] ? new Date(_data["updatedAt"].toString()) : undefined;
|
|
10245
|
+
this.partnerName = _data["partnerName"];
|
|
10246
|
+
this.investorFirstName = _data["investorFirstName"];
|
|
10247
|
+
this.investorLastName = _data["investorLastName"];
|
|
10248
|
+
this.targetName = _data["targetName"];
|
|
10249
|
+
}
|
|
10250
|
+
}
|
|
10251
|
+
static fromJS(data) {
|
|
10252
|
+
data = typeof data === 'object' ? data : {};
|
|
10253
|
+
let result = new IndicationOfInterestV2();
|
|
10254
|
+
result.init(data);
|
|
10255
|
+
return result;
|
|
10256
|
+
}
|
|
10257
|
+
toJSON(data) {
|
|
10258
|
+
data = typeof data === 'object' ? data : {};
|
|
10259
|
+
data["id"] = this.id;
|
|
10260
|
+
data["investorId"] = this.investorId;
|
|
10261
|
+
data["targetId"] = this.targetId;
|
|
10262
|
+
data["targetAssetType"] = this.targetAssetType;
|
|
10263
|
+
data["numberOfClients"] = this.numberOfClients;
|
|
10264
|
+
data["notionalAmount"] = this.notionalAmount;
|
|
10265
|
+
data["currency"] = this.currency;
|
|
10266
|
+
data["createdAt"] = this.createdAt ? this.createdAt.toISOString() : undefined;
|
|
10267
|
+
data["updatedAt"] = this.updatedAt ? this.updatedAt.toISOString() : undefined;
|
|
10268
|
+
data["partnerName"] = this.partnerName;
|
|
10269
|
+
data["investorFirstName"] = this.investorFirstName;
|
|
10270
|
+
data["investorLastName"] = this.investorLastName;
|
|
10271
|
+
data["targetName"] = this.targetName;
|
|
10272
|
+
return data;
|
|
10273
|
+
}
|
|
10274
|
+
}
|
|
10275
|
+
export class IndicationOfInterestV2ApiResponse {
|
|
10276
|
+
constructor(data) {
|
|
10277
|
+
if (data) {
|
|
10278
|
+
for (var property in data) {
|
|
10279
|
+
if (data.hasOwnProperty(property))
|
|
10280
|
+
this[property] = data[property];
|
|
10281
|
+
}
|
|
10282
|
+
}
|
|
10283
|
+
}
|
|
10284
|
+
init(_data) {
|
|
10285
|
+
if (_data) {
|
|
10286
|
+
if (Array.isArray(_data["items"])) {
|
|
10287
|
+
this.items = [];
|
|
10288
|
+
for (let item of _data["items"])
|
|
10289
|
+
this.items.push(IndicationOfInterestV2.fromJS(item));
|
|
10290
|
+
}
|
|
10291
|
+
this.pagination = _data["pagination"] ? Pagination.fromJS(_data["pagination"]) : undefined;
|
|
10292
|
+
}
|
|
10293
|
+
}
|
|
10294
|
+
static fromJS(data) {
|
|
10295
|
+
data = typeof data === 'object' ? data : {};
|
|
10296
|
+
let result = new IndicationOfInterestV2ApiResponse();
|
|
10297
|
+
result.init(data);
|
|
10298
|
+
return result;
|
|
10299
|
+
}
|
|
10300
|
+
toJSON(data) {
|
|
10301
|
+
data = typeof data === 'object' ? data : {};
|
|
10302
|
+
if (Array.isArray(this.items)) {
|
|
10303
|
+
data["items"] = [];
|
|
10304
|
+
for (let item of this.items)
|
|
10305
|
+
data["items"].push(item ? item.toJSON() : undefined);
|
|
10306
|
+
}
|
|
10307
|
+
data["pagination"] = this.pagination ? this.pagination.toJSON() : undefined;
|
|
10308
|
+
return data;
|
|
10309
|
+
}
|
|
10310
|
+
}
|
|
9904
10311
|
export class IndividualEntityInvestor {
|
|
9905
10312
|
constructor(data) {
|
|
9906
10313
|
if (data) {
|
|
@@ -14698,6 +15105,39 @@ export class UpdateIndicationOfInterest {
|
|
|
14698
15105
|
return data;
|
|
14699
15106
|
}
|
|
14700
15107
|
}
|
|
15108
|
+
/** UpdateIndicationOfInterestV2 represents the v2 request to update a generic IOI supporting multiple asset types. */
|
|
15109
|
+
export class UpdateIndicationOfInterestV2 {
|
|
15110
|
+
constructor(data) {
|
|
15111
|
+
if (data) {
|
|
15112
|
+
for (var property in data) {
|
|
15113
|
+
if (data.hasOwnProperty(property))
|
|
15114
|
+
this[property] = data[property];
|
|
15115
|
+
}
|
|
15116
|
+
}
|
|
15117
|
+
}
|
|
15118
|
+
init(_data) {
|
|
15119
|
+
if (_data) {
|
|
15120
|
+
this.id = _data["id"];
|
|
15121
|
+
this.numberOfClients = _data["numberOfClients"];
|
|
15122
|
+
this.notionalAmount = _data["notionalAmount"];
|
|
15123
|
+
this.currency = _data["currency"];
|
|
15124
|
+
}
|
|
15125
|
+
}
|
|
15126
|
+
static fromJS(data) {
|
|
15127
|
+
data = typeof data === 'object' ? data : {};
|
|
15128
|
+
let result = new UpdateIndicationOfInterestV2();
|
|
15129
|
+
result.init(data);
|
|
15130
|
+
return result;
|
|
15131
|
+
}
|
|
15132
|
+
toJSON(data) {
|
|
15133
|
+
data = typeof data === 'object' ? data : {};
|
|
15134
|
+
data["id"] = this.id;
|
|
15135
|
+
data["numberOfClients"] = this.numberOfClients;
|
|
15136
|
+
data["notionalAmount"] = this.notionalAmount;
|
|
15137
|
+
data["currency"] = this.currency;
|
|
15138
|
+
return data;
|
|
15139
|
+
}
|
|
15140
|
+
}
|
|
14701
15141
|
export class UpdateIndividualEntityInvestor {
|
|
14702
15142
|
constructor(data) {
|
|
14703
15143
|
if (data) {
|
|
@@ -15335,8 +15775,6 @@ export var SortProperty;
|
|
|
15335
15775
|
(function (SortProperty) {
|
|
15336
15776
|
SortProperty["UpdatedAt"] = "UpdatedAt";
|
|
15337
15777
|
SortProperty["CreatedAt"] = "CreatedAt";
|
|
15338
|
-
SortProperty["PreIpoValuation"] = "PreIpoValuation";
|
|
15339
|
-
SortProperty["PreIpoTotalFunding"] = "PreIpoTotalFunding";
|
|
15340
15778
|
SortProperty["NotionalAmount"] = "NotionalAmount";
|
|
15341
15779
|
})(SortProperty || (SortProperty = {}));
|
|
15342
15780
|
export var SortOrder4;
|
|
@@ -15344,11 +15782,22 @@ export var SortOrder4;
|
|
|
15344
15782
|
SortOrder4["Ascending"] = "Ascending";
|
|
15345
15783
|
SortOrder4["Descending"] = "Descending";
|
|
15346
15784
|
})(SortOrder4 || (SortOrder4 = {}));
|
|
15785
|
+
export var SortProperty2;
|
|
15786
|
+
(function (SortProperty2) {
|
|
15787
|
+
SortProperty2["UpdatedAt"] = "UpdatedAt";
|
|
15788
|
+
SortProperty2["CreatedAt"] = "CreatedAt";
|
|
15789
|
+
SortProperty2["NotionalAmount"] = "NotionalAmount";
|
|
15790
|
+
})(SortProperty2 || (SortProperty2 = {}));
|
|
15347
15791
|
export var SortOrder5;
|
|
15348
15792
|
(function (SortOrder5) {
|
|
15349
15793
|
SortOrder5["Ascending"] = "Ascending";
|
|
15350
15794
|
SortOrder5["Descending"] = "Descending";
|
|
15351
15795
|
})(SortOrder5 || (SortOrder5 = {}));
|
|
15796
|
+
export var SortOrder6;
|
|
15797
|
+
(function (SortOrder6) {
|
|
15798
|
+
SortOrder6["Ascending"] = "Ascending";
|
|
15799
|
+
SortOrder6["Descending"] = "Descending";
|
|
15800
|
+
})(SortOrder6 || (SortOrder6 = {}));
|
|
15352
15801
|
export var InvestorStatus;
|
|
15353
15802
|
(function (InvestorStatus) {
|
|
15354
15803
|
InvestorStatus["Pending"] = "Pending";
|
|
@@ -15364,11 +15813,11 @@ export var Status;
|
|
|
15364
15813
|
Status["Rejected"] = "Rejected";
|
|
15365
15814
|
Status["Failed"] = "Failed";
|
|
15366
15815
|
})(Status || (Status = {}));
|
|
15367
|
-
export var
|
|
15368
|
-
(function (
|
|
15369
|
-
|
|
15370
|
-
|
|
15371
|
-
})(
|
|
15816
|
+
export var SortOrder7;
|
|
15817
|
+
(function (SortOrder7) {
|
|
15818
|
+
SortOrder7["Ascending"] = "Ascending";
|
|
15819
|
+
SortOrder7["Descending"] = "Descending";
|
|
15820
|
+
})(SortOrder7 || (SortOrder7 = {}));
|
|
15372
15821
|
export var SortBy;
|
|
15373
15822
|
(function (SortBy) {
|
|
15374
15823
|
SortBy["UpdatedAt"] = "UpdatedAt";
|
|
@@ -15376,11 +15825,11 @@ export var SortBy;
|
|
|
15376
15825
|
SortBy["LastValuation"] = "LastValuation";
|
|
15377
15826
|
SortBy["TotalFunding"] = "TotalFunding";
|
|
15378
15827
|
})(SortBy || (SortBy = {}));
|
|
15379
|
-
export var
|
|
15380
|
-
(function (
|
|
15381
|
-
|
|
15382
|
-
|
|
15383
|
-
})(
|
|
15828
|
+
export var SortOrder8;
|
|
15829
|
+
(function (SortOrder8) {
|
|
15830
|
+
SortOrder8["Ascending"] = "Ascending";
|
|
15831
|
+
SortOrder8["Descending"] = "Descending";
|
|
15832
|
+
})(SortOrder8 || (SortOrder8 = {}));
|
|
15384
15833
|
export var FilterBy;
|
|
15385
15834
|
(function (FilterBy) {
|
|
15386
15835
|
FilterBy["Company"] = "Company";
|
|
@@ -15395,11 +15844,6 @@ export var Includes;
|
|
|
15395
15844
|
Includes["Investments"] = "Investments";
|
|
15396
15845
|
Includes["Spvs"] = "Spvs";
|
|
15397
15846
|
})(Includes || (Includes = {}));
|
|
15398
|
-
export var SortOrder8;
|
|
15399
|
-
(function (SortOrder8) {
|
|
15400
|
-
SortOrder8["Ascending"] = "Ascending";
|
|
15401
|
-
SortOrder8["Descending"] = "Descending";
|
|
15402
|
-
})(SortOrder8 || (SortOrder8 = {}));
|
|
15403
15847
|
export var SortOrder9;
|
|
15404
15848
|
(function (SortOrder9) {
|
|
15405
15849
|
SortOrder9["Ascending"] = "Ascending";
|
|
@@ -15415,6 +15859,11 @@ export var SortOrder11;
|
|
|
15415
15859
|
SortOrder11["Ascending"] = "Ascending";
|
|
15416
15860
|
SortOrder11["Descending"] = "Descending";
|
|
15417
15861
|
})(SortOrder11 || (SortOrder11 = {}));
|
|
15862
|
+
export var SortOrder12;
|
|
15863
|
+
(function (SortOrder12) {
|
|
15864
|
+
SortOrder12["Ascending"] = "Ascending";
|
|
15865
|
+
SortOrder12["Descending"] = "Descending";
|
|
15866
|
+
})(SortOrder12 || (SortOrder12 = {}));
|
|
15418
15867
|
export var ResearchType;
|
|
15419
15868
|
(function (ResearchType) {
|
|
15420
15869
|
ResearchType["INTERVIEW"] = "INTERVIEW";
|
|
@@ -15469,11 +15918,11 @@ export var ExemptionsClaimed;
|
|
|
15469
15918
|
ExemptionsClaimed["SECURITIES_ACT_SECTION_3_c_14"] = "SECURITIES_ACT_SECTION_3_c_14";
|
|
15470
15919
|
ExemptionsClaimed["Reg_S"] = "Reg_S";
|
|
15471
15920
|
})(ExemptionsClaimed || (ExemptionsClaimed = {}));
|
|
15472
|
-
export var
|
|
15473
|
-
(function (
|
|
15474
|
-
|
|
15475
|
-
|
|
15476
|
-
})(
|
|
15921
|
+
export var SortOrder13;
|
|
15922
|
+
(function (SortOrder13) {
|
|
15923
|
+
SortOrder13["Ascending"] = "Ascending";
|
|
15924
|
+
SortOrder13["Descending"] = "Descending";
|
|
15925
|
+
})(SortOrder13 || (SortOrder13 = {}));
|
|
15477
15926
|
export var SortBy2;
|
|
15478
15927
|
(function (SortBy2) {
|
|
15479
15928
|
SortBy2["UpdatedAt"] = "UpdatedAt";
|
|
@@ -15485,11 +15934,6 @@ export var SortBy2;
|
|
|
15485
15934
|
SortBy2["Valuation"] = "Valuation";
|
|
15486
15935
|
SortBy2["MinCommitmentAmount"] = "MinCommitmentAmount";
|
|
15487
15936
|
})(SortBy2 || (SortBy2 = {}));
|
|
15488
|
-
export var SortOrder13;
|
|
15489
|
-
(function (SortOrder13) {
|
|
15490
|
-
SortOrder13["Ascending"] = "Ascending";
|
|
15491
|
-
SortOrder13["Descending"] = "Descending";
|
|
15492
|
-
})(SortOrder13 || (SortOrder13 = {}));
|
|
15493
15937
|
export var SortOrder14;
|
|
15494
15938
|
(function (SortOrder14) {
|
|
15495
15939
|
SortOrder14["Ascending"] = "Ascending";
|
|
@@ -15525,31 +15969,39 @@ export var SortOrder20;
|
|
|
15525
15969
|
SortOrder20["Ascending"] = "Ascending";
|
|
15526
15970
|
SortOrder20["Descending"] = "Descending";
|
|
15527
15971
|
})(SortOrder20 || (SortOrder20 = {}));
|
|
15972
|
+
export var SortOrder21;
|
|
15973
|
+
(function (SortOrder21) {
|
|
15974
|
+
SortOrder21["Ascending"] = "Ascending";
|
|
15975
|
+
SortOrder21["Descending"] = "Descending";
|
|
15976
|
+
})(SortOrder21 || (SortOrder21 = {}));
|
|
15528
15977
|
export var TargetAssetType;
|
|
15529
15978
|
(function (TargetAssetType) {
|
|
15530
15979
|
TargetAssetType["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
15531
15980
|
TargetAssetType["RegisteredFund"] = "RegisteredFund";
|
|
15981
|
+
TargetAssetType["PreIPOCompany"] = "PreIPOCompany";
|
|
15532
15982
|
})(TargetAssetType || (TargetAssetType = {}));
|
|
15533
15983
|
export var TargetAssetType2;
|
|
15534
15984
|
(function (TargetAssetType2) {
|
|
15535
15985
|
TargetAssetType2["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
15536
15986
|
TargetAssetType2["RegisteredFund"] = "RegisteredFund";
|
|
15987
|
+
TargetAssetType2["PreIPOCompany"] = "PreIPOCompany";
|
|
15537
15988
|
})(TargetAssetType2 || (TargetAssetType2 = {}));
|
|
15538
15989
|
export var TargetAssetType3;
|
|
15539
15990
|
(function (TargetAssetType3) {
|
|
15540
15991
|
TargetAssetType3["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
15541
15992
|
TargetAssetType3["RegisteredFund"] = "RegisteredFund";
|
|
15993
|
+
TargetAssetType3["PreIPOCompany"] = "PreIPOCompany";
|
|
15542
15994
|
})(TargetAssetType3 || (TargetAssetType3 = {}));
|
|
15543
|
-
export var SortOrder21;
|
|
15544
|
-
(function (SortOrder21) {
|
|
15545
|
-
SortOrder21["Ascending"] = "Ascending";
|
|
15546
|
-
SortOrder21["Descending"] = "Descending";
|
|
15547
|
-
})(SortOrder21 || (SortOrder21 = {}));
|
|
15548
15995
|
export var SortOrder22;
|
|
15549
15996
|
(function (SortOrder22) {
|
|
15550
15997
|
SortOrder22["Ascending"] = "Ascending";
|
|
15551
15998
|
SortOrder22["Descending"] = "Descending";
|
|
15552
15999
|
})(SortOrder22 || (SortOrder22 = {}));
|
|
16000
|
+
export var SortOrder23;
|
|
16001
|
+
(function (SortOrder23) {
|
|
16002
|
+
SortOrder23["Ascending"] = "Ascending";
|
|
16003
|
+
SortOrder23["Descending"] = "Descending";
|
|
16004
|
+
})(SortOrder23 || (SortOrder23 = {}));
|
|
15553
16005
|
export var EventType;
|
|
15554
16006
|
(function (EventType) {
|
|
15555
16007
|
EventType["PreIPOCompany"] = "PreIPOCompany";
|
|
@@ -15676,6 +16128,7 @@ export var ConstructorInfoMethodImplementationFlags;
|
|
|
15676
16128
|
ConstructorInfoMethodImplementationFlags["AggressiveInlining"] = "AggressiveInlining";
|
|
15677
16129
|
ConstructorInfoMethodImplementationFlags["AggressiveOptimization"] = "AggressiveOptimization";
|
|
15678
16130
|
ConstructorInfoMethodImplementationFlags["InternalCall"] = "InternalCall";
|
|
16131
|
+
ConstructorInfoMethodImplementationFlags["Async"] = "Async";
|
|
15679
16132
|
ConstructorInfoMethodImplementationFlags["MaxMethodImplVal"] = "MaxMethodImplVal";
|
|
15680
16133
|
})(ConstructorInfoMethodImplementationFlags || (ConstructorInfoMethodImplementationFlags = {}));
|
|
15681
16134
|
export var ConstructorInfoCallingConvention;
|
|
@@ -15698,6 +16151,12 @@ export var ConstructorInfoMemberType;
|
|
|
15698
16151
|
ConstructorInfoMemberType["NestedType"] = "NestedType";
|
|
15699
16152
|
ConstructorInfoMemberType["All"] = "All";
|
|
15700
16153
|
})(ConstructorInfoMemberType || (ConstructorInfoMemberType = {}));
|
|
16154
|
+
export var CreateIndicationOfInterestV2TargetAssetType;
|
|
16155
|
+
(function (CreateIndicationOfInterestV2TargetAssetType) {
|
|
16156
|
+
CreateIndicationOfInterestV2TargetAssetType["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
16157
|
+
CreateIndicationOfInterestV2TargetAssetType["RegisteredFund"] = "RegisteredFund";
|
|
16158
|
+
CreateIndicationOfInterestV2TargetAssetType["PreIPOCompany"] = "PreIPOCompany";
|
|
16159
|
+
})(CreateIndicationOfInterestV2TargetAssetType || (CreateIndicationOfInterestV2TargetAssetType = {}));
|
|
15701
16160
|
export var CreateInvestorType;
|
|
15702
16161
|
(function (CreateInvestorType) {
|
|
15703
16162
|
CreateInvestorType["IndividualInvestor"] = "IndividualInvestor";
|
|
@@ -15725,6 +16184,7 @@ export var CreateTransactionTargetAssetType;
|
|
|
15725
16184
|
(function (CreateTransactionTargetAssetType) {
|
|
15726
16185
|
CreateTransactionTargetAssetType["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
15727
16186
|
CreateTransactionTargetAssetType["RegisteredFund"] = "RegisteredFund";
|
|
16187
|
+
CreateTransactionTargetAssetType["PreIPOCompany"] = "PreIPOCompany";
|
|
15728
16188
|
})(CreateTransactionTargetAssetType || (CreateTransactionTargetAssetType = {}));
|
|
15729
16189
|
export var CreateTransactionSide;
|
|
15730
16190
|
(function (CreateTransactionSide) {
|
|
@@ -15899,6 +16359,12 @@ export var FundAdvisorRegistration;
|
|
|
15899
16359
|
(function (FundAdvisorRegistration) {
|
|
15900
16360
|
FundAdvisorRegistration["RIA"] = "RIA";
|
|
15901
16361
|
})(FundAdvisorRegistration || (FundAdvisorRegistration = {}));
|
|
16362
|
+
export var IndicationOfInterestV2TargetAssetType;
|
|
16363
|
+
(function (IndicationOfInterestV2TargetAssetType) {
|
|
16364
|
+
IndicationOfInterestV2TargetAssetType["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
16365
|
+
IndicationOfInterestV2TargetAssetType["RegisteredFund"] = "RegisteredFund";
|
|
16366
|
+
IndicationOfInterestV2TargetAssetType["PreIPOCompany"] = "PreIPOCompany";
|
|
16367
|
+
})(IndicationOfInterestV2TargetAssetType || (IndicationOfInterestV2TargetAssetType = {}));
|
|
15902
16368
|
export var IndividualEntityInvestorQualifiedStatus;
|
|
15903
16369
|
(function (IndividualEntityInvestorQualifiedStatus) {
|
|
15904
16370
|
IndividualEntityInvestorQualifiedStatus["QUALIFIED_PURCHASER"] = "QUALIFIED_PURCHASER";
|
|
@@ -16063,6 +16529,7 @@ export var MethodBaseMethodImplementationFlags;
|
|
|
16063
16529
|
MethodBaseMethodImplementationFlags["AggressiveInlining"] = "AggressiveInlining";
|
|
16064
16530
|
MethodBaseMethodImplementationFlags["AggressiveOptimization"] = "AggressiveOptimization";
|
|
16065
16531
|
MethodBaseMethodImplementationFlags["InternalCall"] = "InternalCall";
|
|
16532
|
+
MethodBaseMethodImplementationFlags["Async"] = "Async";
|
|
16066
16533
|
MethodBaseMethodImplementationFlags["MaxMethodImplVal"] = "MaxMethodImplVal";
|
|
16067
16534
|
})(MethodBaseMethodImplementationFlags || (MethodBaseMethodImplementationFlags = {}));
|
|
16068
16535
|
export var MethodBaseCallingConvention;
|
|
@@ -16113,6 +16580,7 @@ export var MethodInfoMethodImplementationFlags;
|
|
|
16113
16580
|
MethodInfoMethodImplementationFlags["AggressiveInlining"] = "AggressiveInlining";
|
|
16114
16581
|
MethodInfoMethodImplementationFlags["AggressiveOptimization"] = "AggressiveOptimization";
|
|
16115
16582
|
MethodInfoMethodImplementationFlags["InternalCall"] = "InternalCall";
|
|
16583
|
+
MethodInfoMethodImplementationFlags["Async"] = "Async";
|
|
16116
16584
|
MethodInfoMethodImplementationFlags["MaxMethodImplVal"] = "MaxMethodImplVal";
|
|
16117
16585
|
})(MethodInfoMethodImplementationFlags || (MethodInfoMethodImplementationFlags = {}));
|
|
16118
16586
|
export var MethodInfoCallingConvention;
|
|
@@ -16584,6 +17052,7 @@ export var TransactionTargetAssetType;
|
|
|
16584
17052
|
(function (TransactionTargetAssetType) {
|
|
16585
17053
|
TransactionTargetAssetType["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
16586
17054
|
TransactionTargetAssetType["RegisteredFund"] = "RegisteredFund";
|
|
17055
|
+
TransactionTargetAssetType["PreIPOCompany"] = "PreIPOCompany";
|
|
16587
17056
|
})(TransactionTargetAssetType || (TransactionTargetAssetType = {}));
|
|
16588
17057
|
export var TransactionSide;
|
|
16589
17058
|
(function (TransactionSide) {
|
|
@@ -16812,11 +17281,13 @@ export var UpdateTransactionTargetAssetType;
|
|
|
16812
17281
|
(function (UpdateTransactionTargetAssetType) {
|
|
16813
17282
|
UpdateTransactionTargetAssetType["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
16814
17283
|
UpdateTransactionTargetAssetType["RegisteredFund"] = "RegisteredFund";
|
|
17284
|
+
UpdateTransactionTargetAssetType["PreIPOCompany"] = "PreIPOCompany";
|
|
16815
17285
|
})(UpdateTransactionTargetAssetType || (UpdateTransactionTargetAssetType = {}));
|
|
16816
17286
|
export var UpdateTransactionReferenceTargetAssetType;
|
|
16817
17287
|
(function (UpdateTransactionReferenceTargetAssetType) {
|
|
16818
17288
|
UpdateTransactionReferenceTargetAssetType["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
16819
17289
|
UpdateTransactionReferenceTargetAssetType["RegisteredFund"] = "RegisteredFund";
|
|
17290
|
+
UpdateTransactionReferenceTargetAssetType["PreIPOCompany"] = "PreIPOCompany";
|
|
16820
17291
|
})(UpdateTransactionReferenceTargetAssetType || (UpdateTransactionReferenceTargetAssetType = {}));
|
|
16821
17292
|
export var WebhookEventDeliveryStatus;
|
|
16822
17293
|
(function (WebhookEventDeliveryStatus) {
|