@gooddata/api-client-tiger 11.36.0-alpha.1 → 11.36.0-alpha.3

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.
@@ -12,22 +12,116 @@
12
12
  import { Configuration } from './configuration.js';
13
13
  import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
14
14
  import { RequestArgs, BaseAPI } from './base.js';
15
+ export interface AiAbsoluteDateFilter {
16
+ 'absoluteDateFilter': AiAbsoluteDateFilterBody;
17
+ }
18
+ export interface AiAbsoluteDateFilterBody {
19
+ 'dataset': AiAfmObjectIdentifier;
20
+ 'from': string;
21
+ 'to': string;
22
+ 'applyOnResult'?: boolean | null;
23
+ 'emptyValueHandling'?: AiEmptyValueHandling | null;
24
+ 'localIdentifier'?: string | null;
25
+ }
15
26
  export interface AiActiveObjectIdentification {
16
27
  'id': string;
17
28
  'type': string;
18
29
  'workspaceId': string;
19
30
  }
31
+ /**
32
+ * Local reference: ``{\"localIdentifier\": \"...\"}``.
33
+ */
34
+ export interface AiAfmLocalIdentifier {
35
+ 'localIdentifier': string;
36
+ }
37
+ /**
38
+ * MD object reference: ``{\"identifier\": {\"id\": \"...\", \"type\": \"...\"}}``.
39
+ */
40
+ export interface AiAfmObjectIdentifier {
41
+ 'identifier': AiAfmObjectIdentifierBody;
42
+ }
43
+ export interface AiAfmObjectIdentifierBody {
44
+ 'id': string;
45
+ 'type': string;
46
+ }
47
+ export interface AiAllTimeDateFilterBodyInput {
48
+ 'dataset': AiAfmObjectIdentifier;
49
+ 'granularity'?: AiDateGranularityInput | null;
50
+ 'applyOnResult'?: boolean | null;
51
+ 'emptyValueHandling'?: AiEmptyValueHandling | null;
52
+ 'localIdentifier'?: string | null;
53
+ }
54
+ export interface AiAllTimeDateFilterBodyOutput {
55
+ 'dataset': AiAfmObjectIdentifier;
56
+ 'granularity'?: AiAppApplicationDtosAfmFilterDefinitionDateGranularity | null;
57
+ 'applyOnResult'?: boolean | null;
58
+ 'emptyValueHandling'?: AiEmptyValueHandling | null;
59
+ 'localIdentifier'?: string | null;
60
+ }
61
+ export interface AiAllTimeDateFilterInput {
62
+ 'allTimeDateFilter': AiAllTimeDateFilterBodyInput;
63
+ }
64
+ export interface AiAllTimeDateFilterOutput {
65
+ 'allTimeDateFilter': AiAllTimeDateFilterBodyOutput;
66
+ }
20
67
  export interface AiAllowedRelationshipType {
21
68
  'sourceType': string;
22
69
  'targetType': string;
23
70
  'allowOrphans'?: boolean;
24
71
  }
