@monarkmarkets/api-client 1.2.20 → 1.3.0

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
@@ -1327,6 +1327,10 @@ export declare class BulkPreIPOCompanySPV implements IBulkPreIPOCompanySPV {
1327
1327
  coManagers?: Partner[] | undefined;
1328
1328
  /** Optional carry interest. */
1329
1329
  carry?: number | undefined;
1330
+ /** The total number of dollars associated with pending subscriptions. */
1331
+ totalPendingSubscriptionDollars?: number | undefined;
1332
+ /** Indicates whether the SPV is approved for the requesting partner. */
1333
+ isApproved?: boolean;
1330
1334
  /** Estimated go live date of the SPV. If the exact go live date is not known, an estimate will be provided. */
1331
1335
  goLiveDate?: Date | undefined;
1332
1336
  /** List of allowed financial institution IDs for this SPV. */
@@ -1411,6 +1415,10 @@ export interface IBulkPreIPOCompanySPV {
1411
1415
  coManagers?: Partner[] | undefined;
1412
1416
  /** Optional carry interest. */
1413
1417
  carry?: number | undefined;
1418
+ /** The total number of dollars associated with pending subscriptions. */
1419
+ totalPendingSubscriptionDollars?: number | undefined;
1420
+ /** Indicates whether the SPV is approved for the requesting partner. */
1421
+ isApproved?: boolean;
1414
1422
  /** Estimated go live date of the SPV. If the exact go live date is not known, an estimate will be provided. */
1415
1423
  goLiveDate?: Date | undefined;
1416
1424
  /** List of allowed financial institution IDs for this SPV. */
@@ -4364,6 +4372,8 @@ export declare class Partner implements IPartner {
4364
4372
  executiveTeam?: string[] | undefined;
4365
4373
  /** DBA name for the Partner. */
4366
4374
  dbaName?: string | undefined;
4375
+ /** The linked AIP Identification number */
4376
+ aipFirmNumber?: string | undefined;
4367
4377
  /** Link to representative logo for management firm. */
4368
4378
  logoUrl?: string | undefined;
4369
4379
  /** Year when management firm was first established. */
@@ -4402,6 +4412,8 @@ export interface IPartner {
4402
4412
  executiveTeam?: string[] | undefined;
4403
4413
  /** DBA name for the Partner. */
4404
4414
  dbaName?: string | undefined;
4415
+ /** The linked AIP Identification number */
4416
+ aipFirmNumber?: string | undefined;
4405
4417
  /** Link to representative logo for management firm. */
4406
4418
  logoUrl?: string | undefined;
4407
4419
  /** Year when management firm was first established. */
@@ -5364,6 +5376,10 @@ export declare class PreIPOCompanySPV implements IPreIPOCompanySPV {
5364
5376
  coManagers?: Partner[] | undefined;
5365
5377
  /** Optional carry interest. */
5366
5378
  carry?: number | undefined;
5379
+ /** The total number of dollars associated with pending subscriptions. */
5380
+ totalPendingSubscriptionDollars?: number | undefined;
5381
+ /** Indicates whether the SPV is approved for the requesting partner. */
5382
+ isApproved?: boolean;
5367
5383
  /** Estimated go live date of the SPV. If the exact go live date is not known, an estimate will be provided. */
5368
5384
  goLiveDate?: Date | undefined;
5369
5385
  constructor(data?: IPreIPOCompanySPV);
@@ -5447,6 +5463,10 @@ export interface IPreIPOCompanySPV {
5447
5463
  coManagers?: Partner[] | undefined;
5448
5464
  /** Optional carry interest. */
5449
5465
  carry?: number | undefined;
5466
+ /** The total number of dollars associated with pending subscriptions. */
5467
+ totalPendingSubscriptionDollars?: number | undefined;
5468
+ /** Indicates whether the SPV is approved for the requesting partner. */
5469
+ isApproved?: boolean;
5450
5470
  /** Estimated go live date of the SPV. If the exact go live date is not known, an estimate will be provided. */
5451
5471
  goLiveDate?: Date | undefined;
5452
5472
  }
package/dist/Client.js CHANGED
@@ -7250,6 +7250,8 @@ export class BulkPreIPOCompanySPV {
7250
7250
  this.coManagers.push(Partner.fromJS(item));
7251
7251
  }
7252
7252
  this.carry = _data["carry"];
7253
+ this.totalPendingSubscriptionDollars = _data["totalPendingSubscriptionDollars"];
7254
+ this.isApproved = _data["isApproved"];
7253
7255
  this.goLiveDate = _data["goLiveDate"] ? new Date(_data["goLiveDate"].toString()) : undefined;
7254
7256
  if (Array.isArray(_data["allowedFinancialInstitutions"])) {
7255
7257
  this.allowedFinancialInstitutions = [];
@@ -7319,6 +7321,8 @@ export class BulkPreIPOCompanySPV {
7319
7321
  data["coManagers"].push(item.toJSON());
7320
7322
  }
7321
7323
  data["carry"] = this.carry;
7324
+ data["totalPendingSubscriptionDollars"] = this.totalPendingSubscriptionDollars;
7325
+ data["isApproved"] = this.isApproved;
7322
7326
  data["goLiveDate"] = this.goLiveDate ? formatDate(this.goLiveDate) : undefined;
7323
7327
  if (Array.isArray(this.allowedFinancialInstitutions)) {
7324
7328
  data["allowedFinancialInstitutions"] = [];
@@ -10679,6 +10683,7 @@ export class Partner {
10679
10683
  this.executiveTeam.push(item);
10680
10684
  }
10681
10685
  this.dbaName = _data["dbaName"];
10686
+ this.aipFirmNumber = _data["aipFirmNumber"];
10682
10687
  this.logoUrl = _data["logoUrl"];
10683
10688
  this.foundingDate = _data["foundingDate"] ? new Date(_data["foundingDate"].toString()) : undefined;
10684
10689
  this.aum = _data["aum"];
@@ -10712,6 +10717,7 @@ export class Partner {
10712
10717
  data["executiveTeam"].push(item);
10713
10718
  }
10714
10719
  data["dbaName"] = this.dbaName;
10720
+ data["aipFirmNumber"] = this.aipFirmNumber;
10715
10721
  data["logoUrl"] = this.logoUrl;
10716
10722
  data["foundingDate"] = this.foundingDate ? formatDate(this.foundingDate) : undefined;
10717
10723
  data["aum"] = this.aum;
@@ -11711,6 +11717,8 @@ export class PreIPOCompanySPV {
11711
11717
  this.coManagers.push(Partner.fromJS(item));
11712
11718
  }
11713
11719
  this.carry = _data["carry"];
11720
+ this.totalPendingSubscriptionDollars = _data["totalPendingSubscriptionDollars"];
11721
+ this.isApproved = _data["isApproved"];
11714
11722
  this.goLiveDate = _data["goLiveDate"] ? new Date(_data["goLiveDate"].toString()) : undefined;
11715
11723
  }
11716
11724
  }
@@ -11775,6 +11783,8 @@ export class PreIPOCompanySPV {
11775
11783
  data["coManagers"].push(item.toJSON());
11776
11784
  }
11777
11785
  data["carry"] = this.carry;
11786
+ data["totalPendingSubscriptionDollars"] = this.totalPendingSubscriptionDollars;
11787
+ data["isApproved"] = this.isApproved;
11778
11788
  data["goLiveDate"] = this.goLiveDate ? formatDate(this.goLiveDate) : undefined;
11779
11789
  return data;
11780
11790
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monarkmarkets/api-client",
3
- "version": "1.2.20",
3
+ "version": "1.3.0",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",