@opra/client 0.11.2 → 0.11.5

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 (159) hide show
  1. package/cjs/index.min.mjs +1 -1
  2. package/esm/index.min.mjs +1 -1
  3. package/package.json +25 -2
  4. package/typings/client-error.d.ts +1 -1
  5. package/typings/common/constants.d.ts +0 -0
  6. package/typings/common/exception/enums/issue-severity.enum.d.ts +13 -0
  7. package/typings/common/exception/error-issue.d.ts +9 -0
  8. package/typings/common/exception/http-errors/bad-request.error.d.ts +10 -0
  9. package/typings/common/exception/http-errors/failed-dependency.error.d.ts +9 -0
  10. package/typings/common/exception/http-errors/forbidden.error.d.ts +11 -0
  11. package/typings/common/exception/http-errors/internal-server.error.d.ts +9 -0
  12. package/typings/common/exception/http-errors/method-not-allowed.error.d.ts +10 -0
  13. package/typings/common/exception/http-errors/not-acceptable.error.d.ts +10 -0
  14. package/typings/common/exception/http-errors/not-found.error.d.ts +13 -0
  15. package/typings/common/exception/http-errors/unauthorized.error.d.ts +10 -0
  16. package/typings/common/exception/http-errors/unprocessable-entity.error.d.ts +9 -0
  17. package/typings/common/exception/index.d.ts +15 -0
  18. package/typings/common/exception/opra-exception.d.ts +15 -0
  19. package/typings/common/exception/resource-errors/resource-conflict.error.d.ts +5 -0
  20. package/typings/common/exception/resource-errors/resource-not-found.error.d.ts +4 -0
  21. package/typings/common/exception/wrap-exception.d.ts +2 -0
  22. package/typings/common/filter/antlr/OpraFilterLexer.d.ts +77 -0
  23. package/typings/common/filter/antlr/OpraFilterListener.d.ts +430 -0
  24. package/typings/common/filter/antlr/OpraFilterParser.d.ts +437 -0
  25. package/typings/common/filter/antlr/OpraFilterVisitor.d.ts +260 -0
  26. package/typings/common/filter/ast/abstract/ast.d.ts +5 -0
  27. package/typings/common/filter/ast/abstract/expression.d.ts +3 -0
  28. package/typings/common/filter/ast/abstract/literal.d.ts +6 -0
  29. package/typings/common/filter/ast/abstract/term.d.ts +3 -0
  30. package/typings/common/filter/ast/expressions/arithmetic-expression.d.ts +13 -0
  31. package/typings/common/filter/ast/expressions/array-expression.d.ts +7 -0
  32. package/typings/common/filter/ast/expressions/comparison-expression.d.ts +10 -0
  33. package/typings/common/filter/ast/expressions/logical-expression.d.ts +8 -0
  34. package/typings/common/filter/ast/expressions/parentheses-expression.d.ts +6 -0
  35. package/typings/common/filter/ast/index.d.ts +16 -0
  36. package/typings/common/filter/ast/terms/boolean-literal.d.ts +5 -0
  37. package/typings/common/filter/ast/terms/date-literal.d.ts +6 -0
  38. package/typings/common/filter/ast/terms/external-constant.d.ts +5 -0
  39. package/typings/common/filter/ast/terms/null-literal.d.ts +5 -0
  40. package/typings/common/filter/ast/terms/number-literal.d.ts +6 -0
  41. package/typings/common/filter/ast/terms/qualified-identifier.d.ts +4 -0
  42. package/typings/common/filter/ast/terms/string-literal.d.ts +5 -0
  43. package/typings/common/filter/ast/terms/time-literal.d.ts +6 -0
  44. package/typings/common/filter/build.d.ts +31 -0
  45. package/typings/common/filter/errors.d.ts +18 -0
  46. package/typings/common/filter/filter-tree-visitor.d.ts +32 -0
  47. package/typings/common/filter/index.d.ts +5 -0
  48. package/typings/common/filter/opra-error-listener.d.ts +8 -0
  49. package/typings/common/filter/parse.d.ts +2 -0
  50. package/typings/common/filter/utils.d.ts +2 -0
  51. package/typings/common/helpers/index.d.ts +1 -0
  52. package/typings/common/helpers/responsive-map.d.ts +18 -0
  53. package/typings/common/http/enums/http-headers.enum.d.ts +379 -0
  54. package/typings/common/http/enums/http-status.enum.d.ts +290 -0
  55. package/typings/common/http/http-request.d.ts +34 -0
  56. package/typings/common/http/index.d.ts +6 -0
  57. package/typings/common/http/interfaces/client-http-headers.interface.d.ts +65 -0
  58. package/typings/common/http/interfaces/server-http-headers.interface.d.ts +1 -0
  59. package/typings/common/http/multipart/batch-multipart.d.ts +31 -0
  60. package/typings/common/http/multipart/http-request-content.d.ts +8 -0
  61. package/typings/common/http/multipart/http-response-content.d.ts +7 -0
  62. package/typings/common/http/multipart/index.d.ts +1 -0
  63. package/typings/common/http/utils/normalize-headers.d.ts +1 -0
  64. package/typings/common/i18n/i18n.d.ts +28 -0
  65. package/typings/common/i18n/index.d.ts +5 -0
  66. package/typings/common/i18n/string-utils.d.ts +2 -0
  67. package/typings/common/i18n/translate.d.ts +4 -0
  68. package/typings/common/index.d.ts +10 -0
  69. package/typings/common/schema/constants.d.ts +8 -0
  70. package/typings/common/schema/decorators/opr-collection-resource.decorator.d.ts +8 -0
  71. package/typings/common/schema/decorators/opr-complex-type.decorator.d.ts +6 -0
  72. package/typings/common/schema/decorators/opr-field.decorator.d.ts +3 -0
  73. package/typings/common/schema/decorators/opr-resolver.decorator.d.ts +8 -0
  74. package/typings/common/schema/decorators/opr-simple-type.decorator.d.ts +6 -0
  75. package/typings/common/schema/decorators/opr-singleton-resource.decorator.d.ts +8 -0
  76. package/typings/common/schema/implementation/data-type/builtin/any.type.d.ts +2 -0
  77. package/typings/common/schema/implementation/data-type/builtin/base64-binary.type.d.ts +2 -0
  78. package/typings/common/schema/implementation/data-type/builtin/bigint.type.d.ts +2 -0
  79. package/typings/common/schema/implementation/data-type/builtin/boolean.type.d.ts +2 -0
  80. package/typings/common/schema/implementation/data-type/builtin/date-string.type.d.ts +2 -0
  81. package/typings/common/schema/implementation/data-type/builtin/date.type.d.ts +2 -0
  82. package/typings/common/schema/implementation/data-type/builtin/guid.type.d.ts +2 -0
  83. package/typings/common/schema/implementation/data-type/builtin/integer.type.d.ts +2 -0
  84. package/typings/common/schema/implementation/data-type/builtin/number.type.d.ts +2 -0
  85. package/typings/common/schema/implementation/data-type/builtin/object.type.d.ts +2 -0
  86. package/typings/common/schema/implementation/data-type/builtin/string.type.d.ts +2 -0
  87. package/typings/common/schema/implementation/data-type/builtin-data-types.d.ts +4 -0
  88. package/typings/common/schema/implementation/data-type/complex-type.d.ts +29 -0
  89. package/typings/common/schema/implementation/data-type/data-type.d.ts +16 -0
  90. package/typings/common/schema/implementation/data-type/simple-type.d.ts +12 -0
  91. package/typings/common/schema/implementation/data-type/union-type.d.ts +16 -0
  92. package/typings/common/schema/implementation/document-builder.d.ts +16 -0
  93. package/typings/common/schema/implementation/opra-document.d.ts +44 -0
  94. package/typings/common/schema/implementation/query/collection-count-query.d.ts +14 -0
  95. package/typings/common/schema/implementation/query/collection-create-query.d.ts +18 -0
  96. package/typings/common/schema/implementation/query/collection-delete-many-query.d.ts +14 -0
  97. package/typings/common/schema/implementation/query/collection-delete-query.d.ts +10 -0
  98. package/typings/common/schema/implementation/query/collection-get-query.d.ts +21 -0
  99. package/typings/common/schema/implementation/query/collection-search-query.d.ts +30 -0
  100. package/typings/common/schema/implementation/query/collection-update-many-query.d.ts +15 -0
  101. package/typings/common/schema/implementation/query/collection-update-query.d.ts +19 -0
  102. package/typings/common/schema/implementation/query/field-get-query.d.ts +30 -0
  103. package/typings/common/schema/implementation/query/index.d.ts +27 -0
  104. package/typings/common/schema/implementation/query/singleton-get-query.d.ts +20 -0
  105. package/typings/common/schema/implementation/resource/collection-resource-info.d.ts +19 -0
  106. package/typings/common/schema/implementation/resource/container-resource-info.d.ts +13 -0
  107. package/typings/common/schema/implementation/resource/resource-info.d.ts +17 -0
  108. package/typings/common/schema/implementation/resource/singleton-resource-info.d.ts +14 -0
  109. package/typings/common/schema/implementation/schema-builder/extract-resource-metadata.util.d.ts +3 -0
  110. package/typings/common/schema/implementation/schema-builder/extract-type-metadata.util.d.ts +4 -0
  111. package/typings/common/schema/index.d.ts +25 -0
  112. package/typings/common/schema/interfaces/child-field-query.interface.d.ts +4 -0
  113. package/typings/common/schema/interfaces/data-type.metadata.d.ts +18 -0
  114. package/typings/common/schema/interfaces/resource-container.interface.d.ts +8 -0
  115. package/typings/common/schema/interfaces/resource.metadata.d.ts +18 -0
  116. package/typings/common/schema/opra-schema.definition.d.ts +178 -0
  117. package/typings/common/schema/type-helpers/extend-type.helper.d.ts +3 -0
  118. package/typings/common/schema/type-helpers/mixin-type.helper.d.ts +2 -0
  119. package/typings/common/schema/type-helpers/mixin.utils.d.ts +3 -0
  120. package/typings/common/schema/types.d.ts +14 -0
  121. package/typings/common/schema/utils/class.utils.d.ts +2 -0
  122. package/typings/common/schema/utils/clone-object.util.d.ts +1 -0
  123. package/typings/common/schema/utils/inspect.util.d.ts +4 -0
  124. package/typings/common/schema/utils/normalize-field-array.util.d.ts +3 -0
  125. package/typings/common/schema/utils/path-to-tree.util.d.ts +4 -0
  126. package/typings/common/schema/utils/string-compare.util.d.ts +1 -0
  127. package/typings/common/url/formats/boolean-format.d.ts +5 -0
  128. package/typings/common/url/formats/date-format.d.ts +16 -0
  129. package/typings/common/url/formats/filter-format.d.ts +6 -0
  130. package/typings/common/url/formats/format.d.ts +4 -0
  131. package/typings/common/url/formats/integer-format.d.ts +9 -0
  132. package/typings/common/url/formats/number-format.d.ts +12 -0
  133. package/typings/common/url/formats/string-format.d.ts +14 -0
  134. package/typings/common/url/index.d.ts +5 -0
  135. package/typings/common/url/opra-url-path-component.d.ts +15 -0
  136. package/typings/common/url/opra-url-path.d.ts +30 -0
  137. package/typings/common/url/opra-url-search-params.d.ts +44 -0
  138. package/typings/common/url/opra-url.d.ts +79 -0
  139. package/typings/common/url/utils/path-utils.d.ts +8 -0
  140. package/typings/common/utils/index.d.ts +3 -0
  141. package/typings/common/utils/is-url.d.ts +1 -0
  142. package/typings/common/utils/path-to-tree.d.ts +4 -0
  143. package/typings/common/utils/type-guards.d.ts +9 -0
  144. package/typings/http/http-client.d.ts +1 -1
  145. package/typings/http/http-collection-service.d.ts +1 -1
  146. package/typings/http/http-request.d.ts +1 -1
  147. package/typings/http/http-singleton-service.d.ts +1 -1
  148. package/typings/http/http-types.d.ts +1 -1
  149. package/typings/http/requests/batch-request.d.ts +1 -1
  150. package/typings/http/requests/collection-create-request.d.ts +1 -1
  151. package/typings/http/requests/collection-delete-many-request.d.ts +1 -1
  152. package/typings/http/requests/collection-delete-request.d.ts +1 -1
  153. package/typings/http/requests/collection-get-request.d.ts +1 -1
  154. package/typings/http/requests/collection-search-request.d.ts +1 -1
  155. package/typings/http/requests/collection-update-many-request.d.ts +1 -1
  156. package/typings/http/requests/collection-update-request.d.ts +1 -1
  157. package/typings/http/requests/http-singleton-get-request.d.ts +1 -1
  158. package/typings/interfaces/http-options.interface.d.ts +1 -1
  159. package/typings/interfaces/http-request-config.interface.d.ts +1 -1
