@gooddata/api-client-tiger 11.27.0-alpha.4 → 11.27.0-alpha.5
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 +4112 -2317
- package/esm/endpoints/genAI/index.d.ts +2 -1
- package/esm/endpoints/genAI/index.d.ts.map +1 -1
- package/esm/endpoints/genAI/index.js +2 -1
- package/esm/endpoints/genAI/index.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +4 -338
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +2 -349
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/ai-json-api/api.d.ts +1412 -0
- package/esm/generated/ai-json-api/api.d.ts.map +1 -0
- package/esm/generated/ai-json-api/api.js +914 -0
- package/esm/generated/ai-json-api/api.js.map +1 -0
- package/esm/generated/ai-json-api/base.d.ts +43 -0
- package/esm/generated/ai-json-api/base.d.ts.map +1 -0
- package/esm/generated/ai-json-api/base.js +33 -0
- package/esm/generated/ai-json-api/base.js.map +1 -0
- package/esm/generated/ai-json-api/common.d.ts +66 -0
- package/esm/generated/ai-json-api/common.d.ts.map +1 -0
- package/esm/generated/ai-json-api/common.js +122 -0
- package/esm/generated/ai-json-api/common.js.map +1 -0
- package/esm/generated/ai-json-api/configuration.d.ts +75 -0
- package/esm/generated/ai-json-api/configuration.d.ts.map +1 -0
- package/esm/generated/ai-json-api/configuration.js +72 -0
- package/esm/generated/ai-json-api/configuration.js.map +1 -0
- package/esm/generated/ai-json-api/index.d.ts +14 -0
- package/esm/generated/ai-json-api/index.d.ts.map +1 -0
- package/esm/generated/ai-json-api/index.js +16 -0
- package/esm/generated/ai-json-api/index.js.map +1 -0
- package/esm/generated/auth-json-api/api.d.ts +511 -0
- package/esm/generated/auth-json-api/api.d.ts.map +1 -1
- package/esm/generated/auth-json-api/api.js +650 -0
- package/esm/generated/auth-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +2281 -2110
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +2345 -2219
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/index.d.ts +3 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +6 -1
- package/esm/index.js.map +1 -1
- package/package.json +5 -5
|
@@ -0,0 +1,1412 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Gen-AI HTTP API
|
|
3
|
+
* HTTP API for chat sessions, items, and SSE messages.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { Configuration } from './configuration.js';
|
|
13
|
+
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
14
|
+
import { RequestArgs, BaseAPI } from './base.js';
|
|
15
|
+
export interface AiAllowedRelationshipTypeDto {
|
|
16
|
+
'sourceType': string;
|
|
17
|
+
'targetType': string;
|
|
18
|
+
'allowOrphans'?: boolean;
|
|
19
|
+
}
|
|
20
|
+
export interface AiAttributeFilter {
|
|
21
|
+
'type': AiAttributeFilterTypeEnum;
|
|
22
|
+
'using': string;
|
|
23
|
+
'state': AiAttributeFilterState;
|
|
24
|
+
}
|
|
25
|
+
export type AiAttributeFilterTypeEnum = 'attribute_filter';
|
|
26
|
+
export interface AiAttributeFilterState {
|
|
27
|
+
'include'?: Array<string>;
|
|
28
|
+
'exclude'?: Array<string>;
|
|
29
|
+
}
|
|
30
|
+
export interface AiBucketRefObject {
|
|
31
|
+
'field': string;
|
|
32
|
+
}
|
|
33
|
+
export interface AiClusteringAmount {
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* @type AiContent
|
|
37
|
+
* Conversation item content payload.
|
|
38
|
+
*/
|
|
39
|
+
export type AiContent = ({
|
|
40
|
+
type: 'multipart';
|
|
41
|
+
} & AiMultipartContentDto) | ({
|
|
42
|
+
type: 'reasoning';
|
|
43
|
+
} & AiReasoningContentDto) | ({
|
|
44
|
+
type: 'text';
|
|
45
|
+
} & AiTextMessageContentDto) | ({
|
|
46
|
+
type: 'toolCall';
|
|
47
|
+
} & AiFunctionCallContentDto) | ({
|
|
48
|
+
type: 'toolResult';
|
|
49
|
+
} & AiFunctionResultContentDto);
|
|
50
|
+
/**
|
|
51
|
+
* Conversation item list response.
|
|
52
|
+
*/
|
|
53
|
+
export interface AiConversationItemListResponseDto {
|
|
54
|
+
/**
|
|
55
|
+
* Ordered list of conversation items.
|
|
56
|
+
*/
|
|
57
|
+
'items': Array<AiConversationItemResponseDto>;
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* Conversation item returned by the agentic HTTP API.
|
|
61
|
+
*/
|
|
62
|
+
export interface AiConversationItemResponseDto {
|
|
63
|
+
/**
|
|
64
|
+
* Conversation item identifier.
|
|
65
|
+
*/
|
|
66
|
+
'itemId': string;
|
|
67
|
+
/**
|
|
68
|
+
* Parent conversation identifier.
|
|
69
|
+
*/
|
|
70
|
+
'conversationId': string;
|
|
71
|
+
/**
|
|
72
|
+
* Zero-based item order within the response turn.
|
|
73
|
+
*/
|
|
74
|
+
'itemIndex': number;
|
|
75
|
+
/**
|
|
76
|
+
* Item creation timestamp (ISO-8601 UTC).
|
|
77
|
+
*/
|
|
78
|
+
'createdAt': string;
|
|
79
|
+
/**
|
|
80
|
+
* Author role of the item.
|
|
81
|
+
*/
|
|
82
|
+
'role': AiConversationItemResponseDtoRoleEnum;
|
|
83
|
+
'content': AiContent;
|
|
84
|
+
'responseId'?: string | null;
|
|
85
|
+
'replyTo'?: string | null;
|
|
86
|
+
'taskId'?: string | null;
|
|
87
|
+
}
|
|
88
|
+
export type AiConversationItemResponseDtoRoleEnum = 'user' | 'assistant' | 'tool';
|
|
89
|
+
/**
|
|
90
|
+
* Conversation returned by the agentic HTTP API.
|
|
91
|
+
*/
|
|
92
|
+
export interface AiConversationResponseDto {
|
|
93
|
+
/**
|
|
94
|
+
* Conversation identifier.
|
|
95
|
+
*/
|
|
96
|
+
'conversationId': string;
|
|
97
|
+
/**
|
|
98
|
+
* Workspace identifier.
|
|
99
|
+
*/
|
|
100
|
+
'workspaceId': string;
|
|
101
|
+
/**
|
|
102
|
+
* Organization identifier.
|
|
103
|
+
*/
|
|
104
|
+
'organizationId': string;
|
|
105
|
+
/**
|
|
106
|
+
* Owner user identifier.
|
|
107
|
+
*/
|
|
108
|
+
'userId': string;
|
|
109
|
+
/**
|
|
110
|
+
* Conversation creation timestamp (ISO-8601 UTC).
|
|
111
|
+
*/
|
|
112
|
+
'createdAt': string;
|
|
113
|
+
/**
|
|
114
|
+
* Last activity timestamp (ISO-8601 UTC).
|
|
115
|
+
*/
|
|
116
|
+
'lastActivityAt': string;
|
|
117
|
+
}
|
|
118
|
+
export interface AiConversationResponseListDto {
|
|
119
|
+
/**
|
|
120
|
+
* Conversation responses.
|
|
121
|
+
*/
|
|
122
|
+
'responses': Array<AiConversationTurnResponseDto>;
|
|
123
|
+
}
|
|
124
|
+
export interface AiConversationTurnResponseDto {
|
|
125
|
+
/**
|
|
126
|
+
* Response identifier.
|
|
127
|
+
*/
|
|
128
|
+
'responseId': string;
|
|
129
|
+
'feedback'?: AiFeedbackDto | null;
|
|
130
|
+
/**
|
|
131
|
+
* Response creation timestamp (ISO-8601 UTC).
|
|
132
|
+
*/
|
|
133
|
+
'createdAt': string;
|
|
134
|
+
/**
|
|
135
|
+
* Response update timestamp (ISO-8601 UTC).
|
|
136
|
+
*/
|
|
137
|
+
'updatedAt': string;
|
|
138
|
+
}
|
|
139
|
+
export interface AiDateFilterAbsolute {
|
|
140
|
+
'type': AiDateFilterAbsoluteTypeEnum;
|
|
141
|
+
'using': string;
|
|
142
|
+
'from': string;
|
|
143
|
+
'to': string;
|
|
144
|
+
}
|
|
145
|
+
export type AiDateFilterAbsoluteTypeEnum = 'date_filter';
|
|
146
|
+
export interface AiDateFilterRelative {
|
|
147
|
+
'type': AiDateFilterRelativeTypeEnum;
|
|
148
|
+
'using': string;
|
|
149
|
+
'granularity': AiDateGranularity;
|
|
150
|
+
'from': number;
|
|
151
|
+
'to': number;
|
|
152
|
+
}
|
|
153
|
+
export type AiDateFilterRelativeTypeEnum = 'date_filter';
|
|
154
|
+
/**
|
|
155
|
+
* Date granularity for date filters.
|
|
156
|
+
*/
|
|
157
|
+
export declare const AiDateGranularity: {
|
|
158
|
+
readonly DAY: "DAY";
|
|
159
|
+
readonly WEEK: "WEEK";
|
|
160
|
+
readonly MONTH: "MONTH";
|
|
161
|
+
readonly QUARTER: "QUARTER";
|
|
162
|
+
readonly YEAR: "YEAR";
|
|
163
|
+
};
|
|
164
|
+
export type AiDateGranularity = typeof AiDateGranularity[keyof typeof AiDateGranularity];
|
|
165
|
+
export interface AiFeedbackDto {
|
|
166
|
+
/**
|
|
167
|
+
* Feedback type.
|
|
168
|
+
*/
|
|
169
|
+
'type': AiFeedbackDtoTypeEnum;
|
|
170
|
+
'text'?: string | null;
|
|
171
|
+
}
|
|
172
|
+
export type AiFeedbackDtoTypeEnum = 'POSITIVE' | 'NEGATIVE';
|
|
173
|
+
export interface AiFieldsValue {
|
|
174
|
+
'using': string;
|
|
175
|
+
'aggregation'?: AiFieldsValueAggregationEnum;
|
|
176
|
+
'title'?: string;
|
|
177
|
+
'show_all_values'?: boolean;
|
|
178
|
+
}
|
|
179
|
+
export type AiFieldsValueAggregationEnum = 'SUM' | 'AVG' | 'MIN' | 'MAX' | 'MEDIAN' | 'COUNT';
|
|
180
|
+
export interface AiFilterByValue {
|
|
181
|
+
'type': AiFilterByValueTypeEnum;
|
|
182
|
+
'using': string;
|
|
183
|
+
'state': AiAttributeFilterState;
|
|
184
|
+
'from': number;
|
|
185
|
+
'to': number;
|
|
186
|
+
'granularity': AiDateGranularity;
|
|
187
|
+
'attribute'?: string;
|
|
188
|
+
'attributes'?: Array<string>;
|
|
189
|
+
'top'?: number;
|
|
190
|
+
'bottom'?: number;
|
|
191
|
+
}
|
|
192
|
+
export type AiFilterByValueTypeEnum = 'attribute_filter' | 'date_filter' | 'ranking_filter';
|
|
193
|
+
export interface AiForecastPeriod {
|
|
194
|
+
}
|
|
195
|
+
export interface AiFunctionCallContentDto {
|
|
196
|
+
[key: string]: any;
|
|
197
|
+
/**
|
|
198
|
+
* Type of item content.
|
|
199
|
+
*/
|
|
200
|
+
'type'?: string;
|
|
201
|
+
/**
|
|
202
|
+
* Function call item identifier from LLM.
|
|
203
|
+
*/
|
|
204
|
+
'id': string;
|
|
205
|
+
/**
|
|
206
|
+
* Function call correlation identifier.
|
|
207
|
+
*/
|
|
208
|
+
'callId': string;
|
|
209
|
+
/**
|
|
210
|
+
* Function/tool name.
|
|
211
|
+
*/
|
|
212
|
+
'name': string;
|
|
213
|
+
/**
|
|
214
|
+
* Function/tool arguments payload.
|
|
215
|
+
*/
|
|
216
|
+
'arguments': object;
|
|
217
|
+
}
|
|
218
|
+
export interface AiFunctionResultContentDto {
|
|
219
|
+
/**
|
|
220
|
+
* Type of item content.
|
|
221
|
+
*/
|
|
222
|
+
'type'?: AiFunctionResultContentDtoTypeEnum;
|
|
223
|
+
/**
|
|
224
|
+
* Function call correlation identifier.
|
|
225
|
+
*/
|
|
226
|
+
'callId': string;
|
|
227
|
+
/**
|
|
228
|
+
* Serialized function/tool execution result.
|
|
229
|
+
*/
|
|
230
|
+
'result': string;
|
|
231
|
+
}
|
|
232
|
+
export type AiFunctionResultContentDtoTypeEnum = 'toolResult';
|
|
233
|
+
export interface AiHTTPValidationError {
|
|
234
|
+
'detail'?: Array<AiValidationError>;
|
|
235
|
+
}
|
|
236
|
+
export interface AiKeyDriverAnalysisDto {
|
|
237
|
+
[key: string]: any;
|
|
238
|
+
/**
|
|
239
|
+
* Measure definition for key driver analysis.
|
|
240
|
+
*/
|
|
241
|
+
'measure': AiKeyDriverAnalysisMeasureDto;
|
|
242
|
+
/**
|
|
243
|
+
* Date attribute identifier used for period comparison.
|
|
244
|
+
*/
|
|
245
|
+
'dateAttributeId': string;
|
|
246
|
+
/**
|
|
247
|
+
* Analyzed period identifier.
|
|
248
|
+
*/
|
|
249
|
+
'analyzedPeriod': string;
|
|
250
|
+
/**
|
|
251
|
+
* Reference period identifier.
|
|
252
|
+
*/
|
|
253
|
+
'referencePeriod': string;
|
|
254
|
+
/**
|
|
255
|
+
* Filters applied to analysis.
|
|
256
|
+
*/
|
|
257
|
+
'filters': Array<object>;
|
|
258
|
+
}
|
|
259
|
+
export interface AiKeyDriverAnalysisMeasureDto {
|
|
260
|
+
/**
|
|
261
|
+
* Measure object identifier.
|
|
262
|
+
*/
|
|
263
|
+
'id': string;
|
|
264
|
+
/**
|
|
265
|
+
* Measure object type.
|
|
266
|
+
*/
|
|
267
|
+
'type': AiKeyDriverAnalysisMeasureDtoTypeEnum;
|
|
268
|
+
'aggregation'?: AiKeyDriverAnalysisMeasureDtoAggregationEnum | null;
|
|
269
|
+
}
|
|
270
|
+
export type AiKeyDriverAnalysisMeasureDtoTypeEnum = 'metric' | 'fact' | 'attribute';
|
|
271
|
+
export type AiKeyDriverAnalysisMeasureDtoAggregationEnum = 'SUM' | 'AVG' | 'MIN' | 'MAX' | 'MEDIAN' | 'COUNT';
|
|
272
|
+
export interface AiKeyDriverAnalysisPartDto {
|
|
273
|
+
/**
|
|
274
|
+
* Type of multipart part.
|
|
275
|
+
*/
|
|
276
|
+
'type'?: AiKeyDriverAnalysisPartDtoTypeEnum;
|
|
277
|
+
'kda'?: AiKeyDriverAnalysisDto | null;
|
|
278
|
+
}
|
|
279
|
+
export type AiKeyDriverAnalysisPartDtoTypeEnum = 'kda';
|
|
280
|
+
export interface AiMultipartContentDto {
|
|
281
|
+
/**
|
|
282
|
+
* Type of item content.
|
|
283
|
+
*/
|
|
284
|
+
'type'?: AiMultipartContentDtoTypeEnum;
|
|
285
|
+
/**
|
|
286
|
+
* Ordered multipart content fragments.
|
|
287
|
+
*/
|
|
288
|
+
'parts': Array<AiMultipartContentDtoPartsInner>;
|
|
289
|
+
}
|
|
290
|
+
export type AiMultipartContentDtoTypeEnum = 'multipart';
|
|
291
|
+
/**
|
|
292
|
+
* @type AiMultipartContentDtoPartsInner
|
|
293
|
+
*/
|
|
294
|
+
export type AiMultipartContentDtoPartsInner = ({
|
|
295
|
+
type: 'kda';
|
|
296
|
+
} & AiKeyDriverAnalysisPartDto) | ({
|
|
297
|
+
type: 'searchResults';
|
|
298
|
+
} & AiSearchResultsDto) | ({
|
|
299
|
+
type: 'text';
|
|
300
|
+
} & AiTextPartDto) | ({
|
|
301
|
+
type: 'visualization';
|
|
302
|
+
} & AiVisualizationPartDto) | ({
|
|
303
|
+
type: 'whatIf';
|
|
304
|
+
} & AiWhatIfAnalysisPartDto);
|
|
305
|
+
export declare const AiObjectType: {
|
|
306
|
+
readonly UNIDENTIFIED: "unidentified";
|
|
307
|
+
readonly WORKSPACE: "workspace";
|
|
308
|
+
readonly DATASET: "dataset";
|
|
309
|
+
readonly DATE: "date";
|
|
310
|
+
readonly FACT: "fact";
|
|
311
|
+
readonly METRIC: "metric";
|
|
312
|
+
readonly ATTRIBUTE: "attribute";
|
|
313
|
+
readonly DATE_ATTRIBUTE: "date_attribute";
|
|
314
|
+
readonly LABEL: "label";
|
|
315
|
+
readonly VISUALIZATION: "visualization";
|
|
316
|
+
readonly DASHBOARD: "dashboard";
|
|
317
|
+
readonly FILTER_CONTEXT: "filter_context";
|
|
318
|
+
};
|
|
319
|
+
export type AiObjectType = typeof AiObjectType[keyof typeof AiObjectType];
|
|
320
|
+
export interface AiQuery {
|
|
321
|
+
'fields': {
|
|
322
|
+
[key: string]: AiFieldsValue;
|
|
323
|
+
};
|
|
324
|
+
'filter_by'?: {
|
|
325
|
+
[key: string]: AiFilterByValue;
|
|
326
|
+
};
|
|
327
|
+
}
|
|
328
|
+
export interface AiQueryFieldAttribute {
|
|
329
|
+
'using': string;
|
|
330
|
+
'title'?: string;
|
|
331
|
+
'show_all_values'?: boolean;
|
|
332
|
+
}
|
|
333
|
+
/**
|
|
334
|
+
* Metric/fact/attribute measure field (attribute requires COUNT).
|
|
335
|
+
*/
|
|
336
|
+
export interface AiQueryFieldMeasure {
|
|
337
|
+
'using': string;
|
|
338
|
+
'aggregation'?: AiQueryFieldMeasureAggregationEnum;
|
|
339
|
+
'title'?: string;
|
|
340
|
+
}
|
|
341
|
+
export type AiQueryFieldMeasureAggregationEnum = 'SUM' | 'AVG' | 'MIN' | 'MAX' | 'MEDIAN' | 'COUNT';
|
|
342
|
+
export interface AiRankingFilter {
|
|
343
|
+
'type': AiRankingFilterTypeEnum;
|
|
344
|
+
'using': string;
|
|
345
|
+
'attribute'?: string;
|
|
346
|
+
'attributes'?: Array<string>;
|
|
347
|
+
'top'?: number;
|
|
348
|
+
'bottom'?: number;
|
|
349
|
+
}
|
|
350
|
+
export type AiRankingFilterTypeEnum = 'ranking_filter';
|
|
351
|
+
export interface AiReasoningContentDto {
|
|
352
|
+
/**
|
|
353
|
+
* Type of item content.
|
|
354
|
+
*/
|
|
355
|
+
'type'?: AiReasoningContentDtoTypeEnum;
|
|
356
|
+
/**
|
|
357
|
+
* Reasoning summary intended for UI display.
|
|
358
|
+
*/
|
|
359
|
+
'summary': string;
|
|
360
|
+
}
|
|
361
|
+
export type AiReasoningContentDtoTypeEnum = 'reasoning';
|
|
362
|
+
export interface AiResponseFeedbackDto {
|
|
363
|
+
'type': AiResponseFeedbackDtoTypeEnum;
|
|
364
|
+
'text'?: string | null;
|
|
365
|
+
}
|
|
366
|
+
export type AiResponseFeedbackDtoTypeEnum = 'POSITIVE' | 'NEGATIVE';
|
|
367
|
+
export interface AiResponseFeedbackRequest {
|
|
368
|
+
'feedback': AiResponseFeedbackDto | null;
|
|
369
|
+
}
|
|
370
|
+
export interface AiSearchObjectDto {
|
|
371
|
+
/**
|
|
372
|
+
* Object identifier.
|
|
373
|
+
*/
|
|
374
|
+
'id': string;
|
|
375
|
+
/**
|
|
376
|
+
* Object type name.
|
|
377
|
+
*/
|
|
378
|
+
'type': string;
|
|
379
|
+
/**
|
|
380
|
+
* Workspace identifier.
|
|
381
|
+
*/
|
|
382
|
+
'workspaceId': string;
|
|
383
|
+
/**
|
|
384
|
+
* Object title.
|
|
385
|
+
*/
|
|
386
|
+
'title': string;
|
|
387
|
+
'description'?: string | null;
|
|
388
|
+
'tags'?: Array<string> | null;
|
|
389
|
+
'datasetId'?: string | null;
|
|
390
|
+
'datasetType'?: string | null;
|
|
391
|
+
'datasetTitle'?: string | null;
|
|
392
|
+
'visualizationUrl'?: string | null;
|
|
393
|
+
'createdAt'?: string | null;
|
|
394
|
+
'modifiedAt'?: string | null;
|
|
395
|
+
'isHidden'?: boolean | null;
|
|
396
|
+
/**
|
|
397
|
+
* Search relevance score.
|
|
398
|
+
*/
|
|
399
|
+
'score': number;
|
|
400
|
+
}
|
|
401
|
+
export interface AiSearchRelationshipDto {
|
|
402
|
+
/**
|
|
403
|
+
* Workspace ID of the source object.
|
|
404
|
+
*/
|
|
405
|
+
'sourceWorkspaceId': string;
|
|
406
|
+
/**
|
|
407
|
+
* Source object identifier.
|
|
408
|
+
*/
|
|
409
|
+
'sourceId': string;
|
|
410
|
+
/**
|
|
411
|
+
* Source object type.
|
|
412
|
+
*/
|
|
413
|
+
'sourceType': string;
|
|
414
|
+
/**
|
|
415
|
+
* Source object title.
|
|
416
|
+
*/
|
|
417
|
+
'sourceTitle': string;
|
|
418
|
+
/**
|
|
419
|
+
* Workspace ID of the target object.
|
|
420
|
+
*/
|
|
421
|
+
'targetWorkspaceId': string;
|
|
422
|
+
/**
|
|
423
|
+
* Target object identifier.
|
|
424
|
+
*/
|
|
425
|
+
'targetId': string;
|
|
426
|
+
/**
|
|
427
|
+
* Target object type.
|
|
428
|
+
*/
|
|
429
|
+
'targetType': string;
|
|
430
|
+
/**
|
|
431
|
+
* Target object title.
|
|
432
|
+
*/
|
|
433
|
+
'targetTitle': string;
|
|
434
|
+
}
|
|
435
|
+
export interface AiSearchResultsDto {
|
|
436
|
+
/**
|
|
437
|
+
* Type of multipart part.
|
|
438
|
+
*/
|
|
439
|
+
'type'?: AiSearchResultsDtoTypeEnum;
|
|
440
|
+
/**
|
|
441
|
+
* Search result objects for widget rendering.
|
|
442
|
+
*/
|
|
443
|
+
'objects': Array<AiSearchObjectDto>;
|
|
444
|
+
/**
|
|
445
|
+
* Keywords used in search query.
|
|
446
|
+
*/
|
|
447
|
+
'keywords': Array<string>;
|
|
448
|
+
'requestedObjectType'?: string | null;
|
|
449
|
+
'relationships'?: Array<AiSearchRelationshipDto> | null;
|
|
450
|
+
}
|
|
451
|
+
export type AiSearchResultsDtoTypeEnum = 'searchResults';
|
|
452
|
+
export interface AiSendMessageContentDto {
|
|
453
|
+
'type': AiSendMessageContentDtoTypeEnum;
|
|
454
|
+
'text': string;
|
|
455
|
+
}
|
|
456
|
+
export type AiSendMessageContentDtoTypeEnum = 'text';
|
|
457
|
+
export interface AiSendMessageItemDto {
|
|
458
|
+
'role': AiSendMessageItemDtoRoleEnum;
|
|
459
|
+
'content': AiSendMessageContentDto;
|
|
460
|
+
}
|
|
461
|
+
export type AiSendMessageItemDtoRoleEnum = 'user';
|
|
462
|
+
export interface AiSendMessageOptionsDto {
|
|
463
|
+
'search'?: AiSendMessageSearchOptionsDto | null;
|
|
464
|
+
}
|
|
465
|
+
/**
|
|
466
|
+
* POST /conversations/{conversationId}/messages body.
|
|
467
|
+
*/
|
|
468
|
+
export interface AiSendMessageRequest {
|
|
469
|
+
'item': AiSendMessageItemDto;
|
|
470
|
+
'options'?: AiSendMessageOptionsDto | null;
|
|
471
|
+
}
|
|
472
|
+
export interface AiSendMessageSearchOptionsDto {
|
|
473
|
+
'objectTypes'?: Array<AiObjectType> | null;
|
|
474
|
+
'searchLimit'?: number | null;
|
|
475
|
+
'allowedRelationshipTypes'?: Array<AiAllowedRelationshipTypeDto> | null;
|
|
476
|
+
}
|
|
477
|
+
export interface AiTextMessageContentDto {
|
|
478
|
+
/**
|
|
479
|
+
* Type of item content.
|
|
480
|
+
*/
|
|
481
|
+
'type'?: AiTextMessageContentDtoTypeEnum;
|
|
482
|
+
/**
|
|
483
|
+
* Plain text message content.
|
|
484
|
+
*/
|
|
485
|
+
'text': string;
|
|
486
|
+
}
|
|
487
|
+
export type AiTextMessageContentDtoTypeEnum = 'text';
|
|
488
|
+
export interface AiTextPartDto {
|
|
489
|
+
/**
|
|
490
|
+
* Type of multipart part.
|
|
491
|
+
*/
|
|
492
|
+
'type'?: AiTextPartDtoTypeEnum;
|
|
493
|
+
/**
|
|
494
|
+
* Text fragment.
|
|
495
|
+
*/
|
|
496
|
+
'text': string;
|
|
497
|
+
}
|
|
498
|
+
export type AiTextPartDtoTypeEnum = 'text';
|
|
499
|
+
export interface AiValidationError {
|
|
500
|
+
'loc': Array<AiValidationErrorLocInner>;
|
|
501
|
+
'msg': string;
|
|
502
|
+
'type': string;
|
|
503
|
+
'input'?: any;
|
|
504
|
+
'ctx'?: object;
|
|
505
|
+
}
|
|
506
|
+
export interface AiValidationErrorLocInner {
|
|
507
|
+
}
|
|
508
|
+
export interface AiVisualization {
|
|
509
|
+
'type': AiVisualizationTypeEnum;
|
|
510
|
+
'id': string;
|
|
511
|
+
'query': AiQuery;
|
|
512
|
+
'title'?: string;
|
|
513
|
+
'description'?: string;
|
|
514
|
+
'tags'?: Array<string>;
|
|
515
|
+
'metrics'?: Array<AiVisualizationMetricsInner>;
|
|
516
|
+
'view_by'?: Array<AiVisualizationMetricsInner>;
|
|
517
|
+
'segment_by'?: Array<AiVisualizationMetricsInner>;
|
|
518
|
+
'rows'?: Array<AiVisualizationMetricsInner>;
|
|
519
|
+
'columns'?: Array<AiVisualizationMetricsInner>;
|
|
520
|
+
'config'?: AiVisualizationConfig;
|
|
521
|
+
}
|
|
522
|
+
export type AiVisualizationTypeEnum = 'table' | 'headline_chart' | 'bar_chart' | 'column_chart' | 'line_chart' | 'pie_chart' | 'scatter_chart';
|
|
523
|
+
export interface AiVisualizationConfig {
|
|
524
|
+
'forecast_enabled'?: boolean;
|
|
525
|
+
'forecast_confidence'?: number;
|
|
526
|
+
'forecast_period'?: AiForecastPeriod;
|
|
527
|
+
'forecast_seasonal'?: boolean;
|
|
528
|
+
'clustering_enabled'?: boolean;
|
|
529
|
+
'clustering_amount'?: AiClusteringAmount;
|
|
530
|
+
'clustering_threshold'?: number;
|
|
531
|
+
}
|
|
532
|
+
/**
|
|
533
|
+
* PATCH /conversations/{conversationId}/visualizations/{visualizationId} body.
|
|
534
|
+
*/
|
|
535
|
+
export interface AiVisualizationIdUpdateRequest {
|
|
536
|
+
'id': string;
|
|
537
|
+
}
|
|
538
|
+
export interface AiVisualizationMetricsInner {
|
|
539
|
+
'field': string;
|
|
540
|
+
}
|
|
541
|
+
export interface AiVisualizationPartDto {
|
|
542
|
+
/**
|
|
543
|
+
* Type of multipart part.
|
|
544
|
+
*/
|
|
545
|
+
'type'?: AiVisualizationPartDtoTypeEnum;
|
|
546
|
+
'visualization'?: AiVisualization | null;
|
|
547
|
+
/**
|
|
548
|
+
* Visualization state metadata.
|
|
549
|
+
*/
|
|
550
|
+
'metadata': AiVisualizationPartMetadataDto;
|
|
551
|
+
}
|
|
552
|
+
export type AiVisualizationPartDtoTypeEnum = 'visualization';
|
|
553
|
+
export interface AiVisualizationPartMetadataDto {
|
|
554
|
+
/**
|
|
555
|
+
* Whether the visualization was explicitly saved by user action.
|
|
556
|
+
*/
|
|
557
|
+
'isSaved': boolean;
|
|
558
|
+
}
|
|
559
|
+
export interface AiWhatIfAnalysisPartDto {
|
|
560
|
+
/**
|
|
561
|
+
* Type of multipart part.
|
|
562
|
+
*/
|
|
563
|
+
'type'?: AiWhatIfAnalysisPartDtoTypeEnum;
|
|
564
|
+
'whatIf'?: AiWhatIfScenarioDto | null;
|
|
565
|
+
}
|
|
566
|
+
export type AiWhatIfAnalysisPartDtoTypeEnum = 'whatIf';
|
|
567
|
+
export interface AiWhatIfMeasureAdjustmentDto {
|
|
568
|
+
/**
|
|
569
|
+
* Adjusted metric identifier.
|
|
570
|
+
*/
|
|
571
|
+
'metricId': string;
|
|
572
|
+
/**
|
|
573
|
+
* Adjusted metric type.
|
|
574
|
+
*/
|
|
575
|
+
'metricType': string;
|
|
576
|
+
/**
|
|
577
|
+
* Scenario MAQL formula.
|
|
578
|
+
*/
|
|
579
|
+
'scenarioMaql': string;
|
|
580
|
+
}
|
|
581
|
+
export interface AiWhatIfScenarioDto {
|
|
582
|
+
/**
|
|
583
|
+
* Base visualization reference used by scenario.
|
|
584
|
+
*/
|
|
585
|
+
'visualizationRef': string;
|
|
586
|
+
/**
|
|
587
|
+
* Defined what-if variants.
|
|
588
|
+
*/
|
|
589
|
+
'scenarios': Array<AiWhatIfScenarioVariantDto>;
|
|
590
|
+
/**
|
|
591
|
+
* Whether baseline values are included.
|
|
592
|
+
*/
|
|
593
|
+
'includeBaseline': boolean;
|
|
594
|
+
}
|
|
595
|
+
export interface AiWhatIfScenarioVariantDto {
|
|
596
|
+
/**
|
|
597
|
+
* Scenario name.
|
|
598
|
+
*/
|
|
599
|
+
'label': string;
|
|
600
|
+
/**
|
|
601
|
+
* Scenario adjustments.
|
|
602
|
+
*/
|
|
603
|
+
'adjustments': Array<AiWhatIfMeasureAdjustmentDto>;
|
|
604
|
+
}
|
|
605
|
+
/**
|
|
606
|
+
*
|
|
607
|
+
* @summary Delete Conversation
|
|
608
|
+
* @param {string} workspaceId
|
|
609
|
+
* @param {string} conversationId
|
|
610
|
+
* @param {*} [options] Override http request option.
|
|
611
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
612
|
+
* @throws {RequiredError}
|
|
613
|
+
*/
|
|
614
|
+
export declare function ConversationsAiAxiosParamCreator_DeleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDelete(workspaceId: string, conversationId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
615
|
+
/**
|
|
616
|
+
*
|
|
617
|
+
* @summary Get Conversation
|
|
618
|
+
* @param {string} workspaceId
|
|
619
|
+
* @param {string} conversationId
|
|
620
|
+
* @param {*} [options] Override http request option.
|
|
621
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
622
|
+
* @throws {RequiredError}
|
|
623
|
+
*/
|
|
624
|
+
export declare function ConversationsAiAxiosParamCreator_GetConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGet(workspaceId: string, conversationId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
625
|
+
/**
|
|
626
|
+
*
|
|
627
|
+
* @summary Get Conversations
|
|
628
|
+
* @param {string} workspaceId
|
|
629
|
+
* @param {*} [options] Override http request option.
|
|
630
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
631
|
+
* @throws {RequiredError}
|
|
632
|
+
*/
|
|
633
|
+
export declare function ConversationsAiAxiosParamCreator_GetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGet(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
634
|
+
/**
|
|
635
|
+
*
|
|
636
|
+
* @summary Post Conversations
|
|
637
|
+
* @param {string} workspaceId
|
|
638
|
+
* @param {*} [options] Override http request option.
|
|
639
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
640
|
+
* @throws {RequiredError}
|
|
641
|
+
*/
|
|
642
|
+
export declare function ConversationsAiAxiosParamCreator_PostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPost(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
643
|
+
/**
|
|
644
|
+
*
|
|
645
|
+
* @summary Delete Conversation
|
|
646
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
647
|
+
* @param {string} basePath Base path.
|
|
648
|
+
* @param {ConversationsAiDeleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDeleteRequest} requestParameters Request parameters.
|
|
649
|
+
* @param {*} [options] Override http request option.
|
|
650
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
651
|
+
* @throws {RequiredError}
|
|
652
|
+
*/
|
|
653
|
+
export declare function ConversationsAi_DeleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDelete(axios: AxiosInstance, basePath: string, requestParameters: ConversationsAiDeleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDeleteRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
654
|
+
/**
|
|
655
|
+
*
|
|
656
|
+
* @summary Get Conversation
|
|
657
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
658
|
+
* @param {string} basePath Base path.
|
|
659
|
+
* @param {ConversationsAiGetConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGetRequest} requestParameters Request parameters.
|
|
660
|
+
* @param {*} [options] Override http request option.
|
|
661
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
662
|
+
* @throws {RequiredError}
|
|
663
|
+
*/
|
|
664
|
+
export declare function ConversationsAi_GetConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGet(axios: AxiosInstance, basePath: string, requestParameters: ConversationsAiGetConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGetRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiConversationResponseDto>;
|
|
665
|
+
/**
|
|
666
|
+
*
|
|
667
|
+
* @summary Get Conversations
|
|
668
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
669
|
+
* @param {string} basePath Base path.
|
|
670
|
+
* @param {ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGetRequest} requestParameters Request parameters.
|
|
671
|
+
* @param {*} [options] Override http request option.
|
|
672
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
673
|
+
* @throws {RequiredError}
|
|
674
|
+
*/
|
|
675
|
+
export declare function ConversationsAi_GetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGet(axios: AxiosInstance, basePath: string, requestParameters: ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGetRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<Array<AiConversationResponseDto>>;
|
|
676
|
+
/**
|
|
677
|
+
*
|
|
678
|
+
* @summary Post Conversations
|
|
679
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
680
|
+
* @param {string} basePath Base path.
|
|
681
|
+
* @param {ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPostRequest} requestParameters Request parameters.
|
|
682
|
+
* @param {*} [options] Override http request option.
|
|
683
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
684
|
+
* @throws {RequiredError}
|
|
685
|
+
*/
|
|
686
|
+
export declare function ConversationsAi_PostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPost(axios: AxiosInstance, basePath: string, requestParameters: ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPostRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiConversationResponseDto>;
|
|
687
|
+
/**
|
|
688
|
+
* ConversationsAi - interface
|
|
689
|
+
* @export
|
|
690
|
+
* @interface ConversationsAi
|
|
691
|
+
*/
|
|
692
|
+
export interface ConversationsAiInterface {
|
|
693
|
+
/**
|
|
694
|
+
*
|
|
695
|
+
* @summary Delete Conversation
|
|
696
|
+
* @param {ConversationsAiDeleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDeleteRequest} requestParameters Request parameters.
|
|
697
|
+
* @param {*} [options] Override http request option.
|
|
698
|
+
* @throws {RequiredError}
|
|
699
|
+
* @memberof ConversationsAiInterface
|
|
700
|
+
*/
|
|
701
|
+
deleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDelete(requestParameters: ConversationsAiDeleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDeleteRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
702
|
+
/**
|
|
703
|
+
*
|
|
704
|
+
* @summary Get Conversation
|
|
705
|
+
* @param {ConversationsAiGetConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGetRequest} requestParameters Request parameters.
|
|
706
|
+
* @param {*} [options] Override http request option.
|
|
707
|
+
* @throws {RequiredError}
|
|
708
|
+
* @memberof ConversationsAiInterface
|
|
709
|
+
*/
|
|
710
|
+
getConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGet(requestParameters: ConversationsAiGetConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponseDto>;
|
|
711
|
+
/**
|
|
712
|
+
*
|
|
713
|
+
* @summary Get Conversations
|
|
714
|
+
* @param {ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGetRequest} requestParameters Request parameters.
|
|
715
|
+
* @param {*} [options] Override http request option.
|
|
716
|
+
* @throws {RequiredError}
|
|
717
|
+
* @memberof ConversationsAiInterface
|
|
718
|
+
*/
|
|
719
|
+
getConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGet(requestParameters: ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGetRequest, options?: AxiosRequestConfig): AxiosPromise<Array<AiConversationResponseDto>>;
|
|
720
|
+
/**
|
|
721
|
+
*
|
|
722
|
+
* @summary Post Conversations
|
|
723
|
+
* @param {ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPostRequest} requestParameters Request parameters.
|
|
724
|
+
* @param {*} [options] Override http request option.
|
|
725
|
+
* @throws {RequiredError}
|
|
726
|
+
* @memberof ConversationsAiInterface
|
|
727
|
+
*/
|
|
728
|
+
postConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPost(requestParameters: ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPostRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponseDto>;
|
|
729
|
+
}
|
|
730
|
+
/**
|
|
731
|
+
* Request parameters for deleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDelete operation in ConversationsAi.
|
|
732
|
+
* @export
|
|
733
|
+
* @interface ConversationsAiDeleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDeleteRequest
|
|
734
|
+
*/
|
|
735
|
+
export interface ConversationsAiDeleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDeleteRequest {
|
|
736
|
+
/**
|
|
737
|
+
*
|
|
738
|
+
* @type {string}
|
|
739
|
+
* @memberof ConversationsAiDeleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDelete
|
|
740
|
+
*/
|
|
741
|
+
readonly workspaceId: string;
|
|
742
|
+
/**
|
|
743
|
+
*
|
|
744
|
+
* @type {string}
|
|
745
|
+
* @memberof ConversationsAiDeleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDelete
|
|
746
|
+
*/
|
|
747
|
+
readonly conversationId: string;
|
|
748
|
+
}
|
|
749
|
+
/**
|
|
750
|
+
* Request parameters for getConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGet operation in ConversationsAi.
|
|
751
|
+
* @export
|
|
752
|
+
* @interface ConversationsAiGetConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGetRequest
|
|
753
|
+
*/
|
|
754
|
+
export interface ConversationsAiGetConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGetRequest {
|
|
755
|
+
/**
|
|
756
|
+
*
|
|
757
|
+
* @type {string}
|
|
758
|
+
* @memberof ConversationsAiGetConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGet
|
|
759
|
+
*/
|
|
760
|
+
readonly workspaceId: string;
|
|
761
|
+
/**
|
|
762
|
+
*
|
|
763
|
+
* @type {string}
|
|
764
|
+
* @memberof ConversationsAiGetConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGet
|
|
765
|
+
*/
|
|
766
|
+
readonly conversationId: string;
|
|
767
|
+
}
|
|
768
|
+
/**
|
|
769
|
+
* Request parameters for getConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGet operation in ConversationsAi.
|
|
770
|
+
* @export
|
|
771
|
+
* @interface ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGetRequest
|
|
772
|
+
*/
|
|
773
|
+
export interface ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGetRequest {
|
|
774
|
+
/**
|
|
775
|
+
*
|
|
776
|
+
* @type {string}
|
|
777
|
+
* @memberof ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGet
|
|
778
|
+
*/
|
|
779
|
+
readonly workspaceId: string;
|
|
780
|
+
}
|
|
781
|
+
/**
|
|
782
|
+
* Request parameters for postConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPost operation in ConversationsAi.
|
|
783
|
+
* @export
|
|
784
|
+
* @interface ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPostRequest
|
|
785
|
+
*/
|
|
786
|
+
export interface ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPostRequest {
|
|
787
|
+
/**
|
|
788
|
+
*
|
|
789
|
+
* @type {string}
|
|
790
|
+
* @memberof ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPost
|
|
791
|
+
*/
|
|
792
|
+
readonly workspaceId: string;
|
|
793
|
+
}
|
|
794
|
+
/**
|
|
795
|
+
* ConversationsAi - object-oriented interface
|
|
796
|
+
* @export
|
|
797
|
+
* @class ConversationsAi
|
|
798
|
+
* @extends {BaseAPI}
|
|
799
|
+
*/
|
|
800
|
+
export declare class ConversationsAi extends BaseAPI implements ConversationsAiInterface {
|
|
801
|
+
/**
|
|
802
|
+
*
|
|
803
|
+
* @summary Delete Conversation
|
|
804
|
+
* @param {ConversationsAiDeleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDeleteRequest} requestParameters Request parameters.
|
|
805
|
+
* @param {*} [options] Override http request option.
|
|
806
|
+
* @throws {RequiredError}
|
|
807
|
+
* @memberof ConversationsAi
|
|
808
|
+
*/
|
|
809
|
+
deleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDelete(requestParameters: ConversationsAiDeleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDeleteRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
810
|
+
/**
|
|
811
|
+
*
|
|
812
|
+
* @summary Get Conversation
|
|
813
|
+
* @param {ConversationsAiGetConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGetRequest} requestParameters Request parameters.
|
|
814
|
+
* @param {*} [options] Override http request option.
|
|
815
|
+
* @throws {RequiredError}
|
|
816
|
+
* @memberof ConversationsAi
|
|
817
|
+
*/
|
|
818
|
+
getConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGet(requestParameters: ConversationsAiGetConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponseDto>;
|
|
819
|
+
/**
|
|
820
|
+
*
|
|
821
|
+
* @summary Get Conversations
|
|
822
|
+
* @param {ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGetRequest} requestParameters Request parameters.
|
|
823
|
+
* @param {*} [options] Override http request option.
|
|
824
|
+
* @throws {RequiredError}
|
|
825
|
+
* @memberof ConversationsAi
|
|
826
|
+
*/
|
|
827
|
+
getConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGet(requestParameters: ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponseDto[]>;
|
|
828
|
+
/**
|
|
829
|
+
*
|
|
830
|
+
* @summary Post Conversations
|
|
831
|
+
* @param {ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPostRequest} requestParameters Request parameters.
|
|
832
|
+
* @param {*} [options] Override http request option.
|
|
833
|
+
* @throws {RequiredError}
|
|
834
|
+
* @memberof ConversationsAi
|
|
835
|
+
*/
|
|
836
|
+
postConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPost(requestParameters: ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPostRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponseDto>;
|
|
837
|
+
}
|
|
838
|
+
/**
|
|
839
|
+
*
|
|
840
|
+
* @summary Get Conversation Items
|
|
841
|
+
* @param {string} workspaceId
|
|
842
|
+
* @param {string} conversationId
|
|
843
|
+
* @param {*} [options] Override http request option.
|
|
844
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
845
|
+
* @throws {RequiredError}
|
|
846
|
+
*/
|
|
847
|
+
export declare function ItemsAiAxiosParamCreator_GetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGet(workspaceId: string, conversationId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
848
|
+
/**
|
|
849
|
+
*
|
|
850
|
+
* @summary Get Conversation Items
|
|
851
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
852
|
+
* @param {string} basePath Base path.
|
|
853
|
+
* @param {ItemsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest} requestParameters Request parameters.
|
|
854
|
+
* @param {*} [options] Override http request option.
|
|
855
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
856
|
+
* @throws {RequiredError}
|
|
857
|
+
*/
|
|
858
|
+
export declare function ItemsAi_GetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGet(axios: AxiosInstance, basePath: string, requestParameters: ItemsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiConversationItemListResponseDto>;
|
|
859
|
+
/**
|
|
860
|
+
* ItemsAi - interface
|
|
861
|
+
* @export
|
|
862
|
+
* @interface ItemsAi
|
|
863
|
+
*/
|
|
864
|
+
export interface ItemsAiInterface {
|
|
865
|
+
/**
|
|
866
|
+
*
|
|
867
|
+
* @summary Get Conversation Items
|
|
868
|
+
* @param {ItemsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest} requestParameters Request parameters.
|
|
869
|
+
* @param {*} [options] Override http request option.
|
|
870
|
+
* @throws {RequiredError}
|
|
871
|
+
* @memberof ItemsAiInterface
|
|
872
|
+
*/
|
|
873
|
+
getConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGet(requestParameters: ItemsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationItemListResponseDto>;
|
|
874
|
+
}
|
|
875
|
+
/**
|
|
876
|
+
* Request parameters for getConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGet operation in ItemsAi.
|
|
877
|
+
* @export
|
|
878
|
+
* @interface ItemsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest
|
|
879
|
+
*/
|
|
880
|
+
export interface ItemsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest {
|
|
881
|
+
/**
|
|
882
|
+
*
|
|
883
|
+
* @type {string}
|
|
884
|
+
* @memberof ItemsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGet
|
|
885
|
+
*/
|
|
886
|
+
readonly workspaceId: string;
|
|
887
|
+
/**
|
|
888
|
+
*
|
|
889
|
+
* @type {string}
|
|
890
|
+
* @memberof ItemsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGet
|
|
891
|
+
*/
|
|
892
|
+
readonly conversationId: string;
|
|
893
|
+
}
|
|
894
|
+
/**
|
|
895
|
+
* ItemsAi - object-oriented interface
|
|
896
|
+
* @export
|
|
897
|
+
* @class ItemsAi
|
|
898
|
+
* @extends {BaseAPI}
|
|
899
|
+
*/
|
|
900
|
+
export declare class ItemsAi extends BaseAPI implements ItemsAiInterface {
|
|
901
|
+
/**
|
|
902
|
+
*
|
|
903
|
+
* @summary Get Conversation Items
|
|
904
|
+
* @param {ItemsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest} requestParameters Request parameters.
|
|
905
|
+
* @param {*} [options] Override http request option.
|
|
906
|
+
* @throws {RequiredError}
|
|
907
|
+
* @memberof ItemsAi
|
|
908
|
+
*/
|
|
909
|
+
getConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGet(requestParameters: ItemsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationItemListResponseDto>;
|
|
910
|
+
}
|
|
911
|
+
/**
|
|
912
|
+
* Download a knowledge document\'s raw file.
|
|
913
|
+
* @summary Download Document
|
|
914
|
+
* @param {string} workspaceId
|
|
915
|
+
* @param {string} filename
|
|
916
|
+
* @param {*} [options] Override http request option.
|
|
917
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
918
|
+
* @throws {RequiredError}
|
|
919
|
+
*/
|
|
920
|
+
export declare function KnowledgeAiAxiosParamCreator_DownloadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsFilenameDownloadGet(workspaceId: string, filename: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
921
|
+
/**
|
|
922
|
+
* Upload a new knowledge document. Returns 409 if filename already exists.
|
|
923
|
+
* @summary Upload Document
|
|
924
|
+
* @param {string} workspaceId
|
|
925
|
+
* @param {File} file
|
|
926
|
+
* @param {*} [options] Override http request option.
|
|
927
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
928
|
+
* @throws {RequiredError}
|
|
929
|
+
*/
|
|
930
|
+
export declare function KnowledgeAiAxiosParamCreator_UploadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPost(workspaceId: string, file: File, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
931
|
+
/**
|
|
932
|
+
* Upload or replace a knowledge document.
|
|
933
|
+
* @summary Upsert Document
|
|
934
|
+
* @param {string} workspaceId
|
|
935
|
+
* @param {File} file
|
|
936
|
+
* @param {*} [options] Override http request option.
|
|
937
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
938
|
+
* @throws {RequiredError}
|
|
939
|
+
*/
|
|
940
|
+
export declare function KnowledgeAiAxiosParamCreator_UpsertDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPut(workspaceId: string, file: File, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
941
|
+
/**
|
|
942
|
+
* Download a knowledge document\'s raw file.
|
|
943
|
+
* @summary Download Document
|
|
944
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
945
|
+
* @param {string} basePath Base path.
|
|
946
|
+
* @param {KnowledgeAiDownloadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsFilenameDownloadGetRequest} requestParameters Request parameters.
|
|
947
|
+
* @param {*} [options] Override http request option.
|
|
948
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
949
|
+
* @throws {RequiredError}
|
|
950
|
+
*/
|
|
951
|
+
export declare function KnowledgeAi_DownloadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsFilenameDownloadGet(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDownloadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsFilenameDownloadGetRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<any>;
|
|
952
|
+
/**
|
|
953
|
+
* Upload a new knowledge document. Returns 409 if filename already exists.
|
|
954
|
+
* @summary Upload Document
|
|
955
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
956
|
+
* @param {string} basePath Base path.
|
|
957
|
+
* @param {KnowledgeAiUploadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPostRequest} requestParameters Request parameters.
|
|
958
|
+
* @param {*} [options] Override http request option.
|
|
959
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
960
|
+
* @throws {RequiredError}
|
|
961
|
+
*/
|
|
962
|
+
export declare function KnowledgeAi_UploadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPost(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiUploadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPostRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<any>;
|
|
963
|
+
/**
|
|
964
|
+
* Upload or replace a knowledge document.
|
|
965
|
+
* @summary Upsert Document
|
|
966
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
967
|
+
* @param {string} basePath Base path.
|
|
968
|
+
* @param {KnowledgeAiUpsertDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPutRequest} requestParameters Request parameters.
|
|
969
|
+
* @param {*} [options] Override http request option.
|
|
970
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
971
|
+
* @throws {RequiredError}
|
|
972
|
+
*/
|
|
973
|
+
export declare function KnowledgeAi_UpsertDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPut(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiUpsertDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPutRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<any>;
|
|
974
|
+
/**
|
|
975
|
+
* KnowledgeAi - interface
|
|
976
|
+
* @export
|
|
977
|
+
* @interface KnowledgeAi
|
|
978
|
+
*/
|
|
979
|
+
export interface KnowledgeAiInterface {
|
|
980
|
+
/**
|
|
981
|
+
* Download a knowledge document\'s raw file.
|
|
982
|
+
* @summary Download Document
|
|
983
|
+
* @param {KnowledgeAiDownloadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsFilenameDownloadGetRequest} requestParameters Request parameters.
|
|
984
|
+
* @param {*} [options] Override http request option.
|
|
985
|
+
* @throws {RequiredError}
|
|
986
|
+
* @memberof KnowledgeAiInterface
|
|
987
|
+
*/
|
|
988
|
+
downloadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsFilenameDownloadGet(requestParameters: KnowledgeAiDownloadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsFilenameDownloadGetRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
|
|
989
|
+
/**
|
|
990
|
+
* Upload a new knowledge document. Returns 409 if filename already exists.
|
|
991
|
+
* @summary Upload Document
|
|
992
|
+
* @param {KnowledgeAiUploadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPostRequest} requestParameters Request parameters.
|
|
993
|
+
* @param {*} [options] Override http request option.
|
|
994
|
+
* @throws {RequiredError}
|
|
995
|
+
* @memberof KnowledgeAiInterface
|
|
996
|
+
*/
|
|
997
|
+
uploadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPost(requestParameters: KnowledgeAiUploadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPostRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
|
|
998
|
+
/**
|
|
999
|
+
* Upload or replace a knowledge document.
|
|
1000
|
+
* @summary Upsert Document
|
|
1001
|
+
* @param {KnowledgeAiUpsertDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPutRequest} requestParameters Request parameters.
|
|
1002
|
+
* @param {*} [options] Override http request option.
|
|
1003
|
+
* @throws {RequiredError}
|
|
1004
|
+
* @memberof KnowledgeAiInterface
|
|
1005
|
+
*/
|
|
1006
|
+
upsertDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPut(requestParameters: KnowledgeAiUpsertDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPutRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
|
|
1007
|
+
}
|
|
1008
|
+
/**
|
|
1009
|
+
* Request parameters for downloadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsFilenameDownloadGet operation in KnowledgeAi.
|
|
1010
|
+
* @export
|
|
1011
|
+
* @interface KnowledgeAiDownloadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsFilenameDownloadGetRequest
|
|
1012
|
+
*/
|
|
1013
|
+
export interface KnowledgeAiDownloadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsFilenameDownloadGetRequest {
|
|
1014
|
+
/**
|
|
1015
|
+
*
|
|
1016
|
+
* @type {string}
|
|
1017
|
+
* @memberof KnowledgeAiDownloadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsFilenameDownloadGet
|
|
1018
|
+
*/
|
|
1019
|
+
readonly workspaceId: string;
|
|
1020
|
+
/**
|
|
1021
|
+
*
|
|
1022
|
+
* @type {string}
|
|
1023
|
+
* @memberof KnowledgeAiDownloadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsFilenameDownloadGet
|
|
1024
|
+
*/
|
|
1025
|
+
readonly filename: string;
|
|
1026
|
+
}
|
|
1027
|
+
/**
|
|
1028
|
+
* Request parameters for uploadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPost operation in KnowledgeAi.
|
|
1029
|
+
* @export
|
|
1030
|
+
* @interface KnowledgeAiUploadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPostRequest
|
|
1031
|
+
*/
|
|
1032
|
+
export interface KnowledgeAiUploadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPostRequest {
|
|
1033
|
+
/**
|
|
1034
|
+
*
|
|
1035
|
+
* @type {string}
|
|
1036
|
+
* @memberof KnowledgeAiUploadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPost
|
|
1037
|
+
*/
|
|
1038
|
+
readonly workspaceId: string;
|
|
1039
|
+
/**
|
|
1040
|
+
*
|
|
1041
|
+
* @type {File}
|
|
1042
|
+
* @memberof KnowledgeAiUploadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPost
|
|
1043
|
+
*/
|
|
1044
|
+
readonly file: File;
|
|
1045
|
+
}
|
|
1046
|
+
/**
|
|
1047
|
+
* Request parameters for upsertDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPut operation in KnowledgeAi.
|
|
1048
|
+
* @export
|
|
1049
|
+
* @interface KnowledgeAiUpsertDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPutRequest
|
|
1050
|
+
*/
|
|
1051
|
+
export interface KnowledgeAiUpsertDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPutRequest {
|
|
1052
|
+
/**
|
|
1053
|
+
*
|
|
1054
|
+
* @type {string}
|
|
1055
|
+
* @memberof KnowledgeAiUpsertDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPut
|
|
1056
|
+
*/
|
|
1057
|
+
readonly workspaceId: string;
|
|
1058
|
+
/**
|
|
1059
|
+
*
|
|
1060
|
+
* @type {File}
|
|
1061
|
+
* @memberof KnowledgeAiUpsertDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPut
|
|
1062
|
+
*/
|
|
1063
|
+
readonly file: File;
|
|
1064
|
+
}
|
|
1065
|
+
/**
|
|
1066
|
+
* KnowledgeAi - object-oriented interface
|
|
1067
|
+
* @export
|
|
1068
|
+
* @class KnowledgeAi
|
|
1069
|
+
* @extends {BaseAPI}
|
|
1070
|
+
*/
|
|
1071
|
+
export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface {
|
|
1072
|
+
/**
|
|
1073
|
+
* Download a knowledge document\'s raw file.
|
|
1074
|
+
* @summary Download Document
|
|
1075
|
+
* @param {KnowledgeAiDownloadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsFilenameDownloadGetRequest} requestParameters Request parameters.
|
|
1076
|
+
* @param {*} [options] Override http request option.
|
|
1077
|
+
* @throws {RequiredError}
|
|
1078
|
+
* @memberof KnowledgeAi
|
|
1079
|
+
*/
|
|
1080
|
+
downloadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsFilenameDownloadGet(requestParameters: KnowledgeAiDownloadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsFilenameDownloadGetRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
|
|
1081
|
+
/**
|
|
1082
|
+
* Upload a new knowledge document. Returns 409 if filename already exists.
|
|
1083
|
+
* @summary Upload Document
|
|
1084
|
+
* @param {KnowledgeAiUploadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPostRequest} requestParameters Request parameters.
|
|
1085
|
+
* @param {*} [options] Override http request option.
|
|
1086
|
+
* @throws {RequiredError}
|
|
1087
|
+
* @memberof KnowledgeAi
|
|
1088
|
+
*/
|
|
1089
|
+
uploadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPost(requestParameters: KnowledgeAiUploadDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPostRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
|
|
1090
|
+
/**
|
|
1091
|
+
* Upload or replace a knowledge document.
|
|
1092
|
+
* @summary Upsert Document
|
|
1093
|
+
* @param {KnowledgeAiUpsertDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPutRequest} requestParameters Request parameters.
|
|
1094
|
+
* @param {*} [options] Override http request option.
|
|
1095
|
+
* @throws {RequiredError}
|
|
1096
|
+
* @memberof KnowledgeAi
|
|
1097
|
+
*/
|
|
1098
|
+
upsertDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPut(requestParameters: KnowledgeAiUpsertDocumentApiV1AiWorkspacesWorkspaceIdKnowledgeDocumentsUploadPutRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
|
|
1099
|
+
}
|
|
1100
|
+
/**
|
|
1101
|
+
*
|
|
1102
|
+
* @summary Post Messages
|
|
1103
|
+
* @param {string} workspaceId
|
|
1104
|
+
* @param {string} conversationId
|
|
1105
|
+
* @param {AiSendMessageRequest} aiSendMessageRequest
|
|
1106
|
+
* @param {*} [options] Override http request option.
|
|
1107
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
1108
|
+
* @throws {RequiredError}
|
|
1109
|
+
*/
|
|
1110
|
+
export declare function MessagesAiAxiosParamCreator_PostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(workspaceId: string, conversationId: string, aiSendMessageRequest: AiSendMessageRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
1111
|
+
/**
|
|
1112
|
+
*
|
|
1113
|
+
* @summary Post Messages
|
|
1114
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
1115
|
+
* @param {string} basePath Base path.
|
|
1116
|
+
* @param {MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest} requestParameters Request parameters.
|
|
1117
|
+
* @param {*} [options] Override http request option.
|
|
1118
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
1119
|
+
* @throws {RequiredError}
|
|
1120
|
+
*/
|
|
1121
|
+
export declare function MessagesAi_PostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(axios: AxiosInstance, basePath: string, requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<any>;
|
|
1122
|
+
/**
|
|
1123
|
+
* MessagesAi - interface
|
|
1124
|
+
* @export
|
|
1125
|
+
* @interface MessagesAi
|
|
1126
|
+
*/
|
|
1127
|
+
export interface MessagesAiInterface {
|
|
1128
|
+
/**
|
|
1129
|
+
*
|
|
1130
|
+
* @summary Post Messages
|
|
1131
|
+
* @param {MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest} requestParameters Request parameters.
|
|
1132
|
+
* @param {*} [options] Override http request option.
|
|
1133
|
+
* @throws {RequiredError}
|
|
1134
|
+
* @memberof MessagesAiInterface
|
|
1135
|
+
*/
|
|
1136
|
+
postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
|
|
1137
|
+
}
|
|
1138
|
+
/**
|
|
1139
|
+
* Request parameters for postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost operation in MessagesAi.
|
|
1140
|
+
* @export
|
|
1141
|
+
* @interface MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest
|
|
1142
|
+
*/
|
|
1143
|
+
export interface MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest {
|
|
1144
|
+
/**
|
|
1145
|
+
*
|
|
1146
|
+
* @type {string}
|
|
1147
|
+
* @memberof MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost
|
|
1148
|
+
*/
|
|
1149
|
+
readonly workspaceId: string;
|
|
1150
|
+
/**
|
|
1151
|
+
*
|
|
1152
|
+
* @type {string}
|
|
1153
|
+
* @memberof MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost
|
|
1154
|
+
*/
|
|
1155
|
+
readonly conversationId: string;
|
|
1156
|
+
/**
|
|
1157
|
+
*
|
|
1158
|
+
* @type {AiSendMessageRequest}
|
|
1159
|
+
* @memberof MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost
|
|
1160
|
+
*/
|
|
1161
|
+
readonly aiSendMessageRequest: AiSendMessageRequest;
|
|
1162
|
+
}
|
|
1163
|
+
/**
|
|
1164
|
+
* MessagesAi - object-oriented interface
|
|
1165
|
+
* @export
|
|
1166
|
+
* @class MessagesAi
|
|
1167
|
+
* @extends {BaseAPI}
|
|
1168
|
+
*/
|
|
1169
|
+
export declare class MessagesAi extends BaseAPI implements MessagesAiInterface {
|
|
1170
|
+
/**
|
|
1171
|
+
*
|
|
1172
|
+
* @summary Post Messages
|
|
1173
|
+
* @param {MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest} requestParameters Request parameters.
|
|
1174
|
+
* @param {*} [options] Override http request option.
|
|
1175
|
+
* @throws {RequiredError}
|
|
1176
|
+
* @memberof MessagesAi
|
|
1177
|
+
*/
|
|
1178
|
+
postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
|
|
1179
|
+
}
|
|
1180
|
+
/**
|
|
1181
|
+
*
|
|
1182
|
+
* @summary Get Conversation Responses
|
|
1183
|
+
* @param {string} workspaceId
|
|
1184
|
+
* @param {string} conversationId
|
|
1185
|
+
* @param {*} [options] Override http request option.
|
|
1186
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
1187
|
+
* @throws {RequiredError}
|
|
1188
|
+
*/
|
|
1189
|
+
export declare function ResponsesAiAxiosParamCreator_GetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet(workspaceId: string, conversationId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
1190
|
+
/**
|
|
1191
|
+
*
|
|
1192
|
+
* @summary Patch Response
|
|
1193
|
+
* @param {string} workspaceId
|
|
1194
|
+
* @param {string} conversationId
|
|
1195
|
+
* @param {string} responseId
|
|
1196
|
+
* @param {AiResponseFeedbackRequest} aiResponseFeedbackRequest
|
|
1197
|
+
* @param {*} [options] Override http request option.
|
|
1198
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
1199
|
+
* @throws {RequiredError}
|
|
1200
|
+
*/
|
|
1201
|
+
export declare function ResponsesAiAxiosParamCreator_PatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(workspaceId: string, conversationId: string, responseId: string, aiResponseFeedbackRequest: AiResponseFeedbackRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
1202
|
+
/**
|
|
1203
|
+
*
|
|
1204
|
+
* @summary Get Conversation Responses
|
|
1205
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
1206
|
+
* @param {string} basePath Base path.
|
|
1207
|
+
* @param {ResponsesAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest} requestParameters Request parameters.
|
|
1208
|
+
* @param {*} [options] Override http request option.
|
|
1209
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
1210
|
+
* @throws {RequiredError}
|
|
1211
|
+
*/
|
|
1212
|
+
export declare function ResponsesAi_GetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet(axios: AxiosInstance, basePath: string, requestParameters: ResponsesAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiConversationResponseListDto>;
|
|
1213
|
+
/**
|
|
1214
|
+
*
|
|
1215
|
+
* @summary Patch Response
|
|
1216
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
1217
|
+
* @param {string} basePath Base path.
|
|
1218
|
+
* @param {ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest} requestParameters Request parameters.
|
|
1219
|
+
* @param {*} [options] Override http request option.
|
|
1220
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
1221
|
+
* @throws {RequiredError}
|
|
1222
|
+
*/
|
|
1223
|
+
export declare function ResponsesAi_PatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(axios: AxiosInstance, basePath: string, requestParameters: ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
1224
|
+
/**
|
|
1225
|
+
* ResponsesAi - interface
|
|
1226
|
+
* @export
|
|
1227
|
+
* @interface ResponsesAi
|
|
1228
|
+
*/
|
|
1229
|
+
export interface ResponsesAiInterface {
|
|
1230
|
+
/**
|
|
1231
|
+
*
|
|
1232
|
+
* @summary Get Conversation Responses
|
|
1233
|
+
* @param {ResponsesAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest} requestParameters Request parameters.
|
|
1234
|
+
* @param {*} [options] Override http request option.
|
|
1235
|
+
* @throws {RequiredError}
|
|
1236
|
+
* @memberof ResponsesAiInterface
|
|
1237
|
+
*/
|
|
1238
|
+
getConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet(requestParameters: ResponsesAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponseListDto>;
|
|
1239
|
+
/**
|
|
1240
|
+
*
|
|
1241
|
+
* @summary Patch Response
|
|
1242
|
+
* @param {ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest} requestParameters Request parameters.
|
|
1243
|
+
* @param {*} [options] Override http request option.
|
|
1244
|
+
* @throws {RequiredError}
|
|
1245
|
+
* @memberof ResponsesAiInterface
|
|
1246
|
+
*/
|
|
1247
|
+
patchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(requestParameters: ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
1248
|
+
}
|
|
1249
|
+
/**
|
|
1250
|
+
* Request parameters for getConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet operation in ResponsesAi.
|
|
1251
|
+
* @export
|
|
1252
|
+
* @interface ResponsesAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest
|
|
1253
|
+
*/
|
|
1254
|
+
export interface ResponsesAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest {
|
|
1255
|
+
/**
|
|
1256
|
+
*
|
|
1257
|
+
* @type {string}
|
|
1258
|
+
* @memberof ResponsesAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet
|
|
1259
|
+
*/
|
|
1260
|
+
readonly workspaceId: string;
|
|
1261
|
+
/**
|
|
1262
|
+
*
|
|
1263
|
+
* @type {string}
|
|
1264
|
+
* @memberof ResponsesAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet
|
|
1265
|
+
*/
|
|
1266
|
+
readonly conversationId: string;
|
|
1267
|
+
}
|
|
1268
|
+
/**
|
|
1269
|
+
* Request parameters for patchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch operation in ResponsesAi.
|
|
1270
|
+
* @export
|
|
1271
|
+
* @interface ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest
|
|
1272
|
+
*/
|
|
1273
|
+
export interface ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest {
|
|
1274
|
+
/**
|
|
1275
|
+
*
|
|
1276
|
+
* @type {string}
|
|
1277
|
+
* @memberof ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch
|
|
1278
|
+
*/
|
|
1279
|
+
readonly workspaceId: string;
|
|
1280
|
+
/**
|
|
1281
|
+
*
|
|
1282
|
+
* @type {string}
|
|
1283
|
+
* @memberof ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch
|
|
1284
|
+
*/
|
|
1285
|
+
readonly conversationId: string;
|
|
1286
|
+
/**
|
|
1287
|
+
*
|
|
1288
|
+
* @type {string}
|
|
1289
|
+
* @memberof ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch
|
|
1290
|
+
*/
|
|
1291
|
+
readonly responseId: string;
|
|
1292
|
+
/**
|
|
1293
|
+
*
|
|
1294
|
+
* @type {AiResponseFeedbackRequest}
|
|
1295
|
+
* @memberof ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch
|
|
1296
|
+
*/
|
|
1297
|
+
readonly aiResponseFeedbackRequest: AiResponseFeedbackRequest;
|
|
1298
|
+
}
|
|
1299
|
+
/**
|
|
1300
|
+
* ResponsesAi - object-oriented interface
|
|
1301
|
+
* @export
|
|
1302
|
+
* @class ResponsesAi
|
|
1303
|
+
* @extends {BaseAPI}
|
|
1304
|
+
*/
|
|
1305
|
+
export declare class ResponsesAi extends BaseAPI implements ResponsesAiInterface {
|
|
1306
|
+
/**
|
|
1307
|
+
*
|
|
1308
|
+
* @summary Get Conversation Responses
|
|
1309
|
+
* @param {ResponsesAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest} requestParameters Request parameters.
|
|
1310
|
+
* @param {*} [options] Override http request option.
|
|
1311
|
+
* @throws {RequiredError}
|
|
1312
|
+
* @memberof ResponsesAi
|
|
1313
|
+
*/
|
|
1314
|
+
getConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet(requestParameters: ResponsesAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponseListDto>;
|
|
1315
|
+
/**
|
|
1316
|
+
*
|
|
1317
|
+
* @summary Patch Response
|
|
1318
|
+
* @param {ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest} requestParameters Request parameters.
|
|
1319
|
+
* @param {*} [options] Override http request option.
|
|
1320
|
+
* @throws {RequiredError}
|
|
1321
|
+
* @memberof ResponsesAi
|
|
1322
|
+
*/
|
|
1323
|
+
patchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(requestParameters: ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
1324
|
+
}
|
|
1325
|
+
/**
|
|
1326
|
+
*
|
|
1327
|
+
* @summary Patch Visualization
|
|
1328
|
+
* @param {string} workspaceId
|
|
1329
|
+
* @param {string} conversationId
|
|
1330
|
+
* @param {string} visualizationId
|
|
1331
|
+
* @param {AiVisualizationIdUpdateRequest} aiVisualizationIdUpdateRequest
|
|
1332
|
+
* @param {*} [options] Override http request option.
|
|
1333
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
1334
|
+
* @throws {RequiredError}
|
|
1335
|
+
*/
|
|
1336
|
+
export declare function VisualizationsAiAxiosParamCreator_PatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch(workspaceId: string, conversationId: string, visualizationId: string, aiVisualizationIdUpdateRequest: AiVisualizationIdUpdateRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
1337
|
+
/**
|
|
1338
|
+
*
|
|
1339
|
+
* @summary Patch Visualization
|
|
1340
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
1341
|
+
* @param {string} basePath Base path.
|
|
1342
|
+
* @param {VisualizationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatchRequest} requestParameters Request parameters.
|
|
1343
|
+
* @param {*} [options] Override http request option.
|
|
1344
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
1345
|
+
* @throws {RequiredError}
|
|
1346
|
+
*/
|
|
1347
|
+
export declare function VisualizationsAi_PatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch(axios: AxiosInstance, basePath: string, requestParameters: VisualizationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatchRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
1348
|
+
/**
|
|
1349
|
+
* VisualizationsAi - interface
|
|
1350
|
+
* @export
|
|
1351
|
+
* @interface VisualizationsAi
|
|
1352
|
+
*/
|
|
1353
|
+
export interface VisualizationsAiInterface {
|
|
1354
|
+
/**
|
|
1355
|
+
*
|
|
1356
|
+
* @summary Patch Visualization
|
|
1357
|
+
* @param {VisualizationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatchRequest} requestParameters Request parameters.
|
|
1358
|
+
* @param {*} [options] Override http request option.
|
|
1359
|
+
* @throws {RequiredError}
|
|
1360
|
+
* @memberof VisualizationsAiInterface
|
|
1361
|
+
*/
|
|
1362
|
+
patchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch(requestParameters: VisualizationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
1363
|
+
}
|
|
1364
|
+
/**
|
|
1365
|
+
* Request parameters for patchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch operation in VisualizationsAi.
|
|
1366
|
+
* @export
|
|
1367
|
+
* @interface VisualizationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatchRequest
|
|
1368
|
+
*/
|
|
1369
|
+
export interface VisualizationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatchRequest {
|
|
1370
|
+
/**
|
|
1371
|
+
*
|
|
1372
|
+
* @type {string}
|
|
1373
|
+
* @memberof VisualizationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch
|
|
1374
|
+
*/
|
|
1375
|
+
readonly workspaceId: string;
|
|
1376
|
+
/**
|
|
1377
|
+
*
|
|
1378
|
+
* @type {string}
|
|
1379
|
+
* @memberof VisualizationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch
|
|
1380
|
+
*/
|
|
1381
|
+
readonly conversationId: string;
|
|
1382
|
+
/**
|
|
1383
|
+
*
|
|
1384
|
+
* @type {string}
|
|
1385
|
+
* @memberof VisualizationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch
|
|
1386
|
+
*/
|
|
1387
|
+
readonly visualizationId: string;
|
|
1388
|
+
/**
|
|
1389
|
+
*
|
|
1390
|
+
* @type {AiVisualizationIdUpdateRequest}
|
|
1391
|
+
* @memberof VisualizationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch
|
|
1392
|
+
*/
|
|
1393
|
+
readonly aiVisualizationIdUpdateRequest: AiVisualizationIdUpdateRequest;
|
|
1394
|
+
}
|
|
1395
|
+
/**
|
|
1396
|
+
* VisualizationsAi - object-oriented interface
|
|
1397
|
+
* @export
|
|
1398
|
+
* @class VisualizationsAi
|
|
1399
|
+
* @extends {BaseAPI}
|
|
1400
|
+
*/
|
|
1401
|
+
export declare class VisualizationsAi extends BaseAPI implements VisualizationsAiInterface {
|
|
1402
|
+
/**
|
|
1403
|
+
*
|
|
1404
|
+
* @summary Patch Visualization
|
|
1405
|
+
* @param {VisualizationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatchRequest} requestParameters Request parameters.
|
|
1406
|
+
* @param {*} [options] Override http request option.
|
|
1407
|
+
* @throws {RequiredError}
|
|
1408
|
+
* @memberof VisualizationsAi
|
|
1409
|
+
*/
|
|
1410
|
+
patchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch(requestParameters: VisualizationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
1411
|
+
}
|
|
1412
|
+
//# sourceMappingURL=api.d.ts.map
|