@grepr/cli 1.6.22-a8cc69a → 1.6.23-fd4eee2

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.
@@ -6266,6 +6266,13 @@ export interface components {
6266
6266
  * @example https://logs.example.com:4318/v1/logs
6267
6267
  */
6268
6268
  logsEndpoint?: string;
6269
+ /**
6270
+ * @description Wire encoding for outbound OTLP HTTP requests.
6271
+ * @default proto
6272
+ * @example proto
6273
+ * @enum {string}
6274
+ */
6275
+ outputEncoding?: OtlpOutputEncoding;
6269
6276
  /**
6270
6277
  * @description A unique token generated by Grepr in plain-text
6271
6278
  * @example plain-text-secret
@@ -17480,6 +17487,10 @@ export declare enum NrqlQueryPredicateType {
17480
17487
  export declare enum OrQueryNodeType {
17481
17488
  or_query_node = "or-query-node"
17482
17489
  }
17490
+ export declare enum OtlpOutputEncoding {
17491
+ proto = "proto",
17492
+ json = "json"
17493
+ }
17483
17494
  export declare enum OtlpLogAgentSourceType {
17484
17495
  otlp_log_agent_source = "otlp-log-agent-source"
17485
17496
  }