@@ -0,0 +1,430 @@
1
+ import { ParseTreeListener } from "antlr4";
2
+ import { ArithmeticExpressionContext, ArrayExpressionContext, ArthOpContext, BooleanContext, BooleanLiteralContext, ComparisonExpressionContext, CompOpContext, DateLiteralContext, DateTimeLiteralContext, DateTimePrecisionContext, ExternalConstantContext, ExternalConstantTermContext, FunctionContext, IdentifierContext, InfinityContext, InfinityLiteralContext, InvocableContext, LiteralTermContext, LogicalExpressionContext, LogOpContext, MemberIndexContext, MemberInvocationContext, NullContext, NullLiteralContext, NumberIndexContext, NumberLiteralContext, ParamListContext, ParenthesizedExpressionContext, PluralDateTimePrecisionContext, PolarityExpressionContext, PolarOpContext, QualifiedIdentifierContext, QualifiedIdentifierTermContext, RootContext, StringLiteralContext, TermExpressionContext, TimeLiteralContext, UnitContext } from "./OpraFilterParser.js";
3
+ /**
4
+ * This interface defines a complete listener for a parse tree produced by
5
+ * `OpraFilterParser`.
6
+ */
7
+ export default class OpraFilterListener extends ParseTreeListener {
8
+ /**
9
+ * Enter a parse tree produced by `OpraFilterParser.root`.
10
+ * @param ctx the parse tree
11
+ */
12
+ enterRoot?: (ctx: RootContext) => void;
13
+ /**
14
+ * Exit a parse tree produced by `OpraFilterParser.root`.
15
+ * @param ctx the parse tree
16
+ */
17
+ exitRoot?: (ctx: RootContext) => void;
18
+ /**
19
+ * Enter a parse tree produced by the `parenthesizedExpression`
20
+ * labeled alternative in `OpraFilterParser.expression`.
21
+ * @param ctx the parse tree
22
+ */
23
+ enterParenthesizedExpression?: (ctx: ParenthesizedExpressionContext) => void;
24
+ /**
25
+ * Exit a parse tree produced by the `parenthesizedExpression`
26
+ * labeled alternative in `OpraFilterParser.expression`.
27
+ * @param ctx the parse tree
28
+ */
29
+ exitParenthesizedExpression?: (ctx: ParenthesizedExpressionContext) => void;
30
+ /**
31
+ * Enter a parse tree produced by the `arrayExpression`
32
+ * labeled alternative in `OpraFilterParser.expression`.
33
+ * @param ctx the parse tree
34
+ */
35
+ enterArrayExpression?: (ctx: ArrayExpressionContext) => void;
36
+ /**
37
+ * Exit a parse tree produced by the `arrayExpression`
38
+ * labeled alternative in `OpraFilterParser.expression`.
39
+ * @param ctx the parse tree
40
+ */
41
+ exitArrayExpression?: (ctx: ArrayExpressionContext) => void;
42
+ /**
43
+ * Enter a parse tree produced by the `polarityExpression`
44
+ * labeled alternative in `OpraFilterParser.expression`.
45
+ * @param ctx the parse tree
46
+ */
47
+ enterPolarityExpression?: (ctx: PolarityExpressionContext) => void;
48
+ /**
49
+ * Exit a parse tree produced by the `polarityExpression`
50
+ * labeled alternative in `OpraFilterParser.expression`.
51
+ * @param ctx the parse tree
52
+ */
53
+ exitPolarityExpression?: (ctx: PolarityExpressionContext) => void;
54
+ /**
55
+ * Enter a parse tree produced by the `comparisonExpression`
56
+ * labeled alternative in `OpraFilterParser.expression`.
57
+ * @param ctx the parse tree
58
+ */
59
+ enterComparisonExpression?: (ctx: ComparisonExpressionContext) => void;
60
+ /**
61
+ * Exit a parse tree produced by the `comparisonExpression`
62
+ * labeled alternative in `OpraFilterParser.expression`.
63
+ * @param ctx the parse tree
64
+ */
65
+ exitComparisonExpression?: (ctx: ComparisonExpressionContext) => void;
66
+ /**
67
+ * Enter a parse tree produced by the `arithmeticExpression`
68
+ * labeled alternative in `OpraFilterParser.expression`.
69
+ * @param ctx the parse tree
70
+ */
71
+ enterArithmeticExpression?: (ctx: ArithmeticExpressionContext) => void;
72
+ /**
73
+ * Exit a parse tree produced by the `arithmeticExpression`
74
+ * labeled alternative in `OpraFilterParser.expression`.
75
+ * @param ctx the parse tree
76
+ */
77
+ exitArithmeticExpression?: (ctx: ArithmeticExpressionContext) => void;
78
+ /**
79
+ * Enter a parse tree produced by the `logicalExpression`
80
+ * labeled alternative in `OpraFilterParser.expression`.
81
+ * @param ctx the parse tree
82
+ */
83
+ enterLogicalExpression?: (ctx: LogicalExpressionContext) => void;
84
+ /**
85
+ * Exit a parse tree produced by the `logicalExpression`
86
+ * labeled alternative in `OpraFilterParser.expression`.
87
+ * @param ctx the parse tree
88
+ */
89
+ exitLogicalExpression?: (ctx: LogicalExpressionContext) => void;
90
+ /**
91
+ * Enter a parse tree produced by the `termExpression`
92
+ * labeled alternative in `OpraFilterParser.expression`.
93
+ * @param ctx the parse tree
94
+ */
95
+ enterTermExpression?: (ctx: TermExpressionContext) => void;
96
+ /**
97
+ * Exit a parse tree produced by the `termExpression`
98
+ * labeled alternative in `OpraFilterParser.expression`.
99
+ * @param ctx the parse tree
100
+ */
101
+ exitTermExpression?: (ctx: TermExpressionContext) => void;
102
+ /**
103
+ * Enter a parse tree produced by the `literalTerm`
104
+ * labeled alternative in `OpraFilterParser.term`.
105
+ * @param ctx the parse tree
106
+ */
107
+ enterLiteralTerm?: (ctx: LiteralTermContext) => void;
108
+ /**
109
+ * Exit a parse tree produced by the `literalTerm`
110
+ * labeled alternative in `OpraFilterParser.term`.
111
+ * @param ctx the parse tree
112
+ */
113
+ exitLiteralTerm?: (ctx: LiteralTermContext) => void;
114
+ /**
115
+ * Enter a parse tree produced by the `qualifiedIdentifierTerm`
116
+ * labeled alternative in `OpraFilterParser.term`.
117
+ * @param ctx the parse tree
118
+ */
119
+ enterQualifiedIdentifierTerm?: (ctx: QualifiedIdentifierTermContext) => void;
120
+ /**
121
+ * Exit a parse tree produced by the `qualifiedIdentifierTerm`
122
+ * labeled alternative in `OpraFilterParser.term`.
123
+ * @param ctx the parse tree
124
+ */
125
+ exitQualifiedIdentifierTerm?: (ctx: QualifiedIdentifierTermContext) => void;
126
+ /**
127
+ * Enter a parse tree produced by the `externalConstantTerm`
128
+ * labeled alternative in `OpraFilterParser.term`.
129
+ * @param ctx the parse tree
130
+ */
131
+ enterExternalConstantTerm?: (ctx: ExternalConstantTermContext) => void;
132
+ /**
133
+ * Exit a parse tree produced by the `externalConstantTerm`
134
+ * labeled alternative in `OpraFilterParser.term`.
135
+ * @param ctx the parse tree
136
+ */
137
+ exitExternalConstantTerm?: (ctx: ExternalConstantTermContext) => void;
138
+ /**
139
+ * Enter a parse tree produced by `OpraFilterParser.invocable`.
140
+ * @param ctx the parse tree
141
+ */
142
+ enterInvocable?: (ctx: InvocableContext) => void;
143
+ /**
144
+ * Exit a parse tree produced by `OpraFilterParser.invocable`.
145
+ * @param ctx the parse tree
146
+ */
147
+ exitInvocable?: (ctx: InvocableContext) => void;
148
+ /**
149
+ * Enter a parse tree produced by the `memberInvocation`
150
+ * labeled alternative in `OpraFilterParser.invocation`.
151
+ * @param ctx the parse tree
152
+ */
153
+ enterMemberInvocation?: (ctx: MemberInvocationContext) => void;
154
+ /**
155
+ * Exit a parse tree produced by the `memberInvocation`
156
+ * labeled alternative in `OpraFilterParser.invocation`.
157
+ * @param ctx the parse tree
158
+ */
159
+ exitMemberInvocation?: (ctx: MemberInvocationContext) => void;
160
+ /**
161
+ * Enter a parse tree produced by the `memberIndex`
162
+ * labeled alternative in `OpraFilterParser.indexer`.
163
+ * @param ctx the parse tree
164
+ */
165
+ enterMemberIndex?: (ctx: MemberIndexContext) => void;
166
+ /**
167
+ * Exit a parse tree produced by the `memberIndex`
168
+ * labeled alternative in `OpraFilterParser.indexer`.
169
+ * @param ctx the parse tree
170
+ */
171
+ exitMemberIndex?: (ctx: MemberIndexContext) => void;
172
+ /**
173
+ * Enter a parse tree produced by the `numberIndex`
174
+ * labeled alternative in `OpraFilterParser.indexer`.
175
+ * @param ctx the parse tree
176
+ */
177
+ enterNumberIndex?: (ctx: NumberIndexContext) => void;
178
+ /**
179
+ * Exit a parse tree produced by the `numberIndex`
180
+ * labeled alternative in `OpraFilterParser.indexer`.
181
+ * @param ctx the parse tree
182
+ */
183
+ exitNumberIndex?: (ctx: NumberIndexContext) => void;
184
+ /**
185
+ * Enter a parse tree produced by `OpraFilterParser.function`.
186
+ * @param ctx the parse tree
187
+ */
188
+ enterFunction?: (ctx: FunctionContext) => void;
189
+ /**
190
+ * Exit a parse tree produced by `OpraFilterParser.function`.
191
+ * @param ctx the parse tree
192
+ */
193
+ exitFunction?: (ctx: FunctionContext) => void;
194
+ /**
195
+ * Enter a parse tree produced by `OpraFilterParser.paramList`.
196
+ * @param ctx the parse tree
197
+ */
198
+ enterParamList?: (ctx: ParamListContext) => void;
199
+ /**
200
+ * Exit a parse tree produced by `OpraFilterParser.paramList`.
201
+ * @param ctx the parse tree
202
+ */
203
+ exitParamList?: (ctx: ParamListContext) => void;
204
+ /**
205
+ * Enter a parse tree produced by `OpraFilterParser.unit`.
206
+ * @param ctx the parse tree
207
+ */
208
+ enterUnit?: (ctx: UnitContext) => void;
209
+ /**
210
+ * Exit a parse tree produced by `OpraFilterParser.unit`.
211
+ * @param ctx the parse tree
212
+ */
213
+ exitUnit?: (ctx: UnitContext) => void;
214
+ /**
215
+ * Enter a parse tree produced by `OpraFilterParser.dateTimePrecision`.
216
+ * @param ctx the parse tree
217
+ */
218
+ enterDateTimePrecision?: (ctx: DateTimePrecisionContext) => void;
219
+ /**
220
+ * Exit a parse tree produced by `OpraFilterParser.dateTimePrecision`.
221
+ * @param ctx the parse tree
222
+ */
223
+ exitDateTimePrecision?: (ctx: DateTimePrecisionContext) => void;
224
+ /**
225
+ * Enter a parse tree produced by `OpraFilterParser.pluralDateTimePrecision`.
226
+ * @param ctx the parse tree
227
+ */
228
+ enterPluralDateTimePrecision?: (ctx: PluralDateTimePrecisionContext) => void;
229
+ /**
230
+ * Exit a parse tree produced by `OpraFilterParser.pluralDateTimePrecision`.
231
+ * @param ctx the parse tree
232
+ */
233
+ exitPluralDateTimePrecision?: (ctx: PluralDateTimePrecisionContext) => void;
234
+ /**
235
+ * Enter a parse tree produced by `OpraFilterParser.qualifiedIdentifier`.
236
+ * @param ctx the parse tree
237
+ */
238
+ enterQualifiedIdentifier?: (ctx: QualifiedIdentifierContext) => void;
239
+ /**
240
+ * Exit a parse tree produced by `OpraFilterParser.qualifiedIdentifier`.
241
+ * @param ctx the parse tree
242
+ */
243
+ exitQualifiedIdentifier?: (ctx: QualifiedIdentifierContext) => void;
244
+ /**
245
+ * Enter a parse tree produced by `OpraFilterParser.externalConstant`.
246
+ * @param ctx the parse tree
247
+ */
248
+ enterExternalConstant?: (ctx: ExternalConstantContext) => void;
249
+ /**
250
+ * Exit a parse tree produced by `OpraFilterParser.externalConstant`.
251
+ * @param ctx the parse tree
252
+ */
253
+ exitExternalConstant?: (ctx: ExternalConstantContext) => void;
254
+ /**
255
+ * Enter a parse tree produced by `OpraFilterParser.identifier`.
256
+ * @param ctx the parse tree
257
+ */
258
+ enterIdentifier?: (ctx: IdentifierContext) => void;
259
+ /**
260
+ * Exit a parse tree produced by `OpraFilterParser.identifier`.
261
+ * @param ctx the parse tree
262
+ */
263
+ exitIdentifier?: (ctx: IdentifierContext) => void;
264
+ /**
265
+ * Enter a parse tree produced by the `numberLiteral`
266
+ * labeled alternative in `OpraFilterParser.literal`.
267
+ * @param ctx the parse tree
268
+ */
269
+ enterNumberLiteral?: (ctx: NumberLiteralContext) => void;
270
+ /**
271
+ * Exit a parse tree produced by the `numberLiteral`
272
+ * labeled alternative in `OpraFilterParser.literal`.
273
+ * @param ctx the parse tree
274
+ */
275
+ exitNumberLiteral?: (ctx: NumberLiteralContext) => void;
276
+ /**
277
+ * Enter a parse tree produced by the `infinityLiteral`
278
+ * labeled alternative in `OpraFilterParser.literal`.
279
+ * @param ctx the parse tree
280
+ */
281
+ enterInfinityLiteral?: (ctx: InfinityLiteralContext) => void;
282
+ /**
283
+ * Exit a parse tree produced by the `infinityLiteral`
284
+ * labeled alternative in `OpraFilterParser.literal`.
285
+ * @param ctx the parse tree
286
+ */
287
+ exitInfinityLiteral?: (ctx: InfinityLiteralContext) => void;
288
+ /**
289
+ * Enter a parse tree produced by the `booleanLiteral`
290
+ * labeled alternative in `OpraFilterParser.literal`.
291
+ * @param ctx the parse tree
292
+ */
293
+ enterBooleanLiteral?: (ctx: BooleanLiteralContext) => void;
294
+ /**
295
+ * Exit a parse tree produced by the `booleanLiteral`
296
+ * labeled alternative in `OpraFilterParser.literal`.
297
+ * @param ctx the parse tree
298
+ */
299
+ exitBooleanLiteral?: (ctx: BooleanLiteralContext) => void;
300
+ /**
301
+ * Enter a parse tree produced by the `nullLiteral`
302
+ * labeled alternative in `OpraFilterParser.literal`.
303
+ * @param ctx the parse tree
304
+ */
305
+ enterNullLiteral?: (ctx: NullLiteralContext) => void;
306
+ /**
307
+ * Exit a parse tree produced by the `nullLiteral`
308
+ * labeled alternative in `OpraFilterParser.literal`.
309
+ * @param ctx the parse tree
310
+ */
311
+ exitNullLiteral?: (ctx: NullLiteralContext) => void;
312
+ /**
313
+ * Enter a parse tree produced by the `dateLiteral`
314
+ * labeled alternative in `OpraFilterParser.literal`.
315
+ * @param ctx the parse tree
316
+ */
317
+ enterDateLiteral?: (ctx: DateLiteralContext) => void;
318
+ /**
319
+ * Exit a parse tree produced by the `dateLiteral`
320
+ * labeled alternative in `OpraFilterParser.literal`.
321
+ * @param ctx the parse tree
322
+ */
323
+ exitDateLiteral?: (ctx: DateLiteralContext) => void;
324
+ /**
325
+ * Enter a parse tree produced by the `dateTimeLiteral`
326
+ * labeled alternative in `OpraFilterParser.literal`.
327
+ * @param ctx the parse tree
328
+ */
329
+ enterDateTimeLiteral?: (ctx: DateTimeLiteralContext) => void;
330
+ /**
331
+ * Exit a parse tree produced by the `dateTimeLiteral`
332
+ * labeled alternative in `OpraFilterParser.literal`.
333
+ * @param ctx the parse tree
334
+ */
335
+ exitDateTimeLiteral?: (ctx: DateTimeLiteralContext) => void;
336
+ /**
337
+ * Enter a parse tree produced by the `timeLiteral`
338
+ * labeled alternative in `OpraFilterParser.literal`.
339
+ * @param ctx the parse tree
340
+ */
341
+ enterTimeLiteral?: (ctx: TimeLiteralContext) => void;
342
+ /**
343
+ * Exit a parse tree produced by the `timeLiteral`
344
+ * labeled alternative in `OpraFilterParser.literal`.
345
+ * @param ctx the parse tree
346
+ */
347
+ exitTimeLiteral?: (ctx: TimeLiteralContext) => void;
348
+ /**
349
+ * Enter a parse tree produced by the `stringLiteral`
350
+ * labeled alternative in `OpraFilterParser.literal`.
351
+ * @param ctx the parse tree
352
+ */
353
+ enterStringLiteral?: (ctx: StringLiteralContext) => void;
354
+ /**
355
+ * Exit a parse tree produced by the `stringLiteral`
356
+ * labeled alternative in `OpraFilterParser.literal`.
357
+ * @param ctx the parse tree
358
+ */
359
+ exitStringLiteral?: (ctx: StringLiteralContext) => void;
360
+ /**
361
+ * Enter a parse tree produced by `OpraFilterParser.compOp`.
362
+ * @param ctx the parse tree
363
+ */
364
+ enterCompOp?: (ctx: CompOpContext) => void;
365
+ /**
366
+ * Exit a parse tree produced by `OpraFilterParser.compOp`.
367
+ * @param ctx the parse tree
368
+ */
369
+ exitCompOp?: (ctx: CompOpContext) => void;
370
+ /**
371
+ * Enter a parse tree produced by `OpraFilterParser.arthOp`.
372
+ * @param ctx the parse tree
373
+ */
374
+ enterArthOp?: (ctx: ArthOpContext) => void;
375
+ /**
376
+ * Exit a parse tree produced by `OpraFilterParser.arthOp`.
377
+ * @param ctx the parse tree
378
+ */
379
+ exitArthOp?: (ctx: ArthOpContext) => void;
380
+ /**
381
+ * Enter a parse tree produced by `OpraFilterParser.polarOp`.
382
+ * @param ctx the parse tree
383
+ */
384
+ enterPolarOp?: (ctx: PolarOpContext) => void;
385
+ /**
386
+ * Exit a parse tree produced by `OpraFilterParser.polarOp`.
387
+ * @param ctx the parse tree
388
+ */
389
+ exitPolarOp?: (ctx: PolarOpContext) => void;
390
+ /**
391
+ * Enter a parse tree produced by `OpraFilterParser.logOp`.
392
+ * @param ctx the parse tree
393
+ */
394
+ enterLogOp?: (ctx: LogOpContext) => void;
395
+ /**
396
+ * Exit a parse tree produced by `OpraFilterParser.logOp`.
397
+ * @param ctx the parse tree
398
+ */
399
+ exitLogOp?: (ctx: LogOpContext) => void;
400
+ /**
401
+ * Enter a parse tree produced by `OpraFilterParser.boolean`.
402
+ * @param ctx the parse tree
403
+ */
404
+ enterBoolean?: (ctx: BooleanContext) => void;
405
+ /**
406
+ * Exit a parse tree produced by `OpraFilterParser.boolean`.
407
+ * @param ctx the parse tree
408
+ */
409
+ exitBoolean?: (ctx: BooleanContext) => void;
410
+ /**
411
+ * Enter a parse tree produced by `OpraFilterParser.null`.
412
+ * @param ctx the parse tree
413
+ */
414
+ enterNull?: (ctx: NullContext) => void;
415
+ /**
416
+ * Exit a parse tree produced by `OpraFilterParser.null`.
417
+ * @param ctx the parse tree
418
+ */
419
+ exitNull?: (ctx: NullContext) => void;
420
+ /**
421
+ * Enter a parse tree produced by `OpraFilterParser.infinity`.
422
+ * @param ctx the parse tree
423
+ */
424
+ enterInfinity?: (ctx: InfinityContext) => void;
425
+ /**
426
+ * Exit a parse tree produced by `OpraFilterParser.infinity`.
427
+ * @param ctx the parse tree
428
+ */
429
+ exitInfinity?: (ctx: InfinityContext) => void;
430
+ }