@guihz/trading-vue-editor-tes 0.0.170 → 0.0.172

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.
@@ -14,8 +14,11 @@ interface IRequestArgs {
14
14
  export default class Request {
15
15
  private _variables;
16
16
  private _scriptId;
17
+ private _cacheData;
17
18
  constructor(variables: BuiltInVariables, id: string);
18
19
  security(args: IRequestArgs, posStr: string): any;
20
+ private _parseExprCode;
21
+ private _getRequestData;
19
22
  private _getDependCodes;
20
23
  private _runScripts;
21
24
  }
@@ -95,6 +95,7 @@ export declare const WARNING_TIPS: {
95
95
  strategyCalcTickWarn: string;
96
96
  conditionWarning: string;
97
97
  lineWidthWarning: string;
98
+ boolVarNumWarning: string;
98
99
  };
99
100
  export declare const QUALIFIERS: VType[];
100
101
  export declare const BASE_TYPE: VType[];
@@ -34,9 +34,11 @@ export declare function parseLibrary(val: string, title: string): Promise<{
34
34
  export declare function scriptsRun(strJs: string, data: IKeyObjectValue, isNew?: boolean): Promise<{
35
35
  status: number;
36
36
  errors: any;
37
+ requestList?: undefined;
37
38
  options?: undefined;
38
39
  } | {
39
40
  status: number;
41
+ requestList: any[];
40
42
  errors: any;
41
43
  options: any;
42
44
  }>;
@@ -2,9 +2,11 @@ import { IKeyObjectValue } from '../type';
2
2
  export declare function runScript(strJs: string, options: IKeyObjectValue, isNew: boolean): {
3
3
  status: number;
4
4
  errors: any;
5
+ requestList?: undefined;
5
6
  options?: undefined;
6
7
  } | {
7
8
  status: number;
9
+ requestList: any[];
8
10
  errors: any;
9
11
  options: any;
10
12
  };