@monarkmarkets/api-client 1.2.6 → 1.2.7

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
@@ -1195,8 +1195,6 @@ export declare class BulkPreIPOCompanySPV implements IBulkPreIPOCompanySPV {
1195
1195
  description?: string | undefined;
1196
1196
  /** A list of notable investors associated with an SPV. */
1197
1197
  notableInvestors?: string[] | undefined;
1198
- /** The name of the Master LLC. */
1199
- masterLLCName?: string | undefined;
1200
1198
  /** The one time, up front management fee charged by the SPV. */
1201
1199
  managementFee?: number | undefined;
1202
1200
  /** 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. */
@@ -1281,8 +1279,6 @@ export interface IBulkPreIPOCompanySPV {
1281
1279
  description?: string | undefined;
1282
1280
  /** A list of notable investors associated with an SPV. */
1283
1281
  notableInvestors?: string[] | undefined;
1284
- /** The name of the Master LLC. */
1285
- masterLLCName?: string | undefined;
1286
1282
  /** The one time, up front management fee charged by the SPV. */
1287
1283
  managementFee?: number | undefined;
1288
1284
  /** 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. */
@@ -5220,8 +5216,6 @@ export declare class PreIPOCompanySPV implements IPreIPOCompanySPV {
5220
5216
  description?: string | undefined;
5221
5217
  /** A list of notable investors associated with an SPV. */
5222
5218
  notableInvestors?: string[] | undefined;
5223
- /** The name of the Master LLC. */
5224
- masterLLCName?: string | undefined;
5225
5219
  /** The one time, up front management fee charged by the SPV. */
5226
5220
  managementFee?: number | undefined;
5227
5221
  /** 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. */
@@ -5305,8 +5299,6 @@ export interface IPreIPOCompanySPV {
5305
5299
  description?: string | undefined;
5306
5300
  /** A list of notable investors associated with an SPV. */
5307
5301
  notableInvestors?: string[] | undefined;
5308
- /** The name of the Master LLC. */
5309
- masterLLCName?: string | undefined;
5310
5302
  /** The one time, up front management fee charged by the SPV. */
5311
5303
  managementFee?: number | undefined;
5312
5304
  /** 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
@@ -7044,7 +7044,6 @@ export class BulkPreIPOCompanySPV {
7044
7044
  for (let item of _data["notableInvestors"])
7045
7045
  this.notableInvestors.push(item);
7046
7046
  }
7047
- this.masterLLCName = _data["masterLLCName"];
7048
7047
  this.managementFee = _data["managementFee"];
7049
7048
  this.managementFeeYearsPayable = _data["managementFeeYearsPayable"];
7050
7049
  this.fundingDeadline = _data["fundingDeadline"] ? new Date(_data["fundingDeadline"].toString()) : undefined;
@@ -7114,7 +7113,6 @@ export class BulkPreIPOCompanySPV {
7114
7113
  for (let item of this.notableInvestors)
7115
7114
  data["notableInvestors"].push(item);
7116
7115
  }
7117
- data["masterLLCName"] = this.masterLLCName;
7118
7116
  data["managementFee"] = this.managementFee;
7119
7117
  data["managementFeeYearsPayable"] = this.managementFeeYearsPayable;
7120
7118
  data["fundingDeadline"] = this.fundingDeadline ? formatDate(this.fundingDeadline) : undefined;
@@ -11481,7 +11479,6 @@ export class PreIPOCompanySPV {
11481
11479
  for (let item of _data["notableInvestors"])
11482
11480
  this.notableInvestors.push(item);
11483
11481
  }
11484
- this.masterLLCName = _data["masterLLCName"];
11485
11482
  this.managementFee = _data["managementFee"];
11486
11483
  this.managementFeeYearsPayable = _data["managementFeeYearsPayable"];
11487
11484
  this.fundingDeadline = _data["fundingDeadline"] ? new Date(_data["fundingDeadline"].toString()) : undefined;
@@ -11546,7 +11543,6 @@ export class PreIPOCompanySPV {
11546
11543
  for (let item of this.notableInvestors)
11547
11544
  data["notableInvestors"].push(item);
11548
11545
  }
11549
- data["masterLLCName"] = this.masterLLCName;
11550
11546
  data["managementFee"] = this.managementFee;
11551
11547
  data["managementFeeYearsPayable"] = this.managementFeeYearsPayable;
11552
11548
  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.2.6",
3
+ "version": "1.2.7",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",