@monarkmarkets/api-client 1.1.104 → 1.1.106
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 +481 -6
- package/dist/Client.js +2717 -1559
- package/package.json +1 -1
package/dist/Client.d.ts
CHANGED
|
@@ -291,11 +291,100 @@ export declare class Client {
|
|
|
291
291
|
*/
|
|
292
292
|
complete(id: string): Promise<void>;
|
|
293
293
|
protected processComplete(response: Response): Promise<void>;
|
|
294
|
+
/**
|
|
295
|
+
* Retrieves a 409A valuation by ID for a specific financial institution.
|
|
296
|
+
* @param id The 409A valuation ID.
|
|
297
|
+
* @param financialInstitutionId The financial institution ID.
|
|
298
|
+
* @return Returns the Npm409AValuation with the specified Id.
|
|
299
|
+
*/
|
|
300
|
+
getNpm409AValuationById(id: string, financialInstitutionId: string): Promise<Npm409AValuation>;
|
|
301
|
+
protected processGetNpm409AValuationById(response: Response): Promise<Npm409AValuation>;
|
|
302
|
+
/**
|
|
303
|
+
* Retrieves all NPM 409A valuations for a specific financial institution.
|
|
304
|
+
* @param financialInstitutionId The financial institution ID.
|
|
305
|
+
* @param preIPOCompanyId (optional) Optional filter by PreIPO Company ID.
|
|
306
|
+
* @param npmTicker (optional) Optional filter by NPM ticker.
|
|
307
|
+
* @param companyName (optional) Optional filter by company name.
|
|
308
|
+
* @param observationDateFrom (optional) Optional filter by start date.
|
|
309
|
+
* @param observationDateTo (optional) Optional filter by end date.
|
|
310
|
+
* @param pageNumber (optional) Page number for pagination.
|
|
311
|
+
* @param pageSize (optional) Page size for pagination.
|
|
312
|
+
* @return Returns the list of Npm409AValuation.
|
|
313
|
+
*/
|
|
314
|
+
getAllNpm409AValuations(financialInstitutionId: string, preIPOCompanyId: string | undefined, npmTicker: string | undefined, companyName: string | undefined, observationDateFrom: Date | undefined, observationDateTo: Date | undefined, pageNumber: number | undefined, pageSize: number | undefined): Promise<Npm409AValuationApiResponse>;
|
|
315
|
+
protected processGetAllNpm409AValuations(response: Response): Promise<Npm409AValuationApiResponse>;
|
|
316
|
+
/**
|
|
317
|
+
* Gets an NPM Bid and Offer Level record by ID for a specific financial institution.
|
|
318
|
+
* @param id The NPM Bid and Offer Level ID.
|
|
319
|
+
* @param financialInstitutionId The financial institution ID.
|
|
320
|
+
* @return Returns the NpmBidAndOfferLevel with the specified Id.
|
|
321
|
+
*/
|
|
322
|
+
getNpmBidAndOfferLevelById(id: string, financialInstitutionId: string): Promise<NpmBidAndOfferLevel>;
|
|
323
|
+
protected processGetNpmBidAndOfferLevelById(response: Response): Promise<NpmBidAndOfferLevel>;
|
|
324
|
+
/**
|
|
325
|
+
* Gets all NPM Bid and Offer Level records for a financial institution.
|
|
326
|
+
* @param financialInstitutionId The financial institution ID.
|
|
327
|
+
* @param preIPOCompanyId (optional) Optional filter by PreIPO Company ID.
|
|
328
|
+
* @param npmTicker (optional) Optional filter by NPM Ticker.
|
|
329
|
+
* @param companyName (optional) Optional filter by company name.
|
|
330
|
+
* @param orderType (optional) Optional filter by order type (Bid or Offer).
|
|
331
|
+
* @param monthFrom (optional) Optional month from.
|
|
332
|
+
* @param monthTo (optional) Optional month to.
|
|
333
|
+
* @param pageNumber (optional) Pagination page number.
|
|
334
|
+
* @param pageSize (optional) Pagination page size.
|
|
335
|
+
* @return Returns the list of NpmBidAndOfferLevel.
|
|
336
|
+
*/
|
|
337
|
+
getAllNpmBidAndOfferLevels(financialInstitutionId: string, preIPOCompanyId: string | undefined, npmTicker: string | undefined, companyName: string | undefined, orderType: string | undefined, monthFrom: Date | undefined, monthTo: Date | undefined, pageNumber: number | undefined, pageSize: number | undefined): Promise<NpmBidAndOfferLevelApiResponse>;
|
|
338
|
+
protected processGetAllNpmBidAndOfferLevels(response: Response): Promise<NpmBidAndOfferLevelApiResponse>;
|
|
339
|
+
/**
|
|
340
|
+
* Gets an NPM Closed Trade Level record by ID for a specific financial institution.
|
|
341
|
+
* @param id The NPM Closed Trade Level ID.
|
|
342
|
+
* @param financialInstitutionId The financial institution ID.
|
|
343
|
+
* @return Returns the NpmClosedTradeLevel with the specified Id.
|
|
344
|
+
*/
|
|
345
|
+
getNpmClosedTradeLevelById(id: string, financialInstitutionId: string): Promise<NpmClosedTradeLevel>;
|
|
346
|
+
protected processGetNpmClosedTradeLevelById(response: Response): Promise<NpmClosedTradeLevel>;
|
|
347
|
+
/**
|
|
348
|
+
* Gets all NPM Closed Trade Level records for a financial institution.
|
|
349
|
+
* @param financialInstitutionId The financial institution ID.
|
|
350
|
+
* @param preIPOCompanyId (optional) Optional filter by PreIPO Company ID.
|
|
351
|
+
* @param npmTicker (optional) Optional filter by NPM Ticker.
|
|
352
|
+
* @param companyName (optional) Optional filter by company name.
|
|
353
|
+
* @param monthFrom (optional) Optional month from.
|
|
354
|
+
* @param monthTo (optional) Optional month to.
|
|
355
|
+
* @param pageNumber (optional) Pagination page number.
|
|
356
|
+
* @param pageSize (optional) Pagination page size.
|
|
357
|
+
* @return Returns the list of NpmClosedTradeLevel.
|
|
358
|
+
*/
|
|
359
|
+
getAllNpmClosedTradeLevels(financialInstitutionId: string, preIPOCompanyId: string | undefined, npmTicker: string | undefined, companyName: string | undefined, monthFrom: Date | undefined, monthTo: Date | undefined, pageNumber: number | undefined, pageSize: number | undefined): Promise<NpmClosedTradeLevelApiResponse>;
|
|
360
|
+
protected processGetAllNpmClosedTradeLevels(response: Response): Promise<NpmClosedTradeLevelApiResponse>;
|
|
361
|
+
/**
|
|
362
|
+
* Gets an NPM Funding Round record by ID for a specific financial institution.
|
|
363
|
+
* @param id The NPM Funding Round ID.
|
|
364
|
+
* @param financialInstitutionId The financial institution ID.
|
|
365
|
+
* @return Returns the NpmFundingRound with the specified Id.
|
|
366
|
+
*/
|
|
367
|
+
getNpmFundingRoundById(id: string, financialInstitutionId: string): Promise<NpmFundingRound>;
|
|
368
|
+
protected processGetNpmFundingRoundById(response: Response): Promise<NpmFundingRound>;
|
|
369
|
+
/**
|
|
370
|
+
* Gets all NPM Funding Round records for a financial institution.
|
|
371
|
+
* @param financialInstitutionId The financial institution ID.
|
|
372
|
+
* @param preIPOCompanyId (optional) Optional filter by PreIPO Company ID.
|
|
373
|
+
* @param npmTicker (optional) Optional filter by NPM Ticker.
|
|
374
|
+
* @param companyName (optional) Optional filter by company name.
|
|
375
|
+
* @param lastRoundName (optional) Optional filter by Last Round Name.
|
|
376
|
+
* @param lastRoundValuation (optional) Optional filter by Last Round Valuation.
|
|
377
|
+
* @param pageNumber (optional) Pagination page number.
|
|
378
|
+
* @param pageSize (optional) Pagination page size.
|
|
379
|
+
* @return Returns the list of NpmFundingRound.
|
|
380
|
+
*/
|
|
381
|
+
getAllNpmFundingRounds(financialInstitutionId: string, preIPOCompanyId: string | undefined, npmTicker: string | undefined, companyName: string | undefined, lastRoundName: string | undefined, lastRoundValuation: number | undefined, pageNumber: number | undefined, pageSize: number | undefined): Promise<NpmFundingRoundApiResponse>;
|
|
382
|
+
protected processGetAllNpmFundingRounds(response: Response): Promise<NpmFundingRoundApiResponse>;
|
|
294
383
|
/**
|
|
295
384
|
* Gets an NPM mutual fund mark by ID for a specific financial institution.
|
|
296
385
|
* @param id The NPM mutual fund mark ID.
|
|
297
386
|
* @param financialInstitutionId The financial institution ID.
|
|
298
|
-
* @return
|
|
387
|
+
* @return Returns the NpmMutualFundMark with the specified Id.
|
|
299
388
|
*/
|
|
300
389
|
getNpmMutualFundMarkById(id: string, financialInstitutionId: string): Promise<NpmMutualFundMark>;
|
|
301
390
|
protected processGetNpmMutualFundMarkById(response: Response): Promise<NpmMutualFundMark>;
|
|
@@ -309,15 +398,39 @@ export declare class Client {
|
|
|
309
398
|
* @param filingDateTo (optional) Optional filter by filing date to.
|
|
310
399
|
* @param pageNumber (optional) Page number for pagination.
|
|
311
400
|
* @param pageSize (optional) Page size for pagination.
|
|
312
|
-
* @return
|
|
401
|
+
* @return Returns the list of NpmMutualFundMark.
|
|
313
402
|
*/
|
|
314
403
|
getAllNpmMutualFundMarks(financialInstitutionId: string, preIPOCompanyId: string | undefined, npmTicker: string | undefined, companyName: string | undefined, filingDateFrom: Date | undefined, filingDateTo: Date | undefined, pageNumber: number | undefined, pageSize: number | undefined): Promise<NpmMutualFundMarkApiResponse>;
|
|
315
404
|
protected processGetAllNpmMutualFundMarks(response: Response): Promise<NpmMutualFundMarkApiResponse>;
|
|
405
|
+
/**
|
|
406
|
+
* Gets a NPM Tape D Basic record by ID for a financial institution.
|
|
407
|
+
* @param id The NPM Tape D Basic ID.
|
|
408
|
+
* @param financialInstitutionId The financial institution ID.
|
|
409
|
+
* @return Returns the NpmTapeDBasic with the specified Id.
|
|
410
|
+
*/
|
|
411
|
+
getNpmTapeDBasicById(id: string, financialInstitutionId: string): Promise<NpmTapeDBasic>;
|
|
412
|
+
protected processGetNpmTapeDBasicById(response: Response): Promise<NpmTapeDBasic>;
|
|
413
|
+
/**
|
|
414
|
+
* Gets all NPM Tape D Basic records for a specific financial institution.
|
|
415
|
+
* @param financialInstitutionId The financial institution ID.
|
|
416
|
+
* @param preIPOCompanyId (optional) Optional filter by PreIPO Company ID.
|
|
417
|
+
* @param npmTicker (optional) Optional filter by NPM ticker.
|
|
418
|
+
* @param companyName (optional) Optional filter by company name.
|
|
419
|
+
* @param impliedValuationHighEstimateMin (optional) Optional minimum filter on high valuation.
|
|
420
|
+
* @param impliedValuationLowEstimateMax (optional) Optional maximum filter on low valuation.
|
|
421
|
+
* @param dateFrom (optional) Optional start date filter.
|
|
422
|
+
* @param dateTo (optional) Optional end date filter.
|
|
423
|
+
* @param pageNumber (optional) Pagination page number.
|
|
424
|
+
* @param pageSize (optional) Pagination page size.
|
|
425
|
+
* @return Returns the list of NpmTapeDBasic.
|
|
426
|
+
*/
|
|
427
|
+
getAllNpmTapeDBasic(financialInstitutionId: string, preIPOCompanyId: string | undefined, npmTicker: string | undefined, companyName: string | undefined, impliedValuationHighEstimateMin: number | undefined, impliedValuationLowEstimateMax: number | undefined, dateFrom: Date | undefined, dateTo: Date | undefined, pageNumber: number | undefined, pageSize: number | undefined): Promise<NpmTapeDBasicApiResponse>;
|
|
428
|
+
protected processGetAllNpmTapeDBasic(response: Response): Promise<NpmTapeDBasicApiResponse>;
|
|
316
429
|
/**
|
|
317
430
|
* Gets an NPM Tape D Prices Full History record by ID for a specific financial institution.
|
|
318
431
|
* @param id The NPM Tape D Prices Full History record ID.
|
|
319
432
|
* @param financialInstitutionId The financial institution ID.
|
|
320
|
-
* @return
|
|
433
|
+
* @return Returns the NpmTapeDPricesFullHistory with the specified Id.
|
|
321
434
|
*/
|
|
322
435
|
getNpmTapeDPricesFullHistoryById(id: string, financialInstitutionId: string): Promise<NpmTapeDPricesFullHistory>;
|
|
323
436
|
protected processGetNpmTapeDPricesFullHistoryById(response: Response): Promise<NpmTapeDPricesFullHistory>;
|
|
@@ -332,7 +445,7 @@ export declare class Client {
|
|
|
332
445
|
* @param dateOfPricingTo (optional) Optional filter by date of pricing to.
|
|
333
446
|
* @param pageNumber (optional) Page number for pagination.
|
|
334
447
|
* @param pageSize (optional) Page size for pagination.
|
|
335
|
-
* @return
|
|
448
|
+
* @return Returns the list of NpmTapeDPricesFullHistory.
|
|
336
449
|
*/
|
|
337
450
|
getAllNpmTapeDPricesFullHistory(financialInstitutionId: string, preIPOCompanyId: string | undefined, npmTicker: string | undefined, companyName: string | undefined, lastRoundValuation: number | undefined, dateOfPricingFrom: Date | undefined, dateOfPricingTo: Date | undefined, pageNumber: number | undefined, pageSize: number | undefined): Promise<NpmTapeDPricesFullHistoryApiResponse>;
|
|
338
451
|
protected processGetAllNpmTapeDPricesFullHistory(response: Response): Promise<NpmTapeDPricesFullHistoryApiResponse>;
|
|
@@ -880,7 +993,7 @@ export declare class CreateRegisteredFundSubscription implements ICreateRegister
|
|
|
880
993
|
/** The investor making the subscription. */
|
|
881
994
|
investorId: string;
|
|
882
995
|
/** Amount being invested. */
|
|
883
|
-
subscriptionAmount
|
|
996
|
+
subscriptionAmount?: number;
|
|
884
997
|
constructor(data?: ICreateRegisteredFundSubscription);
|
|
885
998
|
init(_data?: any): void;
|
|
886
999
|
static fromJS(data: any): CreateRegisteredFundSubscription;
|
|
@@ -893,7 +1006,7 @@ export interface ICreateRegisteredFundSubscription {
|
|
|
893
1006
|
/** The investor making the subscription. */
|
|
894
1007
|
investorId: string;
|
|
895
1008
|
/** Amount being invested. */
|
|
896
|
-
subscriptionAmount
|
|
1009
|
+
subscriptionAmount?: number;
|
|
897
1010
|
}
|
|
898
1011
|
export declare class CreateWebhook implements ICreateWebhook {
|
|
899
1012
|
/** The delivery url for the webhook */
|
|
@@ -2235,6 +2348,274 @@ export interface INAVReport {
|
|
|
2235
2348
|
/** Net Asset Value as of the reported date */
|
|
2236
2349
|
nav: number;
|
|
2237
2350
|
}
|
|
2351
|
+
/** Represents a 409A valuation (NPM/FMV). */
|
|
2352
|
+
export declare class Npm409AValuation implements INpm409AValuation {
|
|
2353
|
+
/** Unique identification number for the 409A valuation. */
|
|
2354
|
+
id: string;
|
|
2355
|
+
/** The unique ID of the PreIPOCompany associated with this 409A valuation. */
|
|
2356
|
+
preIPOCompanyId: string;
|
|
2357
|
+
/** Unique record ID. */
|
|
2358
|
+
recordId: number;
|
|
2359
|
+
/** Name of Company. */
|
|
2360
|
+
companyName: string | undefined;
|
|
2361
|
+
/** Unique Company ID (NPM Ticker). */
|
|
2362
|
+
npmTicker: string | undefined;
|
|
2363
|
+
/** Observation Date of the 409A valuation (YYYY-MM-DD). */
|
|
2364
|
+
observationDate: Date;
|
|
2365
|
+
/** Common Stock Price Per Share. */
|
|
2366
|
+
pricePerShare?: number | undefined;
|
|
2367
|
+
constructor(data?: INpm409AValuation);
|
|
2368
|
+
init(_data?: any): void;
|
|
2369
|
+
static fromJS(data: any): Npm409AValuation;
|
|
2370
|
+
toJSON(data?: any): any;
|
|
2371
|
+
}
|
|
2372
|
+
/** Represents a 409A valuation (NPM/FMV). */
|
|
2373
|
+
export interface INpm409AValuation {
|
|
2374
|
+
/** Unique identification number for the 409A valuation. */
|
|
2375
|
+
id: string;
|
|
2376
|
+
/** The unique ID of the PreIPOCompany associated with this 409A valuation. */
|
|
2377
|
+
preIPOCompanyId: string;
|
|
2378
|
+
/** Unique record ID. */
|
|
2379
|
+
recordId: number;
|
|
2380
|
+
/** Name of Company. */
|
|
2381
|
+
companyName: string | undefined;
|
|
2382
|
+
/** Unique Company ID (NPM Ticker). */
|
|
2383
|
+
npmTicker: string | undefined;
|
|
2384
|
+
/** Observation Date of the 409A valuation (YYYY-MM-DD). */
|
|
2385
|
+
observationDate: Date;
|
|
2386
|
+
/** Common Stock Price Per Share. */
|
|
2387
|
+
pricePerShare?: number | undefined;
|
|
2388
|
+
}
|
|
2389
|
+
export declare class Npm409AValuationApiResponse implements INpm409AValuationApiResponse {
|
|
2390
|
+
items?: Npm409AValuation[] | undefined;
|
|
2391
|
+
pagination?: Pagination | undefined;
|
|
2392
|
+
constructor(data?: INpm409AValuationApiResponse);
|
|
2393
|
+
init(_data?: any): void;
|
|
2394
|
+
static fromJS(data: any): Npm409AValuationApiResponse;
|
|
2395
|
+
toJSON(data?: any): any;
|
|
2396
|
+
}
|
|
2397
|
+
export interface INpm409AValuationApiResponse {
|
|
2398
|
+
items?: Npm409AValuation[] | undefined;
|
|
2399
|
+
pagination?: Pagination | undefined;
|
|
2400
|
+
}
|
|
2401
|
+
/** Represents an NPM Bid and Offer Level record (NPM/ORDR). */
|
|
2402
|
+
export declare class NpmBidAndOfferLevel implements INpmBidAndOfferLevel {
|
|
2403
|
+
/** Unique identifier for the Bid and Offer Level record. */
|
|
2404
|
+
id: string;
|
|
2405
|
+
/** The unique ID of the PreIPOCompany associated with this record. */
|
|
2406
|
+
preIPOCompanyId: string;
|
|
2407
|
+
/** Unique Company ID (NPM Ticker). */
|
|
2408
|
+
npmTicker: string | undefined;
|
|
2409
|
+
/** Name of the Company. */
|
|
2410
|
+
companyName: string | undefined;
|
|
2411
|
+
/** Date of Tape D Price (month granularity). */
|
|
2412
|
+
month: Date;
|
|
2413
|
+
/** Type of Order (Bid or Offer). */
|
|
2414
|
+
orderType: string | undefined;
|
|
2415
|
+
/** Notional Value Range of Total Orders (Bid or Offer). */
|
|
2416
|
+
volumeRange?: string | undefined;
|
|
2417
|
+
/** Average Price Per Share of Total Orders. */
|
|
2418
|
+
pricePerShareAvg?: number | undefined;
|
|
2419
|
+
/** Implied Valuation of Average Orders. */
|
|
2420
|
+
impliedValuationAvg?: number | undefined;
|
|
2421
|
+
/** Premium or Discount of Average PPS vs Last Round. */
|
|
2422
|
+
discountPremiumAvg?: number | undefined;
|
|
2423
|
+
/** Best Price Per Share. */
|
|
2424
|
+
pricePerShareBest?: number | undefined;
|
|
2425
|
+
/** Implied Valuation of Best Order. */
|
|
2426
|
+
impliedValuationBest?: number | undefined;
|
|
2427
|
+
/** Premium or Discount of Best PPS vs Last Round. */
|
|
2428
|
+
discountPremiumBest?: number | undefined;
|
|
2429
|
+
/** Last Round Price Per Share. */
|
|
2430
|
+
lastRoundPricePerShare?: number | undefined;
|
|
2431
|
+
/** Valuation of Company at Last Round. */
|
|
2432
|
+
lastRoundValuation?: number | undefined;
|
|
2433
|
+
/** Date of Last Round (YYYY-MM-DD). */
|
|
2434
|
+
lastRoundDateOfValuation?: Date | undefined;
|
|
2435
|
+
/** Name of Last Primary Round. */
|
|
2436
|
+
lastRoundName?: string | undefined;
|
|
2437
|
+
constructor(data?: INpmBidAndOfferLevel);
|
|
2438
|
+
init(_data?: any): void;
|
|
2439
|
+
static fromJS(data: any): NpmBidAndOfferLevel;
|
|
2440
|
+
toJSON(data?: any): any;
|
|
2441
|
+
}
|
|
2442
|
+
/** Represents an NPM Bid and Offer Level record (NPM/ORDR). */
|
|
2443
|
+
export interface INpmBidAndOfferLevel {
|
|
2444
|
+
/** Unique identifier for the Bid and Offer Level record. */
|
|
2445
|
+
id: string;
|
|
2446
|
+
/** The unique ID of the PreIPOCompany associated with this record. */
|
|
2447
|
+
preIPOCompanyId: string;
|
|
2448
|
+
/** Unique Company ID (NPM Ticker). */
|
|
2449
|
+
npmTicker: string | undefined;
|
|
2450
|
+
/** Name of the Company. */
|
|
2451
|
+
companyName: string | undefined;
|
|
2452
|
+
/** Date of Tape D Price (month granularity). */
|
|
2453
|
+
month: Date;
|
|
2454
|
+
/** Type of Order (Bid or Offer). */
|
|
2455
|
+
orderType: string | undefined;
|
|
2456
|
+
/** Notional Value Range of Total Orders (Bid or Offer). */
|
|
2457
|
+
volumeRange?: string | undefined;
|
|
2458
|
+
/** Average Price Per Share of Total Orders. */
|
|
2459
|
+
pricePerShareAvg?: number | undefined;
|
|
2460
|
+
/** Implied Valuation of Average Orders. */
|
|
2461
|
+
impliedValuationAvg?: number | undefined;
|
|
2462
|
+
/** Premium or Discount of Average PPS vs Last Round. */
|
|
2463
|
+
discountPremiumAvg?: number | undefined;
|
|
2464
|
+
/** Best Price Per Share. */
|
|
2465
|
+
pricePerShareBest?: number | undefined;
|
|
2466
|
+
/** Implied Valuation of Best Order. */
|
|
2467
|
+
impliedValuationBest?: number | undefined;
|
|
2468
|
+
/** Premium or Discount of Best PPS vs Last Round. */
|
|
2469
|
+
discountPremiumBest?: number | undefined;
|
|
2470
|
+
/** Last Round Price Per Share. */
|
|
2471
|
+
lastRoundPricePerShare?: number | undefined;
|
|
2472
|
+
/** Valuation of Company at Last Round. */
|
|
2473
|
+
lastRoundValuation?: number | undefined;
|
|
2474
|
+
/** Date of Last Round (YYYY-MM-DD). */
|
|
2475
|
+
lastRoundDateOfValuation?: Date | undefined;
|
|
2476
|
+
/** Name of Last Primary Round. */
|
|
2477
|
+
lastRoundName?: string | undefined;
|
|
2478
|
+
}
|
|
2479
|
+
export declare class NpmBidAndOfferLevelApiResponse implements INpmBidAndOfferLevelApiResponse {
|
|
2480
|
+
items?: NpmBidAndOfferLevel[] | undefined;
|
|
2481
|
+
pagination?: Pagination | undefined;
|
|
2482
|
+
constructor(data?: INpmBidAndOfferLevelApiResponse);
|
|
2483
|
+
init(_data?: any): void;
|
|
2484
|
+
static fromJS(data: any): NpmBidAndOfferLevelApiResponse;
|
|
2485
|
+
toJSON(data?: any): any;
|
|
2486
|
+
}
|
|
2487
|
+
export interface INpmBidAndOfferLevelApiResponse {
|
|
2488
|
+
items?: NpmBidAndOfferLevel[] | undefined;
|
|
2489
|
+
pagination?: Pagination | undefined;
|
|
2490
|
+
}
|
|
2491
|
+
/** Represents a Closed Trade Level (NPM/TRAD). */
|
|
2492
|
+
export declare class NpmClosedTradeLevel implements INpmClosedTradeLevel {
|
|
2493
|
+
/** Unique identifier for the closed trade level record. */
|
|
2494
|
+
id: string;
|
|
2495
|
+
/** The unique ID of the PreIPOCompany associated with the closed trade level. */
|
|
2496
|
+
preIPOCompanyId: string;
|
|
2497
|
+
/** Unique Company ID. */
|
|
2498
|
+
npmTicker: string | undefined;
|
|
2499
|
+
/** Name of Company. */
|
|
2500
|
+
companyName: string | undefined;
|
|
2501
|
+
/** Date of Tape D Price (YYYY-MM-DD). */
|
|
2502
|
+
month: Date;
|
|
2503
|
+
/** Notional Value Range of Total Closed Trades. */
|
|
2504
|
+
volumeRange?: string | undefined;
|
|
2505
|
+
/** Average Price Per Share of Total Closed Trades. */
|
|
2506
|
+
pricePerShareAvg?: number | undefined;
|
|
2507
|
+
/** Implied Valuation of Closed Trade Level. */
|
|
2508
|
+
impliedValuationAvg?: number | undefined;
|
|
2509
|
+
/** Premium or Discount of Average PPS vs Last Round. */
|
|
2510
|
+
discountPremiumAvg?: number | undefined;
|
|
2511
|
+
/** Last Round Price Per Share. */
|
|
2512
|
+
lastRoundPricePerShare?: number | undefined;
|
|
2513
|
+
/** Valuation of Company at Last Round. */
|
|
2514
|
+
lastRoundValuation?: number | undefined;
|
|
2515
|
+
/** Date of Last Round (YYYY-MM-DD). */
|
|
2516
|
+
lastRoundDateOfValuation?: Date | undefined;
|
|
2517
|
+
/** Name of Last Primary Round. */
|
|
2518
|
+
lastRoundName?: string | undefined;
|
|
2519
|
+
constructor(data?: INpmClosedTradeLevel);
|
|
2520
|
+
init(_data?: any): void;
|
|
2521
|
+
static fromJS(data: any): NpmClosedTradeLevel;
|
|
2522
|
+
toJSON(data?: any): any;
|
|
2523
|
+
}
|
|
2524
|
+
/** Represents a Closed Trade Level (NPM/TRAD). */
|
|
2525
|
+
export interface INpmClosedTradeLevel {
|
|
2526
|
+
/** Unique identifier for the closed trade level record. */
|
|
2527
|
+
id: string;
|
|
2528
|
+
/** The unique ID of the PreIPOCompany associated with the closed trade level. */
|
|
2529
|
+
preIPOCompanyId: string;
|
|
2530
|
+
/** Unique Company ID. */
|
|
2531
|
+
npmTicker: string | undefined;
|
|
2532
|
+
/** Name of Company. */
|
|
2533
|
+
companyName: string | undefined;
|
|
2534
|
+
/** Date of Tape D Price (YYYY-MM-DD). */
|
|
2535
|
+
month: Date;
|
|
2536
|
+
/** Notional Value Range of Total Closed Trades. */
|
|
2537
|
+
volumeRange?: string | undefined;
|
|
2538
|
+
/** Average Price Per Share of Total Closed Trades. */
|
|
2539
|
+
pricePerShareAvg?: number | undefined;
|
|
2540
|
+
/** Implied Valuation of Closed Trade Level. */
|
|
2541
|
+
impliedValuationAvg?: number | undefined;
|
|
2542
|
+
/** Premium or Discount of Average PPS vs Last Round. */
|
|
2543
|
+
discountPremiumAvg?: number | undefined;
|
|
2544
|
+
/** Last Round Price Per Share. */
|
|
2545
|
+
lastRoundPricePerShare?: number | undefined;
|
|
2546
|
+
/** Valuation of Company at Last Round. */
|
|
2547
|
+
lastRoundValuation?: number | undefined;
|
|
2548
|
+
/** Date of Last Round (YYYY-MM-DD). */
|
|
2549
|
+
lastRoundDateOfValuation?: Date | undefined;
|
|
2550
|
+
/** Name of Last Primary Round. */
|
|
2551
|
+
lastRoundName?: string | undefined;
|
|
2552
|
+
}
|
|
2553
|
+
export declare class NpmClosedTradeLevelApiResponse implements INpmClosedTradeLevelApiResponse {
|
|
2554
|
+
items?: NpmClosedTradeLevel[] | undefined;
|
|
2555
|
+
pagination?: Pagination | undefined;
|
|
2556
|
+
constructor(data?: INpmClosedTradeLevelApiResponse);
|
|
2557
|
+
init(_data?: any): void;
|
|
2558
|
+
static fromJS(data: any): NpmClosedTradeLevelApiResponse;
|
|
2559
|
+
toJSON(data?: any): any;
|
|
2560
|
+
}
|
|
2561
|
+
export interface INpmClosedTradeLevelApiResponse {
|
|
2562
|
+
items?: NpmClosedTradeLevel[] | undefined;
|
|
2563
|
+
pagination?: Pagination | undefined;
|
|
2564
|
+
}
|
|
2565
|
+
/** Represents an NPM Last Round (Funding Round) record (NPM/LRND). */
|
|
2566
|
+
export declare class NpmFundingRound implements INpmFundingRound {
|
|
2567
|
+
/** Unique identifier for the NPM Last Round record. */
|
|
2568
|
+
id: string;
|
|
2569
|
+
/** The unique ID of the PreIPOCompany associated with the Last Round record. */
|
|
2570
|
+
preIPOCompanyId: string;
|
|
2571
|
+
/** Name of the Company. */
|
|
2572
|
+
companyName: string | undefined;
|
|
2573
|
+
/** Unique Company ID (NPM Ticker). */
|
|
2574
|
+
npmTicker: string | undefined;
|
|
2575
|
+
/** Date of the last round valuation (YYYY-MM-DD). */
|
|
2576
|
+
lastRoundDateOfValuation: Date;
|
|
2577
|
+
/** Price Per Share at the last round. */
|
|
2578
|
+
pricePerShare?: number | undefined;
|
|
2579
|
+
/** Post-Money Valuation at the last round. */
|
|
2580
|
+
lastRoundValuation?: number | undefined;
|
|
2581
|
+
/** Name of the financing round. */
|
|
2582
|
+
lastRoundName?: string | undefined;
|
|
2583
|
+
constructor(data?: INpmFundingRound);
|
|
2584
|
+
init(_data?: any): void;
|
|
2585
|
+
static fromJS(data: any): NpmFundingRound;
|
|
2586
|
+
toJSON(data?: any): any;
|
|
2587
|
+
}
|
|
2588
|
+
/** Represents an NPM Last Round (Funding Round) record (NPM/LRND). */
|
|
2589
|
+
export interface INpmFundingRound {
|
|
2590
|
+
/** Unique identifier for the NPM Last Round record. */
|
|
2591
|
+
id: string;
|
|
2592
|
+
/** The unique ID of the PreIPOCompany associated with the Last Round record. */
|
|
2593
|
+
preIPOCompanyId: string;
|
|
2594
|
+
/** Name of the Company. */
|
|
2595
|
+
companyName: string | undefined;
|
|
2596
|
+
/** Unique Company ID (NPM Ticker). */
|
|
2597
|
+
npmTicker: string | undefined;
|
|
2598
|
+
/** Date of the last round valuation (YYYY-MM-DD). */
|
|
2599
|
+
lastRoundDateOfValuation: Date;
|
|
2600
|
+
/** Price Per Share at the last round. */
|
|
2601
|
+
pricePerShare?: number | undefined;
|
|
2602
|
+
/** Post-Money Valuation at the last round. */
|
|
2603
|
+
lastRoundValuation?: number | undefined;
|
|
2604
|
+
/** Name of the financing round. */
|
|
2605
|
+
lastRoundName?: string | undefined;
|
|
2606
|
+
}
|
|
2607
|
+
export declare class NpmFundingRoundApiResponse implements INpmFundingRoundApiResponse {
|
|
2608
|
+
items?: NpmFundingRound[] | undefined;
|
|
2609
|
+
pagination?: Pagination | undefined;
|
|
2610
|
+
constructor(data?: INpmFundingRoundApiResponse);
|
|
2611
|
+
init(_data?: any): void;
|
|
2612
|
+
static fromJS(data: any): NpmFundingRoundApiResponse;
|
|
2613
|
+
toJSON(data?: any): any;
|
|
2614
|
+
}
|
|
2615
|
+
export interface INpmFundingRoundApiResponse {
|
|
2616
|
+
items?: NpmFundingRound[] | undefined;
|
|
2617
|
+
pagination?: Pagination | undefined;
|
|
2618
|
+
}
|
|
2238
2619
|
/** Represents an NPM mutual fund mark (NPM/MFM). */
|
|
2239
2620
|
export declare class NpmMutualFundMark implements INpmMutualFundMark {
|
|
2240
2621
|
/** Unique identification number for NPM mutual fund mark. */
|
|
@@ -2325,6 +2706,100 @@ export interface INpmMutualFundMarkApiResponse {
|
|
|
2325
2706
|
items?: NpmMutualFundMark[] | undefined;
|
|
2326
2707
|
pagination?: Pagination | undefined;
|
|
2327
2708
|
}
|
|
2709
|
+
/** Represents a NPM Tape D Basic record (NPM/TAPDB). */
|
|
2710
|
+
export declare class NpmTapeDBasic implements INpmTapeDBasic {
|
|
2711
|
+
/** Unique identifier for the NPM Tape D Basic record. */
|
|
2712
|
+
id: string;
|
|
2713
|
+
/** The unique ID of the PreIPOCompany associated with this record. */
|
|
2714
|
+
preIPOCompanyId: string;
|
|
2715
|
+
/** Name of Company. */
|
|
2716
|
+
companyName: string | undefined;
|
|
2717
|
+
/** Unique Company ID. */
|
|
2718
|
+
npmTicker: string | undefined;
|
|
2719
|
+
/** Date of Tape D Price Estimate (YYYY-MM-DD). */
|
|
2720
|
+
dateOfPricing: Date;
|
|
2721
|
+
/** Tape D Price Estimate. */
|
|
2722
|
+
pricePerShareEstimate?: number | undefined;
|
|
2723
|
+
/** Tape D Implied Valuation. */
|
|
2724
|
+
impliedValuationEstimate?: number | undefined;
|
|
2725
|
+
/** Premium or Discount of Tape D Price Estimate. */
|
|
2726
|
+
discountPremiumEstimate?: number | undefined;
|
|
2727
|
+
/** Low Estimate of Tape D Price (95% Confidence Interval). */
|
|
2728
|
+
pricePerShareLow?: number | undefined;
|
|
2729
|
+
/** Implied Valuation of Low Estimate. */
|
|
2730
|
+
impliedValuationLow?: number | undefined;
|
|
2731
|
+
/** Premium or Discount of Low Estimate vs Last Round. */
|
|
2732
|
+
discountPremiumLow?: number | undefined;
|
|
2733
|
+
/** High Estimate of Tape D Price (95% Confidence Interval). */
|
|
2734
|
+
pricePerShareHigh?: number | undefined;
|
|
2735
|
+
/** Implied Valuation of High Estimate. */
|
|
2736
|
+
impliedValuationHigh?: number | undefined;
|
|
2737
|
+
/** Premium or Discount of High Estimate vs Last Round. */
|
|
2738
|
+
discountPremiumHigh?: number | undefined;
|
|
2739
|
+
/** Last Round Price Per Share. */
|
|
2740
|
+
lastRoundPricePerShare?: number | undefined;
|
|
2741
|
+
/** Valuation of Company at Last Round. */
|
|
2742
|
+
lastRoundValuation?: number | undefined;
|
|
2743
|
+
/** Date of Last Round Valuation (YYYY-MM-DD). */
|
|
2744
|
+
lastRoundDateOfValuation?: Date | undefined;
|
|
2745
|
+
/** Name of Last Round. */
|
|
2746
|
+
lastRoundName?: string | undefined;
|
|
2747
|
+
constructor(data?: INpmTapeDBasic);
|
|
2748
|
+
init(_data?: any): void;
|
|
2749
|
+
static fromJS(data: any): NpmTapeDBasic;
|
|
2750
|
+
toJSON(data?: any): any;
|
|
2751
|
+
}
|
|
2752
|
+
/** Represents a NPM Tape D Basic record (NPM/TAPDB). */
|
|
2753
|
+
export interface INpmTapeDBasic {
|
|
2754
|
+
/** Unique identifier for the NPM Tape D Basic record. */
|
|
2755
|
+
id: string;
|
|
2756
|
+
/** The unique ID of the PreIPOCompany associated with this record. */
|
|
2757
|
+
preIPOCompanyId: string;
|
|
2758
|
+
/** Name of Company. */
|
|
2759
|
+
companyName: string | undefined;
|
|
2760
|
+
/** Unique Company ID. */
|
|
2761
|
+
npmTicker: string | undefined;
|
|
2762
|
+
/** Date of Tape D Price Estimate (YYYY-MM-DD). */
|
|
2763
|
+
dateOfPricing: Date;
|
|
2764
|
+
/** Tape D Price Estimate. */
|
|
2765
|
+
pricePerShareEstimate?: number | undefined;
|
|
2766
|
+
/** Tape D Implied Valuation. */
|
|
2767
|
+
impliedValuationEstimate?: number | undefined;
|
|
2768
|
+
/** Premium or Discount of Tape D Price Estimate. */
|
|
2769
|
+
discountPremiumEstimate?: number | undefined;
|
|
2770
|
+
/** Low Estimate of Tape D Price (95% Confidence Interval). */
|
|
2771
|
+
pricePerShareLow?: number | undefined;
|
|
2772
|
+
/** Implied Valuation of Low Estimate. */
|
|
2773
|
+
impliedValuationLow?: number | undefined;
|
|
2774
|
+
/** Premium or Discount of Low Estimate vs Last Round. */
|
|
2775
|
+
discountPremiumLow?: number | undefined;
|
|
2776
|
+
/** High Estimate of Tape D Price (95% Confidence Interval). */
|
|
2777
|
+
pricePerShareHigh?: number | undefined;
|
|
2778
|
+
/** Implied Valuation of High Estimate. */
|
|
2779
|
+
impliedValuationHigh?: number | undefined;
|
|
2780
|
+
/** Premium or Discount of High Estimate vs Last Round. */
|
|
2781
|
+
discountPremiumHigh?: number | undefined;
|
|
2782
|
+
/** Last Round Price Per Share. */
|
|
2783
|
+
lastRoundPricePerShare?: number | undefined;
|
|
2784
|
+
/** Valuation of Company at Last Round. */
|
|
2785
|
+
lastRoundValuation?: number | undefined;
|
|
2786
|
+
/** Date of Last Round Valuation (YYYY-MM-DD). */
|
|
2787
|
+
lastRoundDateOfValuation?: Date | undefined;
|
|
2788
|
+
/** Name of Last Round. */
|
|
2789
|
+
lastRoundName?: string | undefined;
|
|
2790
|
+
}
|
|
2791
|
+
export declare class NpmTapeDBasicApiResponse implements INpmTapeDBasicApiResponse {
|
|
2792
|
+
items?: NpmTapeDBasic[] | undefined;
|
|
2793
|
+
pagination?: Pagination | undefined;
|
|
2794
|
+
constructor(data?: INpmTapeDBasicApiResponse);
|
|
2795
|
+
init(_data?: any): void;
|
|
2796
|
+
static fromJS(data: any): NpmTapeDBasicApiResponse;
|
|
2797
|
+
toJSON(data?: any): any;
|
|
2798
|
+
}
|
|
2799
|
+
export interface INpmTapeDBasicApiResponse {
|
|
2800
|
+
items?: NpmTapeDBasic[] | undefined;
|
|
2801
|
+
pagination?: Pagination | undefined;
|
|
2802
|
+
}
|
|
2328
2803
|
/** Represents an NPM Tape D Prices Full History record (NPM/TAPED). Contains historical Tape D price estimates with confidence intervals and comparisons to last funding rounds. Tape D prices provide algorithmic valuation estimates based on secondary market trading data and comparable company analysis. */
|
|
2329
2804
|
export declare class NpmTapeDPricesFullHistory implements INpmTapeDPricesFullHistory {
|
|
2330
2805
|
/** Unique identification number for NPM Tape D prices full history record. */
|