@monarkmarkets/api-client 1.3.13 → 1.3.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Client.d.ts +290 -51
- package/dist/Client.js +598 -129
- package/package.json +1 -1
package/dist/Client.js
CHANGED
|
@@ -327,6 +327,261 @@ export class Client {
|
|
|
327
327
|
}
|
|
328
328
|
return Promise.resolve(null);
|
|
329
329
|
}
|
|
330
|
+
/**
|
|
331
|
+
* Get a Document by ID.
|
|
332
|
+
* @param id The Document ID for the document to retrieve.
|
|
333
|
+
* @return OK
|
|
334
|
+
*/
|
|
335
|
+
getDocumentByIdV2(id) {
|
|
336
|
+
let url_ = this.baseUrl + "/primary/v2/document/{id}";
|
|
337
|
+
if (id === undefined || id === null)
|
|
338
|
+
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
339
|
+
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
340
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
341
|
+
let options_ = {
|
|
342
|
+
method: "GET",
|
|
343
|
+
headers: {
|
|
344
|
+
"Accept": "application/json"
|
|
345
|
+
}
|
|
346
|
+
};
|
|
347
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
348
|
+
return this.processGetDocumentByIdV2(_response);
|
|
349
|
+
});
|
|
350
|
+
}
|
|
351
|
+
processGetDocumentByIdV2(response) {
|
|
352
|
+
const status = response.status;
|
|
353
|
+
let _headers = {};
|
|
354
|
+
if (response.headers && response.headers.forEach) {
|
|
355
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
356
|
+
}
|
|
357
|
+
;
|
|
358
|
+
if (status === 200) {
|
|
359
|
+
return response.text().then((_responseText) => {
|
|
360
|
+
let result200 = null;
|
|
361
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
362
|
+
result200 = DocumentV2.fromJS(resultData200);
|
|
363
|
+
return result200;
|
|
364
|
+
});
|
|
365
|
+
}
|
|
366
|
+
else if (status === 404) {
|
|
367
|
+
return response.text().then((_responseText) => {
|
|
368
|
+
let result404 = null;
|
|
369
|
+
let resultData404 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
370
|
+
result404 = ProblemDetails.fromJS(resultData404);
|
|
371
|
+
return throwException("Not Found", status, _responseText, _headers, result404);
|
|
372
|
+
});
|
|
373
|
+
}
|
|
374
|
+
else if (status !== 200 && status !== 204) {
|
|
375
|
+
return response.text().then((_responseText) => {
|
|
376
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
377
|
+
});
|
|
378
|
+
}
|
|
379
|
+
return Promise.resolve(null);
|
|
380
|
+
}
|
|
381
|
+
/**
|
|
382
|
+
* Get all Documents.
|
|
383
|
+
* @param investorId (optional) Investor ID to filter by.
|
|
384
|
+
* @param preIPOCompanyId (optional) PreIPOCompanyID to filter by.
|
|
385
|
+
* @param preIPOCompanySPVId (optional) TargetId to filter by.
|
|
386
|
+
* @param preIPOCompanyInvestmentId (optional) PreIPOCompanyInvestmentId to filter by.
|
|
387
|
+
* @param transactionId (optional) TransactionId to filter by (InvestorSubscription or RegisteredFundSubscription).
|
|
388
|
+
* @param registeredFundId (optional) RegisteredFundId to filter by.
|
|
389
|
+
* @param documentType (optional) Type of document to filter by.
|
|
390
|
+
* @param page (optional) Number of the page to retrieve.
|
|
391
|
+
Defaults to 1 if not specified.
|
|
392
|
+
* @param pageSize (optional) Size of the page to retrieve.
|
|
393
|
+
Defaults to 25 if not specified.
|
|
394
|
+
* @param exactMatch (optional) Only returns the items exactly matching the parameters given.
|
|
395
|
+
* @param sortOrder (optional) Sort order for results.
|
|
396
|
+
* @return OK
|
|
397
|
+
*/
|
|
398
|
+
getAllDocumentsV2(investorId, preIPOCompanyId, preIPOCompanySPVId, preIPOCompanyInvestmentId, transactionId, registeredFundId, documentType, page, pageSize, exactMatch, sortOrder) {
|
|
399
|
+
let url_ = this.baseUrl + "/primary/v2/document?";
|
|
400
|
+
if (investorId === null)
|
|
401
|
+
throw new globalThis.Error("The parameter 'investorId' cannot be null.");
|
|
402
|
+
else if (investorId !== undefined)
|
|
403
|
+
url_ += "investorId=" + encodeURIComponent("" + investorId) + "&";
|
|
404
|
+
if (preIPOCompanyId === null)
|
|
405
|
+
throw new globalThis.Error("The parameter 'preIPOCompanyId' cannot be null.");
|
|
406
|
+
else if (preIPOCompanyId !== undefined)
|
|
407
|
+
url_ += "preIPOCompanyId=" + encodeURIComponent("" + preIPOCompanyId) + "&";
|
|
408
|
+
if (preIPOCompanySPVId === null)
|
|
409
|
+
throw new globalThis.Error("The parameter 'preIPOCompanySPVId' cannot be null.");
|
|
410
|
+
else if (preIPOCompanySPVId !== undefined)
|
|
411
|
+
url_ += "preIPOCompanySPVId=" + encodeURIComponent("" + preIPOCompanySPVId) + "&";
|
|
412
|
+
if (preIPOCompanyInvestmentId === null)
|
|
413
|
+
throw new globalThis.Error("The parameter 'preIPOCompanyInvestmentId' cannot be null.");
|
|
414
|
+
else if (preIPOCompanyInvestmentId !== undefined)
|
|
415
|
+
url_ += "preIPOCompanyInvestmentId=" + encodeURIComponent("" + preIPOCompanyInvestmentId) + "&";
|
|
416
|
+
if (transactionId === null)
|
|
417
|
+
throw new globalThis.Error("The parameter 'transactionId' cannot be null.");
|
|
418
|
+
else if (transactionId !== undefined)
|
|
419
|
+
url_ += "transactionId=" + encodeURIComponent("" + transactionId) + "&";
|
|
420
|
+
if (registeredFundId === null)
|
|
421
|
+
throw new globalThis.Error("The parameter 'registeredFundId' cannot be null.");
|
|
422
|
+
else if (registeredFundId !== undefined)
|
|
423
|
+
url_ += "registeredFundId=" + encodeURIComponent("" + registeredFundId) + "&";
|
|
424
|
+
if (documentType === null)
|
|
425
|
+
throw new globalThis.Error("The parameter 'documentType' cannot be null.");
|
|
426
|
+
else if (documentType !== undefined)
|
|
427
|
+
url_ += "documentType=" + encodeURIComponent("" + documentType) + "&";
|
|
428
|
+
if (page === null)
|
|
429
|
+
throw new globalThis.Error("The parameter 'page' cannot be null.");
|
|
430
|
+
else if (page !== undefined)
|
|
431
|
+
url_ += "page=" + encodeURIComponent("" + page) + "&";
|
|
432
|
+
if (pageSize === null)
|
|
433
|
+
throw new globalThis.Error("The parameter 'pageSize' cannot be null.");
|
|
434
|
+
else if (pageSize !== undefined)
|
|
435
|
+
url_ += "pageSize=" + encodeURIComponent("" + pageSize) + "&";
|
|
436
|
+
if (exactMatch === null)
|
|
437
|
+
throw new globalThis.Error("The parameter 'exactMatch' cannot be null.");
|
|
438
|
+
else if (exactMatch !== undefined)
|
|
439
|
+
url_ += "exactMatch=" + encodeURIComponent("" + exactMatch) + "&";
|
|
440
|
+
if (sortOrder === null)
|
|
441
|
+
throw new globalThis.Error("The parameter 'sortOrder' cannot be null.");
|
|
442
|
+
else if (sortOrder !== undefined)
|
|
443
|
+
url_ += "sortOrder=" + encodeURIComponent("" + sortOrder) + "&";
|
|
444
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
445
|
+
let options_ = {
|
|
446
|
+
method: "GET",
|
|
447
|
+
headers: {
|
|
448
|
+
"Accept": "application/json"
|
|
449
|
+
}
|
|
450
|
+
};
|
|
451
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
452
|
+
return this.processGetAllDocumentsV2(_response);
|
|
453
|
+
});
|
|
454
|
+
}
|
|
455
|
+
processGetAllDocumentsV2(response) {
|
|
456
|
+
const status = response.status;
|
|
457
|
+
let _headers = {};
|
|
458
|
+
if (response.headers && response.headers.forEach) {
|
|
459
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
460
|
+
}
|
|
461
|
+
;
|
|
462
|
+
if (status === 200) {
|
|
463
|
+
return response.text().then((_responseText) => {
|
|
464
|
+
let result200 = null;
|
|
465
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
466
|
+
result200 = DocumentV2ApiResponse.fromJS(resultData200);
|
|
467
|
+
return result200;
|
|
468
|
+
});
|
|
469
|
+
}
|
|
470
|
+
else if (status !== 200 && status !== 204) {
|
|
471
|
+
return response.text().then((_responseText) => {
|
|
472
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
473
|
+
});
|
|
474
|
+
}
|
|
475
|
+
return Promise.resolve(null);
|
|
476
|
+
}
|
|
477
|
+
/**
|
|
478
|
+
* Signs a document by a document ID.
|
|
479
|
+
* @param id The Document ID for the document to sign.
|
|
480
|
+
* @param body (optional) Data about the signing.
|
|
481
|
+
* @return No Content
|
|
482
|
+
*/
|
|
483
|
+
signDocumentV2(id, body) {
|
|
484
|
+
let url_ = this.baseUrl + "/primary/v2/document/{id}/sign";
|
|
485
|
+
if (id === undefined || id === null)
|
|
486
|
+
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
487
|
+
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
488
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
489
|
+
const content_ = JSON.stringify(body);
|
|
490
|
+
let options_ = {
|
|
491
|
+
body: content_,
|
|
492
|
+
method: "POST",
|
|
493
|
+
headers: {
|
|
494
|
+
"Content-Type": "application/json",
|
|
495
|
+
}
|
|
496
|
+
};
|
|
497
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
498
|
+
return this.processSignDocumentV2(_response);
|
|
499
|
+
});
|
|
500
|
+
}
|
|
501
|
+
processSignDocumentV2(response) {
|
|
502
|
+
const status = response.status;
|
|
503
|
+
let _headers = {};
|
|
504
|
+
if (response.headers && response.headers.forEach) {
|
|
505
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
506
|
+
}
|
|
507
|
+
;
|
|
508
|
+
if (status === 204) {
|
|
509
|
+
return response.text().then((_responseText) => {
|
|
510
|
+
return;
|
|
511
|
+
});
|
|
512
|
+
}
|
|
513
|
+
else if (status === 400) {
|
|
514
|
+
return response.text().then((_responseText) => {
|
|
515
|
+
let result400 = null;
|
|
516
|
+
let resultData400 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
517
|
+
result400 = ProblemDetails.fromJS(resultData400);
|
|
518
|
+
return throwException("Bad Request", status, _responseText, _headers, result400);
|
|
519
|
+
});
|
|
520
|
+
}
|
|
521
|
+
else if (status !== 200 && status !== 204) {
|
|
522
|
+
return response.text().then((_responseText) => {
|
|
523
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
524
|
+
});
|
|
525
|
+
}
|
|
526
|
+
return Promise.resolve(null);
|
|
527
|
+
}
|
|
528
|
+
/**
|
|
529
|
+
* Downloads a document using document ID and token. The document is accessed anonymously using a secure token.
|
|
530
|
+
* @param id The Document ID for the document to download.
|
|
531
|
+
* @param token The secure token required to access the document.
|
|
532
|
+
*/
|
|
533
|
+
downloadDocumentV2(id, token) {
|
|
534
|
+
let url_ = this.baseUrl + "/primary/v2/document/{id}/download/{token}";
|
|
535
|
+
if (id === undefined || id === null)
|
|
536
|
+
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
537
|
+
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
538
|
+
if (token === undefined || token === null)
|
|
539
|
+
throw new globalThis.Error("The parameter 'token' must be defined.");
|
|
540
|
+
url_ = url_.replace("{token}", encodeURIComponent("" + token));
|
|
541
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
542
|
+
let options_ = {
|
|
543
|
+
method: "GET",
|
|
544
|
+
headers: {}
|
|
545
|
+
};
|
|
546
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
547
|
+
return this.processDownloadDocumentV2(_response);
|
|
548
|
+
});
|
|
549
|
+
}
|
|
550
|
+
processDownloadDocumentV2(response) {
|
|
551
|
+
const status = response.status;
|
|
552
|
+
let _headers = {};
|
|
553
|
+
if (response.headers && response.headers.forEach) {
|
|
554
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
555
|
+
}
|
|
556
|
+
;
|
|
557
|
+
if (status === 302) {
|
|
558
|
+
return response.text().then((_responseText) => {
|
|
559
|
+
return throwException("Found", status, _responseText, _headers);
|
|
560
|
+
});
|
|
561
|
+
}
|
|
562
|
+
else if (status === 403) {
|
|
563
|
+
return response.text().then((_responseText) => {
|
|
564
|
+
let result403 = null;
|
|
565
|
+
let resultData403 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
566
|
+
result403 = ProblemDetails.fromJS(resultData403);
|
|
567
|
+
return throwException("Forbidden", status, _responseText, _headers, result403);
|
|
568
|
+
});
|
|
569
|
+
}
|
|
570
|
+
else if (status === 404) {
|
|
571
|
+
return response.text().then((_responseText) => {
|
|
572
|
+
let result404 = null;
|
|
573
|
+
let resultData404 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
574
|
+
result404 = ProblemDetails.fromJS(resultData404);
|
|
575
|
+
return throwException("Not Found", status, _responseText, _headers, result404);
|
|
576
|
+
});
|
|
577
|
+
}
|
|
578
|
+
else if (status !== 200 && status !== 204) {
|
|
579
|
+
return response.text().then((_responseText) => {
|
|
580
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
581
|
+
});
|
|
582
|
+
}
|
|
583
|
+
return Promise.resolve(null);
|
|
584
|
+
}
|
|
330
585
|
/**
|
|
331
586
|
* Create a Financial Advisor.
|
|
332
587
|
* @param body (optional) create Financial Advisor information.
|
|
@@ -8377,7 +8632,7 @@ export class BulkPreIPOCompanySPV {
|
|
|
8377
8632
|
if (Array.isArray(_data["documents"])) {
|
|
8378
8633
|
this.documents = [];
|
|
8379
8634
|
for (let item of _data["documents"])
|
|
8380
|
-
this.documents.push(
|
|
8635
|
+
this.documents.push(DocumentV2.fromJS(item));
|
|
8381
8636
|
}
|
|
8382
8637
|
this.spvAccountID = _data["spvAccountID"];
|
|
8383
8638
|
this.preIPOCompanyName = _data["preIPOCompanyName"];
|
|
@@ -9335,8 +9590,8 @@ export class DocumentApiResponse {
|
|
|
9335
9590
|
return data;
|
|
9336
9591
|
}
|
|
9337
9592
|
}
|
|
9338
|
-
/** Represents
|
|
9339
|
-
export class
|
|
9593
|
+
/** Represents a document associated with the fund admin. */
|
|
9594
|
+
export class DocumentV2 {
|
|
9340
9595
|
constructor(data) {
|
|
9341
9596
|
if (data) {
|
|
9342
9597
|
for (var property in data) {
|
|
@@ -9348,27 +9603,114 @@ export class EntityInvestor {
|
|
|
9348
9603
|
init(_data) {
|
|
9349
9604
|
if (_data) {
|
|
9350
9605
|
this.id = _data["id"];
|
|
9351
|
-
this.
|
|
9352
|
-
this.
|
|
9353
|
-
this.
|
|
9354
|
-
this.
|
|
9355
|
-
this.
|
|
9356
|
-
this.
|
|
9357
|
-
this.
|
|
9358
|
-
this.
|
|
9359
|
-
this.
|
|
9360
|
-
this.
|
|
9361
|
-
this.
|
|
9362
|
-
this.
|
|
9363
|
-
|
|
9364
|
-
|
|
9365
|
-
|
|
9366
|
-
|
|
9367
|
-
|
|
9368
|
-
|
|
9369
|
-
|
|
9370
|
-
|
|
9371
|
-
|
|
9606
|
+
this.name = _data["name"];
|
|
9607
|
+
this.url = _data["url"];
|
|
9608
|
+
this.investorId = _data["investorId"];
|
|
9609
|
+
this.preIPOCompanyId = _data["preIPOCompanyId"];
|
|
9610
|
+
this.preIPOCompanyInvestmentId = _data["preIPOCompanyInvestmentId"];
|
|
9611
|
+
this.preIPOCompanySPVId = _data["preIPOCompanySPVId"];
|
|
9612
|
+
this.partnerId = _data["partnerId"];
|
|
9613
|
+
this.registeredFundId = _data["registeredFundId"];
|
|
9614
|
+
this.transactionId = _data["transactionId"];
|
|
9615
|
+
this.type = _data["type"];
|
|
9616
|
+
this.taxYear = _data["taxYear"];
|
|
9617
|
+
this.description = _data["description"];
|
|
9618
|
+
}
|
|
9619
|
+
}
|
|
9620
|
+
static fromJS(data) {
|
|
9621
|
+
data = typeof data === 'object' ? data : {};
|
|
9622
|
+
let result = new DocumentV2();
|
|
9623
|
+
result.init(data);
|
|
9624
|
+
return result;
|
|
9625
|
+
}
|
|
9626
|
+
toJSON(data) {
|
|
9627
|
+
data = typeof data === 'object' ? data : {};
|
|
9628
|
+
data["id"] = this.id;
|
|
9629
|
+
data["name"] = this.name;
|
|
9630
|
+
data["url"] = this.url;
|
|
9631
|
+
data["investorId"] = this.investorId;
|
|
9632
|
+
data["preIPOCompanyId"] = this.preIPOCompanyId;
|
|
9633
|
+
data["preIPOCompanyInvestmentId"] = this.preIPOCompanyInvestmentId;
|
|
9634
|
+
data["preIPOCompanySPVId"] = this.preIPOCompanySPVId;
|
|
9635
|
+
data["partnerId"] = this.partnerId;
|
|
9636
|
+
data["registeredFundId"] = this.registeredFundId;
|
|
9637
|
+
data["transactionId"] = this.transactionId;
|
|
9638
|
+
data["type"] = this.type;
|
|
9639
|
+
data["taxYear"] = this.taxYear;
|
|
9640
|
+
data["description"] = this.description;
|
|
9641
|
+
return data;
|
|
9642
|
+
}
|
|
9643
|
+
}
|
|
9644
|
+
export class DocumentV2ApiResponse {
|
|
9645
|
+
constructor(data) {
|
|
9646
|
+
if (data) {
|
|
9647
|
+
for (var property in data) {
|
|
9648
|
+
if (data.hasOwnProperty(property))
|
|
9649
|
+
this[property] = data[property];
|
|
9650
|
+
}
|
|
9651
|
+
}
|
|
9652
|
+
}
|
|
9653
|
+
init(_data) {
|
|
9654
|
+
if (_data) {
|
|
9655
|
+
if (Array.isArray(_data["items"])) {
|
|
9656
|
+
this.items = [];
|
|
9657
|
+
for (let item of _data["items"])
|
|
9658
|
+
this.items.push(DocumentV2.fromJS(item));
|
|
9659
|
+
}
|
|
9660
|
+
this.pagination = _data["pagination"] ? Pagination.fromJS(_data["pagination"]) : undefined;
|
|
9661
|
+
}
|
|
9662
|
+
}
|
|
9663
|
+
static fromJS(data) {
|
|
9664
|
+
data = typeof data === 'object' ? data : {};
|
|
9665
|
+
let result = new DocumentV2ApiResponse();
|
|
9666
|
+
result.init(data);
|
|
9667
|
+
return result;
|
|
9668
|
+
}
|
|
9669
|
+
toJSON(data) {
|
|
9670
|
+
data = typeof data === 'object' ? data : {};
|
|
9671
|
+
if (Array.isArray(this.items)) {
|
|
9672
|
+
data["items"] = [];
|
|
9673
|
+
for (let item of this.items)
|
|
9674
|
+
data["items"].push(item ? item.toJSON() : undefined);
|
|
9675
|
+
}
|
|
9676
|
+
data["pagination"] = this.pagination ? this.pagination.toJSON() : undefined;
|
|
9677
|
+
return data;
|
|
9678
|
+
}
|
|
9679
|
+
}
|
|
9680
|
+
/** Represents an entity investor within the primary offering. */
|
|
9681
|
+
export class EntityInvestor {
|
|
9682
|
+
constructor(data) {
|
|
9683
|
+
if (data) {
|
|
9684
|
+
for (var property in data) {
|
|
9685
|
+
if (data.hasOwnProperty(property))
|
|
9686
|
+
this[property] = data[property];
|
|
9687
|
+
}
|
|
9688
|
+
}
|
|
9689
|
+
}
|
|
9690
|
+
init(_data) {
|
|
9691
|
+
if (_data) {
|
|
9692
|
+
this.id = _data["id"];
|
|
9693
|
+
this.dbaName = _data["dbaName"];
|
|
9694
|
+
this.beneficialOwnershipCount = _data["beneficialOwnershipCount"];
|
|
9695
|
+
this.phone = _data["phone"];
|
|
9696
|
+
this.phoneCountryCode = _data["phoneCountryCode"];
|
|
9697
|
+
this.entityType = _data["entityType"];
|
|
9698
|
+
this.jurisdiction = _data["jurisdiction"];
|
|
9699
|
+
this.formationDate = _data["formationDate"] ? new Date(_data["formationDate"].toString()) : undefined;
|
|
9700
|
+
this.taxClassification = _data["taxClassification"];
|
|
9701
|
+
this.taxId = _data["taxId"];
|
|
9702
|
+
this.street = _data["street"];
|
|
9703
|
+
this.city = _data["city"];
|
|
9704
|
+
this.state = _data["state"];
|
|
9705
|
+
this.zipCode = _data["zipCode"];
|
|
9706
|
+
this.countryCode = _data["countryCode"];
|
|
9707
|
+
this.mailingAddressStreet = _data["mailingAddressStreet"];
|
|
9708
|
+
this.mailingAddressCity = _data["mailingAddressCity"];
|
|
9709
|
+
this.mailingAddressState = _data["mailingAddressState"];
|
|
9710
|
+
this.mailingAddressZipCode = _data["mailingAddressZipCode"];
|
|
9711
|
+
this.mailingAddressCountry = _data["mailingAddressCountry"];
|
|
9712
|
+
this.isSubscriptionAdvisorOrERA = _data["isSubscriptionAdvisorOrERA"];
|
|
9713
|
+
this.trustType = _data["trustType"];
|
|
9372
9714
|
}
|
|
9373
9715
|
}
|
|
9374
9716
|
static fromJS(data) {
|
|
@@ -10101,7 +10443,6 @@ export class FundManager {
|
|
|
10101
10443
|
this.id = _data["id"];
|
|
10102
10444
|
this.name = _data["name"];
|
|
10103
10445
|
this.legalName = _data["legalName"];
|
|
10104
|
-
this.fundAdvisorName = _data["fundAdvisorName"];
|
|
10105
10446
|
this.logoUrl = _data["logoUrl"];
|
|
10106
10447
|
this.foundingDate = _data["foundingDate"] ? new Date(_data["foundingDate"].toString()) : undefined;
|
|
10107
10448
|
this.aum = _data["aum"];
|
|
@@ -10129,7 +10470,6 @@ export class FundManager {
|
|
|
10129
10470
|
data["id"] = this.id;
|
|
10130
10471
|
data["name"] = this.name;
|
|
10131
10472
|
data["legalName"] = this.legalName;
|
|
10132
|
-
data["fundAdvisorName"] = this.fundAdvisorName;
|
|
10133
10473
|
data["logoUrl"] = this.logoUrl;
|
|
10134
10474
|
data["foundingDate"] = this.foundingDate ? formatDate(this.foundingDate) : undefined;
|
|
10135
10475
|
data["aum"] = this.aum;
|
|
@@ -13311,7 +13651,7 @@ export class PreIPOCompanySPV {
|
|
|
13311
13651
|
if (Array.isArray(_data["documents"])) {
|
|
13312
13652
|
this.documents = [];
|
|
13313
13653
|
for (let item of _data["documents"])
|
|
13314
|
-
this.documents.push(
|
|
13654
|
+
this.documents.push(DocumentV2.fromJS(item));
|
|
13315
13655
|
}
|
|
13316
13656
|
this.spvAccountID = _data["spvAccountID"];
|
|
13317
13657
|
this.preIPOCompanyName = _data["preIPOCompanyName"];
|
|
@@ -13919,6 +14259,7 @@ export class RegisteredFund {
|
|
|
13919
14259
|
this.id = _data["id"];
|
|
13920
14260
|
this.fundManagerId = _data["fundManagerId"];
|
|
13921
14261
|
this.partnerId = _data["partnerId"];
|
|
14262
|
+
this.fundAdvisorName = _data["fundAdvisorName"];
|
|
13922
14263
|
this.name = _data["name"];
|
|
13923
14264
|
this.cik = _data["cik"];
|
|
13924
14265
|
this.website = _data["website"];
|
|
@@ -13959,7 +14300,7 @@ export class RegisteredFund {
|
|
|
13959
14300
|
if (Array.isArray(_data["documents"])) {
|
|
13960
14301
|
this.documents = [];
|
|
13961
14302
|
for (let item of _data["documents"])
|
|
13962
|
-
this.documents.push(
|
|
14303
|
+
this.documents.push(DocumentV2.fromJS(item));
|
|
13963
14304
|
}
|
|
13964
14305
|
this.thirdPartyData = _data["thirdPartyData"] ? RegisteredFundThirdPartyData.fromJS(_data["thirdPartyData"]) : undefined;
|
|
13965
14306
|
}
|
|
@@ -13975,6 +14316,7 @@ export class RegisteredFund {
|
|
|
13975
14316
|
data["id"] = this.id;
|
|
13976
14317
|
data["fundManagerId"] = this.fundManagerId;
|
|
13977
14318
|
data["partnerId"] = this.partnerId;
|
|
14319
|
+
data["fundAdvisorName"] = this.fundAdvisorName;
|
|
13978
14320
|
data["name"] = this.name;
|
|
13979
14321
|
data["cik"] = this.cik;
|
|
13980
14322
|
data["website"] = this.website;
|
|
@@ -15825,6 +16167,67 @@ export var SortOrder;
|
|
|
15825
16167
|
SortOrder["Ascending"] = "Ascending";
|
|
15826
16168
|
SortOrder["Descending"] = "Descending";
|
|
15827
16169
|
})(SortOrder || (SortOrder = {}));
|
|
16170
|
+
export var DocumentType2;
|
|
16171
|
+
(function (DocumentType2) {
|
|
16172
|
+
DocumentType2["BUSINESS_FORMATION"] = "BUSINESS_FORMATION";
|
|
16173
|
+
DocumentType2["BANK_STATEMENT"] = "BANK_STATEMENT";
|
|
16174
|
+
DocumentType2["CAPITAL_ACCT_STATEMENT"] = "CAPITAL_ACCT_STATEMENT";
|
|
16175
|
+
DocumentType2["CAPITAL_CALL_NOTICE"] = "CAPITAL_CALL_NOTICE";
|
|
16176
|
+
DocumentType2["CARRY_SPLIT_AGREEMENT"] = "CARRY_SPLIT_AGREEMENT";
|
|
16177
|
+
DocumentType2["CERTIFICATE_OF_FORMATION"] = "CERTIFICATE_OF_FORMATION";
|
|
16178
|
+
DocumentType2["COMMITMENT_AGREEMENT"] = "COMMITMENT_AGREEMENT";
|
|
16179
|
+
DocumentType2["COMPLIANCE"] = "COMPLIANCE";
|
|
16180
|
+
DocumentType2["DRIVER_LICENSE"] = "DRIVER_LICENSE";
|
|
16181
|
+
DocumentType2["DRAFT_INVESTMENT"] = "DRAFT_INVESTMENT";
|
|
16182
|
+
DocumentType2["EIN_FORMATION"] = "EIN_FORMATION";
|
|
16183
|
+
DocumentType2["FINAL_INVESTMENT"] = "FINAL_INVESTMENT";
|
|
16184
|
+
DocumentType2["FINANCIAL_STATEMENT"] = "FINANCIAL_STATEMENT";
|
|
16185
|
+
DocumentType2["INVESTOR_WIRE_INSTRUCTIONS"] = "INVESTOR_WIRE_INSTRUCTIONS";
|
|
16186
|
+
DocumentType2["INVOICE"] = "INVOICE";
|
|
16187
|
+
DocumentType2["K1"] = "K1";
|
|
16188
|
+
DocumentType2["LOCAL_OR_TRIBE_ID"] = "LOCAL_OR_TRIBE_ID";
|
|
16189
|
+
DocumentType2["MASTER_AGREEMENT"] = "MASTER_AGREEMENT";
|
|
16190
|
+
DocumentType2["MSA"] = "MSA";
|
|
16191
|
+
DocumentType2["OTHER"] = "OTHER";
|
|
16192
|
+
DocumentType2["PASSPORT"] = "PASSPORT";
|
|
16193
|
+
DocumentType2["PASSPORT_FOREIGN"] = "PASSPORT_FOREIGN";
|
|
16194
|
+
DocumentType2["PASSPORT_US"] = "PASSPORT_US";
|
|
16195
|
+
DocumentType2["PITCH_DECK"] = "PITCH_DECK";
|
|
16196
|
+
DocumentType2["POST_CLOSING_DOCUMENTS"] = "POST_CLOSING_DOCUMENTS";
|
|
16197
|
+
DocumentType2["PROOF_OF_SOURCE_OF_FUNDS"] = "PROOF_OF_SOURCE_OF_FUNDS";
|
|
16198
|
+
DocumentType2["PX_FILE"] = "PX_FILE";
|
|
16199
|
+
DocumentType2["SCFUND_AGREEMENT"] = "SCFUND_AGREEMENT";
|
|
16200
|
+
DocumentType2["SERIES_AGREEMENT"] = "SERIES_AGREEMENT";
|
|
16201
|
+
DocumentType2["SIDE_LETTER"] = "SIDE_LETTER";
|
|
16202
|
+
DocumentType2["SIGNABLE_AGREEMENT"] = "SIGNABLE_AGREEMENT";
|
|
16203
|
+
DocumentType2["SOW"] = "SOW";
|
|
16204
|
+
DocumentType2["STATEID"] = "STATEID";
|
|
16205
|
+
DocumentType2["SUBSCRIPTION_AGREEMENT"] = "SUBSCRIPTION_AGREEMENT";
|
|
16206
|
+
DocumentType2["SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED"] = "SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED";
|
|
16207
|
+
DocumentType2["SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM"] = "SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM";
|
|
16208
|
+
DocumentType2["TARGET_CAPTABLE"] = "TARGET_CAPTABLE";
|
|
16209
|
+
DocumentType2["TERM_SHEET"] = "TERM_SHEET";
|
|
16210
|
+
DocumentType2["TRANSFER_CONSENT_FORM"] = "TRANSFER_CONSENT_FORM";
|
|
16211
|
+
DocumentType2["TRANSFER_OF_INTEREST_AGREEMENT"] = "TRANSFER_OF_INTEREST_AGREEMENT";
|
|
16212
|
+
DocumentType2["W8"] = "W8";
|
|
16213
|
+
DocumentType2["W8_BEN"] = "W8_BEN";
|
|
16214
|
+
DocumentType2["W8_BENE"] = "W8_BENE";
|
|
16215
|
+
DocumentType2["W9"] = "W9";
|
|
16216
|
+
DocumentType2["LayeredSPVInvestmentDeck_Monark"] = "LayeredSPVInvestmentDeck_Monark";
|
|
16217
|
+
DocumentType2["InvestmentMemo_Monark"] = "InvestmentMemo_Monark";
|
|
16218
|
+
DocumentType2["DealMemo_Monark"] = "DealMemo_Monark";
|
|
16219
|
+
DocumentType2["RiskFactors_Monark"] = "RiskFactors_Monark";
|
|
16220
|
+
DocumentType2["PrivatePlacementMemorandum_Monark"] = "PrivatePlacementMemorandum_Monark";
|
|
16221
|
+
DocumentType2["InvestorLogo_Monark"] = "InvestorLogo_Monark";
|
|
16222
|
+
DocumentType2["SubscriptionAgreementPreview_Monark"] = "SubscriptionAgreementPreview_Monark";
|
|
16223
|
+
DocumentType2["DealDiligence_Monark"] = "DealDiligence_Monark";
|
|
16224
|
+
DocumentType2["NoLienAttestation_Monark"] = "NoLienAttestation_Monark";
|
|
16225
|
+
DocumentType2["KeyTerms_Monark"] = "KeyTerms_Monark";
|
|
16226
|
+
DocumentType2["RegisteredFundSubscriptionAgreement_Monark"] = "RegisteredFundSubscriptionAgreement_Monark";
|
|
16227
|
+
DocumentType2["RegisteredFundProspectus_Monark"] = "RegisteredFundProspectus_Monark";
|
|
16228
|
+
DocumentType2["RegisteredFundFactCard_Monark"] = "RegisteredFundFactCard_Monark";
|
|
16229
|
+
DocumentType2["RegisteredFundQuiltChart_Monark"] = "RegisteredFundQuiltChart_Monark";
|
|
16230
|
+
})(DocumentType2 || (DocumentType2 = {}));
|
|
15828
16231
|
export var SortOrder2;
|
|
15829
16232
|
(function (SortOrder2) {
|
|
15830
16233
|
SortOrder2["Ascending"] = "Ascending";
|
|
@@ -15835,33 +16238,38 @@ export var SortOrder3;
|
|
|
15835
16238
|
SortOrder3["Ascending"] = "Ascending";
|
|
15836
16239
|
SortOrder3["Descending"] = "Descending";
|
|
15837
16240
|
})(SortOrder3 || (SortOrder3 = {}));
|
|
16241
|
+
export var SortOrder4;
|
|
16242
|
+
(function (SortOrder4) {
|
|
16243
|
+
SortOrder4["Ascending"] = "Ascending";
|
|
16244
|
+
SortOrder4["Descending"] = "Descending";
|
|
16245
|
+
})(SortOrder4 || (SortOrder4 = {}));
|
|
15838
16246
|
export var SortProperty;
|
|
15839
16247
|
(function (SortProperty) {
|
|
15840
16248
|
SortProperty["UpdatedAt"] = "UpdatedAt";
|
|
15841
16249
|
SortProperty["CreatedAt"] = "CreatedAt";
|
|
15842
16250
|
SortProperty["NotionalAmount"] = "NotionalAmount";
|
|
15843
16251
|
})(SortProperty || (SortProperty = {}));
|
|
15844
|
-
export var
|
|
15845
|
-
(function (
|
|
15846
|
-
|
|
15847
|
-
|
|
15848
|
-
})(
|
|
16252
|
+
export var SortOrder5;
|
|
16253
|
+
(function (SortOrder5) {
|
|
16254
|
+
SortOrder5["Ascending"] = "Ascending";
|
|
16255
|
+
SortOrder5["Descending"] = "Descending";
|
|
16256
|
+
})(SortOrder5 || (SortOrder5 = {}));
|
|
15849
16257
|
export var SortProperty2;
|
|
15850
16258
|
(function (SortProperty2) {
|
|
15851
16259
|
SortProperty2["UpdatedAt"] = "UpdatedAt";
|
|
15852
16260
|
SortProperty2["CreatedAt"] = "CreatedAt";
|
|
15853
16261
|
SortProperty2["NotionalAmount"] = "NotionalAmount";
|
|
15854
16262
|
})(SortProperty2 || (SortProperty2 = {}));
|
|
15855
|
-
export var SortOrder5;
|
|
15856
|
-
(function (SortOrder5) {
|
|
15857
|
-
SortOrder5["Ascending"] = "Ascending";
|
|
15858
|
-
SortOrder5["Descending"] = "Descending";
|
|
15859
|
-
})(SortOrder5 || (SortOrder5 = {}));
|
|
15860
16263
|
export var SortOrder6;
|
|
15861
16264
|
(function (SortOrder6) {
|
|
15862
16265
|
SortOrder6["Ascending"] = "Ascending";
|
|
15863
16266
|
SortOrder6["Descending"] = "Descending";
|
|
15864
16267
|
})(SortOrder6 || (SortOrder6 = {}));
|
|
16268
|
+
export var SortOrder7;
|
|
16269
|
+
(function (SortOrder7) {
|
|
16270
|
+
SortOrder7["Ascending"] = "Ascending";
|
|
16271
|
+
SortOrder7["Descending"] = "Descending";
|
|
16272
|
+
})(SortOrder7 || (SortOrder7 = {}));
|
|
15865
16273
|
export var InvestorStatus;
|
|
15866
16274
|
(function (InvestorStatus) {
|
|
15867
16275
|
InvestorStatus["Pending"] = "Pending";
|
|
@@ -15877,11 +16285,11 @@ export var Status;
|
|
|
15877
16285
|
Status["Rejected"] = "Rejected";
|
|
15878
16286
|
Status["Failed"] = "Failed";
|
|
15879
16287
|
})(Status || (Status = {}));
|
|
15880
|
-
export var
|
|
15881
|
-
(function (
|
|
15882
|
-
|
|
15883
|
-
|
|
15884
|
-
})(
|
|
16288
|
+
export var SortOrder8;
|
|
16289
|
+
(function (SortOrder8) {
|
|
16290
|
+
SortOrder8["Ascending"] = "Ascending";
|
|
16291
|
+
SortOrder8["Descending"] = "Descending";
|
|
16292
|
+
})(SortOrder8 || (SortOrder8 = {}));
|
|
15885
16293
|
export var SortBy;
|
|
15886
16294
|
(function (SortBy) {
|
|
15887
16295
|
SortBy["UpdatedAt"] = "UpdatedAt";
|
|
@@ -15889,11 +16297,11 @@ export var SortBy;
|
|
|
15889
16297
|
SortBy["LastValuation"] = "LastValuation";
|
|
15890
16298
|
SortBy["TotalFunding"] = "TotalFunding";
|
|
15891
16299
|
})(SortBy || (SortBy = {}));
|
|
15892
|
-
export var
|
|
15893
|
-
(function (
|
|
15894
|
-
|
|
15895
|
-
|
|
15896
|
-
})(
|
|
16300
|
+
export var SortOrder9;
|
|
16301
|
+
(function (SortOrder9) {
|
|
16302
|
+
SortOrder9["Ascending"] = "Ascending";
|
|
16303
|
+
SortOrder9["Descending"] = "Descending";
|
|
16304
|
+
})(SortOrder9 || (SortOrder9 = {}));
|
|
15897
16305
|
export var FilterBy;
|
|
15898
16306
|
(function (FilterBy) {
|
|
15899
16307
|
FilterBy["Company"] = "Company";
|
|
@@ -15908,11 +16316,6 @@ export var Includes;
|
|
|
15908
16316
|
Includes["Investments"] = "Investments";
|
|
15909
16317
|
Includes["Spvs"] = "Spvs";
|
|
15910
16318
|
})(Includes || (Includes = {}));
|
|
15911
|
-
export var SortOrder9;
|
|
15912
|
-
(function (SortOrder9) {
|
|
15913
|
-
SortOrder9["Ascending"] = "Ascending";
|
|
15914
|
-
SortOrder9["Descending"] = "Descending";
|
|
15915
|
-
})(SortOrder9 || (SortOrder9 = {}));
|
|
15916
16319
|
export var SortOrder10;
|
|
15917
16320
|
(function (SortOrder10) {
|
|
15918
16321
|
SortOrder10["Ascending"] = "Ascending";
|
|
@@ -15928,6 +16331,11 @@ export var SortOrder12;
|
|
|
15928
16331
|
SortOrder12["Ascending"] = "Ascending";
|
|
15929
16332
|
SortOrder12["Descending"] = "Descending";
|
|
15930
16333
|
})(SortOrder12 || (SortOrder12 = {}));
|
|
16334
|
+
export var SortOrder13;
|
|
16335
|
+
(function (SortOrder13) {
|
|
16336
|
+
SortOrder13["Ascending"] = "Ascending";
|
|
16337
|
+
SortOrder13["Descending"] = "Descending";
|
|
16338
|
+
})(SortOrder13 || (SortOrder13 = {}));
|
|
15931
16339
|
export var ResearchType;
|
|
15932
16340
|
(function (ResearchType) {
|
|
15933
16341
|
ResearchType["INTERVIEW"] = "INTERVIEW";
|
|
@@ -15982,11 +16390,11 @@ export var ExemptionsClaimed;
|
|
|
15982
16390
|
ExemptionsClaimed["SECURITIES_ACT_SECTION_3_c_14"] = "SECURITIES_ACT_SECTION_3_c_14";
|
|
15983
16391
|
ExemptionsClaimed["Reg_S"] = "Reg_S";
|
|
15984
16392
|
})(ExemptionsClaimed || (ExemptionsClaimed = {}));
|
|
15985
|
-
export var
|
|
15986
|
-
(function (
|
|
15987
|
-
|
|
15988
|
-
|
|
15989
|
-
})(
|
|
16393
|
+
export var SortOrder14;
|
|
16394
|
+
(function (SortOrder14) {
|
|
16395
|
+
SortOrder14["Ascending"] = "Ascending";
|
|
16396
|
+
SortOrder14["Descending"] = "Descending";
|
|
16397
|
+
})(SortOrder14 || (SortOrder14 = {}));
|
|
15990
16398
|
export var SortBy2;
|
|
15991
16399
|
(function (SortBy2) {
|
|
15992
16400
|
SortBy2["UpdatedAt"] = "UpdatedAt";
|
|
@@ -15998,11 +16406,6 @@ export var SortBy2;
|
|
|
15998
16406
|
SortBy2["Valuation"] = "Valuation";
|
|
15999
16407
|
SortBy2["MinCommitmentAmount"] = "MinCommitmentAmount";
|
|
16000
16408
|
})(SortBy2 || (SortBy2 = {}));
|
|
16001
|
-
export var SortOrder14;
|
|
16002
|
-
(function (SortOrder14) {
|
|
16003
|
-
SortOrder14["Ascending"] = "Ascending";
|
|
16004
|
-
SortOrder14["Descending"] = "Descending";
|
|
16005
|
-
})(SortOrder14 || (SortOrder14 = {}));
|
|
16006
16409
|
export var SortOrder15;
|
|
16007
16410
|
(function (SortOrder15) {
|
|
16008
16411
|
SortOrder15["Ascending"] = "Ascending";
|
|
@@ -16038,6 +16441,11 @@ export var SortOrder21;
|
|
|
16038
16441
|
SortOrder21["Ascending"] = "Ascending";
|
|
16039
16442
|
SortOrder21["Descending"] = "Descending";
|
|
16040
16443
|
})(SortOrder21 || (SortOrder21 = {}));
|
|
16444
|
+
export var SortOrder22;
|
|
16445
|
+
(function (SortOrder22) {
|
|
16446
|
+
SortOrder22["Ascending"] = "Ascending";
|
|
16447
|
+
SortOrder22["Descending"] = "Descending";
|
|
16448
|
+
})(SortOrder22 || (SortOrder22 = {}));
|
|
16041
16449
|
export var TargetAssetType;
|
|
16042
16450
|
(function (TargetAssetType) {
|
|
16043
16451
|
TargetAssetType["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
@@ -16056,16 +16464,16 @@ export var TargetAssetType3;
|
|
|
16056
16464
|
TargetAssetType3["RegisteredFund"] = "RegisteredFund";
|
|
16057
16465
|
TargetAssetType3["PreIPOCompany"] = "PreIPOCompany";
|
|
16058
16466
|
})(TargetAssetType3 || (TargetAssetType3 = {}));
|
|
16059
|
-
export var SortOrder22;
|
|
16060
|
-
(function (SortOrder22) {
|
|
16061
|
-
SortOrder22["Ascending"] = "Ascending";
|
|
16062
|
-
SortOrder22["Descending"] = "Descending";
|
|
16063
|
-
})(SortOrder22 || (SortOrder22 = {}));
|
|
16064
16467
|
export var SortOrder23;
|
|
16065
16468
|
(function (SortOrder23) {
|
|
16066
16469
|
SortOrder23["Ascending"] = "Ascending";
|
|
16067
16470
|
SortOrder23["Descending"] = "Descending";
|
|
16068
16471
|
})(SortOrder23 || (SortOrder23 = {}));
|
|
16472
|
+
export var SortOrder24;
|
|
16473
|
+
(function (SortOrder24) {
|
|
16474
|
+
SortOrder24["Ascending"] = "Ascending";
|
|
16475
|
+
SortOrder24["Descending"] = "Descending";
|
|
16476
|
+
})(SortOrder24 || (SortOrder24 = {}));
|
|
16069
16477
|
export var EventType;
|
|
16070
16478
|
(function (EventType) {
|
|
16071
16479
|
EventType["PreIPOCompany"] = "PreIPOCompany";
|
|
@@ -16255,67 +16663,128 @@ export var CreateTransactionSide;
|
|
|
16255
16663
|
CreateTransactionSide["Subscription"] = "Subscription";
|
|
16256
16664
|
CreateTransactionSide["Redemption"] = "Redemption";
|
|
16257
16665
|
})(CreateTransactionSide || (CreateTransactionSide = {}));
|
|
16258
|
-
export var
|
|
16259
|
-
(function (
|
|
16260
|
-
|
|
16261
|
-
|
|
16262
|
-
|
|
16263
|
-
|
|
16264
|
-
|
|
16265
|
-
|
|
16266
|
-
|
|
16267
|
-
|
|
16268
|
-
|
|
16269
|
-
|
|
16270
|
-
|
|
16271
|
-
|
|
16272
|
-
|
|
16273
|
-
|
|
16274
|
-
|
|
16275
|
-
|
|
16276
|
-
|
|
16277
|
-
|
|
16278
|
-
|
|
16279
|
-
|
|
16280
|
-
|
|
16281
|
-
|
|
16282
|
-
|
|
16283
|
-
|
|
16284
|
-
|
|
16285
|
-
|
|
16286
|
-
|
|
16287
|
-
|
|
16288
|
-
|
|
16289
|
-
|
|
16290
|
-
|
|
16291
|
-
|
|
16292
|
-
|
|
16293
|
-
|
|
16294
|
-
|
|
16295
|
-
|
|
16296
|
-
|
|
16297
|
-
|
|
16298
|
-
|
|
16299
|
-
|
|
16300
|
-
|
|
16301
|
-
|
|
16302
|
-
|
|
16303
|
-
|
|
16304
|
-
|
|
16305
|
-
|
|
16306
|
-
|
|
16307
|
-
|
|
16308
|
-
|
|
16309
|
-
|
|
16310
|
-
|
|
16311
|
-
|
|
16312
|
-
|
|
16313
|
-
|
|
16314
|
-
|
|
16315
|
-
|
|
16316
|
-
|
|
16317
|
-
|
|
16318
|
-
})(
|
|
16666
|
+
export var DocumentType3;
|
|
16667
|
+
(function (DocumentType3) {
|
|
16668
|
+
DocumentType3["BUSINESS_FORMATION"] = "BUSINESS_FORMATION";
|
|
16669
|
+
DocumentType3["BANK_STATEMENT"] = "BANK_STATEMENT";
|
|
16670
|
+
DocumentType3["CAPITAL_ACCT_STATEMENT"] = "CAPITAL_ACCT_STATEMENT";
|
|
16671
|
+
DocumentType3["CAPITAL_CALL_NOTICE"] = "CAPITAL_CALL_NOTICE";
|
|
16672
|
+
DocumentType3["CARRY_SPLIT_AGREEMENT"] = "CARRY_SPLIT_AGREEMENT";
|
|
16673
|
+
DocumentType3["CERTIFICATE_OF_FORMATION"] = "CERTIFICATE_OF_FORMATION";
|
|
16674
|
+
DocumentType3["COMMITMENT_AGREEMENT"] = "COMMITMENT_AGREEMENT";
|
|
16675
|
+
DocumentType3["COMPLIANCE"] = "COMPLIANCE";
|
|
16676
|
+
DocumentType3["DRIVER_LICENSE"] = "DRIVER_LICENSE";
|
|
16677
|
+
DocumentType3["DRAFT_INVESTMENT"] = "DRAFT_INVESTMENT";
|
|
16678
|
+
DocumentType3["EIN_FORMATION"] = "EIN_FORMATION";
|
|
16679
|
+
DocumentType3["FINAL_INVESTMENT"] = "FINAL_INVESTMENT";
|
|
16680
|
+
DocumentType3["FINANCIAL_STATEMENT"] = "FINANCIAL_STATEMENT";
|
|
16681
|
+
DocumentType3["INVESTOR_WIRE_INSTRUCTIONS"] = "INVESTOR_WIRE_INSTRUCTIONS";
|
|
16682
|
+
DocumentType3["INVOICE"] = "INVOICE";
|
|
16683
|
+
DocumentType3["K1"] = "K1";
|
|
16684
|
+
DocumentType3["LOCAL_OR_TRIBE_ID"] = "LOCAL_OR_TRIBE_ID";
|
|
16685
|
+
DocumentType3["MASTER_AGREEMENT"] = "MASTER_AGREEMENT";
|
|
16686
|
+
DocumentType3["MSA"] = "MSA";
|
|
16687
|
+
DocumentType3["OTHER"] = "OTHER";
|
|
16688
|
+
DocumentType3["PASSPORT"] = "PASSPORT";
|
|
16689
|
+
DocumentType3["PASSPORT_FOREIGN"] = "PASSPORT_FOREIGN";
|
|
16690
|
+
DocumentType3["PASSPORT_US"] = "PASSPORT_US";
|
|
16691
|
+
DocumentType3["PITCH_DECK"] = "PITCH_DECK";
|
|
16692
|
+
DocumentType3["POST_CLOSING_DOCUMENTS"] = "POST_CLOSING_DOCUMENTS";
|
|
16693
|
+
DocumentType3["PROOF_OF_SOURCE_OF_FUNDS"] = "PROOF_OF_SOURCE_OF_FUNDS";
|
|
16694
|
+
DocumentType3["PX_FILE"] = "PX_FILE";
|
|
16695
|
+
DocumentType3["SCFUND_AGREEMENT"] = "SCFUND_AGREEMENT";
|
|
16696
|
+
DocumentType3["SERIES_AGREEMENT"] = "SERIES_AGREEMENT";
|
|
16697
|
+
DocumentType3["SIDE_LETTER"] = "SIDE_LETTER";
|
|
16698
|
+
DocumentType3["SIGNABLE_AGREEMENT"] = "SIGNABLE_AGREEMENT";
|
|
16699
|
+
DocumentType3["SOW"] = "SOW";
|
|
16700
|
+
DocumentType3["STATEID"] = "STATEID";
|
|
16701
|
+
DocumentType3["SUBSCRIPTION_AGREEMENT"] = "SUBSCRIPTION_AGREEMENT";
|
|
16702
|
+
DocumentType3["SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED"] = "SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED";
|
|
16703
|
+
DocumentType3["SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM"] = "SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM";
|
|
16704
|
+
DocumentType3["TARGET_CAPTABLE"] = "TARGET_CAPTABLE";
|
|
16705
|
+
DocumentType3["TERM_SHEET"] = "TERM_SHEET";
|
|
16706
|
+
DocumentType3["TRANSFER_CONSENT_FORM"] = "TRANSFER_CONSENT_FORM";
|
|
16707
|
+
DocumentType3["TRANSFER_OF_INTEREST_AGREEMENT"] = "TRANSFER_OF_INTEREST_AGREEMENT";
|
|
16708
|
+
DocumentType3["W8"] = "W8";
|
|
16709
|
+
DocumentType3["W8_BEN"] = "W8_BEN";
|
|
16710
|
+
DocumentType3["W8_BENE"] = "W8_BENE";
|
|
16711
|
+
DocumentType3["W9"] = "W9";
|
|
16712
|
+
DocumentType3["LayeredSPVInvestmentDeck_Monark"] = "LayeredSPVInvestmentDeck_Monark";
|
|
16713
|
+
DocumentType3["InvestmentMemo_Monark"] = "InvestmentMemo_Monark";
|
|
16714
|
+
DocumentType3["DealMemo_Monark"] = "DealMemo_Monark";
|
|
16715
|
+
DocumentType3["RiskFactors_Monark"] = "RiskFactors_Monark";
|
|
16716
|
+
DocumentType3["PrivatePlacementMemorandum_Monark"] = "PrivatePlacementMemorandum_Monark";
|
|
16717
|
+
DocumentType3["InvestorLogo_Monark"] = "InvestorLogo_Monark";
|
|
16718
|
+
DocumentType3["SubscriptionAgreementPreview_Monark"] = "SubscriptionAgreementPreview_Monark";
|
|
16719
|
+
DocumentType3["DealDiligence_Monark"] = "DealDiligence_Monark";
|
|
16720
|
+
DocumentType3["NoLienAttestation_Monark"] = "NoLienAttestation_Monark";
|
|
16721
|
+
DocumentType3["KeyTerms_Monark"] = "KeyTerms_Monark";
|
|
16722
|
+
DocumentType3["RegisteredFundSubscriptionAgreement_Monark"] = "RegisteredFundSubscriptionAgreement_Monark";
|
|
16723
|
+
DocumentType3["RegisteredFundProspectus_Monark"] = "RegisteredFundProspectus_Monark";
|
|
16724
|
+
DocumentType3["RegisteredFundFactCard_Monark"] = "RegisteredFundFactCard_Monark";
|
|
16725
|
+
DocumentType3["RegisteredFundQuiltChart_Monark"] = "RegisteredFundQuiltChart_Monark";
|
|
16726
|
+
})(DocumentType3 || (DocumentType3 = {}));
|
|
16727
|
+
export var DocumentV2Type;
|
|
16728
|
+
(function (DocumentV2Type) {
|
|
16729
|
+
DocumentV2Type["BUSINESS_FORMATION"] = "BUSINESS_FORMATION";
|
|
16730
|
+
DocumentV2Type["BANK_STATEMENT"] = "BANK_STATEMENT";
|
|
16731
|
+
DocumentV2Type["CAPITAL_ACCT_STATEMENT"] = "CAPITAL_ACCT_STATEMENT";
|
|
16732
|
+
DocumentV2Type["CAPITAL_CALL_NOTICE"] = "CAPITAL_CALL_NOTICE";
|
|
16733
|
+
DocumentV2Type["CARRY_SPLIT_AGREEMENT"] = "CARRY_SPLIT_AGREEMENT";
|
|
16734
|
+
DocumentV2Type["CERTIFICATE_OF_FORMATION"] = "CERTIFICATE_OF_FORMATION";
|
|
16735
|
+
DocumentV2Type["COMMITMENT_AGREEMENT"] = "COMMITMENT_AGREEMENT";
|
|
16736
|
+
DocumentV2Type["COMPLIANCE"] = "COMPLIANCE";
|
|
16737
|
+
DocumentV2Type["DRIVER_LICENSE"] = "DRIVER_LICENSE";
|
|
16738
|
+
DocumentV2Type["DRAFT_INVESTMENT"] = "DRAFT_INVESTMENT";
|
|
16739
|
+
DocumentV2Type["EIN_FORMATION"] = "EIN_FORMATION";
|
|
16740
|
+
DocumentV2Type["FINAL_INVESTMENT"] = "FINAL_INVESTMENT";
|
|
16741
|
+
DocumentV2Type["FINANCIAL_STATEMENT"] = "FINANCIAL_STATEMENT";
|
|
16742
|
+
DocumentV2Type["INVESTOR_WIRE_INSTRUCTIONS"] = "INVESTOR_WIRE_INSTRUCTIONS";
|
|
16743
|
+
DocumentV2Type["INVOICE"] = "INVOICE";
|
|
16744
|
+
DocumentV2Type["K1"] = "K1";
|
|
16745
|
+
DocumentV2Type["LOCAL_OR_TRIBE_ID"] = "LOCAL_OR_TRIBE_ID";
|
|
16746
|
+
DocumentV2Type["MASTER_AGREEMENT"] = "MASTER_AGREEMENT";
|
|
16747
|
+
DocumentV2Type["MSA"] = "MSA";
|
|
16748
|
+
DocumentV2Type["OTHER"] = "OTHER";
|
|
16749
|
+
DocumentV2Type["PASSPORT"] = "PASSPORT";
|
|
16750
|
+
DocumentV2Type["PASSPORT_FOREIGN"] = "PASSPORT_FOREIGN";
|
|
16751
|
+
DocumentV2Type["PASSPORT_US"] = "PASSPORT_US";
|
|
16752
|
+
DocumentV2Type["PITCH_DECK"] = "PITCH_DECK";
|
|
16753
|
+
DocumentV2Type["POST_CLOSING_DOCUMENTS"] = "POST_CLOSING_DOCUMENTS";
|
|
16754
|
+
DocumentV2Type["PROOF_OF_SOURCE_OF_FUNDS"] = "PROOF_OF_SOURCE_OF_FUNDS";
|
|
16755
|
+
DocumentV2Type["PX_FILE"] = "PX_FILE";
|
|
16756
|
+
DocumentV2Type["SCFUND_AGREEMENT"] = "SCFUND_AGREEMENT";
|
|
16757
|
+
DocumentV2Type["SERIES_AGREEMENT"] = "SERIES_AGREEMENT";
|
|
16758
|
+
DocumentV2Type["SIDE_LETTER"] = "SIDE_LETTER";
|
|
16759
|
+
DocumentV2Type["SIGNABLE_AGREEMENT"] = "SIGNABLE_AGREEMENT";
|
|
16760
|
+
DocumentV2Type["SOW"] = "SOW";
|
|
16761
|
+
DocumentV2Type["STATEID"] = "STATEID";
|
|
16762
|
+
DocumentV2Type["SUBSCRIPTION_AGREEMENT"] = "SUBSCRIPTION_AGREEMENT";
|
|
16763
|
+
DocumentV2Type["SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED"] = "SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED";
|
|
16764
|
+
DocumentV2Type["SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM"] = "SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM";
|
|
16765
|
+
DocumentV2Type["TARGET_CAPTABLE"] = "TARGET_CAPTABLE";
|
|
16766
|
+
DocumentV2Type["TERM_SHEET"] = "TERM_SHEET";
|
|
16767
|
+
DocumentV2Type["TRANSFER_CONSENT_FORM"] = "TRANSFER_CONSENT_FORM";
|
|
16768
|
+
DocumentV2Type["TRANSFER_OF_INTEREST_AGREEMENT"] = "TRANSFER_OF_INTEREST_AGREEMENT";
|
|
16769
|
+
DocumentV2Type["W8"] = "W8";
|
|
16770
|
+
DocumentV2Type["W8_BEN"] = "W8_BEN";
|
|
16771
|
+
DocumentV2Type["W8_BENE"] = "W8_BENE";
|
|
16772
|
+
DocumentV2Type["W9"] = "W9";
|
|
16773
|
+
DocumentV2Type["LayeredSPVInvestmentDeck_Monark"] = "LayeredSPVInvestmentDeck_Monark";
|
|
16774
|
+
DocumentV2Type["InvestmentMemo_Monark"] = "InvestmentMemo_Monark";
|
|
16775
|
+
DocumentV2Type["DealMemo_Monark"] = "DealMemo_Monark";
|
|
16776
|
+
DocumentV2Type["RiskFactors_Monark"] = "RiskFactors_Monark";
|
|
16777
|
+
DocumentV2Type["PrivatePlacementMemorandum_Monark"] = "PrivatePlacementMemorandum_Monark";
|
|
16778
|
+
DocumentV2Type["InvestorLogo_Monark"] = "InvestorLogo_Monark";
|
|
16779
|
+
DocumentV2Type["SubscriptionAgreementPreview_Monark"] = "SubscriptionAgreementPreview_Monark";
|
|
16780
|
+
DocumentV2Type["DealDiligence_Monark"] = "DealDiligence_Monark";
|
|
16781
|
+
DocumentV2Type["NoLienAttestation_Monark"] = "NoLienAttestation_Monark";
|
|
16782
|
+
DocumentV2Type["KeyTerms_Monark"] = "KeyTerms_Monark";
|
|
16783
|
+
DocumentV2Type["RegisteredFundSubscriptionAgreement_Monark"] = "RegisteredFundSubscriptionAgreement_Monark";
|
|
16784
|
+
DocumentV2Type["RegisteredFundProspectus_Monark"] = "RegisteredFundProspectus_Monark";
|
|
16785
|
+
DocumentV2Type["RegisteredFundFactCard_Monark"] = "RegisteredFundFactCard_Monark";
|
|
16786
|
+
DocumentV2Type["RegisteredFundQuiltChart_Monark"] = "RegisteredFundQuiltChart_Monark";
|
|
16787
|
+
})(DocumentV2Type || (DocumentV2Type = {}));
|
|
16319
16788
|
export var EntityInvestorEntityType;
|
|
16320
16789
|
(function (EntityInvestorEntityType) {
|
|
16321
16790
|
EntityInvestorEntityType["SOLE_PROPRIETOR"] = "SOLE_PROPRIETOR";
|