@elastic/esql 4.3.0 → 4.5.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.
Files changed (35) hide show
  1. package/README.md +6 -0
  2. package/lib/ast/builder/builder.d.ts +7 -2
  3. package/lib/ast/builder/builder.d.ts.map +1 -1
  4. package/lib/ast/visitor/contexts.d.ts +5 -1
  5. package/lib/ast/visitor/contexts.d.ts.map +1 -1
  6. package/lib/ast/visitor/global_visitor_context.d.ts +3 -1
  7. package/lib/ast/visitor/global_visitor_context.d.ts.map +1 -1
  8. package/lib/ast/visitor/types.d.ts +4 -2
  9. package/lib/ast/visitor/types.d.ts.map +1 -1
  10. package/lib/ast/visitor/visitor.d.ts.map +1 -1
  11. package/lib/ast/walker/walker.d.ts +3 -3
  12. package/lib/ast/walker/walker.d.ts.map +1 -1
  13. package/lib/composer/composer_query.d.ts +38 -4
  14. package/lib/composer/composer_query.d.ts.map +1 -1
  15. package/lib/composer/synth/synth_node.d.ts.map +1 -1
  16. package/lib/index.js +15072 -13069
  17. package/lib/index.js.map +1 -1
  18. package/lib/index.mjs +15070 -13069
  19. package/lib/index.mjs.map +1 -1
  20. package/lib/parser/antlr/esql_lexer.d.ts +170 -163
  21. package/lib/parser/antlr/esql_lexer.d.ts.map +1 -1
  22. package/lib/parser/antlr/esql_parser.d.ts +238 -191
  23. package/lib/parser/antlr/esql_parser.d.ts.map +1 -1
  24. package/lib/parser/antlr/esql_parser_listener.d.ts +33 -0
  25. package/lib/parser/antlr/esql_parser_listener.d.ts.map +1 -1
  26. package/lib/parser/core/cst_to_ast_converter.d.ts +2 -0
  27. package/lib/parser/core/cst_to_ast_converter.d.ts.map +1 -1
  28. package/lib/parser/core/parser.d.ts +1 -1
  29. package/lib/parser/core/parser.d.ts.map +1 -1
  30. package/lib/pretty_print/basic_pretty_printer.d.ts.map +1 -1
  31. package/lib/pretty_print/wrapping_pretty_printer.d.ts.map +1 -1
  32. package/lib/types.d.ts +6 -1
  33. package/lib/types.d.ts.map +1 -1
  34. package/lib/types.js.map +1 -1
  35. package/package.json +16 -16
