@gooddata/api-client-tiger 11.36.0-alpha.1 → 11.36.0-alpha.2
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.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +1419 -324
- package/esm/endpoints/genAI/index.d.ts +3 -3
- package/esm/endpoints/genAI/index.js +2 -2
- package/esm/generated/afm-rest-api/api.d.ts +107 -200
- package/esm/generated/afm-rest-api/api.js +58 -118
- package/esm/generated/ai-json-api/api.d.ts +384 -18
- package/esm/generated/ai-json-api/api.js +152 -4
- package/esm/generated/metadata-json-api/api.d.ts +1517 -159
- package/esm/generated/metadata-json-api/api.js +1622 -191
- package/esm/index.d.ts +2 -2
- package/package.json +4 -4
|
@@ -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':
|
|
367
|
+
'granularity': AiAppDomainConversationsVisualizationDateGranularity;
|
|
220
368
|
'from': number;
|
|
221
369
|
'to': number;
|
|
222
370
|
}
|
|
223
371
|
export type AiDateFilterRelativeTypeEnum = 'date_filter';
|
|
224
|
-
|
|
225
|
-
|
|
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
|
|
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
|
|
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':
|
|
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;
|
|
@@ -441,6 +661,16 @@ export type AiMultipartContentPartsInner = ({
|
|
|
441
661
|
} & AiVisualizationPart) | ({
|
|
442
662
|
type: 'whatIf';
|
|
443
663
|
} & AiWhatIfAnalysisPart);
|
|
664
|
+
export interface AiNegativeAttributeFilter {
|
|
665
|
+
'negativeAttributeFilter': AiNegativeAttributeFilterBody;
|
|
666
|
+
}
|
|
667
|
+
export interface AiNegativeAttributeFilterBody {
|
|
668
|
+
'label': AiLabel;
|
|
669
|
+
'notIn': AiAttributeFilterElements;
|
|
670
|
+
'applyOnResult'?: boolean | null;
|
|
671
|
+
'localIdentifier'?: string | null;
|
|
672
|
+
'usesArbitraryValues'?: boolean | null;
|
|
673
|
+
}
|
|
444
674
|
export declare const AiObjectType: {
|
|
445
675
|
readonly UNIDENTIFIED: "unidentified";
|
|
446
676
|
readonly WORKSPACE: "workspace";
|
|
@@ -464,6 +694,16 @@ export interface AiPatchDocumentRequest {
|
|
|
464
694
|
'title'?: string | null;
|
|
465
695
|
'scopes'?: Array<string> | null;
|
|
466
696
|
}
|
|
697
|
+
export interface AiPositiveAttributeFilter {
|
|
698
|
+
'positiveAttributeFilter': AiPositiveAttributeFilterBody;
|
|
699
|
+
}
|
|
700
|
+
export interface AiPositiveAttributeFilterBody {
|
|
701
|
+
'label': AiLabel;
|
|
702
|
+
'in': AiAttributeFilterElements;
|
|
703
|
+
'applyOnResult'?: boolean | null;
|
|
704
|
+
'localIdentifier'?: string | null;
|
|
705
|
+
'usesArbitraryValues'?: boolean | null;
|
|
706
|
+
}
|
|
467
707
|
export interface AiQuery {
|
|
468
708
|
'fields': {
|
|
469
709
|
[key: string]: AiFieldsValue;
|
|
@@ -497,14 +737,40 @@ export interface AiQuerySortByInner {
|
|
|
497
737
|
export type AiQuerySortByInnerTypeEnum = 'attribute_sort' | 'metric_sort';
|
|
498
738
|
export type AiQuerySortByInnerDirectionEnum = 'ASC' | 'DESC';
|
|
499
739
|
export type AiQuerySortByInnerAggregationEnum = 'SUM';
|
|
500
|
-
export interface
|
|
501
|
-
'
|
|
502
|
-
'using': string;
|
|
503
|
-
'attribute'?: string;
|
|
504
|
-
'top'?: number;
|
|
505
|
-
'bottom'?: number;
|
|
740
|
+
export interface AiRangeMeasureValueFilter {
|
|
741
|
+
'rangeMeasureValueFilter': AiRangeMeasureValueFilterBody;
|
|
506
742
|
}
|
|
507
|
-
export
|
|
743
|
+
export interface AiRangeMeasureValueFilterBody {
|
|
744
|
+
'measure': AiMeasure;
|
|
745
|
+
'operator': AiRangeMeasureValueOperator;
|
|
746
|
+
'from': number;
|
|
747
|
+
'to': number;
|
|
748
|
+
'treatNullValuesAs'?: number | null;
|
|
749
|
+
'dimensionality'?: Array<AiComparisonMeasureValueFilterBodyDimensionalityInner> | null;
|
|
750
|
+
'applyOnResult'?: boolean | null;
|
|
751
|
+
'localIdentifier'?: string | null;
|
|
752
|
+
}
|
|
753
|
+
export declare const AiRangeMeasureValueOperator: {
|
|
754
|
+
readonly BETWEEN: "BETWEEN";
|
|
755
|
+
readonly NOT_BETWEEN: "NOT_BETWEEN";
|
|
756
|
+
};
|
|
757
|
+
export type AiRangeMeasureValueOperator = typeof AiRangeMeasureValueOperator[keyof typeof AiRangeMeasureValueOperator];
|
|
758
|
+
export interface AiRankingFilterBody {
|
|
759
|
+
'measures': Array<AiComparisonMeasureValueFilterBodyDimensionalityInner>;
|
|
760
|
+
'operator': AiRankingOperator;
|
|
761
|
+
'value': number;
|
|
762
|
+
'dimensionality'?: Array<AiComparisonMeasureValueFilterBodyDimensionalityInner> | null;
|
|
763
|
+
'applyOnResult'?: boolean | null;
|
|
764
|
+
'localIdentifier'?: string | null;
|
|
765
|
+
}
|
|
766
|
+
export interface AiRankingFilterInput {
|
|
767
|
+
'rankingFilter': AiRankingFilterBody;
|
|
768
|
+
}
|
|
769
|
+
export declare const AiRankingOperator: {
|
|
770
|
+
readonly TOP: "TOP";
|
|
771
|
+
readonly BOTTOM: "BOTTOM";
|
|
772
|
+
};
|
|
773
|
+
export type AiRankingOperator = typeof AiRankingOperator[keyof typeof AiRankingOperator];
|
|
508
774
|
export interface AiReasoningContent {
|
|
509
775
|
/**
|
|
510
776
|
* Type of item content.
|
|
@@ -516,6 +782,32 @@ export interface AiReasoningContent {
|
|
|
516
782
|
'summary': string;
|
|
517
783
|
}
|
|
518
784
|
export type AiReasoningContentTypeEnum = 'reasoning';
|
|
785
|
+
export interface AiRelativeDateFilterBodyInput {
|
|
786
|
+
'dataset': AiAfmObjectIdentifier;
|
|
787
|
+
'granularity': AiDateGranularityInput;
|
|
788
|
+
'from': number;
|
|
789
|
+
'to': number;
|
|
790
|
+
'applyOnResult'?: boolean | null;
|
|
791
|
+
'boundedFilter'?: AiBoundedFilterInput | null;
|
|
792
|
+
'emptyValueHandling'?: AiEmptyValueHandling | null;
|
|
793
|
+
'localIdentifier'?: string | null;
|
|
794
|
+
}
|
|
795
|
+
export interface AiRelativeDateFilterBodyOutput {
|
|
796
|
+
'dataset': AiAfmObjectIdentifier;
|
|
797
|
+
'granularity': AiAppApplicationDtosAfmFilterDefinitionDateGranularity;
|
|
798
|
+
'from': number;
|
|
799
|
+
'to': number;
|
|
800
|
+
'applyOnResult'?: boolean | null;
|
|
801
|
+
'boundedFilter'?: AiBoundedFilterOutput | null;
|
|
802
|
+
'emptyValueHandling'?: AiEmptyValueHandling | null;
|
|
803
|
+
'localIdentifier'?: string | null;
|
|
804
|
+
}
|
|
805
|
+
export interface AiRelativeDateFilterInput {
|
|
806
|
+
'relativeDateFilter': AiRelativeDateFilterBodyInput;
|
|
807
|
+
}
|
|
808
|
+
export interface AiRelativeDateFilterOutput {
|
|
809
|
+
'relativeDateFilter': AiRelativeDateFilterBodyOutput;
|
|
810
|
+
}
|
|
519
811
|
export interface AiResponseFeedback {
|
|
520
812
|
'type': AiResponseFeedbackTypeEnum;
|
|
521
813
|
'text'?: string | null;
|
|
@@ -672,17 +964,26 @@ export interface AiSkillResponse {
|
|
|
672
964
|
'examples': Array<string>;
|
|
673
965
|
}
|
|
674
966
|
export interface AiSummarizeRequest {
|
|
675
|
-
'visualizations'
|
|
676
|
-
'filterContext'
|
|
967
|
+
'visualizations'?: Array<string> | null;
|
|
968
|
+
'filterContext'?: Array<AiSummarizeRequestFilterContextInner> | null;
|
|
677
969
|
'dashboardId': string;
|
|
970
|
+
'formatHint'?: string | null;
|
|
678
971
|
}
|
|
972
|
+
/**
|
|
973
|
+
* @type AiSummarizeRequestFilterContextInner
|
|
974
|
+
*/
|
|
975
|
+
export type AiSummarizeRequestFilterContextInner = AiAbsoluteDateFilter | AiAllTimeDateFilterInput | AiComparisonMeasureValueFilter | AiCompoundMeasureValueFilter | AiInlineFilterDefinition | AiMatchAttributeFilter | AiNegativeAttributeFilter | AiPositiveAttributeFilter | AiRangeMeasureValueFilter | AiRankingFilterInput | AiRelativeDateFilterInput;
|
|
679
976
|
export interface AiSummarizeResponse {
|
|
680
977
|
'summary': string;
|
|
681
|
-
'filterContext': Array<
|
|
978
|
+
'filterContext': Array<AiSummarizeResponseFilterContextInner>;
|
|
682
979
|
'visualizationsIncluded': Array<AiVisualizationIncludedResponse>;
|
|
683
980
|
'visualizationsExcluded': Array<AiVisualizationExcludedResponse>;
|
|
684
981
|
'generatedAt': string;
|
|
685
982
|
}
|
|
983
|
+
/**
|
|
984
|
+
* @type AiSummarizeResponseFilterContextInner
|
|
985
|
+
*/
|
|
986
|
+
export type AiSummarizeResponseFilterContextInner = AiAbsoluteDateFilter | AiAllTimeDateFilterOutput | AiAppApplicationDtosAfmFilterDefinitionRankingFilter | AiComparisonMeasureValueFilter | AiCompoundMeasureValueFilter | AiInlineFilterDefinition | AiMatchAttributeFilter | AiNegativeAttributeFilter | AiPositiveAttributeFilter | AiRangeMeasureValueFilter | AiRelativeDateFilterOutput;
|
|
686
987
|
export interface AiTextFilterValue {
|
|
687
988
|
'type': AiTextFilterValueTypeEnum;
|
|
688
989
|
'using': string;
|
|
@@ -2641,6 +2942,17 @@ export declare function ResponsesAiAxiosParamCreator_GetConversationResponsesApi
|
|
|
2641
2942
|
* @throws {RequiredError}
|
|
2642
2943
|
*/
|
|
2643
2944
|
export declare function ResponsesAiAxiosParamCreator_PatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(workspaceId: string, conversationId: string, responseId: string, aiResponseFeedbackRequest: AiResponseFeedbackRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2945
|
+
/**
|
|
2946
|
+
*
|
|
2947
|
+
* @summary Post Feedback
|
|
2948
|
+
* @param {string} workspaceId
|
|
2949
|
+
* @param {string} conversationId
|
|
2950
|
+
* @param {AiConversationFeedbackRequest} aiConversationFeedbackRequest
|
|
2951
|
+
* @param {*} [options] Override http request option.
|
|
2952
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2953
|
+
* @throws {RequiredError}
|
|
2954
|
+
*/
|
|
2955
|
+
export declare function ResponsesAiAxiosParamCreator_PostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(workspaceId: string, conversationId: string, aiConversationFeedbackRequest: AiConversationFeedbackRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2644
2956
|
/**
|
|
2645
2957
|
*
|
|
2646
2958
|
* @summary Get Conversation Responses
|
|
@@ -2663,6 +2975,17 @@ export declare function ResponsesAi_GetConversationResponsesApiV1AiWorkspacesWor
|
|
|
2663
2975
|
* @throws {RequiredError}
|
|
2664
2976
|
*/
|
|
2665
2977
|
export declare function ResponsesAi_PatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(axios: AxiosInstance, basePath: string, requestParameters: ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
2978
|
+
/**
|
|
2979
|
+
*
|
|
2980
|
+
* @summary Post Feedback
|
|
2981
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
2982
|
+
* @param {string} basePath Base path.
|
|
2983
|
+
* @param {ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest} requestParameters Request parameters.
|
|
2984
|
+
* @param {*} [options] Override http request option.
|
|
2985
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2986
|
+
* @throws {RequiredError}
|
|
2987
|
+
*/
|
|
2988
|
+
export declare function ResponsesAi_PostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(axios: AxiosInstance, basePath: string, requestParameters: ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
2666
2989
|
/**
|
|
2667
2990
|
* ResponsesAi - interface
|
|
2668
2991
|
* @export
|
|
@@ -2687,6 +3010,15 @@ export interface ResponsesAiInterface {
|
|
|
2687
3010
|
* @memberof ResponsesAiInterface
|
|
2688
3011
|
*/
|
|
2689
3012
|
patchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(requestParameters: ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
3013
|
+
/**
|
|
3014
|
+
*
|
|
3015
|
+
* @summary Post Feedback
|
|
3016
|
+
* @param {ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest} requestParameters Request parameters.
|
|
3017
|
+
* @param {*} [options] Override http request option.
|
|
3018
|
+
* @throws {RequiredError}
|
|
3019
|
+
* @memberof ResponsesAiInterface
|
|
3020
|
+
*/
|
|
3021
|
+
postFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(requestParameters: ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
2690
3022
|
}
|
|
2691
3023
|
/**
|
|
2692
3024
|
* Request parameters for getConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet operation in ResponsesAi.
|
|
@@ -2738,6 +3070,31 @@ export interface ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConvers
|
|
|
2738
3070
|
*/
|
|
2739
3071
|
readonly aiResponseFeedbackRequest: AiResponseFeedbackRequest;
|
|
2740
3072
|
}
|
|
3073
|
+
/**
|
|
3074
|
+
* Request parameters for postFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost operation in ResponsesAi.
|
|
3075
|
+
* @export
|
|
3076
|
+
* @interface ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest
|
|
3077
|
+
*/
|
|
3078
|
+
export interface ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest {
|
|
3079
|
+
/**
|
|
3080
|
+
*
|
|
3081
|
+
* @type {string}
|
|
3082
|
+
* @memberof ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost
|
|
3083
|
+
*/
|
|
3084
|
+
readonly workspaceId: string;
|
|
3085
|
+
/**
|
|
3086
|
+
*
|
|
3087
|
+
* @type {string}
|
|
3088
|
+
* @memberof ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost
|
|
3089
|
+
*/
|
|
3090
|
+
readonly conversationId: string;
|
|
3091
|
+
/**
|
|
3092
|
+
*
|
|
3093
|
+
* @type {AiConversationFeedbackRequest}
|
|
3094
|
+
* @memberof ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost
|
|
3095
|
+
*/
|
|
3096
|
+
readonly aiConversationFeedbackRequest: AiConversationFeedbackRequest;
|
|
3097
|
+
}
|
|
2741
3098
|
/**
|
|
2742
3099
|
* ResponsesAi - object-oriented interface
|
|
2743
3100
|
* @export
|
|
@@ -2763,6 +3120,15 @@ export declare class ResponsesAi extends BaseAPI implements ResponsesAiInterface
|
|
|
2763
3120
|
* @memberof ResponsesAi
|
|
2764
3121
|
*/
|
|
2765
3122
|
patchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(requestParameters: ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
3123
|
+
/**
|
|
3124
|
+
*
|
|
3125
|
+
* @summary Post Feedback
|
|
3126
|
+
* @param {ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest} requestParameters Request parameters.
|
|
3127
|
+
* @param {*} [options] Override http request option.
|
|
3128
|
+
* @throws {RequiredError}
|
|
3129
|
+
* @memberof ResponsesAi
|
|
3130
|
+
*/
|
|
3131
|
+
postFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(requestParameters: ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
2766
3132
|
}
|
|
2767
3133
|
/**
|
|
2768
3134
|
*
|