@barchart/chart-lib 2.332.1 → 2.334.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.
@@ -1199,18 +1199,6 @@ declare module "@barchart/chart-lib" {
1199
1199
  ModelTransformRequired,
1200
1200
  }
1201
1201
 
1202
- export type Operator = "+" | "-" | "*" | "/" | "^" | "sym" | "num" | "grp";
1203
-
1204
- export type ExprNodeOrVal = ExprNode | NodeValue;
1205
-
1206
- export type ExprNode = {
1207
- op: Operator;
1208
- left: ExprNodeOrVal;
1209
- right: ExprNodeOrVal;
1210
- };
1211
-
1212
- type NodeValue = string | number | null;
1213
-
1214
1202
  export type ExprPolicy = {
1215
1203
  mapper: (series: TimeSeries) => string;
1216
1204
  loadMoreData: boolean;
@@ -2396,10 +2384,12 @@ declare module "@barchart/chart-lib" {
2396
2384
  connection?: any;
2397
2385
  }
2398
2386
 
2387
+ export function adaptOpenFeedClient(client: any): any;
2388
+
2399
2389
  class OpenFeed extends BaseDataFeed {
2400
2390
  multiplexer: any;
2401
2391
  listener?: any;
2402
- client?: any;
2392
+ adapter?: any;
2403
2393
  }
2404
2394
 
2405
2395
  class SnapshotDataFeed extends BaseDataFeed {}