@barchart/chart-lib 2.217.5 → 2.219.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -352,7 +352,10 @@ declare module "@barchart/chart-lib" {
352
352
  | "KSTSIG"
353
353
  | "STC"
354
354
  | "MCCLO"
355
- | "NHLAI";
355
+ | "NHLAI"
356
+ | "CMBCI"
357
+ | "CMBCIF"
358
+ | "CMBCIS";
356
359
 
357
360
  export type GeneralFieldId =
358
361
  | "DateTime"
@@ -508,7 +511,8 @@ declare module "@barchart/chart-lib" {
508
511
  | "KST"
509
512
  | "STC"
510
513
  | "MCCLO"
511
- | "NHLAI";
514
+ | "NHLAI"
515
+ | "CMBCI";
512
516
 
513
517
  export type PlotType =
514
518
  | "Symbol"
@@ -2297,8 +2301,10 @@ declare module "@barchart/chart-lib" {
2297
2301
  }>;
2298
2302
  }
2299
2303
 
2300
- function getTaxonomies(): Taxonomies;
2301
- function getStudies(): Study[];
2304
+ export function getTaxonomies(): Taxonomies;
2305
+ export function getStudies(): Study[];
2306
+ export function getStudy(studyId: string): StudyModel;
2307
+ export function doesStudyExist(studyId: string): boolean;
2302
2308
 
2303
2309
  type PlotModel =
2304
2310
  | SymbolPlotModel
@@ -2551,8 +2557,6 @@ declare module "@barchart/chart-lib" {
2551
2557
  MiniWidgetDataFeed,
2552
2558
  parseExpression,
2553
2559
  evaluateExpression,
2554
- getTaxonomies,
2555
- getStudies,
2556
2560
  Topics,
2557
2561
  PubSub,
2558
2562
  };