72
+ export declare const AiAppApplicationDtosAfmFilterDefinitionDateGranularity: {
73
+ readonly MINUTE: "MINUTE";
74
+ readonly HOUR: "HOUR";
75
+ readonly DAY: "DAY";
76
+ readonly WEEK: "WEEK";
77
+ readonly MONTH: "MONTH";
78
+ readonly QUARTER: "QUARTER";
79
+ readonly YEAR: "YEAR";
80
+ readonly MINUTE_OF_HOUR: "MINUTE_OF_HOUR";
81
+ readonly HOUR_OF_DAY: "HOUR_OF_DAY";
82
+ readonly DAY_OF_WEEK: "DAY_OF_WEEK";
83
+ readonly DAY_OF_MONTH: "DAY_OF_MONTH";
84
+ readonly DAY_OF_QUARTER: "DAY_OF_QUARTER";
85
+ readonly DAY_OF_YEAR: "DAY_OF_YEAR";
86
+ readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
87
+ readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
88
+ readonly QUARTER_OF_YEAR: "QUARTER_OF_YEAR";
89
+ readonly FISCAL_MONTH: "FISCAL_MONTH";
90
+ readonly FISCAL_QUARTER: "FISCAL_QUARTER";
91
+ readonly FISCAL_YEAR: "FISCAL_YEAR";
92
+ };
93
+ export type AiAppApplicationDtosAfmFilterDefinitionDateGranularity = typeof AiAppApplicationDtosAfmFilterDefinitionDateGranularity[keyof typeof AiAppApplicationDtosAfmFilterDefinitionDateGranularity];
94
+ export interface AiAppApplicationDtosAfmFilterDefinitionRankingFilter {
95
+ 'rankingFilter': AiRankingFilterBody;
96
+ }
97
+ /**
98
+ * Date granularity for date filters.
99
+ */
100
+ export declare const AiAppDomainConversationsVisualizationDateGranularity: {
101
+ readonly DAY: "DAY";
102
+ readonly WEEK_US: "WEEK_US";
103
+ readonly MONTH: "MONTH";
104
+ readonly QUARTER: "QUARTER";
105
+ readonly YEAR: "YEAR";
106
+ };
107
+ export type AiAppDomainConversationsVisualizationDateGranularity = typeof AiAppDomainConversationsVisualizationDateGranularity[keyof typeof AiAppDomainConversationsVisualizationDateGranularity];
108
+ export interface AiAppDomainConversationsVisualizationRankingFilter {
109
+ 'type': AiAppDomainConversationsVisualizationRankingFilterTypeEnum;
110
+ 'using': string;
111
+ 'attribute'?: string;
112
+ 'top'?: number;
113
+ 'bottom'?: number;
114
+ }
115
+ export type AiAppDomainConversationsVisualizationRankingFilterTypeEnum = 'ranking_filter';
25
116
  export interface AiAttributeFilter {
26
117
  'type': AiAttributeFilterTypeEnum;
27
118
  'using': string;
28
119
  'state': AiAttributeFilterState;
29
120
  }
30
121
  export type AiAttributeFilterTypeEnum = 'attribute_filter';
