@monarkmarkets/api-client 1.3.4 → 1.3.5

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 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. */
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monarkmarkets/api-client",
3
- "version": "1.3.4",
3
+ "version": "1.3.5",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",