@monarkmarkets/api-client 1.2.17 → 1.2.19

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.
Files changed (3) hide show
  1. package/dist/Client.d.ts +181 -172
  2. package/dist/Client.js +334 -258
  3. 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
- normalize(body: NormalizeAddressRequest | undefined): Promise<NormalizeAddressResponse>;
14
- protected processNormalize(response: Response): Promise<NormalizeAddressResponse>;
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
- document(id: string): Promise<Document>;
21
- protected processDocument(response: Response): Promise<Document>;
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
- document2(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 processDocument2(response: Response): Promise<DocumentApiResponse>;
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
- sign(id: string, body: SignDocument | undefined): Promise<void>;
49
- protected processSign(response: Response): Promise<void>;
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
- download(id: string, token: string): Promise<void>;
56
- protected processDownload(response: Response): Promise<void>;
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
- financialAdvisorPOST(body: CreateFinancialAdvisor | undefined): Promise<FinancialAdvisor>;
63
- protected processFinancialAdvisorPOST(response: Response): Promise<FinancialAdvisor>;
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
- financialAdvisorPUT(body: UpdateFinancialAdvisor | undefined): Promise<FinancialAdvisor>;
70
- protected processFinancialAdvisorPUT(response: Response): Promise<FinancialAdvisor>;
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
- financialAdvisorGET(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder2 | undefined, financialInstitutionId: string | undefined): Promise<FinancialAdvisorApiResponse>;
82
- protected processFinancialAdvisorGET(response: Response): Promise<FinancialAdvisorApiResponse>;
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
- financialAdvisorGET2(id: string): Promise<FinancialAdvisor>;
89
- protected processFinancialAdvisorGET2(response: Response): Promise<FinancialAdvisor>;
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
- financialInstitution(id: string): Promise<FinancialInstitution>;
96
- protected processFinancialInstitution(response: Response): Promise<FinancialInstitution>;
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
- financialInstitution2(page: number | undefined, pageSize: number | undefined, referenceId: string | undefined, sortOrder: SortOrder3 | undefined): Promise<FinancialInstitutionApiResponse>;
108
- protected processFinancialInstitution2(response: Response): Promise<FinancialInstitutionApiResponse>;
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
- reference(body: UpdateFinancialInstitutionReferenceId | undefined): Promise<void>;
115
- protected processReference(response: Response): Promise<void>;
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
- indicationOfInterestPOST(body: CreateIndicationOfInterest | undefined): Promise<IndicationOfInterest>;
122
- protected processIndicationOfInterestPOST(response: Response): Promise<IndicationOfInterest>;
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
- indicationOfInterestPUT(body: UpdateIndicationOfInterest | undefined): Promise<IndicationOfInterest>;
129
- protected processIndicationOfInterestPUT(response: Response): Promise<IndicationOfInterest>;
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
- indicationOfInterestGET(searchTerm: string | undefined, investorId: string | undefined, page: number | undefined, pageSize: number | undefined, sortProperty: SortProperty | undefined, sortOrder: SortOrder4 | undefined): Promise<IndicationOfInterestApiResponse>;
143
- protected processIndicationOfInterestGET(response: Response): Promise<IndicationOfInterestApiResponse>;
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
- indicationOfInterestDELETE(id: string): Promise<void>;
150
- protected processIndicationOfInterestDELETE(response: Response): Promise<void>;
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
- indicationOfInterestGET2(id: string): Promise<IndicationOfInterest>;
157
- protected processIndicationOfInterestGET2(response: Response): Promise<IndicationOfInterest>;
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
- investorPOST(body: CreateInvestor | undefined): Promise<Investor>;
164
- protected processInvestorPOST(response: Response): Promise<Investor>;
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
- investorPUT(body: UpdateInvestor | undefined): Promise<Investor>;
171
- protected processInvestorPUT(response: Response): Promise<Investor>;
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
- investorGET(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder5 | undefined, investorStatus: InvestorStatus | undefined, financialInstitutionId: string | undefined): Promise<InvestorApiResponse>;
184
- protected processInvestorGET(response: Response): Promise<InvestorApiResponse>;
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
- accreditation(body: UpdateInvestorAccreditation | undefined): Promise<void>;
191
- protected processAccreditation(response: Response): Promise<void>;
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
- investorGET2(id: string): Promise<Investor>;
198
- protected processInvestorGET2(response: Response): Promise<Investor>;
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
- byReference(investorReferenceId: string): Promise<Investor>;
205
- protected processByReference(response: Response): Promise<Investor>;
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
- individualEntityInvestorAll(investorId: string): Promise<IndividualEntityInvestor[]>;
212
- protected processIndividualEntityInvestorAll(response: Response): Promise<IndividualEntityInvestor[]>;
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
- individualEntityInvestorPOST(investorId: string, body: CreateIndividualEntityInvestors | undefined): Promise<IndividualEntityInvestor>;
219
- protected processIndividualEntityInvestorPOST(response: Response): Promise<IndividualEntityInvestor>;
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
- individualEntityInvestorPUT(investorId: string, body: UpdateIndividualEntityInvestor | undefined): Promise<IndividualEntityInvestor>;
226
- protected processIndividualEntityInvestorPUT(response: Response): Promise<IndividualEntityInvestor>;
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
- individualEntityInvestorDELETE(investorId: string, id: string): Promise<void>;
234
- protected processIndividualEntityInvestorDELETE(response: Response): Promise<void>;
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
- investorSubscriptionPOST(body: CreateInvestorSubscription | undefined): Promise<InvestorSubscription>;
241
- protected processInvestorSubscriptionPOST(response: Response): Promise<InvestorSubscription>;
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
- investorSubscriptionGET(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 processInvestorSubscriptionGET(response: Response): Promise<InvestorSubscriptionApiResponse>;
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
- investorSubscriptionPUT(body: UpdateInvestorSubscription | undefined): Promise<void>;
266
- protected processInvestorSubscriptionPUT(response: Response): Promise<void>;
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
- preIpoCompanySpv(investorId: string, spvId: string): Promise<InvestorSubscription>;
274
- protected processPreIpoCompanySpv(response: Response): Promise<InvestorSubscription>;
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
- investorAll(investorId: string): Promise<InvestorSubscription[]>;
281
- protected processInvestorAll(response: Response): Promise<InvestorSubscription[]>;
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
- investorSubscriptionGET2(id: string): Promise<InvestorSubscription>;
288
- protected processInvestorSubscriptionGET2(response: Response): Promise<InvestorSubscription>;
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
- sign2(id: string, body: any | undefined): Promise<InvestorSubscription>;
296
- protected processSign2(response: Response): Promise<InvestorSubscription>;
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
- orderReference(body: UpdateInvestorSubscriptionOrderReference | undefined): Promise<void>;
303
- protected processOrderReference(response: Response): Promise<void>;
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
- investorSubscriptionAll(investorSubscriptionId: string): Promise<InvestorSubscriptionAction[]>;
310
- protected processInvestorSubscriptionAll(response: Response): Promise<InvestorSubscriptionAction[]>;
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
- investorSubscriptionAction(id: string): Promise<InvestorSubscriptionAction>;
317
- protected processInvestorSubscriptionAction(response: Response): Promise<InvestorSubscriptionAction>;
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
- complete(id: string, body: any | undefined): Promise<void>;
325
- protected processComplete(response: Response): Promise<void>;
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
- partner(): Promise<Partner>;
503
- protected processPartner(response: Response): Promise<Partner>;
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
- generateDocument(id: string, body: {
510
+ generatePdfDocument(id: string, body: {
511
511
  [key: string]: string;
512
512
  } | undefined): Promise<FileResponse>;
513
- protected processGenerateDocument(response: Response): Promise<FileResponse>;
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
- preIpoCompany(id: string): Promise<PreIPOCompany>;
591
- protected processPreIpoCompany(response: Response): Promise<PreIPOCompany>;
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
- preIpoCompany2(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 processPreIpoCompany2(response: Response): Promise<PreIPOCompanyApiResponse>;
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.
@@ -622,15 +622,15 @@ export declare class Client {
622
622
  * @param isActive (optional) Optional active state filter.
623
623
  * @return Returns the filtered and paginated list of detailed PreIPOCompanies.
624
624
  */
625
- detailed(filterId: string | undefined, filterBy: FilterBy | undefined, page: number | undefined, pageSize: number | undefined, includes: Includes[] | undefined, listingType: string | undefined, isActive: boolean | undefined): Promise<BulkPreIPOCompanyApiResponse>;
626
- protected processDetailed(response: Response): Promise<BulkPreIPOCompanyApiResponse>;
625
+ getAllDetailedPreIPOCompanies(filterId: string | undefined, filterBy: FilterBy | undefined, page: number | undefined, pageSize: number | undefined, includes: Includes[] | undefined, listingType: string | undefined, isActive: boolean | undefined): Promise<BulkPreIPOCompanyApiResponse>;
626
+ protected processGetAllDetailedPreIPOCompanies(response: Response): Promise<BulkPreIPOCompanyApiResponse>;
627
627
  /**
628
628
  * Get the PreIPOCompanyFundingRound by the specified Id.
629
629
  * @param id ID of the PreIPOCompanyFundingRound to find.
630
630
  * @return Returns the PreIPOCompanyFundingRound with the specified Id.
631
631
  */
632
- preIpoCompanyFundingRound(id: string): Promise<PreIPOCompanyFundingRound>;
633
- protected processPreIpoCompanyFundingRound(response: Response): Promise<PreIPOCompanyFundingRound>;
632
+ getPreIPOCompanyFundingRoundById(id: string): Promise<PreIPOCompanyFundingRound>;
633
+ protected processGetPreIPOCompanyFundingRoundById(response: Response): Promise<PreIPOCompanyFundingRound>;
634
634
  /**
635
635
  * Get all PreIPOCompanyFundingRounds.
636
636
  * @param page (optional) Number of the page to retrieve.
@@ -642,16 +642,16 @@ export declare class Client {
642
642
  * @param sortOrder (optional)
643
643
  * @return OK
644
644
  */
645
- preIpoCompanyFundingRound2(page: number | undefined, pageSize: number | undefined, preIPOCompanyId: string | undefined, searchTerm: string | undefined, sortOrder: SortOrder8 | undefined): Promise<PreIPOCompanyFundingRoundApiResponse>;
646
- protected processPreIpoCompanyFundingRound2(response: Response): Promise<PreIPOCompanyFundingRoundApiResponse>;
645
+ getAllPreIPOCompanyFundingRounds(page: number | undefined, pageSize: number | undefined, preIPOCompanyId: string | undefined, searchTerm: string | undefined, sortOrder: SortOrder8 | undefined): Promise<PreIPOCompanyFundingRoundApiResponse>;
646
+ protected processGetAllPreIPOCompanyFundingRounds(response: Response): Promise<PreIPOCompanyFundingRoundApiResponse>;
647
647
  /**
648
648
  * Get a PreIPOCompanyInvestment by Id
649
649
  * @param id ID of the PreIPOCompanyInvestment to find.
650
650
  * @param investorId The investorId making the request
651
651
  * @return Returns the PreIPOCompanyInvestment with the specified Id.
652
652
  */
653
- investorGET3(id: string, investorId: string): Promise<PreIPOCompanyInvestment>;
654
- protected processInvestorGET3(response: Response): Promise<PreIPOCompanyInvestment>;
653
+ getPreIPOCompanyInvestmentById(id: string, investorId: string): Promise<PreIPOCompanyInvestment>;
654
+ protected processGetPreIPOCompanyInvestmentById(response: Response): Promise<PreIPOCompanyInvestment>;
655
655
  /**
656
656
  * Get all PreIPOCompanyInvestments
657
657
  * @param investorId The investorId making the request
@@ -664,15 +664,15 @@ export declare class Client {
664
664
  * @param sortOrder (optional)
665
665
  * @return OK
666
666
  */
667
- investorGET4(investorId: string, nameFilter: string | undefined, page: number | undefined, pageSize: number | undefined, preIpoCompanyId: string | undefined, sortOrder: SortOrder9 | undefined): Promise<PreIPOCompanyInvestmentApiResponse>;
668
- protected processInvestorGET4(response: Response): Promise<PreIPOCompanyInvestmentApiResponse>;
667
+ getAllPreIPOCompanyInvestments(investorId: string, nameFilter: string | undefined, page: number | undefined, pageSize: number | undefined, preIpoCompanyId: string | undefined, sortOrder: SortOrder9 | undefined): Promise<PreIPOCompanyInvestmentApiResponse>;
668
+ protected processGetAllPreIPOCompanyInvestments(response: Response): Promise<PreIPOCompanyInvestmentApiResponse>;
669
669
  /**
670
670
  * Get a PreIPOCompanyNews by Id.
671
671
  * @param id ID of the PreIPOCompanyNews to find.
672
672
  * @return Returns the PreIPOCompanyNews with the specified Id.
673
673
  */
674
- preIpoCompanyNews(id: string): Promise<PreIPOCompanyNews>;
675
- protected processPreIpoCompanyNews(response: Response): Promise<PreIPOCompanyNews>;
674
+ getPreIPOCompanyNewsById(id: string): Promise<PreIPOCompanyNews>;
675
+ protected processGetPreIPOCompanyNewsById(response: Response): Promise<PreIPOCompanyNews>;
676
676
  /**
677
677
  * Get all PreIPOCompanyNews.
678
678
  * @param searchTerm (optional) Search term to filter results on based on 'Headline' field.
@@ -684,15 +684,15 @@ export declare class Client {
684
684
  * @param sortOrder (optional)
685
685
  * @return OK
686
686
  */
687
- preIpoCompanyNews2(searchTerm: string | undefined, page: number | undefined, pageSize: number | undefined, preIPOCompanyId: string | undefined, sortOrder: SortOrder10 | undefined): Promise<PreIPOCompanyNewsApiResponse>;
688
- protected processPreIpoCompanyNews2(response: Response): Promise<PreIPOCompanyNewsApiResponse>;
687
+ getAllPreIPOCompanyNews(searchTerm: string | undefined, page: number | undefined, pageSize: number | undefined, preIPOCompanyId: string | undefined, sortOrder: SortOrder10 | undefined): Promise<PreIPOCompanyNewsApiResponse>;
688
+ protected processGetAllPreIPOCompanyNews(response: Response): Promise<PreIPOCompanyNewsApiResponse>;
689
689
  /**
690
690
  * Get a PreIPOCompanyResearch by Id.
691
691
  * @param id ID of the PreIPOCompanyResearch to find.
692
692
  * @return Returns the PreIPOCompanyResearch with the specified Id.
693
693
  */
694
- preIpoCompanyResearch(id: string): Promise<PreIPOCompanyResearch>;
695
- protected processPreIpoCompanyResearch(response: Response): Promise<PreIPOCompanyResearch>;
694
+ getPreIPOCompanyResearchById(id: string): Promise<PreIPOCompanyResearch>;
695
+ protected processGetPreIPOCompanyResearchById(response: Response): Promise<PreIPOCompanyResearch>;
696
696
  /**
697
697
  * Get all PreIPOCompanyResearch.
698
698
  * @param page (optional) Number of the page to retrieve.
@@ -706,8 +706,8 @@ export declare class Client {
706
706
  * @param relation (optional)
707
707
  * @return OK
708
708
  */
709
- preIpoCompanyResearch2(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, preIPOCompanyId: string | undefined, sortOrder: SortOrder11 | undefined, researchType: ResearchType | undefined, relation: Relation | undefined): Promise<PreIPOCompanyResearchApiResponse>;
710
- protected processPreIpoCompanyResearch2(response: Response): Promise<PreIPOCompanyResearchApiResponse>;
709
+ getPreIPOCompanyResearchAll(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, preIPOCompanyId: string | undefined, sortOrder: SortOrder11 | undefined, researchType: ResearchType | undefined, relation: Relation | undefined): Promise<PreIPOCompanyResearchApiResponse>;
710
+ protected processGetPreIPOCompanyResearchAll(response: Response): Promise<PreIPOCompanyResearchApiResponse>;
711
711
  /**
712
712
  * Get a PreIPOCompanySPV by Id
713
713
  * @param id ID of the PreIPOCompanySPV to find.
@@ -715,8 +715,17 @@ export declare class Client {
715
715
  * @param includeDocuments (optional) Returns specific documents associated with an SPV.
716
716
  * @return Returns the PreIPOCompanySPV with the specified Id.
717
717
  */
718
- investorGET5(id: string, investorId: string, includeDocuments: boolean | undefined): Promise<PreIPOCompanySPV>;
719
- protected processInvestorGET5(response: Response): Promise<PreIPOCompanySPV>;
718
+ getPreIPOCompanySPVById(id: string, investorId: string, includeDocuments: boolean | undefined): Promise<PreIPOCompanySPV>;
719
+ protected processGetPreIPOCompanySPVById(response: Response): Promise<PreIPOCompanySPV>;
720
+ /**
721
+ * Get a PreIPOCompanySPV by Cusip
722
+ * @param cusip Cusip of the PreIPOCompanySPV to find.
723
+ * @param investorId Investor that the SPV's are being retrieved for.
724
+ * @param includeDocuments (optional) Returns specific documents associated with an SPV.
725
+ * @return Returns the PreIPOCompanySPV with the specified Cusip.
726
+ */
727
+ getPreIPOCompanySPVByCusip(cusip: string, investorId: string, includeDocuments: boolean | undefined): Promise<PreIPOCompanySPV>;
728
+ protected processGetPreIPOCompanySPVByCusip(response: Response): Promise<PreIPOCompanySPV>;
720
729
  /**
721
730
  * Get all PreIPOCompanySPVs
722
731
  * @param monarkStage (optional) Optional param to filter returned spv's based on Monark Stage.
@@ -732,8 +741,8 @@ export declare class Client {
732
741
  * @param sortBy (optional)
733
742
  * @return OK
734
743
  */
735
- investorGET6(investorId: string, monarkStage: MonarkStage | undefined, exemptionsClaimed: ExemptionsClaimed[] | undefined, nameFilter: string | undefined, preIPOCompanyId: string | undefined, preIPOCompanyInvestmentId: string | undefined, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder12 | undefined, sortBy: SortBy2 | undefined): Promise<PreIPOCompanySPVApiResponse>;
736
- protected processInvestorGET6(response: Response): Promise<PreIPOCompanySPVApiResponse>;
744
+ getAllPreIPOCompanySPVs(investorId: string, monarkStage: MonarkStage | undefined, exemptionsClaimed: ExemptionsClaimed[] | undefined, nameFilter: string | undefined, preIPOCompanyId: string | undefined, preIPOCompanyInvestmentId: string | undefined, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder12 | undefined, sortBy: SortBy2 | undefined): Promise<PreIPOCompanySPVApiResponse>;
745
+ protected processGetAllPreIPOCompanySPVs(response: Response): Promise<PreIPOCompanySPVApiResponse>;
737
746
  /**
738
747
  * Gets all SPVs that have been approved.
739
748
  * @param page (optional) Number of the page to retrieve.
@@ -742,36 +751,36 @@ export declare class Client {
742
751
  Defaults to 25 if not specified.
743
752
  * @return Returns the list of approved SPVs.
744
753
  */
745
- spvs(page: number | undefined, pageSize: number | undefined): Promise<PreIPOCompanySPVApiResponse>;
746
- protected processSpvs(response: Response): Promise<PreIPOCompanySPVApiResponse>;
754
+ getPartnerApprovedSPVs(page: number | undefined, pageSize: number | undefined): Promise<PreIPOCompanySPVApiResponse>;
755
+ protected processGetPartnerApprovedSPVs(response: Response): Promise<PreIPOCompanySPVApiResponse>;
747
756
  /**
748
757
  * Checks if a specific SPV has been approved.
749
758
  * @param spvId ID of the SPV.
750
759
  * @return Returns whether approval exists.
751
760
  */
752
- isApproved(spvId: string): Promise<boolean>;
753
- protected processIsApproved(response: Response): Promise<boolean>;
761
+ isSpvApproved(spvId: string): Promise<boolean>;
762
+ protected processIsSpvApproved(response: Response): Promise<boolean>;
754
763
  /**
755
764
  * Approves an SPV.
756
765
  * @param spvId ID of the SPV.
757
766
  * @param body (optional) Approval request containing optional notes.
758
767
  * @return SPV successfully approved.
759
768
  */
760
- approve(spvId: string, body: CreatePreIPOCompanySPVPartnerApproval | undefined): Promise<boolean>;
761
- protected processApprove(response: Response): Promise<boolean>;
769
+ approveSpv(spvId: string, body: CreatePreIPOCompanySPVPartnerApproval | undefined): Promise<boolean>;
770
+ protected processApproveSpv(response: Response): Promise<boolean>;
762
771
  /**
763
772
  * Gets the approval record for a specific SPV.
764
773
  * @param spvId ID of the SPV.
765
774
  * @return Returns the approval record.
766
775
  */
767
- approval(spvId: string): Promise<PreIPOCompanySPVPartnerApproval>;
768
- protected processApproval(response: Response): Promise<PreIPOCompanySPVPartnerApproval>;
776
+ getPartnerSpvApproval(spvId: string): Promise<PreIPOCompanySPVPartnerApproval>;
777
+ protected processGetPartnerSpvApproval(response: Response): Promise<PreIPOCompanySPVPartnerApproval>;
769
778
  /**
770
779
  * Gets an approval record by Id.
771
780
  * @return Returns an approval record.
772
781
  */
773
- preIpoCompanySpvPartnerApproval(approvalId: string): Promise<PreIPOCompanySPVPartnerApproval>;
774
- protected processPreIpoCompanySpvPartnerApproval(response: Response): Promise<PreIPOCompanySPVPartnerApproval>;
782
+ getPartnerSpvApprovalById(approvalId: string): Promise<PreIPOCompanySPVPartnerApproval>;
783
+ protected processGetPartnerSpvApprovalById(response: Response): Promise<PreIPOCompanySPVPartnerApproval>;
775
784
  /**
776
785
  * Gets all approval records with optional filtering.
777
786
  * @param page (optional) Number of the page to retrieve.
@@ -781,20 +790,20 @@ export declare class Client {
781
790
  * @param sortOrder (optional) Sort order for results.
782
791
  * @return Returns the list of approval records.
783
792
  */
784
- preIpoCompanySpvPartnerApproval2(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder13 | undefined): Promise<PreIPOCompanySPVPartnerApprovalApiResponse>;
785
- protected processPreIpoCompanySpvPartnerApproval2(response: Response): Promise<PreIPOCompanySPVPartnerApprovalApiResponse>;
793
+ getAllPartnerSpvApprovals(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder13 | undefined): Promise<PreIPOCompanySPVPartnerApprovalApiResponse>;
794
+ protected processGetAllPartnerSpvApprovals(response: Response): Promise<PreIPOCompanySPVPartnerApprovalApiResponse>;
786
795
  /**
787
796
  * @param body (optional)
788
797
  * @return Created
789
798
  */
790
- questionnairePOST(body: CreateQuestionnaire | undefined): Promise<Questionnaire>;
791
- protected processQuestionnairePOST(response: Response): Promise<Questionnaire>;
799
+ createQuestionnaire(body: CreateQuestionnaire | undefined): Promise<Questionnaire>;
800
+ protected processCreateQuestionnaire(response: Response): Promise<Questionnaire>;
792
801
  /**
793
802
  * @param body (optional)
794
803
  * @return OK
795
804
  */
796
- questionnairePUT(body: UpdateQuestionnaire | undefined): Promise<Questionnaire>;
797
- protected processQuestionnairePUT(response: Response): Promise<Questionnaire>;
805
+ updateQuestionnaire(body: UpdateQuestionnaire | undefined): Promise<Questionnaire>;
806
+ protected processUpdateQuestionnaire(response: Response): Promise<Questionnaire>;
798
807
  /**
799
808
  * Get all Questionnaires
800
809
  * @param page (optional) Number of the page to retrieve.
@@ -804,27 +813,27 @@ export declare class Client {
804
813
  * @param sortOrder (optional)
805
814
  * @return Returns the list of Questionnaires.
806
815
  */
807
- questionnaireGET(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder14 | undefined): Promise<QuestionnaireApiResponse>;
808
- protected processQuestionnaireGET(response: Response): Promise<QuestionnaireApiResponse>;
816
+ getAllQuestionnaires(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder14 | undefined): Promise<QuestionnaireApiResponse>;
817
+ protected processGetAllQuestionnaires(response: Response): Promise<QuestionnaireApiResponse>;
809
818
  /**
810
819
  * @return No Content
811
820
  */
812
- questionnaireDELETE(id: string): Promise<void>;
813
- protected processQuestionnaireDELETE(response: Response): Promise<void>;
821
+ deleteQuestionnaire(id: string): Promise<void>;
822
+ protected processDeleteQuestionnaire(response: Response): Promise<void>;
814
823
  /**
815
824
  * Get a Questionnaire by Id
816
825
  * @param id ID of the Questionnaire to find.
817
826
  * @return Returns the Questionnaire with the specified Id.
818
827
  */
819
- questionnaireGET2(id: string): Promise<Questionnaire>;
820
- protected processQuestionnaireGET2(response: Response): Promise<Questionnaire>;
828
+ getQuestionnaireById(id: string): Promise<Questionnaire>;
829
+ protected processGetQuestionnaireById(response: Response): Promise<Questionnaire>;
821
830
  /**
822
831
  * Create a QuestionnaireAnswer
823
832
  * @param body (optional) create QuestionnaireAnswer information.
824
833
  * @return The newly created QuestionnaireAnswer.
825
834
  */
826
- questionnaireAnswerPOST(body: CreateQuestionnaireAnswer | undefined): Promise<QuestionnaireAnswer>;
827
- protected processQuestionnaireAnswerPOST(response: Response): Promise<QuestionnaireAnswer>;
835
+ createQuestionnaireAnswer(body: CreateQuestionnaireAnswer | undefined): Promise<QuestionnaireAnswer>;
836
+ protected processCreateQuestionnaireAnswer(response: Response): Promise<QuestionnaireAnswer>;
828
837
  /**
829
838
  * Get all QuestionnaireAnswers.
830
839
  * @param investorId (optional) Optional filter by Investor ID.
@@ -836,23 +845,23 @@ export declare class Client {
836
845
  * @param sortOrder (optional)
837
846
  * @return Returns the list of Questionnaire.
838
847
  */
839
- questionnaireAnswerGET(investorId: string | undefined, questionnaireId: string | undefined, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder15 | undefined): Promise<QuestionnaireAnswerApiResponse>;
840
- protected processQuestionnaireAnswerGET(response: Response): Promise<QuestionnaireAnswerApiResponse>;
848
+ getAllQuestionnaireAnswers(investorId: string | undefined, questionnaireId: string | undefined, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder15 | undefined): Promise<QuestionnaireAnswerApiResponse>;
849
+ protected processGetAllQuestionnaireAnswers(response: Response): Promise<QuestionnaireAnswerApiResponse>;
841
850
  /**
842
851
  * Get a QuestionnaireAnswer by Id
843
852
  * @param id ID of the QuestionnaireAnswer to find.
844
853
  * @return Returns the QuestionnaireAnswer with the specified Id.
845
854
  */
846
- questionnaireAnswerGET2(id: string): Promise<QuestionnaireAnswer>;
847
- protected processQuestionnaireAnswerGET2(response: Response): Promise<QuestionnaireAnswer>;
855
+ getQuestionnaireAnswerById(id: string): Promise<QuestionnaireAnswer>;
856
+ protected processGetQuestionnaireAnswerById(response: Response): Promise<QuestionnaireAnswer>;
848
857
  /**
849
858
  * Get the RegisteredFund by the specified Id.
850
859
  * @param id ID of the RegisteredFund to find.
851
860
  * @param includeDocuments (optional) Return associated documents
852
861
  * @return Returns the RegisteredFund with the specified Id.
853
862
  */
854
- registeredFund(id: string, includeDocuments: boolean | undefined): Promise<RegisteredFund>;
855
- protected processRegisteredFund(response: Response): Promise<RegisteredFund>;
863
+ getRegisteredFundById(id: string, includeDocuments: boolean | undefined): Promise<RegisteredFund>;
864
+ protected processGetRegisteredFundById(response: Response): Promise<RegisteredFund>;
856
865
  /**
857
866
  * Get all RegisteredFunds
858
867
  * @param page (optional) Number of the page to retrieve.
@@ -863,15 +872,15 @@ export declare class Client {
863
872
  * @param sortOrder (optional) Which way to sort order, defaults to Descending.
864
873
  * @return OK
865
874
  */
866
- registeredFund2(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder16 | undefined): Promise<RegisteredFundApiResponse>;
867
- protected processRegisteredFund2(response: Response): Promise<RegisteredFundApiResponse>;
875
+ getAllRegisteredFunds(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder16 | undefined): Promise<RegisteredFundApiResponse>;
876
+ protected processGetAllRegisteredFunds(response: Response): Promise<RegisteredFundApiResponse>;
868
877
  /**
869
878
  * Creates a new registered fund subscription.
870
879
  * @param body (optional) The subscription creation request.
871
880
  * @return Created
872
881
  */
873
- registeredFundSubscriptionPOST(body: CreateRegisteredFundSubscription | undefined): Promise<RegisteredFundSubscription>;
874
- protected processRegisteredFundSubscriptionPOST(response: Response): Promise<RegisteredFundSubscription>;
882
+ createRegisteredFundSubscription(body: CreateRegisteredFundSubscription | undefined): Promise<RegisteredFundSubscription>;
883
+ protected processCreateRegisteredFundSubscription(response: Response): Promise<RegisteredFundSubscription>;
875
884
  /**
876
885
  * Gets all registered fund subscriptions with optional filtering.
877
886
  * @param page (optional) Number of the page to retrieve.
@@ -883,83 +892,83 @@ export declare class Client {
883
892
  * @param sortOrder (optional) Sort order for results (default: Descending).
884
893
  * @return OK
885
894
  */
886
- registeredFundSubscriptionGET(page: number | undefined, pageSize: number | undefined, registeredFundId: string | undefined, investorId: string | undefined, sortOrder: SortOrder17 | undefined): Promise<RegisteredFundSubscriptionApiResponse>;
887
- protected processRegisteredFundSubscriptionGET(response: Response): Promise<RegisteredFundSubscriptionApiResponse>;
895
+ getAllRegisteredFundSubscriptions(page: number | undefined, pageSize: number | undefined, registeredFundId: string | undefined, investorId: string | undefined, sortOrder: SortOrder17 | undefined): Promise<RegisteredFundSubscriptionApiResponse>;
896
+ protected processGetAllRegisteredFundSubscriptions(response: Response): Promise<RegisteredFundSubscriptionApiResponse>;
888
897
  /**
889
898
  * Gets a subscription by ID.
890
899
  * @param id The subscription ID.
891
900
  * @return OK
892
901
  */
893
- registeredFundSubscriptionGET2(id: string): Promise<RegisteredFundSubscription>;
894
- protected processRegisteredFundSubscriptionGET2(response: Response): Promise<RegisteredFundSubscription>;
902
+ getRegisteredFundSubscriptionById(id: string): Promise<RegisteredFundSubscription>;
903
+ protected processGetRegisteredFundSubscriptionById(response: Response): Promise<RegisteredFundSubscription>;
895
904
  /**
896
905
  * Generates a preview of the subscription document with filled data.
897
906
  * @param id The subscription ID.
898
907
  * @param body (optional)
899
908
  * @return OK
900
909
  */
901
- preview(id: string, body: any | undefined): Promise<FileResponse>;
902
- protected processPreview(response: Response): Promise<FileResponse>;
910
+ generateRegisteredFundSubscriptionPreview(id: string, body: any | undefined): Promise<FileResponse>;
911
+ protected processGenerateRegisteredFundSubscriptionPreview(response: Response): Promise<FileResponse>;
903
912
  /**
904
913
  * Signs the document as an investor.
905
914
  * @param id The subscription ID.
906
915
  * @param body (optional) The signature request.
907
916
  * @return OK
908
917
  */
909
- signInvestor(id: string, body: SignatureRequest | undefined): Promise<RegisteredFundSubscription>;
910
- protected processSignInvestor(response: Response): Promise<RegisteredFundSubscription>;
918
+ signRegisteredFundSubscriptionByInvestor(id: string, body: SignatureRequest | undefined): Promise<RegisteredFundSubscription>;
919
+ protected processSignRegisteredFundSubscriptionByInvestor(response: Response): Promise<RegisteredFundSubscription>;
911
920
  /**
912
921
  * Signs the document as a financial advisor.
913
922
  * @param id The subscription ID.
914
923
  * @param body (optional) The signature request.
915
924
  * @return OK
916
925
  */
917
- signAdvisor(id: string, body: SignatureRequest | undefined): Promise<RegisteredFundSubscription>;
918
- protected processSignAdvisor(response: Response): Promise<RegisteredFundSubscription>;
926
+ signRegisteredFundSubscriptionByAdvisor(id: string, body: SignatureRequest | undefined): Promise<RegisteredFundSubscription>;
927
+ protected processSignRegisteredFundSubscriptionByAdvisor(response: Response): Promise<RegisteredFundSubscription>;
919
928
  /**
920
929
  * Gets the current document for a subscription based on its status.
921
930
  Returns the appropriate document version.
922
931
  * @param id The subscription ID.
923
932
  * @return OK
924
933
  */
925
- document3(id: string): Promise<FileResponse>;
926
- protected processDocument3(response: Response): Promise<FileResponse>;
934
+ getRegisteredFundSubscriptionDocument(id: string): Promise<FileResponse>;
935
+ protected processGetRegisteredFundSubscriptionDocument(response: Response): Promise<FileResponse>;
927
936
  /**
928
937
  * Get all RegisteredFundSubscriptionActions by RegisteredFundSubscription.
929
938
  * @param registeredFundSubscriptionId The ID of the RegisteredFundSubscription to get the actions for.
930
939
  * @param responsibleParty (optional) Optional filter by responsible party.
931
940
  * @return OK
932
941
  */
933
- registeredFundSubscriptionAll(registeredFundSubscriptionId: string, responsibleParty: ResponsibleParty | undefined): Promise<RegisteredFundSubscriptionAction[]>;
934
- protected processRegisteredFundSubscriptionAll(response: Response): Promise<RegisteredFundSubscriptionAction[]>;
942
+ getAllRegisteredFundSubscriptionActions(registeredFundSubscriptionId: string, responsibleParty: ResponsibleParty | undefined): Promise<RegisteredFundSubscriptionAction[]>;
943
+ protected processGetAllRegisteredFundSubscriptionActions(response: Response): Promise<RegisteredFundSubscriptionAction[]>;
935
944
  /**
936
945
  * Get a RegisteredFundSubscriptionAction by Id
937
946
  * @param id ID of the RegisteredFundSubscriptionAction to find.
938
947
  * @return OK
939
948
  */
940
- registeredFundSubscriptionAction(id: string): Promise<RegisteredFundSubscriptionAction>;
941
- protected processRegisteredFundSubscriptionAction(response: Response): Promise<RegisteredFundSubscriptionAction>;
949
+ getRegisteredFundSubscriptionActionById(id: string): Promise<RegisteredFundSubscriptionAction>;
950
+ protected processGetRegisteredFundSubscriptionActionById(response: Response): Promise<RegisteredFundSubscriptionAction>;
942
951
  /**
943
952
  * Complete a RegisteredFundSubscriptionAction.
944
953
  * @param id The ID of the RegisteredFundSubscriptionAction to complete.
945
954
  * @param body (optional)
946
955
  * @return No Content
947
956
  */
948
- complete2(id: string, body: any | undefined): Promise<void>;
949
- protected processComplete2(response: Response): Promise<void>;
957
+ completeRegisteredFundSubscriptionAction(id: string, body: any | undefined): Promise<void>;
958
+ protected processCompleteRegisteredFundSubscriptionAction(response: Response): Promise<void>;
950
959
  /**
951
960
  * Get the API version
952
961
  * @return Returns the API version
953
962
  */
954
- version(): Promise<ApiVersion>;
955
- protected processVersion(response: Response): Promise<ApiVersion>;
963
+ getVersion(): Promise<ApiVersion>;
964
+ protected processGetVersion(response: Response): Promise<ApiVersion>;
956
965
  /**
957
966
  * Create a Webhook
958
967
  * @param body (optional) Create Webhook information.
959
968
  * @return The newly created Webhook.
960
969
  */
961
- webhookPOST(body: CreateWebhook | undefined): Promise<Webhook>;
962
- protected processWebhookPOST(response: Response): Promise<Webhook>;
970
+ createWebhook(body: CreateWebhook | undefined): Promise<Webhook>;
971
+ protected processCreateWebhook(response: Response): Promise<Webhook>;
963
972
  /**
964
973
  * Get all Webhooks
965
974
  * @param page (optional) Number of the page to retrieve.
@@ -969,29 +978,29 @@ export declare class Client {
969
978
  * @param sortOrder (optional) Order of which to sort the webhooks by. Default is Descending
970
979
  * @return Returns a list of Webhooks.
971
980
  */
972
- webhookGET(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder18 | undefined): Promise<WebhookApiResponse>;
973
- protected processWebhookGET(response: Response): Promise<WebhookApiResponse>;
981
+ getAllWebhooks(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder18 | undefined): Promise<WebhookApiResponse>;
982
+ protected processGetAllWebhooks(response: Response): Promise<WebhookApiResponse>;
974
983
  /**
975
984
  * Update a Webhook’s Information
976
985
  * @param body (optional) Update Webhook Request.
977
986
  * @return The Updated Webhook.
978
987
  */
979
- webhookPUT(body: UpdateWebhook | undefined): Promise<void>;
980
- protected processWebhookPUT(response: Response): Promise<void>;
988
+ updateWebhook(body: UpdateWebhook | undefined): Promise<void>;
989
+ protected processUpdateWebhook(response: Response): Promise<void>;
981
990
  /**
982
991
  * Get a Webhook
983
992
  * @param id Id of the webhook to get.
984
993
  * @return Returns the Webhook with the specified Id.
985
994
  */
986
- webhookGET2(id: string): Promise<Webhook>;
987
- protected processWebhookGET2(response: Response): Promise<Webhook>;
995
+ getWebhookById(id: string): Promise<Webhook>;
996
+ protected processGetWebhookById(response: Response): Promise<Webhook>;
988
997
  /**
989
998
  * Delete a Webhook
990
999
  * @param id The Webhooks ID.
991
1000
  * @return The Webhook was deleted.
992
1001
  */
993
- webhookDELETE(id: string): Promise<void>;
994
- protected processWebhookDELETE(response: Response): Promise<void>;
1002
+ deleteWebhook(id: string): Promise<void>;
1003
+ protected processDeleteWebhook(response: Response): Promise<void>;
995
1004
  /**
996
1005
  * Get all Webhook Events for a specified Webhook
997
1006
  * @param id The Webhook's ID.
@@ -1006,8 +1015,8 @@ export declare class Client {
1006
1015
  * @param deliveryStatus (optional) Optional filter by delivery status.
1007
1016
  * @return Returns a list of Webhook Events.
1008
1017
  */
1009
- events(id: string, from: Date, to: Date, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder19 | undefined, eventType: EventType | undefined, deliveryStatus: DeliveryStatus | undefined): Promise<WebhookEventApiResponse>;
1010
- protected processEvents(response: Response): Promise<WebhookEventApiResponse>;
1018
+ getAllWebhookEvents(id: string, from: Date, to: Date, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder19 | undefined, eventType: EventType | undefined, deliveryStatus: DeliveryStatus | undefined): Promise<WebhookEventApiResponse>;
1019
+ protected processGetAllWebhookEvents(response: Response): Promise<WebhookEventApiResponse>;
1011
1020
  }
1012
1021
  /** Represents the version information of the API */
1013
1022
  export declare class ApiVersion implements IApiVersion {