@monarkmarkets/api-client 1.3.3 → 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. */
@@ -2275,15 +2279,15 @@ export declare class EvergreenFund implements IEvergreenFund {
2275
2279
  /** Official name of the Evergreen Fund */
2276
2280
  fundName: string | undefined;
2277
2281
  /** Manager of the Evergreen Fund */
2278
- manager: string | undefined;
2282
+ manager?: string | undefined;
2279
2283
  /** Year of inception for the Evergreen Fund */
2280
- inception?: number;
2284
+ inception?: number | undefined;
2281
2285
  /** Deal type focus of the Evergreen Fund */
2282
2286
  dealTypeFocus?: string | undefined;
2283
2287
  /** Strategy focus of the Evergreen Fund */
2284
2288
  strategyFocus?: string | undefined;
2285
2289
  /** Management fee charged by the Evergreen Fund */
2286
- managementFee?: number;
2290
+ managementFee?: number | undefined;
2287
2291
  /** Type of the Evergreen Fund */
2288
2292
  fundType?: string | undefined;
2289
2293
  /** Registration status of the Evergreen Fund */
@@ -2304,15 +2308,15 @@ export interface IEvergreenFund {
2304
2308
  /** Official name of the Evergreen Fund */
2305
2309
  fundName: string | undefined;
2306
2310
  /** Manager of the Evergreen Fund */
2307
- manager: string | undefined;
2311
+ manager?: string | undefined;
2308
2312
  /** Year of inception for the Evergreen Fund */
2309
- inception?: number;
2313
+ inception?: number | undefined;
2310
2314
  /** Deal type focus of the Evergreen Fund */
2311
2315
  dealTypeFocus?: string | undefined;
2312
2316
  /** Strategy focus of the Evergreen Fund */
2313
2317
  strategyFocus?: string | undefined;
2314
2318
  /** Management fee charged by the Evergreen Fund */
2315
- managementFee?: number;
2319
+ managementFee?: number | undefined;
2316
2320
  /** Type of the Evergreen Fund */
2317
2321
  fundType?: string | undefined;
2318
2322
  /** Registration status of the Evergreen Fund */
@@ -2397,9 +2401,9 @@ export declare class EvergreenReturns implements IEvergreenReturns {
2397
2401
  /** Name of the fund */
2398
2402
  fundName: string | undefined;
2399
2403
  /** Returns since inception (as percentage) */
2400
- sinceInception?: number;
2404
+ sinceInception?: number | undefined;
2401
2405
  /** One year returns (as percentage) */
2402
- oneYear?: number;
2406
+ oneYear?: number | undefined;
2403
2407
  constructor(data?: IEvergreenReturns);
2404
2408
  init(_data?: any): void;
2405
2409
  static fromJS(data: any): EvergreenReturns;
@@ -2414,9 +2418,9 @@ export interface IEvergreenReturns {
2414
2418
  /** Name of the fund */
2415
2419
  fundName: string | undefined;
2416
2420
  /** Returns since inception (as percentage) */
2417
- sinceInception?: number;
2421
+ sinceInception?: number | undefined;
2418
2422
  /** One year returns (as percentage) */
2419
- oneYear?: number;
2423
+ oneYear?: number | undefined;
2420
2424
  }
2421
2425
  export declare class EvergreenReturnsApiResponse implements IEvergreenReturnsApiResponse {
2422
2426
  items?: EvergreenReturns[] | undefined;
@@ -2441,15 +2445,15 @@ export declare class EvergreenShareClasses implements IEvergreenShareClasses {
2441
2445
  /** Share class ticker symbol */
2442
2446
  shareClassTicker: string | undefined;
2443
2447
  /** Minimum initial investment size */
2444
- minInvestmentSize?: number;
2448
+ minInvestmentSize?: number | undefined;
2445
2449
  /** Minimum subsequent investment amount */
2446
- minSubsequentInvestment?: number;
2450
+ minSubsequentInvestment?: number | undefined;
2447
2451
  /** Sales load percentage or amount */
2448
- salesLoad?: number;
2452
+ salesLoad?: number | undefined;
2449
2453
  /** Distribution and servicing fee (12b-1 fee) */
2450
- distributionAndServicingFee?: number;
2454
+ distributionAndServicingFee?: number | undefined;
2451
2455
  /** Early repurchase or redemption fee */
2452
- earlyRepurchaseOrRedemptionFee?: number;
2456
+ earlyRepurchaseOrRedemptionFee?: number | undefined;
2453
2457
  /** Status of the share class (e.g., Active, Inactive, Closed) */
2454
2458
  status: string | undefined;
2455
2459
  constructor(data?: IEvergreenShareClasses);
@@ -2468,15 +2472,15 @@ export interface IEvergreenShareClasses {
2468
2472
  /** Share class ticker symbol */
2469
2473
  shareClassTicker: string | undefined;
2470
2474
  /** Minimum initial investment size */
2471
- minInvestmentSize?: number;
2475
+ minInvestmentSize?: number | undefined;
2472
2476
  /** Minimum subsequent investment amount */
2473
- minSubsequentInvestment?: number;
2477
+ minSubsequentInvestment?: number | undefined;
2474
2478
  /** Sales load percentage or amount */
2475
- salesLoad?: number;
2479
+ salesLoad?: number | undefined;
2476
2480
  /** Distribution and servicing fee (12b-1 fee) */
2477
- distributionAndServicingFee?: number;
2481
+ distributionAndServicingFee?: number | undefined;
2478
2482
  /** Early repurchase or redemption fee */
2479
- earlyRepurchaseOrRedemptionFee?: number;
2483
+ earlyRepurchaseOrRedemptionFee?: number | undefined;
2480
2484
  /** Status of the share class (e.g., Active, Inactive, Closed) */
2481
2485
  status: string | undefined;
2482
2486
  }
@@ -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.3",
3
+ "version": "1.3.5",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",