@grepr/cli 1.6.44-fdbcf78 → 1.6.46-dea346e

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.
@@ -3467,6 +3467,7 @@ export interface components {
3467
3467
  strategy: components["schemas"]["AttributesMergeStrategy"];
3468
3468
  };
3469
3469
  AuthConfig: {
3470
+ adminPortalClientId?: string;
3470
3471
  appClientId: string;
3471
3472
  authServerUrl: string;
3472
3473
  provider: string;
@@ -7357,6 +7358,12 @@ export interface components {
7357
7358
  };
7358
7359
  ParseQueryRequest: {
7359
7360
  query?: components["schemas"]["EventPredicate"];
7361
+ /**
7362
+ * @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.
7363
+ * @default PARSED_QUERY_NODE
7364
+ * @enum {string}
7365
+ */
7366
+ validationTarget?: ParseQueryRequestValidationTarget;
7360
7367
  };
7361
7368
  ParseQueryResponse: {
7362
7369
  /** @description The error message if there is an error */
@@ -19949,6 +19956,10 @@ export declare enum OtlpTraceAgentSourceType {
19949
19956
  export declare enum OtlpTraceSinkType {
19950
19957
  otlp_trace_sink = "otlp-trace-sink"
19951
19958
  }
19959
+ export declare enum ParseQueryRequestValidationTarget {
19960
+ PARSED_QUERY_NODE = "PARSED_QUERY_NODE",
19961
+ EVENT_PREDICATE = "EVENT_PREDICATE"
19962
+ }
19952
19963
  export declare enum PassthroughNodeKind {
19953
19964
  passthrough_node = "passthrough-node"
19954
19965
  }