@gooddata/api-client-tiger 11.42.0 → 11.43.0-alpha.1

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.
@@ -61,64 +61,87 @@ export interface AiAgentListItemResponse {
61
61
  export interface AiAgentListResponse {
62
62
  'agents': Array<AiAgentListItemResponse>;
63
63
  }
64
- export interface AiAlertProposal {
65
- [key: string]: any;
64
+ export interface AiAlertDatasetIdentifier {
66
65
  /**
67
- * Alert title.
66
+ * Date dataset identifier.
68
67
  */
69
- 'title': string;
68
+ 'id': string;
70
69
  /**
71
- * Metric identifier to monitor.
70
+ * Dataset object type.
72
71
  */
73
- 'metricId': string;
72
+ 'type'?: AiAlertDatasetIdentifierTypeEnum;
73
+ }
74
+ export type AiAlertDatasetIdentifierTypeEnum = 'dataset';
75
+ export interface AiAlertDatasetRef {
74
76
  /**
75
- * Alert condition operator.
77
+ * Date dataset identifier.
76
78
  */
77
- 'operator': string;
79
+ 'identifier': AiAlertDatasetIdentifier;
80
+ 'title'?: string | null;
81
+ }
82
+ /**
83
+ * The alert itself (mirrors canonical AutomationAlert).
84
+ */
85
+ export interface AiAlertDefinition {
78
86
  /**
79
- * Notification channel identifier.
87
+ * Execution (AFM) definition of the alert.
80
88
  */
81
- 'notificationChannelId': string;
82
- 'description'?: AiDescription;
83
- 'automationId'?: AiAutomationid;
84
- 'metricTitle'?: AiMetrictitle;
85
- 'metricFormat'?: AiMetricformat;
86
- 'threshold'?: AiThreshold;
87
- 'fromValue'?: AiFromvalue;
88
- 'toValue'?: AiTovalue;
89
- 'compareMetricId'?: AiComparemetricid;
90
- 'compareMetricTitle'?: AiComparemetrictitle;
91
- 'compareMetricFormat'?: AiComparemetricformat;
92
- 'arithmeticOperator'?: AiArithmeticoperator;
93
- 'granularity'?: AiGranularity;
94
- 'dateDatasetId'?: AiDatedatasetid;
95
- 'dateDatasetTitle'?: AiDatedatasettitle;
96
- 'sensitivity'?: AiSensitivity;
89
+ 'execution': AiAlertExecution;
90
+ 'condition': AiCondition;
97
91
  /**
98
- * Alert execution filters.
92
+ * Trigger behavior.
99
93
  */
100
- 'filters': Array<object>;
94
+ 'trigger'?: AiAlertTrigger;
95
+ 'interval'?: AiIntervalGranularity | null;
96
+ }
97
+ /**
98
+ * Execution definition (AFM) of the alert. ``measures`` / ``attributes`` / ``filters`` are opaque AFM wire objects (same treatment as ``KeyDriverAnalysis.filters``); the semantic typing the FE renders lives on the typed ``condition`` union.
99
+ */
100
+ export interface AiAlertExecution {
101
+ [key: string]: any;
102
+ /**
103
+ * Metrics computed by the alert (1-2).
104
+ */
105
+ 'measures'?: Array<object>;
101
106
  /**
102
107
  * Attribute slicing configuration.
103
108
  */
104
- 'attributes': Array<object>;
105
- 'forMode'?: AiFormode;
106
- 'forLabel'?: AiForlabel;
107
- 'notificationChannelName'?: AiNotificationchannelname;
109
+ 'attributes'?: Array<object>;
110
+ /**
111
+ * Alert execution filters.
112
+ */
113
+ 'filters'?: Array<object>;
114
+ }
115
+ /**
116
+ * Structured pre-creation alert proposal — the single model used as the HTTP DTO, the persisted shape, and the in-memory conversation-state object.
117
+ */
118
+ export interface AiAlertProposal {
119
+ /**
120
+ * Alert title.
121
+ */
122
+ 'title': string;
123
+ /**
124
+ * The alert definition (condition, execution, trigger).
125
+ */
126
+ 'alert': AiAlertDefinition;
127
+ /**
128
+ * Notification channel for delivery.
129
+ */
130
+ 'notificationChannel': AiNotificationChannelRef;
131
+ 'description'?: string | null;
132
+ 'automationId'?: string | null;
108
133
  /**
109
134
  * Recipients shown in the proposal.
110
135
  */
111
- 'recipients': Array<AiAlertRecipient>;
112
- 'trigger'?: AiTrigger;
113
- 'triggerInterval'?: AiTriggerinterval;
114
- 'cron'?: AiCron;
115
- 'timezone'?: AiTimezone;
116
- 'dashboardId'?: AiDashboardid;
117
- 'dashboardTitle'?: AiDashboardtitle;
136
+ 'recipients'?: Array<AiAlertRecipient>;
137
+ 'schedule'?: AiAlertSchedule | null;
138
+ 'dashboard'?: AiDashboardRef | null;
139
+ 'forMode'?: string | null;
140
+ 'forLabel'?: string | null;
118
141
  /**
119
142
  * Confirmation call to action.
120
143
  */
121
- 'cta': string;
144
+ 'cta'?: string;
122
145
  }
123
146
  export interface AiAlertProposalPart {
124
147
  /**
@@ -136,6 +159,19 @@ export interface AiAlertRecipient {
136
159
  'id'?: string | null;
137
160
  'email'?: string | null;
138
161
  }
162
+ export interface AiAlertSchedule {
163
+ 'cron'?: string | null;
164
+ 'timezone'?: string | null;
165
+ }
166
+ /**
167
+ * Trigger behavior for the alert.
168
+ */
169
+ export declare const AiAlertTrigger: {
170
+ readonly ALWAYS: "ALWAYS";
171
+ readonly ONCE: "ONCE";
172
+ readonly ONCE_PER_INTERVAL: "ONCE_PER_INTERVAL";
173
+ };
174
+ export type AiAlertTrigger = typeof AiAlertTrigger[keyof typeof AiAlertTrigger];
139
175
  export interface AiAllTimeDateFilterBodyInput {
140
176
  'dataset': AiAfmObjectIdentifier;
141
177
  'granularity'?: AiDateGranularityInput | null;
@@ -161,6 +197,39 @@ export interface AiAllowedRelationshipType {
161
197
  'targetType': string;
162
198
  'allowOrphans'?: boolean;
163
199
  }
200
+ export interface AiAnomalyCondition {
201
+ /**
202
+ * Anomaly detection condition.
203
+ */
204
+ 'anomaly': AiAnomalyDetection;
205
+ }
206
+ export interface AiAnomalyDetection {
207
+ /**
208
+ * Metric analyzed for anomalies.
209
+ */
210
+ 'measure': AiMetricOperand;
211
+ 'sensitivity': AiSensitivity;
212
+ /**
213
+ * Time-based granularity of the analysis.
214
+ */
215
+ 'granularity': AiAnomalyDetectionGranularity;
216
+ /**
217
+ * Date dataset used for anomaly detection.
218
+ */
219
+ 'dataset': AiAlertDatasetRef;
220
+ }
221
+ /**
222
+ * Time-based granularity supported by anomaly detection.
223
+ */
224
+ export declare const AiAnomalyDetectionGranularity: {
225
+ readonly HOUR: "HOUR";
226
+ readonly DAY: "DAY";
227
+ readonly WEEK: "WEEK";
228
+ readonly MONTH: "MONTH";
229
+ readonly QUARTER: "QUARTER";
230
+ readonly YEAR: "YEAR";
231
+ };
232
+ export type AiAnomalyDetectionGranularity = typeof AiAnomalyDetectionGranularity[keyof typeof AiAnomalyDetectionGranularity];
164
233
  export declare const AiAppApplicationDtosAfmFilterDefinitionDateGranularity: {
165
234
  readonly MINUTE: "MINUTE";
166
235
  readonly HOUR: "HOUR";
@@ -205,11 +274,28 @@ export interface AiAppDomainConversationsVisualizationRankingFilter {
205
274
  'bottom'?: number;
206
275
  }
207
276
  export type AiAppDomainConversationsVisualizationRankingFilterTypeEnum = 'ranking_filter';
277
+ export interface AiArithmeticMeasure {
278
+ /**
279
+ * Arithmetic operator between the two metrics.
280
+ */
281
+ 'operator': AiArithmeticOperator;
282
+ /**
283
+ * First metric.
284
+ */
285
+ 'left': AiMetricOperand;
286
+ /**
287
+ * Second metric.
288
+ */
289
+ 'right': AiMetricOperand;
290
+ }
208
291
  /**
209
- * Relative alert arithmetic operator.
292
+ * Arithmetic operator between two metrics of a relative condition.
210
293
  */
211
- export interface AiArithmeticoperator {
212
- }
294
+ export declare const AiArithmeticOperator: {
295
+ readonly DIFFERENCE: "DIFFERENCE";
296
+ readonly CHANGE: "CHANGE";
297
+ };
298
+ export type AiArithmeticOperator = typeof AiArithmeticOperator[keyof typeof AiArithmeticOperator];
213
299
  export interface AiAttributeFilter {
214
300
  'type': AiAttributeFilterTypeEnum;
215
301
  'using': string;
@@ -232,11 +318,6 @@ export interface AiAttributeSortItem {
232
318
  export type AiAttributeSortItemTypeEnum = 'attribute_sort';
233
319
  export type AiAttributeSortItemDirectionEnum = 'ASC' | 'DESC';
234
320
  export type AiAttributeSortItemAggregationEnum = 'SUM';
235
- /**
236
- * Automation identifier proposed for creation.
237
- */
238
- export interface AiAutomationid {
239
- }
240
321
  export interface AiBoundedFilterInput {
241
322
  'granularity': AiDateGranularityInput;
242
323
  'from'?: number | null;
@@ -252,21 +333,35 @@ export interface AiBucketRefObject {
252
333
  }
253
334
  export interface AiClusteringAmount {
254
335
  }
255
- /**
256
- * Comparison metric display format.
257
- */
258
- export interface AiComparemetricformat {
336
+ export interface AiComparison {
337
+ /**
338
+ * Comparison operator.
339
+ */
340
+ 'operator': AiComparisonConditionOperator;
341
+ /**
342
+ * Metric being compared.
343
+ */
344
+ 'left': AiMetricOperand;
345
+ 'right': AiRight;
259
346
  }
260
- /**
261
- * Comparison metric identifier.
262
- */
263
- export interface AiComparemetricid {
347
+ export interface AiComparisonCondition {
348
+ /**
349
+ * Scalar comparison condition.
350
+ */
351
+ 'comparison': AiComparison;
264
352
  }
265
353
  /**
266
- * Comparison metric display title.
354
+ * Operator of a scalar comparison condition.
267
355
  */
268
- export interface AiComparemetrictitle {
269
- }
356
+ export declare const AiComparisonConditionOperator: {
357
+ readonly GREATER_THAN: "GREATER_THAN";
358
+ readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
359
+ readonly LESS_THAN: "LESS_THAN";
360
+ readonly LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO";
361
+ readonly EQUAL_TO: "EQUAL_TO";
362
+ readonly NOT_EQUAL_TO: "NOT_EQUAL_TO";
363
+ };
364
+ export type AiComparisonConditionOperator = typeof AiComparisonConditionOperator[keyof typeof AiComparisonConditionOperator];
270
365
  export interface AiComparisonMeasureValueFilter {
271
366
  'comparisonMeasureValueFilter': AiComparisonMeasureValueFilterBody;
272
367
  }
@@ -307,6 +402,11 @@ export interface AiCompoundMeasureValueFilterBodyConditionsInner {
307
402
  'comparison': AiMeasureValueComparisonInner;
308
403
  'range': AiMeasureValueRangeInner;
309
404
  }
405
+ /**
406
+ * @type AiCondition
407
+ * Alert trigger condition.
408
+ */
409
+ export type AiCondition = AiAnomalyCondition | AiComparisonCondition | AiRangeCondition | AiRelativeCondition;
310
410
  /**
311
411
  * @type AiContent
312
412
  * Conversation item content payload.
@@ -465,20 +565,12 @@ export interface AiConversationUpdateRequest {
465
565
  export interface AiCreateConversationRequest {
466
566
  'agentId'?: string | null;
467
567
  }
468
- /**
469
- * Optional cron schedule.
470
- */
471
- export interface AiCron {
472
- }
473
- /**
474
- * Bound dashboard identifier.
475
- */
476
- export interface AiDashboardid {
477
- }
478
- /**
479
- * Bound dashboard display title.
480
- */
481
- export interface AiDashboardtitle {
568
+ export interface AiDashboardRef {
569
+ /**
570
+ * Bound dashboard identifier.
571
+ */
572
+ 'id': string;
573
+ 'title'?: string | null;
482
574
  }
483
575
  export interface AiDateFilterAbsolute {
484
576
  'type': AiDateFilterAbsoluteTypeEnum;
@@ -535,16 +627,6 @@ export declare const AiDateGranularityInput: {
535
627
  readonly FISCAL_YEAR: "FISCAL_YEAR";
536
628
  };
537
629
  export type AiDateGranularityInput = typeof AiDateGranularityInput[keyof typeof AiDateGranularityInput];
538
- /**
539
- * Anomaly date dataset identifier.
540
- */
541
- export interface AiDatedatasetid {
542
- }
543
- /**
544
- * Anomaly date dataset display title.
545
- */
546
- export interface AiDatedatasettitle {
547
- }
548
630
  /**
549
631
  * Response for DELETE /documents/{documentId}.
550
632
  */
@@ -552,11 +634,6 @@ export interface AiDeleteDocumentResponse {
552
634
  'success': boolean;
553
635
  'message': string;
554
636
  }
555
- /**
556
- * Alert description.
557
- */
558
- export interface AiDescription {
559
- }
560
637
  /**
561
638
  * Document metadata returned by GET /documents/{document_id} and list.
562
639
  */
@@ -614,23 +691,8 @@ export type AiFilterByValueTypeEnum = 'attribute_filter' | 'date_filter' | 'rank
614
691
  export type AiFilterByValueConditionEnum = 'contains' | 'doesNotContain' | 'startsWith' | 'doesNotStartWith' | 'endsWith' | 'doesNotEndWith';
615
692
  export interface AiForecastPeriod {
616
693
  }
617
- /**
618
- * Human-readable \'For\' summary.
619
- */
620
- export interface AiForlabel {
621
- }
622
- /**
623
- * Display mode for the monitored population.
624
- */
625
- export interface AiFormode {
626
- }
627
694
  export interface AiFrom {
628
695
  }
629
- /**
630
- * Range lower bound.
631
- */
632
- export interface AiFromvalue {
633
- }
634
696
  export interface AiFunctionCallContent {
635
697
  [key: string]: any;
636
698
  /**
@@ -669,11 +731,6 @@ export interface AiFunctionResultContent {
669
731
  'result': string;
670
732
  }
671
733
  export type AiFunctionResultContentTypeEnum = 'toolResult';
672
- /**
673
- * Anomaly granularity.
674
- */
675
- export interface AiGranularity {
676
- }
677
734
  export interface AiHTTPValidationError {
678
735
  'detail'?: Array<AiValidationError>;
679
736
  }
@@ -685,6 +742,17 @@ export interface AiInlineFilterDefinitionBody {
685
742
  'applyOnResult'?: boolean | null;
686
743
  'localIdentifier'?: string | null;
687
744
  }
745
+ /**
746
+ * Date granularity for the interval of an ONCE_PER_INTERVAL trigger.
747
+ */
748
+ export declare const AiIntervalGranularity: {
749
+ readonly DAY: "DAY";
750
+ readonly WEEK: "WEEK";
751
+ readonly MONTH: "MONTH";
752
+ readonly QUARTER: "QUARTER";
753
+ readonly YEAR: "YEAR";
754
+ };
755
+ export type AiIntervalGranularity = typeof AiIntervalGranularity[keyof typeof AiIntervalGranularity];
688
756
  export interface AiKeyDriverAnalysis {
689
757
  [key: string]: any;
690
758
  /**
@@ -784,6 +852,17 @@ export interface AiMeasureValueRangeInner {
784
852
  'from': number;
785
853
  'to': number;
786
854
  }
855
+ /**
856
+ * Reference to a metric by AFM local identifier.
857
+ */
858
+ export interface AiMetricOperand {
859
+ /**
860
+ * Local identifier of the metric to be compared.
861
+ */
862
+ 'localIdentifier': string;
863
+ 'format'?: string | null;
864
+ 'title'?: string | null;
865
+ }
787
866
  export interface AiMetricSortItem {
788
867
  'type': AiMetricSortItemTypeEnum;
789
868
  'direction': AiMetricSortItemDirectionEnum;
@@ -821,16 +900,6 @@ export declare const AiMetricValueFilterConditionRange: {
821
900
  readonly NOT_BETWEEN: "NOT_BETWEEN";
822
901
  };
823
902
  export type AiMetricValueFilterConditionRange = typeof AiMetricValueFilterConditionRange[keyof typeof AiMetricValueFilterConditionRange];
824
- /**
825
- * Metric display format.
826
- */
827
- export interface AiMetricformat {
828
- }
829
- /**
830
- * Metric display title.
831
- */
832
- export interface AiMetrictitle {
833
- }
834
903
  export interface AiMultipartContent {
835
904
  /**
836
905
  * Type of item content.
@@ -869,10 +938,12 @@ export interface AiNegativeAttributeFilterBody {
869
938
  'localIdentifier'?: string | null;
870
939
  'usesArbitraryValues'?: boolean | null;
871
940
  }
872
- /**
873
- * Notification channel display name.
874
- */
875
- export interface AiNotificationchannelname {
941
+ export interface AiNotificationChannelRef {
942
+ /**
943
+ * Notification channel identifier.
944
+ */
945
+ 'id': string;
946
+ 'name'?: string | null;
876
947
  }
877
948
  export declare const AiObjectType: {
878
949
  readonly UNIDENTIFIED: "unidentified";
@@ -953,6 +1024,38 @@ export interface AiQuerySortByInner {
953
1024
  export type AiQuerySortByInnerTypeEnum = 'attribute_sort' | 'metric_sort';
954
1025
  export type AiQuerySortByInnerDirectionEnum = 'ASC' | 'DESC';
955
1026
  export type AiQuerySortByInnerAggregationEnum = 'SUM';
1027
+ export interface AiRange {
1028
+ /**
1029
+ * Range operator.
1030
+ */
1031
+ 'operator': AiRangeConditionOperator;
1032
+ /**
1033
+ * Metric being compared.
1034
+ */
1035
+ 'measure': AiMetricOperand;
1036
+ /**
1037
+ * Range lower bound.
1038
+ */
1039
+ 'from': AiValueOperand;
1040
+ /**
1041
+ * Range upper bound.
1042
+ */
1043
+ 'to': AiValueOperand;
1044
+ }
1045
+ export interface AiRangeCondition {
1046
+ /**
1047
+ * Range condition.
1048
+ */
1049
+ 'range': AiRange;
1050
+ }
1051
+ /**
1052
+ * Operator of a range condition.
1053
+ */
1054
+ export declare const AiRangeConditionOperator: {
1055
+ readonly BETWEEN: "BETWEEN";
1056
+ readonly NOT_BETWEEN: "NOT_BETWEEN";
1057
+ };
1058
+ export type AiRangeConditionOperator = typeof AiRangeConditionOperator[keyof typeof AiRangeConditionOperator];
956
1059
  export interface AiRangeMeasureValueFilter {
957
1060
  'rangeMeasureValueFilter': AiRangeMeasureValueFilterBody;
958
1061
  }
@@ -998,6 +1101,35 @@ export interface AiReasoningContent {
998
1101
  'summary': string;
999
1102
  }
1000
1103
  export type AiReasoningContentTypeEnum = 'reasoning';
1104
+ export interface AiRelative {
1105
+ /**
1106
+ * Relative condition operator.
1107
+ */
1108
+ 'operator': AiRelativeConditionOperator;
1109
+ /**
1110
+ * Arithmetic combination of the two metrics.
1111
+ */
1112
+ 'measure': AiArithmeticMeasure;
1113
+ /**
1114
+ * Threshold the relative change is compared to.
1115
+ */
1116
+ 'threshold': AiValueOperand;
1117
+ }
1118
+ export interface AiRelativeCondition {
1119
+ /**
1120
+ * Relative (metric-to-metric) condition.
1121
+ */
1122
+ 'relative': AiRelative;
1123
+ }
1124
+ /**
1125
+ * Operator of a relative (metric-to-metric) condition.
1126
+ */
1127
+ export declare const AiRelativeConditionOperator: {
1128
+ readonly INCREASES_BY: "INCREASES_BY";
1129
+ readonly DECREASES_BY: "DECREASES_BY";
1130
+ readonly CHANGES_BY: "CHANGES_BY";
1131
+ };
1132
+ export type AiRelativeConditionOperator = typeof AiRelativeConditionOperator[keyof typeof AiRelativeConditionOperator];
1001
1133
  export interface AiRelativeDateFilterBodyInput {
1002
1134
  'dataset': AiAfmObjectIdentifier;
1003
1135
  'granularity': AiDateGranularityInput;
@@ -1032,6 +1164,11 @@ export type AiResponseFeedbackTypeEnum = 'POSITIVE' | 'NEGATIVE';
1032
1164
  export interface AiResponseFeedbackRequest {
1033
1165
  'feedback': AiResponseFeedback | null;
1034
1166
  }
1167
+ /**
1168
+ * @type AiRight
1169
+ * Value or metric the left side is compared to.
1170
+ */
1171
+ export type AiRight = AiMetricOperand | AiValueOperand;
1035
1172
  /**
1036
1173
  * Response for GET /search.
1037
1174
  */
@@ -1167,13 +1304,19 @@ export interface AiSendMessageRequest {
1167
1304
  export interface AiSendMessageSearchOptions {
1168
1305
  'objectTypes'?: Array<AiObjectType> | null;
1169
1306
  'searchLimit'?: number | null;
1307
+ 'includeTags'?: Array<string> | null;
1308
+ 'excludeTags'?: Array<string> | null;
1170
1309
  'allowedRelationshipTypes'?: Array<AiAllowedRelationshipType> | null;
1171
1310
  }
1172
1311
  /**
1173
- * Anomaly sensitivity.
1312
+ * Sensitivity level for anomaly detection.
1174
1313
  */
1175
- export interface AiSensitivity {
1176
- }
1314
+ export declare const AiSensitivity: {
1315
+ readonly LOW: "LOW";
1316
+ readonly MEDIUM: "MEDIUM";
1317
+ readonly HIGH: "HIGH";
1318
+ };
1319
+ export type AiSensitivity = typeof AiSensitivity[keyof typeof AiSensitivity];
1177
1320
  /**
1178
1321
  * A single skill available to the organization.
1179
1322
  */
@@ -1281,33 +1424,8 @@ export interface AiTextPart {
1281
1424
  'text': string;
1282
1425
  }
1283
1426
  export type AiTextPartTypeEnum = 'text';
1284
- /**
1285
- * Comparison threshold.
1286
- */
1287
- export interface AiThreshold {
1288
- }
1289
- /**
1290
- * Schedule timezone.
1291
- */
1292
- export interface AiTimezone {
1293
- }
1294
1427
  export interface AiTo {
1295
1428
  }
1296
- /**
1297
- * Range upper bound.
1298
- */
1299
- export interface AiTovalue {
1300
- }
1301
- /**
1302
- * Alert trigger behavior.
1303
- */
1304
- export interface AiTrigger {
1305
- }
1306
- /**
1307
- * Trigger interval for once-per-interval alerts.
1308
- */
1309
- export interface AiTriggerinterval {
1310
- }
1311
1429
  /**
1312
1430
  * Response for POST/PUT /documents.
1313
1431
  */
@@ -1388,8 +1506,19 @@ export interface AiValidationError {
1388
1506
  }
1389
1507
  export interface AiValidationErrorLocInner {
1390
1508
  }
1509
+ /**
1510
+ * Value of the alert threshold to compare the metric to.
1511
+ */
1391
1512
  export interface AiValue {
1392
1513
  }
1514
+ export interface AiValue1 {
1515
+ }
1516
+ /**
1517
+ * Literal threshold value.
1518
+ */
1519
+ export interface AiValueOperand {
1520
+ 'value': AiValue | null;
1521
+ }
1393
1522
  export interface AiVisualization {
1394
1523
  'type': AiVisualizationTypeEnum;
1395
1524
  'id': string;
@@ -1463,7 +1592,7 @@ export interface AiVisualizationMetricValueComparisonFilter {
1463
1592
  'type': AiVisualizationMetricValueComparisonFilterTypeEnum;
1464
1593
  'using': string;
1465
1594
  'condition': AiMetricValueFilterConditionComparison;
1466
- 'value': AiValue;
1595
+ 'value': AiValue1;
1467
1596
  'nullValuesAsZero': boolean;
1468
1597
  }
1469
1598
  export type AiVisualizationMetricValueComparisonFilterTypeEnum = 'metric_value_filter';