122
+ export interface AiAttributeFilterElements {
123
+ 'values': Array<string | null>;
124
+ }
31
125
  export interface AiAttributeFilterState {
32
126
  'include'?: Array<string>;
33
127
  'exclude'?: Array<string>;
@@ -41,11 +135,61 @@ export interface AiAttributeSortItem {
41
135
  export type AiAttributeSortItemTypeEnum = 'attribute_sort';
42
136
  export type AiAttributeSortItemDirectionEnum = 'ASC' | 'DESC';
43
137
  export type AiAttributeSortItemAggregationEnum = 'SUM';
138
+ export interface AiBoundedFilterInput {
139
+ 'granularity': AiDateGranularityInput;
140
+ 'from'?: number | null;
141
+ 'to'?: number | null;
142
+ }
143
+ export interface AiBoundedFilterOutput {
144
+ 'granularity': AiAppApplicationDtosAfmFilterDefinitionDateGranularity;
145
+ 'from'?: number | null;
146
+ 'to'?: number | null;
147
+ }
44
148
  export interface AiBucketRefObject {
45
149
  'field': string;
46
150
  }
47
151
  export interface AiClusteringAmount {
48
152
  }
153
+ export interface AiComparisonMeasureValueFilter {
154
+ 'comparisonMeasureValueFilter': AiComparisonMeasureValueFilterBody;
155
+ }
156
+ export interface AiComparisonMeasureValueFilterBody {
157
+ 'measure': AiMeasure;
158
+ 'operator': AiComparisonMeasureValueOperator;
159
+ 'value': number;
160
+ 'treatNullValuesAs'?: number | null;
161
+ 'dimensionality'?: Array<AiComparisonMeasureValueFilterBodyDimensionalityInner> | null;
162
+ 'applyOnResult'?: boolean | null;
163
+ 'localIdentifier'?: string | null;
164
+ }
165
+ export interface AiComparisonMeasureValueFilterBodyDimensionalityInner {
166
+ 'identifier': AiAfmObjectIdentifierBody;
167
+ 'localIdentifier': string;
168
+ }
169
+ export declare const AiComparisonMeasureValueOperator: {
170
+ readonly GREATER_THAN: "GREATER_THAN";
171
+ readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
172
+ readonly LESS_THAN: "LESS_THAN";
173
+ readonly LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO";
174
+ readonly EQUAL_TO: "EQUAL_TO";
175
+ readonly NOT_EQUAL_TO: "NOT_EQUAL_TO";
176
+ };
177
+ export type AiComparisonMeasureValueOperator = typeof AiComparisonMeasureValueOperator[keyof typeof AiComparisonMeasureValueOperator];
178
+ export interface AiCompoundMeasureValueFilter {
179
+ 'compoundMeasureValueFilter': AiCompoundMeasureValueFilterBody;
180
+ }
181
+ export interface AiCompoundMeasureValueFilterBody {
182
+ 'measure': AiMeasure;
183
+ 'conditions': Array<AiCompoundMeasureValueFilterBodyConditionsInner>;
184
+ 'treatNullValuesAs'?: number | null;
185
+ 'dimensionality'?: Array<AiComparisonMeasureValueFilterBodyDimensionalityInner> | null;
186
+ 'applyOnResult'?: boolean | null;
187
+ 'localIdentifier'?: string | null;
188
+ }
189
+ export interface AiCompoundMeasureValueFilterBodyConditionsInner {
190
+ 'comparison': AiMeasureValueComparisonInner;
191
+ 'range': AiMeasureValueRangeInner;
192
+ }
49
193
  /**
50
194
  * @type AiContent
51
195
  * Conversation item content payload.
@@ -61,6 +205,10 @@ export type AiContent = ({
61
205
  } & AiFunctionCallContent) | ({
62
206
  type: 'toolResult';
63
207
  } & AiFunctionResultContent);
208
+ export interface AiConversationFeedbackRequest {
209
+ 'responseId': string;
210
+ 'feedback': AiResponseFeedback | null;
211
+ }
64
212
  /**
65
213
  * Conversation item list response.
66
214
  */
@@ -216,22 +364,33 @@ export type AiDateFilterGranularity = typeof AiDateFilterGranularity[keyof typeo
216
364
  export interface AiDateFilterRelative {
217
365
  'type': AiDateFilterRelativeTypeEnum;
218
366
  'using': string;
219
- 'granularity': AiDateGranularity;
367
+ 'granularity': AiAppDomainConversationsVisualizationDateGranularity;
220
368
  'from': number;
221
369
  'to': number;
222
370
  }
223
371
  export type AiDateFilterRelativeTypeEnum = 'date_filter';
224
- /**
225
- * Date granularity for date filters.
226
- */
227
- export declare const AiDateGranularity: {
372
+ export declare const AiDateGranularityInput: {
373
+ readonly MINUTE: "MINUTE";
374
+ readonly HOUR: "HOUR";
228
375
  readonly DAY: "DAY";
229
- readonly WEEK_US: "WEEK_US";
376
+ readonly WEEK: "WEEK";
230
377
  readonly MONTH: "MONTH";
231
378
  readonly QUARTER: "QUARTER";
232
379
  readonly YEAR: "YEAR";
380
+ readonly MINUTE_OF_HOUR: "MINUTE_OF_HOUR";
381
+ readonly HOUR_OF_DAY: "HOUR_OF_DAY";
382
+ readonly DAY_OF_WEEK: "DAY_OF_WEEK";
383
+ readonly DAY_OF_MONTH: "DAY_OF_MONTH";
384
+ readonly DAY_OF_QUARTER: "DAY_OF_QUARTER";
385
+ readonly DAY_OF_YEAR: "DAY_OF_YEAR";
386
+ readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
387
+ readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
388
+ readonly QUARTER_OF_YEAR: "QUARTER_OF_YEAR";
389
+ readonly FISCAL_MONTH: "FISCAL_MONTH";
390
+ readonly FISCAL_QUARTER: "FISCAL_QUARTER";
391
+ readonly FISCAL_YEAR: "FISCAL_YEAR";
233
392
  };
234
- export type AiDateGranularity = typeof AiDateGranularity[keyof typeof AiDateGranularity];
393
+ export type AiDateGranularityInput = typeof AiDateGranularityInput[keyof typeof AiDateGranularityInput];
235
394
  /**
236
395
  * Response for DELETE /documents/{documentId}.
237
396
  */
@@ -255,6 +414,12 @@ export interface AiDocumentMetadataResponse {
255
414
  'title'?: string | null;
256
415
  'isDisabled'?: boolean | null;
257
416
  }
417
+ export declare const AiEmptyValueHandling: {
418
+ readonly INCLUDE: "INCLUDE";
419
+ readonly EXCLUDE: "EXCLUDE";
420
+ readonly ONLY: "ONLY";
421
+ };
422
+ export type AiEmptyValueHandling = typeof AiEmptyValueHandling[keyof typeof AiEmptyValueHandling];
258
423
  export interface AiFeedback {
259
424
  /**
260
425
  * Feedback type.
@@ -276,7 +441,7 @@ export interface AiFilterByValue {
276
441
  'state': AiAttributeFilterState;
277
442
  'from': number;
278
443
  'to': number;
279
- 'granularity': AiDateGranularity;
444
+ 'granularity': AiAppDomainConversationsVisualizationDateGranularity;
280
445
  'attribute'?: string;
281
446
  'top'?: number;
282
447
  'bottom'?: number;
@@ -333,6 +498,14 @@ export type AiFunctionResultContentTypeEnum = 'toolResult';
333
498
  export interface AiHTTPValidationError {
334
499
  'detail'?: Array<AiValidationError>;
335
500
  }
501
+ export interface AiInlineFilterDefinition {
502
+ 'inline': AiInlineFilterDefinitionBody;
503
+ }
504
+ export interface AiInlineFilterDefinitionBody {
505
+ 'filter': string;
506
+ 'applyOnResult'?: boolean | null;
507
+ 'localIdentifier'?: string | null;
508
+ }
336
509
  export interface AiKeyDriverAnalysis {
337
510
  [key: string]: any;
338
511
  /**
@@ -377,6 +550,10 @@ export interface AiKeyDriverAnalysisPart {
377
550
  'kda'?: AiKeyDriverAnalysis | null;
378
551
  }
379
552
  export type AiKeyDriverAnalysisPartTypeEnum = 'kda';
553
+ export interface AiLabel {
554
+ 'identifier': AiAfmObjectIdentifierBody;
555
+ 'localIdentifier': string;
556
+ }
380
557
  /**
381
558
  * Response for GET /documents.
382
559
  */
@@ -385,6 +562,49 @@ export interface AiListDocumentsResponse {
385
562
  'totalCount'?: number | null;
386
563
  'nextPageToken'?: string | null;
387
564
  }
565
+ export interface AiMatchAttributeFilter {
566
+ 'matchAttributeFilter': AiMatchAttributeFilterBody;
567
+ }
568
+ export interface AiMatchAttributeFilterBody {
569
+ 'label': AiLabel;
570
+ 'literal': string;
571
+ 'matchType': AiMatchType;
572
+ 'caseSensitive'?: boolean;
573
+ 'negate'?: boolean;
574
+ 'applyOnResult'?: boolean | null;
575
+ 'localIdentifier'?: string | null;
576
+ }
577
+ export declare const AiMatchType: {
578
+ readonly STARTS_WITH: "STARTS_WITH";
579
+ readonly ENDS_WITH: "ENDS_WITH";
580
+ readonly CONTAINS: "CONTAINS";
581
+ };
582
+ export type AiMatchType = typeof AiMatchType[keyof typeof AiMatchType];
583
+ export interface AiMeasure {
584
+ 'identifier': AiAfmObjectIdentifierBody;
585
+ 'localIdentifier': string;
586
+ }
587
+ /**
588
+ * Comparison branch of a compound measure value condition: ``{\"comparison\": {...}}``.
589
+ */
590
+ export interface AiMeasureValueComparisonCondition {
591
+ 'comparison': AiMeasureValueComparisonInner;
592
+ }
593
+ export interface AiMeasureValueComparisonInner {
594
+ 'operator': AiComparisonMeasureValueOperator;
595
+ 'value': number;
596
+ }
597
+ /**
598
+ * Range branch of a compound measure value condition: ``{\"range\": {...}}``.
599
+ */
600
+ export interface AiMeasureValueRangeCondition {
601
+ 'range': AiMeasureValueRangeInner;
602
+ }
603
+ export interface AiMeasureValueRangeInner {
604
+ 'operator': AiRangeMeasureValueOperator;
605
+ 'from': number;
606
+ 'to': number;
607
+ }
388
608
  export interface AiMetricSortItem {
389
609
  'type': AiMetricSortItemTypeEnum;
390
610
  'direction': AiMetricSortItemDirectionEnum;
@@ -425,6 +645,7 @@ export interface AiMultipartContent {
425
645
  * Ordered multipart content fragments.
426
646
  */
427
647
  'parts': Array<AiMultipartContentPartsInner>;
648
+ 'suggestions'?: AiSuggestions | null;
428
649
  }
429
650
  export type AiMultipartContentTypeEnum = 'multipart';
430
651
  /**
@@ -441,6 +662,16 @@ export type AiMultipartContentPartsInner = ({
441
662
  } & AiVisualizationPart) | ({
442
663
  type: 'whatIf';
443
664
  } & AiWhatIfAnalysisPart);
665
+ export interface AiNegativeAttributeFilter {
666
+ 'negativeAttributeFilter': AiNegativeAttributeFilterBody;
667
+ }
668
+ export interface AiNegativeAttributeFilterBody {
669
+ 'label': AiLabel;
670
+ 'notIn': AiAttributeFilterElements;
671
+ 'applyOnResult'?: boolean | null;
672
+ 'localIdentifier'?: string | null;
673
+ 'usesArbitraryValues'?: boolean | null;
674
+ }
444
675
  export declare const AiObjectType: {
445
676
  readonly UNIDENTIFIED: "unidentified";
446
677
  readonly WORKSPACE: "workspace";
@@ -464,6 +695,16 @@ export interface AiPatchDocumentRequest {
464
695
  'title'?: string | null;
465
696
  'scopes'?: Array<string> | null;
466
697
  }
698
+ export interface AiPositiveAttributeFilter {
699
+ 'positiveAttributeFilter': AiPositiveAttributeFilterBody;
700
+ }
701
+ export interface AiPositiveAttributeFilterBody {
702
+ 'label': AiLabel;
703
+ 'in': AiAttributeFilterElements;
704
+ 'applyOnResult'?: boolean | null;
705
+ 'localIdentifier'?: string | null;
706
+ 'usesArbitraryValues'?: boolean | null;
707
+ }
467
708
  export interface AiQuery {
468
709
  'fields': {
469
710
  [key: string]: AiFieldsValue;
@@ -497,14 +738,40 @@ export interface AiQuerySortByInner {
497
738
  export type AiQuerySortByInnerTypeEnum = 'attribute_sort' | 'metric_sort';
498
739
  export type AiQuerySortByInnerDirectionEnum = 'ASC' | 'DESC';
499
740
  export type AiQuerySortByInnerAggregationEnum = 'SUM';
500
- export interface AiRankingFilter {
501
- 'type': AiRankingFilterTypeEnum;
502
- 'using': string;
503
- 'attribute'?: string;
504
- 'top'?: number;
505
- 'bottom'?: number;
741
+ export interface AiRangeMeasureValueFilter {
742
+ 'rangeMeasureValueFilter': AiRangeMeasureValueFilterBody;
743
+ }
744
+ export interface AiRangeMeasureValueFilterBody {
745
+ 'measure': AiMeasure;
746
+ 'operator': AiRangeMeasureValueOperator;
747
+ 'from': number;
748
+ 'to': number;
749
+ 'treatNullValuesAs'?: number | null;
750
+ 'dimensionality'?: Array<AiComparisonMeasureValueFilterBodyDimensionalityInner> | null;
751
+ 'applyOnResult'?: boolean | null;
752
+ 'localIdentifier'?: string | null;
506
753
  }
507
- export type AiRankingFilterTypeEnum = 'ranking_filter';
754
+ export declare const AiRangeMeasureValueOperator: {
755
+ readonly BETWEEN: "BETWEEN";
756
+ readonly NOT_BETWEEN: "NOT_BETWEEN";
757
+ };
758
+ export type AiRangeMeasureValueOperator = typeof AiRangeMeasureValueOperator[keyof typeof AiRangeMeasureValueOperator];
759
+ export interface AiRankingFilterBody {
760
+ 'measures': Array<AiComparisonMeasureValueFilterBodyDimensionalityInner>;
761
+ 'operator': AiRankingOperator;
762
+ 'value': number;
763
+ 'dimensionality'?: Array<AiComparisonMeasureValueFilterBodyDimensionalityInner> | null;
764
+ 'applyOnResult'?: boolean | null;
765
+ 'localIdentifier'?: string | null;
766
+ }
767
+ export interface AiRankingFilterInput {
768
+ 'rankingFilter': AiRankingFilterBody;
769
+ }
770
+ export declare const AiRankingOperator: {
771
+ readonly TOP: "TOP";
772
+ readonly BOTTOM: "BOTTOM";
773
+ };
774
+ export type AiRankingOperator = typeof AiRankingOperator[keyof typeof AiRankingOperator];
508
775
  export interface AiReasoningContent {
509
776
  /**
510
777
  * Type of item content.
@@ -516,6 +783,32 @@ export interface AiReasoningContent {
516
783
  'summary': string;
517
784
  }
518
785
  export type AiReasoningContentTypeEnum = 'reasoning';
786
+ export interface AiRelativeDateFilterBodyInput {
787
+ 'dataset': AiAfmObjectIdentifier;
788
+ 'granularity': AiDateGranularityInput;
789
+ 'from': number;
790
+ 'to': number;
791
+ 'applyOnResult'?: boolean | null;
792
+ 'boundedFilter'?: AiBoundedFilterInput | null;
793
+ 'emptyValueHandling'?: AiEmptyValueHandling | null;
794
+ 'localIdentifier'?: string | null;
795
+ }
796
+ export interface AiRelativeDateFilterBodyOutput {
797
+ 'dataset': AiAfmObjectIdentifier;
798
+ 'granularity': AiAppApplicationDtosAfmFilterDefinitionDateGranularity;
799
+ 'from': number;
800
+ 'to': number;
801
+ 'applyOnResult'?: boolean | null;
802
+ 'boundedFilter'?: AiBoundedFilterOutput | null;
803
+ 'emptyValueHandling'?: AiEmptyValueHandling | null;
804
+ 'localIdentifier'?: string | null;
805
+ }
806
+ export interface AiRelativeDateFilterInput {
807
+ 'relativeDateFilter': AiRelativeDateFilterBodyInput;
808
+ }
809
+ export interface AiRelativeDateFilterOutput {
810
+ 'relativeDateFilter': AiRelativeDateFilterBodyOutput;
811
+ }
519
812
  export interface AiResponseFeedback {
520
813
  'type': AiResponseFeedbackTypeEnum;
521
814
  'text'?: string | null;
@@ -671,18 +964,53 @@ export interface AiSkillResponse {
671
964
  'tags': Array<string>;
672
965
  'examples': Array<string>;
673
966
  }
967
+ /**
968
+ * A quick-reply action button rendered alongside the follow-up question.
969
+ */
970
+ export interface AiSuggestedAction {
971
+ /**
972
+ * Button display text (3-5 words).
973
+ */
974
+ 'label': string;
975
+ /**
976
+ * Exact message sent when the user clicks this action.
977
+ */
978
+ 'query': string;
979
+ }
980
+ /**
981
+ * Follow-up suggestions emitted by the assistant alongside its terminal multipart message. Carried on the assistant ``MultipartContent`` so suggestions are persisted in conversation history and stream on the same SSE event as the response that produced them.
982
+ */
983
+ export interface AiSuggestions {
984
+ /**
985
+ * Yes-answerable follow-up question recommending the next step.
986
+ */
987
+ 'followUpQuestion': string;
988
+ /**
989
+ * Quick-reply action buttons. The first action matches the follow-up question.
990
+ */
991
+ 'actions': Array<AiSuggestedAction>;
992
+ }
674
993
  export interface AiSummarizeRequest {
675
- 'visualizations': Array<string>;
676
- 'filterContext': Array<object>;
994
+ 'visualizations'?: Array<string> | null;
995
+ 'filterContext'?: Array<AiSummarizeRequestFilterContextInner> | null;
677
996
  'dashboardId': string;
997
+ 'formatHint'?: string | null;
678
998
  }
999
+ /**
1000
+ * @type AiSummarizeRequestFilterContextInner
1001
+ */
1002
+ export type AiSummarizeRequestFilterContextInner = AiAbsoluteDateFilter | AiAllTimeDateFilterInput | AiComparisonMeasureValueFilter | AiCompoundMeasureValueFilter | AiInlineFilterDefinition | AiMatchAttributeFilter | AiNegativeAttributeFilter | AiPositiveAttributeFilter | AiRangeMeasureValueFilter | AiRankingFilterInput | AiRelativeDateFilterInput;
679
1003
  export interface AiSummarizeResponse {
680
1004
  'summary': string;
681
- 'filterContext': Array<object>;
1005
+ 'filterContext': Array<AiSummarizeResponseFilterContextInner>;
682
1006
  'visualizationsIncluded': Array<AiVisualizationIncludedResponse>;
683
1007
  'visualizationsExcluded': Array<AiVisualizationExcludedResponse>;
684
1008
  'generatedAt': string;
685
1009
  }
1010
+ /**
1011
+ * @type AiSummarizeResponseFilterContextInner
1012
+ */
1013
+ export type AiSummarizeResponseFilterContextInner = AiAbsoluteDateFilter | AiAllTimeDateFilterOutput | AiAppApplicationDtosAfmFilterDefinitionRankingFilter | AiComparisonMeasureValueFilter | AiCompoundMeasureValueFilter | AiInlineFilterDefinition | AiMatchAttributeFilter | AiNegativeAttributeFilter | AiPositiveAttributeFilter | AiRangeMeasureValueFilter | AiRelativeDateFilterOutput;
686
1014
  export interface AiTextFilterValue {
687
1015
  'type': AiTextFilterValueTypeEnum;
688
1016
  'using': string;
@@ -2641,6 +2969,17 @@ export declare function ResponsesAiAxiosParamCreator_GetConversationResponsesApi
2641
2969
  * @throws {RequiredError}
2642
2970
  */
2643
2971
  export declare function ResponsesAiAxiosParamCreator_PatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(workspaceId: string, conversationId: string, responseId: string, aiResponseFeedbackRequest: AiResponseFeedbackRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
2972
+ /**
2973
+ *
2974
+ * @summary Post Feedback
2975
+ * @param {string} workspaceId
2976
+ * @param {string} conversationId
2977
+ * @param {AiConversationFeedbackRequest} aiConversationFeedbackRequest
2978
+ * @param {*} [options] Override http request option.
2979
+ * @param {Configuration} [configuration] Optional configuration.
2980
+ * @throws {RequiredError}
2981
+ */
2982
+ export declare function ResponsesAiAxiosParamCreator_PostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(workspaceId: string, conversationId: string, aiConversationFeedbackRequest: AiConversationFeedbackRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
2644
2983
  /**
2645
2984
  *
2646
2985
  * @summary Get Conversation Responses
@@ -2663,6 +3002,17 @@ export declare function ResponsesAi_GetConversationResponsesApiV1AiWorkspacesWor
2663
3002
  * @throws {RequiredError}
2664
3003
  */
2665
3004
  export declare function ResponsesAi_PatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(axios: AxiosInstance, basePath: string, requestParameters: ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
3005
+ /**
3006
+ *
3007
+ * @summary Post Feedback
3008
+ * @param {AxiosInstance} axios Axios instance.
3009
+ * @param {string} basePath Base path.
3010
+ * @param {ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest} requestParameters Request parameters.
3011
+ * @param {*} [options] Override http request option.
3012
+ * @param {Configuration} [configuration] Optional configuration.
3013
+ * @throws {RequiredError}
3014
+ */
3015
+ export declare function ResponsesAi_PostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(axios: AxiosInstance, basePath: string, requestParameters: ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
2666
3016
  /**
2667
3017
  * ResponsesAi - interface
2668
3018
  * @export
@@ -2687,6 +3037,15 @@ export interface ResponsesAiInterface {
2687
3037
  * @memberof ResponsesAiInterface
2688
3038
  */
2689
3039
  patchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(requestParameters: ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
3040
+ /**
3041
+ *
3042
+ * @summary Post Feedback
3043
+ * @param {ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest} requestParameters Request parameters.
3044
+ * @param {*} [options] Override http request option.
3045
+ * @throws {RequiredError}
3046
+ * @memberof ResponsesAiInterface
3047
+ */
3048
+ postFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(requestParameters: ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
2690
3049
  }
2691
3050
  /**
2692
3051
  * Request parameters for getConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet operation in ResponsesAi.
@@ -2738,6 +3097,31 @@ export interface ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConvers
2738
3097
  */
2739
3098
  readonly aiResponseFeedbackRequest: AiResponseFeedbackRequest;
2740
3099
  }
3100
+ /**
3101
+ * Request parameters for postFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost operation in ResponsesAi.
3102
+ * @export
3103
+ * @interface ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest
3104
+ */
3105
+ export interface ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest {
3106
+ /**
3107
+ *
3108
+ * @type {string}
3109
+ * @memberof ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost
3110
+ */
3111
+ readonly workspaceId: string;
3112
+ /**
3113
+ *
3114
+ * @type {string}
3115
+ * @memberof ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost
3116
+ */
3117
+ readonly conversationId: string;
3118
+ /**
3119
+ *
3120
+ * @type {AiConversationFeedbackRequest}
3121
+ * @memberof ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost
3122
+ */
3123
+ readonly aiConversationFeedbackRequest: AiConversationFeedbackRequest;
3124
+ }
2741
3125
  /**
2742
3126
  * ResponsesAi - object-oriented interface
2743
3127
  * @export
@@ -2763,6 +3147,15 @@ export declare class ResponsesAi extends BaseAPI implements ResponsesAiInterface
2763
3147
  * @memberof ResponsesAi
2764
3148
  */
2765
3149
  patchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(requestParameters: ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
3150
+ /**
3151
+ *
3152
+ * @summary Post Feedback
3153
+ * @param {ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest} requestParameters Request parameters.
3154
+ * @param {*} [options] Override http request option.
3155
+ * @throws {RequiredError}
3156
+ * @memberof ResponsesAi
3157
+ */
3158
+ postFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(requestParameters: ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
2766
3159
  }
2767
3160
  /**
2768
3161
  *