@monarkmarkets/api-client 1.3.14 → 1.3.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/Client.d.ts +358 -110
  2. package/dist/Client.js +609 -121
  3. package/package.json +1 -1
package/dist/Client.js CHANGED
@@ -71,6 +71,7 @@ export class Client {
71
71
  * Get a Document by ID.
72
72
  * @param id The Document ID for the document to retrieve.
73
73
  * @return OK
74
+ * @deprecated
74
75
  */
75
76
  getDocumentById(id) {
76
77
  let url_ = this.baseUrl + "/primary/v1/document/{id}";
@@ -135,6 +136,7 @@ export class Client {
135
136
  * @param exactMatch (optional) Only returns the items exactly matching the parameters given.
136
137
  * @param sortOrder (optional)
137
138
  * @return OK
139
+ * @deprecated
138
140
  */
139
141
  getAllDocuments(investorId, preIPOCompanyId, preIPOCompanySPVId, preIPOCompanyInvestmentId, investorSubscriptionId, registeredFundId, registeredFundSubscriptionId, documentType, page, pageSize, exactMatch, sortOrder) {
140
142
  let url_ = this.baseUrl + "/primary/v1/document?";
@@ -224,6 +226,7 @@ export class Client {
224
226
  * @param id The Document ID for the document to sign.
225
227
  * @param body (optional) Data about the signing.
226
228
  * @return No Content
229
+ * @deprecated
227
230
  */
228
231
  signDocument(id, body) {
229
232
  let url_ = this.baseUrl + "/primary/v1/document/{id}/sign";
@@ -274,6 +277,7 @@ export class Client {
274
277
  * Downloads a document using document ID and token. The document is accessed anonymously using a secure token.
275
278
  * @param id The Document ID for the document to download.
276
279
  * @param token The secure token required to access the document.
280
+ * @deprecated
277
281
  */
278
282
  downloadDocument(id, token) {
279
283
  let url_ = this.baseUrl + "/primary/v1/document/{id}/download/{token}";
@@ -327,6 +331,261 @@ export class Client {
327
331
  }
328
332
  return Promise.resolve(null);
329
333
  }
334
+ /**
335
+ * Get a Document by ID.
336
+ * @param id The Document ID for the document to retrieve.
337
+ * @return OK
338
+ */
339
+ getDocumentByIdV2(id) {
340
+ let url_ = this.baseUrl + "/primary/v2/document/{id}";
341
+ if (id === undefined || id === null)
342
+ throw new globalThis.Error("The parameter 'id' must be defined.");
343
+ url_ = url_.replace("{id}", encodeURIComponent("" + id));
344
+ url_ = url_.replace(/[?&]$/, "");
345
+ let options_ = {
346
+ method: "GET",
347
+ headers: {
348
+ "Accept": "application/json"
349
+ }
350
+ };
351
+ return this.http.fetch(url_, options_).then((_response) => {
352
+ return this.processGetDocumentByIdV2(_response);
353
+ });
354
+ }
355
+ processGetDocumentByIdV2(response) {
356
+ const status = response.status;
357
+ let _headers = {};
358
+ if (response.headers && response.headers.forEach) {
359
+ response.headers.forEach((v, k) => _headers[k] = v);
360
+ }
361
+ ;
362
+ if (status === 200) {
363
+ return response.text().then((_responseText) => {
364
+ let result200 = null;
365
+ let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
366
+ result200 = DocumentV2.fromJS(resultData200);
367
+ return result200;
368
+ });
369
+ }
370
+ else if (status === 404) {
371
+ return response.text().then((_responseText) => {
372
+ let result404 = null;
373
+ let resultData404 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
374
+ result404 = ProblemDetails.fromJS(resultData404);
375
+ return throwException("Not Found", status, _responseText, _headers, result404);
376
+ });
377
+ }
378
+ else if (status !== 200 && status !== 204) {
379
+ return response.text().then((_responseText) => {
380
+ return throwException("An unexpected server error occurred.", status, _responseText, _headers);
381
+ });
382
+ }
383
+ return Promise.resolve(null);
384
+ }
385
+ /**
386
+ * Get all Documents.
387
+ * @param investorId (optional) Investor ID to filter by.
388
+ * @param preIPOCompanyId (optional) PreIPOCompanyID to filter by.
389
+ * @param preIPOCompanySPVId (optional) TargetId to filter by.
390
+ * @param preIPOCompanyInvestmentId (optional) PreIPOCompanyInvestmentId to filter by.
391
+ * @param transactionId (optional) TransactionId to filter by (InvestorSubscription or RegisteredFundSubscription).
392
+ * @param registeredFundId (optional) RegisteredFundId to filter by.
393
+ * @param documentType (optional) Type of document to filter by.
394
+ * @param page (optional) Number of the page to retrieve.
395
+ Defaults to 1 if not specified.
396
+ * @param pageSize (optional) Size of the page to retrieve.
397
+ Defaults to 25 if not specified.
398
+ * @param exactMatch (optional) Only returns the items exactly matching the parameters given.
399
+ * @param sortOrder (optional) Sort order for results.
400
+ * @return OK
401
+ */
402
+ getAllDocumentsV2(investorId, preIPOCompanyId, preIPOCompanySPVId, preIPOCompanyInvestmentId, transactionId, registeredFundId, documentType, page, pageSize, exactMatch, sortOrder) {
403
+ let url_ = this.baseUrl + "/primary/v2/document?";
404
+ if (investorId === null)
405
+ throw new globalThis.Error("The parameter 'investorId' cannot be null.");
406
+ else if (investorId !== undefined)
407
+ url_ += "investorId=" + encodeURIComponent("" + investorId) + "&";
408
+ if (preIPOCompanyId === null)
409
+ throw new globalThis.Error("The parameter 'preIPOCompanyId' cannot be null.");
410
+ else if (preIPOCompanyId !== undefined)
411
+ url_ += "preIPOCompanyId=" + encodeURIComponent("" + preIPOCompanyId) + "&";
412
+ if (preIPOCompanySPVId === null)
413
+ throw new globalThis.Error("The parameter 'preIPOCompanySPVId' cannot be null.");
414
+ else if (preIPOCompanySPVId !== undefined)
415
+ url_ += "preIPOCompanySPVId=" + encodeURIComponent("" + preIPOCompanySPVId) + "&";
416
+ if (preIPOCompanyInvestmentId === null)
417
+ throw new globalThis.Error("The parameter 'preIPOCompanyInvestmentId' cannot be null.");
418
+ else if (preIPOCompanyInvestmentId !== undefined)
419
+ url_ += "preIPOCompanyInvestmentId=" + encodeURIComponent("" + preIPOCompanyInvestmentId) + "&";
420
+ if (transactionId === null)
421
+ throw new globalThis.Error("The parameter 'transactionId' cannot be null.");
422
+ else if (transactionId !== undefined)
423
+ url_ += "transactionId=" + encodeURIComponent("" + transactionId) + "&";
424
+ if (registeredFundId === null)
425
+ throw new globalThis.Error("The parameter 'registeredFundId' cannot be null.");
426
+ else if (registeredFundId !== undefined)
427
+ url_ += "registeredFundId=" + encodeURIComponent("" + registeredFundId) + "&";
428
+ if (documentType === null)
429
+ throw new globalThis.Error("The parameter 'documentType' cannot be null.");
430
+ else if (documentType !== undefined)
431
+ url_ += "documentType=" + encodeURIComponent("" + documentType) + "&";
432
+ if (page === null)
433
+ throw new globalThis.Error("The parameter 'page' cannot be null.");
434
+ else if (page !== undefined)
435
+ url_ += "page=" + encodeURIComponent("" + page) + "&";
436
+ if (pageSize === null)
437
+ throw new globalThis.Error("The parameter 'pageSize' cannot be null.");
438
+ else if (pageSize !== undefined)
439
+ url_ += "pageSize=" + encodeURIComponent("" + pageSize) + "&";
440
+ if (exactMatch === null)
441
+ throw new globalThis.Error("The parameter 'exactMatch' cannot be null.");
442
+ else if (exactMatch !== undefined)
443
+ url_ += "exactMatch=" + encodeURIComponent("" + exactMatch) + "&";
444
+ if (sortOrder === null)
445
+ throw new globalThis.Error("The parameter 'sortOrder' cannot be null.");
446
+ else if (sortOrder !== undefined)
447
+ url_ += "sortOrder=" + encodeURIComponent("" + sortOrder) + "&";
448
+ url_ = url_.replace(/[?&]$/, "");
449
+ let options_ = {
450
+ method: "GET",
451
+ headers: {
452
+ "Accept": "application/json"
453
+ }
454
+ };
455
+ return this.http.fetch(url_, options_).then((_response) => {
456
+ return this.processGetAllDocumentsV2(_response);
457
+ });
458
+ }
459
+ processGetAllDocumentsV2(response) {
460
+ const status = response.status;
461
+ let _headers = {};
462
+ if (response.headers && response.headers.forEach) {
463
+ response.headers.forEach((v, k) => _headers[k] = v);
464
+ }
465
+ ;
466
+ if (status === 200) {
467
+ return response.text().then((_responseText) => {
468
+ let result200 = null;
469
+ let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
470
+ result200 = DocumentV2ApiResponse.fromJS(resultData200);
471
+ return result200;
472
+ });
473
+ }
474
+ else if (status !== 200 && status !== 204) {
475
+ return response.text().then((_responseText) => {
476
+ return throwException("An unexpected server error occurred.", status, _responseText, _headers);
477
+ });
478
+ }
479
+ return Promise.resolve(null);
480
+ }
481
+ /**
482
+ * Signs a document by a document ID.
483
+ * @param id The Document ID for the document to sign.
484
+ * @param body (optional) Data about the signing.
485
+ * @return No Content
486
+ */
487
+ signDocumentV2(id, body) {
488
+ let url_ = this.baseUrl + "/primary/v2/document/{id}/sign";
489
+ if (id === undefined || id === null)
490
+ throw new globalThis.Error("The parameter 'id' must be defined.");
491
+ url_ = url_.replace("{id}", encodeURIComponent("" + id));
492
+ url_ = url_.replace(/[?&]$/, "");
493
+ const content_ = JSON.stringify(body);
494
+ let options_ = {
495
+ body: content_,
496
+ method: "POST",
497
+ headers: {
498
+ "Content-Type": "application/json",
499
+ }
500
+ };
501
+ return this.http.fetch(url_, options_).then((_response) => {
502
+ return this.processSignDocumentV2(_response);
503
+ });
504
+ }
505
+ processSignDocumentV2(response) {
506
+ const status = response.status;
507
+ let _headers = {};
508
+ if (response.headers && response.headers.forEach) {
509
+ response.headers.forEach((v, k) => _headers[k] = v);
510
+ }
511
+ ;
512
+ if (status === 204) {
513
+ return response.text().then((_responseText) => {
514
+ return;
515
+ });
516
+ }
517
+ else if (status === 400) {
518
+ return response.text().then((_responseText) => {
519
+ let result400 = null;
520
+ let resultData400 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
521
+ result400 = ProblemDetails.fromJS(resultData400);
522
+ return throwException("Bad Request", status, _responseText, _headers, result400);
523
+ });
524
+ }
525
+ else if (status !== 200 && status !== 204) {
526
+ return response.text().then((_responseText) => {
527
+ return throwException("An unexpected server error occurred.", status, _responseText, _headers);
528
+ });
529
+ }
530
+ return Promise.resolve(null);
531
+ }
532
+ /**
533
+ * Downloads a document using document ID and token. The document is accessed anonymously using a secure token.
534
+ * @param id The Document ID for the document to download.
535
+ * @param token The secure token required to access the document.
536
+ */
537
+ downloadDocumentV2(id, token) {
538
+ let url_ = this.baseUrl + "/primary/v2/document/{id}/download/{token}";
539
+ if (id === undefined || id === null)
540
+ throw new globalThis.Error("The parameter 'id' must be defined.");
541
+ url_ = url_.replace("{id}", encodeURIComponent("" + id));
542
+ if (token === undefined || token === null)
543
+ throw new globalThis.Error("The parameter 'token' must be defined.");
544
+ url_ = url_.replace("{token}", encodeURIComponent("" + token));
545
+ url_ = url_.replace(/[?&]$/, "");
546
+ let options_ = {
547
+ method: "GET",
548
+ headers: {}
549
+ };
550
+ return this.http.fetch(url_, options_).then((_response) => {
551
+ return this.processDownloadDocumentV2(_response);
552
+ });
553
+ }
554
+ processDownloadDocumentV2(response) {
555
+ const status = response.status;
556
+ let _headers = {};
557
+ if (response.headers && response.headers.forEach) {
558
+ response.headers.forEach((v, k) => _headers[k] = v);
559
+ }
560
+ ;
561
+ if (status === 302) {
562
+ return response.text().then((_responseText) => {
563
+ return throwException("Found", status, _responseText, _headers);
564
+ });
565
+ }
566
+ else if (status === 403) {
567
+ return response.text().then((_responseText) => {
568
+ let result403 = null;
569
+ let resultData403 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
570
+ result403 = ProblemDetails.fromJS(resultData403);
571
+ return throwException("Forbidden", status, _responseText, _headers, result403);
572
+ });
573
+ }
574
+ else if (status === 404) {
575
+ return response.text().then((_responseText) => {
576
+ let result404 = null;
577
+ let resultData404 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
578
+ result404 = ProblemDetails.fromJS(resultData404);
579
+ return throwException("Not Found", status, _responseText, _headers, result404);
580
+ });
581
+ }
582
+ else if (status !== 200 && status !== 204) {
583
+ return response.text().then((_responseText) => {
584
+ return throwException("An unexpected server error occurred.", status, _responseText, _headers);
585
+ });
586
+ }
587
+ return Promise.resolve(null);
588
+ }
330
589
  /**
331
590
  * Create a Financial Advisor.
332
591
  * @param body (optional) create Financial Advisor information.
@@ -7137,13 +7396,18 @@ export class Client {
7137
7396
  /**
7138
7397
  * Get an order by ID.
7139
7398
  * @param id The order ID.
7399
+ * @param includeDocuments (optional) Optional flag to include associated documents.
7140
7400
  * @return OK
7141
7401
  */
7142
- getTransactionById(id) {
7143
- let url_ = this.baseUrl + "/primary/v2/transaction/{id}";
7402
+ getTransactionById(id, includeDocuments) {
7403
+ let url_ = this.baseUrl + "/primary/v2/transaction/{id}?";
7144
7404
  if (id === undefined || id === null)
7145
7405
  throw new globalThis.Error("The parameter 'id' must be defined.");
7146
7406
  url_ = url_.replace("{id}", encodeURIComponent("" + id));
7407
+ if (includeDocuments === null)
7408
+ throw new globalThis.Error("The parameter 'includeDocuments' cannot be null.");
7409
+ else if (includeDocuments !== undefined)
7410
+ url_ += "includeDocuments=" + encodeURIComponent("" + includeDocuments) + "&";
7147
7411
  url_ = url_.replace(/[?&]$/, "");
7148
7412
  let options_ = {
7149
7413
  method: "GET",
@@ -8377,7 +8641,7 @@ export class BulkPreIPOCompanySPV {
8377
8641
  if (Array.isArray(_data["documents"])) {
8378
8642
  this.documents = [];
8379
8643
  for (let item of _data["documents"])
8380
- this.documents.push(Document.fromJS(item));
8644
+ this.documents.push(DocumentV2.fromJS(item));
8381
8645
  }
8382
8646
  this.spvAccountID = _data["spvAccountID"];
8383
8647
  this.preIPOCompanyName = _data["preIPOCompanyName"];
@@ -9335,8 +9599,8 @@ export class DocumentApiResponse {
9335
9599
  return data;
9336
9600
  }
9337
9601
  }
9338
- /** Represents an entity investor within the primary offering. */
9339
- export class EntityInvestor {
9602
+ /** Represents a document associated with the fund admin. */
9603
+ export class DocumentV2 {
9340
9604
  constructor(data) {
9341
9605
  if (data) {
9342
9606
  for (var property in data) {
@@ -9348,19 +9612,106 @@ export class EntityInvestor {
9348
9612
  init(_data) {
9349
9613
  if (_data) {
9350
9614
  this.id = _data["id"];
9351
- this.dbaName = _data["dbaName"];
9352
- this.beneficialOwnershipCount = _data["beneficialOwnershipCount"];
9353
- this.phone = _data["phone"];
9354
- this.phoneCountryCode = _data["phoneCountryCode"];
9355
- this.entityType = _data["entityType"];
9356
- this.jurisdiction = _data["jurisdiction"];
9357
- this.formationDate = _data["formationDate"] ? new Date(_data["formationDate"].toString()) : undefined;
9358
- this.taxClassification = _data["taxClassification"];
9359
- this.taxId = _data["taxId"];
9360
- this.street = _data["street"];
9361
- this.city = _data["city"];
9362
- this.state = _data["state"];
9363
- this.zipCode = _data["zipCode"];
9615
+ this.name = _data["name"];
9616
+ this.url = _data["url"];
9617
+ this.investorId = _data["investorId"];
9618
+ this.preIPOCompanyId = _data["preIPOCompanyId"];
9619
+ this.preIPOCompanyInvestmentId = _data["preIPOCompanyInvestmentId"];
9620
+ this.preIPOCompanySPVId = _data["preIPOCompanySPVId"];
9621
+ this.partnerId = _data["partnerId"];
9622
+ this.registeredFundId = _data["registeredFundId"];
9623
+ this.transactionId = _data["transactionId"];
9624
+ this.type = _data["type"];
9625
+ this.taxYear = _data["taxYear"];
9626
+ this.description = _data["description"];
9627
+ }
9628
+ }
9629
+ static fromJS(data) {
9630
+ data = typeof data === 'object' ? data : {};
9631
+ let result = new DocumentV2();
9632
+ result.init(data);
9633
+ return result;
9634
+ }
9635
+ toJSON(data) {
9636
+ data = typeof data === 'object' ? data : {};
9637
+ data["id"] = this.id;
9638
+ data["name"] = this.name;
9639
+ data["url"] = this.url;
9640
+ data["investorId"] = this.investorId;
9641
+ data["preIPOCompanyId"] = this.preIPOCompanyId;
9642
+ data["preIPOCompanyInvestmentId"] = this.preIPOCompanyInvestmentId;
9643
+ data["preIPOCompanySPVId"] = this.preIPOCompanySPVId;
9644
+ data["partnerId"] = this.partnerId;
9645
+ data["registeredFundId"] = this.registeredFundId;
9646
+ data["transactionId"] = this.transactionId;
9647
+ data["type"] = this.type;
9648
+ data["taxYear"] = this.taxYear;
9649
+ data["description"] = this.description;
9650
+ return data;
9651
+ }
9652
+ }
9653
+ export class DocumentV2ApiResponse {
9654
+ constructor(data) {
9655
+ if (data) {
9656
+ for (var property in data) {
9657
+ if (data.hasOwnProperty(property))
9658
+ this[property] = data[property];
9659
+ }
9660
+ }
9661
+ }
9662
+ init(_data) {
9663
+ if (_data) {
9664
+ if (Array.isArray(_data["items"])) {
9665
+ this.items = [];
9666
+ for (let item of _data["items"])
9667
+ this.items.push(DocumentV2.fromJS(item));
9668
+ }
9669
+ this.pagination = _data["pagination"] ? Pagination.fromJS(_data["pagination"]) : undefined;
9670
+ }
9671
+ }
9672
+ static fromJS(data) {
9673
+ data = typeof data === 'object' ? data : {};
9674
+ let result = new DocumentV2ApiResponse();
9675
+ result.init(data);
9676
+ return result;
9677
+ }
9678
+ toJSON(data) {
9679
+ data = typeof data === 'object' ? data : {};
9680
+ if (Array.isArray(this.items)) {
9681
+ data["items"] = [];
9682
+ for (let item of this.items)
9683
+ data["items"].push(item ? item.toJSON() : undefined);
9684
+ }
9685
+ data["pagination"] = this.pagination ? this.pagination.toJSON() : undefined;
9686
+ return data;
9687
+ }
9688
+ }
9689
+ /** Represents an entity investor within the primary offering. */
9690
+ export class EntityInvestor {
9691
+ constructor(data) {
9692
+ if (data) {
9693
+ for (var property in data) {
9694
+ if (data.hasOwnProperty(property))
9695
+ this[property] = data[property];
9696
+ }
9697
+ }
9698
+ }
9699
+ init(_data) {
9700
+ if (_data) {
9701
+ this.id = _data["id"];
9702
+ this.dbaName = _data["dbaName"];
9703
+ this.beneficialOwnershipCount = _data["beneficialOwnershipCount"];
9704
+ this.phone = _data["phone"];
9705
+ this.phoneCountryCode = _data["phoneCountryCode"];
9706
+ this.entityType = _data["entityType"];
9707
+ this.jurisdiction = _data["jurisdiction"];
9708
+ this.formationDate = _data["formationDate"] ? new Date(_data["formationDate"].toString()) : undefined;
9709
+ this.taxClassification = _data["taxClassification"];
9710
+ this.taxId = _data["taxId"];
9711
+ this.street = _data["street"];
9712
+ this.city = _data["city"];
9713
+ this.state = _data["state"];
9714
+ this.zipCode = _data["zipCode"];
9364
9715
  this.countryCode = _data["countryCode"];
9365
9716
  this.mailingAddressStreet = _data["mailingAddressStreet"];
9366
9717
  this.mailingAddressCity = _data["mailingAddressCity"];
@@ -13309,7 +13660,7 @@ export class PreIPOCompanySPV {
13309
13660
  if (Array.isArray(_data["documents"])) {
13310
13661
  this.documents = [];
13311
13662
  for (let item of _data["documents"])
13312
- this.documents.push(Document.fromJS(item));
13663
+ this.documents.push(DocumentV2.fromJS(item));
13313
13664
  }
13314
13665
  this.spvAccountID = _data["spvAccountID"];
13315
13666
  this.preIPOCompanyName = _data["preIPOCompanyName"];
@@ -13958,7 +14309,7 @@ export class RegisteredFund {
13958
14309
  if (Array.isArray(_data["documents"])) {
13959
14310
  this.documents = [];
13960
14311
  for (let item of _data["documents"])
13961
- this.documents.push(Document.fromJS(item));
14312
+ this.documents.push(DocumentV2.fromJS(item));
13962
14313
  }
13963
14314
  this.thirdPartyData = _data["thirdPartyData"] ? RegisteredFundThirdPartyData.fromJS(_data["thirdPartyData"]) : undefined;
13964
14315
  }
@@ -14403,6 +14754,11 @@ export class Transaction {
14403
14754
  this.targetName = _data["targetName"];
14404
14755
  this.companyName = _data["companyName"];
14405
14756
  this.referenceId = _data["referenceId"];
14757
+ if (Array.isArray(_data["documents"])) {
14758
+ this.documents = [];
14759
+ for (let item of _data["documents"])
14760
+ this.documents.push(DocumentV2.fromJS(item));
14761
+ }
14406
14762
  }
14407
14763
  }
14408
14764
  static fromJS(data) {
@@ -14429,6 +14785,11 @@ export class Transaction {
14429
14785
  data["targetName"] = this.targetName;
14430
14786
  data["companyName"] = this.companyName;
14431
14787
  data["referenceId"] = this.referenceId;
14788
+ if (Array.isArray(this.documents)) {
14789
+ data["documents"] = [];
14790
+ for (let item of this.documents)
14791
+ data["documents"].push(item ? item.toJSON() : undefined);
14792
+ }
14432
14793
  return data;
14433
14794
  }
14434
14795
  }
@@ -15825,6 +16186,67 @@ export var SortOrder;
15825
16186
  SortOrder["Ascending"] = "Ascending";
15826
16187
  SortOrder["Descending"] = "Descending";
15827
16188
  })(SortOrder || (SortOrder = {}));
16189
+ export var DocumentType2;
16190
+ (function (DocumentType2) {
16191
+ DocumentType2["BUSINESS_FORMATION"] = "BUSINESS_FORMATION";
16192
+ DocumentType2["BANK_STATEMENT"] = "BANK_STATEMENT";
16193
+ DocumentType2["CAPITAL_ACCT_STATEMENT"] = "CAPITAL_ACCT_STATEMENT";
16194
+ DocumentType2["CAPITAL_CALL_NOTICE"] = "CAPITAL_CALL_NOTICE";
16195
+ DocumentType2["CARRY_SPLIT_AGREEMENT"] = "CARRY_SPLIT_AGREEMENT";
16196
+ DocumentType2["CERTIFICATE_OF_FORMATION"] = "CERTIFICATE_OF_FORMATION";
16197
+ DocumentType2["COMMITMENT_AGREEMENT"] = "COMMITMENT_AGREEMENT";
16198
+ DocumentType2["COMPLIANCE"] = "COMPLIANCE";
16199
+ DocumentType2["DRIVER_LICENSE"] = "DRIVER_LICENSE";
16200
+ DocumentType2["DRAFT_INVESTMENT"] = "DRAFT_INVESTMENT";
16201
+ DocumentType2["EIN_FORMATION"] = "EIN_FORMATION";
16202
+ DocumentType2["FINAL_INVESTMENT"] = "FINAL_INVESTMENT";
16203
+ DocumentType2["FINANCIAL_STATEMENT"] = "FINANCIAL_STATEMENT";
16204
+ DocumentType2["INVESTOR_WIRE_INSTRUCTIONS"] = "INVESTOR_WIRE_INSTRUCTIONS";
16205
+ DocumentType2["INVOICE"] = "INVOICE";
16206
+ DocumentType2["K1"] = "K1";
16207
+ DocumentType2["LOCAL_OR_TRIBE_ID"] = "LOCAL_OR_TRIBE_ID";
16208
+ DocumentType2["MASTER_AGREEMENT"] = "MASTER_AGREEMENT";
16209
+ DocumentType2["MSA"] = "MSA";
16210
+ DocumentType2["OTHER"] = "OTHER";
16211
+ DocumentType2["PASSPORT"] = "PASSPORT";
16212
+ DocumentType2["PASSPORT_FOREIGN"] = "PASSPORT_FOREIGN";
16213
+ DocumentType2["PASSPORT_US"] = "PASSPORT_US";
16214
+ DocumentType2["PITCH_DECK"] = "PITCH_DECK";
16215
+ DocumentType2["POST_CLOSING_DOCUMENTS"] = "POST_CLOSING_DOCUMENTS";
16216
+ DocumentType2["PROOF_OF_SOURCE_OF_FUNDS"] = "PROOF_OF_SOURCE_OF_FUNDS";
16217
+ DocumentType2["PX_FILE"] = "PX_FILE";
16218
+ DocumentType2["SCFUND_AGREEMENT"] = "SCFUND_AGREEMENT";
16219
+ DocumentType2["SERIES_AGREEMENT"] = "SERIES_AGREEMENT";
16220
+ DocumentType2["SIDE_LETTER"] = "SIDE_LETTER";
16221
+ DocumentType2["SIGNABLE_AGREEMENT"] = "SIGNABLE_AGREEMENT";
16222
+ DocumentType2["SOW"] = "SOW";
16223
+ DocumentType2["STATEID"] = "STATEID";
16224
+ DocumentType2["SUBSCRIPTION_AGREEMENT"] = "SUBSCRIPTION_AGREEMENT";
16225
+ DocumentType2["SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED"] = "SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED";
16226
+ DocumentType2["SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM"] = "SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM";
16227
+ DocumentType2["TARGET_CAPTABLE"] = "TARGET_CAPTABLE";
16228
+ DocumentType2["TERM_SHEET"] = "TERM_SHEET";
16229
+ DocumentType2["TRANSFER_CONSENT_FORM"] = "TRANSFER_CONSENT_FORM";
16230
+ DocumentType2["TRANSFER_OF_INTEREST_AGREEMENT"] = "TRANSFER_OF_INTEREST_AGREEMENT";
16231
+ DocumentType2["W8"] = "W8";
16232
+ DocumentType2["W8_BEN"] = "W8_BEN";
16233
+ DocumentType2["W8_BENE"] = "W8_BENE";
16234
+ DocumentType2["W9"] = "W9";
16235
+ DocumentType2["LayeredSPVInvestmentDeck_Monark"] = "LayeredSPVInvestmentDeck_Monark";
16236
+ DocumentType2["InvestmentMemo_Monark"] = "InvestmentMemo_Monark";
16237
+ DocumentType2["DealMemo_Monark"] = "DealMemo_Monark";
16238
+ DocumentType2["RiskFactors_Monark"] = "RiskFactors_Monark";
16239
+ DocumentType2["PrivatePlacementMemorandum_Monark"] = "PrivatePlacementMemorandum_Monark";
16240
+ DocumentType2["InvestorLogo_Monark"] = "InvestorLogo_Monark";
16241
+ DocumentType2["SubscriptionAgreementPreview_Monark"] = "SubscriptionAgreementPreview_Monark";
16242
+ DocumentType2["DealDiligence_Monark"] = "DealDiligence_Monark";
16243
+ DocumentType2["NoLienAttestation_Monark"] = "NoLienAttestation_Monark";
16244
+ DocumentType2["KeyTerms_Monark"] = "KeyTerms_Monark";
16245
+ DocumentType2["RegisteredFundSubscriptionAgreement_Monark"] = "RegisteredFundSubscriptionAgreement_Monark";
16246
+ DocumentType2["RegisteredFundProspectus_Monark"] = "RegisteredFundProspectus_Monark";
16247
+ DocumentType2["RegisteredFundFactCard_Monark"] = "RegisteredFundFactCard_Monark";
16248
+ DocumentType2["RegisteredFundQuiltChart_Monark"] = "RegisteredFundQuiltChart_Monark";
16249
+ })(DocumentType2 || (DocumentType2 = {}));
15828
16250
  export var SortOrder2;
15829
16251
  (function (SortOrder2) {
15830
16252
  SortOrder2["Ascending"] = "Ascending";
@@ -15835,33 +16257,38 @@ export var SortOrder3;
15835
16257
  SortOrder3["Ascending"] = "Ascending";
15836
16258
  SortOrder3["Descending"] = "Descending";
15837
16259
  })(SortOrder3 || (SortOrder3 = {}));
16260
+ export var SortOrder4;
16261
+ (function (SortOrder4) {
16262
+ SortOrder4["Ascending"] = "Ascending";
16263
+ SortOrder4["Descending"] = "Descending";
16264
+ })(SortOrder4 || (SortOrder4 = {}));
15838
16265
  export var SortProperty;
15839
16266
  (function (SortProperty) {
15840
16267
  SortProperty["UpdatedAt"] = "UpdatedAt";
15841
16268
  SortProperty["CreatedAt"] = "CreatedAt";
15842
16269
  SortProperty["NotionalAmount"] = "NotionalAmount";
15843
16270
  })(SortProperty || (SortProperty = {}));
15844
- export var SortOrder4;
15845
- (function (SortOrder4) {
15846
- SortOrder4["Ascending"] = "Ascending";
15847
- SortOrder4["Descending"] = "Descending";
15848
- })(SortOrder4 || (SortOrder4 = {}));
16271
+ export var SortOrder5;
16272
+ (function (SortOrder5) {
16273
+ SortOrder5["Ascending"] = "Ascending";
16274
+ SortOrder5["Descending"] = "Descending";
16275
+ })(SortOrder5 || (SortOrder5 = {}));
15849
16276
  export var SortProperty2;
15850
16277
  (function (SortProperty2) {
15851
16278
  SortProperty2["UpdatedAt"] = "UpdatedAt";
15852
16279
  SortProperty2["CreatedAt"] = "CreatedAt";
15853
16280
  SortProperty2["NotionalAmount"] = "NotionalAmount";
15854
16281
  })(SortProperty2 || (SortProperty2 = {}));
15855
- export var SortOrder5;
15856
- (function (SortOrder5) {
15857
- SortOrder5["Ascending"] = "Ascending";
15858
- SortOrder5["Descending"] = "Descending";
15859
- })(SortOrder5 || (SortOrder5 = {}));
15860
16282
  export var SortOrder6;
15861
16283
  (function (SortOrder6) {
15862
16284
  SortOrder6["Ascending"] = "Ascending";
15863
16285
  SortOrder6["Descending"] = "Descending";
15864
16286
  })(SortOrder6 || (SortOrder6 = {}));
16287
+ export var SortOrder7;
16288
+ (function (SortOrder7) {
16289
+ SortOrder7["Ascending"] = "Ascending";
16290
+ SortOrder7["Descending"] = "Descending";
16291
+ })(SortOrder7 || (SortOrder7 = {}));
15865
16292
  export var InvestorStatus;
15866
16293
  (function (InvestorStatus) {
15867
16294
  InvestorStatus["Pending"] = "Pending";
@@ -15877,11 +16304,11 @@ export var Status;
15877
16304
  Status["Rejected"] = "Rejected";
15878
16305
  Status["Failed"] = "Failed";
15879
16306
  })(Status || (Status = {}));
15880
- export var SortOrder7;
15881
- (function (SortOrder7) {
15882
- SortOrder7["Ascending"] = "Ascending";
15883
- SortOrder7["Descending"] = "Descending";
15884
- })(SortOrder7 || (SortOrder7 = {}));
16307
+ export var SortOrder8;
16308
+ (function (SortOrder8) {
16309
+ SortOrder8["Ascending"] = "Ascending";
16310
+ SortOrder8["Descending"] = "Descending";
16311
+ })(SortOrder8 || (SortOrder8 = {}));
15885
16312
  export var SortBy;
15886
16313
  (function (SortBy) {
15887
16314
  SortBy["UpdatedAt"] = "UpdatedAt";
@@ -15889,11 +16316,11 @@ export var SortBy;
15889
16316
  SortBy["LastValuation"] = "LastValuation";
15890
16317
  SortBy["TotalFunding"] = "TotalFunding";
15891
16318
  })(SortBy || (SortBy = {}));
15892
- export var SortOrder8;
15893
- (function (SortOrder8) {
15894
- SortOrder8["Ascending"] = "Ascending";
15895
- SortOrder8["Descending"] = "Descending";
15896
- })(SortOrder8 || (SortOrder8 = {}));
16319
+ export var SortOrder9;
16320
+ (function (SortOrder9) {
16321
+ SortOrder9["Ascending"] = "Ascending";
16322
+ SortOrder9["Descending"] = "Descending";
16323
+ })(SortOrder9 || (SortOrder9 = {}));
15897
16324
  export var FilterBy;
15898
16325
  (function (FilterBy) {
15899
16326
  FilterBy["Company"] = "Company";
@@ -15908,11 +16335,6 @@ export var Includes;
15908
16335
  Includes["Investments"] = "Investments";
15909
16336
  Includes["Spvs"] = "Spvs";
15910
16337
  })(Includes || (Includes = {}));
15911
- export var SortOrder9;
15912
- (function (SortOrder9) {
15913
- SortOrder9["Ascending"] = "Ascending";
15914
- SortOrder9["Descending"] = "Descending";
15915
- })(SortOrder9 || (SortOrder9 = {}));
15916
16338
  export var SortOrder10;
15917
16339
  (function (SortOrder10) {
15918
16340
  SortOrder10["Ascending"] = "Ascending";
@@ -15928,6 +16350,11 @@ export var SortOrder12;
15928
16350
  SortOrder12["Ascending"] = "Ascending";
15929
16351
  SortOrder12["Descending"] = "Descending";
15930
16352
  })(SortOrder12 || (SortOrder12 = {}));
16353
+ export var SortOrder13;
16354
+ (function (SortOrder13) {
16355
+ SortOrder13["Ascending"] = "Ascending";
16356
+ SortOrder13["Descending"] = "Descending";
16357
+ })(SortOrder13 || (SortOrder13 = {}));
15931
16358
  export var ResearchType;
15932
16359
  (function (ResearchType) {
15933
16360
  ResearchType["INTERVIEW"] = "INTERVIEW";
@@ -15982,11 +16409,11 @@ export var ExemptionsClaimed;
15982
16409
  ExemptionsClaimed["SECURITIES_ACT_SECTION_3_c_14"] = "SECURITIES_ACT_SECTION_3_c_14";
15983
16410
  ExemptionsClaimed["Reg_S"] = "Reg_S";
15984
16411
  })(ExemptionsClaimed || (ExemptionsClaimed = {}));
15985
- export var SortOrder13;
15986
- (function (SortOrder13) {
15987
- SortOrder13["Ascending"] = "Ascending";
15988
- SortOrder13["Descending"] = "Descending";
15989
- })(SortOrder13 || (SortOrder13 = {}));
16412
+ export var SortOrder14;
16413
+ (function (SortOrder14) {
16414
+ SortOrder14["Ascending"] = "Ascending";
16415
+ SortOrder14["Descending"] = "Descending";
16416
+ })(SortOrder14 || (SortOrder14 = {}));
15990
16417
  export var SortBy2;
15991
16418
  (function (SortBy2) {
15992
16419
  SortBy2["UpdatedAt"] = "UpdatedAt";
@@ -15998,11 +16425,6 @@ export var SortBy2;
15998
16425
  SortBy2["Valuation"] = "Valuation";
15999
16426
  SortBy2["MinCommitmentAmount"] = "MinCommitmentAmount";
16000
16427
  })(SortBy2 || (SortBy2 = {}));
16001
- export var SortOrder14;
16002
- (function (SortOrder14) {
16003
- SortOrder14["Ascending"] = "Ascending";
16004
- SortOrder14["Descending"] = "Descending";
16005
- })(SortOrder14 || (SortOrder14 = {}));
16006
16428
  export var SortOrder15;
16007
16429
  (function (SortOrder15) {
16008
16430
  SortOrder15["Ascending"] = "Ascending";
@@ -16038,6 +16460,11 @@ export var SortOrder21;
16038
16460
  SortOrder21["Ascending"] = "Ascending";
16039
16461
  SortOrder21["Descending"] = "Descending";
16040
16462
  })(SortOrder21 || (SortOrder21 = {}));
16463
+ export var SortOrder22;
16464
+ (function (SortOrder22) {
16465
+ SortOrder22["Ascending"] = "Ascending";
16466
+ SortOrder22["Descending"] = "Descending";
16467
+ })(SortOrder22 || (SortOrder22 = {}));
16041
16468
  export var TargetAssetType;
16042
16469
  (function (TargetAssetType) {
16043
16470
  TargetAssetType["PreIPOCompanySPV"] = "PreIPOCompanySPV";
@@ -16056,16 +16483,16 @@ export var TargetAssetType3;
16056
16483
  TargetAssetType3["RegisteredFund"] = "RegisteredFund";
16057
16484
  TargetAssetType3["PreIPOCompany"] = "PreIPOCompany";
16058
16485
  })(TargetAssetType3 || (TargetAssetType3 = {}));
16059
- export var SortOrder22;
16060
- (function (SortOrder22) {
16061
- SortOrder22["Ascending"] = "Ascending";
16062
- SortOrder22["Descending"] = "Descending";
16063
- })(SortOrder22 || (SortOrder22 = {}));
16064
16486
  export var SortOrder23;
16065
16487
  (function (SortOrder23) {
16066
16488
  SortOrder23["Ascending"] = "Ascending";
16067
16489
  SortOrder23["Descending"] = "Descending";
16068
16490
  })(SortOrder23 || (SortOrder23 = {}));
16491
+ export var SortOrder24;
16492
+ (function (SortOrder24) {
16493
+ SortOrder24["Ascending"] = "Ascending";
16494
+ SortOrder24["Descending"] = "Descending";
16495
+ })(SortOrder24 || (SortOrder24 = {}));
16069
16496
  export var EventType;
16070
16497
  (function (EventType) {
16071
16498
  EventType["PreIPOCompany"] = "PreIPOCompany";
@@ -16255,67 +16682,128 @@ export var CreateTransactionSide;
16255
16682
  CreateTransactionSide["Subscription"] = "Subscription";
16256
16683
  CreateTransactionSide["Redemption"] = "Redemption";
16257
16684
  })(CreateTransactionSide || (CreateTransactionSide = {}));
16258
- export var DocumentType2;
16259
- (function (DocumentType2) {
16260
- DocumentType2["BUSINESS_FORMATION"] = "BUSINESS_FORMATION";
16261
- DocumentType2["BANK_STATEMENT"] = "BANK_STATEMENT";
16262
- DocumentType2["CAPITAL_ACCT_STATEMENT"] = "CAPITAL_ACCT_STATEMENT";
16263
- DocumentType2["CAPITAL_CALL_NOTICE"] = "CAPITAL_CALL_NOTICE";
16264
- DocumentType2["CARRY_SPLIT_AGREEMENT"] = "CARRY_SPLIT_AGREEMENT";
16265
- DocumentType2["CERTIFICATE_OF_FORMATION"] = "CERTIFICATE_OF_FORMATION";
16266
- DocumentType2["COMMITMENT_AGREEMENT"] = "COMMITMENT_AGREEMENT";
16267
- DocumentType2["COMPLIANCE"] = "COMPLIANCE";
16268
- DocumentType2["DRIVER_LICENSE"] = "DRIVER_LICENSE";
16269
- DocumentType2["DRAFT_INVESTMENT"] = "DRAFT_INVESTMENT";
16270
- DocumentType2["EIN_FORMATION"] = "EIN_FORMATION";
16271
- DocumentType2["FINAL_INVESTMENT"] = "FINAL_INVESTMENT";
16272
- DocumentType2["FINANCIAL_STATEMENT"] = "FINANCIAL_STATEMENT";
16273
- DocumentType2["INVESTOR_WIRE_INSTRUCTIONS"] = "INVESTOR_WIRE_INSTRUCTIONS";
16274
- DocumentType2["INVOICE"] = "INVOICE";
16275
- DocumentType2["K1"] = "K1";
16276
- DocumentType2["LOCAL_OR_TRIBE_ID"] = "LOCAL_OR_TRIBE_ID";
16277
- DocumentType2["MASTER_AGREEMENT"] = "MASTER_AGREEMENT";
16278
- DocumentType2["MSA"] = "MSA";
16279
- DocumentType2["OTHER"] = "OTHER";
16280
- DocumentType2["PASSPORT"] = "PASSPORT";
16281
- DocumentType2["PASSPORT_FOREIGN"] = "PASSPORT_FOREIGN";
16282
- DocumentType2["PASSPORT_US"] = "PASSPORT_US";
16283
- DocumentType2["PITCH_DECK"] = "PITCH_DECK";
16284
- DocumentType2["POST_CLOSING_DOCUMENTS"] = "POST_CLOSING_DOCUMENTS";
16285
- DocumentType2["PROOF_OF_SOURCE_OF_FUNDS"] = "PROOF_OF_SOURCE_OF_FUNDS";
16286
- DocumentType2["PX_FILE"] = "PX_FILE";
16287
- DocumentType2["SCFUND_AGREEMENT"] = "SCFUND_AGREEMENT";
16288
- DocumentType2["SERIES_AGREEMENT"] = "SERIES_AGREEMENT";
16289
- DocumentType2["SIDE_LETTER"] = "SIDE_LETTER";
16290
- DocumentType2["SIGNABLE_AGREEMENT"] = "SIGNABLE_AGREEMENT";
16291
- DocumentType2["SOW"] = "SOW";
16292
- DocumentType2["STATEID"] = "STATEID";
16293
- DocumentType2["SUBSCRIPTION_AGREEMENT"] = "SUBSCRIPTION_AGREEMENT";
16294
- DocumentType2["SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED"] = "SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED";
16295
- DocumentType2["SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM"] = "SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM";
16296
- DocumentType2["TARGET_CAPTABLE"] = "TARGET_CAPTABLE";
16297
- DocumentType2["TERM_SHEET"] = "TERM_SHEET";
16298
- DocumentType2["TRANSFER_CONSENT_FORM"] = "TRANSFER_CONSENT_FORM";
16299
- DocumentType2["TRANSFER_OF_INTEREST_AGREEMENT"] = "TRANSFER_OF_INTEREST_AGREEMENT";
16300
- DocumentType2["W8"] = "W8";
16301
- DocumentType2["W8_BEN"] = "W8_BEN";
16302
- DocumentType2["W8_BENE"] = "W8_BENE";
16303
- DocumentType2["W9"] = "W9";
16304
- DocumentType2["LayeredSPVInvestmentDeck_Monark"] = "LayeredSPVInvestmentDeck_Monark";
16305
- DocumentType2["InvestmentMemo_Monark"] = "InvestmentMemo_Monark";
16306
- DocumentType2["DealMemo_Monark"] = "DealMemo_Monark";
16307
- DocumentType2["RiskFactors_Monark"] = "RiskFactors_Monark";
16308
- DocumentType2["PrivatePlacementMemorandum_Monark"] = "PrivatePlacementMemorandum_Monark";
16309
- DocumentType2["InvestorLogo_Monark"] = "InvestorLogo_Monark";
16310
- DocumentType2["SubscriptionAgreementPreview_Monark"] = "SubscriptionAgreementPreview_Monark";
16311
- DocumentType2["DealDiligence_Monark"] = "DealDiligence_Monark";
16312
- DocumentType2["NoLienAttestation_Monark"] = "NoLienAttestation_Monark";
16313
- DocumentType2["KeyTerms_Monark"] = "KeyTerms_Monark";
16314
- DocumentType2["RegisteredFundSubscriptionAgreement_Monark"] = "RegisteredFundSubscriptionAgreement_Monark";
16315
- DocumentType2["RegisteredFundProspectus_Monark"] = "RegisteredFundProspectus_Monark";
16316
- DocumentType2["RegisteredFundFactCard_Monark"] = "RegisteredFundFactCard_Monark";
16317
- DocumentType2["RegisteredFundQuiltChart_Monark"] = "RegisteredFundQuiltChart_Monark";
16318
- })(DocumentType2 || (DocumentType2 = {}));
16685
+ export var DocumentType3;
16686
+ (function (DocumentType3) {
16687
+ DocumentType3["BUSINESS_FORMATION"] = "BUSINESS_FORMATION";
16688
+ DocumentType3["BANK_STATEMENT"] = "BANK_STATEMENT";
16689
+ DocumentType3["CAPITAL_ACCT_STATEMENT"] = "CAPITAL_ACCT_STATEMENT";
16690
+ DocumentType3["CAPITAL_CALL_NOTICE"] = "CAPITAL_CALL_NOTICE";
16691
+ DocumentType3["CARRY_SPLIT_AGREEMENT"] = "CARRY_SPLIT_AGREEMENT";
16692
+ DocumentType3["CERTIFICATE_OF_FORMATION"] = "CERTIFICATE_OF_FORMATION";
16693
+ DocumentType3["COMMITMENT_AGREEMENT"] = "COMMITMENT_AGREEMENT";
16694
+ DocumentType3["COMPLIANCE"] = "COMPLIANCE";
16695
+ DocumentType3["DRIVER_LICENSE"] = "DRIVER_LICENSE";
16696
+ DocumentType3["DRAFT_INVESTMENT"] = "DRAFT_INVESTMENT";
16697
+ DocumentType3["EIN_FORMATION"] = "EIN_FORMATION";
16698
+ DocumentType3["FINAL_INVESTMENT"] = "FINAL_INVESTMENT";
16699
+ DocumentType3["FINANCIAL_STATEMENT"] = "FINANCIAL_STATEMENT";
16700
+ DocumentType3["INVESTOR_WIRE_INSTRUCTIONS"] = "INVESTOR_WIRE_INSTRUCTIONS";
16701
+ DocumentType3["INVOICE"] = "INVOICE";
16702
+ DocumentType3["K1"] = "K1";
16703
+ DocumentType3["LOCAL_OR_TRIBE_ID"] = "LOCAL_OR_TRIBE_ID";
16704
+ DocumentType3["MASTER_AGREEMENT"] = "MASTER_AGREEMENT";
16705
+ DocumentType3["MSA"] = "MSA";
16706
+ DocumentType3["OTHER"] = "OTHER";
16707
+ DocumentType3["PASSPORT"] = "PASSPORT";
16708
+ DocumentType3["PASSPORT_FOREIGN"] = "PASSPORT_FOREIGN";
16709
+ DocumentType3["PASSPORT_US"] = "PASSPORT_US";
16710
+ DocumentType3["PITCH_DECK"] = "PITCH_DECK";
16711
+ DocumentType3["POST_CLOSING_DOCUMENTS"] = "POST_CLOSING_DOCUMENTS";
16712
+ DocumentType3["PROOF_OF_SOURCE_OF_FUNDS"] = "PROOF_OF_SOURCE_OF_FUNDS";
16713
+ DocumentType3["PX_FILE"] = "PX_FILE";
16714
+ DocumentType3["SCFUND_AGREEMENT"] = "SCFUND_AGREEMENT";
16715
+ DocumentType3["SERIES_AGREEMENT"] = "SERIES_AGREEMENT";
16716
+ DocumentType3["SIDE_LETTER"] = "SIDE_LETTER";
16717
+ DocumentType3["SIGNABLE_AGREEMENT"] = "SIGNABLE_AGREEMENT";
16718
+ DocumentType3["SOW"] = "SOW";
16719
+ DocumentType3["STATEID"] = "STATEID";
16720
+ DocumentType3["SUBSCRIPTION_AGREEMENT"] = "SUBSCRIPTION_AGREEMENT";
16721
+ DocumentType3["SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED"] = "SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED";
16722
+ DocumentType3["SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM"] = "SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM";
16723
+ DocumentType3["TARGET_CAPTABLE"] = "TARGET_CAPTABLE";
16724
+ DocumentType3["TERM_SHEET"] = "TERM_SHEET";
16725
+ DocumentType3["TRANSFER_CONSENT_FORM"] = "TRANSFER_CONSENT_FORM";
16726
+ DocumentType3["TRANSFER_OF_INTEREST_AGREEMENT"] = "TRANSFER_OF_INTEREST_AGREEMENT";
16727
+ DocumentType3["W8"] = "W8";
16728
+ DocumentType3["W8_BEN"] = "W8_BEN";
16729
+ DocumentType3["W8_BENE"] = "W8_BENE";
16730
+ DocumentType3["W9"] = "W9";
16731
+ DocumentType3["LayeredSPVInvestmentDeck_Monark"] = "LayeredSPVInvestmentDeck_Monark";
16732
+ DocumentType3["InvestmentMemo_Monark"] = "InvestmentMemo_Monark";
16733
+ DocumentType3["DealMemo_Monark"] = "DealMemo_Monark";
16734
+ DocumentType3["RiskFactors_Monark"] = "RiskFactors_Monark";
16735
+ DocumentType3["PrivatePlacementMemorandum_Monark"] = "PrivatePlacementMemorandum_Monark";
16736
+ DocumentType3["InvestorLogo_Monark"] = "InvestorLogo_Monark";
16737
+ DocumentType3["SubscriptionAgreementPreview_Monark"] = "SubscriptionAgreementPreview_Monark";
16738
+ DocumentType3["DealDiligence_Monark"] = "DealDiligence_Monark";
16739
+ DocumentType3["NoLienAttestation_Monark"] = "NoLienAttestation_Monark";
16740
+ DocumentType3["KeyTerms_Monark"] = "KeyTerms_Monark";
16741
+ DocumentType3["RegisteredFundSubscriptionAgreement_Monark"] = "RegisteredFundSubscriptionAgreement_Monark";
16742
+ DocumentType3["RegisteredFundProspectus_Monark"] = "RegisteredFundProspectus_Monark";
16743
+ DocumentType3["RegisteredFundFactCard_Monark"] = "RegisteredFundFactCard_Monark";
16744
+ DocumentType3["RegisteredFundQuiltChart_Monark"] = "RegisteredFundQuiltChart_Monark";
16745
+ })(DocumentType3 || (DocumentType3 = {}));
16746
+ export var DocumentV2Type;
16747
+ (function (DocumentV2Type) {
16748
+ DocumentV2Type["BUSINESS_FORMATION"] = "BUSINESS_FORMATION";
16749
+ DocumentV2Type["BANK_STATEMENT"] = "BANK_STATEMENT";
16750
+ DocumentV2Type["CAPITAL_ACCT_STATEMENT"] = "CAPITAL_ACCT_STATEMENT";
16751
+ DocumentV2Type["CAPITAL_CALL_NOTICE"] = "CAPITAL_CALL_NOTICE";
16752
+ DocumentV2Type["CARRY_SPLIT_AGREEMENT"] = "CARRY_SPLIT_AGREEMENT";
16753
+ DocumentV2Type["CERTIFICATE_OF_FORMATION"] = "CERTIFICATE_OF_FORMATION";
16754
+ DocumentV2Type["COMMITMENT_AGREEMENT"] = "COMMITMENT_AGREEMENT";
16755
+ DocumentV2Type["COMPLIANCE"] = "COMPLIANCE";
16756
+ DocumentV2Type["DRIVER_LICENSE"] = "DRIVER_LICENSE";
16757
+ DocumentV2Type["DRAFT_INVESTMENT"] = "DRAFT_INVESTMENT";
16758
+ DocumentV2Type["EIN_FORMATION"] = "EIN_FORMATION";
16759
+ DocumentV2Type["FINAL_INVESTMENT"] = "FINAL_INVESTMENT";
16760
+ DocumentV2Type["FINANCIAL_STATEMENT"] = "FINANCIAL_STATEMENT";
16761
+ DocumentV2Type["INVESTOR_WIRE_INSTRUCTIONS"] = "INVESTOR_WIRE_INSTRUCTIONS";
16762
+ DocumentV2Type["INVOICE"] = "INVOICE";
16763
+ DocumentV2Type["K1"] = "K1";
16764
+ DocumentV2Type["LOCAL_OR_TRIBE_ID"] = "LOCAL_OR_TRIBE_ID";
16765
+ DocumentV2Type["MASTER_AGREEMENT"] = "MASTER_AGREEMENT";
16766
+ DocumentV2Type["MSA"] = "MSA";
16767
+ DocumentV2Type["OTHER"] = "OTHER";
16768
+ DocumentV2Type["PASSPORT"] = "PASSPORT";
16769
+ DocumentV2Type["PASSPORT_FOREIGN"] = "PASSPORT_FOREIGN";
16770
+ DocumentV2Type["PASSPORT_US"] = "PASSPORT_US";
16771
+ DocumentV2Type["PITCH_DECK"] = "PITCH_DECK";
16772
+ DocumentV2Type["POST_CLOSING_DOCUMENTS"] = "POST_CLOSING_DOCUMENTS";
16773
+ DocumentV2Type["PROOF_OF_SOURCE_OF_FUNDS"] = "PROOF_OF_SOURCE_OF_FUNDS";
16774
+ DocumentV2Type["PX_FILE"] = "PX_FILE";
16775
+ DocumentV2Type["SCFUND_AGREEMENT"] = "SCFUND_AGREEMENT";
16776
+ DocumentV2Type["SERIES_AGREEMENT"] = "SERIES_AGREEMENT";
16777
+ DocumentV2Type["SIDE_LETTER"] = "SIDE_LETTER";
16778
+ DocumentV2Type["SIGNABLE_AGREEMENT"] = "SIGNABLE_AGREEMENT";
16779
+ DocumentV2Type["SOW"] = "SOW";
16780
+ DocumentV2Type["STATEID"] = "STATEID";
16781
+ DocumentV2Type["SUBSCRIPTION_AGREEMENT"] = "SUBSCRIPTION_AGREEMENT";
16782
+ DocumentV2Type["SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED"] = "SUBSCRIPTION_AGREEMENT_COUNTER_SIGNED";
16783
+ DocumentV2Type["SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM"] = "SUBSCRIPTION_INCREASE_AMOUNT_ADDENDUM";
16784
+ DocumentV2Type["TARGET_CAPTABLE"] = "TARGET_CAPTABLE";
16785
+ DocumentV2Type["TERM_SHEET"] = "TERM_SHEET";
16786
+ DocumentV2Type["TRANSFER_CONSENT_FORM"] = "TRANSFER_CONSENT_FORM";
16787
+ DocumentV2Type["TRANSFER_OF_INTEREST_AGREEMENT"] = "TRANSFER_OF_INTEREST_AGREEMENT";
16788
+ DocumentV2Type["W8"] = "W8";
16789
+ DocumentV2Type["W8_BEN"] = "W8_BEN";
16790
+ DocumentV2Type["W8_BENE"] = "W8_BENE";
16791
+ DocumentV2Type["W9"] = "W9";
16792
+ DocumentV2Type["LayeredSPVInvestmentDeck_Monark"] = "LayeredSPVInvestmentDeck_Monark";
16793
+ DocumentV2Type["InvestmentMemo_Monark"] = "InvestmentMemo_Monark";
16794
+ DocumentV2Type["DealMemo_Monark"] = "DealMemo_Monark";
16795
+ DocumentV2Type["RiskFactors_Monark"] = "RiskFactors_Monark";
16796
+ DocumentV2Type["PrivatePlacementMemorandum_Monark"] = "PrivatePlacementMemorandum_Monark";
16797
+ DocumentV2Type["InvestorLogo_Monark"] = "InvestorLogo_Monark";
16798
+ DocumentV2Type["SubscriptionAgreementPreview_Monark"] = "SubscriptionAgreementPreview_Monark";
16799
+ DocumentV2Type["DealDiligence_Monark"] = "DealDiligence_Monark";
16800
+ DocumentV2Type["NoLienAttestation_Monark"] = "NoLienAttestation_Monark";
16801
+ DocumentV2Type["KeyTerms_Monark"] = "KeyTerms_Monark";
16802
+ DocumentV2Type["RegisteredFundSubscriptionAgreement_Monark"] = "RegisteredFundSubscriptionAgreement_Monark";
16803
+ DocumentV2Type["RegisteredFundProspectus_Monark"] = "RegisteredFundProspectus_Monark";
16804
+ DocumentV2Type["RegisteredFundFactCard_Monark"] = "RegisteredFundFactCard_Monark";
16805
+ DocumentV2Type["RegisteredFundQuiltChart_Monark"] = "RegisteredFundQuiltChart_Monark";
16806
+ })(DocumentV2Type || (DocumentV2Type = {}));
16319
16807
  export var EntityInvestorEntityType;
16320
16808
  (function (EntityInvestorEntityType) {
16321
16809
  EntityInvestorEntityType["SOLE_PROPRIETOR"] = "SOLE_PROPRIETOR";