@monarkmarkets/api-client 1.0.1 → 1.0.3

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.
@@ -0,0 +1,2660 @@
1
+ export declare class Client {
2
+ private http;
3
+ private baseUrl;
4
+ protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
5
+ constructor(baseUrl?: string, http?: {
6
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
7
+ });
8
+ /**
9
+ * Get a Document by ID.
10
+ * @param id The Document ID for the document to retrieve.
11
+ * @return OK
12
+ */
13
+ document(id: string): Promise<Document>;
14
+ protected processDocument(response: Response): Promise<Document>;
15
+ /**
16
+ * Get all Documents.
17
+ * @param investorId (optional) Investor ID to filter by.
18
+ * @param preIPOCompanyId (optional) PreIPOCompanyID to filter by.
19
+ * @param preIPOCompanySPVId (optional) PreIPOCompanySPVId to filter by.
20
+ * @param preIPOCompanyInvestmentId (optional) PreIPOCompanyInvestmentId to filter by.
21
+ * @param investorSubscriptionId (optional) InvestorSubscriptionId to filter by.
22
+ * @param documentType (optional) Type of document to filter by.
23
+ * @param exactMatch (optional) Only returns the items exactly matching the parameters given.
24
+ * @param page (optional) Page number for pagination.
25
+ * @param pageSize (optional) Number of items per page for pagination.
26
+ * @param sortOrder (optional)
27
+ * @return OK
28
+ */
29
+ document2(investorId: string | undefined, preIPOCompanyId: string | undefined, preIPOCompanySPVId: string | undefined, preIPOCompanyInvestmentId: string | undefined, investorSubscriptionId: string | undefined, documentType: DocumentType | undefined, exactMatch: boolean | undefined, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder | undefined): Promise<DocumentShallowApiResponse>;
30
+ protected processDocument2(response: Response): Promise<DocumentShallowApiResponse>;
31
+ /**
32
+ * Signs a document by a document ID.
33
+ * @param id The Document ID for the document to sign.
34
+ * @param body (optional) Data about the signing.
35
+ * @return No Content
36
+ */
37
+ sign(id: string, body: SignDocument | undefined): Promise<void>;
38
+ protected processSign(response: Response): Promise<void>;
39
+ /**
40
+ * Create an IndicationOfInterest
41
+ * @param body (optional) create IndicationOfInterest information.
42
+ * @return The newly created IndicationOfInterest.
43
+ */
44
+ indicationOfInterestPOST(body: CreateIndicationOfInterest | undefined): Promise<IndicationOfInterest>;
45
+ protected processIndicationOfInterestPOST(response: Response): Promise<IndicationOfInterest>;
46
+ /**
47
+ * Get all IndicationOfInterests
48
+ * @param investorId (optional) Filter the returned IndicationOfInterests by an InvestorId.
49
+ * @param page (optional)
50
+ * @param pageSize (optional)
51
+ * @param sortOrder (optional)
52
+ * @return Returns the list of IndicationOfInterest.
53
+ */
54
+ indicationOfInterestGET(investorId: string | undefined, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder2 | undefined): Promise<IndicationOfInterestApiResponse>;
55
+ protected processIndicationOfInterestGET(response: Response): Promise<IndicationOfInterestApiResponse>;
56
+ /**
57
+ * Get an IndicationOfInterest by Id
58
+ * @param id Unique ID of the IOI to find.
59
+ * @return Returns the IndicationOfInterest with the specified Id.
60
+ */
61
+ indicationOfInterestGET2(id: string): Promise<IndicationOfInterest>;
62
+ protected processIndicationOfInterestGET2(response: Response): Promise<IndicationOfInterest>;
63
+ /**
64
+ * Create an Investor.
65
+ * @param body (optional) create Investor information.
66
+ * @return The created Investor.
67
+ */
68
+ investorPOST(body: CreateInvestor | undefined): Promise<Investor>;
69
+ protected processInvestorPOST(response: Response): Promise<Investor>;
70
+ /**
71
+ * Update an Investor’s Information.
72
+ * @param body (optional) Update Investor Request.
73
+ * @return The Updated Investor.
74
+ */
75
+ investorPUT(body: UpdateInvestor | undefined): Promise<Investor>;
76
+ protected processInvestorPUT(response: Response): Promise<Investor>;
77
+ /**
78
+ * Update an Investor’s accreditation status.
79
+ * @param body (optional) M:primary_offering_web_api.Controllers.InvestorController.UpdateInvestorAccreditation(primary_offering_api_models.Investors.UpdateInvestorAccreditation,System.Threading.CancellationToken) from body.
80
+ * @return No Content
81
+ */
82
+ accreditation(body: UpdateInvestorAccreditation | undefined): Promise<void>;
83
+ protected processAccreditation(response: Response): Promise<void>;
84
+ /**
85
+ * Get the Investor by investorId.
86
+ * @param id ID of the Investor to find.
87
+ * @return Returns the Investor with the specified ID.
88
+ */
89
+ investorGET(id: string): Promise<Investor>;
90
+ protected processInvestorGET(response: Response): Promise<Investor>;
91
+ /**
92
+ * Get the Investor by investorReferenceId.
93
+ * @param investorReferenceId InvestorReferenceId of the Investor to find.
94
+ * @return Returns the Investor with the specified InvestorReference.
95
+ */
96
+ byReference(investorReferenceId: string): Promise<Investor>;
97
+ protected processByReference(response: Response): Promise<Investor>;
98
+ /**
99
+ * Create an InvestorSubscription.
100
+ * @param body (optional) Investor Subscription Properties.
101
+ * @return Created
102
+ */
103
+ investorSubscriptionPOST(body: CreateInvestorSubscription | undefined): Promise<InvestorSubscription>;
104
+ protected processInvestorSubscriptionPOST(response: Response): Promise<InvestorSubscription>;
105
+ /**
106
+ * Get all InvestorSubscriptions.
107
+ * @param preIpoCompanySpvId (optional) SPV to filter by.
108
+ * @param page (optional)
109
+ * @param pageSize (optional)
110
+ * @param sortOrder (optional)
111
+ * @return OK
112
+ */
113
+ investorSubscriptionGET(preIpoCompanySpvId: string | undefined, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder3 | undefined): Promise<InvestorSubscriptionApiResponse>;
114
+ protected processInvestorSubscriptionGET(response: Response): Promise<InvestorSubscriptionApiResponse>;
115
+ /**
116
+ * Get InvestorSubscription by InvestorId and PreIPOCompanySPVId.
117
+ * @param investorId Filter InvestorSubscription by Investor ID.
118
+ * @param spvId Filter InvestorSubscription by SPV ID.
119
+ * @return OK
120
+ */
121
+ preIpoCompanySpv(investorId: string, spvId: string): Promise<InvestorSubscription>;
122
+ protected processPreIpoCompanySpv(response: Response): Promise<InvestorSubscription>;
123
+ /**
124
+ * Get InvestorSubscriptions by InvestorId.
125
+ * @param investorId Filter InvestorSubscriptions by Investor ID.
126
+ * @return OK
127
+ */
128
+ investorAll(investorId: string): Promise<InvestorSubscription[]>;
129
+ protected processInvestorAll(response: Response): Promise<InvestorSubscription[]>;
130
+ /**
131
+ * Get an InvestorSubscription by ID.
132
+ * @param id ID of the InvestorSubscription to find.
133
+ * @return OK
134
+ */
135
+ investorSubscriptionGET2(id: string): Promise<InvestorSubscription>;
136
+ protected processInvestorSubscriptionGET2(response: Response): Promise<InvestorSubscription>;
137
+ /**
138
+ * Signs an Existing Subscription.
139
+ * @param id ID of subscription to sign.
140
+ * @return OK
141
+ */
142
+ sign2(id: string): Promise<InvestorSubscription>;
143
+ protected processSign2(response: Response): Promise<InvestorSubscription>;
144
+ /**
145
+ * Get all InvestorSubscriptionActions by InvestorSubscription.
146
+ * @param investorSubscriptionId The ID of the InvestorSubscription to get the actions for.
147
+ * @return OK
148
+ */
149
+ investorSubscriptionAll(investorSubscriptionId: string): Promise<InvestorSubscriptionAction[]>;
150
+ protected processInvestorSubscriptionAll(response: Response): Promise<InvestorSubscriptionAction[]>;
151
+ /**
152
+ * Get an InvestorSubscriptionAction by Id
153
+ * @param id ID of the InvestorSubscriptionAction to find.
154
+ * @return OK
155
+ */
156
+ investorSubscriptionAction(id: string): Promise<InvestorSubscriptionAction>;
157
+ protected processInvestorSubscriptionAction(response: Response): Promise<InvestorSubscriptionAction>;
158
+ /**
159
+ * Get the Partner of the authenticated user.
160
+ * @return Returns the Partner with the specified Id.
161
+ */
162
+ partner(): Promise<Partner>;
163
+ protected processPartner(response: Response): Promise<Partner>;
164
+ /**
165
+ * Get a PreIPOCompany by Id
166
+ * @param id ID of the PreIPOCompany to find.
167
+ * @return Returns the PreIPOCompany with the specified Id.
168
+ */
169
+ preIpoCompany(id: string): Promise<PreIPOCompany>;
170
+ protected processPreIpoCompany(response: Response): Promise<PreIPOCompany>;
171
+ /**
172
+ * Get all PreIPOCompanies
173
+ * @param searchTerm (optional) Search term to filter results on based on 'Name' field
174
+ * @param sortOrder (optional)
175
+ * @param page (optional) Which page number to return.
176
+ * @param pageSize (optional) The maximum number of items to return in each page, defaults to 25.
177
+ * @return OK
178
+ */
179
+ preIpoCompany2(searchTerm: string | undefined, sortOrder: SortOrder4 | undefined, page: number | undefined, pageSize: number | undefined): Promise<PreIPOCompanyApiResponse>;
180
+ protected processPreIpoCompany2(response: Response): Promise<PreIPOCompanyApiResponse>;
181
+ /**
182
+ * Get the PreIPOCompanyFundingRound by the specified Id.
183
+ * @param id ID of the PreIPOCompanyFundingRound to find.
184
+ * @return Returns the PreIPOCompanyFundingRound with the specified Id.
185
+ */
186
+ preIpoCompanyFundingRound(id: string): Promise<PreIPOCompanyFundingRound>;
187
+ protected processPreIpoCompanyFundingRound(response: Response): Promise<PreIPOCompanyFundingRound>;
188
+ /**
189
+ * Get all PreIPOCompanyFundingRounds.
190
+ * @param preIPOCompanyId (optional) The PreIPOCompanyId to retrieve the news for.
191
+ * @param searchTerm (optional) Search term to filter results on based on 'RoundName' field.
192
+ * @param sortOrder (optional)
193
+ * @param page (optional) Which page number to return.
194
+ * @param pageSize (optional) The maximum number of items to return in each page, defaults to 25.
195
+ * @return OK
196
+ */
197
+ preIpoCompanyFundingRound2(preIPOCompanyId: string | undefined, searchTerm: string | undefined, sortOrder: SortOrder5 | undefined, page: number | undefined, pageSize: number | undefined): Promise<PreIPOCompanyFundingRoundApiResponse>;
198
+ protected processPreIpoCompanyFundingRound2(response: Response): Promise<PreIPOCompanyFundingRoundApiResponse>;
199
+ /**
200
+ * Get a PreIPOCompanyInvestment by Id
201
+ * @param id ID of the PreIPOCompanyInvestment to find.
202
+ * @param investorId The investorId making the request
203
+ * @return Returns the PreIPOCompanyInvestment with the specified Id.
204
+ */
205
+ investorGET2(id: string, investorId: string): Promise<PreIPOCompanyInvestment>;
206
+ protected processInvestorGET2(response: Response): Promise<PreIPOCompanyInvestment>;
207
+ /**
208
+ * Get all PreIPOCompanyInvestments
209
+ * @param investorId The investorId making the request
210
+ * @param nameFilter (optional) Company name to filter by.
211
+ * @param page (optional) Page number to return.
212
+ * @param pageSize (optional) The maximum number of items to return in each page, defaults to 25.
213
+ * @param sortOrder (optional)
214
+ * @return OK
215
+ */
216
+ investorGET3(investorId: string, nameFilter: string | undefined, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder6 | undefined): Promise<PreIPOCompanyInvestmentApiResponse>;
217
+ protected processInvestorGET3(response: Response): Promise<PreIPOCompanyInvestmentApiResponse>;
218
+ /**
219
+ * Get a PreIPOCompanyNews by Id.
220
+ * @param id ID of the PreIPOCompanyNews to find.
221
+ * @return Returns the PreIPOCompanyNews with the specified Id.
222
+ */
223
+ preIpoCompanyNews(id: string): Promise<PreIPOCompanyNews>;
224
+ protected processPreIpoCompanyNews(response: Response): Promise<PreIPOCompanyNews>;
225
+ /**
226
+ * Get all PreIPOCompanyNews.
227
+ * @param searchTerm (optional) Search term to filter results on based on 'Headline' field.
228
+ * @param preIPOCompanyId (optional) The PreIPOCompanyId to retrieve the news for.
229
+ * @param page (optional) Which page number to return.
230
+ * @param pageSize (optional) The maximum number of items to return in each page, defaults to 25.
231
+ * @param sortOrder (optional)
232
+ * @return OK
233
+ */
234
+ preIpoCompanyNews2(searchTerm: string | undefined, preIPOCompanyId: string | undefined, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder7 | undefined): Promise<PreIPOCompanyNewsApiResponse>;
235
+ protected processPreIpoCompanyNews2(response: Response): Promise<PreIPOCompanyNewsApiResponse>;
236
+ /**
237
+ * Get a PreIPOCompanyResearch by Id.
238
+ * @param id ID of the PreIPOCompanyResearch to find.
239
+ * @return Returns the PreIPOCompanyResearch with the specified Id.
240
+ */
241
+ preIpoCompanyResearch(id: string): Promise<PreIPOCompanyResearch>;
242
+ protected processPreIpoCompanyResearch(response: Response): Promise<PreIPOCompanyResearch>;
243
+ /**
244
+ * Get all PreIPOCompanyResearch.
245
+ * @param searchTerm (optional) Search term to filter results on based on 'Title' field.
246
+ * @param preIPOCompanyId (optional)
247
+ * @param page (optional) Which page number to return.
248
+ * @param pageSize (optional) The maximum number of items to return in each page, defaults to 25.
249
+ * @param sortOrder (optional)
250
+ * @return OK
251
+ */
252
+ preIpoCompanyResearch2(searchTerm: string | undefined, preIPOCompanyId: string | undefined, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder8 | undefined): Promise<PreIPOCompanyResearchApiResponse>;
253
+ protected processPreIpoCompanyResearch2(response: Response): Promise<PreIPOCompanyResearchApiResponse>;
254
+ /**
255
+ * Get a PreIPOCompanySPV by Id
256
+ * @param id ID of the PreIPOCompanySPV to find.
257
+ * @param investorId Investor that the SPV's are being retrieved for.
258
+ * @param includeDocuments (optional) Returns specific documents associated with an SPV.
259
+ * @return Returns the PreIPOCompanySPV with the specified Id.
260
+ */
261
+ investorGET4(id: string, investorId: string, includeDocuments: boolean | undefined): Promise<PreIPOCompanySPV>;
262
+ protected processInvestorGET4(response: Response): Promise<PreIPOCompanySPV>;
263
+ /**
264
+ * Get all PreIPOCompanySPVs
265
+ * @param monarkStage (optional) Optional param to filter returned spv's based on Monark Stage.
266
+ * @param nameFilter (optional) Optional param to filter returned spv's based on the company name.
267
+ * @param page (optional) Which page number to return.
268
+ * @param pageSize (optional) The maximum number of items to return in each page, defaults to 25.
269
+ * @param sortOrder (optional)
270
+ * @return OK
271
+ */
272
+ investorGET5(investorId: string, monarkStage: MonarkStage | undefined, nameFilter: string | undefined, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder9 | undefined): Promise<PreIPOCompanySPVApiResponse>;
273
+ protected processInvestorGET5(response: Response): Promise<PreIPOCompanySPVApiResponse>;
274
+ /**
275
+ * Get a Questionnaire by Id
276
+ * @param id ID of the Questionnaire to find.
277
+ * @return Returns the Questionnaire with the specified Id.
278
+ */
279
+ questionnaire(id: string): Promise<Questionnaire>;
280
+ protected processQuestionnaire(response: Response): Promise<Questionnaire>;
281
+ /**
282
+ * Get all Questionnaires
283
+ * @param page (optional)
284
+ * @param pageSize (optional)
285
+ * @param sortOrder (optional)
286
+ * @return Returns the list of Questionnaires.
287
+ */
288
+ questionnaire2(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder10 | undefined): Promise<QuestionnaireApiResponse>;
289
+ protected processQuestionnaire2(response: Response): Promise<QuestionnaireApiResponse>;
290
+ /**
291
+ * Create a QuestionnaireAnswer
292
+ * @param body (optional) create QuestionnaireAnswer information.
293
+ * @return The newly created QuestionnaireAnswer.
294
+ */
295
+ questionnaireAnswerPOST(body: CreateQuestionnaireAnswer | undefined): Promise<QuestionnaireAnswer>;
296
+ protected processQuestionnaireAnswerPOST(response: Response): Promise<QuestionnaireAnswer>;
297
+ /**
298
+ * Get a QuestionnaireAnswer by Id
299
+ * @param id ID of the QuestionnaireAnswer to find.
300
+ * @return Returns the QuestionnaireAnswer with the specified Id.
301
+ */
302
+ questionnaireAnswerGET(id: string): Promise<QuestionnaireAnswer>;
303
+ protected processQuestionnaireAnswerGET(response: Response): Promise<QuestionnaireAnswer>;
304
+ /**
305
+ * Create a Webhook
306
+ * @param body (optional) Create Webhook information.
307
+ * @return The newly created Webhook.
308
+ */
309
+ webhookPOST(body: CreateWebhook | undefined): Promise<Webhook>;
310
+ protected processWebhookPOST(response: Response): Promise<Webhook>;
311
+ /**
312
+ * Get all Webhooks
313
+ * @param page (optional) Page number to return.
314
+ * @param pageSize (optional) The number of items to return.
315
+ * @param sortOrder (optional) Order of which to sort the webhooks by. Default is Descending
316
+ * @return Returns a list of Webhooks.
317
+ */
318
+ webhookGET(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder11 | undefined): Promise<WebhookApiResponse>;
319
+ protected processWebhookGET(response: Response): Promise<WebhookApiResponse>;
320
+ /**
321
+ * Update a Webhook’s Information
322
+ * @param body (optional) Update Webhook Request.
323
+ * @return The Updated Webhook.
324
+ */
325
+ webhookPUT(body: UpdateWebhook | undefined): Promise<void>;
326
+ protected processWebhookPUT(response: Response): Promise<void>;
327
+ /**
328
+ * Get a Webhook
329
+ * @param id Id of the webhook to get.
330
+ * @return Returns the Webhook with the specified Id.
331
+ */
332
+ webhookGET2(id: string): Promise<Webhook>;
333
+ protected processWebhookGET2(response: Response): Promise<Webhook>;
334
+ /**
335
+ * Delete a Webhook
336
+ * @param id The Webhooks ID.
337
+ * @return The Webhook was deleted.
338
+ */
339
+ webhookDELETE(id: string): Promise<void>;
340
+ protected processWebhookDELETE(response: Response): Promise<void>;
341
+ /**
342
+ * Get all Webhook Events for a specified Webhook
343
+ * @param id The Webhook's ID.
344
+ * @param from Filters events so that only events from this datetime is returned.
345
+ * @param to Filters events so that only events to this datetime is returned.
346
+ * @param sortOrder (optional) Order of which to sort the events by. Default is Descending.
347
+ * @param eventType (optional) Optional filter by event type.
348
+ * @param deliveryStatus (optional) Optional filter by delivery status.
349
+ * @param page (optional) The page number to return.
350
+ * @param pageSize (optional)
351
+ * @return Returns a list of Webhook Events.
352
+ */
353
+ events(id: string, from: Date, to: Date, sortOrder: SortOrder12 | undefined, eventType: EventType | undefined, deliveryStatus: DeliveryStatus | undefined, page: number | undefined, pageSize: number | undefined): Promise<WebhookEventApiResponse>;
354
+ protected processEvents(response: Response): Promise<WebhookEventApiResponse>;
355
+ }
356
+ export declare class Citation implements ICitation {
357
+ /** Type of the citation. */
358
+ type: string;
359
+ /** Url of the citation. */
360
+ url: string;
361
+ /** Updated at the specified date. */
362
+ updatedAt?: Date | undefined;
363
+ constructor(data?: ICitation);
364
+ init(_data?: any): void;
365
+ static fromJS(data: any): Citation;
366
+ toJSON(data?: any): any;
367
+ }
368
+ export interface ICitation {
369
+ /** Type of the citation. */
370
+ type: string;
371
+ /** Url of the citation. */
372
+ url: string;
373
+ /** Updated at the specified date. */
374
+ updatedAt?: Date | undefined;
375
+ }
376
+ /** CreateIndicationOfInterest represents the primary offering information to Create an IoI. */
377
+ export declare class CreateIndicationOfInterest implements ICreateIndicationOfInterest {
378
+ /** Represents the unique ID, provided by Monark, associated with the Investor submitting an IOI, investing in an SPV, or taking any action in the secondary market. */
379
+ investorId: string;
380
+ /** The unique ID of the PreIPOCompany associated with a submission of an Indication of Interest. */
381
+ preIPOCompanyId: string;
382
+ /** Notional amount of an IOI. */
383
+ notionalAmount: number;
384
+ /** Currency in which the IOI was submitted. Monark only accepts IOIs submitted in USD. */
385
+ currency: string;
386
+ constructor(data?: ICreateIndicationOfInterest);
387
+ init(_data?: any): void;
388
+ static fromJS(data: any): CreateIndicationOfInterest;
389
+ toJSON(data?: any): any;
390
+ }
391
+ /** CreateIndicationOfInterest represents the primary offering information to Create an IoI. */
392
+ export interface ICreateIndicationOfInterest {
393
+ /** Represents the unique ID, provided by Monark, associated with the Investor submitting an IOI, investing in an SPV, or taking any action in the secondary market. */
394
+ investorId: string;
395
+ /** The unique ID of the PreIPOCompany associated with a submission of an Indication of Interest. */
396
+ preIPOCompanyId: string;
397
+ /** Notional amount of an IOI. */
398
+ notionalAmount: number;
399
+ /** Currency in which the IOI was submitted. Monark only accepts IOIs submitted in USD. */
400
+ currency: string;
401
+ }
402
+ /** Create Investor Lead represents the investor lead information required for the primary offering. */
403
+ export declare class CreateInvestor implements ICreateInvestor {
404
+ /** The Financial Institution ID associated with the Investor.
405
+ If not provided, the default Financial Institution for the Partner will be used. */
406
+ financialInstitutionId?: string | undefined;
407
+ /** Represents the unique ID provided by a Partner, used to identify an Investor. */
408
+ investorReferenceId: string;
409
+ constructor(data?: ICreateInvestor);
410
+ init(_data?: any): void;
411
+ static fromJS(data: any): CreateInvestor;
412
+ toJSON(data?: any): any;
413
+ }
414
+ /** Create Investor Lead represents the investor lead information required for the primary offering. */
415
+ export interface ICreateInvestor {
416
+ /** The Financial Institution ID associated with the Investor.
417
+ If not provided, the default Financial Institution for the Partner will be used. */
418
+ financialInstitutionId?: string | undefined;
419
+ /** Represents the unique ID provided by a Partner, used to identify an Investor. */
420
+ investorReferenceId: string;
421
+ }
422
+ export declare class CreateInvestorSubscription implements ICreateInvestorSubscription {
423
+ /** The SPV ID that this Subscription relates to. */
424
+ preIPOCompanySPVId: string;
425
+ /** ID of the Investor associated with this InvestorSubscription. */
426
+ investorId: string;
427
+ /** Describes the amount, in dollars, an Investor intends to invest into an SPV. */
428
+ amountReservedDollars: number;
429
+ /** Describes how many underlying shares in the pre-IPO company are associated with this InvestorSubscription. This must be a whole number of shares. */
430
+ amountReservedShares: number;
431
+ constructor(data?: ICreateInvestorSubscription);
432
+ init(_data?: any): void;
433
+ static fromJS(data: any): CreateInvestorSubscription;
434
+ toJSON(data?: any): any;
435
+ }
436
+ export interface ICreateInvestorSubscription {
437
+ /** The SPV ID that this Subscription relates to. */
438
+ preIPOCompanySPVId: string;
439
+ /** ID of the Investor associated with this InvestorSubscription. */
440
+ investorId: string;
441
+ /** Describes the amount, in dollars, an Investor intends to invest into an SPV. */
442
+ amountReservedDollars: number;
443
+ /** Describes how many underlying shares in the pre-IPO company are associated with this InvestorSubscription. This must be a whole number of shares. */
444
+ amountReservedShares: number;
445
+ }
446
+ /** Create the Questionnaire answer. */
447
+ export declare class CreateQuestionnaireAnswer implements ICreateQuestionnaireAnswer {
448
+ /** Unique ID of the Questionnaire being answered. */
449
+ questionnaireId: string;
450
+ /** The linked InvestorId. */
451
+ investorId: string;
452
+ /** Pairing of all the Questions and Investor-provided responses associated with the Questionnaire. */
453
+ createQuestionAnswers: CreateQuestionnaireQuestionAnswer[];
454
+ constructor(data?: ICreateQuestionnaireAnswer);
455
+ init(_data?: any): void;
456
+ static fromJS(data: any): CreateQuestionnaireAnswer;
457
+ toJSON(data?: any): any;
458
+ }
459
+ /** Create the Questionnaire answer. */
460
+ export interface ICreateQuestionnaireAnswer {
461
+ /** Unique ID of the Questionnaire being answered. */
462
+ questionnaireId: string;
463
+ /** The linked InvestorId. */
464
+ investorId: string;
465
+ /** Pairing of all the Questions and Investor-provided responses associated with the Questionnaire. */
466
+ createQuestionAnswers: CreateQuestionnaireQuestionAnswer[];
467
+ }
468
+ /** Create the Questionnaire Question Answer. */
469
+ export declare class CreateQuestionnaireQuestionAnswer implements ICreateQuestionnaireQuestionAnswer {
470
+ /** Questionnaire QuestionId of the question being answered. */
471
+ questionnaireQuestionId: string;
472
+ /** Value of the answer to the question. */
473
+ value: string;
474
+ constructor(data?: ICreateQuestionnaireQuestionAnswer);
475
+ init(_data?: any): void;
476
+ static fromJS(data: any): CreateQuestionnaireQuestionAnswer;
477
+ toJSON(data?: any): any;
478
+ }
479
+ /** Create the Questionnaire Question Answer. */
480
+ export interface ICreateQuestionnaireQuestionAnswer {
481
+ /** Questionnaire QuestionId of the question being answered. */
482
+ questionnaireQuestionId: string;
483
+ /** Value of the answer to the question. */
484
+ value: string;
485
+ }
486
+ export declare class CreateWebhook implements ICreateWebhook {
487
+ /** The delivery url for the webhook */
488
+ url: string;
489
+ /** Token value used to create a signature on webhook delivery. */
490
+ token: string;
491
+ constructor(data?: ICreateWebhook);
492
+ init(_data?: any): void;
493
+ static fromJS(data: any): CreateWebhook;
494
+ toJSON(data?: any): any;
495
+ }
496
+ export interface ICreateWebhook {
497
+ /** The delivery url for the webhook */
498
+ url: string;
499
+ /** Token value used to create a signature on webhook delivery. */
500
+ token: string;
501
+ }
502
+ /** Represents a document associated with the fund admin. */
503
+ export declare class Document implements IDocument {
504
+ /** Unique identifier for the document. */
505
+ id?: string;
506
+ /** The name of the Document. */
507
+ name?: string | undefined;
508
+ /** URL link to view the document. */
509
+ url: string | undefined;
510
+ /** Unique identifier of the associated investor, if any. */
511
+ investorId?: string | undefined;
512
+ /** Unique identifier of the associated PreIPOCompany, if any. */
513
+ preIPOCompanyId?: string | undefined;
514
+ /** Unique identifier of the associated PreIPOCompanyInvestment, if any. */
515
+ preIPOCompanyInvestmentId?: string | undefined;
516
+ /** Unique identifier of the associated PreIPOCompanySPV, if any. */
517
+ preIPOCompanySPVId?: string | undefined;
518
+ /** Unique identifier of the associated InvestorSubscription, if any. */
519
+ investorSubscriptionId?: string | undefined;
520
+ /** Unique identifier of the associated partner, if any. */
521
+ partnerId?: string | undefined;
522
+ /** The type of Document. */
523
+ type?: DocumentType2;
524
+ /** Boolean value to dictate if this is a template. */
525
+ templateDocument?: boolean;
526
+ /** Optional tax year to tag the document with. */
527
+ taxYear?: number | undefined;
528
+ /** Description of the Document. */
529
+ description?: string | undefined;
530
+ constructor(data?: IDocument);
531
+ init(_data?: any): void;
532
+ static fromJS(data: any): Document;
533
+ toJSON(data?: any): any;
534
+ }
535
+ /** Represents a document associated with the fund admin. */
536
+ export interface IDocument {
537
+ /** Unique identifier for the document. */
538
+ id?: string;
539
+ /** The name of the Document. */
540
+ name?: string | undefined;
541
+ /** URL link to view the document. */
542
+ url: string | undefined;
543
+ /** Unique identifier of the associated investor, if any. */
544
+ investorId?: string | undefined;
545
+ /** Unique identifier of the associated PreIPOCompany, if any. */
546
+ preIPOCompanyId?: string | undefined;
547
+ /** Unique identifier of the associated PreIPOCompanyInvestment, if any. */
548
+ preIPOCompanyInvestmentId?: string | undefined;
549
+ /** Unique identifier of the associated PreIPOCompanySPV, if any. */
550
+ preIPOCompanySPVId?: string | undefined;
551
+ /** Unique identifier of the associated InvestorSubscription, if any. */
552
+ investorSubscriptionId?: string | undefined;
553
+ /** Unique identifier of the associated partner, if any. */
554
+ partnerId?: string | undefined;
555
+ /** The type of Document. */
556
+ type?: DocumentType2;
557
+ /** Boolean value to dictate if this is a template. */
558
+ templateDocument?: boolean;
559
+ /** Optional tax year to tag the document with. */
560
+ taxYear?: number | undefined;
561
+ /** Description of the Document. */
562
+ description?: string | undefined;
563
+ }
564
+ /** Represents a shallow document. */
565
+ export declare class DocumentShallow implements IDocumentShallow {
566
+ /** Unique identifier for the document. */
567
+ id?: string;
568
+ /** The name of the Document. */
569
+ name?: string | undefined;
570
+ /** Unique identifier of the associated investor, if any. */
571
+ investorId?: string | undefined;
572
+ /** Unique identifier of the associated PreIPOCompany, if any. */
573
+ preIPOCompanyId?: string | undefined;
574
+ /** Unique identifier of the associated PreIPOCompanyInvestment, if any. */
575
+ preIPOCompanyInvestmentId?: string | undefined;
576
+ /** Unique identifier of the associated PreIPOCompanySPV, if any. */
577
+ preIPOCompanySPVId?: string | undefined;
578
+ /** Unique identifier of the associated InvestorSubscription, if any. */
579
+ investorSubscriptionId?: string | undefined;
580
+ /** Unique identifier of the associated partner, if any. */
581
+ partnerId?: string | undefined;
582
+ /** The type of Document. */
583
+ type?: DocumentShallowType;
584
+ /** Boolean value to dictate if this is a template. */
585
+ templateDocument?: boolean;
586
+ /** Optional tax year to tag the document with. */
587
+ taxYear?: number | undefined;
588
+ /** Description of the Document. */
589
+ description?: string | undefined;
590
+ constructor(data?: IDocumentShallow);
591
+ init(_data?: any): void;
592
+ static fromJS(data: any): DocumentShallow;
593
+ toJSON(data?: any): any;
594
+ }
595
+ /** Represents a shallow document. */
596
+ export interface IDocumentShallow {
597
+ /** Unique identifier for the document. */
598
+ id?: string;
599
+ /** The name of the Document. */
600
+ name?: string | undefined;
601
+ /** Unique identifier of the associated investor, if any. */
602
+ investorId?: string | undefined;
603
+ /** Unique identifier of the associated PreIPOCompany, if any. */
604
+ preIPOCompanyId?: string | undefined;
605
+ /** Unique identifier of the associated PreIPOCompanyInvestment, if any. */
606
+ preIPOCompanyInvestmentId?: string | undefined;
607
+ /** Unique identifier of the associated PreIPOCompanySPV, if any. */
608
+ preIPOCompanySPVId?: string | undefined;
609
+ /** Unique identifier of the associated InvestorSubscription, if any. */
610
+ investorSubscriptionId?: string | undefined;
611
+ /** Unique identifier of the associated partner, if any. */
612
+ partnerId?: string | undefined;
613
+ /** The type of Document. */
614
+ type?: DocumentShallowType;
615
+ /** Boolean value to dictate if this is a template. */
616
+ templateDocument?: boolean;
617
+ /** Optional tax year to tag the document with. */
618
+ taxYear?: number | undefined;
619
+ /** Description of the Document. */
620
+ description?: string | undefined;
621
+ }
622
+ export declare class DocumentShallowApiResponse implements IDocumentShallowApiResponse {
623
+ items?: DocumentShallow[] | undefined;
624
+ pagination?: Pagination | undefined;
625
+ constructor(data?: IDocumentShallowApiResponse);
626
+ init(_data?: any): void;
627
+ static fromJS(data: any): DocumentShallowApiResponse;
628
+ toJSON(data?: any): any;
629
+ }
630
+ export interface IDocumentShallowApiResponse {
631
+ items?: DocumentShallow[] | undefined;
632
+ pagination?: Pagination | undefined;
633
+ }
634
+ export declare class FinancialInstitution implements IFinancialInstitution {
635
+ /** Unique ID associated with a FinancialInstitution. */
636
+ id?: string;
637
+ /** The partner associated with this FinancialInstitution. */
638
+ partnerId?: string;
639
+ /** Legal name of the legal entity interacting with Monark's APIs. */
640
+ legalName?: string | undefined;
641
+ /** CRD number associated with this financial institution. */
642
+ crdNumber?: string | undefined;
643
+ /** The type of Financial Institution. */
644
+ financialInstitutionType?: FinancialInstitutionType;
645
+ /** Indicates if this is the default Financial Institution for the Partner. */
646
+ isDefault?: boolean;
647
+ /** City where the FinancialInstitution resides. */
648
+ city: string | undefined;
649
+ /** State of the FinancialInstitution. */
650
+ state: string | undefined;
651
+ /** Zip code of the FinancialInstitution. */
652
+ zipCode: string | undefined;
653
+ /** Country code of the FinancialInstitution. */
654
+ countryCode: string | undefined;
655
+ /** Date the FinancialInstitution was created. */
656
+ createdAt?: Date;
657
+ /** Date the FinancialInstitution was last updated. */
658
+ updatedAt?: Date;
659
+ /** The linked Partner. */
660
+ partner?: Partner | undefined;
661
+ constructor(data?: IFinancialInstitution);
662
+ init(_data?: any): void;
663
+ static fromJS(data: any): FinancialInstitution;
664
+ toJSON(data?: any): any;
665
+ }
666
+ export interface IFinancialInstitution {
667
+ /** Unique ID associated with a FinancialInstitution. */
668
+ id?: string;
669
+ /** The partner associated with this FinancialInstitution. */
670
+ partnerId?: string;
671
+ /** Legal name of the legal entity interacting with Monark's APIs. */
672
+ legalName?: string | undefined;
673
+ /** CRD number associated with this financial institution. */
674
+ crdNumber?: string | undefined;
675
+ /** The type of Financial Institution. */
676
+ financialInstitutionType?: FinancialInstitutionType;
677
+ /** Indicates if this is the default Financial Institution for the Partner. */
678
+ isDefault?: boolean;
679
+ /** City where the FinancialInstitution resides. */
680
+ city: string | undefined;
681
+ /** State of the FinancialInstitution. */
682
+ state: string | undefined;
683
+ /** Zip code of the FinancialInstitution. */
684
+ zipCode: string | undefined;
685
+ /** Country code of the FinancialInstitution. */
686
+ countryCode: string | undefined;
687
+ /** Date the FinancialInstitution was created. */
688
+ createdAt?: Date;
689
+ /** Date the FinancialInstitution was last updated. */
690
+ updatedAt?: Date;
691
+ /** The linked Partner. */
692
+ partner?: Partner | undefined;
693
+ }
694
+ /** IndicationOfInterest represents the primary offering information on the IoI. */
695
+ export declare class IndicationOfInterest implements IIndicationOfInterest {
696
+ /** Unique ID associated with an IOI. */
697
+ id?: string;
698
+ /** Represents the unique ID, provided by Monark, associated with the Investor submitting an IOI, investing in an SPV, or taking any action in the secondary market. */
699
+ investorId?: string;
700
+ /** The unique ID of the PreIPOCompany associated with a submission of an Indication of Interest. */
701
+ preIPOCompanyId?: string;
702
+ /** Notional amount of an IOI. */
703
+ notionalAmount: number;
704
+ /** Currency in which the IOI was submitted. Monark only accepts IOIs submitted in USD. */
705
+ currency: string | undefined;
706
+ /** Created at the specified date. */
707
+ createdAt?: Date;
708
+ /** Updated at the specified date. */
709
+ updatedAt?: Date | undefined;
710
+ /** Name of the Partner associated with an IOI. */
711
+ partnerName?: string | undefined;
712
+ /** The first name of the Investor. */
713
+ investorFirstName?: string | undefined;
714
+ /** The last name of the Investor. */
715
+ investorLastName?: string | undefined;
716
+ constructor(data?: IIndicationOfInterest);
717
+ init(_data?: any): void;
718
+ static fromJS(data: any): IndicationOfInterest;
719
+ toJSON(data?: any): any;
720
+ }
721
+ /** IndicationOfInterest represents the primary offering information on the IoI. */
722
+ export interface IIndicationOfInterest {
723
+ /** Unique ID associated with an IOI. */
724
+ id?: string;
725
+ /** Represents the unique ID, provided by Monark, associated with the Investor submitting an IOI, investing in an SPV, or taking any action in the secondary market. */
726
+ investorId?: string;
727
+ /** The unique ID of the PreIPOCompany associated with a submission of an Indication of Interest. */
728
+ preIPOCompanyId?: string;
729
+ /** Notional amount of an IOI. */
730
+ notionalAmount: number;
731
+ /** Currency in which the IOI was submitted. Monark only accepts IOIs submitted in USD. */
732
+ currency: string | undefined;
733
+ /** Created at the specified date. */
734
+ createdAt?: Date;
735
+ /** Updated at the specified date. */
736
+ updatedAt?: Date | undefined;
737
+ /** Name of the Partner associated with an IOI. */
738
+ partnerName?: string | undefined;
739
+ /** The first name of the Investor. */
740
+ investorFirstName?: string | undefined;
741
+ /** The last name of the Investor. */
742
+ investorLastName?: string | undefined;
743
+ }
744
+ export declare class IndicationOfInterestApiResponse implements IIndicationOfInterestApiResponse {
745
+ items?: IndicationOfInterest[] | undefined;
746
+ pagination?: Pagination | undefined;
747
+ constructor(data?: IIndicationOfInterestApiResponse);
748
+ init(_data?: any): void;
749
+ static fromJS(data: any): IndicationOfInterestApiResponse;
750
+ toJSON(data?: any): any;
751
+ }
752
+ export interface IIndicationOfInterestApiResponse {
753
+ items?: IndicationOfInterest[] | undefined;
754
+ pagination?: Pagination | undefined;
755
+ }
756
+ export declare class IndividualInvestor implements IIndividualInvestor {
757
+ /** First name of the Investor. */
758
+ firstName: string | undefined;
759
+ /** Last name of the Investor. */
760
+ lastName: string | undefined;
761
+ /** Is the Investor based in the United States? */
762
+ isUSBased?: boolean;
763
+ /** Investor’s date of birth. */
764
+ dateOfBirth?: Date;
765
+ /** Investor’s primary address. */
766
+ street1: string | undefined;
767
+ /** Investor’s secondary address. */
768
+ street2?: string | undefined;
769
+ /** City where the Investor resides. */
770
+ city: string | undefined;
771
+ /** 2/3 letter state code of the investor. Check https://github.com/country-regions/country-region-data/blob/master/data.json for valid state (region) codes */
772
+ state: string | undefined;
773
+ /** Zip code of the Investor. */
774
+ zipCode: string | undefined;
775
+ /** Country code of the investor. */
776
+ countryCode: string | undefined;
777
+ /** When creating or updating a resource send both phone and phone_country_code or neither. Phone country code is validated against a valid list of phone country codes which you can find here (https://github.com/mukeshsoni/country-telephone-data). Do not include a + (plus sign) at the beginning of this string. */
778
+ phoneCountryCode: string | undefined;
779
+ /** An unformatted phone number which does not include country code. Refer to this region data (https://github.com/mukeshsoni/country-telephone-data) to select the correct phone country code. Phone numbers where phone_country_code is "1" must have 10 digits. */
780
+ phoneNumber: string | undefined;
781
+ /** Investor’s primary mailing address. */
782
+ mailingStreet1: string | undefined;
783
+ /** Investor’s secondary mailing address. */
784
+ mailingStreet2?: string | undefined;
785
+ /** Investor's primary mailing Apt or Suite Number. */
786
+ mailingAddressAptSuiteNo?: string | undefined;
787
+ /** Investor's primary mailing address city. */
788
+ mailingAddressCity: string | undefined;
789
+ /** Investor's primary mailing address state. */
790
+ mailingAddressState: string | undefined;
791
+ /** Investor's primary mailing address zip code. */
792
+ mailingAddressZipCode: string | undefined;
793
+ /** Investor's primary mailing address country. */
794
+ mailingAddressCountry: string | undefined;
795
+ /** Describes if the Investor is subject to backup withholding. */
796
+ hasBackupWithholding?: boolean | undefined;
797
+ /** Investor’s exempt payee code if the Investor is exempt from backup withholding. */
798
+ exemptPayeeCode?: string | undefined;
799
+ /** Is the investor registered as an adviser for the subscription or an exempt reporting adviser? */
800
+ isSubscriptionAdvisorOrERA?: boolean;
801
+ /** Email address associated with an Investor. */
802
+ email: string | undefined;
803
+ /** Investor’s Social Security Number. */
804
+ taxId: string | undefined;
805
+ /** Investor Passport Number. - Only Required for Non-US Investors. */
806
+ passportNumber: string | undefined;
807
+ /** Country code of the Investor’s citizenship. Check https://github.com/country-regions/country-region-data/blob/master/data.json for valid country codes */
808
+ citizenship: string | undefined;
809
+ constructor(data?: IIndividualInvestor);
810
+ init(_data?: any): void;
811
+ static fromJS(data: any): IndividualInvestor;
812
+ toJSON(data?: any): any;
813
+ }
814
+ export interface IIndividualInvestor {
815
+ /** First name of the Investor. */
816
+ firstName: string | undefined;
817
+ /** Last name of the Investor. */
818
+ lastName: string | undefined;
819
+ /** Is the Investor based in the United States? */
820
+ isUSBased?: boolean;
821
+ /** Investor’s date of birth. */
822
+ dateOfBirth?: Date;
823
+ /** Investor’s primary address. */
824
+ street1: string | undefined;
825
+ /** Investor’s secondary address. */
826
+ street2?: string | undefined;
827
+ /** City where the Investor resides. */
828
+ city: string | undefined;
829
+ /** 2/3 letter state code of the investor. Check https://github.com/country-regions/country-region-data/blob/master/data.json for valid state (region) codes */
830
+ state: string | undefined;
831
+ /** Zip code of the Investor. */
832
+ zipCode: string | undefined;
833
+ /** Country code of the investor. */
834
+ countryCode: string | undefined;
835
+ /** When creating or updating a resource send both phone and phone_country_code or neither. Phone country code is validated against a valid list of phone country codes which you can find here (https://github.com/mukeshsoni/country-telephone-data). Do not include a + (plus sign) at the beginning of this string. */
836
+ phoneCountryCode: string | undefined;
837
+ /** An unformatted phone number which does not include country code. Refer to this region data (https://github.com/mukeshsoni/country-telephone-data) to select the correct phone country code. Phone numbers where phone_country_code is "1" must have 10 digits. */
838
+ phoneNumber: string | undefined;
839
+ /** Investor’s primary mailing address. */
840
+ mailingStreet1: string | undefined;
841
+ /** Investor’s secondary mailing address. */
842
+ mailingStreet2?: string | undefined;
843
+ /** Investor's primary mailing Apt or Suite Number. */
844
+ mailingAddressAptSuiteNo?: string | undefined;
845
+ /** Investor's primary mailing address city. */
846
+ mailingAddressCity: string | undefined;
847
+ /** Investor's primary mailing address state. */
848
+ mailingAddressState: string | undefined;
849
+ /** Investor's primary mailing address zip code. */
850
+ mailingAddressZipCode: string | undefined;
851
+ /** Investor's primary mailing address country. */
852
+ mailingAddressCountry: string | undefined;
853
+ /** Describes if the Investor is subject to backup withholding. */
854
+ hasBackupWithholding?: boolean | undefined;
855
+ /** Investor’s exempt payee code if the Investor is exempt from backup withholding. */
856
+ exemptPayeeCode?: string | undefined;
857
+ /** Is the investor registered as an adviser for the subscription or an exempt reporting adviser? */
858
+ isSubscriptionAdvisorOrERA?: boolean;
859
+ /** Email address associated with an Investor. */
860
+ email: string | undefined;
861
+ /** Investor’s Social Security Number. */
862
+ taxId: string | undefined;
863
+ /** Investor Passport Number. - Only Required for Non-US Investors. */
864
+ passportNumber: string | undefined;
865
+ /** Country code of the Investor’s citizenship. Check https://github.com/country-regions/country-region-data/blob/master/data.json for valid country codes */
866
+ citizenship: string | undefined;
867
+ }
868
+ /** Investor represents the primary offering information on the investor. */
869
+ export declare class Investor implements IInvestor {
870
+ /** Unique ID, provided by Monark, associated with an Investor. */
871
+ id: string;
872
+ /** ID of the Partner associated with an Investor. */
873
+ partnerId: string;
874
+ /** The Financial Institution ID associated with the Investor. */
875
+ financialInstitutionId: string | undefined;
876
+ /** Updated at the specified date. */
877
+ updatedAt?: Date | undefined;
878
+ /** Represents the unique ID provided by a Partner, used to identify an Investor. */
879
+ investorReferenceId?: string | undefined;
880
+ /** Status of the Investor. */
881
+ status?: InvestorStatus;
882
+ /** Investor’s accreditation status. */
883
+ accreditationStatus?: InvestorAccreditationStatus | undefined;
884
+ /** Date that accreditation expires. */
885
+ accreditationUpdatedAt?: Date | undefined;
886
+ /** Investor’s KYC status. */
887
+ kycStatus?: InvestorKycStatus | undefined;
888
+ /** Date that KYC expires. */
889
+ kycUpdatedAt?: Date | undefined;
890
+ /** The qualification status of an Investor. */
891
+ qualificationStatus?: InvestorQualificationStatus | undefined;
892
+ /** Information about the individual investor if this Investor is of that type. */
893
+ individualInvestor?: IndividualInvestor | undefined;
894
+ constructor(data?: IInvestor);
895
+ init(_data?: any): void;
896
+ static fromJS(data: any): Investor;
897
+ toJSON(data?: any): any;
898
+ }
899
+ /** Investor represents the primary offering information on the investor. */
900
+ export interface IInvestor {
901
+ /** Unique ID, provided by Monark, associated with an Investor. */
902
+ id: string;
903
+ /** ID of the Partner associated with an Investor. */
904
+ partnerId: string;
905
+ /** The Financial Institution ID associated with the Investor. */
906
+ financialInstitutionId: string | undefined;
907
+ /** Updated at the specified date. */
908
+ updatedAt?: Date | undefined;
909
+ /** Represents the unique ID provided by a Partner, used to identify an Investor. */
910
+ investorReferenceId?: string | undefined;
911
+ /** Status of the Investor. */
912
+ status?: InvestorStatus;
913
+ /** Investor’s accreditation status. */
914
+ accreditationStatus?: InvestorAccreditationStatus | undefined;
915
+ /** Date that accreditation expires. */
916
+ accreditationUpdatedAt?: Date | undefined;
917
+ /** Investor’s KYC status. */
918
+ kycStatus?: InvestorKycStatus | undefined;
919
+ /** Date that KYC expires. */
920
+ kycUpdatedAt?: Date | undefined;
921
+ /** The qualification status of an Investor. */
922
+ qualificationStatus?: InvestorQualificationStatus | undefined;
923
+ /** Information about the individual investor if this Investor is of that type. */
924
+ individualInvestor?: IndividualInvestor | undefined;
925
+ }
926
+ export declare class InvestorSubscription implements IInvestorSubscription {
927
+ /** Unique ID associated with an InvestorSubscription. */
928
+ id?: string;
929
+ /** The SPV ID that this Subscription relates to. */
930
+ preIPOCompanySPVId?: string;
931
+ /** ID of the Investor associated with this InvestorSubscription. */
932
+ investorId?: string;
933
+ /** Describes the amount, in dollars, an Investor intends to invest into an SPV. */
934
+ amountReservedDollars: number;
935
+ /** Describes how many underlying shares in the pre-IPO company are associated with this InvestorSubscription. This must be a whole number of shares. */
936
+ amountReservedShares: number;
937
+ /** The current status of this InvestorSubscription. */
938
+ status: InvestorSubscriptionStatus;
939
+ /** Created at the specified Date. */
940
+ createdAt?: Date;
941
+ /** Updated at the specified Date. */
942
+ updatedAt?: Date | undefined;
943
+ constructor(data?: IInvestorSubscription);
944
+ init(_data?: any): void;
945
+ static fromJS(data: any): InvestorSubscription;
946
+ toJSON(data?: any): any;
947
+ }
948
+ export interface IInvestorSubscription {
949
+ /** Unique ID associated with an InvestorSubscription. */
950
+ id?: string;
951
+ /** The SPV ID that this Subscription relates to. */
952
+ preIPOCompanySPVId?: string;
953
+ /** ID of the Investor associated with this InvestorSubscription. */
954
+ investorId?: string;
955
+ /** Describes the amount, in dollars, an Investor intends to invest into an SPV. */
956
+ amountReservedDollars: number;
957
+ /** Describes how many underlying shares in the pre-IPO company are associated with this InvestorSubscription. This must be a whole number of shares. */
958
+ amountReservedShares: number;
959
+ /** The current status of this InvestorSubscription. */
960
+ status: InvestorSubscriptionStatus;
961
+ /** Created at the specified Date. */
962
+ createdAt?: Date;
963
+ /** Updated at the specified Date. */
964
+ updatedAt?: Date | undefined;
965
+ }
966
+ export declare class InvestorSubscriptionAction implements IInvestorSubscriptionAction {
967
+ /** Unique ID associated with an InvestorSubscriptionAction. */
968
+ id?: string;
969
+ /** Investor SubscriptionId for the InvestorSubscriptionAction record. */
970
+ investorSubscriptionId?: string;
971
+ /** The name of this InvestorSubscriptionAction. */
972
+ name: string | undefined;
973
+ /** A description for this action. */
974
+ description?: string | undefined;
975
+ /** Optional DataId for related object. */
976
+ dataId?: string | undefined;
977
+ /** The current status of this InvestorSubscriptionAction. */
978
+ status: InvestorSubscriptionActionStatus;
979
+ /** The type of action required to be performed by the Investor, as part of executing the Subscription. DocumentSign and DocumentAcknowledge can both be completed by “signing” the associated document. InvestorSubscriptionActions with a type of DocumentSign mean that the associated document, once signed, will be populated with an automatically generated signature. InvestorSubscriptionActions with a type of DocumentAcknowledge mean that the associated document, once signed, will be counted as acknowledged but are not required to be populated by a signature. */
980
+ type: InvestorSubscriptionActionType;
981
+ /** This describes the entity responsible for acknowledging that the Action has been completed. Partners acknowledge that actions have been completed on behalf of their Investors. */
982
+ responsibleParty: InvestorSubscriptionActionResponsibleParty;
983
+ constructor(data?: IInvestorSubscriptionAction);
984
+ init(_data?: any): void;
985
+ static fromJS(data: any): InvestorSubscriptionAction;
986
+ toJSON(data?: any): any;
987
+ }
988
+ export interface IInvestorSubscriptionAction {
989
+ /** Unique ID associated with an InvestorSubscriptionAction. */
990
+ id?: string;
991
+ /** Investor SubscriptionId for the InvestorSubscriptionAction record. */
992
+ investorSubscriptionId?: string;
993
+ /** The name of this InvestorSubscriptionAction. */
994
+ name: string | undefined;
995
+ /** A description for this action. */
996
+ description?: string | undefined;
997
+ /** Optional DataId for related object. */
998
+ dataId?: string | undefined;
999
+ /** The current status of this InvestorSubscriptionAction. */
1000
+ status: InvestorSubscriptionActionStatus;
1001
+ /** The type of action required to be performed by the Investor, as part of executing the Subscription. DocumentSign and DocumentAcknowledge can both be completed by “signing” the associated document. InvestorSubscriptionActions with a type of DocumentSign mean that the associated document, once signed, will be populated with an automatically generated signature. InvestorSubscriptionActions with a type of DocumentAcknowledge mean that the associated document, once signed, will be counted as acknowledged but are not required to be populated by a signature. */
1002
+ type: InvestorSubscriptionActionType;
1003
+ /** This describes the entity responsible for acknowledging that the Action has been completed. Partners acknowledge that actions have been completed on behalf of their Investors. */
1004
+ responsibleParty: InvestorSubscriptionActionResponsibleParty;
1005
+ }
1006
+ export declare class InvestorSubscriptionApiResponse implements IInvestorSubscriptionApiResponse {
1007
+ items?: InvestorSubscription[] | undefined;
1008
+ pagination?: Pagination | undefined;
1009
+ constructor(data?: IInvestorSubscriptionApiResponse);
1010
+ init(_data?: any): void;
1011
+ static fromJS(data: any): InvestorSubscriptionApiResponse;
1012
+ toJSON(data?: any): any;
1013
+ }
1014
+ export interface IInvestorSubscriptionApiResponse {
1015
+ items?: InvestorSubscription[] | undefined;
1016
+ pagination?: Pagination | undefined;
1017
+ }
1018
+ export declare class LayeredSPV implements ILayeredSPV {
1019
+ /** The management fee charged by the manager of the Layered SPV, expressed as a percentage. */
1020
+ managementFee?: number | undefined;
1021
+ /** Indicates how often the management fee is charged (e.g., "Annual"). */
1022
+ managementFeeFrequency?: string | undefined;
1023
+ /** Carried interest charged by the Layered SPV. */
1024
+ carriedInterest?: number | undefined;
1025
+ /** The name of the general partner serving on the Layered SPV. This field is not nullable and intended for internal use only. */
1026
+ gpName: string;
1027
+ /** Describes the fund structure, such as "3(c)(1)" or "3(c)(7)." This field is not nullable. */
1028
+ fundStructure?: LayeredSPVFundStructure;
1029
+ /** The total number of shares issued by the Layered SPV. This number may be used to calculate the 10% threshold for triggering a look-through provision. */
1030
+ spvOutstandingShareCount?: number;
1031
+ /** Describes the size, in number of shares in the Layered SPV, of the position involved in this transaction. */
1032
+ lpStakeShareCount?: number;
1033
+ /** Describes the portion of the whole SPV represented by the LP stake being sold. This number can be found by dividing: SPVOutstandingShareCount / LPStakeShareCount. This number, represented as a percentage, may be used to determine whether or not the 10% lookthrough provision should be triggered. */
1034
+ lpStakePercentage?: number;
1035
+ constructor(data?: ILayeredSPV);
1036
+ init(_data?: any): void;
1037
+ static fromJS(data: any): LayeredSPV;
1038
+ toJSON(data?: any): any;
1039
+ }
1040
+ export interface ILayeredSPV {
1041
+ /** The management fee charged by the manager of the Layered SPV, expressed as a percentage. */
1042
+ managementFee?: number | undefined;
1043
+ /** Indicates how often the management fee is charged (e.g., "Annual"). */
1044
+ managementFeeFrequency?: string | undefined;
1045
+ /** Carried interest charged by the Layered SPV. */
1046
+ carriedInterest?: number | undefined;
1047
+ /** The name of the general partner serving on the Layered SPV. This field is not nullable and intended for internal use only. */
1048
+ gpName: string;
1049
+ /** Describes the fund structure, such as "3(c)(1)" or "3(c)(7)." This field is not nullable. */
1050
+ fundStructure?: LayeredSPVFundStructure;
1051
+ /** The total number of shares issued by the Layered SPV. This number may be used to calculate the 10% threshold for triggering a look-through provision. */
1052
+ spvOutstandingShareCount?: number;
1053
+ /** Describes the size, in number of shares in the Layered SPV, of the position involved in this transaction. */
1054
+ lpStakeShareCount?: number;
1055
+ /** Describes the portion of the whole SPV represented by the LP stake being sold. This number can be found by dividing: SPVOutstandingShareCount / LPStakeShareCount. This number, represented as a percentage, may be used to determine whether or not the 10% lookthrough provision should be triggered. */
1056
+ lpStakePercentage?: number;
1057
+ }
1058
+ export declare class Pagination implements IPagination {
1059
+ totalRecords?: number;
1060
+ totalPages?: number;
1061
+ currentPage?: number;
1062
+ constructor(data?: IPagination);
1063
+ init(_data?: any): void;
1064
+ static fromJS(data: any): Pagination;
1065
+ toJSON(data?: any): any;
1066
+ }
1067
+ export interface IPagination {
1068
+ totalRecords?: number;
1069
+ totalPages?: number;
1070
+ currentPage?: number;
1071
+ }
1072
+ /** Partner represents the primary offering information of the investor. */
1073
+ export declare class Partner implements IPartner {
1074
+ /** Unique ID, provided by Monark, associated with a Partner. */
1075
+ id: string;
1076
+ /** Name of the Partner. */
1077
+ name: string | undefined;
1078
+ /** Type of the Partner. */
1079
+ partnerType: PartnerType;
1080
+ /** Legal Entity Name of the partner. */
1081
+ legalEntityName: string | undefined;
1082
+ /** ISO Phone Country Code. */
1083
+ primaryPhoneCountryCode: string | undefined;
1084
+ /** The phone number of the Partner. */
1085
+ primaryPhone: string | undefined;
1086
+ /** Partner’s street 1 address. */
1087
+ street1: string | undefined;
1088
+ /** Partner’s secondary street address. */
1089
+ street2?: string | undefined;
1090
+ /** City where the Partner resides. */
1091
+ city: string | undefined;
1092
+ /** State of the Investor. */
1093
+ state: string | undefined;
1094
+ /** Zip code of the Investor. */
1095
+ zipCode: string | undefined;
1096
+ /** Country code of the investor. */
1097
+ countryCode: string | undefined;
1098
+ /** Website of the Partner. */
1099
+ website?: string | undefined;
1100
+ /** The primary contact name of the Partner. */
1101
+ primaryContactName: string | undefined;
1102
+ /** The primary email address of the Partner. */
1103
+ primaryEmail: string | undefined;
1104
+ /** Executive Team of the partner. */
1105
+ executiveTeam?: string[] | undefined;
1106
+ /** Created at the specified date. */
1107
+ createdAt?: Date;
1108
+ /** Updated at the specified date. */
1109
+ updatedAt?: Date | undefined;
1110
+ /** List of financial institutions. */
1111
+ financialInstitutions?: FinancialInstitution[] | undefined;
1112
+ constructor(data?: IPartner);
1113
+ init(_data?: any): void;
1114
+ static fromJS(data: any): Partner;
1115
+ toJSON(data?: any): any;
1116
+ }
1117
+ /** Partner represents the primary offering information of the investor. */
1118
+ export interface IPartner {
1119
+ /** Unique ID, provided by Monark, associated with a Partner. */
1120
+ id: string;
1121
+ /** Name of the Partner. */
1122
+ name: string | undefined;
1123
+ /** Type of the Partner. */
1124
+ partnerType: PartnerType;
1125
+ /** Legal Entity Name of the partner. */
1126
+ legalEntityName: string | undefined;
1127
+ /** ISO Phone Country Code. */
1128
+ primaryPhoneCountryCode: string | undefined;
1129
+ /** The phone number of the Partner. */
1130
+ primaryPhone: string | undefined;
1131
+ /** Partner’s street 1 address. */
1132
+ street1: string | undefined;
1133
+ /** Partner’s secondary street address. */
1134
+ street2?: string | undefined;
1135
+ /** City where the Partner resides. */
1136
+ city: string | undefined;
1137
+ /** State of the Investor. */
1138
+ state: string | undefined;
1139
+ /** Zip code of the Investor. */
1140
+ zipCode: string | undefined;
1141
+ /** Country code of the investor. */
1142
+ countryCode: string | undefined;
1143
+ /** Website of the Partner. */
1144
+ website?: string | undefined;
1145
+ /** The primary contact name of the Partner. */
1146
+ primaryContactName: string | undefined;
1147
+ /** The primary email address of the Partner. */
1148
+ primaryEmail: string | undefined;
1149
+ /** Executive Team of the partner. */
1150
+ executiveTeam?: string[] | undefined;
1151
+ /** Created at the specified date. */
1152
+ createdAt?: Date;
1153
+ /** Updated at the specified date. */
1154
+ updatedAt?: Date | undefined;
1155
+ /** List of financial institutions. */
1156
+ financialInstitutions?: FinancialInstitution[] | undefined;
1157
+ }
1158
+ /** PreIPOCompany represents the public information we provide for a PreIPOCompany in the Primary Offering. */
1159
+ export declare class PreIPOCompany implements IPreIPOCompany {
1160
+ /** Unique ID associated with a PreIPOCompany. */
1161
+ id: string;
1162
+ /** The name of the PreIPOCompany. */
1163
+ name: string | undefined;
1164
+ /** Domain URL of the PreIPOCompany. */
1165
+ domain: string | undefined;
1166
+ /** The LinkedIn profile URL associated with the PreIPOCompany. */
1167
+ linkedIn?: string | undefined;
1168
+ /** The PreIPOCompany’s X profile URL. */
1169
+ x?: string | undefined;
1170
+ /** The Facebook profile URL of the PreIPOCompany. */
1171
+ facebook?: string | undefined;
1172
+ /** Country where the PreIPOCompany is located. */
1173
+ country?: string | undefined;
1174
+ /** PreIPOCompany’s address. This attribute will describe the company’s headquarters. */
1175
+ address?: string | undefined;
1176
+ /** Type of entity of the PreIPOCompany. */
1177
+ type?: PreIPOCompanyType;
1178
+ /** The year the PreIPOCompany was established. */
1179
+ yearEst?: Date | undefined;
1180
+ /** The number of employees at the PreIPO Company. */
1181
+ numJobs?: number | undefined;
1182
+ /** Short description of the PreIPOCompany. */
1183
+ description: string | undefined;
1184
+ /** The founder of the PreIPOCompany. */
1185
+ founder?: string | undefined;
1186
+ /** A URL link associated with the PreIPOCompany’s logo. */
1187
+ logoURL?: string | undefined;
1188
+ /** PreIPOCompany total funding, expressed in USD. */
1189
+ totalFunding?: number | undefined;
1190
+ /** The most recent funding series. */
1191
+ lastFundingSeries?: string | undefined;
1192
+ /** The total size of the last funding round, expressed in USD. */
1193
+ lastFundingTotal?: number | undefined;
1194
+ /** PreIPOCompany total number of funding rounds. */
1195
+ totalFundingRounds?: number | undefined;
1196
+ /** The date of the PreIPOCompany’s most recent funding. */
1197
+ lastFundingDate?: Date | undefined;
1198
+ /** The type (Equity or Debt) of the last funding round. */
1199
+ lastFundingType?: string | undefined;
1200
+ /** The number of investors in a PreIPOCompany. This number represents the number of institutional investors that have participated in primary fundraises. */
1201
+ numInvestors?: number | undefined;
1202
+ /** Revenue generated in the previous 12 months by this PreIPOCompany. */
1203
+ twelveMonthTrailingRevenue?: number | undefined;
1204
+ /** Most recent valuation of the PreIPOCompany, based on the most recent funding round. Expressed in USD. */
1205
+ lastValuation?: number | undefined;
1206
+ /** The PreIPOCompany’s share price at the most recent funding round, expressed in USD. */
1207
+ lastSharePrice?: number | undefined;
1208
+ /** The number of customers serviced by a Pre-IPO Company. */
1209
+ numCustomers?: number | undefined;
1210
+ /** Array of the PreIPOCompany’s executive or management team. */
1211
+ executiveTeam?: string[] | undefined;
1212
+ /** The number of shares that have been issued by the PreIPOCompany. */
1213
+ numSharesOutstanding?: number | undefined;
1214
+ /** A list of the notable investors’ logos associated with a PreIPOCompany. */
1215
+ notableInvestorsLogos?: string[] | undefined;
1216
+ constructor(data?: IPreIPOCompany);
1217
+ init(_data?: any): void;
1218
+ static fromJS(data: any): PreIPOCompany;
1219
+ toJSON(data?: any): any;
1220
+ }
1221
+ /** PreIPOCompany represents the public information we provide for a PreIPOCompany in the Primary Offering. */
1222
+ export interface IPreIPOCompany {
1223
+ /** Unique ID associated with a PreIPOCompany. */
1224
+ id: string;
1225
+ /** The name of the PreIPOCompany. */
1226
+ name: string | undefined;
1227
+ /** Domain URL of the PreIPOCompany. */
1228
+ domain: string | undefined;
1229
+ /** The LinkedIn profile URL associated with the PreIPOCompany. */
1230
+ linkedIn?: string | undefined;
1231
+ /** The PreIPOCompany’s X profile URL. */
1232
+ x?: string | undefined;
1233
+ /** The Facebook profile URL of the PreIPOCompany. */
1234
+ facebook?: string | undefined;
1235
+ /** Country where the PreIPOCompany is located. */
1236
+ country?: string | undefined;
1237
+ /** PreIPOCompany’s address. This attribute will describe the company’s headquarters. */
1238
+ address?: string | undefined;
1239
+ /** Type of entity of the PreIPOCompany. */
1240
+ type?: PreIPOCompanyType;
1241
+ /** The year the PreIPOCompany was established. */
1242
+ yearEst?: Date | undefined;
1243
+ /** The number of employees at the PreIPO Company. */
1244
+ numJobs?: number | undefined;
1245
+ /** Short description of the PreIPOCompany. */
1246
+ description: string | undefined;
1247
+ /** The founder of the PreIPOCompany. */
1248
+ founder?: string | undefined;
1249
+ /** A URL link associated with the PreIPOCompany’s logo. */
1250
+ logoURL?: string | undefined;
1251
+ /** PreIPOCompany total funding, expressed in USD. */
1252
+ totalFunding?: number | undefined;
1253
+ /** The most recent funding series. */
1254
+ lastFundingSeries?: string | undefined;
1255
+ /** The total size of the last funding round, expressed in USD. */
1256
+ lastFundingTotal?: number | undefined;
1257
+ /** PreIPOCompany total number of funding rounds. */
1258
+ totalFundingRounds?: number | undefined;
1259
+ /** The date of the PreIPOCompany’s most recent funding. */
1260
+ lastFundingDate?: Date | undefined;
1261
+ /** The type (Equity or Debt) of the last funding round. */
1262
+ lastFundingType?: string | undefined;
1263
+ /** The number of investors in a PreIPOCompany. This number represents the number of institutional investors that have participated in primary fundraises. */
1264
+ numInvestors?: number | undefined;
1265
+ /** Revenue generated in the previous 12 months by this PreIPOCompany. */
1266
+ twelveMonthTrailingRevenue?: number | undefined;
1267
+ /** Most recent valuation of the PreIPOCompany, based on the most recent funding round. Expressed in USD. */
1268
+ lastValuation?: number | undefined;
1269
+ /** The PreIPOCompany’s share price at the most recent funding round, expressed in USD. */
1270
+ lastSharePrice?: number | undefined;
1271
+ /** The number of customers serviced by a Pre-IPO Company. */
1272
+ numCustomers?: number | undefined;
1273
+ /** Array of the PreIPOCompany’s executive or management team. */
1274
+ executiveTeam?: string[] | undefined;
1275
+ /** The number of shares that have been issued by the PreIPOCompany. */
1276
+ numSharesOutstanding?: number | undefined;
1277
+ /** A list of the notable investors’ logos associated with a PreIPOCompany. */
1278
+ notableInvestorsLogos?: string[] | undefined;
1279
+ }
1280
+ export declare class PreIPOCompanyApiResponse implements IPreIPOCompanyApiResponse {
1281
+ items?: PreIPOCompany[] | undefined;
1282
+ pagination?: Pagination | undefined;
1283
+ constructor(data?: IPreIPOCompanyApiResponse);
1284
+ init(_data?: any): void;
1285
+ static fromJS(data: any): PreIPOCompanyApiResponse;
1286
+ toJSON(data?: any): any;
1287
+ }
1288
+ export interface IPreIPOCompanyApiResponse {
1289
+ items?: PreIPOCompany[] | undefined;
1290
+ pagination?: Pagination | undefined;
1291
+ }
1292
+ export declare class PreIPOCompanyFundingRound implements IPreIPOCompanyFundingRound {
1293
+ /** The entity ID attached to this funding round. */
1294
+ id: string;
1295
+ /** The unique ID of the PreIPOCompany associated with the funding round. */
1296
+ preIPOCompanyId?: string;
1297
+ /** Represents the name of the funding round. */
1298
+ roundName: string | undefined;
1299
+ /** Collection of share details associated with the funding rounds. */
1300
+ shareDetails?: ShareDetail[] | undefined;
1301
+ /** Collection of citations associated with the funding rounds. */
1302
+ citations?: Citation[] | undefined;
1303
+ /** The source of the PreIPOCompanyFundingRound. */
1304
+ source: string | undefined;
1305
+ constructor(data?: IPreIPOCompanyFundingRound);
1306
+ init(_data?: any): void;
1307
+ static fromJS(data: any): PreIPOCompanyFundingRound;
1308
+ toJSON(data?: any): any;
1309
+ }
1310
+ export interface IPreIPOCompanyFundingRound {
1311
+ /** The entity ID attached to this funding round. */
1312
+ id: string;
1313
+ /** The unique ID of the PreIPOCompany associated with the funding round. */
1314
+ preIPOCompanyId?: string;
1315
+ /** Represents the name of the funding round. */
1316
+ roundName: string | undefined;
1317
+ /** Collection of share details associated with the funding rounds. */
1318
+ shareDetails?: ShareDetail[] | undefined;
1319
+ /** Collection of citations associated with the funding rounds. */
1320
+ citations?: Citation[] | undefined;
1321
+ /** The source of the PreIPOCompanyFundingRound. */
1322
+ source: string | undefined;
1323
+ }
1324
+ export declare class PreIPOCompanyFundingRoundApiResponse implements IPreIPOCompanyFundingRoundApiResponse {
1325
+ items?: PreIPOCompanyFundingRound[] | undefined;
1326
+ pagination?: Pagination | undefined;
1327
+ constructor(data?: IPreIPOCompanyFundingRoundApiResponse);
1328
+ init(_data?: any): void;
1329
+ static fromJS(data: any): PreIPOCompanyFundingRoundApiResponse;
1330
+ toJSON(data?: any): any;
1331
+ }
1332
+ export interface IPreIPOCompanyFundingRoundApiResponse {
1333
+ items?: PreIPOCompanyFundingRound[] | undefined;
1334
+ pagination?: Pagination | undefined;
1335
+ }
1336
+ export declare class PreIPOCompanyInvestment implements IPreIPOCompanyInvestment {
1337
+ /** Unique identifier for the PreIPOCompanyInvestment. */
1338
+ id?: string;
1339
+ /** The PreIPOCompany associated with this Investment. */
1340
+ preIPOCompanyID?: string;
1341
+ /** Created at the specified Date. */
1342
+ createdAt?: Date;
1343
+ /** Updated at the specified Date. */
1344
+ updatedAt?: Date | undefined;
1345
+ /** Indicates the type of shares for the Pre-IPOCompanyInvestment. Possible values may include "Common," "Preferred," or "Common and Preferred." */
1346
+ shareType: string | undefined;
1347
+ /** Share class of PreIPOCompany. Can be Series A, Series B, Series C, etc. */
1348
+ shareClass: string | undefined;
1349
+ /** The number of shares in the PreIPOCompany associated with this Investment. */
1350
+ numberOfShares?: number | undefined;
1351
+ /** The net amount of capital, including all commissions and fees associated with this PreIPOCompanyInvestment. This number determines the total amount of cash that needs to be syndicated in order to execute the transaction. */
1352
+ totalCapitalRaise?: number | undefined;
1353
+ /** This is the total amount that will be sent to the seller or issuer, after all commissions and fees have been paid. */
1354
+ investmentSize?: number;
1355
+ /** The price per share of the PreIPOCompany that will be paid to acquire the shares. */
1356
+ pricePerShare?: number | undefined;
1357
+ /** A transactionType of primary means that Monark has received an allocation in a PreIPOCompany's primary capital raise, and we are syndicating capital through an SPV to participate in the raise. transactionType of secondary means that an existing shareholder in the PreIPOCompany is looking for liquidity and Monark is interacting with the shareholder as a single LP, raising capital through the SPV and buying shares from the seller. transactionType of Tender Offer means that Monark is participating in a company sponsored share repurchase program through an SPV, helping the PreIPOCompany offer shareholders liquidity. */
1358
+ transactionType?: PreIPOCompanyInvestmentTransactionType;
1359
+ /** Describes whether or not the PreIPOCompanyInvestment is taking place through a Layered SPV. */
1360
+ layeredSPV?: LayeredSPV | undefined;
1361
+ /** The name of the PreIPOCompany. */
1362
+ companyName?: string | undefined;
1363
+ constructor(data?: IPreIPOCompanyInvestment);
1364
+ init(_data?: any): void;
1365
+ static fromJS(data: any): PreIPOCompanyInvestment;
1366
+ toJSON(data?: any): any;
1367
+ }
1368
+ export interface IPreIPOCompanyInvestment {
1369
+ /** Unique identifier for the PreIPOCompanyInvestment. */
1370
+ id?: string;
1371
+ /** The PreIPOCompany associated with this Investment. */
1372
+ preIPOCompanyID?: string;
1373
+ /** Created at the specified Date. */
1374
+ createdAt?: Date;
1375
+ /** Updated at the specified Date. */
1376
+ updatedAt?: Date | undefined;
1377
+ /** Indicates the type of shares for the Pre-IPOCompanyInvestment. Possible values may include "Common," "Preferred," or "Common and Preferred." */
1378
+ shareType: string | undefined;
1379
+ /** Share class of PreIPOCompany. Can be Series A, Series B, Series C, etc. */
1380
+ shareClass: string | undefined;
1381
+ /** The number of shares in the PreIPOCompany associated with this Investment. */
1382
+ numberOfShares?: number | undefined;
1383
+ /** The net amount of capital, including all commissions and fees associated with this PreIPOCompanyInvestment. This number determines the total amount of cash that needs to be syndicated in order to execute the transaction. */
1384
+ totalCapitalRaise?: number | undefined;
1385
+ /** This is the total amount that will be sent to the seller or issuer, after all commissions and fees have been paid. */
1386
+ investmentSize?: number;
1387
+ /** The price per share of the PreIPOCompany that will be paid to acquire the shares. */
1388
+ pricePerShare?: number | undefined;
1389
+ /** A transactionType of primary means that Monark has received an allocation in a PreIPOCompany's primary capital raise, and we are syndicating capital through an SPV to participate in the raise. transactionType of secondary means that an existing shareholder in the PreIPOCompany is looking for liquidity and Monark is interacting with the shareholder as a single LP, raising capital through the SPV and buying shares from the seller. transactionType of Tender Offer means that Monark is participating in a company sponsored share repurchase program through an SPV, helping the PreIPOCompany offer shareholders liquidity. */
1390
+ transactionType?: PreIPOCompanyInvestmentTransactionType;
1391
+ /** Describes whether or not the PreIPOCompanyInvestment is taking place through a Layered SPV. */
1392
+ layeredSPV?: LayeredSPV | undefined;
1393
+ /** The name of the PreIPOCompany. */
1394
+ companyName?: string | undefined;
1395
+ }
1396
+ export declare class PreIPOCompanyInvestmentApiResponse implements IPreIPOCompanyInvestmentApiResponse {
1397
+ items?: PreIPOCompanyInvestment[] | undefined;
1398
+ pagination?: Pagination | undefined;
1399
+ constructor(data?: IPreIPOCompanyInvestmentApiResponse);
1400
+ init(_data?: any): void;
1401
+ static fromJS(data: any): PreIPOCompanyInvestmentApiResponse;
1402
+ toJSON(data?: any): any;
1403
+ }
1404
+ export interface IPreIPOCompanyInvestmentApiResponse {
1405
+ items?: PreIPOCompanyInvestment[] | undefined;
1406
+ pagination?: Pagination | undefined;
1407
+ }
1408
+ export declare class PreIPOCompanyNews implements IPreIPOCompanyNews {
1409
+ /** The unique ID attached to this news object. */
1410
+ id: string;
1411
+ /** The unique ID of the PreIPOCompany associated with the news. */
1412
+ preIPOCompanyId?: string;
1413
+ /** The ID for this news object, generated by our third party data provider. */
1414
+ newsId: string | undefined;
1415
+ /** Link to the news. */
1416
+ link: string | undefined;
1417
+ /** The headline of the news. */
1418
+ headline: string | undefined;
1419
+ /** Metadata of the news. */
1420
+ description?: string | undefined;
1421
+ /** The source of the news. */
1422
+ source: string | undefined;
1423
+ /** The release date of the news. */
1424
+ releaseDate?: Date | undefined;
1425
+ /** A list of articles associated with the News. */
1426
+ articles?: PreIPOCompanyNewsArticle[] | undefined;
1427
+ constructor(data?: IPreIPOCompanyNews);
1428
+ init(_data?: any): void;
1429
+ static fromJS(data: any): PreIPOCompanyNews;
1430
+ toJSON(data?: any): any;
1431
+ }
1432
+ export interface IPreIPOCompanyNews {
1433
+ /** The unique ID attached to this news object. */
1434
+ id: string;
1435
+ /** The unique ID of the PreIPOCompany associated with the news. */
1436
+ preIPOCompanyId?: string;
1437
+ /** The ID for this news object, generated by our third party data provider. */
1438
+ newsId: string | undefined;
1439
+ /** Link to the news. */
1440
+ link: string | undefined;
1441
+ /** The headline of the news. */
1442
+ headline: string | undefined;
1443
+ /** Metadata of the news. */
1444
+ description?: string | undefined;
1445
+ /** The source of the news. */
1446
+ source: string | undefined;
1447
+ /** The release date of the news. */
1448
+ releaseDate?: Date | undefined;
1449
+ /** A list of articles associated with the News. */
1450
+ articles?: PreIPOCompanyNewsArticle[] | undefined;
1451
+ }
1452
+ export declare class PreIPOCompanyNewsApiResponse implements IPreIPOCompanyNewsApiResponse {
1453
+ items?: PreIPOCompanyNews[] | undefined;
1454
+ pagination?: Pagination | undefined;
1455
+ constructor(data?: IPreIPOCompanyNewsApiResponse);
1456
+ init(_data?: any): void;
1457
+ static fromJS(data: any): PreIPOCompanyNewsApiResponse;
1458
+ toJSON(data?: any): any;
1459
+ }
1460
+ export interface IPreIPOCompanyNewsApiResponse {
1461
+ items?: PreIPOCompanyNews[] | undefined;
1462
+ pagination?: Pagination | undefined;
1463
+ }
1464
+ export declare class PreIPOCompanyNewsArticle implements IPreIPOCompanyNewsArticle {
1465
+ /** The entity ID attached to this article. */
1466
+ id: string;
1467
+ /** The pre-IPO company news entity ID attached to this article. */
1468
+ preIPOCompanyNewsId?: string;
1469
+ /** The article id. */
1470
+ articleId: string | undefined;
1471
+ /** Link to the article. */
1472
+ link: string | undefined;
1473
+ /** The headline of the article. */
1474
+ headline: string | undefined;
1475
+ /** Metadata of the article. */
1476
+ shortSummary?: string | undefined;
1477
+ /** Publication of the article. */
1478
+ publication?: string | undefined;
1479
+ /** The source of the article. */
1480
+ source: string | undefined;
1481
+ /** The published date of the article. */
1482
+ datePublished?: Date;
1483
+ constructor(data?: IPreIPOCompanyNewsArticle);
1484
+ init(_data?: any): void;
1485
+ static fromJS(data: any): PreIPOCompanyNewsArticle;
1486
+ toJSON(data?: any): any;
1487
+ }
1488
+ export interface IPreIPOCompanyNewsArticle {
1489
+ /** The entity ID attached to this article. */
1490
+ id: string;
1491
+ /** The pre-IPO company news entity ID attached to this article. */
1492
+ preIPOCompanyNewsId?: string;
1493
+ /** The article id. */
1494
+ articleId: string | undefined;
1495
+ /** Link to the article. */
1496
+ link: string | undefined;
1497
+ /** The headline of the article. */
1498
+ headline: string | undefined;
1499
+ /** Metadata of the article. */
1500
+ shortSummary?: string | undefined;
1501
+ /** Publication of the article. */
1502
+ publication?: string | undefined;
1503
+ /** The source of the article. */
1504
+ source: string | undefined;
1505
+ /** The published date of the article. */
1506
+ datePublished?: Date;
1507
+ }
1508
+ export declare class PreIPOCompanyResearch implements IPreIPOCompanyResearch {
1509
+ /** The unique ID attached to this research document. */
1510
+ id: string;
1511
+ /** The ID of the PreIPOCompany associated with a research document. */
1512
+ preIPOCompanyId?: string;
1513
+ /** The research document id. */
1514
+ researchDocumentId: string | undefined;
1515
+ /** The title of the research document. */
1516
+ title: string | undefined;
1517
+ /** Link to the research document. */
1518
+ link: string | undefined;
1519
+ /** Type of research document. */
1520
+ type: PreIPOCompanyResearchType;
1521
+ /** Relation of entity of the research document. */
1522
+ relation: PreIPOCompanyResearchRelation;
1523
+ /** Metadata of the research document. */
1524
+ previewMeta?: string | undefined;
1525
+ /** Third party data service providing access to this research document. */
1526
+ source?: string | undefined;
1527
+ constructor(data?: IPreIPOCompanyResearch);
1528
+ init(_data?: any): void;
1529
+ static fromJS(data: any): PreIPOCompanyResearch;
1530
+ toJSON(data?: any): any;
1531
+ }
1532
+ export interface IPreIPOCompanyResearch {
1533
+ /** The unique ID attached to this research document. */
1534
+ id: string;
1535
+ /** The ID of the PreIPOCompany associated with a research document. */
1536
+ preIPOCompanyId?: string;
1537
+ /** The research document id. */
1538
+ researchDocumentId: string | undefined;
1539
+ /** The title of the research document. */
1540
+ title: string | undefined;
1541
+ /** Link to the research document. */
1542
+ link: string | undefined;
1543
+ /** Type of research document. */
1544
+ type: PreIPOCompanyResearchType;
1545
+ /** Relation of entity of the research document. */
1546
+ relation: PreIPOCompanyResearchRelation;
1547
+ /** Metadata of the research document. */
1548
+ previewMeta?: string | undefined;
1549
+ /** Third party data service providing access to this research document. */
1550
+ source?: string | undefined;
1551
+ }
1552
+ export declare class PreIPOCompanyResearchApiResponse implements IPreIPOCompanyResearchApiResponse {
1553
+ items?: PreIPOCompanyResearch[] | undefined;
1554
+ pagination?: Pagination | undefined;
1555
+ constructor(data?: IPreIPOCompanyResearchApiResponse);
1556
+ init(_data?: any): void;
1557
+ static fromJS(data: any): PreIPOCompanyResearchApiResponse;
1558
+ toJSON(data?: any): any;
1559
+ }
1560
+ export interface IPreIPOCompanyResearchApiResponse {
1561
+ items?: PreIPOCompanyResearch[] | undefined;
1562
+ pagination?: Pagination | undefined;
1563
+ }
1564
+ /** PreIPOCompanySPV represents the public information we provide for a PreIPOCompanySPV in the Primary Offering. */
1565
+ export declare class PreIPOCompanySPV implements IPreIPOCompanySPV {
1566
+ /** Unique ID associated with an SPV. */
1567
+ id: string;
1568
+ /** The unique ID of the PreIPOCompany that the SPV is investing into. */
1569
+ preIPOCompanyInvestmentId: string;
1570
+ /** The PreIPOCompany which the SPV will be investing into. */
1571
+ preIPOCompanyId: string;
1572
+ /** This number describes the total amount of capital that will be raised into the SPV, including management fees, commission paid to Partners distributing the SPV, fund admin fees, and all other expenses. */
1573
+ totalDollarAllocation?: number | undefined;
1574
+ /** The minimum amount that an Investor can invest into an SPV during a primary offering. */
1575
+ minCommitmentAmount?: number | undefined;
1576
+ /** The name of the SPV. */
1577
+ name: string | undefined;
1578
+ /** Describes the implied valuation of the associated PreIPOCompany, and it accounts for fees, commissions, markups (if any), and share price. This number is set when the SPV is created. */
1579
+ valuation?: number;
1580
+ /** Short description of the SPV. */
1581
+ synopsis?: string | undefined;
1582
+ /** Longer description of the SPV’s strategy or purpose. */
1583
+ description?: string | undefined;
1584
+ /** A list of notable investors associated with an SPV. */
1585
+ notableInvestors?: string[] | undefined;
1586
+ /** The name of the Master LLC. */
1587
+ masterLLCName?: string | undefined;
1588
+ /** The one time, up front management fee charged by the SPV. */
1589
+ managementFee?: number | undefined;
1590
+ /** The number of years over which the management fee will be paid. SPVs offered through Monark will have this number set to 1, as the SPV will charge a one time up front management fee. */
1591
+ managementFeeYearsPayable?: number | undefined;
1592
+ /** Funding deadline associated with the primary issuance of an SPV. Prefunded SPVs may not have a funding deadline. SPVs will no longer accept Subscriptions once the Funding Deadline has passed. */
1593
+ fundingDeadline?: Date | undefined;
1594
+ /** The exemptions claimed by a PreIPOCompanySPV. These align with the SEC's Form D Item 6: Federal Exemptions and Exclusions Claimed. */
1595
+ exemptionsClaimed?: ExemptionsClaimed[] | undefined;
1596
+ /** CUSIP assigned to the SPV. Monark acquires and assigns the CUSIP after the first trade has been executed through our ATS. */
1597
+ cusip?: string | undefined;
1598
+ /** Symbol assigned to the SPV. This symbol is created and assigned to the SPV upon its creation. */
1599
+ tradingSymbol?: string | undefined;
1600
+ /** The date that the SPV officially closed. This field will be populated after the close of the SPV. */
1601
+ closeDate?: Date | undefined;
1602
+ /** Custodian where SPV shares are held. */
1603
+ spvCustodian?: string | undefined;
1604
+ /** The number of shares in the PreIPOCompany that will be held by the SPV. */
1605
+ totalShareAllocation?: number;
1606
+ /** The number of shares in the PreIPOCompany that will be held by the SPV. */
1607
+ totalNumberOfSeats?: number;
1608
+ /** The number of remaining LP positions in an SPV available to Investors. Each time an Investor completes a Subscription, this number decreases by one. Once this number reaches zero, the MonarkStage attribute associated with the SPV will move from “PRIMARY_FUNDRAISE” to “MONARK_DILIGENCE.” */
1609
+ numberOfSeatsRemaining?: number;
1610
+ /** The remaining dollar amount in a primary fundraise of an SPV. Once this number reaches zero the SPV will no longer accept new Investors on the primary market. */
1611
+ remainingDollarAllocation?: number;
1612
+ /** The remaining number of shares in a primary fundraise of an SPV. Once this number reaches zero the SPV will no longer accept new Investors on the primary market. */
1613
+ remainingShareAllocation?: number;
1614
+ /** Indicates whether the SPV will be prefunded. */
1615
+ preFundedInventory?: boolean;
1616
+ /** Size, in USD, of the brokerage commission associated with this PreIPOCompanyInvestment. This is the amount left over after the ERA pays its fees out of the cash withheld from the up front management fee. */
1617
+ totalCommission?: number | undefined;
1618
+ /** The percentage of the TotalCommission that will be paid to MMM Securities LLC. */
1619
+ monarkCommissionSplit?: number | undefined;
1620
+ /** The percentage of the TotalCommission that will be paid to the Partner distributing the SPV. */
1621
+ demandSideCommissionSplit?: number | undefined;
1622
+ /** The price per share of the PreIPOCompany, excluding fees, that an investor will pay when they invest in an SPV. */
1623
+ investorPricePerShare?: number | undefined;
1624
+ /** The fee per share of the PreIPOCompany, that an Investor will pay when they invest in an SPV on the primary issuance. The InvestorPricePerShare plus the InvestorFeePerShare will determine the AllInPricePerShare. */
1625
+ investorFeePerShare?: number | undefined;
1626
+ /** The total amount per share that an Investor will pay, including fees, when they invest in an SPV. */
1627
+ allInPricePerShare?: number | undefined;
1628
+ /** The base documents associated with the SPV (Optional). */
1629
+ documents?: DocumentShallow[] | undefined;
1630
+ /** SPV account ID. */
1631
+ spvAccountID?: number | undefined;
1632
+ constructor(data?: IPreIPOCompanySPV);
1633
+ init(_data?: any): void;
1634
+ static fromJS(data: any): PreIPOCompanySPV;
1635
+ toJSON(data?: any): any;
1636
+ }
1637
+ /** PreIPOCompanySPV represents the public information we provide for a PreIPOCompanySPV in the Primary Offering. */
1638
+ export interface IPreIPOCompanySPV {
1639
+ /** Unique ID associated with an SPV. */
1640
+ id: string;
1641
+ /** The unique ID of the PreIPOCompany that the SPV is investing into. */
1642
+ preIPOCompanyInvestmentId: string;
1643
+ /** The PreIPOCompany which the SPV will be investing into. */
1644
+ preIPOCompanyId: string;
1645
+ /** This number describes the total amount of capital that will be raised into the SPV, including management fees, commission paid to Partners distributing the SPV, fund admin fees, and all other expenses. */
1646
+ totalDollarAllocation?: number | undefined;
1647
+ /** The minimum amount that an Investor can invest into an SPV during a primary offering. */
1648
+ minCommitmentAmount?: number | undefined;
1649
+ /** The name of the SPV. */
1650
+ name: string | undefined;
1651
+ /** Describes the implied valuation of the associated PreIPOCompany, and it accounts for fees, commissions, markups (if any), and share price. This number is set when the SPV is created. */
1652
+ valuation?: number;
1653
+ /** Short description of the SPV. */
1654
+ synopsis?: string | undefined;
1655
+ /** Longer description of the SPV’s strategy or purpose. */
1656
+ description?: string | undefined;
1657
+ /** A list of notable investors associated with an SPV. */
1658
+ notableInvestors?: string[] | undefined;
1659
+ /** The name of the Master LLC. */
1660
+ masterLLCName?: string | undefined;
1661
+ /** The one time, up front management fee charged by the SPV. */
1662
+ managementFee?: number | undefined;
1663
+ /** The number of years over which the management fee will be paid. SPVs offered through Monark will have this number set to 1, as the SPV will charge a one time up front management fee. */
1664
+ managementFeeYearsPayable?: number | undefined;
1665
+ /** Funding deadline associated with the primary issuance of an SPV. Prefunded SPVs may not have a funding deadline. SPVs will no longer accept Subscriptions once the Funding Deadline has passed. */
1666
+ fundingDeadline?: Date | undefined;
1667
+ /** The exemptions claimed by a PreIPOCompanySPV. These align with the SEC's Form D Item 6: Federal Exemptions and Exclusions Claimed. */
1668
+ exemptionsClaimed?: ExemptionsClaimed[] | undefined;
1669
+ /** CUSIP assigned to the SPV. Monark acquires and assigns the CUSIP after the first trade has been executed through our ATS. */
1670
+ cusip?: string | undefined;
1671
+ /** Symbol assigned to the SPV. This symbol is created and assigned to the SPV upon its creation. */
1672
+ tradingSymbol?: string | undefined;
1673
+ /** The date that the SPV officially closed. This field will be populated after the close of the SPV. */
1674
+ closeDate?: Date | undefined;
1675
+ /** Custodian where SPV shares are held. */
1676
+ spvCustodian?: string | undefined;
1677
+ /** The number of shares in the PreIPOCompany that will be held by the SPV. */
1678
+ totalShareAllocation?: number;
1679
+ /** The number of shares in the PreIPOCompany that will be held by the SPV. */
1680
+ totalNumberOfSeats?: number;
1681
+ /** The number of remaining LP positions in an SPV available to Investors. Each time an Investor completes a Subscription, this number decreases by one. Once this number reaches zero, the MonarkStage attribute associated with the SPV will move from “PRIMARY_FUNDRAISE” to “MONARK_DILIGENCE.” */
1682
+ numberOfSeatsRemaining?: number;
1683
+ /** The remaining dollar amount in a primary fundraise of an SPV. Once this number reaches zero the SPV will no longer accept new Investors on the primary market. */
1684
+ remainingDollarAllocation?: number;
1685
+ /** The remaining number of shares in a primary fundraise of an SPV. Once this number reaches zero the SPV will no longer accept new Investors on the primary market. */
1686
+ remainingShareAllocation?: number;
1687
+ /** Indicates whether the SPV will be prefunded. */
1688
+ preFundedInventory?: boolean;
1689
+ /** Size, in USD, of the brokerage commission associated with this PreIPOCompanyInvestment. This is the amount left over after the ERA pays its fees out of the cash withheld from the up front management fee. */
1690
+ totalCommission?: number | undefined;
1691
+ /** The percentage of the TotalCommission that will be paid to MMM Securities LLC. */
1692
+ monarkCommissionSplit?: number | undefined;
1693
+ /** The percentage of the TotalCommission that will be paid to the Partner distributing the SPV. */
1694
+ demandSideCommissionSplit?: number | undefined;
1695
+ /** The price per share of the PreIPOCompany, excluding fees, that an investor will pay when they invest in an SPV. */
1696
+ investorPricePerShare?: number | undefined;
1697
+ /** The fee per share of the PreIPOCompany, that an Investor will pay when they invest in an SPV on the primary issuance. The InvestorPricePerShare plus the InvestorFeePerShare will determine the AllInPricePerShare. */
1698
+ investorFeePerShare?: number | undefined;
1699
+ /** The total amount per share that an Investor will pay, including fees, when they invest in an SPV. */
1700
+ allInPricePerShare?: number | undefined;
1701
+ /** The base documents associated with the SPV (Optional). */
1702
+ documents?: DocumentShallow[] | undefined;
1703
+ /** SPV account ID. */
1704
+ spvAccountID?: number | undefined;
1705
+ }
1706
+ export declare class PreIPOCompanySPVApiResponse implements IPreIPOCompanySPVApiResponse {
1707
+ items?: PreIPOCompanySPV[] | undefined;
1708
+ pagination?: Pagination | undefined;
1709
+ constructor(data?: IPreIPOCompanySPVApiResponse);
1710
+ init(_data?: any): void;
1711
+ static fromJS(data: any): PreIPOCompanySPVApiResponse;
1712
+ toJSON(data?: any): any;
1713
+ }
1714
+ export interface IPreIPOCompanySPVApiResponse {
1715
+ items?: PreIPOCompanySPV[] | undefined;
1716
+ pagination?: Pagination | undefined;
1717
+ }
1718
+ export declare class ProblemDetails implements IProblemDetails {
1719
+ type?: string | undefined;
1720
+ title?: string | undefined;
1721
+ status?: number | undefined;
1722
+ detail?: string | undefined;
1723
+ instance?: string | undefined;
1724
+ [key: string]: any;
1725
+ constructor(data?: IProblemDetails);
1726
+ init(_data?: any): void;
1727
+ static fromJS(data: any): ProblemDetails;
1728
+ toJSON(data?: any): any;
1729
+ }
1730
+ export interface IProblemDetails {
1731
+ type?: string | undefined;
1732
+ title?: string | undefined;
1733
+ status?: number | undefined;
1734
+ detail?: string | undefined;
1735
+ instance?: string | undefined;
1736
+ [key: string]: any;
1737
+ }
1738
+ /** Questionnaire repesents the public information we provide for a Questionnaire in the Primary Offering. */
1739
+ export declare class Questionnaire implements IQuestionnaire {
1740
+ /** Unique ID associated with a Questionnaire. */
1741
+ id?: string;
1742
+ /** Represents the name of the Questionnaire object. */
1743
+ name: string | undefined;
1744
+ /** Title represents the display title used for the questionnaire. */
1745
+ title: string | undefined;
1746
+ /** Questions represents a list of questions associated with the Questionnaire. */
1747
+ questions?: QuestionnaireQuestion[] | undefined;
1748
+ /** Created at the specified date. */
1749
+ createdAt?: Date;
1750
+ /** Updated at the specified date. */
1751
+ updatedAt?: Date;
1752
+ constructor(data?: IQuestionnaire);
1753
+ init(_data?: any): void;
1754
+ static fromJS(data: any): Questionnaire;
1755
+ toJSON(data?: any): any;
1756
+ }
1757
+ /** Questionnaire repesents the public information we provide for a Questionnaire in the Primary Offering. */
1758
+ export interface IQuestionnaire {
1759
+ /** Unique ID associated with a Questionnaire. */
1760
+ id?: string;
1761
+ /** Represents the name of the Questionnaire object. */
1762
+ name: string | undefined;
1763
+ /** Title represents the display title used for the questionnaire. */
1764
+ title: string | undefined;
1765
+ /** Questions represents a list of questions associated with the Questionnaire. */
1766
+ questions?: QuestionnaireQuestion[] | undefined;
1767
+ /** Created at the specified date. */
1768
+ createdAt?: Date;
1769
+ /** Updated at the specified date. */
1770
+ updatedAt?: Date;
1771
+ }
1772
+ export declare class QuestionnaireAnswer implements IQuestionnaireAnswer {
1773
+ /** Unique ID associated with a Questionnaire answer. */
1774
+ id?: string;
1775
+ /** Unique ID of the Questionnaire being answered. */
1776
+ questionnaireId: string;
1777
+ /** The linked InvestorId. */
1778
+ investorId?: string;
1779
+ /** All the questions answered from the Questionnaire. */
1780
+ questionAnswers?: QuestionnaireQuestionAnswer[] | undefined;
1781
+ /** Created at the specified date. */
1782
+ createdAt?: Date;
1783
+ /** Updated at the specified date. */
1784
+ updatedAt?: Date;
1785
+ constructor(data?: IQuestionnaireAnswer);
1786
+ init(_data?: any): void;
1787
+ static fromJS(data: any): QuestionnaireAnswer;
1788
+ toJSON(data?: any): any;
1789
+ }
1790
+ export interface IQuestionnaireAnswer {
1791
+ /** Unique ID associated with a Questionnaire answer. */
1792
+ id?: string;
1793
+ /** Unique ID of the Questionnaire being answered. */
1794
+ questionnaireId: string;
1795
+ /** The linked InvestorId. */
1796
+ investorId?: string;
1797
+ /** All the questions answered from the Questionnaire. */
1798
+ questionAnswers?: QuestionnaireQuestionAnswer[] | undefined;
1799
+ /** Created at the specified date. */
1800
+ createdAt?: Date;
1801
+ /** Updated at the specified date. */
1802
+ updatedAt?: Date;
1803
+ }
1804
+ export declare class QuestionnaireApiResponse implements IQuestionnaireApiResponse {
1805
+ items?: Questionnaire[] | undefined;
1806
+ pagination?: Pagination | undefined;
1807
+ constructor(data?: IQuestionnaireApiResponse);
1808
+ init(_data?: any): void;
1809
+ static fromJS(data: any): QuestionnaireApiResponse;
1810
+ toJSON(data?: any): any;
1811
+ }
1812
+ export interface IQuestionnaireApiResponse {
1813
+ items?: Questionnaire[] | undefined;
1814
+ pagination?: Pagination | undefined;
1815
+ }
1816
+ /** Questionnaire Question. */
1817
+ export declare class QuestionnaireQuestion implements IQuestionnaireQuestion {
1818
+ /** Unique ID associated with a Questionnaire question. */
1819
+ id?: string;
1820
+ /** Optional identifier for the question. */
1821
+ identifier?: string | undefined;
1822
+ /** Order sequence of the question within the Questionnaire. */
1823
+ sequence?: number;
1824
+ /** Question status, could be active or disabled. Questions can be set to disabled and new questions created if a Partners elects to edit one or more of the questions presented to their Investors. */
1825
+ status?: QuestionnaireQuestionStatus;
1826
+ /** Text of the question. */
1827
+ text: string | undefined;
1828
+ /** An explanation of the question presented within a Questionnaire. Helps the Investor understand the question being asked by providing additional context. */
1829
+ explanation: string | undefined;
1830
+ /** Format of the question. */
1831
+ format: QuestionnaireQuestionFormat;
1832
+ /** A list of potential answers associated with a question. */
1833
+ options?: string[] | undefined;
1834
+ /** Optional minimum value for a scale question. */
1835
+ scaleMin?: number | undefined;
1836
+ /** Optional maximum value for a scale question. */
1837
+ scaleMax?: number | undefined;
1838
+ /** Optional step value for a scale question. */
1839
+ scaleStep?: number | undefined;
1840
+ /** Created at the specified date. */
1841
+ createdAt?: Date;
1842
+ /** Updated at the specified date. */
1843
+ updatedAt?: Date;
1844
+ constructor(data?: IQuestionnaireQuestion);
1845
+ init(_data?: any): void;
1846
+ static fromJS(data: any): QuestionnaireQuestion;
1847
+ toJSON(data?: any): any;
1848
+ }
1849
+ /** Questionnaire Question. */
1850
+ export interface IQuestionnaireQuestion {
1851
+ /** Unique ID associated with a Questionnaire question. */
1852
+ id?: string;
1853
+ /** Optional identifier for the question. */
1854
+ identifier?: string | undefined;
1855
+ /** Order sequence of the question within the Questionnaire. */
1856
+ sequence?: number;
1857
+ /** Question status, could be active or disabled. Questions can be set to disabled and new questions created if a Partners elects to edit one or more of the questions presented to their Investors. */
1858
+ status?: QuestionnaireQuestionStatus;
1859
+ /** Text of the question. */
1860
+ text: string | undefined;
1861
+ /** An explanation of the question presented within a Questionnaire. Helps the Investor understand the question being asked by providing additional context. */
1862
+ explanation: string | undefined;
1863
+ /** Format of the question. */
1864
+ format: QuestionnaireQuestionFormat;
1865
+ /** A list of potential answers associated with a question. */
1866
+ options?: string[] | undefined;
1867
+ /** Optional minimum value for a scale question. */
1868
+ scaleMin?: number | undefined;
1869
+ /** Optional maximum value for a scale question. */
1870
+ scaleMax?: number | undefined;
1871
+ /** Optional step value for a scale question. */
1872
+ scaleStep?: number | undefined;
1873
+ /** Created at the specified date. */
1874
+ createdAt?: Date;
1875
+ /** Updated at the specified date. */
1876
+ updatedAt?: Date;
1877
+ }
1878
+ /** Questionnaire Question Answer. */
1879
+ export declare class QuestionnaireQuestionAnswer implements IQuestionnaireQuestionAnswer {
1880
+ /** Unique ID associated with a Questionnaire question answer pairing. */
1881
+ id?: string;
1882
+ /** Text of the question asked. */
1883
+ questionText: string | undefined;
1884
+ /** Explanation of the question asked. */
1885
+ questionExplanation: string | undefined;
1886
+ /** Format of the question asked. */
1887
+ questionFormat: QuestionnaireQuestionAnswerQuestionFormat;
1888
+ /** A list of potential answers associated with a question. */
1889
+ questionOptions?: string[] | undefined;
1890
+ /** Value of the answer to the question. */
1891
+ value: string | undefined;
1892
+ /** Created at the specified date. */
1893
+ createdAt?: Date;
1894
+ /** Updated at the specified date. */
1895
+ updatedAt?: Date;
1896
+ constructor(data?: IQuestionnaireQuestionAnswer);
1897
+ init(_data?: any): void;
1898
+ static fromJS(data: any): QuestionnaireQuestionAnswer;
1899
+ toJSON(data?: any): any;
1900
+ }
1901
+ /** Questionnaire Question Answer. */
1902
+ export interface IQuestionnaireQuestionAnswer {
1903
+ /** Unique ID associated with a Questionnaire question answer pairing. */
1904
+ id?: string;
1905
+ /** Text of the question asked. */
1906
+ questionText: string | undefined;
1907
+ /** Explanation of the question asked. */
1908
+ questionExplanation: string | undefined;
1909
+ /** Format of the question asked. */
1910
+ questionFormat: QuestionnaireQuestionAnswerQuestionFormat;
1911
+ /** A list of potential answers associated with a question. */
1912
+ questionOptions?: string[] | undefined;
1913
+ /** Value of the answer to the question. */
1914
+ value: string | undefined;
1915
+ /** Created at the specified date. */
1916
+ createdAt?: Date;
1917
+ /** Updated at the specified date. */
1918
+ updatedAt?: Date;
1919
+ }
1920
+ export declare class ShareDetail implements IShareDetail {
1921
+ /** Name of the share detail. */
1922
+ name: string;
1923
+ /** Issue price of the share detail. */
1924
+ issuePrice?: number | undefined;
1925
+ /** Created at the specified date. */
1926
+ issuedAt?: Date | undefined;
1927
+ /** Updated at the specified date. */
1928
+ updatedAt?: Date | undefined;
1929
+ constructor(data?: IShareDetail);
1930
+ init(_data?: any): void;
1931
+ static fromJS(data: any): ShareDetail;
1932
+ toJSON(data?: any): any;
1933
+ }
1934
+ export interface IShareDetail {
1935
+ /** Name of the share detail. */
1936
+ name: string;
1937
+ /** Issue price of the share detail. */
1938
+ issuePrice?: number | undefined;
1939
+ /** Created at the specified date. */
1940
+ issuedAt?: Date | undefined;
1941
+ /** Updated at the specified date. */
1942
+ updatedAt?: Date | undefined;
1943
+ }
1944
+ /** Model for signing a document. */
1945
+ export declare class SignDocument implements ISignDocument {
1946
+ /** The investorId associated with the document. */
1947
+ investorId?: string;
1948
+ /** Metadata about the signing. */
1949
+ metadata?: string | undefined;
1950
+ constructor(data?: ISignDocument);
1951
+ init(_data?: any): void;
1952
+ static fromJS(data: any): SignDocument;
1953
+ toJSON(data?: any): any;
1954
+ }
1955
+ /** Model for signing a document. */
1956
+ export interface ISignDocument {
1957
+ /** The investorId associated with the document. */
1958
+ investorId?: string;
1959
+ /** Metadata about the signing. */
1960
+ metadata?: string | undefined;
1961
+ }
1962
+ export declare class UpdateIndividualInvestor implements IUpdateIndividualInvestor {
1963
+ /** First name of the Investor. */
1964
+ firstName: string;
1965
+ /** Last name of the Investor. */
1966
+ lastName: string;
1967
+ /** Is the Investor based in the United States? */
1968
+ isUSBased: boolean;
1969
+ /** Investor’s date of birth. */
1970
+ dateOfBirth: Date;
1971
+ /** Investor’s primary address. */
1972
+ street1: string;
1973
+ /** Investor’s secondary address. */
1974
+ street2?: string | undefined;
1975
+ /** City where the Investor resides. */
1976
+ city: string;
1977
+ /** 2/3 letter state code of the investor. Check https://github.com/country-regions/country-region-data/blob/master/data.json for valid state (region) codes */
1978
+ state: string;
1979
+ /** Zip code of the Investor. */
1980
+ zipCode: string;
1981
+ /** Country code of the investor. */
1982
+ countryCode: string;
1983
+ /** When creating or updating a resource send both phone and phone_country_code or neither. Phone country code is validated against a valid list of phone country codes which you can find here (https://github.com/mukeshsoni/country-telephone-data). Do not include a + (plus sign) at the beginning of this string. */
1984
+ phoneCountryCode: string;
1985
+ /** An unformatted phone number which does not include country code. Refer to this region data (https://github.com/mukeshsoni/country-telephone-data) to select the correct phone country code. Phone numbers where phone_country_code is "1" must have 10 digits. */
1986
+ phoneNumber: string;
1987
+ /** Investor’s primary mailing address. */
1988
+ mailingStreet1: string;
1989
+ /** Investor’s secondary mailing address. */
1990
+ mailingStreet2?: string | undefined;
1991
+ /** Investor's primary mailing Apt or Suite Number. */
1992
+ mailingAddressAptSuiteNo?: string | undefined;
1993
+ /** Investor's primary mailing address city. */
1994
+ mailingAddressCity: string;
1995
+ /** Investor's primary mailing address state. */
1996
+ mailingAddressState: string;
1997
+ /** Investor's primary mailing address zip code. */
1998
+ mailingAddressZipCode: string;
1999
+ /** Investor's primary mailing address country. */
2000
+ mailingAddressCountry: string;
2001
+ /** Describes if the Investor is subject to backup withholding. */
2002
+ hasBackupWithholding?: boolean | undefined;
2003
+ /** Investor’s exempt payee code if the Investor is exempt from backup withholding. */
2004
+ exemptPayeeCode?: string | undefined;
2005
+ /** Is the investor registered as an adviser for the subscription or an exempt reporting adviser? */
2006
+ isSubscriptionAdvisorOrERA: boolean;
2007
+ /** Email address associated with an Investor. */
2008
+ email: string | undefined;
2009
+ /** Investor’s Social Security Number. */
2010
+ taxId: string;
2011
+ /** Investor Passport Number. - Only Required for Non-US Investors. */
2012
+ passportNumber?: string | undefined;
2013
+ /** Country code of the Investor’s citizenship. Check https://github.com/country-regions/country-region-data/blob/master/data.json for valid country codes */
2014
+ citizenship: string;
2015
+ constructor(data?: IUpdateIndividualInvestor);
2016
+ init(_data?: any): void;
2017
+ static fromJS(data: any): UpdateIndividualInvestor;
2018
+ toJSON(data?: any): any;
2019
+ }
2020
+ export interface IUpdateIndividualInvestor {
2021
+ /** First name of the Investor. */
2022
+ firstName: string;
2023
+ /** Last name of the Investor. */
2024
+ lastName: string;
2025
+ /** Is the Investor based in the United States? */
2026
+ isUSBased: boolean;
2027
+ /** Investor’s date of birth. */
2028
+ dateOfBirth: Date;
2029
+ /** Investor’s primary address. */
2030
+ street1: string;
2031
+ /** Investor’s secondary address. */
2032
+ street2?: string | undefined;
2033
+ /** City where the Investor resides. */
2034
+ city: string;
2035
+ /** 2/3 letter state code of the investor. Check https://github.com/country-regions/country-region-data/blob/master/data.json for valid state (region) codes */
2036
+ state: string;
2037
+ /** Zip code of the Investor. */
2038
+ zipCode: string;
2039
+ /** Country code of the investor. */
2040
+ countryCode: string;
2041
+ /** When creating or updating a resource send both phone and phone_country_code or neither. Phone country code is validated against a valid list of phone country codes which you can find here (https://github.com/mukeshsoni/country-telephone-data). Do not include a + (plus sign) at the beginning of this string. */
2042
+ phoneCountryCode: string;
2043
+ /** An unformatted phone number which does not include country code. Refer to this region data (https://github.com/mukeshsoni/country-telephone-data) to select the correct phone country code. Phone numbers where phone_country_code is "1" must have 10 digits. */
2044
+ phoneNumber: string;
2045
+ /** Investor’s primary mailing address. */
2046
+ mailingStreet1: string;
2047
+ /** Investor’s secondary mailing address. */
2048
+ mailingStreet2?: string | undefined;
2049
+ /** Investor's primary mailing Apt or Suite Number. */
2050
+ mailingAddressAptSuiteNo?: string | undefined;
2051
+ /** Investor's primary mailing address city. */
2052
+ mailingAddressCity: string;
2053
+ /** Investor's primary mailing address state. */
2054
+ mailingAddressState: string;
2055
+ /** Investor's primary mailing address zip code. */
2056
+ mailingAddressZipCode: string;
2057
+ /** Investor's primary mailing address country. */
2058
+ mailingAddressCountry: string;
2059
+ /** Describes if the Investor is subject to backup withholding. */
2060
+ hasBackupWithholding?: boolean | undefined;
2061
+ /** Investor’s exempt payee code if the Investor is exempt from backup withholding. */
2062
+ exemptPayeeCode?: string | undefined;
2063
+ /** Is the investor registered as an adviser for the subscription or an exempt reporting adviser? */
2064
+ isSubscriptionAdvisorOrERA: boolean;
2065
+ /** Email address associated with an Investor. */
2066
+ email: string | undefined;
2067
+ /** Investor’s Social Security Number. */
2068
+ taxId: string;
2069
+ /** Investor Passport Number. - Only Required for Non-US Investors. */
2070
+ passportNumber?: string | undefined;
2071
+ /** Country code of the Investor’s citizenship. Check https://github.com/country-regions/country-region-data/blob/master/data.json for valid country codes */
2072
+ citizenship: string;
2073
+ }
2074
+ /** Create Investor represnts the information required to create the investor in the primary offering. */
2075
+ export declare class UpdateInvestor implements IUpdateInvestor {
2076
+ id: string;
2077
+ /** Represents the unique ID provided by a Partner, used to identify an Investor. */
2078
+ investorReferenceId: string;
2079
+ /** The qualification status of an Investor. */
2080
+ qualificationStatus?: UpdateInvestorQualificationStatus | undefined;
2081
+ /** Information about the individual investor if this Investor is of that type. */
2082
+ individualInvestor?: UpdateIndividualInvestor | undefined;
2083
+ constructor(data?: IUpdateInvestor);
2084
+ init(_data?: any): void;
2085
+ static fromJS(data: any): UpdateInvestor;
2086
+ toJSON(data?: any): any;
2087
+ }
2088
+ /** Create Investor represnts the information required to create the investor in the primary offering. */
2089
+ export interface IUpdateInvestor {
2090
+ id: string;
2091
+ /** Represents the unique ID provided by a Partner, used to identify an Investor. */
2092
+ investorReferenceId: string;
2093
+ /** The qualification status of an Investor. */
2094
+ qualificationStatus?: UpdateInvestorQualificationStatus | undefined;
2095
+ /** Information about the individual investor if this Investor is of that type. */
2096
+ individualInvestor?: UpdateIndividualInvestor | undefined;
2097
+ }
2098
+ export declare class UpdateInvestorAccreditation implements IUpdateInvestorAccreditation {
2099
+ investorId: string;
2100
+ /** Accreditation status. */
2101
+ accreditationStatus?: UpdateInvestorAccreditationAccreditationStatus;
2102
+ constructor(data?: IUpdateInvestorAccreditation);
2103
+ init(_data?: any): void;
2104
+ static fromJS(data: any): UpdateInvestorAccreditation;
2105
+ toJSON(data?: any): any;
2106
+ }
2107
+ export interface IUpdateInvestorAccreditation {
2108
+ investorId: string;
2109
+ /** Accreditation status. */
2110
+ accreditationStatus?: UpdateInvestorAccreditationAccreditationStatus;
2111
+ }
2112
+ export declare class UpdateWebhook implements IUpdateWebhook {
2113
+ /** Unique ID associated with a Webhook. */
2114
+ id: string;
2115
+ /** The delivery url for the Webhook. */
2116
+ url: string;
2117
+ /** Token value used to create a signature on webhook delivery. */
2118
+ token: string;
2119
+ /** Flag to dictate if the webhook should be sent events. */
2120
+ isActive?: boolean;
2121
+ constructor(data?: IUpdateWebhook);
2122
+ init(_data?: any): void;
2123
+ static fromJS(data: any): UpdateWebhook;
2124
+ toJSON(data?: any): any;
2125
+ }
2126
+ export interface IUpdateWebhook {
2127
+ /** Unique ID associated with a Webhook. */
2128
+ id: string;
2129
+ /** The delivery url for the Webhook. */
2130
+ url: string;
2131
+ /** Token value used to create a signature on webhook delivery. */
2132
+ token: string;
2133
+ /** Flag to dictate if the webhook should be sent events. */
2134
+ isActive?: boolean;
2135
+ }
2136
+ export declare class Webhook implements IWebhook {
2137
+ /** Unique ID associated with a Webhook. */
2138
+ id?: string;
2139
+ /** ID of the Partner associated with an Investor. */
2140
+ partnerId?: string;
2141
+ /** The delivery url for the webhook. */
2142
+ url?: string | undefined;
2143
+ /** Flag to dictate if the webhook should be sent events. */
2144
+ isActive?: boolean;
2145
+ /** Token value used to create a signature on webhook delivery. */
2146
+ token?: string | undefined;
2147
+ /** Created at the specified date. */
2148
+ createdAt?: Date;
2149
+ /** Updated at the specified date. */
2150
+ updatedAt?: Date;
2151
+ constructor(data?: IWebhook);
2152
+ init(_data?: any): void;
2153
+ static fromJS(data: any): Webhook;
2154
+ toJSON(data?: any): any;
2155
+ }
2156
+ export interface IWebhook {
2157
+ /** Unique ID associated with a Webhook. */
2158
+ id?: string;
2159
+ /** ID of the Partner associated with an Investor. */
2160
+ partnerId?: string;
2161
+ /** The delivery url for the webhook. */
2162
+ url?: string | undefined;
2163
+ /** Flag to dictate if the webhook should be sent events. */
2164
+ isActive?: boolean;
2165
+ /** Token value used to create a signature on webhook delivery. */
2166
+ token?: string | undefined;
2167
+ /** Created at the specified date. */
2168
+ createdAt?: Date;
2169
+ /** Updated at the specified date. */
2170
+ updatedAt?: Date;
2171
+ }
2172
+ export declare class WebhookApiResponse implements IWebhookApiResponse {
2173
+ items?: Webhook[] | undefined;
2174
+ pagination?: Pagination | undefined;
2175
+ constructor(data?: IWebhookApiResponse);
2176
+ init(_data?: any): void;
2177
+ static fromJS(data: any): WebhookApiResponse;
2178
+ toJSON(data?: any): any;
2179
+ }
2180
+ export interface IWebhookApiResponse {
2181
+ items?: Webhook[] | undefined;
2182
+ pagination?: Pagination | undefined;
2183
+ }
2184
+ export declare class WebhookEvent implements IWebhookEvent {
2185
+ /** Unique ID associated with a WebhookEvent. */
2186
+ id?: string;
2187
+ /** Created at the specified date. */
2188
+ webhookId?: string;
2189
+ /** Created at the specified date. */
2190
+ deliveryStatus?: WebhookEventDeliveryStatus;
2191
+ /** The type of webhook event. */
2192
+ eventType?: WebhookEventEventType;
2193
+ /** The Webhook Event data. */
2194
+ data?: string | undefined;
2195
+ /** Created at the specified date. */
2196
+ createdAt?: Date;
2197
+ /** Delivered at the specified date. */
2198
+ deliveredAt?: Date | undefined;
2199
+ constructor(data?: IWebhookEvent);
2200
+ init(_data?: any): void;
2201
+ static fromJS(data: any): WebhookEvent;
2202
+ toJSON(data?: any): any;
2203
+ }
2204
+ export interface IWebhookEvent {
2205
+ /** Unique ID associated with a WebhookEvent. */
2206
+ id?: string;
2207
+ /** Created at the specified date. */
2208
+ webhookId?: string;
2209
+ /** Created at the specified date. */
2210
+ deliveryStatus?: WebhookEventDeliveryStatus;
2211
+ /** The type of webhook event. */
2212
+ eventType?: WebhookEventEventType;
2213
+ /** The Webhook Event data. */
2214
+ data?: string | undefined;
2215
+ /** Created at the specified date. */
2216
+ createdAt?: Date;
2217
+ /** Delivered at the specified date. */
2218
+ deliveredAt?: Date | undefined;
2219
+ }
2220
+ export declare class WebhookEventApiResponse implements IWebhookEventApiResponse {
2221
+ items?: WebhookEvent[] | undefined;
2222
+ pagination?: Pagination | undefined;
2223
+ constructor(data?: IWebhookEventApiResponse);
2224
+ init(_data?: any): void;
2225
+ static fromJS(data: any): WebhookEventApiResponse;
2226
+ toJSON(data?: any): any;
2227
+ }
2228
+ export interface IWebhookEventApiResponse {
2229
+ items?: WebhookEvent[] | undefined;
2230
+ pagination?: Pagination | undefined;
2231
+ }
2232
+ export declare enum DocumentType {
2233
+ BUSINESS_FORMATION = "BUSINESS_FORMATION",
2234
+ BANK_STATEMENT = "BANK_STATEMENT",
2235
+ CAPITAL_ACCT_STATEMENT = "CAPITAL_ACCT_STATEMENT",
2236
+ CAPITAL_CALL_NOTICE = "CAPITAL_CALL_NOTICE",
2237
+ CARRY_SPLIT_AGREEMENT = "CARRY_SPLIT_AGREEMENT",
2238
+ CERTIFICATE_OF_FORMATION = "CERTIFICATE_OF_FORMATION",
2239
+ COMMITMENT_AGREEMENT = "COMMITMENT_AGREEMENT",
2240
+ COMPLIANCE = "COMPLIANCE",
2241
+ DRIVER_LICENSE = "DRIVER_LICENSE",
2242
+ DRAFT_INVESTMENT = "DRAFT_INVESTMENT",
2243
+ EIN_FORMATION = "EIN_FORMATION",
2244
+ FINAL_INVESTMENT = "FINAL_INVESTMENT",
2245
+ FINANCIAL_STATEMENT = "FINANCIAL_STATEMENT",
2246
+ INVESTOR_WIRE_INSTRUCTIONS = "INVESTOR_WIRE_INSTRUCTIONS",
2247
+ INVOICE = "INVOICE",
2248
+ K1 = "K1",
2249
+ LOCAL_OR_TRIBE_ID = "LOCAL_OR_TRIBE_ID",
2250
+ MASTER_AGREEMENT = "MASTER_AGREEMENT",
2251
+ MSA = "MSA",
2252
+ OTHER = "OTHER",
2253
+ PASSPORT = "PASSPORT",
2254
+ PASSPORT_FOREIGN = "PASSPORT_FOREIGN",
2255
+ PASSPORT_US = "PASSPORT_US",
2256
+ PITCH_DECK = "PITCH_DECK",
2257
+ POST_CLOSING_DOCUMENTS = "POST_CLOSING_DOCUMENTS",
2258
+ PROOF_OF_SOURCE_OF_FUNDS = "PROOF_OF_SOURCE_OF_FUNDS",
2259
+ PX_FILE = "PX_FILE",
2260
+ SCFUND_AGREEMENT = "SCFUND_AGREEMENT",
2261
+ SERIES_AGREEMENT = "SERIES_AGREEMENT",
2262
+ SIDE_LETTER = "SIDE_LETTER",
2263
+ SIGNABLE_AGREEMENT = "SIGNABLE_AGREEMENT",
2264
+ SOW = "SOW",
2265
+ STATEID = "STATEID",
2266
+ SUBSCRIPTION_AGREEMENT = "SUBSCRIPTION_AGREEMENT",
2267
+ SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED = "SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED",
2268
+ SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM = "SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM",
2269
+ TARGET_CAPTABLE = "TARGET_CAPTABLE",
2270
+ TERM_SHEET = "TERM_SHEET",
2271
+ TRANSFER_CONSENT_FORM = "TRANSFER_CONSENT_FORM",
2272
+ TRANSFER_OF_INTEREST_AGREEMENT = "TRANSFER_OF_INTEREST_AGREEMENT",
2273
+ W8 = "W8",
2274
+ W8_BEN = "W8_BEN",
2275
+ W8_BENE = "W8_BENE",
2276
+ W9 = "W9",
2277
+ LayeredSPVInvestmentDeck_Monark = "LayeredSPVInvestmentDeck_Monark",
2278
+ InvestmentMemo_Monark = "InvestmentMemo_Monark",
2279
+ DealMemo_Monark = "DealMemo_Monark",
2280
+ RiskFactors_Monark = "RiskFactors_Monark",
2281
+ PrivatePlacementMemorandum_Monark = "PrivatePlacementMemorandum_Monark",
2282
+ InvestorLogo_Monark = "InvestorLogo_Monark"
2283
+ }
2284
+ export declare enum SortOrder {
2285
+ Ascending = "Ascending",
2286
+ Descending = "Descending"
2287
+ }
2288
+ export declare enum SortOrder2 {
2289
+ Ascending = "Ascending",
2290
+ Descending = "Descending"
2291
+ }
2292
+ export declare enum SortOrder3 {
2293
+ Ascending = "Ascending",
2294
+ Descending = "Descending"
2295
+ }
2296
+ export declare enum SortOrder4 {
2297
+ Ascending = "Ascending",
2298
+ Descending = "Descending"
2299
+ }
2300
+ export declare enum SortOrder5 {
2301
+ Ascending = "Ascending",
2302
+ Descending = "Descending"
2303
+ }
2304
+ export declare enum SortOrder6 {
2305
+ Ascending = "Ascending",
2306
+ Descending = "Descending"
2307
+ }
2308
+ export declare enum SortOrder7 {
2309
+ Ascending = "Ascending",
2310
+ Descending = "Descending"
2311
+ }
2312
+ export declare enum SortOrder8 {
2313
+ Ascending = "Ascending",
2314
+ Descending = "Descending"
2315
+ }
2316
+ export declare enum MonarkStage {
2317
+ DRAFT = "DRAFT",
2318
+ WAITING_MONARK_REVIEW = "WAITING_MONARK_REVIEW",
2319
+ FUND_ADMIN_REVIEW = "FUND_ADMIN_REVIEW",
2320
+ FUND_ADMIN_APPROVED = "FUND_ADMIN_APPROVED",
2321
+ PRIMARY_FUNDRAISE = "PRIMARY_FUNDRAISE",
2322
+ MONARK_DILIGENCE = "MONARK_DILIGENCE",
2323
+ CLOSE_REQUESTED = "CLOSE_REQUESTED",
2324
+ CLOSE_IN_PROCESS = "CLOSE_IN_PROCESS",
2325
+ FUNDS_SENT_TO_TARGET = "FUNDS_SENT_TO_TARGET",
2326
+ CLOSED = "CLOSED",
2327
+ REGULATORY_HOLD_PERIOD = "REGULATORY_HOLD_PERIOD",
2328
+ ACTIVELY_TRADING = "ACTIVELY_TRADING",
2329
+ CLOSE_FAILED = "CLOSE_FAILED",
2330
+ HALTED = "HALTED",
2331
+ LIQUIDATION = "LIQUIDATION",
2332
+ DISSOLVED = "DISSOLVED"
2333
+ }
2334
+ export declare enum SortOrder9 {
2335
+ Ascending = "Ascending",
2336
+ Descending = "Descending"
2337
+ }
2338
+ export declare enum SortOrder10 {
2339
+ Ascending = "Ascending",
2340
+ Descending = "Descending"
2341
+ }
2342
+ export declare enum SortOrder11 {
2343
+ Ascending = "Ascending",
2344
+ Descending = "Descending"
2345
+ }
2346
+ export declare enum SortOrder12 {
2347
+ Ascending = "Ascending",
2348
+ Descending = "Descending"
2349
+ }
2350
+ export declare enum EventType {
2351
+ PreIPOCompany = "PreIPOCompany",
2352
+ PreIPOCompanyInvestment = "PreIPOCompanyInvestment",
2353
+ PreIPOCompanySPV = "PreIPOCompanySPV",
2354
+ Investor = "Investor",
2355
+ Document = "Document",
2356
+ InvestorSubscriptionAction = "InvestorSubscriptionAction",
2357
+ SubscriptionStatus = "SubscriptionStatus"
2358
+ }
2359
+ export declare enum DeliveryStatus {
2360
+ Pending = "Pending",
2361
+ Delivered = "Delivered",
2362
+ Failed = "Failed"
2363
+ }
2364
+ export declare enum DocumentType2 {
2365
+ BUSINESS_FORMATION = "BUSINESS_FORMATION",
2366
+ BANK_STATEMENT = "BANK_STATEMENT",
2367
+ CAPITAL_ACCT_STATEMENT = "CAPITAL_ACCT_STATEMENT",
2368
+ CAPITAL_CALL_NOTICE = "CAPITAL_CALL_NOTICE",
2369
+ CARRY_SPLIT_AGREEMENT = "CARRY_SPLIT_AGREEMENT",
2370
+ CERTIFICATE_OF_FORMATION = "CERTIFICATE_OF_FORMATION",
2371
+ COMMITMENT_AGREEMENT = "COMMITMENT_AGREEMENT",
2372
+ COMPLIANCE = "COMPLIANCE",
2373
+ DRIVER_LICENSE = "DRIVER_LICENSE",
2374
+ DRAFT_INVESTMENT = "DRAFT_INVESTMENT",
2375
+ EIN_FORMATION = "EIN_FORMATION",
2376
+ FINAL_INVESTMENT = "FINAL_INVESTMENT",
2377
+ FINANCIAL_STATEMENT = "FINANCIAL_STATEMENT",
2378
+ INVESTOR_WIRE_INSTRUCTIONS = "INVESTOR_WIRE_INSTRUCTIONS",
2379
+ INVOICE = "INVOICE",
2380
+ K1 = "K1",
2381
+ LOCAL_OR_TRIBE_ID = "LOCAL_OR_TRIBE_ID",
2382
+ MASTER_AGREEMENT = "MASTER_AGREEMENT",
2383
+ MSA = "MSA",
2384
+ OTHER = "OTHER",
2385
+ PASSPORT = "PASSPORT",
2386
+ PASSPORT_FOREIGN = "PASSPORT_FOREIGN",
2387
+ PASSPORT_US = "PASSPORT_US",
2388
+ PITCH_DECK = "PITCH_DECK",
2389
+ POST_CLOSING_DOCUMENTS = "POST_CLOSING_DOCUMENTS",
2390
+ PROOF_OF_SOURCE_OF_FUNDS = "PROOF_OF_SOURCE_OF_FUNDS",
2391
+ PX_FILE = "PX_FILE",
2392
+ SCFUND_AGREEMENT = "SCFUND_AGREEMENT",
2393
+ SERIES_AGREEMENT = "SERIES_AGREEMENT",
2394
+ SIDE_LETTER = "SIDE_LETTER",
2395
+ SIGNABLE_AGREEMENT = "SIGNABLE_AGREEMENT",
2396
+ SOW = "SOW",
2397
+ STATEID = "STATEID",
2398
+ SUBSCRIPTION_AGREEMENT = "SUBSCRIPTION_AGREEMENT",
2399
+ SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED = "SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED",
2400
+ SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM = "SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM",
2401
+ TARGET_CAPTABLE = "TARGET_CAPTABLE",
2402
+ TERM_SHEET = "TERM_SHEET",
2403
+ TRANSFER_CONSENT_FORM = "TRANSFER_CONSENT_FORM",
2404
+ TRANSFER_OF_INTEREST_AGREEMENT = "TRANSFER_OF_INTEREST_AGREEMENT",
2405
+ W8 = "W8",
2406
+ W8_BEN = "W8_BEN",
2407
+ W8_BENE = "W8_BENE",
2408
+ W9 = "W9",
2409
+ LayeredSPVInvestmentDeck_Monark = "LayeredSPVInvestmentDeck_Monark",
2410
+ InvestmentMemo_Monark = "InvestmentMemo_Monark",
2411
+ DealMemo_Monark = "DealMemo_Monark",
2412
+ RiskFactors_Monark = "RiskFactors_Monark",
2413
+ PrivatePlacementMemorandum_Monark = "PrivatePlacementMemorandum_Monark",
2414
+ InvestorLogo_Monark = "InvestorLogo_Monark"
2415
+ }
2416
+ export declare enum DocumentShallowType {
2417
+ BUSINESS_FORMATION = "BUSINESS_FORMATION",
2418
+ BANK_STATEMENT = "BANK_STATEMENT",
2419
+ CAPITAL_ACCT_STATEMENT = "CAPITAL_ACCT_STATEMENT",
2420
+ CAPITAL_CALL_NOTICE = "CAPITAL_CALL_NOTICE",
2421
+ CARRY_SPLIT_AGREEMENT = "CARRY_SPLIT_AGREEMENT",
2422
+ CERTIFICATE_OF_FORMATION = "CERTIFICATE_OF_FORMATION",
2423
+ COMMITMENT_AGREEMENT = "COMMITMENT_AGREEMENT",
2424
+ COMPLIANCE = "COMPLIANCE",
2425
+ DRIVER_LICENSE = "DRIVER_LICENSE",
2426
+ DRAFT_INVESTMENT = "DRAFT_INVESTMENT",
2427
+ EIN_FORMATION = "EIN_FORMATION",
2428
+ FINAL_INVESTMENT = "FINAL_INVESTMENT",
2429
+ FINANCIAL_STATEMENT = "FINANCIAL_STATEMENT",
2430
+ INVESTOR_WIRE_INSTRUCTIONS = "INVESTOR_WIRE_INSTRUCTIONS",
2431
+ INVOICE = "INVOICE",
2432
+ K1 = "K1",
2433
+ LOCAL_OR_TRIBE_ID = "LOCAL_OR_TRIBE_ID",
2434
+ MASTER_AGREEMENT = "MASTER_AGREEMENT",
2435
+ MSA = "MSA",
2436
+ OTHER = "OTHER",
2437
+ PASSPORT = "PASSPORT",
2438
+ PASSPORT_FOREIGN = "PASSPORT_FOREIGN",
2439
+ PASSPORT_US = "PASSPORT_US",
2440
+ PITCH_DECK = "PITCH_DECK",
2441
+ POST_CLOSING_DOCUMENTS = "POST_CLOSING_DOCUMENTS",
2442
+ PROOF_OF_SOURCE_OF_FUNDS = "PROOF_OF_SOURCE_OF_FUNDS",
2443
+ PX_FILE = "PX_FILE",
2444
+ SCFUND_AGREEMENT = "SCFUND_AGREEMENT",
2445
+ SERIES_AGREEMENT = "SERIES_AGREEMENT",
2446
+ SIDE_LETTER = "SIDE_LETTER",
2447
+ SIGNABLE_AGREEMENT = "SIGNABLE_AGREEMENT",
2448
+ SOW = "SOW",
2449
+ STATEID = "STATEID",
2450
+ SUBSCRIPTION_AGREEMENT = "SUBSCRIPTION_AGREEMENT",
2451
+ SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED = "SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED",
2452
+ SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM = "SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM",
2453
+ TARGET_CAPTABLE = "TARGET_CAPTABLE",
2454
+ TERM_SHEET = "TERM_SHEET",
2455
+ TRANSFER_CONSENT_FORM = "TRANSFER_CONSENT_FORM",
2456
+ TRANSFER_OF_INTEREST_AGREEMENT = "TRANSFER_OF_INTEREST_AGREEMENT",
2457
+ W8 = "W8",
2458
+ W8_BEN = "W8_BEN",
2459
+ W8_BENE = "W8_BENE",
2460
+ W9 = "W9",
2461
+ LayeredSPVInvestmentDeck_Monark = "LayeredSPVInvestmentDeck_Monark",
2462
+ InvestmentMemo_Monark = "InvestmentMemo_Monark",
2463
+ DealMemo_Monark = "DealMemo_Monark",
2464
+ RiskFactors_Monark = "RiskFactors_Monark",
2465
+ PrivatePlacementMemorandum_Monark = "PrivatePlacementMemorandum_Monark",
2466
+ InvestorLogo_Monark = "InvestorLogo_Monark"
2467
+ }
2468
+ export declare enum FinancialInstitutionType {
2469
+ IntroducingBrokerDealer = "IntroducingBrokerDealer",
2470
+ SelfClearingBrokerDealer = "SelfClearingBrokerDealer",
2471
+ ForeignFinancialInstitution = "ForeignFinancialInstitution",
2472
+ RegisteredInvestmentAdvisor = "RegisteredInvestmentAdvisor",
2473
+ ExemptReportingAdvisor = "ExemptReportingAdvisor"
2474
+ }
2475
+ export declare enum InvestorStatus {
2476
+ Pending = "Pending",
2477
+ Limited = "Limited",
2478
+ Active = "Active",
2479
+ Inactive = "Inactive"
2480
+ }
2481
+ export declare enum InvestorAccreditationStatus {
2482
+ NET_WORTH_GT_1M = "NET_WORTH_GT_1M",
2483
+ INDIVIDUAL_INCOME_GT_200K = "INDIVIDUAL_INCOME_GT_200K",
2484
+ JOINT_INCOME_GT_300K = "JOINT_INCOME_GT_300K",
2485
+ PROFESSION_DESIGNATION = "PROFESSION_DESIGNATION",
2486
+ TRUST_GT_5M = "TRUST_GT_5M",
2487
+ GRANTORS_ACCREDITED = "GRANTORS_ACCREDITED",
2488
+ EQUITY_OWNERS_ACCREDITED = "EQUITY_OWNERS_ACCREDITED",
2489
+ TOTAL_ASSETS_GT_5M = "TOTAL_ASSETS_GT_5M",
2490
+ INVESTMENT_COMPANY = "INVESTMENT_COMPANY",
2491
+ SEC_OR_EXEMPT_ADVISOR = "SEC_OR_EXEMPT_ADVISOR",
2492
+ KNOWLEDGEABLE_EMPLOYEE = "KNOWLEDGEABLE_EMPLOYEE",
2493
+ KNOWLEDGEABLE_EXECUTIVE = "KNOWLEDGEABLE_EXECUTIVE",
2494
+ FAMILY_OFFICE_GT_5M = "FAMILY_OFFICE_GT_5M"
2495
+ }
2496
+ export declare enum InvestorKycStatus {
2497
+ Pending = "Pending",
2498
+ Rejected = "Rejected",
2499
+ Passed = "Passed"
2500
+ }
2501
+ export declare enum InvestorQualificationStatus {
2502
+ QUALIFIED_PURCHASER = "QUALIFIED_PURCHASER",
2503
+ QUALIFIED_CLIENT = "QUALIFIED_CLIENT"
2504
+ }
2505
+ export declare enum InvestorSubscriptionStatus {
2506
+ Pending = "Pending",
2507
+ Processing = "Processing",
2508
+ Complete = "Complete",
2509
+ Rejected = "Rejected"
2510
+ }
2511
+ export declare enum InvestorSubscriptionActionStatus {
2512
+ Pending = "Pending",
2513
+ Complete = "Complete"
2514
+ }
2515
+ export declare enum InvestorSubscriptionActionType {
2516
+ Other = "Other",
2517
+ DocumentSign = "DocumentSign",
2518
+ DocumentAcknowledge = "DocumentAcknowledge",
2519
+ CashMovement = "CashMovement",
2520
+ ApiCall = "ApiCall",
2521
+ KYCAML = "KYCAML"
2522
+ }
2523
+ export declare enum InvestorSubscriptionActionResponsibleParty {
2524
+ Partner = "Partner",
2525
+ Monark = "Monark"
2526
+ }
2527
+ export declare enum LayeredSPVFundStructure {
2528
+ ThreeCOne = "ThreeCOne",
2529
+ ThreeCSeven = "ThreeCSeven"
2530
+ }
2531
+ export declare enum PartnerType {
2532
+ BrokerageFirm = "BrokerageFirm"
2533
+ }
2534
+ export declare enum PreIPOCompanyType {
2535
+ SOLE_PROPRIETOR = "SOLE_PROPRIETOR",
2536
+ SINGLE_MEMBER_LLC = "SINGLE_MEMBER_LLC",
2537
+ LLC = "LLC",
2538
+ PARTNERSHIP = "PARTNERSHIP",
2539
+ C_CORPORATION = "C_CORPORATION",
2540
+ S_CORPORATION = "S_CORPORATION",
2541
+ TRUST = "TRUST",
2542
+ IRA_OR_TAX_EXEMPT = "IRA_OR_TAX_EXEMPT",
2543
+ NON_US_CORPORATION = "NON_US_CORPORATION",
2544
+ PRIVATE_LIMITED_COMPANY = "PRIVATE_LIMITED_COMPANY",
2545
+ PUBLIC_LIMITED_COMPANY = "PUBLIC_LIMITED_COMPANY",
2546
+ TAX_EXEMPT_ENTITY = "TAX_EXEMPT_ENTITY",
2547
+ FOREIGN_TRUST = "FOREIGN_TRUST",
2548
+ OTHER = "OTHER"
2549
+ }
2550
+ export declare enum PreIPOCompanyInvestmentTransactionType {
2551
+ Primary = "Primary",
2552
+ Secondary = "Secondary",
2553
+ TenderOffer = "TenderOffer"
2554
+ }
2555
+ export declare enum PreIPOCompanyResearchType {
2556
+ INTERVIEW = "INTERVIEW",
2557
+ MARKET = "MARKET",
2558
+ COMPANY = "COMPANY"
2559
+ }
2560
+ export declare enum PreIPOCompanyResearchRelation {
2561
+ SUBJECT = "SUBJECT",
2562
+ CONNECTED = "CONNECTED"
2563
+ }
2564
+ export declare enum ExemptionsClaimed {
2565
+ RULE_504_B_1_not_i_ii_iii = "RULE_504_B_1_not_i_ii_iii",
2566
+ RULE_504_B_1_i = "RULE_504_B_1_i",
2567
+ RULE_504_B_1_ii = "RULE_504_B_1_ii",
2568
+ RULE_504_B_1_iii = "RULE_504_B_1_iii",
2569
+ RULE_506_b = "RULE_506_b",
2570
+ RULE_506_c = "RULE_506_c",
2571
+ SECURITIES_ACT_SECTION_4_a_5 = "SECURITIES_ACT_SECTION_4_a_5",
2572
+ SECURITIES_ACT_SECTION_3_c_1 = "SECURITIES_ACT_SECTION_3_c_1",
2573
+ SECURITIES_ACT_SECTION_3_c_2 = "SECURITIES_ACT_SECTION_3_c_2",
2574
+ SECURITIES_ACT_SECTION_3_c_3 = "SECURITIES_ACT_SECTION_3_c_3",
2575
+ SECURITIES_ACT_SECTION_3_c_4 = "SECURITIES_ACT_SECTION_3_c_4",
2576
+ SECURITIES_ACT_SECTION_3_c_5 = "SECURITIES_ACT_SECTION_3_c_5",
2577
+ SECURITIES_ACT_SECTION_3_c_6 = "SECURITIES_ACT_SECTION_3_c_6",
2578
+ SECURITIES_ACT_SECTION_3_c_7 = "SECURITIES_ACT_SECTION_3_c_7",
2579
+ SECURITIES_ACT_SECTION_3_c_9 = "SECURITIES_ACT_SECTION_3_c_9",
2580
+ SECURITIES_ACT_SECTION_3_c_10 = "SECURITIES_ACT_SECTION_3_c_10",
2581
+ SECURITIES_ACT_SECTION_3_c_11 = "SECURITIES_ACT_SECTION_3_c_11",
2582
+ SECURITIES_ACT_SECTION_3_c_12 = "SECURITIES_ACT_SECTION_3_c_12",
2583
+ SECURITIES_ACT_SECTION_3_c_13 = "SECURITIES_ACT_SECTION_3_c_13",
2584
+ SECURITIES_ACT_SECTION_3_c_14 = "SECURITIES_ACT_SECTION_3_c_14"
2585
+ }
2586
+ export declare enum QuestionnaireQuestionStatus {
2587
+ DISABLED = "DISABLED",
2588
+ ACTIVE = "ACTIVE"
2589
+ }
2590
+ export declare enum QuestionnaireQuestionFormat {
2591
+ Integer = "Integer",
2592
+ Float = "Float",
2593
+ Percentage = "Percentage",
2594
+ MultipleChoiceSingle = "MultipleChoiceSingle",
2595
+ MultipleChoiceMultiple = "MultipleChoiceMultiple",
2596
+ Boolean = "Boolean",
2597
+ Date = "Date",
2598
+ Text = "Text",
2599
+ Email = "Email",
2600
+ Scale = "Scale"
2601
+ }
2602
+ export declare enum QuestionnaireQuestionAnswerQuestionFormat {
2603
+ Integer = "Integer",
2604
+ Float = "Float",
2605
+ Percentage = "Percentage",
2606
+ MultipleChoiceSingle = "MultipleChoiceSingle",
2607
+ MultipleChoiceMultiple = "MultipleChoiceMultiple",
2608
+ Boolean = "Boolean",
2609
+ Date = "Date",
2610
+ Text = "Text",
2611
+ Email = "Email",
2612
+ Scale = "Scale"
2613
+ }
2614
+ export declare enum UpdateInvestorQualificationStatus {
2615
+ QUALIFIED_PURCHASER = "QUALIFIED_PURCHASER",
2616
+ QUALIFIED_CLIENT = "QUALIFIED_CLIENT"
2617
+ }
2618
+ export declare enum UpdateInvestorAccreditationAccreditationStatus {
2619
+ NET_WORTH_GT_1M = "NET_WORTH_GT_1M",
2620
+ INDIVIDUAL_INCOME_GT_200K = "INDIVIDUAL_INCOME_GT_200K",
2621
+ JOINT_INCOME_GT_300K = "JOINT_INCOME_GT_300K",
2622
+ PROFESSION_DESIGNATION = "PROFESSION_DESIGNATION",
2623
+ TRUST_GT_5M = "TRUST_GT_5M",
2624
+ GRANTORS_ACCREDITED = "GRANTORS_ACCREDITED",
2625
+ EQUITY_OWNERS_ACCREDITED = "EQUITY_OWNERS_ACCREDITED",
2626
+ TOTAL_ASSETS_GT_5M = "TOTAL_ASSETS_GT_5M",
2627
+ INVESTMENT_COMPANY = "INVESTMENT_COMPANY",
2628
+ SEC_OR_EXEMPT_ADVISOR = "SEC_OR_EXEMPT_ADVISOR",
2629
+ KNOWLEDGEABLE_EMPLOYEE = "KNOWLEDGEABLE_EMPLOYEE",
2630
+ KNOWLEDGEABLE_EXECUTIVE = "KNOWLEDGEABLE_EXECUTIVE",
2631
+ FAMILY_OFFICE_GT_5M = "FAMILY_OFFICE_GT_5M"
2632
+ }
2633
+ export declare enum WebhookEventDeliveryStatus {
2634
+ Pending = "Pending",
2635
+ Delivered = "Delivered",
2636
+ Failed = "Failed"
2637
+ }
2638
+ export declare enum WebhookEventEventType {
2639
+ PreIPOCompany = "PreIPOCompany",
2640
+ PreIPOCompanyInvestment = "PreIPOCompanyInvestment",
2641
+ PreIPOCompanySPV = "PreIPOCompanySPV",
2642
+ Investor = "Investor",
2643
+ Document = "Document",
2644
+ InvestorSubscriptionAction = "InvestorSubscriptionAction",
2645
+ SubscriptionStatus = "SubscriptionStatus"
2646
+ }
2647
+ export declare class ApiException extends Error {
2648
+ message: string;
2649
+ status: number;
2650
+ response: string;
2651
+ headers: {
2652
+ [key: string]: any;
2653
+ };
2654
+ result: any;
2655
+ constructor(message: string, status: number, response: string, headers: {
2656
+ [key: string]: any;
2657
+ }, result: any);
2658
+ protected isApiException: boolean;
2659
+ static isApiException(obj: any): obj is ApiException;
2660
+ }