@monarkmarkets/api-client 1.3.40 → 1.3.42
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 +55 -9
- package/dist/Client.js +103 -1
- package/package.json +1 -1
package/dist/Client.d.ts
CHANGED
|
@@ -100,6 +100,15 @@ export declare class Client {
|
|
|
100
100
|
*/
|
|
101
101
|
downloadDocumentV2(id: string, token: string): Promise<void>;
|
|
102
102
|
protected processDownloadDocumentV2(response: Response): Promise<void>;
|
|
103
|
+
/**
|
|
104
|
+
* Streams a document using document ID and token. Supports Range requests for PDF viewers.
|
|
105
|
+
Anonymous endpoint; CORS allows any origin for browser-based streaming.
|
|
106
|
+
* @param id The Document ID for the document to stream.
|
|
107
|
+
* @param token The secure token required to access the document.
|
|
108
|
+
* @return OK
|
|
109
|
+
*/
|
|
110
|
+
streamDocumentV2(id: string, token: string): Promise<void>;
|
|
111
|
+
protected processStreamDocumentV2(response: Response): Promise<void>;
|
|
103
112
|
/**
|
|
104
113
|
* Create a Financial Advisor.
|
|
105
114
|
* @param body (optional) create Financial Advisor information.
|
|
@@ -1215,9 +1224,10 @@ export declare class Client {
|
|
|
1215
1224
|
* @param referenceId (optional) Optional: Filter by order reference ID.
|
|
1216
1225
|
* @param managerId (optional) Optional: Filter by manager ID. For SPVs, filters by Manager. For RegisteredFunds, filters by Fund Manager.
|
|
1217
1226
|
* @param includeDocuments (optional) Optional flag to include associated documents.
|
|
1227
|
+
* @param side (optional) Optional: Filter by transaction side. (Currently only supported for registered funds)
|
|
1218
1228
|
* @return OK
|
|
1219
1229
|
*/
|
|
1220
|
-
getTransactions(targetAssetType: TargetAssetType, page: number | undefined, pageSize: number | undefined, targetId: string | undefined, investorId: string | undefined, status: string | undefined, referenceId: string | undefined, managerId: string | undefined, includeDocuments: boolean | undefined): Promise<TransactionApiResponse>;
|
|
1230
|
+
getTransactions(targetAssetType: TargetAssetType, page: number | undefined, pageSize: number | undefined, targetId: string | undefined, investorId: string | undefined, status: string | undefined, referenceId: string | undefined, managerId: string | undefined, includeDocuments: boolean | undefined, side: Side | undefined): Promise<TransactionApiResponse>;
|
|
1221
1231
|
protected processGetTransactions(response: Response): Promise<TransactionApiResponse>;
|
|
1222
1232
|
/**
|
|
1223
1233
|
* Update an existing transaction.
|
|
@@ -2308,7 +2318,11 @@ export declare class CreateTransaction implements ICreateTransaction {
|
|
|
2308
2318
|
/** ID of the Investor associated with this Order. */
|
|
2309
2319
|
investorId: string;
|
|
2310
2320
|
/** Describes the amount, in dollars, an Investor intends to invest into a Target. */
|
|
2311
|
-
amountReservedDollars
|
|
2321
|
+
amountReservedDollars?: number | undefined;
|
|
2322
|
+
/** Described the amount, in shares, an investor can redeem from a Target. */
|
|
2323
|
+
amountShares?: number | undefined;
|
|
2324
|
+
/** Describes whether the transaction is a full exit in terms of redemption. */
|
|
2325
|
+
isFullExit?: boolean | undefined;
|
|
2312
2326
|
/** The reference ID of an order submitted. */
|
|
2313
2327
|
referenceId?: string | undefined;
|
|
2314
2328
|
constructor(data?: ICreateTransaction);
|
|
@@ -2326,7 +2340,11 @@ export interface ICreateTransaction {
|
|
|
2326
2340
|
/** ID of the Investor associated with this Order. */
|
|
2327
2341
|
investorId: string;
|
|
2328
2342
|
/** Describes the amount, in dollars, an Investor intends to invest into a Target. */
|
|
2329
|
-
amountReservedDollars
|
|
2343
|
+
amountReservedDollars?: number | undefined;
|
|
2344
|
+
/** Described the amount, in shares, an investor can redeem from a Target. */
|
|
2345
|
+
amountShares?: number | undefined;
|
|
2346
|
+
/** Describes whether the transaction is a full exit in terms of redemption. */
|
|
2347
|
+
isFullExit?: boolean | undefined;
|
|
2330
2348
|
/** The reference ID of an order submitted. */
|
|
2331
2349
|
referenceId?: string | undefined;
|
|
2332
2350
|
}
|
|
@@ -2502,6 +2520,8 @@ export declare class DocumentV2 implements IDocumentV2 {
|
|
|
2502
2520
|
name?: string | undefined;
|
|
2503
2521
|
/** URL link to view the document. */
|
|
2504
2522
|
url: string | undefined;
|
|
2523
|
+
/** URL link to stream the document. */
|
|
2524
|
+
streamUrl?: string | undefined;
|
|
2505
2525
|
/** Unique identifier of the associated investor, if any. */
|
|
2506
2526
|
investorId?: string | undefined;
|
|
2507
2527
|
/** Unique identifier of the associated PreIPOCompany, if any. */
|
|
@@ -2535,6 +2555,8 @@ export interface IDocumentV2 {
|
|
|
2535
2555
|
name?: string | undefined;
|
|
2536
2556
|
/** URL link to view the document. */
|
|
2537
2557
|
url: string | undefined;
|
|
2558
|
+
/** URL link to stream the document. */
|
|
2559
|
+
streamUrl?: string | undefined;
|
|
2538
2560
|
/** Unique identifier of the associated investor, if any. */
|
|
2539
2561
|
investorId?: string | undefined;
|
|
2540
2562
|
/** Unique identifier of the associated PreIPOCompany, if any. */
|
|
@@ -7217,6 +7239,8 @@ export declare class Transaction implements ITransaction {
|
|
|
7217
7239
|
companyName?: string | undefined;
|
|
7218
7240
|
/** The reference ID of an order submitted. */
|
|
7219
7241
|
referenceId?: string | undefined;
|
|
7242
|
+
/** Indicates if this order is a full exit. */
|
|
7243
|
+
isFullExit?: boolean | undefined;
|
|
7220
7244
|
/** Optional list of documents associated with this transaction. */
|
|
7221
7245
|
documents?: DocumentV2[] | undefined;
|
|
7222
7246
|
constructor(data?: ITransaction);
|
|
@@ -7259,6 +7283,8 @@ export interface ITransaction {
|
|
|
7259
7283
|
companyName?: string | undefined;
|
|
7260
7284
|
/** The reference ID of an order submitted. */
|
|
7261
7285
|
referenceId?: string | undefined;
|
|
7286
|
+
/** Indicates if this order is a full exit. */
|
|
7287
|
+
isFullExit?: boolean | undefined;
|
|
7262
7288
|
/** Optional list of documents associated with this transaction. */
|
|
7263
7289
|
documents?: DocumentV2[] | undefined;
|
|
7264
7290
|
}
|
|
@@ -8226,7 +8252,11 @@ export declare class UpdateTransaction implements IUpdateTransaction {
|
|
|
8226
8252
|
/** ID of the Investor associated with this Order. */
|
|
8227
8253
|
investorId: string;
|
|
8228
8254
|
/** Describes the amount, in dollars, an Investor intends to invest into a Target. */
|
|
8229
|
-
amountReservedDollars
|
|
8255
|
+
amountReservedDollars?: number | undefined;
|
|
8256
|
+
/** Described the amount, in shares, an investor can redeem from a Target. */
|
|
8257
|
+
amountShares?: number | undefined;
|
|
8258
|
+
/** Describes whether the transaction is a full exit in terms of redemption. */
|
|
8259
|
+
isFullExit?: boolean | undefined;
|
|
8230
8260
|
/** ID of the Order to edit. */
|
|
8231
8261
|
id: string;
|
|
8232
8262
|
/** The type of asset being targeted with this Order. */
|
|
@@ -8244,7 +8274,11 @@ export interface IUpdateTransaction {
|
|
|
8244
8274
|
/** ID of the Investor associated with this Order. */
|
|
8245
8275
|
investorId: string;
|
|
8246
8276
|
/** Describes the amount, in dollars, an Investor intends to invest into a Target. */
|
|
8247
|
-
amountReservedDollars
|
|
8277
|
+
amountReservedDollars?: number | undefined;
|
|
8278
|
+
/** Described the amount, in shares, an investor can redeem from a Target. */
|
|
8279
|
+
amountShares?: number | undefined;
|
|
8280
|
+
/** Describes whether the transaction is a full exit in terms of redemption. */
|
|
8281
|
+
isFullExit?: boolean | undefined;
|
|
8248
8282
|
/** ID of the Order to edit. */
|
|
8249
8283
|
id: string;
|
|
8250
8284
|
/** The type of asset being targeted with this Order. */
|
|
@@ -8477,7 +8511,9 @@ export declare enum DocumentType {
|
|
|
8477
8511
|
RegisteredFundProspectus_Monark = "RegisteredFundProspectus_Monark",
|
|
8478
8512
|
RegisteredFundFactCard_Monark = "RegisteredFundFactCard_Monark",
|
|
8479
8513
|
RegisteredFundQuiltChart_Monark = "RegisteredFundQuiltChart_Monark",
|
|
8480
|
-
RegisteredFundMarketingDocument_Monark = "RegisteredFundMarketingDocument_Monark"
|
|
8514
|
+
RegisteredFundMarketingDocument_Monark = "RegisteredFundMarketingDocument_Monark",
|
|
8515
|
+
RegisteredFundRedemptionAgreement_Monark = "RegisteredFundRedemptionAgreement_Monark",
|
|
8516
|
+
RegisteredFundTransferAgreement_Monark = "RegisteredFundTransferAgreement_Monark"
|
|
8481
8517
|
}
|
|
8482
8518
|
export declare enum SortOrder {
|
|
8483
8519
|
Ascending = "Ascending",
|
|
@@ -8522,7 +8558,9 @@ export declare enum DocumentType2 {
|
|
|
8522
8558
|
RegisteredFundProspectus_Monark = "RegisteredFundProspectus_Monark",
|
|
8523
8559
|
RegisteredFundFactCard_Monark = "RegisteredFundFactCard_Monark",
|
|
8524
8560
|
RegisteredFundQuiltChart_Monark = "RegisteredFundQuiltChart_Monark",
|
|
8525
|
-
RegisteredFundMarketingDocument_Monark = "RegisteredFundMarketingDocument_Monark"
|
|
8561
|
+
RegisteredFundMarketingDocument_Monark = "RegisteredFundMarketingDocument_Monark",
|
|
8562
|
+
RegisteredFundRedemptionAgreement_Monark = "RegisteredFundRedemptionAgreement_Monark",
|
|
8563
|
+
RegisteredFundTransferAgreement_Monark = "RegisteredFundTransferAgreement_Monark"
|
|
8526
8564
|
}
|
|
8527
8565
|
export declare enum SortOrder2 {
|
|
8528
8566
|
Ascending = "Ascending",
|
|
@@ -8747,6 +8785,10 @@ export declare enum TargetAssetType {
|
|
|
8747
8785
|
RegisteredFund = "RegisteredFund",
|
|
8748
8786
|
PreIPOCompany = "PreIPOCompany"
|
|
8749
8787
|
}
|
|
8788
|
+
export declare enum Side {
|
|
8789
|
+
Subscription = "Subscription",
|
|
8790
|
+
Redemption = "Redemption"
|
|
8791
|
+
}
|
|
8750
8792
|
export declare enum TargetAssetType2 {
|
|
8751
8793
|
PreIPOCompanySPV = "PreIPOCompanySPV",
|
|
8752
8794
|
RegisteredFund = "RegisteredFund",
|
|
@@ -8993,7 +9035,9 @@ export declare enum DocumentType3 {
|
|
|
8993
9035
|
RegisteredFundProspectus_Monark = "RegisteredFundProspectus_Monark",
|
|
8994
9036
|
RegisteredFundFactCard_Monark = "RegisteredFundFactCard_Monark",
|
|
8995
9037
|
RegisteredFundQuiltChart_Monark = "RegisteredFundQuiltChart_Monark",
|
|
8996
|
-
RegisteredFundMarketingDocument_Monark = "RegisteredFundMarketingDocument_Monark"
|
|
9038
|
+
RegisteredFundMarketingDocument_Monark = "RegisteredFundMarketingDocument_Monark",
|
|
9039
|
+
RegisteredFundRedemptionAgreement_Monark = "RegisteredFundRedemptionAgreement_Monark",
|
|
9040
|
+
RegisteredFundTransferAgreement_Monark = "RegisteredFundTransferAgreement_Monark"
|
|
8997
9041
|
}
|
|
8998
9042
|
export declare enum DocumentV2Type {
|
|
8999
9043
|
BUSINESS_FORMATION = "BUSINESS_FORMATION",
|
|
@@ -9034,7 +9078,9 @@ export declare enum DocumentV2Type {
|
|
|
9034
9078
|
RegisteredFundProspectus_Monark = "RegisteredFundProspectus_Monark",
|
|
9035
9079
|
RegisteredFundFactCard_Monark = "RegisteredFundFactCard_Monark",
|
|
9036
9080
|
RegisteredFundQuiltChart_Monark = "RegisteredFundQuiltChart_Monark",
|
|
9037
|
-
RegisteredFundMarketingDocument_Monark = "RegisteredFundMarketingDocument_Monark"
|
|
9081
|
+
RegisteredFundMarketingDocument_Monark = "RegisteredFundMarketingDocument_Monark",
|
|
9082
|
+
RegisteredFundRedemptionAgreement_Monark = "RegisteredFundRedemptionAgreement_Monark",
|
|
9083
|
+
RegisteredFundTransferAgreement_Monark = "RegisteredFundTransferAgreement_Monark"
|
|
9038
9084
|
}
|
|
9039
9085
|
export declare enum EntityInvestorEntityType {
|
|
9040
9086
|
SOLE_PROPRIETOR = "SOLE_PROPRIETOR",
|
package/dist/Client.js
CHANGED
|
@@ -591,6 +591,78 @@ export class Client {
|
|
|
591
591
|
}
|
|
592
592
|
return Promise.resolve(null);
|
|
593
593
|
}
|
|
594
|
+
/**
|
|
595
|
+
* Streams a document using document ID and token. Supports Range requests for PDF viewers.
|
|
596
|
+
Anonymous endpoint; CORS allows any origin for browser-based streaming.
|
|
597
|
+
* @param id The Document ID for the document to stream.
|
|
598
|
+
* @param token The secure token required to access the document.
|
|
599
|
+
* @return OK
|
|
600
|
+
*/
|
|
601
|
+
streamDocumentV2(id, token) {
|
|
602
|
+
let url_ = this.baseUrl + "/primary/v2/document/{id}/stream/{token}";
|
|
603
|
+
if (id === undefined || id === null)
|
|
604
|
+
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
605
|
+
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
606
|
+
if (token === undefined || token === null)
|
|
607
|
+
throw new globalThis.Error("The parameter 'token' must be defined.");
|
|
608
|
+
url_ = url_.replace("{token}", encodeURIComponent("" + token));
|
|
609
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
610
|
+
let options_ = {
|
|
611
|
+
method: "GET",
|
|
612
|
+
headers: {}
|
|
613
|
+
};
|
|
614
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
615
|
+
return this.processStreamDocumentV2(_response);
|
|
616
|
+
});
|
|
617
|
+
}
|
|
618
|
+
processStreamDocumentV2(response) {
|
|
619
|
+
const status = response.status;
|
|
620
|
+
let _headers = {};
|
|
621
|
+
if (response.headers && response.headers.forEach) {
|
|
622
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
623
|
+
}
|
|
624
|
+
;
|
|
625
|
+
if (status === 200) {
|
|
626
|
+
return response.text().then((_responseText) => {
|
|
627
|
+
return;
|
|
628
|
+
});
|
|
629
|
+
}
|
|
630
|
+
else if (status === 206) {
|
|
631
|
+
return response.text().then((_responseText) => {
|
|
632
|
+
return;
|
|
633
|
+
});
|
|
634
|
+
}
|
|
635
|
+
else if (status === 403) {
|
|
636
|
+
return response.text().then((_responseText) => {
|
|
637
|
+
let result403 = null;
|
|
638
|
+
let resultData403 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
639
|
+
result403 = ProblemDetails.fromJS(resultData403);
|
|
640
|
+
return throwException("Forbidden", status, _responseText, _headers, result403);
|
|
641
|
+
});
|
|
642
|
+
}
|
|
643
|
+
else if (status === 404) {
|
|
644
|
+
return response.text().then((_responseText) => {
|
|
645
|
+
let result404 = null;
|
|
646
|
+
let resultData404 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
647
|
+
result404 = ProblemDetails.fromJS(resultData404);
|
|
648
|
+
return throwException("Not Found", status, _responseText, _headers, result404);
|
|
649
|
+
});
|
|
650
|
+
}
|
|
651
|
+
else if (status === 416) {
|
|
652
|
+
return response.text().then((_responseText) => {
|
|
653
|
+
let result416 = null;
|
|
654
|
+
let resultData416 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
655
|
+
result416 = ProblemDetails.fromJS(resultData416);
|
|
656
|
+
return throwException("Range Not Satisfiable", status, _responseText, _headers, result416);
|
|
657
|
+
});
|
|
658
|
+
}
|
|
659
|
+
else if (status !== 200 && status !== 204) {
|
|
660
|
+
return response.text().then((_responseText) => {
|
|
661
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
662
|
+
});
|
|
663
|
+
}
|
|
664
|
+
return Promise.resolve(null);
|
|
665
|
+
}
|
|
594
666
|
/**
|
|
595
667
|
* Create a Financial Advisor.
|
|
596
668
|
* @param body (optional) create Financial Advisor information.
|
|
@@ -7749,9 +7821,10 @@ export class Client {
|
|
|
7749
7821
|
* @param referenceId (optional) Optional: Filter by order reference ID.
|
|
7750
7822
|
* @param managerId (optional) Optional: Filter by manager ID. For SPVs, filters by Manager. For RegisteredFunds, filters by Fund Manager.
|
|
7751
7823
|
* @param includeDocuments (optional) Optional flag to include associated documents.
|
|
7824
|
+
* @param side (optional) Optional: Filter by transaction side. (Currently only supported for registered funds)
|
|
7752
7825
|
* @return OK
|
|
7753
7826
|
*/
|
|
7754
|
-
getTransactions(targetAssetType, page, pageSize, targetId, investorId, status, referenceId, managerId, includeDocuments) {
|
|
7827
|
+
getTransactions(targetAssetType, page, pageSize, targetId, investorId, status, referenceId, managerId, includeDocuments, side) {
|
|
7755
7828
|
let url_ = this.baseUrl + "/primary/v2/transaction?";
|
|
7756
7829
|
if (targetAssetType === undefined || targetAssetType === null)
|
|
7757
7830
|
throw new globalThis.Error("The parameter 'targetAssetType' must be defined and cannot be null.");
|
|
@@ -7789,6 +7862,10 @@ export class Client {
|
|
|
7789
7862
|
throw new globalThis.Error("The parameter 'includeDocuments' cannot be null.");
|
|
7790
7863
|
else if (includeDocuments !== undefined)
|
|
7791
7864
|
url_ += "includeDocuments=" + encodeURIComponent("" + includeDocuments) + "&";
|
|
7865
|
+
if (side === null)
|
|
7866
|
+
throw new globalThis.Error("The parameter 'side' cannot be null.");
|
|
7867
|
+
else if (side !== undefined)
|
|
7868
|
+
url_ += "side=" + encodeURIComponent("" + side) + "&";
|
|
7792
7869
|
url_ = url_.replace(/[?&]$/, "");
|
|
7793
7870
|
let options_ = {
|
|
7794
7871
|
method: "GET",
|
|
@@ -10337,6 +10414,8 @@ export class CreateTransaction {
|
|
|
10337
10414
|
this.side = _data["side"];
|
|
10338
10415
|
this.investorId = _data["investorId"];
|
|
10339
10416
|
this.amountReservedDollars = _data["amountReservedDollars"];
|
|
10417
|
+
this.amountShares = _data["amountShares"];
|
|
10418
|
+
this.isFullExit = _data["isFullExit"];
|
|
10340
10419
|
this.referenceId = _data["referenceId"];
|
|
10341
10420
|
}
|
|
10342
10421
|
}
|
|
@@ -10353,6 +10432,8 @@ export class CreateTransaction {
|
|
|
10353
10432
|
data["side"] = this.side;
|
|
10354
10433
|
data["investorId"] = this.investorId;
|
|
10355
10434
|
data["amountReservedDollars"] = this.amountReservedDollars;
|
|
10435
|
+
data["amountShares"] = this.amountShares;
|
|
10436
|
+
data["isFullExit"] = this.isFullExit;
|
|
10356
10437
|
data["referenceId"] = this.referenceId;
|
|
10357
10438
|
return data;
|
|
10358
10439
|
}
|
|
@@ -10630,6 +10711,7 @@ export class DocumentV2 {
|
|
|
10630
10711
|
this.id = _data["id"];
|
|
10631
10712
|
this.name = _data["name"];
|
|
10632
10713
|
this.url = _data["url"];
|
|
10714
|
+
this.streamUrl = _data["streamUrl"];
|
|
10633
10715
|
this.investorId = _data["investorId"];
|
|
10634
10716
|
this.preIPOCompanyId = _data["preIPOCompanyId"];
|
|
10635
10717
|
this.preIPOCompanyInvestmentId = _data["preIPOCompanyInvestmentId"];
|
|
@@ -10653,6 +10735,7 @@ export class DocumentV2 {
|
|
|
10653
10735
|
data["id"] = this.id;
|
|
10654
10736
|
data["name"] = this.name;
|
|
10655
10737
|
data["url"] = this.url;
|
|
10738
|
+
data["streamUrl"] = this.streamUrl;
|
|
10656
10739
|
data["investorId"] = this.investorId;
|
|
10657
10740
|
data["preIPOCompanyId"] = this.preIPOCompanyId;
|
|
10658
10741
|
data["preIPOCompanyInvestmentId"] = this.preIPOCompanyInvestmentId;
|
|
@@ -15929,6 +16012,7 @@ export class Transaction {
|
|
|
15929
16012
|
this.targetName = _data["targetName"];
|
|
15930
16013
|
this.companyName = _data["companyName"];
|
|
15931
16014
|
this.referenceId = _data["referenceId"];
|
|
16015
|
+
this.isFullExit = _data["isFullExit"];
|
|
15932
16016
|
if (Array.isArray(_data["documents"])) {
|
|
15933
16017
|
this.documents = [];
|
|
15934
16018
|
for (let item of _data["documents"])
|
|
@@ -15961,6 +16045,7 @@ export class Transaction {
|
|
|
15961
16045
|
data["targetName"] = this.targetName;
|
|
15962
16046
|
data["companyName"] = this.companyName;
|
|
15963
16047
|
data["referenceId"] = this.referenceId;
|
|
16048
|
+
data["isFullExit"] = this.isFullExit;
|
|
15964
16049
|
if (Array.isArray(this.documents)) {
|
|
15965
16050
|
data["documents"] = [];
|
|
15966
16051
|
for (let item of this.documents)
|
|
@@ -17066,6 +17151,8 @@ export class UpdateTransaction {
|
|
|
17066
17151
|
this.side = _data["side"];
|
|
17067
17152
|
this.investorId = _data["investorId"];
|
|
17068
17153
|
this.amountReservedDollars = _data["amountReservedDollars"];
|
|
17154
|
+
this.amountShares = _data["amountShares"];
|
|
17155
|
+
this.isFullExit = _data["isFullExit"];
|
|
17069
17156
|
this.id = _data["id"];
|
|
17070
17157
|
this.targetAssetType = _data["targetAssetType"];
|
|
17071
17158
|
}
|
|
@@ -17082,6 +17169,8 @@ export class UpdateTransaction {
|
|
|
17082
17169
|
data["side"] = this.side;
|
|
17083
17170
|
data["investorId"] = this.investorId;
|
|
17084
17171
|
data["amountReservedDollars"] = this.amountReservedDollars;
|
|
17172
|
+
data["amountShares"] = this.amountShares;
|
|
17173
|
+
data["isFullExit"] = this.isFullExit;
|
|
17085
17174
|
data["id"] = this.id;
|
|
17086
17175
|
data["targetAssetType"] = this.targetAssetType;
|
|
17087
17176
|
return data;
|
|
@@ -17412,6 +17501,8 @@ export var DocumentType;
|
|
|
17412
17501
|
DocumentType["RegisteredFundFactCard_Monark"] = "RegisteredFundFactCard_Monark";
|
|
17413
17502
|
DocumentType["RegisteredFundQuiltChart_Monark"] = "RegisteredFundQuiltChart_Monark";
|
|
17414
17503
|
DocumentType["RegisteredFundMarketingDocument_Monark"] = "RegisteredFundMarketingDocument_Monark";
|
|
17504
|
+
DocumentType["RegisteredFundRedemptionAgreement_Monark"] = "RegisteredFundRedemptionAgreement_Monark";
|
|
17505
|
+
DocumentType["RegisteredFundTransferAgreement_Monark"] = "RegisteredFundTransferAgreement_Monark";
|
|
17415
17506
|
})(DocumentType || (DocumentType = {}));
|
|
17416
17507
|
export var SortOrder;
|
|
17417
17508
|
(function (SortOrder) {
|
|
@@ -17459,6 +17550,8 @@ export var DocumentType2;
|
|
|
17459
17550
|
DocumentType2["RegisteredFundFactCard_Monark"] = "RegisteredFundFactCard_Monark";
|
|
17460
17551
|
DocumentType2["RegisteredFundQuiltChart_Monark"] = "RegisteredFundQuiltChart_Monark";
|
|
17461
17552
|
DocumentType2["RegisteredFundMarketingDocument_Monark"] = "RegisteredFundMarketingDocument_Monark";
|
|
17553
|
+
DocumentType2["RegisteredFundRedemptionAgreement_Monark"] = "RegisteredFundRedemptionAgreement_Monark";
|
|
17554
|
+
DocumentType2["RegisteredFundTransferAgreement_Monark"] = "RegisteredFundTransferAgreement_Monark";
|
|
17462
17555
|
})(DocumentType2 || (DocumentType2 = {}));
|
|
17463
17556
|
export var SortOrder2;
|
|
17464
17557
|
(function (SortOrder2) {
|
|
@@ -17724,6 +17817,11 @@ export var TargetAssetType;
|
|
|
17724
17817
|
TargetAssetType["RegisteredFund"] = "RegisteredFund";
|
|
17725
17818
|
TargetAssetType["PreIPOCompany"] = "PreIPOCompany";
|
|
17726
17819
|
})(TargetAssetType || (TargetAssetType = {}));
|
|
17820
|
+
export var Side;
|
|
17821
|
+
(function (Side) {
|
|
17822
|
+
Side["Subscription"] = "Subscription";
|
|
17823
|
+
Side["Redemption"] = "Redemption";
|
|
17824
|
+
})(Side || (Side = {}));
|
|
17727
17825
|
export var TargetAssetType2;
|
|
17728
17826
|
(function (TargetAssetType2) {
|
|
17729
17827
|
TargetAssetType2["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
@@ -17995,6 +18093,8 @@ export var DocumentType3;
|
|
|
17995
18093
|
DocumentType3["RegisteredFundFactCard_Monark"] = "RegisteredFundFactCard_Monark";
|
|
17996
18094
|
DocumentType3["RegisteredFundQuiltChart_Monark"] = "RegisteredFundQuiltChart_Monark";
|
|
17997
18095
|
DocumentType3["RegisteredFundMarketingDocument_Monark"] = "RegisteredFundMarketingDocument_Monark";
|
|
18096
|
+
DocumentType3["RegisteredFundRedemptionAgreement_Monark"] = "RegisteredFundRedemptionAgreement_Monark";
|
|
18097
|
+
DocumentType3["RegisteredFundTransferAgreement_Monark"] = "RegisteredFundTransferAgreement_Monark";
|
|
17998
18098
|
})(DocumentType3 || (DocumentType3 = {}));
|
|
17999
18099
|
export var DocumentV2Type;
|
|
18000
18100
|
(function (DocumentV2Type) {
|
|
@@ -18037,6 +18137,8 @@ export var DocumentV2Type;
|
|
|
18037
18137
|
DocumentV2Type["RegisteredFundFactCard_Monark"] = "RegisteredFundFactCard_Monark";
|
|
18038
18138
|
DocumentV2Type["RegisteredFundQuiltChart_Monark"] = "RegisteredFundQuiltChart_Monark";
|
|
18039
18139
|
DocumentV2Type["RegisteredFundMarketingDocument_Monark"] = "RegisteredFundMarketingDocument_Monark";
|
|
18140
|
+
DocumentV2Type["RegisteredFundRedemptionAgreement_Monark"] = "RegisteredFundRedemptionAgreement_Monark";
|
|
18141
|
+
DocumentV2Type["RegisteredFundTransferAgreement_Monark"] = "RegisteredFundTransferAgreement_Monark";
|
|
18040
18142
|
})(DocumentV2Type || (DocumentV2Type = {}));
|
|
18041
18143
|
export var EntityInvestorEntityType;
|
|
18042
18144
|
(function (EntityInvestorEntityType) {
|