@monarkmarkets/api-client 1.3.4 → 1.3.6
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 +12 -0
- package/dist/Client.js +6 -0
- package/package.json +3 -3
package/dist/Client.d.ts
CHANGED
|
@@ -1383,6 +1383,8 @@ export declare class BulkPreIPOCompanySPV implements IBulkPreIPOCompanySPV {
|
|
|
1383
1383
|
description?: string | undefined;
|
|
1384
1384
|
/** A list of notable investors associated with an SPV. */
|
|
1385
1385
|
notableInvestors?: string[] | undefined;
|
|
1386
|
+
/** Holdback amount associated with the SPV. Will be represented as a dollar amount. */
|
|
1387
|
+
holdbackAmount?: number | undefined;
|
|
1386
1388
|
/** The one time, up front management fee charged by the SPV. */
|
|
1387
1389
|
managementFee?: number | undefined;
|
|
1388
1390
|
/** The number of years over which the management fee will be paid. SPVs offered through Monark will have this number set to 1, as the SPV will charge a one time up front management fee. */
|
|
@@ -1471,6 +1473,8 @@ export interface IBulkPreIPOCompanySPV {
|
|
|
1471
1473
|
description?: string | undefined;
|
|
1472
1474
|
/** A list of notable investors associated with an SPV. */
|
|
1473
1475
|
notableInvestors?: string[] | undefined;
|
|
1476
|
+
/** Holdback amount associated with the SPV. Will be represented as a dollar amount. */
|
|
1477
|
+
holdbackAmount?: number | undefined;
|
|
1474
1478
|
/** The one time, up front management fee charged by the SPV. */
|
|
1475
1479
|
managementFee?: number | undefined;
|
|
1476
1480
|
/** The number of years over which the management fee will be paid. SPVs offered through Monark will have this number set to 1, as the SPV will charge a one time up front management fee. */
|
|
@@ -5656,6 +5660,8 @@ export declare class PreIPOCompanySPV implements IPreIPOCompanySPV {
|
|
|
5656
5660
|
description?: string | undefined;
|
|
5657
5661
|
/** A list of notable investors associated with an SPV. */
|
|
5658
5662
|
notableInvestors?: string[] | undefined;
|
|
5663
|
+
/** Holdback amount associated with the SPV. Will be represented as a dollar amount. */
|
|
5664
|
+
holdbackAmount?: number | undefined;
|
|
5659
5665
|
/** The one time, up front management fee charged by the SPV. */
|
|
5660
5666
|
managementFee?: number | undefined;
|
|
5661
5667
|
/** The number of years over which the management fee will be paid. SPVs offered through Monark will have this number set to 1, as the SPV will charge a one time up front management fee. */
|
|
@@ -5743,6 +5749,8 @@ export interface IPreIPOCompanySPV {
|
|
|
5743
5749
|
description?: string | undefined;
|
|
5744
5750
|
/** A list of notable investors associated with an SPV. */
|
|
5745
5751
|
notableInvestors?: string[] | undefined;
|
|
5752
|
+
/** Holdback amount associated with the SPV. Will be represented as a dollar amount. */
|
|
5753
|
+
holdbackAmount?: number | undefined;
|
|
5746
5754
|
/** The one time, up front management fee charged by the SPV. */
|
|
5747
5755
|
managementFee?: number | undefined;
|
|
5748
5756
|
/** The number of years over which the management fee will be paid. SPVs offered through Monark will have this number set to 1, as the SPV will charge a one time up front management fee. */
|
|
@@ -6128,6 +6136,8 @@ export declare class RegisteredFund implements IRegisteredFund {
|
|
|
6128
6136
|
id: string;
|
|
6129
6137
|
/** ID of underlying fund advisor */
|
|
6130
6138
|
fundAdvisorId?: string | undefined;
|
|
6139
|
+
/** ID of the Partner associated with a registered fund. */
|
|
6140
|
+
partnerId?: string | undefined;
|
|
6131
6141
|
/** Official name of Registered Fund */
|
|
6132
6142
|
name: string | undefined;
|
|
6133
6143
|
/** Fund's website */
|
|
@@ -6195,6 +6205,8 @@ export interface IRegisteredFund {
|
|
|
6195
6205
|
id: string;
|
|
6196
6206
|
/** ID of underlying fund advisor */
|
|
6197
6207
|
fundAdvisorId?: string | undefined;
|
|
6208
|
+
/** ID of the Partner associated with a registered fund. */
|
|
6209
|
+
partnerId?: string | undefined;
|
|
6198
6210
|
/** Official name of Registered Fund */
|
|
6199
6211
|
name: string | undefined;
|
|
6200
6212
|
/** Fund's website */
|
package/dist/Client.js
CHANGED
|
@@ -7892,6 +7892,7 @@ export class BulkPreIPOCompanySPV {
|
|
|
7892
7892
|
for (let item of _data["notableInvestors"])
|
|
7893
7893
|
this.notableInvestors.push(item);
|
|
7894
7894
|
}
|
|
7895
|
+
this.holdbackAmount = _data["holdbackAmount"];
|
|
7895
7896
|
this.managementFee = _data["managementFee"];
|
|
7896
7897
|
this.managementFeeYearsPayable = _data["managementFeeYearsPayable"];
|
|
7897
7898
|
this.fundingDeadline = _data["fundingDeadline"] ? new Date(_data["fundingDeadline"].toString()) : undefined;
|
|
@@ -7963,6 +7964,7 @@ export class BulkPreIPOCompanySPV {
|
|
|
7963
7964
|
for (let item of this.notableInvestors)
|
|
7964
7965
|
data["notableInvestors"].push(item);
|
|
7965
7966
|
}
|
|
7967
|
+
data["holdbackAmount"] = this.holdbackAmount;
|
|
7966
7968
|
data["managementFee"] = this.managementFee;
|
|
7967
7969
|
data["managementFeeYearsPayable"] = this.managementFeeYearsPayable;
|
|
7968
7970
|
data["fundingDeadline"] = this.fundingDeadline ? formatDate(this.fundingDeadline) : undefined;
|
|
@@ -12671,6 +12673,7 @@ export class PreIPOCompanySPV {
|
|
|
12671
12673
|
for (let item of _data["notableInvestors"])
|
|
12672
12674
|
this.notableInvestors.push(item);
|
|
12673
12675
|
}
|
|
12676
|
+
this.holdbackAmount = _data["holdbackAmount"];
|
|
12674
12677
|
this.managementFee = _data["managementFee"];
|
|
12675
12678
|
this.managementFeeYearsPayable = _data["managementFeeYearsPayable"];
|
|
12676
12679
|
this.fundingDeadline = _data["fundingDeadline"] ? new Date(_data["fundingDeadline"].toString()) : undefined;
|
|
@@ -12737,6 +12740,7 @@ export class PreIPOCompanySPV {
|
|
|
12737
12740
|
for (let item of this.notableInvestors)
|
|
12738
12741
|
data["notableInvestors"].push(item);
|
|
12739
12742
|
}
|
|
12743
|
+
data["holdbackAmount"] = this.holdbackAmount;
|
|
12740
12744
|
data["managementFee"] = this.managementFee;
|
|
12741
12745
|
data["managementFeeYearsPayable"] = this.managementFeeYearsPayable;
|
|
12742
12746
|
data["fundingDeadline"] = this.fundingDeadline ? formatDate(this.fundingDeadline) : undefined;
|
|
@@ -13305,6 +13309,7 @@ export class RegisteredFund {
|
|
|
13305
13309
|
if (_data) {
|
|
13306
13310
|
this.id = _data["id"];
|
|
13307
13311
|
this.fundAdvisorId = _data["fundAdvisorId"];
|
|
13312
|
+
this.partnerId = _data["partnerId"];
|
|
13308
13313
|
this.name = _data["name"];
|
|
13309
13314
|
this.website = _data["website"];
|
|
13310
13315
|
this.symbol = _data["symbol"];
|
|
@@ -13357,6 +13362,7 @@ export class RegisteredFund {
|
|
|
13357
13362
|
data = typeof data === 'object' ? data : {};
|
|
13358
13363
|
data["id"] = this.id;
|
|
13359
13364
|
data["fundAdvisorId"] = this.fundAdvisorId;
|
|
13365
|
+
data["partnerId"] = this.partnerId;
|
|
13360
13366
|
data["name"] = this.name;
|
|
13361
13367
|
data["website"] = this.website;
|
|
13362
13368
|
data["symbol"] = this.symbol;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monarkmarkets/api-client",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.6",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"nswag": "npm run update-version && nswag run nswag.json"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"typescript": "
|
|
27
|
+
"typescript": "5.9.3"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"nswag": "14.
|
|
30
|
+
"nswag": "14.6.1"
|
|
31
31
|
}
|
|
32
32
|
}
|