@grepr/cli 1.6.44-fdbcf78 → 1.6.45-6a646fd
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.
|
@@ -7357,6 +7357,12 @@ export interface components {
|
|
|
7357
7357
|
};
|
|
7358
7358
|
ParseQueryRequest: {
|
|
7359
7359
|
query?: components["schemas"]["EventPredicate"];
|
|
7360
|
+
/**
|
|
7361
|
+
* @description Which runtime representation to validate the query against. Defaults to PARSED_QUERY_NODE (returns the parsed tree for the in-browser matcher). Use EVENT_PREDICATE to validate against the Java predicate the Flink pipeline runs; no parsed tree is returned in that case.
|
|
7362
|
+
* @default PARSED_QUERY_NODE
|
|
7363
|
+
* @enum {string}
|
|
7364
|
+
*/
|
|
7365
|
+
validationTarget?: ParseQueryRequestValidationTarget;
|
|
7360
7366
|
};
|
|
7361
7367
|
ParseQueryResponse: {
|
|
7362
7368
|
/** @description The error message if there is an error */
|
|
@@ -19949,6 +19955,10 @@ export declare enum OtlpTraceAgentSourceType {
|
|
|
19949
19955
|
export declare enum OtlpTraceSinkType {
|
|
19950
19956
|
otlp_trace_sink = "otlp-trace-sink"
|
|
19951
19957
|
}
|
|
19958
|
+
export declare enum ParseQueryRequestValidationTarget {
|
|
19959
|
+
PARSED_QUERY_NODE = "PARSED_QUERY_NODE",
|
|
19960
|
+
EVENT_PREDICATE = "EVENT_PREDICATE"
|
|
19961
|
+
}
|
|
19952
19962
|
export declare enum PassthroughNodeKind {
|
|
19953
19963
|
passthrough_node = "passthrough-node"
|
|
19954
19964
|
}
|