@grepr/cli 1.6.21-c273e76 → 1.6.22-a8cc69a

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.
@@ -2606,6 +2606,11 @@ export interface components {
2606
2606
  type: AddToListAttributeActionType;
2607
2607
  value: components["schemas"]["Any"];
2608
2608
  };
2609
+ /**
2610
+ * @description Aggregation function.
2611
+ * @enum {string}
2612
+ */
2613
+ AggType: AggType;
2609
2614
  AggregationAccumulator: {
2610
2615
  /** @enum {string} */
2611
2616
  accumulatorType?: AggregationAccumulatorAccumulatorType;
@@ -2618,11 +2623,7 @@ export interface components {
2618
2623
  args?: Record<string, never>[];
2619
2624
  /** @description Output suffix. Omitted = preserve source metric name; in rule conditions the output is addressed as `<alias>.val` (at most one as-less aggregation per block). */
2620
2625
  as?: string;
2621
- /**
2622
- * @description Aggregation function.
2623
- * @enum {string}
2624
- */
2625
- fn: AggregationDeclFn;
2626
+ fn: components["schemas"]["AggType"];
2626
2627
  };
2627
2628
  /**
2628
2629
  * AI Pipeline Inputs Schema
@@ -5911,6 +5912,15 @@ export interface components {
5911
5912
  /** @example operation_name */
5912
5913
  name: string;
5913
5914
  objects: components["schemas"]["ObjectsConfig"];
5915
+ /**
5916
+ * @description Per-metric-name overrides for space (cross-object) aggregation.
5917
+ * @example {
5918
+ * "system.cpu.utilization": "AVG"
5919
+ * }
5920
+ */
5921
+ spaceAggOverrides?: {
5922
+ [key: string]: components["schemas"]["AggType"];
5923
+ };
5914
5924
  timeGranularity: components["schemas"]["TimeGranularity"];
5915
5925
  /**
5916
5926
  * @description Metric reducer. (enum property replaced by openapi-typescript)
@@ -8930,7 +8940,7 @@ export interface components {
8930
8940
  * }
8931
8941
  */
8932
8942
  aggFnOverrides?: {
8933
- [key: string]: AggregationDeclFn;
8943
+ [key: string]: components["schemas"]["AggType"];
8934
8944
  };
8935
8945
  /**
8936
8946
  * Format: ISO-8601
@@ -17107,17 +17117,20 @@ export declare enum ActivityLogsSearchStatuses {
17107
17117
  export declare enum AddToListAttributeActionType {
17108
17118
  attribute_add_action = "attribute-add-action"
17109
17119
  }
17110
- export declare enum AggregationAccumulatorAccumulatorType {
17111
- AVERAGE = "AVERAGE"
17112
- }
17113
- export declare enum AggregationDeclFn {
17120
+ export declare enum AggType {
17114
17121
  LATEST = "LATEST",
17115
17122
  SUM = "SUM",
17116
17123
  AVG = "AVG",
17117
17124
  CUMULATIVE = "CUMULATIVE",
17125
+ CUMULATIVE_UPDOWN = "CUMULATIVE_UPDOWN",
17118
17126
  DEFAULT = "DEFAULT",
17119
17127
  PERCENTILE = "PERCENTILE",
17120
- SLOPE = "SLOPE"
17128
+ SLOPE = "SLOPE",
17129
+ MAX = "MAX",
17130
+ MIN = "MIN"
17131
+ }
17132
+ export declare enum AggregationAccumulatorAccumulatorType {
17133
+ AVERAGE = "AVERAGE"
17121
17134
  }
17122
17135
  export declare enum AllQueryNodeType {
17123
17136
  all_query_node = "all-query-node"