@monarkmarkets/api-client 1.1.125 → 1.2.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 +17 -4
- package/dist/Client.js +9 -2
- package/package.json +1 -1
package/dist/Client.d.ts
CHANGED
|
@@ -563,8 +563,7 @@ export declare class Client {
|
|
|
563
563
|
preIpoCompany2(searchTerm: string | undefined, searchCategories: string[] | undefined, sortBy: SortBy | undefined, sortOrder: SortOrder7 | undefined, minLastValuation: number | undefined, maxLastValuation: number | undefined, minTotalFunding: number | undefined, maxTotalFunding: number | undefined, listingType: string | undefined, isActive: boolean | undefined, page: number | undefined, pageSize: number | undefined): Promise<PreIPOCompanyApiResponse>;
|
|
564
564
|
protected processPreIpoCompany2(response: Response): Promise<PreIPOCompanyApiResponse>;
|
|
565
565
|
/**
|
|
566
|
-
*
|
|
567
|
-
Includes More detail such as News, Research, Investments, Spv's and Funding Rounds.
|
|
566
|
+
* Bulk Download all PreIPOCompanies.
|
|
568
567
|
* @param filterId (optional) Optional filter ID to narrow down the PreIPOCompanies.
|
|
569
568
|
* @param filterBy (optional) Optional filter type to categorize the PreIPOCompanies (e.g., Company, Investment, Spv).
|
|
570
569
|
* @param includes (optional) Optional list of additional data to include with the response (e.g., News, Research, Investments).
|
|
@@ -2145,6 +2144,8 @@ https://github.com/country-regions/country-region-data/blob/master/data.json for
|
|
|
2145
2144
|
percentageOwned?: number;
|
|
2146
2145
|
/** Represents the title of the individual investor. */
|
|
2147
2146
|
title?: string | undefined;
|
|
2147
|
+
/** Indicates whether the individual is the controlling member of the entity. */
|
|
2148
|
+
isControllingIndividual?: boolean | undefined;
|
|
2148
2149
|
/** Id of the individual investor. */
|
|
2149
2150
|
id?: string;
|
|
2150
2151
|
constructor(data?: IIndividualEntityInvestor);
|
|
@@ -2216,6 +2217,8 @@ https://github.com/country-regions/country-region-data/blob/master/data.json for
|
|
|
2216
2217
|
percentageOwned?: number;
|
|
2217
2218
|
/** Represents the title of the individual investor. */
|
|
2218
2219
|
title?: string | undefined;
|
|
2220
|
+
/** Indicates whether the individual is the controlling member of the entity. */
|
|
2221
|
+
isControllingIndividual?: boolean | undefined;
|
|
2219
2222
|
/** Id of the individual investor. */
|
|
2220
2223
|
id?: string;
|
|
2221
2224
|
}
|
|
@@ -2283,6 +2286,8 @@ https://github.com/country-regions/country-region-data/blob/master/data.json for
|
|
|
2283
2286
|
percentageOwned?: number;
|
|
2284
2287
|
/** Represents the title of the individual investor. */
|
|
2285
2288
|
title?: string | undefined;
|
|
2289
|
+
/** Indicates whether the individual is the controlling member of the entity. */
|
|
2290
|
+
isControllingIndividual?: boolean | undefined;
|
|
2286
2291
|
constructor(data?: IIndividualEntityInvestorBase);
|
|
2287
2292
|
init(_data?: any): void;
|
|
2288
2293
|
static fromJS(data: any): IndividualEntityInvestorBase;
|
|
@@ -2352,6 +2357,8 @@ https://github.com/country-regions/country-region-data/blob/master/data.json for
|
|
|
2352
2357
|
percentageOwned?: number;
|
|
2353
2358
|
/** Represents the title of the individual investor. */
|
|
2354
2359
|
title?: string | undefined;
|
|
2360
|
+
/** Indicates whether the individual is the controlling member of the entity. */
|
|
2361
|
+
isControllingIndividual?: boolean | undefined;
|
|
2355
2362
|
}
|
|
2356
2363
|
export declare class IndividualInvestor implements IIndividualInvestor {
|
|
2357
2364
|
/** First name of the Investor. */
|
|
@@ -2590,7 +2597,7 @@ export declare class InvestorSubscription implements IInvestorSubscription {
|
|
|
2590
2597
|
investorId?: string;
|
|
2591
2598
|
/** Describes the amount, in dollars, an Investor intends to invest into an SPV. */
|
|
2592
2599
|
amountReservedDollars: number;
|
|
2593
|
-
/** Describes how many underlying shares in the pre-IPO company are associated with this InvestorSubscription.
|
|
2600
|
+
/** Describes how many underlying shares in the pre-IPO company are associated with this InvestorSubscription. Monark calculates fractional shares up to 9dps. */
|
|
2594
2601
|
amountReservedShares: number;
|
|
2595
2602
|
/** The current status of this InvestorSubscription. */
|
|
2596
2603
|
status: InvestorSubscriptionStatus;
|
|
@@ -2618,7 +2625,7 @@ export interface IInvestorSubscription {
|
|
|
2618
2625
|
investorId?: string;
|
|
2619
2626
|
/** Describes the amount, in dollars, an Investor intends to invest into an SPV. */
|
|
2620
2627
|
amountReservedDollars: number;
|
|
2621
|
-
/** Describes how many underlying shares in the pre-IPO company are associated with this InvestorSubscription.
|
|
2628
|
+
/** Describes how many underlying shares in the pre-IPO company are associated with this InvestorSubscription. Monark calculates fractional shares up to 9dps. */
|
|
2622
2629
|
amountReservedShares: number;
|
|
2623
2630
|
/** The current status of this InvestorSubscription. */
|
|
2624
2631
|
status: InvestorSubscriptionStatus;
|
|
@@ -5581,6 +5588,8 @@ https://github.com/country-regions/country-region-data/blob/master/data.json for
|
|
|
5581
5588
|
percentageOwned?: number;
|
|
5582
5589
|
/** Represents the title of the individual investor. */
|
|
5583
5590
|
title?: string | undefined;
|
|
5591
|
+
/** Indicates whether the individual is the controlling member of the entity. */
|
|
5592
|
+
isControllingIndividual?: boolean | undefined;
|
|
5584
5593
|
/** Identifier for the individual investor. */
|
|
5585
5594
|
id: string;
|
|
5586
5595
|
constructor(data?: IUpdateIndividualEntityInvestor);
|
|
@@ -5652,6 +5661,8 @@ https://github.com/country-regions/country-region-data/blob/master/data.json for
|
|
|
5652
5661
|
percentageOwned?: number;
|
|
5653
5662
|
/** Represents the title of the individual investor. */
|
|
5654
5663
|
title?: string | undefined;
|
|
5664
|
+
/** Indicates whether the individual is the controlling member of the entity. */
|
|
5665
|
+
isControllingIndividual?: boolean | undefined;
|
|
5655
5666
|
/** Identifier for the individual investor. */
|
|
5656
5667
|
id: string;
|
|
5657
5668
|
}
|
|
@@ -5985,6 +5996,7 @@ export declare enum DocumentType {
|
|
|
5985
5996
|
SubscriptionAgreementPreview_Monark = "SubscriptionAgreementPreview_Monark",
|
|
5986
5997
|
DealDiligence_Monark = "DealDiligence_Monark",
|
|
5987
5998
|
NoLienAttestation_Monark = "NoLienAttestation_Monark",
|
|
5999
|
+
KeyTerms_Monark = "KeyTerms_Monark",
|
|
5988
6000
|
RegisteredFundSubscriptionAgreement_Monark = "RegisteredFundSubscriptionAgreement_Monark",
|
|
5989
6001
|
RegisteredFundProspectus_Monark = "RegisteredFundProspectus_Monark",
|
|
5990
6002
|
RegisteredFundFactCard_Monark = "RegisteredFundFactCard_Monark",
|
|
@@ -6308,6 +6320,7 @@ export declare enum DocumentType2 {
|
|
|
6308
6320
|
SubscriptionAgreementPreview_Monark = "SubscriptionAgreementPreview_Monark",
|
|
6309
6321
|
DealDiligence_Monark = "DealDiligence_Monark",
|
|
6310
6322
|
NoLienAttestation_Monark = "NoLienAttestation_Monark",
|
|
6323
|
+
KeyTerms_Monark = "KeyTerms_Monark",
|
|
6311
6324
|
RegisteredFundSubscriptionAgreement_Monark = "RegisteredFundSubscriptionAgreement_Monark",
|
|
6312
6325
|
RegisteredFundProspectus_Monark = "RegisteredFundProspectus_Monark",
|
|
6313
6326
|
RegisteredFundFactCard_Monark = "RegisteredFundFactCard_Monark",
|
package/dist/Client.js
CHANGED
|
@@ -3872,8 +3872,7 @@ export class Client {
|
|
|
3872
3872
|
return Promise.resolve(null);
|
|
3873
3873
|
}
|
|
3874
3874
|
/**
|
|
3875
|
-
*
|
|
3876
|
-
Includes More detail such as News, Research, Investments, Spv's and Funding Rounds.
|
|
3875
|
+
* Bulk Download all PreIPOCompanies.
|
|
3877
3876
|
* @param filterId (optional) Optional filter ID to narrow down the PreIPOCompanies.
|
|
3878
3877
|
* @param filterBy (optional) Optional filter type to categorize the PreIPOCompanies (e.g., Company, Investment, Spv).
|
|
3879
3878
|
* @param includes (optional) Optional list of additional data to include with the response (e.g., News, Research, Investments).
|
|
@@ -7618,6 +7617,7 @@ export class IndividualEntityInvestor {
|
|
|
7618
7617
|
this.entityInvestorType = _data["entityInvestorType"];
|
|
7619
7618
|
this.percentageOwned = _data["percentageOwned"];
|
|
7620
7619
|
this.title = _data["title"];
|
|
7620
|
+
this.isControllingIndividual = _data["isControllingIndividual"];
|
|
7621
7621
|
this.id = _data["id"];
|
|
7622
7622
|
}
|
|
7623
7623
|
}
|
|
@@ -7659,6 +7659,7 @@ export class IndividualEntityInvestor {
|
|
|
7659
7659
|
data["entityInvestorType"] = this.entityInvestorType;
|
|
7660
7660
|
data["percentageOwned"] = this.percentageOwned;
|
|
7661
7661
|
data["title"] = this.title;
|
|
7662
|
+
data["isControllingIndividual"] = this.isControllingIndividual;
|
|
7662
7663
|
data["id"] = this.id;
|
|
7663
7664
|
return data;
|
|
7664
7665
|
}
|
|
@@ -7704,6 +7705,7 @@ export class IndividualEntityInvestorBase {
|
|
|
7704
7705
|
this.entityInvestorType = _data["entityInvestorType"];
|
|
7705
7706
|
this.percentageOwned = _data["percentageOwned"];
|
|
7706
7707
|
this.title = _data["title"];
|
|
7708
|
+
this.isControllingIndividual = _data["isControllingIndividual"];
|
|
7707
7709
|
}
|
|
7708
7710
|
}
|
|
7709
7711
|
static fromJS(data) {
|
|
@@ -7744,6 +7746,7 @@ export class IndividualEntityInvestorBase {
|
|
|
7744
7746
|
data["entityInvestorType"] = this.entityInvestorType;
|
|
7745
7747
|
data["percentageOwned"] = this.percentageOwned;
|
|
7746
7748
|
data["title"] = this.title;
|
|
7749
|
+
data["isControllingIndividual"] = this.isControllingIndividual;
|
|
7747
7750
|
return data;
|
|
7748
7751
|
}
|
|
7749
7752
|
}
|
|
@@ -11145,6 +11148,7 @@ export class UpdateIndividualEntityInvestor {
|
|
|
11145
11148
|
this.entityInvestorType = _data["entityInvestorType"];
|
|
11146
11149
|
this.percentageOwned = _data["percentageOwned"];
|
|
11147
11150
|
this.title = _data["title"];
|
|
11151
|
+
this.isControllingIndividual = _data["isControllingIndividual"];
|
|
11148
11152
|
this.id = _data["id"];
|
|
11149
11153
|
}
|
|
11150
11154
|
}
|
|
@@ -11186,6 +11190,7 @@ export class UpdateIndividualEntityInvestor {
|
|
|
11186
11190
|
data["entityInvestorType"] = this.entityInvestorType;
|
|
11187
11191
|
data["percentageOwned"] = this.percentageOwned;
|
|
11188
11192
|
data["title"] = this.title;
|
|
11193
|
+
data["isControllingIndividual"] = this.isControllingIndividual;
|
|
11189
11194
|
data["id"] = this.id;
|
|
11190
11195
|
return data;
|
|
11191
11196
|
}
|
|
@@ -11647,6 +11652,7 @@ export var DocumentType;
|
|
|
11647
11652
|
DocumentType["SubscriptionAgreementPreview_Monark"] = "SubscriptionAgreementPreview_Monark";
|
|
11648
11653
|
DocumentType["DealDiligence_Monark"] = "DealDiligence_Monark";
|
|
11649
11654
|
DocumentType["NoLienAttestation_Monark"] = "NoLienAttestation_Monark";
|
|
11655
|
+
DocumentType["KeyTerms_Monark"] = "KeyTerms_Monark";
|
|
11650
11656
|
DocumentType["RegisteredFundSubscriptionAgreement_Monark"] = "RegisteredFundSubscriptionAgreement_Monark";
|
|
11651
11657
|
DocumentType["RegisteredFundProspectus_Monark"] = "RegisteredFundProspectus_Monark";
|
|
11652
11658
|
DocumentType["RegisteredFundFactCard_Monark"] = "RegisteredFundFactCard_Monark";
|
|
@@ -12008,6 +12014,7 @@ export var DocumentType2;
|
|
|
12008
12014
|
DocumentType2["SubscriptionAgreementPreview_Monark"] = "SubscriptionAgreementPreview_Monark";
|
|
12009
12015
|
DocumentType2["DealDiligence_Monark"] = "DealDiligence_Monark";
|
|
12010
12016
|
DocumentType2["NoLienAttestation_Monark"] = "NoLienAttestation_Monark";
|
|
12017
|
+
DocumentType2["KeyTerms_Monark"] = "KeyTerms_Monark";
|
|
12011
12018
|
DocumentType2["RegisteredFundSubscriptionAgreement_Monark"] = "RegisteredFundSubscriptionAgreement_Monark";
|
|
12012
12019
|
DocumentType2["RegisteredFundProspectus_Monark"] = "RegisteredFundProspectus_Monark";
|
|
12013
12020
|
DocumentType2["RegisteredFundFactCard_Monark"] = "RegisteredFundFactCard_Monark";
|