@monarkmarkets/api-client 1.2.18 → 1.2.20
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 +183 -172
- package/dist/Client.js +344 -258
- package/package.json +1 -1
package/dist/Client.d.ts
CHANGED
|
@@ -10,15 +10,15 @@ export declare class Client {
|
|
|
10
10
|
* @param body (optional) Address information to normalize.
|
|
11
11
|
* @return Normalized address returned.
|
|
12
12
|
*/
|
|
13
|
-
|
|
14
|
-
protected
|
|
13
|
+
normalizeAddress(body: NormalizeAddressRequest | undefined): Promise<NormalizeAddressResponse>;
|
|
14
|
+
protected processNormalizeAddress(response: Response): Promise<NormalizeAddressResponse>;
|
|
15
15
|
/**
|
|
16
16
|
* Get a Document by ID.
|
|
17
17
|
* @param id The Document ID for the document to retrieve.
|
|
18
18
|
* @return OK
|
|
19
19
|
*/
|
|
20
|
-
|
|
21
|
-
protected
|
|
20
|
+
getDocumentById(id: string): Promise<Document>;
|
|
21
|
+
protected processGetDocumentById(response: Response): Promise<Document>;
|
|
22
22
|
/**
|
|
23
23
|
* Get all Documents.
|
|
24
24
|
* @param investorId (optional) Investor ID to filter by.
|
|
@@ -37,37 +37,37 @@ export declare class Client {
|
|
|
37
37
|
* @param sortOrder (optional)
|
|
38
38
|
* @return OK
|
|
39
39
|
*/
|
|
40
|
-
|
|
41
|
-
protected
|
|
40
|
+
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
|
+
protected processGetAllDocuments(response: Response): Promise<DocumentApiResponse>;
|
|
42
42
|
/**
|
|
43
43
|
* Signs a document by a document ID.
|
|
44
44
|
* @param id The Document ID for the document to sign.
|
|
45
45
|
* @param body (optional) Data about the signing.
|
|
46
46
|
* @return No Content
|
|
47
47
|
*/
|
|
48
|
-
|
|
49
|
-
protected
|
|
48
|
+
signDocument(id: string, body: SignDocument | undefined): Promise<void>;
|
|
49
|
+
protected processSignDocument(response: Response): Promise<void>;
|
|
50
50
|
/**
|
|
51
51
|
* Downloads a document using document ID and token. The document is accessed anonymously using a secure token.
|
|
52
52
|
* @param id The Document ID for the document to download.
|
|
53
53
|
* @param token The secure token required to access the document.
|
|
54
54
|
*/
|
|
55
|
-
|
|
56
|
-
protected
|
|
55
|
+
downloadDocument(id: string, token: string): Promise<void>;
|
|
56
|
+
protected processDownloadDocument(response: Response): Promise<void>;
|
|
57
57
|
/**
|
|
58
58
|
* Create a Financial Advisor in the primary offering.
|
|
59
59
|
* @param body (optional) create Financial Advisor information.
|
|
60
60
|
* @return The newly created Financial Advisor.
|
|
61
61
|
*/
|
|
62
|
-
|
|
63
|
-
protected
|
|
62
|
+
createFinancialAdvisor(body: CreateFinancialAdvisor | undefined): Promise<FinancialAdvisor>;
|
|
63
|
+
protected processCreateFinancialAdvisor(response: Response): Promise<FinancialAdvisor>;
|
|
64
64
|
/**
|
|
65
65
|
* Update an entire Financial Advisor in the primary offering.
|
|
66
66
|
* @param body (optional) update Financial Advisor information.
|
|
67
67
|
* @return The updated Financial Advisor.
|
|
68
68
|
*/
|
|
69
|
-
|
|
70
|
-
protected
|
|
69
|
+
updateFinancialAdvisor(body: UpdateFinancialAdvisor | undefined): Promise<FinancialAdvisor>;
|
|
70
|
+
protected processUpdateFinancialAdvisor(response: Response): Promise<FinancialAdvisor>;
|
|
71
71
|
/**
|
|
72
72
|
* Get all Financial Advisors for the authenticated partner's financial institutions.
|
|
73
73
|
* @param page (optional) Number of the page to retrieve.
|
|
@@ -78,22 +78,22 @@ export declare class Client {
|
|
|
78
78
|
* @param financialInstitutionId (optional) Optional filter by Financial Institution ID.
|
|
79
79
|
* @return Returns the list of Financial Advisors.
|
|
80
80
|
*/
|
|
81
|
-
|
|
82
|
-
protected
|
|
81
|
+
getAllFinancialAdvisors(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder2 | undefined, financialInstitutionId: string | undefined): Promise<FinancialAdvisorApiResponse>;
|
|
82
|
+
protected processGetAllFinancialAdvisors(response: Response): Promise<FinancialAdvisorApiResponse>;
|
|
83
83
|
/**
|
|
84
84
|
* Get the Financial Advisor by the specified Id.
|
|
85
85
|
* @param id Id of the Financial Advisor to find.
|
|
86
86
|
* @return Returns the Financial Advisor with the specified Id.
|
|
87
87
|
*/
|
|
88
|
-
|
|
89
|
-
protected
|
|
88
|
+
getFinancialAdvisorById(id: string): Promise<FinancialAdvisor>;
|
|
89
|
+
protected processGetFinancialAdvisorById(response: Response): Promise<FinancialAdvisor>;
|
|
90
90
|
/**
|
|
91
91
|
* Gets a Financial Institution by ID.
|
|
92
92
|
* @param id ID of the Financial Institution to retrieve.
|
|
93
93
|
* @return OK
|
|
94
94
|
*/
|
|
95
|
-
|
|
96
|
-
protected
|
|
95
|
+
getFinancialInstitutionById(id: string): Promise<FinancialInstitution>;
|
|
96
|
+
protected processGetFinancialInstitutionById(response: Response): Promise<FinancialInstitution>;
|
|
97
97
|
/**
|
|
98
98
|
* Get all Financial Institutions
|
|
99
99
|
* @param page (optional) Number of the page to retrieve.
|
|
@@ -104,29 +104,29 @@ export declare class Client {
|
|
|
104
104
|
* @param sortOrder (optional)
|
|
105
105
|
* @return OK
|
|
106
106
|
*/
|
|
107
|
-
|
|
108
|
-
protected
|
|
107
|
+
getAllFinancialInstitutions(page: number | undefined, pageSize: number | undefined, referenceId: string | undefined, sortOrder: SortOrder3 | undefined): Promise<FinancialInstitutionApiResponse>;
|
|
108
|
+
protected processGetAllFinancialInstitutions(response: Response): Promise<FinancialInstitutionApiResponse>;
|
|
109
109
|
/**
|
|
110
110
|
* Update an Financial Institution's Reference ID.
|
|
111
111
|
* @param body (optional) The request containing the updated reference information.
|
|
112
112
|
* @return No Content
|
|
113
113
|
*/
|
|
114
|
-
|
|
115
|
-
protected
|
|
114
|
+
updateFinancialInstitutionReferenceId(body: UpdateFinancialInstitutionReferenceId | undefined): Promise<void>;
|
|
115
|
+
protected processUpdateFinancialInstitutionReferenceId(response: Response): Promise<void>;
|
|
116
116
|
/**
|
|
117
117
|
* Create an Indication of Interest
|
|
118
118
|
* @param body (optional) create IndicationOfInterest information.
|
|
119
119
|
* @return The newly created IndicationOfInterest.
|
|
120
120
|
*/
|
|
121
|
-
|
|
122
|
-
protected
|
|
121
|
+
createIndicationOfInterest(body: CreateIndicationOfInterest | undefined): Promise<IndicationOfInterest>;
|
|
122
|
+
protected processCreateIndicationOfInterest(response: Response): Promise<IndicationOfInterest>;
|
|
123
123
|
/**
|
|
124
124
|
* Update an Indication of Interest
|
|
125
125
|
* @param body (optional) Update Indication of Interest information.
|
|
126
126
|
* @return The updated Indication of Interest.
|
|
127
127
|
*/
|
|
128
|
-
|
|
129
|
-
protected
|
|
128
|
+
updateIndicationOfInterest(body: UpdateIndicationOfInterest | undefined): Promise<IndicationOfInterest>;
|
|
129
|
+
protected processUpdateIndicationOfInterest(response: Response): Promise<IndicationOfInterest>;
|
|
130
130
|
/**
|
|
131
131
|
* Get all IndicationOfInterests.
|
|
132
132
|
* @param searchTerm (optional) Optional search term on the PreIPOCompany name.
|
|
@@ -139,36 +139,36 @@ export declare class Client {
|
|
|
139
139
|
* @param sortOrder (optional) Which direction to sort by.
|
|
140
140
|
* @return Returns the list of IndicationOfInterest.
|
|
141
141
|
*/
|
|
142
|
-
|
|
143
|
-
protected
|
|
142
|
+
getAllIndicationOfInterests(searchTerm: string | undefined, investorId: string | undefined, page: number | undefined, pageSize: number | undefined, sortProperty: SortProperty | undefined, sortOrder: SortOrder4 | undefined): Promise<IndicationOfInterestApiResponse>;
|
|
143
|
+
protected processGetAllIndicationOfInterests(response: Response): Promise<IndicationOfInterestApiResponse>;
|
|
144
144
|
/**
|
|
145
145
|
* Delete an Indication of Interest by ID.
|
|
146
146
|
* @param id The ID of the Indication of Interest to delete.
|
|
147
147
|
* @return The Indication of Interest was successfully deleted.
|
|
148
148
|
*/
|
|
149
|
-
|
|
150
|
-
protected
|
|
149
|
+
deleteIndicationOfInterest(id: string): Promise<void>;
|
|
150
|
+
protected processDeleteIndicationOfInterest(response: Response): Promise<void>;
|
|
151
151
|
/**
|
|
152
152
|
* Get an IndicationOfInterest by Id
|
|
153
153
|
* @param id Unique ID of the IOI to find.
|
|
154
154
|
* @return Returns the IndicationOfInterest with the specified Id.
|
|
155
155
|
*/
|
|
156
|
-
|
|
157
|
-
protected
|
|
156
|
+
getIndicationOfInterestById(id: string): Promise<IndicationOfInterest>;
|
|
157
|
+
protected processGetIndicationOfInterestById(response: Response): Promise<IndicationOfInterest>;
|
|
158
158
|
/**
|
|
159
159
|
* Create an Investor.
|
|
160
160
|
* @param body (optional) create Investor information.
|
|
161
161
|
* @return The created Investor.
|
|
162
162
|
*/
|
|
163
|
-
|
|
164
|
-
protected
|
|
163
|
+
createInvestor(body: CreateInvestor | undefined): Promise<Investor>;
|
|
164
|
+
protected processCreateInvestor(response: Response): Promise<Investor>;
|
|
165
165
|
/**
|
|
166
166
|
* Update an Investor’s Information.
|
|
167
167
|
* @param body (optional) Update Investor Request.
|
|
168
168
|
* @return The Updated Investor.
|
|
169
169
|
*/
|
|
170
|
-
|
|
171
|
-
protected
|
|
170
|
+
updateInvestor(body: UpdateInvestor | undefined): Promise<Investor>;
|
|
171
|
+
protected processUpdateInvestor(response: Response): Promise<Investor>;
|
|
172
172
|
/**
|
|
173
173
|
* Get all Investors.
|
|
174
174
|
* @param page (optional) Number of the page to retrieve.
|
|
@@ -180,65 +180,65 @@ export declare class Client {
|
|
|
180
180
|
* @param financialInstitutionId (optional) Optional filter to get by the Financial Institution.
|
|
181
181
|
* @return Returns the paginated list of Investors.
|
|
182
182
|
*/
|
|
183
|
-
|
|
184
|
-
protected
|
|
183
|
+
getAllInvestors(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder5 | undefined, investorStatus: InvestorStatus | undefined, financialInstitutionId: string | undefined): Promise<InvestorApiResponse>;
|
|
184
|
+
protected processGetAllInvestors(response: Response): Promise<InvestorApiResponse>;
|
|
185
185
|
/**
|
|
186
186
|
* Update an Investor’s accreditation status.
|
|
187
187
|
* @param body (optional) M:primary_offering_web_api.Controllers.InvestorController.UpdateInvestorAccreditation(primary_offering_api_models.Investors.UpdateInvestorAccreditation,System.Threading.CancellationToken) from body.
|
|
188
188
|
* @return No Content
|
|
189
189
|
*/
|
|
190
|
-
|
|
191
|
-
protected
|
|
190
|
+
updateInvestorAccreditation(body: UpdateInvestorAccreditation | undefined): Promise<void>;
|
|
191
|
+
protected processUpdateInvestorAccreditation(response: Response): Promise<void>;
|
|
192
192
|
/**
|
|
193
193
|
* Get the Investor by investorId.
|
|
194
194
|
* @param id ID of the Investor to find.
|
|
195
195
|
* @return Returns the Investor with the specified ID.
|
|
196
196
|
*/
|
|
197
|
-
|
|
198
|
-
protected
|
|
197
|
+
getInvestorById(id: string): Promise<Investor>;
|
|
198
|
+
protected processGetInvestorById(response: Response): Promise<Investor>;
|
|
199
199
|
/**
|
|
200
200
|
* Get the Investor by investorReferenceId.
|
|
201
201
|
* @param investorReferenceId InvestorReferenceId of the Investor to find.
|
|
202
202
|
* @return Returns the Investor with the specified InvestorReference.
|
|
203
203
|
*/
|
|
204
|
-
|
|
205
|
-
protected
|
|
204
|
+
getInvestorByInvestorReference(investorReferenceId: string): Promise<Investor>;
|
|
205
|
+
protected processGetInvestorByInvestorReference(response: Response): Promise<Investor>;
|
|
206
206
|
/**
|
|
207
207
|
* Get an entity's UBO.
|
|
208
208
|
* @param investorId ID of the investor to get individual entity investors for.
|
|
209
209
|
* @return Returns the list of individual entity investors.
|
|
210
210
|
*/
|
|
211
|
-
|
|
212
|
-
protected
|
|
211
|
+
getIndividualEntityInvestors(investorId: string): Promise<IndividualEntityInvestor[]>;
|
|
212
|
+
protected processGetIndividualEntityInvestors(response: Response): Promise<IndividualEntityInvestor[]>;
|
|
213
213
|
/**
|
|
214
214
|
* Create an entity's UBO.
|
|
215
215
|
* @param body (optional)
|
|
216
216
|
* @return OK
|
|
217
217
|
*/
|
|
218
|
-
|
|
219
|
-
protected
|
|
218
|
+
createIndividualEntityInvestor(investorId: string, body: CreateIndividualEntityInvestors | undefined): Promise<IndividualEntityInvestor>;
|
|
219
|
+
protected processCreateIndividualEntityInvestor(response: Response): Promise<IndividualEntityInvestor>;
|
|
220
220
|
/**
|
|
221
221
|
* Update a UBO's information.
|
|
222
222
|
* @param body (optional)
|
|
223
223
|
* @return The Updated Investor.
|
|
224
224
|
*/
|
|
225
|
-
|
|
226
|
-
protected
|
|
225
|
+
updateIndividualEntityInvestor(investorId: string, body: UpdateIndividualEntityInvestor | undefined): Promise<IndividualEntityInvestor>;
|
|
226
|
+
protected processUpdateIndividualEntityInvestor(response: Response): Promise<IndividualEntityInvestor>;
|
|
227
227
|
/**
|
|
228
228
|
* Delete a UBO.
|
|
229
229
|
* @param investorId ID of the investor that owns the UBO.
|
|
230
230
|
* @param id ID of the UBO to delete.
|
|
231
231
|
* @return No Content
|
|
232
232
|
*/
|
|
233
|
-
|
|
234
|
-
protected
|
|
233
|
+
deleteIndividualEntityInvestor(investorId: string, id: string): Promise<void>;
|
|
234
|
+
protected processDeleteIndividualEntityInvestor(response: Response): Promise<void>;
|
|
235
235
|
/**
|
|
236
236
|
* Create an InvestorSubscription.
|
|
237
237
|
* @param body (optional) Investor Subscription Properties.
|
|
238
238
|
* @return Created
|
|
239
239
|
*/
|
|
240
|
-
|
|
241
|
-
protected
|
|
240
|
+
createInvestorSubscription(body: CreateInvestorSubscription | undefined): Promise<InvestorSubscription>;
|
|
241
|
+
protected processCreateInvestorSubscription(response: Response): Promise<InvestorSubscription>;
|
|
242
242
|
/**
|
|
243
243
|
* Get all InvestorSubscriptions.
|
|
244
244
|
* @param preIpoCompanySpvId (optional) SPV to filter by.
|
|
@@ -255,74 +255,74 @@ export declare class Client {
|
|
|
255
255
|
* @param sortOrder (optional)
|
|
256
256
|
* @return OK
|
|
257
257
|
*/
|
|
258
|
-
|
|
259
|
-
protected
|
|
258
|
+
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: SortOrder6 | undefined): Promise<InvestorSubscriptionApiResponse>;
|
|
259
|
+
protected processGetAllSubscriptions(response: Response): Promise<InvestorSubscriptionApiResponse>;
|
|
260
260
|
/**
|
|
261
261
|
* Update an InvestorSubscription.
|
|
262
262
|
* @param body (optional) The request containing the updated order reference information.
|
|
263
263
|
* @return No Content
|
|
264
264
|
*/
|
|
265
|
-
|
|
266
|
-
protected
|
|
265
|
+
updateInvestorSubscription(body: UpdateInvestorSubscription | undefined): Promise<void>;
|
|
266
|
+
protected processUpdateInvestorSubscription(response: Response): Promise<void>;
|
|
267
267
|
/**
|
|
268
268
|
* Get InvestorSubscription by InvestorId and PreIPOCompanySPVId.
|
|
269
269
|
* @param investorId Filter InvestorSubscription by Investor ID.
|
|
270
270
|
* @param spvId Filter InvestorSubscription by SPV ID.
|
|
271
271
|
* @return OK
|
|
272
272
|
*/
|
|
273
|
-
|
|
274
|
-
protected
|
|
273
|
+
getInvestorSubscriptionByInvestorAndSpv(investorId: string, spvId: string): Promise<InvestorSubscription>;
|
|
274
|
+
protected processGetInvestorSubscriptionByInvestorAndSpv(response: Response): Promise<InvestorSubscription>;
|
|
275
275
|
/**
|
|
276
276
|
* Get InvestorSubscriptions by InvestorId.
|
|
277
277
|
* @param investorId Filter InvestorSubscriptions by Investor ID.
|
|
278
278
|
* @return OK
|
|
279
279
|
*/
|
|
280
|
-
|
|
281
|
-
protected
|
|
280
|
+
getInvestorSubscriptionsByInvestor(investorId: string): Promise<InvestorSubscription[]>;
|
|
281
|
+
protected processGetInvestorSubscriptionsByInvestor(response: Response): Promise<InvestorSubscription[]>;
|
|
282
282
|
/**
|
|
283
283
|
* Get an InvestorSubscription by ID.
|
|
284
284
|
* @param id ID of the InvestorSubscription to find.
|
|
285
285
|
* @return OK
|
|
286
286
|
*/
|
|
287
|
-
|
|
288
|
-
protected
|
|
287
|
+
getInvestorSubscriptionById(id: string): Promise<InvestorSubscription>;
|
|
288
|
+
protected processGetInvestorSubscriptionById(response: Response): Promise<InvestorSubscription>;
|
|
289
289
|
/**
|
|
290
290
|
* Signs an Existing Subscription.
|
|
291
291
|
* @param id ID of subscription to sign.
|
|
292
292
|
* @param body (optional)
|
|
293
293
|
* @return OK
|
|
294
294
|
*/
|
|
295
|
-
|
|
296
|
-
protected
|
|
295
|
+
signInvestorSubscription(id: string, body: any | undefined): Promise<InvestorSubscription>;
|
|
296
|
+
protected processSignInvestorSubscription(response: Response): Promise<InvestorSubscription>;
|
|
297
297
|
/**
|
|
298
298
|
* Update an InvestorSubscription's Order Reference ID.
|
|
299
299
|
* @param body (optional) The request containing the updated order reference information.
|
|
300
300
|
* @return No Content
|
|
301
301
|
*/
|
|
302
|
-
|
|
303
|
-
protected
|
|
302
|
+
updateInvestorSubscriptionOrderReference(body: UpdateInvestorSubscriptionOrderReference | undefined): Promise<void>;
|
|
303
|
+
protected processUpdateInvestorSubscriptionOrderReference(response: Response): Promise<void>;
|
|
304
304
|
/**
|
|
305
305
|
* Get all InvestorSubscriptionActions by InvestorSubscription.
|
|
306
306
|
* @param investorSubscriptionId The ID of the InvestorSubscription to get the actions for.
|
|
307
307
|
* @return OK
|
|
308
308
|
*/
|
|
309
|
-
|
|
310
|
-
protected
|
|
309
|
+
getAllInvestorSubscriptionActions(investorSubscriptionId: string): Promise<InvestorSubscriptionAction[]>;
|
|
310
|
+
protected processGetAllInvestorSubscriptionActions(response: Response): Promise<InvestorSubscriptionAction[]>;
|
|
311
311
|
/**
|
|
312
312
|
* Get an InvestorSubscriptionAction by Id
|
|
313
313
|
* @param id ID of the InvestorSubscriptionAction to find.
|
|
314
314
|
* @return OK
|
|
315
315
|
*/
|
|
316
|
-
|
|
317
|
-
protected
|
|
316
|
+
getInvestorSubscriptionActionById(id: string): Promise<InvestorSubscriptionAction>;
|
|
317
|
+
protected processGetInvestorSubscriptionActionById(response: Response): Promise<InvestorSubscriptionAction>;
|
|
318
318
|
/**
|
|
319
319
|
* Complete an InvestorSubscriptionAction.
|
|
320
320
|
* @param id The ID of the InvestorSubscriptionAction to complete.
|
|
321
321
|
* @param body (optional)
|
|
322
322
|
* @return No Content
|
|
323
323
|
*/
|
|
324
|
-
|
|
325
|
-
protected
|
|
324
|
+
completeInvestorSubscriptionAction(id: string, body: any | undefined): Promise<void>;
|
|
325
|
+
protected processCompleteInvestorSubscriptionAction(response: Response): Promise<void>;
|
|
326
326
|
/**
|
|
327
327
|
* Retrieves a 409A valuation by ID for a specific financial institution.
|
|
328
328
|
* @param id The 409A valuation ID.
|
|
@@ -499,18 +499,18 @@ export declare class Client {
|
|
|
499
499
|
* Get the Partner of the authenticated user.
|
|
500
500
|
* @return Returns the Partner with the specified Id.
|
|
501
501
|
*/
|
|
502
|
-
|
|
503
|
-
protected
|
|
502
|
+
getPartner(): Promise<Partner>;
|
|
503
|
+
protected processGetPartner(response: Response): Promise<Partner>;
|
|
504
504
|
/**
|
|
505
505
|
* Generates a pdf from the template and the provided data mapping fields.
|
|
506
506
|
* @param id The document template Id.
|
|
507
507
|
* @param body (optional) The mapping fields and their values that are to be merged into the template.
|
|
508
508
|
* @return OK
|
|
509
509
|
*/
|
|
510
|
-
|
|
510
|
+
generatePdfDocument(id: string, body: {
|
|
511
511
|
[key: string]: string;
|
|
512
512
|
} | undefined): Promise<FileResponse>;
|
|
513
|
-
protected
|
|
513
|
+
protected processGeneratePdfDocument(response: Response): Promise<FileResponse>;
|
|
514
514
|
/**
|
|
515
515
|
* Gets a PMI feed pricing record by ID.
|
|
516
516
|
* @param id The PMI feed pricing ID.
|
|
@@ -587,8 +587,8 @@ export declare class Client {
|
|
|
587
587
|
* @param id ID of the PreIPOCompany to find.
|
|
588
588
|
* @return Returns the PreIPOCompany with the specified Id.
|
|
589
589
|
*/
|
|
590
|
-
|
|
591
|
-
protected
|
|
590
|
+
getPreIPOCompanyById(id: string): Promise<PreIPOCompany>;
|
|
591
|
+
protected processGetPreIPOCompanyById(response: Response): Promise<PreIPOCompany>;
|
|
592
592
|
/**
|
|
593
593
|
* Get all PreIPOCompanies.
|
|
594
594
|
* @param page (optional) Number of the page to retrieve.
|
|
@@ -607,8 +607,8 @@ export declare class Client {
|
|
|
607
607
|
* @param isActive (optional) Optional active state filter.
|
|
608
608
|
* @return OK
|
|
609
609
|
*/
|
|
610
|
-
|
|
611
|
-
protected
|
|
610
|
+
getAllPreIPOCompanies(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, searchCategories: string[] | undefined, sortBy: SortBy | undefined, sortOrder: SortOrder7 | undefined, minLastValuation: number | undefined, maxLastValuation: number | undefined, minTotalFunding: number | undefined, maxTotalFunding: number | undefined, listingType: string | undefined, isActive: boolean | undefined): Promise<PreIPOCompanyApiResponse>;
|
|
611
|
+
protected processGetAllPreIPOCompanies(response: Response): Promise<PreIPOCompanyApiResponse>;
|
|
612
612
|
/**
|
|
613
613
|
* Bulk Download all PreIPOCompanies.
|
|
614
614
|
* @param filterId (optional) Optional filter ID to narrow down the PreIPOCompanies.
|
|
@@ -620,17 +620,18 @@ export declare class Client {
|
|
|
620
620
|
* @param includes (optional) Optional list of additional data to include with the response (e.g., News, Research, Investments).
|
|
621
621
|
* @param listingType (optional) Optional listing status filter.
|
|
622
622
|
* @param isActive (optional) Optional active state filter.
|
|
623
|
+
* @param isApproved (optional) Optional spv partner approval state filter.
|
|
623
624
|
* @return Returns the filtered and paginated list of detailed PreIPOCompanies.
|
|
624
625
|
*/
|
|
625
|
-
|
|
626
|
-
protected
|
|
626
|
+
getAllDetailedPreIPOCompanies(filterId: string | undefined, filterBy: FilterBy | undefined, page: number | undefined, pageSize: number | undefined, includes: Includes[] | undefined, listingType: string | undefined, isActive: boolean | undefined, isApproved: boolean | undefined): Promise<BulkPreIPOCompanyApiResponse>;
|
|
627
|
+
protected processGetAllDetailedPreIPOCompanies(response: Response): Promise<BulkPreIPOCompanyApiResponse>;
|
|
627
628
|
/**
|
|
628
629
|
* Get the PreIPOCompanyFundingRound by the specified Id.
|
|
629
630
|
* @param id ID of the PreIPOCompanyFundingRound to find.
|
|
630
631
|
* @return Returns the PreIPOCompanyFundingRound with the specified Id.
|
|
631
632
|
*/
|
|
632
|
-
|
|
633
|
-
protected
|
|
633
|
+
getPreIPOCompanyFundingRoundById(id: string): Promise<PreIPOCompanyFundingRound>;
|
|
634
|
+
protected processGetPreIPOCompanyFundingRoundById(response: Response): Promise<PreIPOCompanyFundingRound>;
|
|
634
635
|
/**
|
|
635
636
|
* Get all PreIPOCompanyFundingRounds.
|
|
636
637
|
* @param page (optional) Number of the page to retrieve.
|
|
@@ -642,16 +643,16 @@ export declare class Client {
|
|
|
642
643
|
* @param sortOrder (optional)
|
|
643
644
|
* @return OK
|
|
644
645
|
*/
|
|
645
|
-
|
|
646
|
-
protected
|
|
646
|
+
getAllPreIPOCompanyFundingRounds(page: number | undefined, pageSize: number | undefined, preIPOCompanyId: string | undefined, searchTerm: string | undefined, sortOrder: SortOrder8 | undefined): Promise<PreIPOCompanyFundingRoundApiResponse>;
|
|
647
|
+
protected processGetAllPreIPOCompanyFundingRounds(response: Response): Promise<PreIPOCompanyFundingRoundApiResponse>;
|
|
647
648
|
/**
|
|
648
649
|
* Get a PreIPOCompanyInvestment by Id
|
|
649
650
|
* @param id ID of the PreIPOCompanyInvestment to find.
|
|
650
651
|
* @param investorId The investorId making the request
|
|
651
652
|
* @return Returns the PreIPOCompanyInvestment with the specified Id.
|
|
652
653
|
*/
|
|
653
|
-
|
|
654
|
-
protected
|
|
654
|
+
getPreIPOCompanyInvestmentById(id: string, investorId: string): Promise<PreIPOCompanyInvestment>;
|
|
655
|
+
protected processGetPreIPOCompanyInvestmentById(response: Response): Promise<PreIPOCompanyInvestment>;
|
|
655
656
|
/**
|
|
656
657
|
* Get all PreIPOCompanyInvestments
|
|
657
658
|
* @param investorId The investorId making the request
|
|
@@ -664,15 +665,15 @@ export declare class Client {
|
|
|
664
665
|
* @param sortOrder (optional)
|
|
665
666
|
* @return OK
|
|
666
667
|
*/
|
|
667
|
-
|
|
668
|
-
protected
|
|
668
|
+
getAllPreIPOCompanyInvestments(investorId: string, nameFilter: string | undefined, page: number | undefined, pageSize: number | undefined, preIpoCompanyId: string | undefined, sortOrder: SortOrder9 | undefined): Promise<PreIPOCompanyInvestmentApiResponse>;
|
|
669
|
+
protected processGetAllPreIPOCompanyInvestments(response: Response): Promise<PreIPOCompanyInvestmentApiResponse>;
|
|
669
670
|
/**
|
|
670
671
|
* Get a PreIPOCompanyNews by Id.
|
|
671
672
|
* @param id ID of the PreIPOCompanyNews to find.
|
|
672
673
|
* @return Returns the PreIPOCompanyNews with the specified Id.
|
|
673
674
|
*/
|
|
674
|
-
|
|
675
|
-
protected
|
|
675
|
+
getPreIPOCompanyNewsById(id: string): Promise<PreIPOCompanyNews>;
|
|
676
|
+
protected processGetPreIPOCompanyNewsById(response: Response): Promise<PreIPOCompanyNews>;
|
|
676
677
|
/**
|
|
677
678
|
* Get all PreIPOCompanyNews.
|
|
678
679
|
* @param searchTerm (optional) Search term to filter results on based on 'Headline' field.
|
|
@@ -684,15 +685,15 @@ export declare class Client {
|
|
|
684
685
|
* @param sortOrder (optional)
|
|
685
686
|
* @return OK
|
|
686
687
|
*/
|
|
687
|
-
|
|
688
|
-
protected
|
|
688
|
+
getAllPreIPOCompanyNews(searchTerm: string | undefined, page: number | undefined, pageSize: number | undefined, preIPOCompanyId: string | undefined, sortOrder: SortOrder10 | undefined): Promise<PreIPOCompanyNewsApiResponse>;
|
|
689
|
+
protected processGetAllPreIPOCompanyNews(response: Response): Promise<PreIPOCompanyNewsApiResponse>;
|
|
689
690
|
/**
|
|
690
691
|
* Get a PreIPOCompanyResearch by Id.
|
|
691
692
|
* @param id ID of the PreIPOCompanyResearch to find.
|
|
692
693
|
* @return Returns the PreIPOCompanyResearch with the specified Id.
|
|
693
694
|
*/
|
|
694
|
-
|
|
695
|
-
protected
|
|
695
|
+
getPreIPOCompanyResearchById(id: string): Promise<PreIPOCompanyResearch>;
|
|
696
|
+
protected processGetPreIPOCompanyResearchById(response: Response): Promise<PreIPOCompanyResearch>;
|
|
696
697
|
/**
|
|
697
698
|
* Get all PreIPOCompanyResearch.
|
|
698
699
|
* @param page (optional) Number of the page to retrieve.
|
|
@@ -706,8 +707,8 @@ export declare class Client {
|
|
|
706
707
|
* @param relation (optional)
|
|
707
708
|
* @return OK
|
|
708
709
|
*/
|
|
709
|
-
|
|
710
|
-
protected
|
|
710
|
+
getPreIPOCompanyResearchAll(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, preIPOCompanyId: string | undefined, sortOrder: SortOrder11 | undefined, researchType: ResearchType | undefined, relation: Relation | undefined): Promise<PreIPOCompanyResearchApiResponse>;
|
|
711
|
+
protected processGetPreIPOCompanyResearchAll(response: Response): Promise<PreIPOCompanyResearchApiResponse>;
|
|
711
712
|
/**
|
|
712
713
|
* Get a PreIPOCompanySPV by Id
|
|
713
714
|
* @param id ID of the PreIPOCompanySPV to find.
|
|
@@ -715,8 +716,17 @@ export declare class Client {
|
|
|
715
716
|
* @param includeDocuments (optional) Returns specific documents associated with an SPV.
|
|
716
717
|
* @return Returns the PreIPOCompanySPV with the specified Id.
|
|
717
718
|
*/
|
|
718
|
-
|
|
719
|
-
protected
|
|
719
|
+
getPreIPOCompanySPVById(id: string, investorId: string, includeDocuments: boolean | undefined): Promise<PreIPOCompanySPV>;
|
|
720
|
+
protected processGetPreIPOCompanySPVById(response: Response): Promise<PreIPOCompanySPV>;
|
|
721
|
+
/**
|
|
722
|
+
* Get a PreIPOCompanySPV by Cusip
|
|
723
|
+
* @param cusip Cusip of the PreIPOCompanySPV to find.
|
|
724
|
+
* @param investorId Investor that the SPV's are being retrieved for.
|
|
725
|
+
* @param includeDocuments (optional) Returns specific documents associated with an SPV.
|
|
726
|
+
* @return Returns the PreIPOCompanySPV with the specified Cusip.
|
|
727
|
+
*/
|
|
728
|
+
getPreIPOCompanySPVByCusip(cusip: string, investorId: string, includeDocuments: boolean | undefined): Promise<PreIPOCompanySPV>;
|
|
729
|
+
protected processGetPreIPOCompanySPVByCusip(response: Response): Promise<PreIPOCompanySPV>;
|
|
720
730
|
/**
|
|
721
731
|
* Get all PreIPOCompanySPVs
|
|
722
732
|
* @param monarkStage (optional) Optional param to filter returned spv's based on Monark Stage.
|
|
@@ -724,6 +734,7 @@ export declare class Client {
|
|
|
724
734
|
* @param nameFilter (optional) Optional param to filter returned spv's based on the company name.
|
|
725
735
|
* @param preIPOCompanyId (optional) Optional param to only return spv's for the preIPOCompany.
|
|
726
736
|
* @param preIPOCompanyInvestmentId (optional) Optional param to only return spv's for the preIPOCompanyInvestment.
|
|
737
|
+
* @param isApproved (optional) Optional param to filter spvs based on partner approvals.
|
|
727
738
|
* @param page (optional) Number of the page to retrieve.
|
|
728
739
|
Defaults to 1 if not specified.
|
|
729
740
|
* @param pageSize (optional) Size of the page to retrieve.
|
|
@@ -732,8 +743,8 @@ export declare class Client {
|
|
|
732
743
|
* @param sortBy (optional)
|
|
733
744
|
* @return OK
|
|
734
745
|
*/
|
|
735
|
-
|
|
736
|
-
protected
|
|
746
|
+
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: SortOrder12 | undefined, sortBy: SortBy2 | undefined): Promise<PreIPOCompanySPVApiResponse>;
|
|
747
|
+
protected processGetAllPreIPOCompanySPVs(response: Response): Promise<PreIPOCompanySPVApiResponse>;
|
|
737
748
|
/**
|
|
738
749
|
* Gets all SPVs that have been approved.
|
|
739
750
|
* @param page (optional) Number of the page to retrieve.
|
|
@@ -742,36 +753,36 @@ export declare class Client {
|
|
|
742
753
|
Defaults to 25 if not specified.
|
|
743
754
|
* @return Returns the list of approved SPVs.
|
|
744
755
|
*/
|
|
745
|
-
|
|
746
|
-
protected
|
|
756
|
+
getPartnerApprovedSPVs(page: number | undefined, pageSize: number | undefined): Promise<PreIPOCompanySPVApiResponse>;
|
|
757
|
+
protected processGetPartnerApprovedSPVs(response: Response): Promise<PreIPOCompanySPVApiResponse>;
|
|
747
758
|
/**
|
|
748
759
|
* Checks if a specific SPV has been approved.
|
|
749
760
|
* @param spvId ID of the SPV.
|
|
750
761
|
* @return Returns whether approval exists.
|
|
751
762
|
*/
|
|
752
|
-
|
|
753
|
-
protected
|
|
763
|
+
isSpvApproved(spvId: string): Promise<boolean>;
|
|
764
|
+
protected processIsSpvApproved(response: Response): Promise<boolean>;
|
|
754
765
|
/**
|
|
755
766
|
* Approves an SPV.
|
|
756
767
|
* @param spvId ID of the SPV.
|
|
757
768
|
* @param body (optional) Approval request containing optional notes.
|
|
758
769
|
* @return SPV successfully approved.
|
|
759
770
|
*/
|
|
760
|
-
|
|
761
|
-
protected
|
|
771
|
+
approveSpv(spvId: string, body: CreatePreIPOCompanySPVPartnerApproval | undefined): Promise<boolean>;
|
|
772
|
+
protected processApproveSpv(response: Response): Promise<boolean>;
|
|
762
773
|
/**
|
|
763
774
|
* Gets the approval record for a specific SPV.
|
|
764
775
|
* @param spvId ID of the SPV.
|
|
765
776
|
* @return Returns the approval record.
|
|
766
777
|
*/
|
|
767
|
-
|
|
768
|
-
protected
|
|
778
|
+
getPartnerSpvApproval(spvId: string): Promise<PreIPOCompanySPVPartnerApproval>;
|
|
779
|
+
protected processGetPartnerSpvApproval(response: Response): Promise<PreIPOCompanySPVPartnerApproval>;
|
|
769
780
|
/**
|
|
770
781
|
* Gets an approval record by Id.
|
|
771
782
|
* @return Returns an approval record.
|
|
772
783
|
*/
|
|
773
|
-
|
|
774
|
-
protected
|
|
784
|
+
getPartnerSpvApprovalById(approvalId: string): Promise<PreIPOCompanySPVPartnerApproval>;
|
|
785
|
+
protected processGetPartnerSpvApprovalById(response: Response): Promise<PreIPOCompanySPVPartnerApproval>;
|
|
775
786
|
/**
|
|
776
787
|
* Gets all approval records with optional filtering.
|
|
777
788
|
* @param page (optional) Number of the page to retrieve.
|
|
@@ -781,20 +792,20 @@ export declare class Client {
|
|
|
781
792
|
* @param sortOrder (optional) Sort order for results.
|
|
782
793
|
* @return Returns the list of approval records.
|
|
783
794
|
*/
|
|
784
|
-
|
|
785
|
-
protected
|
|
795
|
+
getAllPartnerSpvApprovals(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder13 | undefined): Promise<PreIPOCompanySPVPartnerApprovalApiResponse>;
|
|
796
|
+
protected processGetAllPartnerSpvApprovals(response: Response): Promise<PreIPOCompanySPVPartnerApprovalApiResponse>;
|
|
786
797
|
/**
|
|
787
798
|
* @param body (optional)
|
|
788
799
|
* @return Created
|
|
789
800
|
*/
|
|
790
|
-
|
|
791
|
-
protected
|
|
801
|
+
createQuestionnaire(body: CreateQuestionnaire | undefined): Promise<Questionnaire>;
|
|
802
|
+
protected processCreateQuestionnaire(response: Response): Promise<Questionnaire>;
|
|
792
803
|
/**
|
|
793
804
|
* @param body (optional)
|
|
794
805
|
* @return OK
|
|
795
806
|
*/
|
|
796
|
-
|
|
797
|
-
protected
|
|
807
|
+
updateQuestionnaire(body: UpdateQuestionnaire | undefined): Promise<Questionnaire>;
|
|
808
|
+
protected processUpdateQuestionnaire(response: Response): Promise<Questionnaire>;
|
|
798
809
|
/**
|
|
799
810
|
* Get all Questionnaires
|
|
800
811
|
* @param page (optional) Number of the page to retrieve.
|
|
@@ -804,27 +815,27 @@ export declare class Client {
|
|
|
804
815
|
* @param sortOrder (optional)
|
|
805
816
|
* @return Returns the list of Questionnaires.
|
|
806
817
|
*/
|
|
807
|
-
|
|
808
|
-
protected
|
|
818
|
+
getAllQuestionnaires(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder14 | undefined): Promise<QuestionnaireApiResponse>;
|
|
819
|
+
protected processGetAllQuestionnaires(response: Response): Promise<QuestionnaireApiResponse>;
|
|
809
820
|
/**
|
|
810
821
|
* @return No Content
|
|
811
822
|
*/
|
|
812
|
-
|
|
813
|
-
protected
|
|
823
|
+
deleteQuestionnaire(id: string): Promise<void>;
|
|
824
|
+
protected processDeleteQuestionnaire(response: Response): Promise<void>;
|
|
814
825
|
/**
|
|
815
826
|
* Get a Questionnaire by Id
|
|
816
827
|
* @param id ID of the Questionnaire to find.
|
|
817
828
|
* @return Returns the Questionnaire with the specified Id.
|
|
818
829
|
*/
|
|
819
|
-
|
|
820
|
-
protected
|
|
830
|
+
getQuestionnaireById(id: string): Promise<Questionnaire>;
|
|
831
|
+
protected processGetQuestionnaireById(response: Response): Promise<Questionnaire>;
|
|
821
832
|
/**
|
|
822
833
|
* Create a QuestionnaireAnswer
|
|
823
834
|
* @param body (optional) create QuestionnaireAnswer information.
|
|
824
835
|
* @return The newly created QuestionnaireAnswer.
|
|
825
836
|
*/
|
|
826
|
-
|
|
827
|
-
protected
|
|
837
|
+
createQuestionnaireAnswer(body: CreateQuestionnaireAnswer | undefined): Promise<QuestionnaireAnswer>;
|
|
838
|
+
protected processCreateQuestionnaireAnswer(response: Response): Promise<QuestionnaireAnswer>;
|
|
828
839
|
/**
|
|
829
840
|
* Get all QuestionnaireAnswers.
|
|
830
841
|
* @param investorId (optional) Optional filter by Investor ID.
|
|
@@ -836,23 +847,23 @@ export declare class Client {
|
|
|
836
847
|
* @param sortOrder (optional)
|
|
837
848
|
* @return Returns the list of Questionnaire.
|
|
838
849
|
*/
|
|
839
|
-
|
|
840
|
-
protected
|
|
850
|
+
getAllQuestionnaireAnswers(investorId: string | undefined, questionnaireId: string | undefined, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder15 | undefined): Promise<QuestionnaireAnswerApiResponse>;
|
|
851
|
+
protected processGetAllQuestionnaireAnswers(response: Response): Promise<QuestionnaireAnswerApiResponse>;
|
|
841
852
|
/**
|
|
842
853
|
* Get a QuestionnaireAnswer by Id
|
|
843
854
|
* @param id ID of the QuestionnaireAnswer to find.
|
|
844
855
|
* @return Returns the QuestionnaireAnswer with the specified Id.
|
|
845
856
|
*/
|
|
846
|
-
|
|
847
|
-
protected
|
|
857
|
+
getQuestionnaireAnswerById(id: string): Promise<QuestionnaireAnswer>;
|
|
858
|
+
protected processGetQuestionnaireAnswerById(response: Response): Promise<QuestionnaireAnswer>;
|
|
848
859
|
/**
|
|
849
860
|
* Get the RegisteredFund by the specified Id.
|
|
850
861
|
* @param id ID of the RegisteredFund to find.
|
|
851
862
|
* @param includeDocuments (optional) Return associated documents
|
|
852
863
|
* @return Returns the RegisteredFund with the specified Id.
|
|
853
864
|
*/
|
|
854
|
-
|
|
855
|
-
protected
|
|
865
|
+
getRegisteredFundById(id: string, includeDocuments: boolean | undefined): Promise<RegisteredFund>;
|
|
866
|
+
protected processGetRegisteredFundById(response: Response): Promise<RegisteredFund>;
|
|
856
867
|
/**
|
|
857
868
|
* Get all RegisteredFunds
|
|
858
869
|
* @param page (optional) Number of the page to retrieve.
|
|
@@ -863,15 +874,15 @@ export declare class Client {
|
|
|
863
874
|
* @param sortOrder (optional) Which way to sort order, defaults to Descending.
|
|
864
875
|
* @return OK
|
|
865
876
|
*/
|
|
866
|
-
|
|
867
|
-
protected
|
|
877
|
+
getAllRegisteredFunds(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder16 | undefined): Promise<RegisteredFundApiResponse>;
|
|
878
|
+
protected processGetAllRegisteredFunds(response: Response): Promise<RegisteredFundApiResponse>;
|
|
868
879
|
/**
|
|
869
880
|
* Creates a new registered fund subscription.
|
|
870
881
|
* @param body (optional) The subscription creation request.
|
|
871
882
|
* @return Created
|
|
872
883
|
*/
|
|
873
|
-
|
|
874
|
-
protected
|
|
884
|
+
createRegisteredFundSubscription(body: CreateRegisteredFundSubscription | undefined): Promise<RegisteredFundSubscription>;
|
|
885
|
+
protected processCreateRegisteredFundSubscription(response: Response): Promise<RegisteredFundSubscription>;
|
|
875
886
|
/**
|
|
876
887
|
* Gets all registered fund subscriptions with optional filtering.
|
|
877
888
|
* @param page (optional) Number of the page to retrieve.
|
|
@@ -883,83 +894,83 @@ export declare class Client {
|
|
|
883
894
|
* @param sortOrder (optional) Sort order for results (default: Descending).
|
|
884
895
|
* @return OK
|
|
885
896
|
*/
|
|
886
|
-
|
|
887
|
-
protected
|
|
897
|
+
getAllRegisteredFundSubscriptions(page: number | undefined, pageSize: number | undefined, registeredFundId: string | undefined, investorId: string | undefined, sortOrder: SortOrder17 | undefined): Promise<RegisteredFundSubscriptionApiResponse>;
|
|
898
|
+
protected processGetAllRegisteredFundSubscriptions(response: Response): Promise<RegisteredFundSubscriptionApiResponse>;
|
|
888
899
|
/**
|
|
889
900
|
* Gets a subscription by ID.
|
|
890
901
|
* @param id The subscription ID.
|
|
891
902
|
* @return OK
|
|
892
903
|
*/
|
|
893
|
-
|
|
894
|
-
protected
|
|
904
|
+
getRegisteredFundSubscriptionById(id: string): Promise<RegisteredFundSubscription>;
|
|
905
|
+
protected processGetRegisteredFundSubscriptionById(response: Response): Promise<RegisteredFundSubscription>;
|
|
895
906
|
/**
|
|
896
907
|
* Generates a preview of the subscription document with filled data.
|
|
897
908
|
* @param id The subscription ID.
|
|
898
909
|
* @param body (optional)
|
|
899
910
|
* @return OK
|
|
900
911
|
*/
|
|
901
|
-
|
|
902
|
-
protected
|
|
912
|
+
generateRegisteredFundSubscriptionPreview(id: string, body: any | undefined): Promise<FileResponse>;
|
|
913
|
+
protected processGenerateRegisteredFundSubscriptionPreview(response: Response): Promise<FileResponse>;
|
|
903
914
|
/**
|
|
904
915
|
* Signs the document as an investor.
|
|
905
916
|
* @param id The subscription ID.
|
|
906
917
|
* @param body (optional) The signature request.
|
|
907
918
|
* @return OK
|
|
908
919
|
*/
|
|
909
|
-
|
|
910
|
-
protected
|
|
920
|
+
signRegisteredFundSubscriptionByInvestor(id: string, body: SignatureRequest | undefined): Promise<RegisteredFundSubscription>;
|
|
921
|
+
protected processSignRegisteredFundSubscriptionByInvestor(response: Response): Promise<RegisteredFundSubscription>;
|
|
911
922
|
/**
|
|
912
923
|
* Signs the document as a financial advisor.
|
|
913
924
|
* @param id The subscription ID.
|
|
914
925
|
* @param body (optional) The signature request.
|
|
915
926
|
* @return OK
|
|
916
927
|
*/
|
|
917
|
-
|
|
918
|
-
protected
|
|
928
|
+
signRegisteredFundSubscriptionByAdvisor(id: string, body: SignatureRequest | undefined): Promise<RegisteredFundSubscription>;
|
|
929
|
+
protected processSignRegisteredFundSubscriptionByAdvisor(response: Response): Promise<RegisteredFundSubscription>;
|
|
919
930
|
/**
|
|
920
931
|
* Gets the current document for a subscription based on its status.
|
|
921
932
|
Returns the appropriate document version.
|
|
922
933
|
* @param id The subscription ID.
|
|
923
934
|
* @return OK
|
|
924
935
|
*/
|
|
925
|
-
|
|
926
|
-
protected
|
|
936
|
+
getRegisteredFundSubscriptionDocument(id: string): Promise<FileResponse>;
|
|
937
|
+
protected processGetRegisteredFundSubscriptionDocument(response: Response): Promise<FileResponse>;
|
|
927
938
|
/**
|
|
928
939
|
* Get all RegisteredFundSubscriptionActions by RegisteredFundSubscription.
|
|
929
940
|
* @param registeredFundSubscriptionId The ID of the RegisteredFundSubscription to get the actions for.
|
|
930
941
|
* @param responsibleParty (optional) Optional filter by responsible party.
|
|
931
942
|
* @return OK
|
|
932
943
|
*/
|
|
933
|
-
|
|
934
|
-
protected
|
|
944
|
+
getAllRegisteredFundSubscriptionActions(registeredFundSubscriptionId: string, responsibleParty: ResponsibleParty | undefined): Promise<RegisteredFundSubscriptionAction[]>;
|
|
945
|
+
protected processGetAllRegisteredFundSubscriptionActions(response: Response): Promise<RegisteredFundSubscriptionAction[]>;
|
|
935
946
|
/**
|
|
936
947
|
* Get a RegisteredFundSubscriptionAction by Id
|
|
937
948
|
* @param id ID of the RegisteredFundSubscriptionAction to find.
|
|
938
949
|
* @return OK
|
|
939
950
|
*/
|
|
940
|
-
|
|
941
|
-
protected
|
|
951
|
+
getRegisteredFundSubscriptionActionById(id: string): Promise<RegisteredFundSubscriptionAction>;
|
|
952
|
+
protected processGetRegisteredFundSubscriptionActionById(response: Response): Promise<RegisteredFundSubscriptionAction>;
|
|
942
953
|
/**
|
|
943
954
|
* Complete a RegisteredFundSubscriptionAction.
|
|
944
955
|
* @param id The ID of the RegisteredFundSubscriptionAction to complete.
|
|
945
956
|
* @param body (optional)
|
|
946
957
|
* @return No Content
|
|
947
958
|
*/
|
|
948
|
-
|
|
949
|
-
protected
|
|
959
|
+
completeRegisteredFundSubscriptionAction(id: string, body: any | undefined): Promise<void>;
|
|
960
|
+
protected processCompleteRegisteredFundSubscriptionAction(response: Response): Promise<void>;
|
|
950
961
|
/**
|
|
951
962
|
* Get the API version
|
|
952
963
|
* @return Returns the API version
|
|
953
964
|
*/
|
|
954
|
-
|
|
955
|
-
protected
|
|
965
|
+
getVersion(): Promise<ApiVersion>;
|
|
966
|
+
protected processGetVersion(response: Response): Promise<ApiVersion>;
|
|
956
967
|
/**
|
|
957
968
|
* Create a Webhook
|
|
958
969
|
* @param body (optional) Create Webhook information.
|
|
959
970
|
* @return The newly created Webhook.
|
|
960
971
|
*/
|
|
961
|
-
|
|
962
|
-
protected
|
|
972
|
+
createWebhook(body: CreateWebhook | undefined): Promise<Webhook>;
|
|
973
|
+
protected processCreateWebhook(response: Response): Promise<Webhook>;
|
|
963
974
|
/**
|
|
964
975
|
* Get all Webhooks
|
|
965
976
|
* @param page (optional) Number of the page to retrieve.
|
|
@@ -969,29 +980,29 @@ export declare class Client {
|
|
|
969
980
|
* @param sortOrder (optional) Order of which to sort the webhooks by. Default is Descending
|
|
970
981
|
* @return Returns a list of Webhooks.
|
|
971
982
|
*/
|
|
972
|
-
|
|
973
|
-
protected
|
|
983
|
+
getAllWebhooks(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder18 | undefined): Promise<WebhookApiResponse>;
|
|
984
|
+
protected processGetAllWebhooks(response: Response): Promise<WebhookApiResponse>;
|
|
974
985
|
/**
|
|
975
986
|
* Update a Webhook’s Information
|
|
976
987
|
* @param body (optional) Update Webhook Request.
|
|
977
988
|
* @return The Updated Webhook.
|
|
978
989
|
*/
|
|
979
|
-
|
|
980
|
-
protected
|
|
990
|
+
updateWebhook(body: UpdateWebhook | undefined): Promise<void>;
|
|
991
|
+
protected processUpdateWebhook(response: Response): Promise<void>;
|
|
981
992
|
/**
|
|
982
993
|
* Get a Webhook
|
|
983
994
|
* @param id Id of the webhook to get.
|
|
984
995
|
* @return Returns the Webhook with the specified Id.
|
|
985
996
|
*/
|
|
986
|
-
|
|
987
|
-
protected
|
|
997
|
+
getWebhookById(id: string): Promise<Webhook>;
|
|
998
|
+
protected processGetWebhookById(response: Response): Promise<Webhook>;
|
|
988
999
|
/**
|
|
989
1000
|
* Delete a Webhook
|
|
990
1001
|
* @param id The Webhooks ID.
|
|
991
1002
|
* @return The Webhook was deleted.
|
|
992
1003
|
*/
|
|
993
|
-
|
|
994
|
-
protected
|
|
1004
|
+
deleteWebhook(id: string): Promise<void>;
|
|
1005
|
+
protected processDeleteWebhook(response: Response): Promise<void>;
|
|
995
1006
|
/**
|
|
996
1007
|
* Get all Webhook Events for a specified Webhook
|
|
997
1008
|
* @param id The Webhook's ID.
|
|
@@ -1006,8 +1017,8 @@ export declare class Client {
|
|
|
1006
1017
|
* @param deliveryStatus (optional) Optional filter by delivery status.
|
|
1007
1018
|
* @return Returns a list of Webhook Events.
|
|
1008
1019
|
*/
|
|
1009
|
-
|
|
1010
|
-
protected
|
|
1020
|
+
getAllWebhookEvents(id: string, from: Date, to: Date, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder19 | undefined, eventType: EventType | undefined, deliveryStatus: DeliveryStatus | undefined): Promise<WebhookEventApiResponse>;
|
|
1021
|
+
protected processGetAllWebhookEvents(response: Response): Promise<WebhookEventApiResponse>;
|
|
1011
1022
|
}
|
|
1012
1023
|
/** Represents the version information of the API */
|
|
1013
1024
|
export declare class ApiVersion implements IApiVersion {
|