sqlparser-devexpress 2.2.2 → 2.2.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sqlparser-devexpress",
3
- "version": "2.2.2",
3
+ "version": "2.2.4",
4
4
  "main": "src/index.js",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -12,8 +12,8 @@ export interface ParsedResult {
12
12
 
13
13
  export interface ConvertToDevExpressFormatParams {
14
14
  ast: any; // Define a more specific type if possible
15
- variables: string[];
16
15
  resultObject: StateDataObject;
16
+ enableShortCircuit?: boolean;
17
17
  }
18
18
 
19
19
  export function sanitizeQuery(filterString: string): SanitizedQuery;
@@ -30,6 +30,6 @@ export function convertSQLToAst(
30
30
 
31
31
  export function convertAstToDevextreme(
32
32
  ast: any, // Define a more specific type if possible
33
- variables: string[],
34
- state: StateDataObject
33
+ state: StateDataObject,
34
+ enableShortCircuit?: boolean,
35
35
  ): any;