@monarkmarkets/api-client 1.1.112 → 1.1.114
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 +779 -8
- package/dist/Client.js +1127 -45
- package/package.json +1 -1
package/dist/Client.d.ts
CHANGED
|
@@ -455,6 +455,71 @@ export declare class Client {
|
|
|
455
455
|
*/
|
|
456
456
|
partner(): Promise<Partner>;
|
|
457
457
|
protected processPartner(response: Response): Promise<Partner>;
|
|
458
|
+
/**
|
|
459
|
+
* Gets a PMI feed pricing record by ID.
|
|
460
|
+
* @param id The PMI feed pricing ID.
|
|
461
|
+
* @param financialInstitutionId The financial institution ID.
|
|
462
|
+
* @return Returns the PmiFeedPricing with the specified Id.
|
|
463
|
+
*/
|
|
464
|
+
getPmiFeedPricingById(id: string, financialInstitutionId: string): Promise<PmiFeedPricing>;
|
|
465
|
+
protected processGetPmiFeedPricingById(response: Response): Promise<PmiFeedPricing>;
|
|
466
|
+
/**
|
|
467
|
+
* Gets all PMI feed pricing records with optional filtering.
|
|
468
|
+
* @param financialInstitutionId The financial institution ID.
|
|
469
|
+
* @param preIPOCompanyId (optional) Optional filter by PreIPO Company ID.
|
|
470
|
+
* @param pmiId (optional) Optional filter by PMI Id.
|
|
471
|
+
* @param displayName (optional) Optional filter by Display Name.
|
|
472
|
+
* @param currency (optional) Optional filter by Currency (e.g., USD, EUR).
|
|
473
|
+
* @param fromDate (optional) Optional filter by minimum date (YYYY-MM-DD).
|
|
474
|
+
* @param toDate (optional) Optional filter by maximum date (YYYY-MM-DD).
|
|
475
|
+
* @param pageNumber (optional) Pagination page number.
|
|
476
|
+
* @param pageSize (optional) Pagination page size.
|
|
477
|
+
* @return Returns the list of PmiFeedPricing.
|
|
478
|
+
*/
|
|
479
|
+
getAllPmiFeedPricing(financialInstitutionId: string, preIPOCompanyId: string | undefined, pmiId: string | undefined, displayName: string | undefined, currency: string | undefined, fromDate: Date | undefined, toDate: Date | undefined, pageNumber: number | undefined, pageSize: number | undefined): Promise<PmiFeedPricingApiResponse>;
|
|
480
|
+
protected processGetAllPmiFeedPricing(response: Response): Promise<PmiFeedPricingApiResponse>;
|
|
481
|
+
/**
|
|
482
|
+
* Gets a PMI issuer record by ID.
|
|
483
|
+
* @param id The PMI issuer ID.
|
|
484
|
+
* @param financialInstitutionId The financial institution ID.
|
|
485
|
+
* @return Returns the PmiIssuer with the specified Id.
|
|
486
|
+
*/
|
|
487
|
+
getPmiIssuerById(id: string, financialInstitutionId: string): Promise<PmiIssuer>;
|
|
488
|
+
protected processGetPmiIssuerById(response: Response): Promise<PmiIssuer>;
|
|
489
|
+
/**
|
|
490
|
+
* Gets all PMI issuer records with optional filtering.
|
|
491
|
+
* @param financialInstitutionId The financial institution ID.
|
|
492
|
+
* @param preIPOCompanyId (optional) Optional filter by PreIPO Company ID.
|
|
493
|
+
* @param infoId (optional) Optional filter by PMI Id.
|
|
494
|
+
* @param infoDisplayName (optional) Optional filter by Display Name.
|
|
495
|
+
* @param pageNumber (optional) Pagination page number.
|
|
496
|
+
* @param pageSize (optional) Pagination page size.
|
|
497
|
+
* @return Returns the list of PmiIssuer.
|
|
498
|
+
*/
|
|
499
|
+
getAllPmiIssuers(financialInstitutionId: string, preIPOCompanyId: string | undefined, infoId: string | undefined, infoDisplayName: string | undefined, pageNumber: number | undefined, pageSize: number | undefined): Promise<PmiIssuerApiResponse>;
|
|
500
|
+
protected processGetAllPmiIssuers(response: Response): Promise<PmiIssuerApiResponse>;
|
|
501
|
+
/**
|
|
502
|
+
* Gets a PMI valuation record by ID.
|
|
503
|
+
* @param id The PMI valuation ID.
|
|
504
|
+
* @param financialInstitutionId The financial institution ID.
|
|
505
|
+
* @return Returns the PmiValuation with the specified Id.
|
|
506
|
+
*/
|
|
507
|
+
getPmiValuationById(id: string, financialInstitutionId: string): Promise<PmiValuation>;
|
|
508
|
+
protected processGetPmiValuationById(response: Response): Promise<PmiValuation>;
|
|
509
|
+
/**
|
|
510
|
+
* Gets all PMI valuation records with optional filtering.
|
|
511
|
+
* @param financialInstitutionId The financial institution ID.
|
|
512
|
+
* @param preIPOCompanyId (optional) Optional filter by PreIPO Company ID.
|
|
513
|
+
* @param pmiId (optional) Optional filter by PMI Id.
|
|
514
|
+
* @param displayName (optional) Optional filter by Display Name.
|
|
515
|
+
* @param fromDate (optional) Optional filter by minimum date (YYYY-MM-DD).
|
|
516
|
+
* @param toDate (optional) Optional filter by maximum date (YYYY-MM-DD).
|
|
517
|
+
* @param pageNumber (optional) Pagination page number.
|
|
518
|
+
* @param pageSize (optional) Pagination page size.
|
|
519
|
+
* @return Returns the list of PmiValuation.
|
|
520
|
+
*/
|
|
521
|
+
getAllPmiValuations(financialInstitutionId: string, preIPOCompanyId: string | undefined, pmiId: string | undefined, displayName: string | undefined, fromDate: Date | undefined, toDate: Date | undefined, pageNumber: number | undefined, pageSize: number | undefined): Promise<PmiValuationApiResponse>;
|
|
522
|
+
protected processGetAllPmiValuations(response: Response): Promise<PmiValuationApiResponse>;
|
|
458
523
|
/**
|
|
459
524
|
* Get a PreIPOCompany by Id
|
|
460
525
|
* @param id ID of the PreIPOCompany to find.
|
|
@@ -849,12 +914,19 @@ export declare class BulkPreIPOCompany implements IBulkPreIPOCompany {
|
|
|
849
914
|
referencePriceDate?: Date | undefined;
|
|
850
915
|
/** 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
916
|
symbol?: string | undefined;
|
|
917
|
+
/** Defines if the company is public or private. Companies that IPO will be updated accordingly. */
|
|
918
|
+
listingType?: string | undefined;
|
|
919
|
+
/** Defines if the company is active or inactive. Companies are updated to inactive if they experience a bankruptcy, shutdown, or similar corporate event. */
|
|
920
|
+
isActive?: boolean | undefined;
|
|
921
|
+
/** Includes details on the exchange, ticker, listed_at and delisted_at (if it exists). */
|
|
922
|
+
listings?: Listing[] | undefined;
|
|
923
|
+
/** Includes details on the IPO or delisting date. */
|
|
924
|
+
milestones?: Milestone[] | undefined;
|
|
852
925
|
news?: PreIPOCompanyNews[] | undefined;
|
|
853
926
|
research?: PreIPOCompanyResearch[] | undefined;
|
|
854
927
|
fundingRounds?: PreIPOCompanyFundingRound[] | undefined;
|
|
855
|
-
npmFundingRounds?: NpmFundingRound[] | undefined;
|
|
856
928
|
investments?: PreIPOCompanyInvestment[] | undefined;
|
|
857
|
-
spvs?:
|
|
929
|
+
spvs?: BulkPreIPOCompanySPV[] | undefined;
|
|
858
930
|
constructor(data?: IBulkPreIPOCompany);
|
|
859
931
|
init(_data?: any): void;
|
|
860
932
|
static fromJS(data: any): BulkPreIPOCompany;
|
|
@@ -925,12 +997,19 @@ export interface IBulkPreIPOCompany {
|
|
|
925
997
|
referencePriceDate?: Date | undefined;
|
|
926
998
|
/** 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
999
|
symbol?: string | undefined;
|
|
1000
|
+
/** Defines if the company is public or private. Companies that IPO will be updated accordingly. */
|
|
1001
|
+
listingType?: string | undefined;
|
|
1002
|
+
/** Defines if the company is active or inactive. Companies are updated to inactive if they experience a bankruptcy, shutdown, or similar corporate event. */
|
|
1003
|
+
isActive?: boolean | undefined;
|
|
1004
|
+
/** Includes details on the exchange, ticker, listed_at and delisted_at (if it exists). */
|
|
1005
|
+
listings?: Listing[] | undefined;
|
|
1006
|
+
/** Includes details on the IPO or delisting date. */
|
|
1007
|
+
milestones?: Milestone[] | undefined;
|
|
928
1008
|
news?: PreIPOCompanyNews[] | undefined;
|
|
929
1009
|
research?: PreIPOCompanyResearch[] | undefined;
|
|
930
1010
|
fundingRounds?: PreIPOCompanyFundingRound[] | undefined;
|
|
931
|
-
npmFundingRounds?: NpmFundingRound[] | undefined;
|
|
932
1011
|
investments?: PreIPOCompanyInvestment[] | undefined;
|
|
933
|
-
spvs?:
|
|
1012
|
+
spvs?: BulkPreIPOCompanySPV[] | undefined;
|
|
934
1013
|
}
|
|
935
1014
|
export declare class BulkPreIPOCompanyApiResponse implements IBulkPreIPOCompanyApiResponse {
|
|
936
1015
|
items?: BulkPreIPOCompany[] | undefined;
|
|
@@ -944,6 +1023,158 @@ export interface IBulkPreIPOCompanyApiResponse {
|
|
|
944
1023
|
items?: BulkPreIPOCompany[] | undefined;
|
|
945
1024
|
pagination?: Pagination | undefined;
|
|
946
1025
|
}
|
|
1026
|
+
export declare class BulkPreIPOCompanySPV implements IBulkPreIPOCompanySPV {
|
|
1027
|
+
/** Unique ID associated with an SPV. */
|
|
1028
|
+
id: string;
|
|
1029
|
+
/** The unique ID of the PreIPOCompany that the SPV is investing into. */
|
|
1030
|
+
preIPOCompanyInvestmentId: string;
|
|
1031
|
+
/** The PreIPOCompany which the SPV will be investing into. */
|
|
1032
|
+
preIPOCompanyId: string;
|
|
1033
|
+
/** 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. */
|
|
1034
|
+
totalDollarAllocation?: number | undefined;
|
|
1035
|
+
/** The minimum amount that an Investor can invest into an SPV during a primary offering. */
|
|
1036
|
+
minCommitmentAmount?: number | undefined;
|
|
1037
|
+
/** The name of the SPV. */
|
|
1038
|
+
name: string | undefined;
|
|
1039
|
+
/** 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. */
|
|
1040
|
+
valuation?: number;
|
|
1041
|
+
/** Short description of the SPV. */
|
|
1042
|
+
synopsis?: string | undefined;
|
|
1043
|
+
/** Longer description of the SPV’s strategy or purpose. */
|
|
1044
|
+
description?: string | undefined;
|
|
1045
|
+
/** A list of notable investors associated with an SPV. */
|
|
1046
|
+
notableInvestors?: string[] | undefined;
|
|
1047
|
+
/** The name of the Master LLC. */
|
|
1048
|
+
masterLLCName?: string | undefined;
|
|
1049
|
+
/** The one time, up front management fee charged by the SPV. */
|
|
1050
|
+
managementFee?: number | undefined;
|
|
1051
|
+
/** 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. */
|
|
1052
|
+
managementFeeYearsPayable?: number | undefined;
|
|
1053
|
+
/** 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. */
|
|
1054
|
+
fundingDeadline?: Date | undefined;
|
|
1055
|
+
/** The exemptions claimed by a PreIPOCompanySPV. These align with the SEC's Form D Item 6: Federal Exemptions and Exclusions Claimed. */
|
|
1056
|
+
exemptionsClaimed?: exemptionsClaimed[] | undefined;
|
|
1057
|
+
/** The stage that an SPV is in. Refer to the “SPV Status Transitions” page in our Guides for a detailed description of each stage. */
|
|
1058
|
+
monarkStage: BulkPreIPOCompanySPVMonarkStage;
|
|
1059
|
+
/** CUSIP assigned to the SPV. Monark acquires and assigns the CUSIP after the first trade has been executed through our ATS. */
|
|
1060
|
+
cusip?: string | undefined;
|
|
1061
|
+
/** 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. */
|
|
1062
|
+
tradingSymbol?: string | undefined;
|
|
1063
|
+
/** The date that the SPV officially closed. This field will be populated after the close of the SPV. */
|
|
1064
|
+
closeDate?: Date | undefined;
|
|
1065
|
+
/** Custodian where SPV shares are held. */
|
|
1066
|
+
spvCustodian?: string | undefined;
|
|
1067
|
+
/** The number of shares in the PreIPOCompany that will be held by the SPV. */
|
|
1068
|
+
totalShareAllocation?: number;
|
|
1069
|
+
/** The number of shares in the PreIPOCompany that will be held by the SPV. */
|
|
1070
|
+
totalNumberOfSeats?: number;
|
|
1071
|
+
/** 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.” */
|
|
1072
|
+
numberOfSeatsRemaining?: number;
|
|
1073
|
+
/** 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. */
|
|
1074
|
+
remainingDollarAllocation?: number;
|
|
1075
|
+
/** 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. */
|
|
1076
|
+
remainingShareAllocation?: number;
|
|
1077
|
+
/** Indicates whether the SPV will be prefunded. */
|
|
1078
|
+
preFundedInventory?: boolean;
|
|
1079
|
+
/** The price per share of the PreIPOCompany, excluding fees, that an investor will pay when they invest in an SPV. */
|
|
1080
|
+
investorPricePerShare?: number | undefined;
|
|
1081
|
+
/** 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. */
|
|
1082
|
+
investorFeePerShare?: number | undefined;
|
|
1083
|
+
/** The total amount per share that an Investor will pay, including fees, when they invest in an SPV. */
|
|
1084
|
+
allInPricePerShare?: number | undefined;
|
|
1085
|
+
/** The base documents associated with the SPV (Optional). */
|
|
1086
|
+
documents?: Document[] | undefined;
|
|
1087
|
+
/** SPV account ID. */
|
|
1088
|
+
spvAccountID?: number | undefined;
|
|
1089
|
+
/** The name of the parent company. */
|
|
1090
|
+
preIPOCompanyName?: string | undefined;
|
|
1091
|
+
/** The manager details of this SPV. */
|
|
1092
|
+
manager?: Partner | undefined;
|
|
1093
|
+
/** List of Co-Managers of this SPV. */
|
|
1094
|
+
coManagers?: Partner[] | undefined;
|
|
1095
|
+
/** Optional carry interest. */
|
|
1096
|
+
carry?: number | undefined;
|
|
1097
|
+
/** List of allowed financial institution IDs for this SPV. */
|
|
1098
|
+
allowedFinancialInstitutions?: string[] | undefined;
|
|
1099
|
+
constructor(data?: IBulkPreIPOCompanySPV);
|
|
1100
|
+
init(_data?: any): void;
|
|
1101
|
+
static fromJS(data: any): BulkPreIPOCompanySPV;
|
|
1102
|
+
toJSON(data?: any): any;
|
|
1103
|
+
}
|
|
1104
|
+
export interface IBulkPreIPOCompanySPV {
|
|
1105
|
+
/** Unique ID associated with an SPV. */
|
|
1106
|
+
id: string;
|
|
1107
|
+
/** The unique ID of the PreIPOCompany that the SPV is investing into. */
|
|
1108
|
+
preIPOCompanyInvestmentId: string;
|
|
1109
|
+
/** The PreIPOCompany which the SPV will be investing into. */
|
|
1110
|
+
preIPOCompanyId: string;
|
|
1111
|
+
/** 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. */
|
|
1112
|
+
totalDollarAllocation?: number | undefined;
|
|
1113
|
+
/** The minimum amount that an Investor can invest into an SPV during a primary offering. */
|
|
1114
|
+
minCommitmentAmount?: number | undefined;
|
|
1115
|
+
/** The name of the SPV. */
|
|
1116
|
+
name: string | undefined;
|
|
1117
|
+
/** 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. */
|
|
1118
|
+
valuation?: number;
|
|
1119
|
+
/** Short description of the SPV. */
|
|
1120
|
+
synopsis?: string | undefined;
|
|
1121
|
+
/** Longer description of the SPV’s strategy or purpose. */
|
|
1122
|
+
description?: string | undefined;
|
|
1123
|
+
/** A list of notable investors associated with an SPV. */
|
|
1124
|
+
notableInvestors?: string[] | undefined;
|
|
1125
|
+
/** The name of the Master LLC. */
|
|
1126
|
+
masterLLCName?: string | undefined;
|
|
1127
|
+
/** The one time, up front management fee charged by the SPV. */
|
|
1128
|
+
managementFee?: number | undefined;
|
|
1129
|
+
/** 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. */
|
|
1130
|
+
managementFeeYearsPayable?: number | undefined;
|
|
1131
|
+
/** 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. */
|
|
1132
|
+
fundingDeadline?: Date | undefined;
|
|
1133
|
+
/** The exemptions claimed by a PreIPOCompanySPV. These align with the SEC's Form D Item 6: Federal Exemptions and Exclusions Claimed. */
|
|
1134
|
+
exemptionsClaimed?: exemptionsClaimed[] | undefined;
|
|
1135
|
+
/** The stage that an SPV is in. Refer to the “SPV Status Transitions” page in our Guides for a detailed description of each stage. */
|
|
1136
|
+
monarkStage: BulkPreIPOCompanySPVMonarkStage;
|
|
1137
|
+
/** CUSIP assigned to the SPV. Monark acquires and assigns the CUSIP after the first trade has been executed through our ATS. */
|
|
1138
|
+
cusip?: string | undefined;
|
|
1139
|
+
/** 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. */
|
|
1140
|
+
tradingSymbol?: string | undefined;
|
|
1141
|
+
/** The date that the SPV officially closed. This field will be populated after the close of the SPV. */
|
|
1142
|
+
closeDate?: Date | undefined;
|
|
1143
|
+
/** Custodian where SPV shares are held. */
|
|
1144
|
+
spvCustodian?: string | undefined;
|
|
1145
|
+
/** The number of shares in the PreIPOCompany that will be held by the SPV. */
|
|
1146
|
+
totalShareAllocation?: number;
|
|
1147
|
+
/** The number of shares in the PreIPOCompany that will be held by the SPV. */
|
|
1148
|
+
totalNumberOfSeats?: number;
|
|
1149
|
+
/** 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.” */
|
|
1150
|
+
numberOfSeatsRemaining?: number;
|
|
1151
|
+
/** 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. */
|
|
1152
|
+
remainingDollarAllocation?: number;
|
|
1153
|
+
/** 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. */
|
|
1154
|
+
remainingShareAllocation?: number;
|
|
1155
|
+
/** Indicates whether the SPV will be prefunded. */
|
|
1156
|
+
preFundedInventory?: boolean;
|
|
1157
|
+
/** The price per share of the PreIPOCompany, excluding fees, that an investor will pay when they invest in an SPV. */
|
|
1158
|
+
investorPricePerShare?: number | undefined;
|
|
1159
|
+
/** 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. */
|
|
1160
|
+
investorFeePerShare?: number | undefined;
|
|
1161
|
+
/** The total amount per share that an Investor will pay, including fees, when they invest in an SPV. */
|
|
1162
|
+
allInPricePerShare?: number | undefined;
|
|
1163
|
+
/** The base documents associated with the SPV (Optional). */
|
|
1164
|
+
documents?: Document[] | undefined;
|
|
1165
|
+
/** SPV account ID. */
|
|
1166
|
+
spvAccountID?: number | undefined;
|
|
1167
|
+
/** The name of the parent company. */
|
|
1168
|
+
preIPOCompanyName?: string | undefined;
|
|
1169
|
+
/** The manager details of this SPV. */
|
|
1170
|
+
manager?: Partner | undefined;
|
|
1171
|
+
/** List of Co-Managers of this SPV. */
|
|
1172
|
+
coManagers?: Partner[] | undefined;
|
|
1173
|
+
/** Optional carry interest. */
|
|
1174
|
+
carry?: number | undefined;
|
|
1175
|
+
/** List of allowed financial institution IDs for this SPV. */
|
|
1176
|
+
allowedFinancialInstitutions?: string[] | undefined;
|
|
1177
|
+
}
|
|
947
1178
|
export declare class Citation implements ICitation {
|
|
948
1179
|
/** Type of the citation. */
|
|
949
1180
|
type: string;
|
|
@@ -2364,6 +2595,70 @@ export interface ILayeredSPV {
|
|
|
2364
2595
|
/** 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
2596
|
lpStakePercentage?: number;
|
|
2366
2597
|
}
|
|
2598
|
+
/** Represents a public listing on a stock exchange. */
|
|
2599
|
+
export declare class Listing implements IListing {
|
|
2600
|
+
/** ID for the listing. */
|
|
2601
|
+
id: string;
|
|
2602
|
+
/** Type of listing. */
|
|
2603
|
+
type: string;
|
|
2604
|
+
/** The exchange venue (e.g., NASDAQ, NYSE). */
|
|
2605
|
+
venue: string;
|
|
2606
|
+
/** Stock ticker used on the exchange. */
|
|
2607
|
+
ticker: string;
|
|
2608
|
+
/** Date the company was listed on the exchange. */
|
|
2609
|
+
listedAt?: Date | undefined;
|
|
2610
|
+
/** Date the company was delisted, if applicable. */
|
|
2611
|
+
delistedAt?: Date | undefined;
|
|
2612
|
+
constructor(data?: IListing);
|
|
2613
|
+
init(_data?: any): void;
|
|
2614
|
+
static fromJS(data: any): Listing;
|
|
2615
|
+
toJSON(data?: any): any;
|
|
2616
|
+
}
|
|
2617
|
+
/** Represents a public listing on a stock exchange. */
|
|
2618
|
+
export interface IListing {
|
|
2619
|
+
/** ID for the listing. */
|
|
2620
|
+
id: string;
|
|
2621
|
+
/** Type of listing. */
|
|
2622
|
+
type: string;
|
|
2623
|
+
/** The exchange venue (e.g., NASDAQ, NYSE). */
|
|
2624
|
+
venue: string;
|
|
2625
|
+
/** Stock ticker used on the exchange. */
|
|
2626
|
+
ticker: string;
|
|
2627
|
+
/** Date the company was listed on the exchange. */
|
|
2628
|
+
listedAt?: Date | undefined;
|
|
2629
|
+
/** Date the company was delisted, if applicable. */
|
|
2630
|
+
delistedAt?: Date | undefined;
|
|
2631
|
+
}
|
|
2632
|
+
/** Represents a significant event or milestone in the company’s lifecycle. */
|
|
2633
|
+
export declare class Milestone implements IMilestone {
|
|
2634
|
+
/** ID for the milestone. */
|
|
2635
|
+
id: string;
|
|
2636
|
+
/** Type of milestone (e.g., IPO, acquisition). */
|
|
2637
|
+
type: string;
|
|
2638
|
+
/** The date of the milestone. */
|
|
2639
|
+
date: Date;
|
|
2640
|
+
/** Human-readable label describing the milestone. */
|
|
2641
|
+
label?: string | undefined;
|
|
2642
|
+
/** Description of the milestone. */
|
|
2643
|
+
description?: string | undefined;
|
|
2644
|
+
constructor(data?: IMilestone);
|
|
2645
|
+
init(_data?: any): void;
|
|
2646
|
+
static fromJS(data: any): Milestone;
|
|
2647
|
+
toJSON(data?: any): any;
|
|
2648
|
+
}
|
|
2649
|
+
/** Represents a significant event or milestone in the company’s lifecycle. */
|
|
2650
|
+
export interface IMilestone {
|
|
2651
|
+
/** ID for the milestone. */
|
|
2652
|
+
id: string;
|
|
2653
|
+
/** Type of milestone (e.g., IPO, acquisition). */
|
|
2654
|
+
type: string;
|
|
2655
|
+
/** The date of the milestone. */
|
|
2656
|
+
date: Date;
|
|
2657
|
+
/** Human-readable label describing the milestone. */
|
|
2658
|
+
label?: string | undefined;
|
|
2659
|
+
/** Description of the milestone. */
|
|
2660
|
+
description?: string | undefined;
|
|
2661
|
+
}
|
|
2367
2662
|
export declare class ModifyIndividualInvestor implements IModifyIndividualInvestor {
|
|
2368
2663
|
/** First name of the Investor. */
|
|
2369
2664
|
firstName: string;
|
|
@@ -3196,6 +3491,422 @@ export interface IPartner {
|
|
|
3196
3491
|
all CRD numbers can be listed here. */
|
|
3197
3492
|
managerCRD?: string[] | undefined;
|
|
3198
3493
|
}
|
|
3494
|
+
/** Read model representing a PMI feed composite derived pricing record returned by the API. */
|
|
3495
|
+
export declare class PmiFeedPricing implements IPmiFeedPricing {
|
|
3496
|
+
/** Unique identifier of this record. */
|
|
3497
|
+
id: string;
|
|
3498
|
+
/** The unique ID of the PreIPOCompany associated with this record. */
|
|
3499
|
+
preIPOCompanyId: string;
|
|
3500
|
+
/** Date when data was updated by PMI. */
|
|
3501
|
+
pmiUpdatedAt?: Date | undefined;
|
|
3502
|
+
/** Unique ID given to each company by PMI - used as business key for upsert operations. */
|
|
3503
|
+
pmiId: string | undefined;
|
|
3504
|
+
/** Name commonly used by issuer. */
|
|
3505
|
+
displayName: string | undefined;
|
|
3506
|
+
/** Date of composite price. */
|
|
3507
|
+
date: Date;
|
|
3508
|
+
/** Composite price calculated from broker contributed data. */
|
|
3509
|
+
price?: number | undefined;
|
|
3510
|
+
derivedPrice?: number | undefined;
|
|
3511
|
+
/** Uses composite price when depth_90_day is 2+, otherwise uses derived price if available. */
|
|
3512
|
+
combinedPrice?: number | undefined;
|
|
3513
|
+
/** Composite price calculated from broker contributed data, unadjusted for splits. */
|
|
3514
|
+
unadjustedPrice?: number | undefined;
|
|
3515
|
+
unadjustedDerivedPrice?: number | undefined;
|
|
3516
|
+
/** Uses composite price when depth_90_day is 2+, otherwise uses derived price if available. Unadjusted for splits. */
|
|
3517
|
+
unadjustedCombinedPrice?: number | undefined;
|
|
3518
|
+
/** Number of transactions. */
|
|
3519
|
+
depth90Day?: number | undefined;
|
|
3520
|
+
/** Standard deviation within last 90 days of date or ingestion_date. */
|
|
3521
|
+
stdev90Day?: number | undefined;
|
|
3522
|
+
/** Standard deviation within last 5 days of date or ingestion_date. */
|
|
3523
|
+
stdevRecent5?: number | undefined;
|
|
3524
|
+
/** Volatility based on composite price within last 90 days of date or ingestion_date. */
|
|
3525
|
+
volatility90Day?: number | undefined;
|
|
3526
|
+
/** Volatility based on underlying contributions within last 90 days of date or ingestion_date. */
|
|
3527
|
+
underlyingVolatility90Day?: number | undefined;
|
|
3528
|
+
/** Total bid volume at the end of month and if latest date then the last n days where n is the number of days in prior month. */
|
|
3529
|
+
bidVolume?: number | undefined;
|
|
3530
|
+
/** Total bid count at the end of month and if latest date then the last n days where n is the number of days in prior month. */
|
|
3531
|
+
numberOfBids?: number | undefined;
|
|
3532
|
+
/** Total ask volume at the end of month and if latest date then the last n days where n is the number of days in prior month. */
|
|
3533
|
+
askVolume?: number | undefined;
|
|
3534
|
+
/** Total ask count at the end of month and if latest date then the last n days where n is the number of days in prior month. */
|
|
3535
|
+
numberOfAsks?: number | undefined;
|
|
3536
|
+
/** Total trade volume at the end of month and if latest date then the last n days where n is the number of days in prior month. */
|
|
3537
|
+
tradeVolume?: number | undefined;
|
|
3538
|
+
/** Total trade count at the end of month and if latest date then the last n days where n is the number of days in prior month. */
|
|
3539
|
+
numberOfTrades?: number | undefined;
|
|
3540
|
+
/** Type of currency such as EUR, AUD and USD. */
|
|
3541
|
+
currency?: string | undefined;
|
|
3542
|
+
constructor(data?: IPmiFeedPricing);
|
|
3543
|
+
init(_data?: any): void;
|
|
3544
|
+
static fromJS(data: any): PmiFeedPricing;
|
|
3545
|
+
toJSON(data?: any): any;
|
|
3546
|
+
}
|
|
3547
|
+
/** Read model representing a PMI feed composite derived pricing record returned by the API. */
|
|
3548
|
+
export interface IPmiFeedPricing {
|
|
3549
|
+
/** Unique identifier of this record. */
|
|
3550
|
+
id: string;
|
|
3551
|
+
/** The unique ID of the PreIPOCompany associated with this record. */
|
|
3552
|
+
preIPOCompanyId: string;
|
|
3553
|
+
/** Date when data was updated by PMI. */
|
|
3554
|
+
pmiUpdatedAt?: Date | undefined;
|
|
3555
|
+
/** Unique ID given to each company by PMI - used as business key for upsert operations. */
|
|
3556
|
+
pmiId: string | undefined;
|
|
3557
|
+
/** Name commonly used by issuer. */
|
|
3558
|
+
displayName: string | undefined;
|
|
3559
|
+
/** Date of composite price. */
|
|
3560
|
+
date: Date;
|
|
3561
|
+
/** Composite price calculated from broker contributed data. */
|
|
3562
|
+
price?: number | undefined;
|
|
3563
|
+
derivedPrice?: number | undefined;
|
|
3564
|
+
/** Uses composite price when depth_90_day is 2+, otherwise uses derived price if available. */
|
|
3565
|
+
combinedPrice?: number | undefined;
|
|
3566
|
+
/** Composite price calculated from broker contributed data, unadjusted for splits. */
|
|
3567
|
+
unadjustedPrice?: number | undefined;
|
|
3568
|
+
unadjustedDerivedPrice?: number | undefined;
|
|
3569
|
+
/** Uses composite price when depth_90_day is 2+, otherwise uses derived price if available. Unadjusted for splits. */
|
|
3570
|
+
unadjustedCombinedPrice?: number | undefined;
|
|
3571
|
+
/** Number of transactions. */
|
|
3572
|
+
depth90Day?: number | undefined;
|
|
3573
|
+
/** Standard deviation within last 90 days of date or ingestion_date. */
|
|
3574
|
+
stdev90Day?: number | undefined;
|
|
3575
|
+
/** Standard deviation within last 5 days of date or ingestion_date. */
|
|
3576
|
+
stdevRecent5?: number | undefined;
|
|
3577
|
+
/** Volatility based on composite price within last 90 days of date or ingestion_date. */
|
|
3578
|
+
volatility90Day?: number | undefined;
|
|
3579
|
+
/** Volatility based on underlying contributions within last 90 days of date or ingestion_date. */
|
|
3580
|
+
underlyingVolatility90Day?: number | undefined;
|
|
3581
|
+
/** Total bid volume at the end of month and if latest date then the last n days where n is the number of days in prior month. */
|
|
3582
|
+
bidVolume?: number | undefined;
|
|
3583
|
+
/** Total bid count at the end of month and if latest date then the last n days where n is the number of days in prior month. */
|
|
3584
|
+
numberOfBids?: number | undefined;
|
|
3585
|
+
/** Total ask volume at the end of month and if latest date then the last n days where n is the number of days in prior month. */
|
|
3586
|
+
askVolume?: number | undefined;
|
|
3587
|
+
/** Total ask count at the end of month and if latest date then the last n days where n is the number of days in prior month. */
|
|
3588
|
+
numberOfAsks?: number | undefined;
|
|
3589
|
+
/** Total trade volume at the end of month and if latest date then the last n days where n is the number of days in prior month. */
|
|
3590
|
+
tradeVolume?: number | undefined;
|
|
3591
|
+
/** Total trade count at the end of month and if latest date then the last n days where n is the number of days in prior month. */
|
|
3592
|
+
numberOfTrades?: number | undefined;
|
|
3593
|
+
/** Type of currency such as EUR, AUD and USD. */
|
|
3594
|
+
currency?: string | undefined;
|
|
3595
|
+
}
|
|
3596
|
+
export declare class PmiFeedPricingApiResponse implements IPmiFeedPricingApiResponse {
|
|
3597
|
+
items?: PmiFeedPricing[] | undefined;
|
|
3598
|
+
pagination?: Pagination | undefined;
|
|
3599
|
+
constructor(data?: IPmiFeedPricingApiResponse);
|
|
3600
|
+
init(_data?: any): void;
|
|
3601
|
+
static fromJS(data: any): PmiFeedPricingApiResponse;
|
|
3602
|
+
toJSON(data?: any): any;
|
|
3603
|
+
}
|
|
3604
|
+
export interface IPmiFeedPricingApiResponse {
|
|
3605
|
+
items?: PmiFeedPricing[] | undefined;
|
|
3606
|
+
pagination?: Pagination | undefined;
|
|
3607
|
+
}
|
|
3608
|
+
/** Read model representing a PMI issuer record returned by the API. */
|
|
3609
|
+
export declare class PmiIssuer implements IPmiIssuer {
|
|
3610
|
+
/** Unique identifier of this record. */
|
|
3611
|
+
id: string;
|
|
3612
|
+
/** The unique ID of the PreIPOCompany associated with this record. */
|
|
3613
|
+
preIPOCompanyId: string;
|
|
3614
|
+
/** Date when data was updated by PMI. */
|
|
3615
|
+
pmiUpdatedAt?: Date | undefined;
|
|
3616
|
+
/** Unique ID given to each issuer by PMI - used as business key for upsert operations. */
|
|
3617
|
+
infoId: string | undefined;
|
|
3618
|
+
/** Name commonly used by issuer. */
|
|
3619
|
+
infoDisplayName: string | undefined;
|
|
3620
|
+
/** List of other names used by issuer (stored as JSON). */
|
|
3621
|
+
infoAksNamesJson?: string | undefined;
|
|
3622
|
+
/** Short description about the issuer. */
|
|
3623
|
+
infoDescription?: string | undefined;
|
|
3624
|
+
/** Website of the issuer. */
|
|
3625
|
+
infoUrl?: string | undefined;
|
|
3626
|
+
/** Headquarter address excluding the country. */
|
|
3627
|
+
infoHqAddress?: string | undefined;
|
|
3628
|
+
/** Country where headquarter is located. */
|
|
3629
|
+
infoHqCountry?: string | undefined;
|
|
3630
|
+
/** Year of incorporation or founding. */
|
|
3631
|
+
infoIncorporationDate?: number | undefined;
|
|
3632
|
+
/** Lower bound of number of employees. */
|
|
3633
|
+
infoNumberOfEmployees?: number | undefined;
|
|
3634
|
+
/** Share split date and ratio (stored as JSON list). */
|
|
3635
|
+
infoSplitsJson?: string | undefined;
|
|
3636
|
+
/** Dates the company went public, bankrupt, or was acquired (JSON list). */
|
|
3637
|
+
infoNotPrivateMarketDatesJson?: string | undefined;
|
|
3638
|
+
/** List of sectors the issuer falls into (JSON list). */
|
|
3639
|
+
infoSectorsJson?: string | undefined;
|
|
3640
|
+
/** Currency of the share pricing data collected. */
|
|
3641
|
+
infoCurrency?: string | undefined;
|
|
3642
|
+
/** Legal name of the issuer. */
|
|
3643
|
+
infoLegalName?: string | undefined;
|
|
3644
|
+
/** List of current CEOs (stored as JSON). */
|
|
3645
|
+
infoCeosJson?: string | undefined;
|
|
3646
|
+
/** Latest composite or derived price for the issuer. */
|
|
3647
|
+
pricePrice?: number | undefined;
|
|
3648
|
+
/** Whether the price is derived. */
|
|
3649
|
+
priceIsDerived?: boolean | undefined;
|
|
3650
|
+
/** Currency of the price. */
|
|
3651
|
+
priceCurrency?: string | undefined;
|
|
3652
|
+
/** Price year-to-date. */
|
|
3653
|
+
priceYtd?: number | undefined;
|
|
3654
|
+
/** ROI year-to-date. */
|
|
3655
|
+
priceYtdRoi?: number | undefined;
|
|
3656
|
+
/** Total bid volume within the last three months. */
|
|
3657
|
+
volumeThreeMonthsBid?: number | undefined;
|
|
3658
|
+
/** Total ask volume within the last three months. */
|
|
3659
|
+
volumeThreeMonthsAsk?: number | undefined;
|
|
3660
|
+
/** Total bid volume within the last six months. */
|
|
3661
|
+
volumeSixMonthsBid?: number | undefined;
|
|
3662
|
+
/** Total ask volume within the last six months. */
|
|
3663
|
+
volumeSixMonthsAsk?: number | undefined;
|
|
3664
|
+
/** Total year-to-date bid volume. */
|
|
3665
|
+
volumeYtdBid?: number | undefined;
|
|
3666
|
+
/** Total year-to-date ask volume. */
|
|
3667
|
+
volumeYtdAsk?: number | undefined;
|
|
3668
|
+
/** Total bid volume in the last year. */
|
|
3669
|
+
volumeYearBid?: number | undefined;
|
|
3670
|
+
/** Total ask volume in the last year. */
|
|
3671
|
+
volumeYearAsk?: number | undefined;
|
|
3672
|
+
/** Total bid volume in the last two years. */
|
|
3673
|
+
volumeTwoYearBid?: number | undefined;
|
|
3674
|
+
/** Total ask volume in the last two years. */
|
|
3675
|
+
volumeTwoYearAsk?: number | undefined;
|
|
3676
|
+
/** Current implied valuation based on latest filing. */
|
|
3677
|
+
valuationCurrentImpliedFiling?: number | undefined;
|
|
3678
|
+
/** Current implied valuation based on latest news. */
|
|
3679
|
+
valuationCurrentImpliedNews?: number | undefined;
|
|
3680
|
+
/** Date for current implied valuation. */
|
|
3681
|
+
valuationCurrentImpliedDate?: Date | undefined;
|
|
3682
|
+
/** Last round valuation from filings. */
|
|
3683
|
+
valuationLastRoundFiling?: number | undefined;
|
|
3684
|
+
/** Last round valuation from news. */
|
|
3685
|
+
valuationLastRoundNews?: number | undefined;
|
|
3686
|
+
/** Date for last round valuation. */
|
|
3687
|
+
valuationLastRoundDate?: Date | undefined;
|
|
3688
|
+
/** Share count from latest filing. */
|
|
3689
|
+
valuationShareCountFiling?: number | undefined;
|
|
3690
|
+
/** Share count from latest news. */
|
|
3691
|
+
valuationShareCountNews?: number | undefined;
|
|
3692
|
+
/** Date for share count data. */
|
|
3693
|
+
valuationShareCountDate?: Date | undefined;
|
|
3694
|
+
/** Share class of the last round. */
|
|
3695
|
+
valuationLastRoundShareClass?: string | undefined;
|
|
3696
|
+
/** Last round price per share. */
|
|
3697
|
+
valuationLastRoundPrice?: number | undefined;
|
|
3698
|
+
/** Change since last round in implied valuation. */
|
|
3699
|
+
valuationCurrentImpliedChangeSinceLastRound?: number | undefined;
|
|
3700
|
+
/** Latest revenue reported. */
|
|
3701
|
+
valuationLatestRevenue?: number | undefined;
|
|
3702
|
+
/** Percent change in latest revenue. */
|
|
3703
|
+
valuationLatestRevenuePercentChange?: number | undefined;
|
|
3704
|
+
/** Fiscal year of the latest revenue. */
|
|
3705
|
+
valuationLatestRevenueYear?: number | undefined;
|
|
3706
|
+
/** Currency of latest revenue. */
|
|
3707
|
+
valuationLatestRevenueCurrency?: string | undefined;
|
|
3708
|
+
/** Source of latest revenue data. */
|
|
3709
|
+
valuationLatestRevenueSource?: string | undefined;
|
|
3710
|
+
constructor(data?: IPmiIssuer);
|
|
3711
|
+
init(_data?: any): void;
|
|
3712
|
+
static fromJS(data: any): PmiIssuer;
|
|
3713
|
+
toJSON(data?: any): any;
|
|
3714
|
+
}
|
|
3715
|
+
/** Read model representing a PMI issuer record returned by the API. */
|
|
3716
|
+
export interface IPmiIssuer {
|
|
3717
|
+
/** Unique identifier of this record. */
|
|
3718
|
+
id: string;
|
|
3719
|
+
/** The unique ID of the PreIPOCompany associated with this record. */
|
|
3720
|
+
preIPOCompanyId: string;
|
|
3721
|
+
/** Date when data was updated by PMI. */
|
|
3722
|
+
pmiUpdatedAt?: Date | undefined;
|
|
3723
|
+
/** Unique ID given to each issuer by PMI - used as business key for upsert operations. */
|
|
3724
|
+
infoId: string | undefined;
|
|
3725
|
+
/** Name commonly used by issuer. */
|
|
3726
|
+
infoDisplayName: string | undefined;
|
|
3727
|
+
/** List of other names used by issuer (stored as JSON). */
|
|
3728
|
+
infoAksNamesJson?: string | undefined;
|
|
3729
|
+
/** Short description about the issuer. */
|
|
3730
|
+
infoDescription?: string | undefined;
|
|
3731
|
+
/** Website of the issuer. */
|
|
3732
|
+
infoUrl?: string | undefined;
|
|
3733
|
+
/** Headquarter address excluding the country. */
|
|
3734
|
+
infoHqAddress?: string | undefined;
|
|
3735
|
+
/** Country where headquarter is located. */
|
|
3736
|
+
infoHqCountry?: string | undefined;
|
|
3737
|
+
/** Year of incorporation or founding. */
|
|
3738
|
+
infoIncorporationDate?: number | undefined;
|
|
3739
|
+
/** Lower bound of number of employees. */
|
|
3740
|
+
infoNumberOfEmployees?: number | undefined;
|
|
3741
|
+
/** Share split date and ratio (stored as JSON list). */
|
|
3742
|
+
infoSplitsJson?: string | undefined;
|
|
3743
|
+
/** Dates the company went public, bankrupt, or was acquired (JSON list). */
|
|
3744
|
+
infoNotPrivateMarketDatesJson?: string | undefined;
|
|
3745
|
+
/** List of sectors the issuer falls into (JSON list). */
|
|
3746
|
+
infoSectorsJson?: string | undefined;
|
|
3747
|
+
/** Currency of the share pricing data collected. */
|
|
3748
|
+
infoCurrency?: string | undefined;
|
|
3749
|
+
/** Legal name of the issuer. */
|
|
3750
|
+
infoLegalName?: string | undefined;
|
|
3751
|
+
/** List of current CEOs (stored as JSON). */
|
|
3752
|
+
infoCeosJson?: string | undefined;
|
|
3753
|
+
/** Latest composite or derived price for the issuer. */
|
|
3754
|
+
pricePrice?: number | undefined;
|
|
3755
|
+
/** Whether the price is derived. */
|
|
3756
|
+
priceIsDerived?: boolean | undefined;
|
|
3757
|
+
/** Currency of the price. */
|
|
3758
|
+
priceCurrency?: string | undefined;
|
|
3759
|
+
/** Price year-to-date. */
|
|
3760
|
+
priceYtd?: number | undefined;
|
|
3761
|
+
/** ROI year-to-date. */
|
|
3762
|
+
priceYtdRoi?: number | undefined;
|
|
3763
|
+
/** Total bid volume within the last three months. */
|
|
3764
|
+
volumeThreeMonthsBid?: number | undefined;
|
|
3765
|
+
/** Total ask volume within the last three months. */
|
|
3766
|
+
volumeThreeMonthsAsk?: number | undefined;
|
|
3767
|
+
/** Total bid volume within the last six months. */
|
|
3768
|
+
volumeSixMonthsBid?: number | undefined;
|
|
3769
|
+
/** Total ask volume within the last six months. */
|
|
3770
|
+
volumeSixMonthsAsk?: number | undefined;
|
|
3771
|
+
/** Total year-to-date bid volume. */
|
|
3772
|
+
volumeYtdBid?: number | undefined;
|
|
3773
|
+
/** Total year-to-date ask volume. */
|
|
3774
|
+
volumeYtdAsk?: number | undefined;
|
|
3775
|
+
/** Total bid volume in the last year. */
|
|
3776
|
+
volumeYearBid?: number | undefined;
|
|
3777
|
+
/** Total ask volume in the last year. */
|
|
3778
|
+
volumeYearAsk?: number | undefined;
|
|
3779
|
+
/** Total bid volume in the last two years. */
|
|
3780
|
+
volumeTwoYearBid?: number | undefined;
|
|
3781
|
+
/** Total ask volume in the last two years. */
|
|
3782
|
+
volumeTwoYearAsk?: number | undefined;
|
|
3783
|
+
/** Current implied valuation based on latest filing. */
|
|
3784
|
+
valuationCurrentImpliedFiling?: number | undefined;
|
|
3785
|
+
/** Current implied valuation based on latest news. */
|
|
3786
|
+
valuationCurrentImpliedNews?: number | undefined;
|
|
3787
|
+
/** Date for current implied valuation. */
|
|
3788
|
+
valuationCurrentImpliedDate?: Date | undefined;
|
|
3789
|
+
/** Last round valuation from filings. */
|
|
3790
|
+
valuationLastRoundFiling?: number | undefined;
|
|
3791
|
+
/** Last round valuation from news. */
|
|
3792
|
+
valuationLastRoundNews?: number | undefined;
|
|
3793
|
+
/** Date for last round valuation. */
|
|
3794
|
+
valuationLastRoundDate?: Date | undefined;
|
|
3795
|
+
/** Share count from latest filing. */
|
|
3796
|
+
valuationShareCountFiling?: number | undefined;
|
|
3797
|
+
/** Share count from latest news. */
|
|
3798
|
+
valuationShareCountNews?: number | undefined;
|
|
3799
|
+
/** Date for share count data. */
|
|
3800
|
+
valuationShareCountDate?: Date | undefined;
|
|
3801
|
+
/** Share class of the last round. */
|
|
3802
|
+
valuationLastRoundShareClass?: string | undefined;
|
|
3803
|
+
/** Last round price per share. */
|
|
3804
|
+
valuationLastRoundPrice?: number | undefined;
|
|
3805
|
+
/** Change since last round in implied valuation. */
|
|
3806
|
+
valuationCurrentImpliedChangeSinceLastRound?: number | undefined;
|
|
3807
|
+
/** Latest revenue reported. */
|
|
3808
|
+
valuationLatestRevenue?: number | undefined;
|
|
3809
|
+
/** Percent change in latest revenue. */
|
|
3810
|
+
valuationLatestRevenuePercentChange?: number | undefined;
|
|
3811
|
+
/** Fiscal year of the latest revenue. */
|
|
3812
|
+
valuationLatestRevenueYear?: number | undefined;
|
|
3813
|
+
/** Currency of latest revenue. */
|
|
3814
|
+
valuationLatestRevenueCurrency?: string | undefined;
|
|
3815
|
+
/** Source of latest revenue data. */
|
|
3816
|
+
valuationLatestRevenueSource?: string | undefined;
|
|
3817
|
+
}
|
|
3818
|
+
export declare class PmiIssuerApiResponse implements IPmiIssuerApiResponse {
|
|
3819
|
+
items?: PmiIssuer[] | undefined;
|
|
3820
|
+
pagination?: Pagination | undefined;
|
|
3821
|
+
constructor(data?: IPmiIssuerApiResponse);
|
|
3822
|
+
init(_data?: any): void;
|
|
3823
|
+
static fromJS(data: any): PmiIssuerApiResponse;
|
|
3824
|
+
toJSON(data?: any): any;
|
|
3825
|
+
}
|
|
3826
|
+
export interface IPmiIssuerApiResponse {
|
|
3827
|
+
items?: PmiIssuer[] | undefined;
|
|
3828
|
+
pagination?: Pagination | undefined;
|
|
3829
|
+
}
|
|
3830
|
+
/** Read model representing a PMI valuation record returned by the API. */
|
|
3831
|
+
export declare class PmiValuation implements IPmiValuation {
|
|
3832
|
+
/** Unique identifier of this record. */
|
|
3833
|
+
id: string;
|
|
3834
|
+
/** The unique ID of the PreIPOCompany associated with this record. */
|
|
3835
|
+
preIPOCompanyId: string;
|
|
3836
|
+
/** Date when data was updated by PMI. */
|
|
3837
|
+
pmiUpdatedAt?: Date | undefined;
|
|
3838
|
+
/** Unique ID given to each issuer by PMI - used as business key for upsert operations. */
|
|
3839
|
+
pmiId: string | undefined;
|
|
3840
|
+
/** Name commonly used by issuer. */
|
|
3841
|
+
displayName: string | undefined;
|
|
3842
|
+
/** Date of funding round filing or PM Insight's implied valuation. */
|
|
3843
|
+
date: Date;
|
|
3844
|
+
/** Valuation in USD. */
|
|
3845
|
+
valuationUsd: number;
|
|
3846
|
+
/** The multiplier rate used to convert from base currency to USD (if base currency is non-USD). */
|
|
3847
|
+
currencyMultiplier?: number | undefined;
|
|
3848
|
+
/** Whether the valuation is for a funding round or implied using price (derived or composite),
|
|
3849
|
+
and funding round whether the share count used was from filing or news. */
|
|
3850
|
+
description?: string | undefined;
|
|
3851
|
+
/** The composite (depth 2+) or derived price (depth 1/0) used to produce the valuation, adjusted for splits. */
|
|
3852
|
+
splitAdjustedPriceUsd?: number | undefined;
|
|
3853
|
+
/** The share count used to produce the valuation, adjusted for splits. */
|
|
3854
|
+
splitAdjustedShareCount?: number | undefined;
|
|
3855
|
+
/** The composite (depth 2+) or derived price (depth 1/0) used to produce the valuation, not adjusted for splits. */
|
|
3856
|
+
unadjustedPriceUsd?: number | undefined;
|
|
3857
|
+
/** The share count used to produce the valuation, not adjusted for splits. */
|
|
3858
|
+
unadjustedShareCount?: number | undefined;
|
|
3859
|
+
/** The ratio of a share split, populating on the day a split occurs. */
|
|
3860
|
+
splitAtRatio?: number | undefined;
|
|
3861
|
+
constructor(data?: IPmiValuation);
|
|
3862
|
+
init(_data?: any): void;
|
|
3863
|
+
static fromJS(data: any): PmiValuation;
|
|
3864
|
+
toJSON(data?: any): any;
|
|
3865
|
+
}
|
|
3866
|
+
/** Read model representing a PMI valuation record returned by the API. */
|
|
3867
|
+
export interface IPmiValuation {
|
|
3868
|
+
/** Unique identifier of this record. */
|
|
3869
|
+
id: string;
|
|
3870
|
+
/** The unique ID of the PreIPOCompany associated with this record. */
|
|
3871
|
+
preIPOCompanyId: string;
|
|
3872
|
+
/** Date when data was updated by PMI. */
|
|
3873
|
+
pmiUpdatedAt?: Date | undefined;
|
|
3874
|
+
/** Unique ID given to each issuer by PMI - used as business key for upsert operations. */
|
|
3875
|
+
pmiId: string | undefined;
|
|
3876
|
+
/** Name commonly used by issuer. */
|
|
3877
|
+
displayName: string | undefined;
|
|
3878
|
+
/** Date of funding round filing or PM Insight's implied valuation. */
|
|
3879
|
+
date: Date;
|
|
3880
|
+
/** Valuation in USD. */
|
|
3881
|
+
valuationUsd: number;
|
|
3882
|
+
/** The multiplier rate used to convert from base currency to USD (if base currency is non-USD). */
|
|
3883
|
+
currencyMultiplier?: number | undefined;
|
|
3884
|
+
/** Whether the valuation is for a funding round or implied using price (derived or composite),
|
|
3885
|
+
and funding round whether the share count used was from filing or news. */
|
|
3886
|
+
description?: string | undefined;
|
|
3887
|
+
/** The composite (depth 2+) or derived price (depth 1/0) used to produce the valuation, adjusted for splits. */
|
|
3888
|
+
splitAdjustedPriceUsd?: number | undefined;
|
|
3889
|
+
/** The share count used to produce the valuation, adjusted for splits. */
|
|
3890
|
+
splitAdjustedShareCount?: number | undefined;
|
|
3891
|
+
/** The composite (depth 2+) or derived price (depth 1/0) used to produce the valuation, not adjusted for splits. */
|
|
3892
|
+
unadjustedPriceUsd?: number | undefined;
|
|
3893
|
+
/** The share count used to produce the valuation, not adjusted for splits. */
|
|
3894
|
+
unadjustedShareCount?: number | undefined;
|
|
3895
|
+
/** The ratio of a share split, populating on the day a split occurs. */
|
|
3896
|
+
splitAtRatio?: number | undefined;
|
|
3897
|
+
}
|
|
3898
|
+
export declare class PmiValuationApiResponse implements IPmiValuationApiResponse {
|
|
3899
|
+
items?: PmiValuation[] | undefined;
|
|
3900
|
+
pagination?: Pagination | undefined;
|
|
3901
|
+
constructor(data?: IPmiValuationApiResponse);
|
|
3902
|
+
init(_data?: any): void;
|
|
3903
|
+
static fromJS(data: any): PmiValuationApiResponse;
|
|
3904
|
+
toJSON(data?: any): any;
|
|
3905
|
+
}
|
|
3906
|
+
export interface IPmiValuationApiResponse {
|
|
3907
|
+
items?: PmiValuation[] | undefined;
|
|
3908
|
+
pagination?: Pagination | undefined;
|
|
3909
|
+
}
|
|
3199
3910
|
/** PreIPOCompany represents the public information we provide for a PreIPOCompany in the Primary Offering. */
|
|
3200
3911
|
export declare class PreIPOCompany implements IPreIPOCompany {
|
|
3201
3912
|
/** Unique ID associated with a PreIPOCompany. */
|
|
@@ -3262,6 +3973,14 @@ export declare class PreIPOCompany implements IPreIPOCompany {
|
|
|
3262
3973
|
referencePriceDate?: Date | undefined;
|
|
3263
3974
|
/** 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
3975
|
symbol?: string | undefined;
|
|
3976
|
+
/** Defines if the company is public or private. Companies that IPO will be updated accordingly. */
|
|
3977
|
+
listingType?: string | undefined;
|
|
3978
|
+
/** Defines if the company is active or inactive. Companies are updated to inactive if they experience a bankruptcy, shutdown, or similar corporate event. */
|
|
3979
|
+
isActive?: boolean | undefined;
|
|
3980
|
+
/** Includes details on the exchange, ticker, listed_at and delisted_at (if it exists). */
|
|
3981
|
+
listings?: Listing[] | undefined;
|
|
3982
|
+
/** Includes details on the IPO or delisting date. */
|
|
3983
|
+
milestones?: Milestone[] | undefined;
|
|
3265
3984
|
constructor(data?: IPreIPOCompany);
|
|
3266
3985
|
init(_data?: any): void;
|
|
3267
3986
|
static fromJS(data: any): PreIPOCompany;
|
|
@@ -3333,6 +4052,14 @@ export interface IPreIPOCompany {
|
|
|
3333
4052
|
referencePriceDate?: Date | undefined;
|
|
3334
4053
|
/** 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
4054
|
symbol?: string | undefined;
|
|
4055
|
+
/** Defines if the company is public or private. Companies that IPO will be updated accordingly. */
|
|
4056
|
+
listingType?: string | undefined;
|
|
4057
|
+
/** Defines if the company is active or inactive. Companies are updated to inactive if they experience a bankruptcy, shutdown, or similar corporate event. */
|
|
4058
|
+
isActive?: boolean | undefined;
|
|
4059
|
+
/** Includes details on the exchange, ticker, listed_at and delisted_at (if it exists). */
|
|
4060
|
+
listings?: Listing[] | undefined;
|
|
4061
|
+
/** Includes details on the IPO or delisting date. */
|
|
4062
|
+
milestones?: Milestone[] | undefined;
|
|
3336
4063
|
}
|
|
3337
4064
|
export declare class PreIPOCompanyApiResponse implements IPreIPOCompanyApiResponse {
|
|
3338
4065
|
items?: PreIPOCompany[] | undefined;
|
|
@@ -3661,7 +4388,7 @@ export declare class PreIPOCompanySPV implements IPreIPOCompanySPV {
|
|
|
3661
4388
|
/** 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
4389
|
fundingDeadline?: Date | undefined;
|
|
3663
4390
|
/** The exemptions claimed by a PreIPOCompanySPV. These align with the SEC's Form D Item 6: Federal Exemptions and Exclusions Claimed. */
|
|
3664
|
-
exemptionsClaimed?:
|
|
4391
|
+
exemptionsClaimed?: exemptionsClaimed2[] | undefined;
|
|
3665
4392
|
/** 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
4393
|
monarkStage: PreIPOCompanySPVMonarkStage;
|
|
3667
4394
|
/** CUSIP assigned to the SPV. Monark acquires and assigns the CUSIP after the first trade has been executed through our ATS. */
|
|
@@ -3700,6 +4427,8 @@ export declare class PreIPOCompanySPV implements IPreIPOCompanySPV {
|
|
|
3700
4427
|
manager?: Partner | undefined;
|
|
3701
4428
|
/** List of Co-Managers of this SPV. */
|
|
3702
4429
|
coManagers?: Partner[] | undefined;
|
|
4430
|
+
/** Optional carry interest. */
|
|
4431
|
+
carry?: number | undefined;
|
|
3703
4432
|
constructor(data?: IPreIPOCompanySPV);
|
|
3704
4433
|
init(_data?: any): void;
|
|
3705
4434
|
static fromJS(data: any): PreIPOCompanySPV;
|
|
@@ -3736,7 +4465,7 @@ export interface IPreIPOCompanySPV {
|
|
|
3736
4465
|
/** 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
4466
|
fundingDeadline?: Date | undefined;
|
|
3738
4467
|
/** The exemptions claimed by a PreIPOCompanySPV. These align with the SEC's Form D Item 6: Federal Exemptions and Exclusions Claimed. */
|
|
3739
|
-
exemptionsClaimed?:
|
|
4468
|
+
exemptionsClaimed?: exemptionsClaimed2[] | undefined;
|
|
3740
4469
|
/** 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
4470
|
monarkStage: PreIPOCompanySPVMonarkStage;
|
|
3742
4471
|
/** CUSIP assigned to the SPV. Monark acquires and assigns the CUSIP after the first trade has been executed through our ATS. */
|
|
@@ -3775,6 +4504,8 @@ export interface IPreIPOCompanySPV {
|
|
|
3775
4504
|
manager?: Partner | undefined;
|
|
3776
4505
|
/** List of Co-Managers of this SPV. */
|
|
3777
4506
|
coManagers?: Partner[] | undefined;
|
|
4507
|
+
/** Optional carry interest. */
|
|
4508
|
+
carry?: number | undefined;
|
|
3778
4509
|
}
|
|
3779
4510
|
export declare class PreIPOCompanySPVApiResponse implements IPreIPOCompanySPVApiResponse {
|
|
3780
4511
|
items?: PreIPOCompanySPV[] | undefined;
|
|
@@ -5046,7 +5777,6 @@ export declare enum Includes {
|
|
|
5046
5777
|
News = "News",
|
|
5047
5778
|
Research = "Research",
|
|
5048
5779
|
SacraFundingRounds = "SacraFundingRounds",
|
|
5049
|
-
NpmFundingRounds = "NpmFundingRounds",
|
|
5050
5780
|
Investments = "Investments",
|
|
5051
5781
|
Spvs = "Spvs"
|
|
5052
5782
|
}
|
|
@@ -5187,6 +5917,47 @@ export declare enum BulkPreIPOCompanyType {
|
|
|
5187
5917
|
FOREIGN_TRUST = "FOREIGN_TRUST",
|
|
5188
5918
|
OTHER = "OTHER"
|
|
5189
5919
|
}
|
|
5920
|
+
export declare enum exemptionsClaimed {
|
|
5921
|
+
RULE_504_B_1_not_i_ii_iii = "RULE_504_B_1_not_i_ii_iii",
|
|
5922
|
+
RULE_504_B_1_i = "RULE_504_B_1_i",
|
|
5923
|
+
RULE_504_B_1_ii = "RULE_504_B_1_ii",
|
|
5924
|
+
RULE_504_B_1_iii = "RULE_504_B_1_iii",
|
|
5925
|
+
RULE_506_b = "RULE_506_b",
|
|
5926
|
+
RULE_506_c = "RULE_506_c",
|
|
5927
|
+
SECURITIES_ACT_SECTION_4_a_5 = "SECURITIES_ACT_SECTION_4_a_5",
|
|
5928
|
+
SECURITIES_ACT_SECTION_3_c_1 = "SECURITIES_ACT_SECTION_3_c_1",
|
|
5929
|
+
SECURITIES_ACT_SECTION_3_c_2 = "SECURITIES_ACT_SECTION_3_c_2",
|
|
5930
|
+
SECURITIES_ACT_SECTION_3_c_3 = "SECURITIES_ACT_SECTION_3_c_3",
|
|
5931
|
+
SECURITIES_ACT_SECTION_3_c_4 = "SECURITIES_ACT_SECTION_3_c_4",
|
|
5932
|
+
SECURITIES_ACT_SECTION_3_c_5 = "SECURITIES_ACT_SECTION_3_c_5",
|
|
5933
|
+
SECURITIES_ACT_SECTION_3_c_6 = "SECURITIES_ACT_SECTION_3_c_6",
|
|
5934
|
+
SECURITIES_ACT_SECTION_3_c_7 = "SECURITIES_ACT_SECTION_3_c_7",
|
|
5935
|
+
SECURITIES_ACT_SECTION_3_c_9 = "SECURITIES_ACT_SECTION_3_c_9",
|
|
5936
|
+
SECURITIES_ACT_SECTION_3_c_10 = "SECURITIES_ACT_SECTION_3_c_10",
|
|
5937
|
+
SECURITIES_ACT_SECTION_3_c_11 = "SECURITIES_ACT_SECTION_3_c_11",
|
|
5938
|
+
SECURITIES_ACT_SECTION_3_c_12 = "SECURITIES_ACT_SECTION_3_c_12",
|
|
5939
|
+
SECURITIES_ACT_SECTION_3_c_13 = "SECURITIES_ACT_SECTION_3_c_13",
|
|
5940
|
+
SECURITIES_ACT_SECTION_3_c_14 = "SECURITIES_ACT_SECTION_3_c_14",
|
|
5941
|
+
Reg_S = "Reg_S"
|
|
5942
|
+
}
|
|
5943
|
+
export declare enum BulkPreIPOCompanySPVMonarkStage {
|
|
5944
|
+
DRAFT = "DRAFT",
|
|
5945
|
+
WAITING_MONARK_REVIEW = "WAITING_MONARK_REVIEW",
|
|
5946
|
+
FUND_ADMIN_REVIEW = "FUND_ADMIN_REVIEW",
|
|
5947
|
+
FUND_ADMIN_APPROVED = "FUND_ADMIN_APPROVED",
|
|
5948
|
+
PRIMARY_FUNDRAISE = "PRIMARY_FUNDRAISE",
|
|
5949
|
+
PRE_CLOSE_REVIEW = "PRE_CLOSE_REVIEW",
|
|
5950
|
+
CLOSE_REQUESTED = "CLOSE_REQUESTED",
|
|
5951
|
+
CLOSE_IN_PROCESS = "CLOSE_IN_PROCESS",
|
|
5952
|
+
FUNDS_SENT_TO_TARGET = "FUNDS_SENT_TO_TARGET",
|
|
5953
|
+
CLOSED = "CLOSED",
|
|
5954
|
+
REGULATORY_HOLD_PERIOD = "REGULATORY_HOLD_PERIOD",
|
|
5955
|
+
ACTIVELY_TRADING = "ACTIVELY_TRADING",
|
|
5956
|
+
CLOSE_FAILED = "CLOSE_FAILED",
|
|
5957
|
+
HALTED = "HALTED",
|
|
5958
|
+
LIQUIDATION = "LIQUIDATION",
|
|
5959
|
+
DISSOLVED = "DISSOLVED"
|
|
5960
|
+
}
|
|
5190
5961
|
export declare enum CreateInvestorType {
|
|
5191
5962
|
IndividualInvestor = "IndividualInvestor",
|
|
5192
5963
|
EntityInvestor = "EntityInvestor"
|
|
@@ -5452,7 +6223,7 @@ export declare enum PreIPOCompanyResearchRelation {
|
|
|
5452
6223
|
SUBJECT = "SUBJECT",
|
|
5453
6224
|
CONNECTED = "CONNECTED"
|
|
5454
6225
|
}
|
|
5455
|
-
export declare enum
|
|
6226
|
+
export declare enum exemptionsClaimed2 {
|
|
5456
6227
|
RULE_504_B_1_not_i_ii_iii = "RULE_504_B_1_not_i_ii_iii",
|
|
5457
6228
|
RULE_504_B_1_i = "RULE_504_B_1_i",
|
|
5458
6229
|
RULE_504_B_1_ii = "RULE_504_B_1_ii",
|