@monarkmarkets/api-client 1.1.112 → 1.1.113
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 +298 -8
- package/dist/Client.js +326 -36
- package/package.json +1 -1
package/dist/Client.d.ts
CHANGED
|
@@ -849,12 +849,19 @@ export declare class BulkPreIPOCompany implements IBulkPreIPOCompany {
|
|
|
849
849
|
referencePriceDate?: Date | undefined;
|
|
850
850
|
/** Unique symbol assigned to this Pre-IPO Company. Each single asset SPV associated with this Pre-IPO Company will have its own, SPV-specific symbol that leverages this symbol as its "base". */
|
|
851
851
|
symbol?: string | undefined;
|
|
852
|
+
/** Defines if the company is public or private. Companies that IPO will be updated accordingly. */
|
|
853
|
+
listingType?: string | undefined;
|
|
854
|
+
/** Defines if the company is active or inactive. Companies are updated to inactive if they experience a bankruptcy, shutdown, or similar corporate event. */
|
|
855
|
+
isActive?: boolean | undefined;
|
|
856
|
+
/** Includes details on the exchange, ticker, listed_at and delisted_at (if it exists). */
|
|
857
|
+
listings?: Listing[] | undefined;
|
|
858
|
+
/** Includes details on the IPO or delisting date. */
|
|
859
|
+
milestones?: Milestone[] | undefined;
|
|
852
860
|
news?: PreIPOCompanyNews[] | undefined;
|
|
853
861
|
research?: PreIPOCompanyResearch[] | undefined;
|
|
854
862
|
fundingRounds?: PreIPOCompanyFundingRound[] | undefined;
|
|
855
|
-
npmFundingRounds?: NpmFundingRound[] | undefined;
|
|
856
863
|
investments?: PreIPOCompanyInvestment[] | undefined;
|
|
857
|
-
spvs?:
|
|
864
|
+
spvs?: BulkPreIPOCompanySPV[] | undefined;
|
|
858
865
|
constructor(data?: IBulkPreIPOCompany);
|
|
859
866
|
init(_data?: any): void;
|
|
860
867
|
static fromJS(data: any): BulkPreIPOCompany;
|
|
@@ -925,12 +932,19 @@ export interface IBulkPreIPOCompany {
|
|
|
925
932
|
referencePriceDate?: Date | undefined;
|
|
926
933
|
/** Unique symbol assigned to this Pre-IPO Company. Each single asset SPV associated with this Pre-IPO Company will have its own, SPV-specific symbol that leverages this symbol as its "base". */
|
|
927
934
|
symbol?: string | undefined;
|
|
935
|
+
/** Defines if the company is public or private. Companies that IPO will be updated accordingly. */
|
|
936
|
+
listingType?: string | undefined;
|
|
937
|
+
/** Defines if the company is active or inactive. Companies are updated to inactive if they experience a bankruptcy, shutdown, or similar corporate event. */
|
|
938
|
+
isActive?: boolean | undefined;
|
|
939
|
+
/** Includes details on the exchange, ticker, listed_at and delisted_at (if it exists). */
|
|
940
|
+
listings?: Listing[] | undefined;
|
|
941
|
+
/** Includes details on the IPO or delisting date. */
|
|
942
|
+
milestones?: Milestone[] | undefined;
|
|
928
943
|
news?: PreIPOCompanyNews[] | undefined;
|
|
929
944
|
research?: PreIPOCompanyResearch[] | undefined;
|
|
930
945
|
fundingRounds?: PreIPOCompanyFundingRound[] | undefined;
|
|
931
|
-
npmFundingRounds?: NpmFundingRound[] | undefined;
|
|
932
946
|
investments?: PreIPOCompanyInvestment[] | undefined;
|
|
933
|
-
spvs?:
|
|
947
|
+
spvs?: BulkPreIPOCompanySPV[] | undefined;
|
|
934
948
|
}
|
|
935
949
|
export declare class BulkPreIPOCompanyApiResponse implements IBulkPreIPOCompanyApiResponse {
|
|
936
950
|
items?: BulkPreIPOCompany[] | undefined;
|
|
@@ -944,6 +958,158 @@ export interface IBulkPreIPOCompanyApiResponse {
|
|
|
944
958
|
items?: BulkPreIPOCompany[] | undefined;
|
|
945
959
|
pagination?: Pagination | undefined;
|
|
946
960
|
}
|
|
961
|
+
export declare class BulkPreIPOCompanySPV implements IBulkPreIPOCompanySPV {
|
|
962
|
+
/** Unique ID associated with an SPV. */
|
|
963
|
+
id: string;
|
|
964
|
+
/** The unique ID of the PreIPOCompany that the SPV is investing into. */
|
|
965
|
+
preIPOCompanyInvestmentId: string;
|
|
966
|
+
/** The PreIPOCompany which the SPV will be investing into. */
|
|
967
|
+
preIPOCompanyId: string;
|
|
968
|
+
/** This number describes the total amount of capital that will be raised into the SPV, including management fees, commission paid to Partners distributing the SPV, fund admin fees, and all other expenses. */
|
|
969
|
+
totalDollarAllocation?: number | undefined;
|
|
970
|
+
/** The minimum amount that an Investor can invest into an SPV during a primary offering. */
|
|
971
|
+
minCommitmentAmount?: number | undefined;
|
|
972
|
+
/** The name of the SPV. */
|
|
973
|
+
name: string | undefined;
|
|
974
|
+
/** Describes the implied valuation of the associated PreIPOCompany, and it accounts for fees, commissions, markups (if any), and share price. This number is set when the SPV is created. */
|
|
975
|
+
valuation?: number;
|
|
976
|
+
/** Short description of the SPV. */
|
|
977
|
+
synopsis?: string | undefined;
|
|
978
|
+
/** Longer description of the SPV’s strategy or purpose. */
|
|
979
|
+
description?: string | undefined;
|
|
980
|
+
/** A list of notable investors associated with an SPV. */
|
|
981
|
+
notableInvestors?: string[] | undefined;
|
|
982
|
+
/** The name of the Master LLC. */
|
|
983
|
+
masterLLCName?: string | undefined;
|
|
984
|
+
/** The one time, up front management fee charged by the SPV. */
|
|
985
|
+
managementFee?: number | undefined;
|
|
986
|
+
/** 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. */
|
|
987
|
+
managementFeeYearsPayable?: number | undefined;
|
|
988
|
+
/** Funding deadline associated with the primary issuance of an SPV. Prefunded SPVs may not have a funding deadline. SPVs will no longer accept Subscriptions once the Funding Deadline has passed. */
|
|
989
|
+
fundingDeadline?: Date | undefined;
|
|
990
|
+
/** The exemptions claimed by a PreIPOCompanySPV. These align with the SEC's Form D Item 6: Federal Exemptions and Exclusions Claimed. */
|
|
991
|
+
exemptionsClaimed?: exemptionsClaimed[] | undefined;
|
|
992
|
+
/** The stage that an SPV is in. Refer to the “SPV Status Transitions” page in our Guides for a detailed description of each stage. */
|
|
993
|
+
monarkStage: BulkPreIPOCompanySPVMonarkStage;
|
|
994
|
+
/** CUSIP assigned to the SPV. Monark acquires and assigns the CUSIP after the first trade has been executed through our ATS. */
|
|
995
|
+
cusip?: string | undefined;
|
|
996
|
+
/** Symbol assigned to the SPV. This symbol is created and assigned to the SPV upon its creation. See the [Symbology guide](https://api-docs.monark-markets.com/docs/symbology) for a more detailed description of how symbols are generated. */
|
|
997
|
+
tradingSymbol?: string | undefined;
|
|
998
|
+
/** The date that the SPV officially closed. This field will be populated after the close of the SPV. */
|
|
999
|
+
closeDate?: Date | undefined;
|
|
1000
|
+
/** Custodian where SPV shares are held. */
|
|
1001
|
+
spvCustodian?: string | undefined;
|
|
1002
|
+
/** The number of shares in the PreIPOCompany that will be held by the SPV. */
|
|
1003
|
+
totalShareAllocation?: number;
|
|
1004
|
+
/** The number of shares in the PreIPOCompany that will be held by the SPV. */
|
|
1005
|
+
totalNumberOfSeats?: number;
|
|
1006
|
+
/** The number of remaining LP positions in an SPV available to Investors. Each time an Investor completes a Subscription, this number decreases by one. Once this number reaches zero, the MonarkStage attribute associated with the SPV will move from “PRIMARY_FUNDRAISE” to “PRE_CLOSE_REVIEW.” */
|
|
1007
|
+
numberOfSeatsRemaining?: number;
|
|
1008
|
+
/** The remaining dollar amount in a primary fundraise of an SPV. Once this number reaches zero the SPV will no longer accept new Investors on the primary market. */
|
|
1009
|
+
remainingDollarAllocation?: number;
|
|
1010
|
+
/** The remaining number of shares in a primary fundraise of an SPV. Once this number reaches zero the SPV will no longer accept new Investors on the primary market. */
|
|
1011
|
+
remainingShareAllocation?: number;
|
|
1012
|
+
/** Indicates whether the SPV will be prefunded. */
|
|
1013
|
+
preFundedInventory?: boolean;
|
|
1014
|
+
/** The price per share of the PreIPOCompany, excluding fees, that an investor will pay when they invest in an SPV. */
|
|
1015
|
+
investorPricePerShare?: number | undefined;
|
|
1016
|
+
/** The fee per share of the PreIPOCompany, that an Investor will pay when they invest in an SPV on the primary issuance. The InvestorPricePerShare plus the InvestorFeePerShare will determine the AllInPricePerShare. */
|
|
1017
|
+
investorFeePerShare?: number | undefined;
|
|
1018
|
+
/** The total amount per share that an Investor will pay, including fees, when they invest in an SPV. */
|
|
1019
|
+
allInPricePerShare?: number | undefined;
|
|
1020
|
+
/** The base documents associated with the SPV (Optional). */
|
|
1021
|
+
documents?: Document[] | undefined;
|
|
1022
|
+
/** SPV account ID. */
|
|
1023
|
+
spvAccountID?: number | undefined;
|
|
1024
|
+
/** The name of the parent company. */
|
|
1025
|
+
preIPOCompanyName?: string | undefined;
|
|
1026
|
+
/** The manager details of this SPV. */
|
|
1027
|
+
manager?: Partner | undefined;
|
|
1028
|
+
/** List of Co-Managers of this SPV. */
|
|
1029
|
+
coManagers?: Partner[] | undefined;
|
|
1030
|
+
/** Optional carry interest. */
|
|
1031
|
+
carry?: number | undefined;
|
|
1032
|
+
/** List of allowed financial institution IDs for this SPV. */
|
|
1033
|
+
allowedFinancialInstitutions?: string[] | undefined;
|
|
1034
|
+
constructor(data?: IBulkPreIPOCompanySPV);
|
|
1035
|
+
init(_data?: any): void;
|
|
1036
|
+
static fromJS(data: any): BulkPreIPOCompanySPV;
|
|
1037
|
+
toJSON(data?: any): any;
|
|
1038
|
+
}
|
|
1039
|
+
export interface IBulkPreIPOCompanySPV {
|
|
1040
|
+
/** Unique ID associated with an SPV. */
|
|
1041
|
+
id: string;
|
|
1042
|
+
/** The unique ID of the PreIPOCompany that the SPV is investing into. */
|
|
1043
|
+
preIPOCompanyInvestmentId: string;
|
|
1044
|
+
/** The PreIPOCompany which the SPV will be investing into. */
|
|
1045
|
+
preIPOCompanyId: string;
|
|
1046
|
+
/** This number describes the total amount of capital that will be raised into the SPV, including management fees, commission paid to Partners distributing the SPV, fund admin fees, and all other expenses. */
|
|
1047
|
+
totalDollarAllocation?: number | undefined;
|
|
1048
|
+
/** The minimum amount that an Investor can invest into an SPV during a primary offering. */
|
|
1049
|
+
minCommitmentAmount?: number | undefined;
|
|
1050
|
+
/** The name of the SPV. */
|
|
1051
|
+
name: string | undefined;
|
|
1052
|
+
/** Describes the implied valuation of the associated PreIPOCompany, and it accounts for fees, commissions, markups (if any), and share price. This number is set when the SPV is created. */
|
|
1053
|
+
valuation?: number;
|
|
1054
|
+
/** Short description of the SPV. */
|
|
1055
|
+
synopsis?: string | undefined;
|
|
1056
|
+
/** Longer description of the SPV’s strategy or purpose. */
|
|
1057
|
+
description?: string | undefined;
|
|
1058
|
+
/** A list of notable investors associated with an SPV. */
|
|
1059
|
+
notableInvestors?: string[] | undefined;
|
|
1060
|
+
/** The name of the Master LLC. */
|
|
1061
|
+
masterLLCName?: string | undefined;
|
|
1062
|
+
/** The one time, up front management fee charged by the SPV. */
|
|
1063
|
+
managementFee?: number | undefined;
|
|
1064
|
+
/** 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. */
|
|
1065
|
+
managementFeeYearsPayable?: number | undefined;
|
|
1066
|
+
/** Funding deadline associated with the primary issuance of an SPV. Prefunded SPVs may not have a funding deadline. SPVs will no longer accept Subscriptions once the Funding Deadline has passed. */
|
|
1067
|
+
fundingDeadline?: Date | undefined;
|
|
1068
|
+
/** The exemptions claimed by a PreIPOCompanySPV. These align with the SEC's Form D Item 6: Federal Exemptions and Exclusions Claimed. */
|
|
1069
|
+
exemptionsClaimed?: exemptionsClaimed[] | undefined;
|
|
1070
|
+
/** The stage that an SPV is in. Refer to the “SPV Status Transitions” page in our Guides for a detailed description of each stage. */
|
|
1071
|
+
monarkStage: BulkPreIPOCompanySPVMonarkStage;
|
|
1072
|
+
/** CUSIP assigned to the SPV. Monark acquires and assigns the CUSIP after the first trade has been executed through our ATS. */
|
|
1073
|
+
cusip?: string | undefined;
|
|
1074
|
+
/** Symbol assigned to the SPV. This symbol is created and assigned to the SPV upon its creation. See the [Symbology guide](https://api-docs.monark-markets.com/docs/symbology) for a more detailed description of how symbols are generated. */
|
|
1075
|
+
tradingSymbol?: string | undefined;
|
|
1076
|
+
/** The date that the SPV officially closed. This field will be populated after the close of the SPV. */
|
|
1077
|
+
closeDate?: Date | undefined;
|
|
1078
|
+
/** Custodian where SPV shares are held. */
|
|
1079
|
+
spvCustodian?: string | undefined;
|
|
1080
|
+
/** The number of shares in the PreIPOCompany that will be held by the SPV. */
|
|
1081
|
+
totalShareAllocation?: number;
|
|
1082
|
+
/** The number of shares in the PreIPOCompany that will be held by the SPV. */
|
|
1083
|
+
totalNumberOfSeats?: number;
|
|
1084
|
+
/** The number of remaining LP positions in an SPV available to Investors. Each time an Investor completes a Subscription, this number decreases by one. Once this number reaches zero, the MonarkStage attribute associated with the SPV will move from “PRIMARY_FUNDRAISE” to “PRE_CLOSE_REVIEW.” */
|
|
1085
|
+
numberOfSeatsRemaining?: number;
|
|
1086
|
+
/** The remaining dollar amount in a primary fundraise of an SPV. Once this number reaches zero the SPV will no longer accept new Investors on the primary market. */
|
|
1087
|
+
remainingDollarAllocation?: number;
|
|
1088
|
+
/** The remaining number of shares in a primary fundraise of an SPV. Once this number reaches zero the SPV will no longer accept new Investors on the primary market. */
|
|
1089
|
+
remainingShareAllocation?: number;
|
|
1090
|
+
/** Indicates whether the SPV will be prefunded. */
|
|
1091
|
+
preFundedInventory?: boolean;
|
|
1092
|
+
/** The price per share of the PreIPOCompany, excluding fees, that an investor will pay when they invest in an SPV. */
|
|
1093
|
+
investorPricePerShare?: number | undefined;
|
|
1094
|
+
/** The fee per share of the PreIPOCompany, that an Investor will pay when they invest in an SPV on the primary issuance. The InvestorPricePerShare plus the InvestorFeePerShare will determine the AllInPricePerShare. */
|
|
1095
|
+
investorFeePerShare?: number | undefined;
|
|
1096
|
+
/** The total amount per share that an Investor will pay, including fees, when they invest in an SPV. */
|
|
1097
|
+
allInPricePerShare?: number | undefined;
|
|
1098
|
+
/** The base documents associated with the SPV (Optional). */
|
|
1099
|
+
documents?: Document[] | undefined;
|
|
1100
|
+
/** SPV account ID. */
|
|
1101
|
+
spvAccountID?: number | undefined;
|
|
1102
|
+
/** The name of the parent company. */
|
|
1103
|
+
preIPOCompanyName?: string | undefined;
|
|
1104
|
+
/** The manager details of this SPV. */
|
|
1105
|
+
manager?: Partner | undefined;
|
|
1106
|
+
/** List of Co-Managers of this SPV. */
|
|
1107
|
+
coManagers?: Partner[] | undefined;
|
|
1108
|
+
/** Optional carry interest. */
|
|
1109
|
+
carry?: number | undefined;
|
|
1110
|
+
/** List of allowed financial institution IDs for this SPV. */
|
|
1111
|
+
allowedFinancialInstitutions?: string[] | undefined;
|
|
1112
|
+
}
|
|
947
1113
|
export declare class Citation implements ICitation {
|
|
948
1114
|
/** Type of the citation. */
|
|
949
1115
|
type: string;
|
|
@@ -2364,6 +2530,70 @@ export interface ILayeredSPV {
|
|
|
2364
2530
|
/** Describes the portion of the whole SPV represented by the LP stake being sold. This number can be found by dividing: SPVOutstandingShareCount / LPStakeShareCount. This number, represented as a percentage, may be used to determine whether or not the 10% lookthrough provision should be triggered. */
|
|
2365
2531
|
lpStakePercentage?: number;
|
|
2366
2532
|
}
|
|
2533
|
+
/** Represents a public listing on a stock exchange. */
|
|
2534
|
+
export declare class Listing implements IListing {
|
|
2535
|
+
/** ID for the listing. */
|
|
2536
|
+
id: string;
|
|
2537
|
+
/** Type of listing. */
|
|
2538
|
+
type: string;
|
|
2539
|
+
/** The exchange venue (e.g., NASDAQ, NYSE). */
|
|
2540
|
+
venue: string;
|
|
2541
|
+
/** Stock ticker used on the exchange. */
|
|
2542
|
+
ticker: string;
|
|
2543
|
+
/** Date the company was listed on the exchange. */
|
|
2544
|
+
listedAt?: Date | undefined;
|
|
2545
|
+
/** Date the company was delisted, if applicable. */
|
|
2546
|
+
delistedAt?: Date | undefined;
|
|
2547
|
+
constructor(data?: IListing);
|
|
2548
|
+
init(_data?: any): void;
|
|
2549
|
+
static fromJS(data: any): Listing;
|
|
2550
|
+
toJSON(data?: any): any;
|
|
2551
|
+
}
|
|
2552
|
+
/** Represents a public listing on a stock exchange. */
|
|
2553
|
+
export interface IListing {
|
|
2554
|
+
/** ID for the listing. */
|
|
2555
|
+
id: string;
|
|
2556
|
+
/** Type of listing. */
|
|
2557
|
+
type: string;
|
|
2558
|
+
/** The exchange venue (e.g., NASDAQ, NYSE). */
|
|
2559
|
+
venue: string;
|
|
2560
|
+
/** Stock ticker used on the exchange. */
|
|
2561
|
+
ticker: string;
|
|
2562
|
+
/** Date the company was listed on the exchange. */
|
|
2563
|
+
listedAt?: Date | undefined;
|
|
2564
|
+
/** Date the company was delisted, if applicable. */
|
|
2565
|
+
delistedAt?: Date | undefined;
|
|
2566
|
+
}
|
|
2567
|
+
/** Represents a significant event or milestone in the company’s lifecycle. */
|
|
2568
|
+
export declare class Milestone implements IMilestone {
|
|
2569
|
+
/** ID for the milestone. */
|
|
2570
|
+
id: string;
|
|
2571
|
+
/** Type of milestone (e.g., IPO, acquisition). */
|
|
2572
|
+
type: string;
|
|
2573
|
+
/** The date of the milestone. */
|
|
2574
|
+
date: Date;
|
|
2575
|
+
/** Human-readable label describing the milestone. */
|
|
2576
|
+
label?: string | undefined;
|
|
2577
|
+
/** Description of the milestone. */
|
|
2578
|
+
description?: string | undefined;
|
|
2579
|
+
constructor(data?: IMilestone);
|
|
2580
|
+
init(_data?: any): void;
|
|
2581
|
+
static fromJS(data: any): Milestone;
|
|
2582
|
+
toJSON(data?: any): any;
|
|
2583
|
+
}
|
|
2584
|
+
/** Represents a significant event or milestone in the company’s lifecycle. */
|
|
2585
|
+
export interface IMilestone {
|
|
2586
|
+
/** ID for the milestone. */
|
|
2587
|
+
id: string;
|
|
2588
|
+
/** Type of milestone (e.g., IPO, acquisition). */
|
|
2589
|
+
type: string;
|
|
2590
|
+
/** The date of the milestone. */
|
|
2591
|
+
date: Date;
|
|
2592
|
+
/** Human-readable label describing the milestone. */
|
|
2593
|
+
label?: string | undefined;
|
|
2594
|
+
/** Description of the milestone. */
|
|
2595
|
+
description?: string | undefined;
|
|
2596
|
+
}
|
|
2367
2597
|
export declare class ModifyIndividualInvestor implements IModifyIndividualInvestor {
|
|
2368
2598
|
/** First name of the Investor. */
|
|
2369
2599
|
firstName: string;
|
|
@@ -3262,6 +3492,14 @@ export declare class PreIPOCompany implements IPreIPOCompany {
|
|
|
3262
3492
|
referencePriceDate?: Date | undefined;
|
|
3263
3493
|
/** Unique symbol assigned to this Pre-IPO Company. Each single asset SPV associated with this Pre-IPO Company will have its own, SPV-specific symbol that leverages this symbol as its "base". */
|
|
3264
3494
|
symbol?: string | undefined;
|
|
3495
|
+
/** Defines if the company is public or private. Companies that IPO will be updated accordingly. */
|
|
3496
|
+
listingType?: string | undefined;
|
|
3497
|
+
/** Defines if the company is active or inactive. Companies are updated to inactive if they experience a bankruptcy, shutdown, or similar corporate event. */
|
|
3498
|
+
isActive?: boolean | undefined;
|
|
3499
|
+
/** Includes details on the exchange, ticker, listed_at and delisted_at (if it exists). */
|
|
3500
|
+
listings?: Listing[] | undefined;
|
|
3501
|
+
/** Includes details on the IPO or delisting date. */
|
|
3502
|
+
milestones?: Milestone[] | undefined;
|
|
3265
3503
|
constructor(data?: IPreIPOCompany);
|
|
3266
3504
|
init(_data?: any): void;
|
|
3267
3505
|
static fromJS(data: any): PreIPOCompany;
|
|
@@ -3333,6 +3571,14 @@ export interface IPreIPOCompany {
|
|
|
3333
3571
|
referencePriceDate?: Date | undefined;
|
|
3334
3572
|
/** Unique symbol assigned to this Pre-IPO Company. Each single asset SPV associated with this Pre-IPO Company will have its own, SPV-specific symbol that leverages this symbol as its "base". */
|
|
3335
3573
|
symbol?: string | undefined;
|
|
3574
|
+
/** Defines if the company is public or private. Companies that IPO will be updated accordingly. */
|
|
3575
|
+
listingType?: string | undefined;
|
|
3576
|
+
/** Defines if the company is active or inactive. Companies are updated to inactive if they experience a bankruptcy, shutdown, or similar corporate event. */
|
|
3577
|
+
isActive?: boolean | undefined;
|
|
3578
|
+
/** Includes details on the exchange, ticker, listed_at and delisted_at (if it exists). */
|
|
3579
|
+
listings?: Listing[] | undefined;
|
|
3580
|
+
/** Includes details on the IPO or delisting date. */
|
|
3581
|
+
milestones?: Milestone[] | undefined;
|
|
3336
3582
|
}
|
|
3337
3583
|
export declare class PreIPOCompanyApiResponse implements IPreIPOCompanyApiResponse {
|
|
3338
3584
|
items?: PreIPOCompany[] | undefined;
|
|
@@ -3661,7 +3907,7 @@ export declare class PreIPOCompanySPV implements IPreIPOCompanySPV {
|
|
|
3661
3907
|
/** Funding deadline associated with the primary issuance of an SPV. Prefunded SPVs may not have a funding deadline. SPVs will no longer accept Subscriptions once the Funding Deadline has passed. */
|
|
3662
3908
|
fundingDeadline?: Date | undefined;
|
|
3663
3909
|
/** The exemptions claimed by a PreIPOCompanySPV. These align with the SEC's Form D Item 6: Federal Exemptions and Exclusions Claimed. */
|
|
3664
|
-
exemptionsClaimed?:
|
|
3910
|
+
exemptionsClaimed?: exemptionsClaimed2[] | undefined;
|
|
3665
3911
|
/** The stage that an SPV is in. Refer to the “SPV Status Transitions” page in our Guides for a detailed description of each stage. */
|
|
3666
3912
|
monarkStage: PreIPOCompanySPVMonarkStage;
|
|
3667
3913
|
/** CUSIP assigned to the SPV. Monark acquires and assigns the CUSIP after the first trade has been executed through our ATS. */
|
|
@@ -3700,6 +3946,8 @@ export declare class PreIPOCompanySPV implements IPreIPOCompanySPV {
|
|
|
3700
3946
|
manager?: Partner | undefined;
|
|
3701
3947
|
/** List of Co-Managers of this SPV. */
|
|
3702
3948
|
coManagers?: Partner[] | undefined;
|
|
3949
|
+
/** Optional carry interest. */
|
|
3950
|
+
carry?: number | undefined;
|
|
3703
3951
|
constructor(data?: IPreIPOCompanySPV);
|
|
3704
3952
|
init(_data?: any): void;
|
|
3705
3953
|
static fromJS(data: any): PreIPOCompanySPV;
|
|
@@ -3736,7 +3984,7 @@ export interface IPreIPOCompanySPV {
|
|
|
3736
3984
|
/** Funding deadline associated with the primary issuance of an SPV. Prefunded SPVs may not have a funding deadline. SPVs will no longer accept Subscriptions once the Funding Deadline has passed. */
|
|
3737
3985
|
fundingDeadline?: Date | undefined;
|
|
3738
3986
|
/** The exemptions claimed by a PreIPOCompanySPV. These align with the SEC's Form D Item 6: Federal Exemptions and Exclusions Claimed. */
|
|
3739
|
-
exemptionsClaimed?:
|
|
3987
|
+
exemptionsClaimed?: exemptionsClaimed2[] | undefined;
|
|
3740
3988
|
/** The stage that an SPV is in. Refer to the “SPV Status Transitions” page in our Guides for a detailed description of each stage. */
|
|
3741
3989
|
monarkStage: PreIPOCompanySPVMonarkStage;
|
|
3742
3990
|
/** CUSIP assigned to the SPV. Monark acquires and assigns the CUSIP after the first trade has been executed through our ATS. */
|
|
@@ -3775,6 +4023,8 @@ export interface IPreIPOCompanySPV {
|
|
|
3775
4023
|
manager?: Partner | undefined;
|
|
3776
4024
|
/** List of Co-Managers of this SPV. */
|
|
3777
4025
|
coManagers?: Partner[] | undefined;
|
|
4026
|
+
/** Optional carry interest. */
|
|
4027
|
+
carry?: number | undefined;
|
|
3778
4028
|
}
|
|
3779
4029
|
export declare class PreIPOCompanySPVApiResponse implements IPreIPOCompanySPVApiResponse {
|
|
3780
4030
|
items?: PreIPOCompanySPV[] | undefined;
|
|
@@ -5046,7 +5296,6 @@ export declare enum Includes {
|
|
|
5046
5296
|
News = "News",
|
|
5047
5297
|
Research = "Research",
|
|
5048
5298
|
SacraFundingRounds = "SacraFundingRounds",
|
|
5049
|
-
NpmFundingRounds = "NpmFundingRounds",
|
|
5050
5299
|
Investments = "Investments",
|
|
5051
5300
|
Spvs = "Spvs"
|
|
5052
5301
|
}
|
|
@@ -5187,6 +5436,47 @@ export declare enum BulkPreIPOCompanyType {
|
|
|
5187
5436
|
FOREIGN_TRUST = "FOREIGN_TRUST",
|
|
5188
5437
|
OTHER = "OTHER"
|
|
5189
5438
|
}
|
|
5439
|
+
export declare enum exemptionsClaimed {
|
|
5440
|
+
RULE_504_B_1_not_i_ii_iii = "RULE_504_B_1_not_i_ii_iii",
|
|
5441
|
+
RULE_504_B_1_i = "RULE_504_B_1_i",
|
|
5442
|
+
RULE_504_B_1_ii = "RULE_504_B_1_ii",
|
|
5443
|
+
RULE_504_B_1_iii = "RULE_504_B_1_iii",
|
|
5444
|
+
RULE_506_b = "RULE_506_b",
|
|
5445
|
+
RULE_506_c = "RULE_506_c",
|
|
5446
|
+
SECURITIES_ACT_SECTION_4_a_5 = "SECURITIES_ACT_SECTION_4_a_5",
|
|
5447
|
+
SECURITIES_ACT_SECTION_3_c_1 = "SECURITIES_ACT_SECTION_3_c_1",
|
|
5448
|
+
SECURITIES_ACT_SECTION_3_c_2 = "SECURITIES_ACT_SECTION_3_c_2",
|
|
5449
|
+
SECURITIES_ACT_SECTION_3_c_3 = "SECURITIES_ACT_SECTION_3_c_3",
|
|
5450
|
+
SECURITIES_ACT_SECTION_3_c_4 = "SECURITIES_ACT_SECTION_3_c_4",
|
|
5451
|
+
SECURITIES_ACT_SECTION_3_c_5 = "SECURITIES_ACT_SECTION_3_c_5",
|
|
5452
|
+
SECURITIES_ACT_SECTION_3_c_6 = "SECURITIES_ACT_SECTION_3_c_6",
|
|
5453
|
+
SECURITIES_ACT_SECTION_3_c_7 = "SECURITIES_ACT_SECTION_3_c_7",
|
|
5454
|
+
SECURITIES_ACT_SECTION_3_c_9 = "SECURITIES_ACT_SECTION_3_c_9",
|
|
5455
|
+
SECURITIES_ACT_SECTION_3_c_10 = "SECURITIES_ACT_SECTION_3_c_10",
|
|
5456
|
+
SECURITIES_ACT_SECTION_3_c_11 = "SECURITIES_ACT_SECTION_3_c_11",
|
|
5457
|
+
SECURITIES_ACT_SECTION_3_c_12 = "SECURITIES_ACT_SECTION_3_c_12",
|
|
5458
|
+
SECURITIES_ACT_SECTION_3_c_13 = "SECURITIES_ACT_SECTION_3_c_13",
|
|
5459
|
+
SECURITIES_ACT_SECTION_3_c_14 = "SECURITIES_ACT_SECTION_3_c_14",
|
|
5460
|
+
Reg_S = "Reg_S"
|
|
5461
|
+
}
|
|
5462
|
+
export declare enum BulkPreIPOCompanySPVMonarkStage {
|
|
5463
|
+
DRAFT = "DRAFT",
|
|
5464
|
+
WAITING_MONARK_REVIEW = "WAITING_MONARK_REVIEW",
|
|
5465
|
+
FUND_ADMIN_REVIEW = "FUND_ADMIN_REVIEW",
|
|
5466
|
+
FUND_ADMIN_APPROVED = "FUND_ADMIN_APPROVED",
|
|
5467
|
+
PRIMARY_FUNDRAISE = "PRIMARY_FUNDRAISE",
|
|
5468
|
+
PRE_CLOSE_REVIEW = "PRE_CLOSE_REVIEW",
|
|
5469
|
+
CLOSE_REQUESTED = "CLOSE_REQUESTED",
|
|
5470
|
+
CLOSE_IN_PROCESS = "CLOSE_IN_PROCESS",
|
|
5471
|
+
FUNDS_SENT_TO_TARGET = "FUNDS_SENT_TO_TARGET",
|
|
5472
|
+
CLOSED = "CLOSED",
|
|
5473
|
+
REGULATORY_HOLD_PERIOD = "REGULATORY_HOLD_PERIOD",
|
|
5474
|
+
ACTIVELY_TRADING = "ACTIVELY_TRADING",
|
|
5475
|
+
CLOSE_FAILED = "CLOSE_FAILED",
|
|
5476
|
+
HALTED = "HALTED",
|
|
5477
|
+
LIQUIDATION = "LIQUIDATION",
|
|
5478
|
+
DISSOLVED = "DISSOLVED"
|
|
5479
|
+
}
|
|
5190
5480
|
export declare enum CreateInvestorType {
|
|
5191
5481
|
IndividualInvestor = "IndividualInvestor",
|
|
5192
5482
|
EntityInvestor = "EntityInvestor"
|
|
@@ -5452,7 +5742,7 @@ export declare enum PreIPOCompanyResearchRelation {
|
|
|
5452
5742
|
SUBJECT = "SUBJECT",
|
|
5453
5743
|
CONNECTED = "CONNECTED"
|
|
5454
5744
|
}
|
|
5455
|
-
export declare enum
|
|
5745
|
+
export declare enum exemptionsClaimed2 {
|
|
5456
5746
|
RULE_504_B_1_not_i_ii_iii = "RULE_504_B_1_not_i_ii_iii",
|
|
5457
5747
|
RULE_504_B_1_i = "RULE_504_B_1_i",
|
|
5458
5748
|
RULE_504_B_1_ii = "RULE_504_B_1_ii",
|
package/dist/Client.js
CHANGED
|
@@ -5556,6 +5556,18 @@ export class BulkPreIPOCompany {
|
|
|
5556
5556
|
this.referencePrice = _data["referencePrice"];
|
|
5557
5557
|
this.referencePriceDate = _data["referencePriceDate"] ? new Date(_data["referencePriceDate"].toString()) : undefined;
|
|
5558
5558
|
this.symbol = _data["symbol"];
|
|
5559
|
+
this.listingType = _data["listingType"];
|
|
5560
|
+
this.isActive = _data["isActive"];
|
|
5561
|
+
if (Array.isArray(_data["listings"])) {
|
|
5562
|
+
this.listings = [];
|
|
5563
|
+
for (let item of _data["listings"])
|
|
5564
|
+
this.listings.push(Listing.fromJS(item));
|
|
5565
|
+
}
|
|
5566
|
+
if (Array.isArray(_data["milestones"])) {
|
|
5567
|
+
this.milestones = [];
|
|
5568
|
+
for (let item of _data["milestones"])
|
|
5569
|
+
this.milestones.push(Milestone.fromJS(item));
|
|
5570
|
+
}
|
|
5559
5571
|
if (Array.isArray(_data["news"])) {
|
|
5560
5572
|
this.news = [];
|
|
5561
5573
|
for (let item of _data["news"])
|
|
@@ -5571,11 +5583,6 @@ export class BulkPreIPOCompany {
|
|
|
5571
5583
|
for (let item of _data["fundingRounds"])
|
|
5572
5584
|
this.fundingRounds.push(PreIPOCompanyFundingRound.fromJS(item));
|
|
5573
5585
|
}
|
|
5574
|
-
if (Array.isArray(_data["npmFundingRounds"])) {
|
|
5575
|
-
this.npmFundingRounds = [];
|
|
5576
|
-
for (let item of _data["npmFundingRounds"])
|
|
5577
|
-
this.npmFundingRounds.push(NpmFundingRound.fromJS(item));
|
|
5578
|
-
}
|
|
5579
5586
|
if (Array.isArray(_data["investments"])) {
|
|
5580
5587
|
this.investments = [];
|
|
5581
5588
|
for (let item of _data["investments"])
|
|
@@ -5584,7 +5591,7 @@ export class BulkPreIPOCompany {
|
|
|
5584
5591
|
if (Array.isArray(_data["spvs"])) {
|
|
5585
5592
|
this.spvs = [];
|
|
5586
5593
|
for (let item of _data["spvs"])
|
|
5587
|
-
this.spvs.push(
|
|
5594
|
+
this.spvs.push(BulkPreIPOCompanySPV.fromJS(item));
|
|
5588
5595
|
}
|
|
5589
5596
|
}
|
|
5590
5597
|
}
|
|
@@ -5640,6 +5647,18 @@ export class BulkPreIPOCompany {
|
|
|
5640
5647
|
data["referencePrice"] = this.referencePrice;
|
|
5641
5648
|
data["referencePriceDate"] = this.referencePriceDate ? this.referencePriceDate.toISOString() : undefined;
|
|
5642
5649
|
data["symbol"] = this.symbol;
|
|
5650
|
+
data["listingType"] = this.listingType;
|
|
5651
|
+
data["isActive"] = this.isActive;
|
|
5652
|
+
if (Array.isArray(this.listings)) {
|
|
5653
|
+
data["listings"] = [];
|
|
5654
|
+
for (let item of this.listings)
|
|
5655
|
+
data["listings"].push(item.toJSON());
|
|
5656
|
+
}
|
|
5657
|
+
if (Array.isArray(this.milestones)) {
|
|
5658
|
+
data["milestones"] = [];
|
|
5659
|
+
for (let item of this.milestones)
|
|
5660
|
+
data["milestones"].push(item.toJSON());
|
|
5661
|
+
}
|
|
5643
5662
|
if (Array.isArray(this.news)) {
|
|
5644
5663
|
data["news"] = [];
|
|
5645
5664
|
for (let item of this.news)
|
|
@@ -5655,11 +5674,6 @@ export class BulkPreIPOCompany {
|
|
|
5655
5674
|
for (let item of this.fundingRounds)
|
|
5656
5675
|
data["fundingRounds"].push(item.toJSON());
|
|
5657
5676
|
}
|
|
5658
|
-
if (Array.isArray(this.npmFundingRounds)) {
|
|
5659
|
-
data["npmFundingRounds"] = [];
|
|
5660
|
-
for (let item of this.npmFundingRounds)
|
|
5661
|
-
data["npmFundingRounds"].push(item.toJSON());
|
|
5662
|
-
}
|
|
5663
5677
|
if (Array.isArray(this.investments)) {
|
|
5664
5678
|
data["investments"] = [];
|
|
5665
5679
|
for (let item of this.investments)
|
|
@@ -5709,6 +5723,142 @@ export class BulkPreIPOCompanyApiResponse {
|
|
|
5709
5723
|
return data;
|
|
5710
5724
|
}
|
|
5711
5725
|
}
|
|
5726
|
+
export class BulkPreIPOCompanySPV {
|
|
5727
|
+
constructor(data) {
|
|
5728
|
+
if (data) {
|
|
5729
|
+
for (var property in data) {
|
|
5730
|
+
if (data.hasOwnProperty(property))
|
|
5731
|
+
this[property] = data[property];
|
|
5732
|
+
}
|
|
5733
|
+
}
|
|
5734
|
+
}
|
|
5735
|
+
init(_data) {
|
|
5736
|
+
if (_data) {
|
|
5737
|
+
this.id = _data["id"];
|
|
5738
|
+
this.preIPOCompanyInvestmentId = _data["preIPOCompanyInvestmentId"];
|
|
5739
|
+
this.preIPOCompanyId = _data["preIPOCompanyId"];
|
|
5740
|
+
this.totalDollarAllocation = _data["totalDollarAllocation"];
|
|
5741
|
+
this.minCommitmentAmount = _data["minCommitmentAmount"];
|
|
5742
|
+
this.name = _data["name"];
|
|
5743
|
+
this.valuation = _data["valuation"];
|
|
5744
|
+
this.synopsis = _data["synopsis"];
|
|
5745
|
+
this.description = _data["description"];
|
|
5746
|
+
if (Array.isArray(_data["notableInvestors"])) {
|
|
5747
|
+
this.notableInvestors = [];
|
|
5748
|
+
for (let item of _data["notableInvestors"])
|
|
5749
|
+
this.notableInvestors.push(item);
|
|
5750
|
+
}
|
|
5751
|
+
this.masterLLCName = _data["masterLLCName"];
|
|
5752
|
+
this.managementFee = _data["managementFee"];
|
|
5753
|
+
this.managementFeeYearsPayable = _data["managementFeeYearsPayable"];
|
|
5754
|
+
this.fundingDeadline = _data["fundingDeadline"] ? new Date(_data["fundingDeadline"].toString()) : undefined;
|
|
5755
|
+
if (Array.isArray(_data["exemptionsClaimed"])) {
|
|
5756
|
+
this.exemptionsClaimed = [];
|
|
5757
|
+
for (let item of _data["exemptionsClaimed"])
|
|
5758
|
+
this.exemptionsClaimed.push(item);
|
|
5759
|
+
}
|
|
5760
|
+
this.monarkStage = _data["monarkStage"];
|
|
5761
|
+
this.cusip = _data["cusip"];
|
|
5762
|
+
this.tradingSymbol = _data["tradingSymbol"];
|
|
5763
|
+
this.closeDate = _data["closeDate"] ? new Date(_data["closeDate"].toString()) : undefined;
|
|
5764
|
+
this.spvCustodian = _data["spvCustodian"];
|
|
5765
|
+
this.totalShareAllocation = _data["totalShareAllocation"];
|
|
5766
|
+
this.totalNumberOfSeats = _data["totalNumberOfSeats"];
|
|
5767
|
+
this.numberOfSeatsRemaining = _data["numberOfSeatsRemaining"];
|
|
5768
|
+
this.remainingDollarAllocation = _data["remainingDollarAllocation"];
|
|
5769
|
+
this.remainingShareAllocation = _data["remainingShareAllocation"];
|
|
5770
|
+
this.preFundedInventory = _data["preFundedInventory"];
|
|
5771
|
+
this.investorPricePerShare = _data["investorPricePerShare"];
|
|
5772
|
+
this.investorFeePerShare = _data["investorFeePerShare"];
|
|
5773
|
+
this.allInPricePerShare = _data["allInPricePerShare"];
|
|
5774
|
+
if (Array.isArray(_data["documents"])) {
|
|
5775
|
+
this.documents = [];
|
|
5776
|
+
for (let item of _data["documents"])
|
|
5777
|
+
this.documents.push(Document.fromJS(item));
|
|
5778
|
+
}
|
|
5779
|
+
this.spvAccountID = _data["spvAccountID"];
|
|
5780
|
+
this.preIPOCompanyName = _data["preIPOCompanyName"];
|
|
5781
|
+
this.manager = _data["manager"] ? Partner.fromJS(_data["manager"]) : undefined;
|
|
5782
|
+
if (Array.isArray(_data["coManagers"])) {
|
|
5783
|
+
this.coManagers = [];
|
|
5784
|
+
for (let item of _data["coManagers"])
|
|
5785
|
+
this.coManagers.push(Partner.fromJS(item));
|
|
5786
|
+
}
|
|
5787
|
+
this.carry = _data["carry"];
|
|
5788
|
+
if (Array.isArray(_data["allowedFinancialInstitutions"])) {
|
|
5789
|
+
this.allowedFinancialInstitutions = [];
|
|
5790
|
+
for (let item of _data["allowedFinancialInstitutions"])
|
|
5791
|
+
this.allowedFinancialInstitutions.push(item);
|
|
5792
|
+
}
|
|
5793
|
+
}
|
|
5794
|
+
}
|
|
5795
|
+
static fromJS(data) {
|
|
5796
|
+
data = typeof data === 'object' ? data : {};
|
|
5797
|
+
let result = new BulkPreIPOCompanySPV();
|
|
5798
|
+
result.init(data);
|
|
5799
|
+
return result;
|
|
5800
|
+
}
|
|
5801
|
+
toJSON(data) {
|
|
5802
|
+
data = typeof data === 'object' ? data : {};
|
|
5803
|
+
data["id"] = this.id;
|
|
5804
|
+
data["preIPOCompanyInvestmentId"] = this.preIPOCompanyInvestmentId;
|
|
5805
|
+
data["preIPOCompanyId"] = this.preIPOCompanyId;
|
|
5806
|
+
data["totalDollarAllocation"] = this.totalDollarAllocation;
|
|
5807
|
+
data["minCommitmentAmount"] = this.minCommitmentAmount;
|
|
5808
|
+
data["name"] = this.name;
|
|
5809
|
+
data["valuation"] = this.valuation;
|
|
5810
|
+
data["synopsis"] = this.synopsis;
|
|
5811
|
+
data["description"] = this.description;
|
|
5812
|
+
if (Array.isArray(this.notableInvestors)) {
|
|
5813
|
+
data["notableInvestors"] = [];
|
|
5814
|
+
for (let item of this.notableInvestors)
|
|
5815
|
+
data["notableInvestors"].push(item);
|
|
5816
|
+
}
|
|
5817
|
+
data["masterLLCName"] = this.masterLLCName;
|
|
5818
|
+
data["managementFee"] = this.managementFee;
|
|
5819
|
+
data["managementFeeYearsPayable"] = this.managementFeeYearsPayable;
|
|
5820
|
+
data["fundingDeadline"] = this.fundingDeadline ? formatDate(this.fundingDeadline) : undefined;
|
|
5821
|
+
if (Array.isArray(this.exemptionsClaimed)) {
|
|
5822
|
+
data["exemptionsClaimed"] = [];
|
|
5823
|
+
for (let item of this.exemptionsClaimed)
|
|
5824
|
+
data["exemptionsClaimed"].push(item);
|
|
5825
|
+
}
|
|
5826
|
+
data["monarkStage"] = this.monarkStage;
|
|
5827
|
+
data["cusip"] = this.cusip;
|
|
5828
|
+
data["tradingSymbol"] = this.tradingSymbol;
|
|
5829
|
+
data["closeDate"] = this.closeDate ? this.closeDate.toISOString() : undefined;
|
|
5830
|
+
data["spvCustodian"] = this.spvCustodian;
|
|
5831
|
+
data["totalShareAllocation"] = this.totalShareAllocation;
|
|
5832
|
+
data["totalNumberOfSeats"] = this.totalNumberOfSeats;
|
|
5833
|
+
data["numberOfSeatsRemaining"] = this.numberOfSeatsRemaining;
|
|
5834
|
+
data["remainingDollarAllocation"] = this.remainingDollarAllocation;
|
|
5835
|
+
data["remainingShareAllocation"] = this.remainingShareAllocation;
|
|
5836
|
+
data["preFundedInventory"] = this.preFundedInventory;
|
|
5837
|
+
data["investorPricePerShare"] = this.investorPricePerShare;
|
|
5838
|
+
data["investorFeePerShare"] = this.investorFeePerShare;
|
|
5839
|
+
data["allInPricePerShare"] = this.allInPricePerShare;
|
|
5840
|
+
if (Array.isArray(this.documents)) {
|
|
5841
|
+
data["documents"] = [];
|
|
5842
|
+
for (let item of this.documents)
|
|
5843
|
+
data["documents"].push(item.toJSON());
|
|
5844
|
+
}
|
|
5845
|
+
data["spvAccountID"] = this.spvAccountID;
|
|
5846
|
+
data["preIPOCompanyName"] = this.preIPOCompanyName;
|
|
5847
|
+
data["manager"] = this.manager ? this.manager.toJSON() : undefined;
|
|
5848
|
+
if (Array.isArray(this.coManagers)) {
|
|
5849
|
+
data["coManagers"] = [];
|
|
5850
|
+
for (let item of this.coManagers)
|
|
5851
|
+
data["coManagers"].push(item.toJSON());
|
|
5852
|
+
}
|
|
5853
|
+
data["carry"] = this.carry;
|
|
5854
|
+
if (Array.isArray(this.allowedFinancialInstitutions)) {
|
|
5855
|
+
data["allowedFinancialInstitutions"] = [];
|
|
5856
|
+
for (let item of this.allowedFinancialInstitutions)
|
|
5857
|
+
data["allowedFinancialInstitutions"].push(item);
|
|
5858
|
+
}
|
|
5859
|
+
return data;
|
|
5860
|
+
}
|
|
5861
|
+
}
|
|
5712
5862
|
export class Citation {
|
|
5713
5863
|
constructor(data) {
|
|
5714
5864
|
if (data) {
|
|
@@ -7102,6 +7252,78 @@ export class LayeredSPV {
|
|
|
7102
7252
|
return data;
|
|
7103
7253
|
}
|
|
7104
7254
|
}
|
|
7255
|
+
/** Represents a public listing on a stock exchange. */
|
|
7256
|
+
export class Listing {
|
|
7257
|
+
constructor(data) {
|
|
7258
|
+
if (data) {
|
|
7259
|
+
for (var property in data) {
|
|
7260
|
+
if (data.hasOwnProperty(property))
|
|
7261
|
+
this[property] = data[property];
|
|
7262
|
+
}
|
|
7263
|
+
}
|
|
7264
|
+
}
|
|
7265
|
+
init(_data) {
|
|
7266
|
+
if (_data) {
|
|
7267
|
+
this.id = _data["id"];
|
|
7268
|
+
this.type = _data["type"];
|
|
7269
|
+
this.venue = _data["venue"];
|
|
7270
|
+
this.ticker = _data["ticker"];
|
|
7271
|
+
this.listedAt = _data["listedAt"] ? new Date(_data["listedAt"].toString()) : undefined;
|
|
7272
|
+
this.delistedAt = _data["delistedAt"] ? new Date(_data["delistedAt"].toString()) : undefined;
|
|
7273
|
+
}
|
|
7274
|
+
}
|
|
7275
|
+
static fromJS(data) {
|
|
7276
|
+
data = typeof data === 'object' ? data : {};
|
|
7277
|
+
let result = new Listing();
|
|
7278
|
+
result.init(data);
|
|
7279
|
+
return result;
|
|
7280
|
+
}
|
|
7281
|
+
toJSON(data) {
|
|
7282
|
+
data = typeof data === 'object' ? data : {};
|
|
7283
|
+
data["id"] = this.id;
|
|
7284
|
+
data["type"] = this.type;
|
|
7285
|
+
data["venue"] = this.venue;
|
|
7286
|
+
data["ticker"] = this.ticker;
|
|
7287
|
+
data["listedAt"] = this.listedAt ? formatDate(this.listedAt) : undefined;
|
|
7288
|
+
data["delistedAt"] = this.delistedAt ? formatDate(this.delistedAt) : undefined;
|
|
7289
|
+
return data;
|
|
7290
|
+
}
|
|
7291
|
+
}
|
|
7292
|
+
/** Represents a significant event or milestone in the company’s lifecycle. */
|
|
7293
|
+
export class Milestone {
|
|
7294
|
+
constructor(data) {
|
|
7295
|
+
if (data) {
|
|
7296
|
+
for (var property in data) {
|
|
7297
|
+
if (data.hasOwnProperty(property))
|
|
7298
|
+
this[property] = data[property];
|
|
7299
|
+
}
|
|
7300
|
+
}
|
|
7301
|
+
}
|
|
7302
|
+
init(_data) {
|
|
7303
|
+
if (_data) {
|
|
7304
|
+
this.id = _data["id"];
|
|
7305
|
+
this.type = _data["type"];
|
|
7306
|
+
this.date = _data["date"] ? new Date(_data["date"].toString()) : undefined;
|
|
7307
|
+
this.label = _data["label"];
|
|
7308
|
+
this.description = _data["description"];
|
|
7309
|
+
}
|
|
7310
|
+
}
|
|
7311
|
+
static fromJS(data) {
|
|
7312
|
+
data = typeof data === 'object' ? data : {};
|
|
7313
|
+
let result = new Milestone();
|
|
7314
|
+
result.init(data);
|
|
7315
|
+
return result;
|
|
7316
|
+
}
|
|
7317
|
+
toJSON(data) {
|
|
7318
|
+
data = typeof data === 'object' ? data : {};
|
|
7319
|
+
data["id"] = this.id;
|
|
7320
|
+
data["type"] = this.type;
|
|
7321
|
+
data["date"] = this.date ? formatDate(this.date) : undefined;
|
|
7322
|
+
data["label"] = this.label;
|
|
7323
|
+
data["description"] = this.description;
|
|
7324
|
+
return data;
|
|
7325
|
+
}
|
|
7326
|
+
}
|
|
7105
7327
|
export class ModifyIndividualInvestor {
|
|
7106
7328
|
constructor(data) {
|
|
7107
7329
|
if (data) {
|
|
@@ -8026,6 +8248,18 @@ export class PreIPOCompany {
|
|
|
8026
8248
|
this.referencePrice = _data["referencePrice"];
|
|
8027
8249
|
this.referencePriceDate = _data["referencePriceDate"] ? new Date(_data["referencePriceDate"].toString()) : undefined;
|
|
8028
8250
|
this.symbol = _data["symbol"];
|
|
8251
|
+
this.listingType = _data["listingType"];
|
|
8252
|
+
this.isActive = _data["isActive"];
|
|
8253
|
+
if (Array.isArray(_data["listings"])) {
|
|
8254
|
+
this.listings = [];
|
|
8255
|
+
for (let item of _data["listings"])
|
|
8256
|
+
this.listings.push(Listing.fromJS(item));
|
|
8257
|
+
}
|
|
8258
|
+
if (Array.isArray(_data["milestones"])) {
|
|
8259
|
+
this.milestones = [];
|
|
8260
|
+
for (let item of _data["milestones"])
|
|
8261
|
+
this.milestones.push(Milestone.fromJS(item));
|
|
8262
|
+
}
|
|
8029
8263
|
}
|
|
8030
8264
|
}
|
|
8031
8265
|
static fromJS(data) {
|
|
@@ -8080,6 +8314,18 @@ export class PreIPOCompany {
|
|
|
8080
8314
|
data["referencePrice"] = this.referencePrice;
|
|
8081
8315
|
data["referencePriceDate"] = this.referencePriceDate ? this.referencePriceDate.toISOString() : undefined;
|
|
8082
8316
|
data["symbol"] = this.symbol;
|
|
8317
|
+
data["listingType"] = this.listingType;
|
|
8318
|
+
data["isActive"] = this.isActive;
|
|
8319
|
+
if (Array.isArray(this.listings)) {
|
|
8320
|
+
data["listings"] = [];
|
|
8321
|
+
for (let item of this.listings)
|
|
8322
|
+
data["listings"].push(item.toJSON());
|
|
8323
|
+
}
|
|
8324
|
+
if (Array.isArray(this.milestones)) {
|
|
8325
|
+
data["milestones"] = [];
|
|
8326
|
+
for (let item of this.milestones)
|
|
8327
|
+
data["milestones"].push(item.toJSON());
|
|
8328
|
+
}
|
|
8083
8329
|
return data;
|
|
8084
8330
|
}
|
|
8085
8331
|
}
|
|
@@ -8567,6 +8813,7 @@ export class PreIPOCompanySPV {
|
|
|
8567
8813
|
for (let item of _data["coManagers"])
|
|
8568
8814
|
this.coManagers.push(Partner.fromJS(item));
|
|
8569
8815
|
}
|
|
8816
|
+
this.carry = _data["carry"];
|
|
8570
8817
|
}
|
|
8571
8818
|
}
|
|
8572
8819
|
static fromJS(data) {
|
|
@@ -8627,6 +8874,7 @@ export class PreIPOCompanySPV {
|
|
|
8627
8874
|
for (let item of this.coManagers)
|
|
8628
8875
|
data["coManagers"].push(item.toJSON());
|
|
8629
8876
|
}
|
|
8877
|
+
data["carry"] = this.carry;
|
|
8630
8878
|
return data;
|
|
8631
8879
|
}
|
|
8632
8880
|
}
|
|
@@ -10055,7 +10303,6 @@ export var Includes;
|
|
|
10055
10303
|
Includes["News"] = "News";
|
|
10056
10304
|
Includes["Research"] = "Research";
|
|
10057
10305
|
Includes["SacraFundingRounds"] = "SacraFundingRounds";
|
|
10058
|
-
Includes["NpmFundingRounds"] = "NpmFundingRounds";
|
|
10059
10306
|
Includes["Investments"] = "Investments";
|
|
10060
10307
|
Includes["Spvs"] = "Spvs";
|
|
10061
10308
|
})(Includes || (Includes = {}));
|
|
@@ -10215,6 +10462,49 @@ export var BulkPreIPOCompanyType;
|
|
|
10215
10462
|
BulkPreIPOCompanyType["FOREIGN_TRUST"] = "FOREIGN_TRUST";
|
|
10216
10463
|
BulkPreIPOCompanyType["OTHER"] = "OTHER";
|
|
10217
10464
|
})(BulkPreIPOCompanyType || (BulkPreIPOCompanyType = {}));
|
|
10465
|
+
export var exemptionsClaimed;
|
|
10466
|
+
(function (exemptionsClaimed) {
|
|
10467
|
+
exemptionsClaimed["RULE_504_B_1_not_i_ii_iii"] = "RULE_504_B_1_not_i_ii_iii";
|
|
10468
|
+
exemptionsClaimed["RULE_504_B_1_i"] = "RULE_504_B_1_i";
|
|
10469
|
+
exemptionsClaimed["RULE_504_B_1_ii"] = "RULE_504_B_1_ii";
|
|
10470
|
+
exemptionsClaimed["RULE_504_B_1_iii"] = "RULE_504_B_1_iii";
|
|
10471
|
+
exemptionsClaimed["RULE_506_b"] = "RULE_506_b";
|
|
10472
|
+
exemptionsClaimed["RULE_506_c"] = "RULE_506_c";
|
|
10473
|
+
exemptionsClaimed["SECURITIES_ACT_SECTION_4_a_5"] = "SECURITIES_ACT_SECTION_4_a_5";
|
|
10474
|
+
exemptionsClaimed["SECURITIES_ACT_SECTION_3_c_1"] = "SECURITIES_ACT_SECTION_3_c_1";
|
|
10475
|
+
exemptionsClaimed["SECURITIES_ACT_SECTION_3_c_2"] = "SECURITIES_ACT_SECTION_3_c_2";
|
|
10476
|
+
exemptionsClaimed["SECURITIES_ACT_SECTION_3_c_3"] = "SECURITIES_ACT_SECTION_3_c_3";
|
|
10477
|
+
exemptionsClaimed["SECURITIES_ACT_SECTION_3_c_4"] = "SECURITIES_ACT_SECTION_3_c_4";
|
|
10478
|
+
exemptionsClaimed["SECURITIES_ACT_SECTION_3_c_5"] = "SECURITIES_ACT_SECTION_3_c_5";
|
|
10479
|
+
exemptionsClaimed["SECURITIES_ACT_SECTION_3_c_6"] = "SECURITIES_ACT_SECTION_3_c_6";
|
|
10480
|
+
exemptionsClaimed["SECURITIES_ACT_SECTION_3_c_7"] = "SECURITIES_ACT_SECTION_3_c_7";
|
|
10481
|
+
exemptionsClaimed["SECURITIES_ACT_SECTION_3_c_9"] = "SECURITIES_ACT_SECTION_3_c_9";
|
|
10482
|
+
exemptionsClaimed["SECURITIES_ACT_SECTION_3_c_10"] = "SECURITIES_ACT_SECTION_3_c_10";
|
|
10483
|
+
exemptionsClaimed["SECURITIES_ACT_SECTION_3_c_11"] = "SECURITIES_ACT_SECTION_3_c_11";
|
|
10484
|
+
exemptionsClaimed["SECURITIES_ACT_SECTION_3_c_12"] = "SECURITIES_ACT_SECTION_3_c_12";
|
|
10485
|
+
exemptionsClaimed["SECURITIES_ACT_SECTION_3_c_13"] = "SECURITIES_ACT_SECTION_3_c_13";
|
|
10486
|
+
exemptionsClaimed["SECURITIES_ACT_SECTION_3_c_14"] = "SECURITIES_ACT_SECTION_3_c_14";
|
|
10487
|
+
exemptionsClaimed["Reg_S"] = "Reg_S";
|
|
10488
|
+
})(exemptionsClaimed || (exemptionsClaimed = {}));
|
|
10489
|
+
export var BulkPreIPOCompanySPVMonarkStage;
|
|
10490
|
+
(function (BulkPreIPOCompanySPVMonarkStage) {
|
|
10491
|
+
BulkPreIPOCompanySPVMonarkStage["DRAFT"] = "DRAFT";
|
|
10492
|
+
BulkPreIPOCompanySPVMonarkStage["WAITING_MONARK_REVIEW"] = "WAITING_MONARK_REVIEW";
|
|
10493
|
+
BulkPreIPOCompanySPVMonarkStage["FUND_ADMIN_REVIEW"] = "FUND_ADMIN_REVIEW";
|
|
10494
|
+
BulkPreIPOCompanySPVMonarkStage["FUND_ADMIN_APPROVED"] = "FUND_ADMIN_APPROVED";
|
|
10495
|
+
BulkPreIPOCompanySPVMonarkStage["PRIMARY_FUNDRAISE"] = "PRIMARY_FUNDRAISE";
|
|
10496
|
+
BulkPreIPOCompanySPVMonarkStage["PRE_CLOSE_REVIEW"] = "PRE_CLOSE_REVIEW";
|
|
10497
|
+
BulkPreIPOCompanySPVMonarkStage["CLOSE_REQUESTED"] = "CLOSE_REQUESTED";
|
|
10498
|
+
BulkPreIPOCompanySPVMonarkStage["CLOSE_IN_PROCESS"] = "CLOSE_IN_PROCESS";
|
|
10499
|
+
BulkPreIPOCompanySPVMonarkStage["FUNDS_SENT_TO_TARGET"] = "FUNDS_SENT_TO_TARGET";
|
|
10500
|
+
BulkPreIPOCompanySPVMonarkStage["CLOSED"] = "CLOSED";
|
|
10501
|
+
BulkPreIPOCompanySPVMonarkStage["REGULATORY_HOLD_PERIOD"] = "REGULATORY_HOLD_PERIOD";
|
|
10502
|
+
BulkPreIPOCompanySPVMonarkStage["ACTIVELY_TRADING"] = "ACTIVELY_TRADING";
|
|
10503
|
+
BulkPreIPOCompanySPVMonarkStage["CLOSE_FAILED"] = "CLOSE_FAILED";
|
|
10504
|
+
BulkPreIPOCompanySPVMonarkStage["HALTED"] = "HALTED";
|
|
10505
|
+
BulkPreIPOCompanySPVMonarkStage["LIQUIDATION"] = "LIQUIDATION";
|
|
10506
|
+
BulkPreIPOCompanySPVMonarkStage["DISSOLVED"] = "DISSOLVED";
|
|
10507
|
+
})(BulkPreIPOCompanySPVMonarkStage || (BulkPreIPOCompanySPVMonarkStage = {}));
|
|
10218
10508
|
export var CreateInvestorType;
|
|
10219
10509
|
(function (CreateInvestorType) {
|
|
10220
10510
|
CreateInvestorType["IndividualInvestor"] = "IndividualInvestor";
|
|
@@ -10511,30 +10801,30 @@ export var PreIPOCompanyResearchRelation;
|
|
|
10511
10801
|
PreIPOCompanyResearchRelation["SUBJECT"] = "SUBJECT";
|
|
10512
10802
|
PreIPOCompanyResearchRelation["CONNECTED"] = "CONNECTED";
|
|
10513
10803
|
})(PreIPOCompanyResearchRelation || (PreIPOCompanyResearchRelation = {}));
|
|
10514
|
-
export var
|
|
10515
|
-
(function (
|
|
10516
|
-
|
|
10517
|
-
|
|
10518
|
-
|
|
10519
|
-
|
|
10520
|
-
|
|
10521
|
-
|
|
10522
|
-
|
|
10523
|
-
|
|
10524
|
-
|
|
10525
|
-
|
|
10526
|
-
|
|
10527
|
-
|
|
10528
|
-
|
|
10529
|
-
|
|
10530
|
-
|
|
10531
|
-
|
|
10532
|
-
|
|
10533
|
-
|
|
10534
|
-
|
|
10535
|
-
|
|
10536
|
-
|
|
10537
|
-
})(
|
|
10804
|
+
export var exemptionsClaimed2;
|
|
10805
|
+
(function (exemptionsClaimed2) {
|
|
10806
|
+
exemptionsClaimed2["RULE_504_B_1_not_i_ii_iii"] = "RULE_504_B_1_not_i_ii_iii";
|
|
10807
|
+
exemptionsClaimed2["RULE_504_B_1_i"] = "RULE_504_B_1_i";
|
|
10808
|
+
exemptionsClaimed2["RULE_504_B_1_ii"] = "RULE_504_B_1_ii";
|
|
10809
|
+
exemptionsClaimed2["RULE_504_B_1_iii"] = "RULE_504_B_1_iii";
|
|
10810
|
+
exemptionsClaimed2["RULE_506_b"] = "RULE_506_b";
|
|
10811
|
+
exemptionsClaimed2["RULE_506_c"] = "RULE_506_c";
|
|
10812
|
+
exemptionsClaimed2["SECURITIES_ACT_SECTION_4_a_5"] = "SECURITIES_ACT_SECTION_4_a_5";
|
|
10813
|
+
exemptionsClaimed2["SECURITIES_ACT_SECTION_3_c_1"] = "SECURITIES_ACT_SECTION_3_c_1";
|
|
10814
|
+
exemptionsClaimed2["SECURITIES_ACT_SECTION_3_c_2"] = "SECURITIES_ACT_SECTION_3_c_2";
|
|
10815
|
+
exemptionsClaimed2["SECURITIES_ACT_SECTION_3_c_3"] = "SECURITIES_ACT_SECTION_3_c_3";
|
|
10816
|
+
exemptionsClaimed2["SECURITIES_ACT_SECTION_3_c_4"] = "SECURITIES_ACT_SECTION_3_c_4";
|
|
10817
|
+
exemptionsClaimed2["SECURITIES_ACT_SECTION_3_c_5"] = "SECURITIES_ACT_SECTION_3_c_5";
|
|
10818
|
+
exemptionsClaimed2["SECURITIES_ACT_SECTION_3_c_6"] = "SECURITIES_ACT_SECTION_3_c_6";
|
|
10819
|
+
exemptionsClaimed2["SECURITIES_ACT_SECTION_3_c_7"] = "SECURITIES_ACT_SECTION_3_c_7";
|
|
10820
|
+
exemptionsClaimed2["SECURITIES_ACT_SECTION_3_c_9"] = "SECURITIES_ACT_SECTION_3_c_9";
|
|
10821
|
+
exemptionsClaimed2["SECURITIES_ACT_SECTION_3_c_10"] = "SECURITIES_ACT_SECTION_3_c_10";
|
|
10822
|
+
exemptionsClaimed2["SECURITIES_ACT_SECTION_3_c_11"] = "SECURITIES_ACT_SECTION_3_c_11";
|
|
10823
|
+
exemptionsClaimed2["SECURITIES_ACT_SECTION_3_c_12"] = "SECURITIES_ACT_SECTION_3_c_12";
|
|
10824
|
+
exemptionsClaimed2["SECURITIES_ACT_SECTION_3_c_13"] = "SECURITIES_ACT_SECTION_3_c_13";
|
|
10825
|
+
exemptionsClaimed2["SECURITIES_ACT_SECTION_3_c_14"] = "SECURITIES_ACT_SECTION_3_c_14";
|
|
10826
|
+
exemptionsClaimed2["Reg_S"] = "Reg_S";
|
|
10827
|
+
})(exemptionsClaimed2 || (exemptionsClaimed2 = {}));
|
|
10538
10828
|
export var PreIPOCompanySPVMonarkStage;
|
|
10539
10829
|
(function (PreIPOCompanySPVMonarkStage) {
|
|
10540
10830
|
PreIPOCompanySPVMonarkStage["DRAFT"] = "DRAFT";
|