@@ -26,157 +26,162 @@ export default class esql_parser extends parser_config {
26
26
  static readonly TS_INFO = 22;
27
27
  static readonly USER_AGENT = 23;
28
28
  static readonly TS_COLLAPSE = 24;
29
- static readonly FROM = 25;
30
- static readonly TS = 26;
31
- static readonly DEV_EXTERNAL = 27;
32
- static readonly FORK = 28;
33
- static readonly FUSE = 29;
34
- static readonly INLINE = 30;
35
- static readonly INLINESTATS = 31;
36
- static readonly JOIN_LOOKUP = 32;
37
- static readonly DEV_JOIN_FULL = 33;
38
- static readonly DEV_JOIN_LEFT = 34;
39
- static readonly DEV_JOIN_RIGHT = 35;
40
- static readonly DEV_LOOKUP = 36;
41
- static readonly MMR = 37;
42
- static readonly MV_EXPAND = 38;
43
- static readonly DROP = 39;
44
- static readonly KEEP = 40;
45
- static readonly DEV_INSIST = 41;
46
- static readonly PROMQL = 42;
47
- static readonly RENAME = 43;
48
- static readonly SET = 44;
49
- static readonly SHOW = 45;
50
- static readonly UNKNOWN_CMD = 46;
51
- static readonly CHANGE_POINT_LINE_COMMENT = 47;
52
- static readonly CHANGE_POINT_MULTILINE_COMMENT = 48;
53
- static readonly CHANGE_POINT_WS = 49;
54
- static readonly ENRICH_POLICY_NAME = 50;
55
- static readonly ENRICH_LINE_COMMENT = 51;
56
- static readonly ENRICH_MULTILINE_COMMENT = 52;
57
- static readonly ENRICH_WS = 53;
58
- static readonly ENRICH_FIELD_LINE_COMMENT = 54;
59
- static readonly ENRICH_FIELD_MULTILINE_COMMENT = 55;
60
- static readonly ENRICH_FIELD_WS = 56;
61
- static readonly EXPLAIN_WS = 57;
62
- static readonly EXPLAIN_LINE_COMMENT = 58;
63
- static readonly EXPLAIN_MULTILINE_COMMENT = 59;
64
- static readonly PIPE = 60;
65
- static readonly QUOTED_STRING = 61;
66
- static readonly INTEGER_LITERAL = 62;
67
- static readonly DECIMAL_LITERAL = 63;
68
- static readonly AND = 64;
69
- static readonly ASC = 65;
70
- static readonly ASSIGN = 66;
71
- static readonly BY = 67;
72
- static readonly CAST_OP = 68;
73
- static readonly COLON = 69;
74
- static readonly SEMICOLON = 70;
75
- static readonly COMMA = 71;
76
- static readonly DESC = 72;
77
- static readonly DOT = 73;
78
- static readonly FALSE = 74;
79
- static readonly FIRST = 75;
80
- static readonly IN = 76;
81
- static readonly IS = 77;
82
- static readonly LAST = 78;
83
- static readonly LIKE = 79;
84
- static readonly NOT = 80;
85
- static readonly NULL = 81;
86
- static readonly NULLS = 82;
87
- static readonly ON = 83;
88
- static readonly OR = 84;
89
- static readonly PARAM = 85;
90
- static readonly RLIKE = 86;
91
- static readonly TRUE = 87;
92
- static readonly WITH = 88;
93
- static readonly EQ = 89;
94
- static readonly CIEQ = 90;
95
- static readonly NEQ = 91;
96
- static readonly LT = 92;
97
- static readonly LTE = 93;
98
- static readonly GT = 94;
99
- static readonly GTE = 95;
100
- static readonly PLUS = 96;
101
- static readonly MINUS = 97;
102
- static readonly ASTERISK = 98;
103
- static readonly SLASH = 99;
104
- static readonly PERCENT = 100;
105
- static readonly LEFT_BRACES = 101;
106
- static readonly RIGHT_BRACES = 102;
107
- static readonly DOUBLE_PARAMS = 103;
108
- static readonly NAMED_OR_POSITIONAL_PARAM = 104;
109
- static readonly NAMED_OR_POSITIONAL_DOUBLE_PARAMS = 105;
110
- static readonly OPENING_BRACKET = 106;
111
- static readonly CLOSING_BRACKET = 107;
112
- static readonly LP = 108;
113
- static readonly RP = 109;
114
- static readonly UNQUOTED_IDENTIFIER = 110;
115
- static readonly QUOTED_IDENTIFIER = 111;
116
- static readonly EXPR_LINE_COMMENT = 112;
117
- static readonly EXPR_MULTILINE_COMMENT = 113;
118
- static readonly EXPR_WS = 114;
119
- static readonly METADATA = 115;
120
- static readonly UNQUOTED_SOURCE = 116;
121
- static readonly FROM_LINE_COMMENT = 117;
122
- static readonly FROM_MULTILINE_COMMENT = 118;
123
- static readonly FROM_WS = 119;
124
- static readonly FORK_WS = 120;
125
- static readonly FORK_LINE_COMMENT = 121;
126
- static readonly FORK_MULTILINE_COMMENT = 122;
127
- static readonly GROUP = 123;
128
- static readonly SCORE = 124;
129
- static readonly KEY = 125;
130
- static readonly FUSE_LINE_COMMENT = 126;
131
- static readonly FUSE_MULTILINE_COMMENT = 127;
132
- static readonly FUSE_WS = 128;
133
- static readonly INLINE_STATS = 129;
134
- static readonly INLINE_LINE_COMMENT = 130;
135
- static readonly INLINE_MULTILINE_COMMENT = 131;
136
- static readonly INLINE_WS = 132;
137
- static readonly AFTER_IN_LINE_COMMENT = 133;
138
- static readonly AFTER_IN_MULTILINE_COMMENT = 134;
139
- static readonly AFTER_IN_WS = 135;
140
- static readonly IN_EXPR_FALLBACK = 136;
141
- static readonly JOIN = 137;
142
- static readonly USING = 138;
143
- static readonly JOIN_LINE_COMMENT = 139;
144
- static readonly JOIN_MULTILINE_COMMENT = 140;
145
- static readonly JOIN_WS = 141;
146
- static readonly LOOKUP_LINE_COMMENT = 142;
147
- static readonly LOOKUP_MULTILINE_COMMENT = 143;
148
- static readonly LOOKUP_WS = 144;
149
- static readonly LOOKUP_FIELD_LINE_COMMENT = 145;
150
- static readonly LOOKUP_FIELD_MULTILINE_COMMENT = 146;
151
- static readonly LOOKUP_FIELD_WS = 147;
152
- static readonly MMR_LIMIT = 148;
153
- static readonly MMR_LINE_COMMENT = 149;
154
- static readonly MMR_MULTILINE_COMMENT = 150;
155
- static readonly MMR_WS = 151;
156
- static readonly MVEXPAND_LINE_COMMENT = 152;
157
- static readonly MVEXPAND_MULTILINE_COMMENT = 153;
158
- static readonly MVEXPAND_WS = 154;
159
- static readonly ID_PATTERN = 155;
160
- static readonly PROJECT_LINE_COMMENT = 156;
161
- static readonly PROJECT_MULTILINE_COMMENT = 157;
162
- static readonly PROJECT_WS = 158;
163
- static readonly PROMQL_PARAMS_LINE_COMMENT = 159;
164
- static readonly PROMQL_PARAMS_MULTILINE_COMMENT = 160;
165
- static readonly PROMQL_PARAMS_WS = 161;
166
- static readonly PROMQL_QUERY_COMMENT = 162;
167
- static readonly PROMQL_SINGLE_QUOTED_STRING = 163;
168
- static readonly PROMQL_OTHER_QUERY_CONTENT = 164;
169
- static readonly AS = 165;
170
- static readonly RENAME_LINE_COMMENT = 166;
171
- static readonly RENAME_MULTILINE_COMMENT = 167;
172
- static readonly RENAME_WS = 168;
173
- static readonly SET_LINE_COMMENT = 169;
174
- static readonly SET_MULTILINE_COMMENT = 170;
175
- static readonly SET_WS = 171;
176
- static readonly INFO = 172;
177
- static readonly SHOW_LINE_COMMENT = 173;
178
- static readonly SHOW_MULTILINE_COMMENT = 174;
179
- static readonly SHOW_WS = 175;
29
+ static readonly IP_LOCATION = 25;
30
+ static readonly FROM = 26;
31
+ static readonly TS = 27;
32
+ static readonly DEV_EXTERNAL = 28;
33
+ static readonly FORK = 29;
34
+ static readonly FUSE = 30;
35
+ static readonly DEV_HIGHLIGHT = 31;
36
+ static readonly INLINE = 32;
37
+ static readonly INLINESTATS = 33;
38
+ static readonly JOIN_LOOKUP = 34;
39
+ static readonly DEV_JOIN_FULL = 35;
40
+ static readonly DEV_JOIN_LEFT = 36;
41
+ static readonly DEV_JOIN_RIGHT = 37;
42
+ static readonly DEV_LOOKUP = 38;
43
+ static readonly MMR = 39;
44
+ static readonly MV_EXPAND = 40;
45
+ static readonly DROP = 41;
46
+ static readonly KEEP = 42;
47
+ static readonly DEV_INSIST = 43;
48
+ static readonly PROMQL = 44;
49
+ static readonly RENAME = 45;
50
+ static readonly SET = 46;
51
+ static readonly SHOW = 47;
52
+ static readonly UNKNOWN_CMD = 48;
53
+ static readonly CHANGE_POINT_LINE_COMMENT = 49;
54
+ static readonly CHANGE_POINT_MULTILINE_COMMENT = 50;
55
+ static readonly CHANGE_POINT_WS = 51;
56
+ static readonly ENRICH_POLICY_NAME = 52;
57
+ static readonly ENRICH_LINE_COMMENT = 53;
58
+ static readonly ENRICH_MULTILINE_COMMENT = 54;
59
+ static readonly ENRICH_WS = 55;
60
+ static readonly ENRICH_FIELD_LINE_COMMENT = 56;
61
+ static readonly ENRICH_FIELD_MULTILINE_COMMENT = 57;
62
+ static readonly ENRICH_FIELD_WS = 58;
63
+ static readonly EXPLAIN_WS = 59;
64
+ static readonly EXPLAIN_LINE_COMMENT = 60;
65
+ static readonly EXPLAIN_MULTILINE_COMMENT = 61;
66
+ static readonly PIPE = 62;
67
+ static readonly QUOTED_STRING = 63;
68
+ static readonly INTEGER_LITERAL = 64;
69
+ static readonly DECIMAL_LITERAL = 65;
70
+ static readonly AND = 66;
71
+ static readonly ASC = 67;
72
+ static readonly ASSIGN = 68;
73
+ static readonly BY = 69;
74
+ static readonly CAST_OP = 70;
75
+ static readonly COLON = 71;
76
+ static readonly SEMICOLON = 72;
77
+ static readonly COMMA = 73;
78
+ static readonly DESC = 74;
79
+ static readonly DOT = 75;
80
+ static readonly FALSE = 76;
81
+ static readonly FIRST = 77;
82
+ static readonly IN = 78;
83
+ static readonly IS = 79;
84
+ static readonly LAST = 80;
85
+ static readonly LIKE = 81;
86
+ static readonly NOT = 82;
87
+ static readonly NULL = 83;
88
+ static readonly NULLS = 84;
89
+ static readonly ON = 85;
90
+ static readonly OR = 86;
91
+ static readonly PARAM = 87;
92
+ static readonly RLIKE = 88;
93
+ static readonly TRUE = 89;
94
+ static readonly WITH = 90;
95
+ static readonly EQ = 91;
96
+ static readonly CIEQ = 92;
97
+ static readonly NEQ = 93;
98
+ static readonly LT = 94;
99
+ static readonly LTE = 95;
100
+ static readonly GT = 96;
101
+ static readonly GTE = 97;
102
+ static readonly PLUS = 98;
103
+ static readonly MINUS = 99;
104
+ static readonly ASTERISK = 100;
105
+ static readonly SLASH = 101;
106
+ static readonly PERCENT = 102;
107
+ static readonly LEFT_BRACES = 103;
108
+ static readonly RIGHT_BRACES = 104;
109
+ static readonly DOUBLE_PARAMS = 105;
110
+ static readonly NAMED_OR_POSITIONAL_PARAM = 106;
111
+ static readonly NAMED_OR_POSITIONAL_DOUBLE_PARAMS = 107;
112
+ static readonly OPENING_BRACKET = 108;
113
+ static readonly CLOSING_BRACKET = 109;
114
+ static readonly LP = 110;
115
+ static readonly RP = 111;
116
+ static readonly UNQUOTED_IDENTIFIER = 112;
117
+ static readonly QUOTED_IDENTIFIER = 113;
118
+ static readonly EXPR_LINE_COMMENT = 114;
119
+ static readonly EXPR_MULTILINE_COMMENT = 115;
120
+ static readonly EXPR_WS = 116;
121
+ static readonly METADATA = 117;
122
+ static readonly UNQUOTED_SOURCE = 118;
123
+ static readonly FROM_LINE_COMMENT = 119;
124
+ static readonly FROM_MULTILINE_COMMENT = 120;
125
+ static readonly FROM_WS = 121;
126
+ static readonly FORK_WS = 122;
127
+ static readonly FORK_LINE_COMMENT = 123;
128
+ static readonly FORK_MULTILINE_COMMENT = 124;
129
+ static readonly GROUP = 125;
130
+ static readonly SCORE = 126;
131
+ static readonly KEY = 127;
132
+ static readonly FUSE_LINE_COMMENT = 128;
133
+ static readonly FUSE_MULTILINE_COMMENT = 129;
134
+ static readonly FUSE_WS = 130;
135
+ static readonly HIGHLIGHT_LINE_COMMENT = 131;
136
+ static readonly HIGHLIGHT_MULTILINE_COMMENT = 132;
137
+ static readonly HIGHLIGHT_WS = 133;
138
+ static readonly INLINE_STATS = 134;
139
+ static readonly INLINE_LINE_COMMENT = 135;
140
+ static readonly INLINE_MULTILINE_COMMENT = 136;
141
+ static readonly INLINE_WS = 137;
142
+ static readonly AFTER_IN_LINE_COMMENT = 138;
143
+ static readonly AFTER_IN_MULTILINE_COMMENT = 139;
144
+ static readonly AFTER_IN_WS = 140;
145
+ static readonly IN_EXPR_FALLBACK = 141;
146
+ static readonly JOIN = 142;
147
+ static readonly USING = 143;
148
+ static readonly JOIN_LINE_COMMENT = 144;
149
+ static readonly JOIN_MULTILINE_COMMENT = 145;
150
+ static readonly JOIN_WS = 146;
151
+ static readonly LOOKUP_LINE_COMMENT = 147;
152
+ static readonly LOOKUP_MULTILINE_COMMENT = 148;
153
+ static readonly LOOKUP_WS = 149;
154
+ static readonly LOOKUP_FIELD_LINE_COMMENT = 150;
155
+ static readonly LOOKUP_FIELD_MULTILINE_COMMENT = 151;
156
+ static readonly LOOKUP_FIELD_WS = 152;
157
+ static readonly MMR_LIMIT = 153;
158
+ static readonly MMR_LINE_COMMENT = 154;
159
+ static readonly MMR_MULTILINE_COMMENT = 155;
160
+ static readonly MMR_WS = 156;
161
+ static readonly MVEXPAND_LINE_COMMENT = 157;
162
+ static readonly MVEXPAND_MULTILINE_COMMENT = 158;
163
+ static readonly MVEXPAND_WS = 159;
164
+ static readonly ID_PATTERN = 160;
165
+ static readonly PROJECT_LINE_COMMENT = 161;
166
+ static readonly PROJECT_MULTILINE_COMMENT = 162;
167
+ static readonly PROJECT_WS = 163;
168
+ static readonly PROMQL_PARAMS_LINE_COMMENT = 164;
169
+ static readonly PROMQL_PARAMS_MULTILINE_COMMENT = 165;
170
+ static readonly PROMQL_PARAMS_WS = 166;
171
+ static readonly PROMQL_QUERY_COMMENT = 167;
172
+ static readonly PROMQL_SINGLE_QUOTED_STRING = 168;
173
+ static readonly PROMQL_OTHER_QUERY_CONTENT = 169;
174
+ static readonly AS = 170;
175
+ static readonly RENAME_LINE_COMMENT = 171;
176
+ static readonly RENAME_MULTILINE_COMMENT = 172;
177
+ static readonly RENAME_WS = 173;
178
+ static readonly SET_LINE_COMMENT = 174;
179
+ static readonly SET_MULTILINE_COMMENT = 175;
180
+ static readonly SET_WS = 176;
181
+ static readonly INFO = 177;
182
+ static readonly SHOW_LINE_COMMENT = 178;
183
+ static readonly SHOW_MULTILINE_COMMENT = 179;
184
+ static readonly SHOW_WS = 180;
180
185
  static readonly EOF: number;
181
186
  static readonly RULE_statements = 0;
182
187
  static readonly RULE_singleStatement = 1;
@@ -255,46 +260,49 @@ export default class esql_parser extends parser_config {
255
260
  static readonly RULE_lookupCommand = 74;
256
261
  static readonly RULE_insistCommand = 75;
257
262
  static readonly RULE_dedupCommand = 76;
258
- static readonly RULE_uriPartsCommand = 77;
259
- static readonly RULE_registeredDomainCommand = 78;
260
- static readonly RULE_userAgentCommand = 79;
261
- static readonly RULE_setCommand = 80;
262
- static readonly RULE_setField = 81;
263
- static readonly RULE_mmrCommand = 82;
264
- static readonly RULE_mmrQueryVectorParams = 83;
265
- static readonly RULE_booleanExpression = 84;
266
- static readonly RULE_regexBooleanExpression = 85;
267
- static readonly RULE_matchBooleanExpression = 86;
268
- static readonly RULE_valueExpression = 87;
269
- static readonly RULE_operatorExpression = 88;
270
- static readonly RULE_primaryExpression = 89;
271
- static readonly RULE_functionExpression = 90;
272
- static readonly RULE_functionName = 91;
273
- static readonly RULE_mapExpression = 92;
274
- static readonly RULE_entryExpression = 93;
275
- static readonly RULE_mapValue = 94;
276
- static readonly RULE_constant = 95;
277
- static readonly RULE_booleanValue = 96;
278
- static readonly RULE_numericValue = 97;
279
- static readonly RULE_decimalValue = 98;
280
- static readonly RULE_integerValue = 99;
281
- static readonly RULE_string = 100;
282
- static readonly RULE_comparisonOperator = 101;
283
- static readonly RULE_joinCommand = 102;
284
- static readonly RULE_joinTarget = 103;
285
- static readonly RULE_joinCondition = 104;
286
- static readonly RULE_promqlCommand = 105;
287
- static readonly RULE_valueName = 106;
288
- static readonly RULE_promqlParam = 107;
289
- static readonly RULE_promqlParamName = 108;
290
- static readonly RULE_promqlParamValue = 109;
291
- static readonly RULE_promqlQueryContent = 110;
292
- static readonly RULE_promqlQueryPart = 111;
293
- static readonly RULE_promqlIndexPattern = 112;
294
- static readonly RULE_promqlClusterString = 113;
295
- static readonly RULE_promqlSelectorString = 114;
296
- static readonly RULE_promqlUnquotedIndexString = 115;
297
- static readonly RULE_promqlIndexString = 116;
263
+ static readonly RULE_highlightCommand = 77;
264
+ static readonly RULE_qualifiedNames = 78;
265
+ static readonly RULE_uriPartsCommand = 79;
266
+ static readonly RULE_registeredDomainCommand = 80;
267
+ static readonly RULE_userAgentCommand = 81;
268
+ static readonly RULE_ipLocationCommand = 82;
269
+ static readonly RULE_setCommand = 83;
270
+ static readonly RULE_setField = 84;
271
+ static readonly RULE_mmrCommand = 85;
272
+ static readonly RULE_mmrQueryVectorParams = 86;
273
+ static readonly RULE_booleanExpression = 87;
274
+ static readonly RULE_regexBooleanExpression = 88;
275
+ static readonly RULE_matchBooleanExpression = 89;
276
+ static readonly RULE_valueExpression = 90;
277
+ static readonly RULE_operatorExpression = 91;
278
+ static readonly RULE_primaryExpression = 92;
279
+ static readonly RULE_functionExpression = 93;
280
+ static readonly RULE_functionName = 94;
281
+ static readonly RULE_mapExpression = 95;
282
+ static readonly RULE_entryExpression = 96;
283
+ static readonly RULE_mapValue = 97;
284
+ static readonly RULE_constant = 98;
285
+ static readonly RULE_booleanValue = 99;
286
+ static readonly RULE_numericValue = 100;
287
+ static readonly RULE_decimalValue = 101;
288
+ static readonly RULE_integerValue = 102;
289
+ static readonly RULE_string = 103;
290
+ static readonly RULE_comparisonOperator = 104;
291
+ static readonly RULE_joinCommand = 105;
292
+ static readonly RULE_joinTarget = 106;
293
+ static readonly RULE_joinCondition = 107;
294
+ static readonly RULE_promqlCommand = 108;
295
+ static readonly RULE_valueName = 109;
296
+ static readonly RULE_promqlParam = 110;
297
+ static readonly RULE_promqlParamName = 111;
298
+ static readonly RULE_promqlParamValue = 112;
299
+ static readonly RULE_promqlQueryContent = 113;
300
+ static readonly RULE_promqlQueryPart = 114;
301
+ static readonly RULE_promqlIndexPattern = 115;
302
+ static readonly RULE_promqlClusterString = 116;
303
+ static readonly RULE_promqlSelectorString = 117;
304
+ static readonly RULE_promqlUnquotedIndexString = 118;
305
+ static readonly RULE_promqlIndexString = 119;
298
306
  static readonly literalNames: (string | null)[];
299
307
  static readonly symbolicNames: (string | null)[];
300
308
  static readonly ruleNames: string[];
@@ -384,9 +392,12 @@ export default class esql_parser extends parser_config {
384
392
  lookupCommand(): LookupCommandContext;
385
393
  insistCommand(): InsistCommandContext;
386
394
  dedupCommand(): DedupCommandContext;
395
+ highlightCommand(): HighlightCommandContext;
396
+ qualifiedNames(): QualifiedNamesContext;
387
397
  uriPartsCommand(): UriPartsCommandContext;
388
398
  registeredDomainCommand(): RegisteredDomainCommandContext;
389
399
  userAgentCommand(): UserAgentCommandContext;
400
+ ipLocationCommand(): IpLocationCommandContext;
390
401
  setCommand(): SetCommandContext;
391
402
  setField(): SetFieldContext;
392
403
  mmrCommand(): MmrCommandContext;
@@ -522,10 +533,12 @@ export declare class ProcessingCommandContext extends ParserRuleContext {
522
533
  tsInfoCommand(): TsInfoCommandContext;
523
534
  userAgentCommand(): UserAgentCommandContext;
524
535
  tsCollapseCommand(): TsCollapseCommandContext;
536
+ ipLocationCommand(): IpLocationCommandContext;
525
537
  mmrCommand(): MmrCommandContext;
526
538
  lookupCommand(): LookupCommandContext;
527
539
  insistCommand(): InsistCommandContext;
528
540
  dedupCommand(): DedupCommandContext;
541
+ highlightCommand(): HighlightCommandContext;
529
542
  get ruleIndex(): number;
530
543
  enterRule(listener: esql_parserListener): void;
531
544
  exitRule(listener: esql_parserListener): void;
@@ -1279,6 +1292,29 @@ export declare class DedupCommandContext extends ParserRuleContext {
1279
1292
  enterRule(listener: esql_parserListener): void;
1280
1293
  exitRule(listener: esql_parserListener): void;
1281
1294
  }
1295
+ export declare class HighlightCommandContext extends ParserRuleContext {
1296
+ _queryText: StringContext;
1297
+ _highlightFields: QualifiedNamesContext;
1298
+ constructor(parser?: esql_parser, parent?: ParserRuleContext, invokingState?: number);
1299
+ DEV_HIGHLIGHT(): TerminalNode;
1300
+ ON(): TerminalNode;
1301
+ commandNamedParameters(): CommandNamedParametersContext;
1302
+ string_(): StringContext;
1303
+ qualifiedNames(): QualifiedNamesContext;
1304
+ get ruleIndex(): number;
1305
+ enterRule(listener: esql_parserListener): void;
1306
+ exitRule(listener: esql_parserListener): void;
1307
+ }
1308
+ export declare class QualifiedNamesContext extends ParserRuleContext {
1309
+ constructor(parser?: esql_parser, parent?: ParserRuleContext, invokingState?: number);
1310
+ qualifiedName_list(): QualifiedNameContext[];
1311
+ qualifiedName(i: number): QualifiedNameContext;
1312
+ COMMA_list(): TerminalNode[];
1313
+ COMMA(i: number): TerminalNode;
1314
+ get ruleIndex(): number;
1315
+ enterRule(listener: esql_parserListener): void;
1316
+ exitRule(listener: esql_parserListener): void;
1317
+ }
1282
1318
  export declare class UriPartsCommandContext extends ParserRuleContext {
1283
1319
  constructor(parser?: esql_parser, parent?: ParserRuleContext, invokingState?: number);
1284
1320
  URI_PARTS(): TerminalNode;
@@ -1310,6 +1346,17 @@ export declare class UserAgentCommandContext extends ParserRuleContext {
1310
1346
  enterRule(listener: esql_parserListener): void;
1311
1347
  exitRule(listener: esql_parserListener): void;
1312
1348
  }
1349
+ export declare class IpLocationCommandContext extends ParserRuleContext {
1350
+ constructor(parser?: esql_parser, parent?: ParserRuleContext, invokingState?: number);
1351
+ IP_LOCATION(): TerminalNode;
1352
+ qualifiedName(): QualifiedNameContext;
1353
+ ASSIGN(): TerminalNode;
1354
+ primaryExpression(): PrimaryExpressionContext;
1355
+ commandNamedParameters(): CommandNamedParametersContext;
1356
+ get ruleIndex(): number;
1357
+ enterRule(listener: esql_parserListener): void;
1358
+ exitRule(listener: esql_parserListener): void;
1359
+ }
1313
1360
  export declare class SetCommandContext extends ParserRuleContext {
1314
1361
  constructor(parser?: esql_parser, parent?: ParserRuleContext, invokingState?: number);
1315
1362
  SET(): TerminalNode;