@gooddata/api-client-tiger 11.40.0-alpha.2 → 11.40.0-alpha.4
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 +945 -1698
- package/esm/endpoints/actions/index.d.ts +1 -1
- package/esm/endpoints/actions/index.js +1 -1
- package/esm/endpoints/entitiesObjects/index.d.ts +1 -1
- package/esm/endpoints/entitiesObjects/index.js +0 -2
- package/esm/generated/afm-rest-api/api.d.ts +4 -355
- package/esm/generated/afm-rest-api/api.js +0 -347
- package/esm/generated/ai-json-api/api.d.ts +5 -0
- package/esm/generated/ai-json-api/api.js +2 -1
- package/esm/generated/auth-json-api/api.d.ts +511 -0
- package/esm/generated/auth-json-api/api.js +650 -0
- package/esm/generated/automation-json-api/api.d.ts +27 -0
- package/esm/generated/export-json-api/api.d.ts +9 -9
- package/esm/generated/metadata-json-api/api.d.ts +1293 -1265
- package/esm/generated/metadata-json-api/api.js +1450 -1200
- package/esm/index.d.ts +3 -3
- package/esm/index.js +1 -1
- package/package.json +8 -8
|
@@ -806,10 +806,6 @@ export interface ChatResult {
|
|
|
806
806
|
*/
|
|
807
807
|
'chatHistoryInteractionId'?: string;
|
|
808
808
|
'reasoning'?: Reasoning;
|
|
809
|
-
/**
|
|
810
|
-
* Tool call events emitted during the agentic loop (only present when GEN_AI_YIELD_TOOL_CALL_EVENTS is enabled).
|
|
811
|
-
*/
|
|
812
|
-
'toolCallEvents'?: Array<ToolCallEventResult>;
|
|
813
809
|
/**
|
|
814
810
|
* AI usage metadata returned after the interaction (e.g. current query count vs. entitlement limit).
|
|
815
811
|
*/
|
|
@@ -1077,22 +1073,6 @@ export interface DashboardContext {
|
|
|
1077
1073
|
*/
|
|
1078
1074
|
'widgets': Array<WidgetDescriptor>;
|
|
1079
1075
|
}
|
|
1080
|
-
export interface DashboardSummaryRequestDto {
|
|
1081
|
-
'dashboardId': string;
|
|
1082
|
-
'customUserPrompt'?: string;
|
|
1083
|
-
'gooddataHost'?: string;
|
|
1084
|
-
'gooddataToken'?: string;
|
|
1085
|
-
'keyMetricIds'?: Array<string>;
|
|
1086
|
-
'referenceQuarter'?: string;
|
|
1087
|
-
'dryRun'?: boolean;
|
|
1088
|
-
'temperature'?: number;
|
|
1089
|
-
'aiModel'?: string;
|
|
1090
|
-
}
|
|
1091
|
-
export interface DashboardSummaryResponseDto {
|
|
1092
|
-
'runId': string;
|
|
1093
|
-
'status': string;
|
|
1094
|
-
'message': string;
|
|
1095
|
-
}
|
|
1096
1076
|
/**
|
|
1097
1077
|
* Mapping from dimension items (either \'localIdentifier\' from \'AttributeItem\', or \"measureGroup\") to their respective values. This effectively specifies the path (location) of the data column used for sorting. Therefore values for all dimension items must be specified.
|
|
1098
1078
|
*/
|
|
@@ -1512,10 +1492,6 @@ export interface ExecutionSettings {
|
|
|
1512
1492
|
export interface FailedOperation extends Operation {
|
|
1513
1493
|
'error': OperationError;
|
|
1514
1494
|
}
|
|
1515
|
-
export interface FeedbackRequestDto {
|
|
1516
|
-
'sentiment': FeedbackRequestDtoSentimentEnum;
|
|
1517
|
-
}
|
|
1518
|
-
export type FeedbackRequestDtoSentimentEnum = 'POSITIVE' | 'NEGATIVE';
|
|
1519
1495
|
/**
|
|
1520
1496
|
* Specifies what is used for filtering.
|
|
1521
1497
|
*/
|
|
@@ -1972,31 +1948,6 @@ export interface KeyDriversResponse {
|
|
|
1972
1948
|
export interface KeyDriversResult {
|
|
1973
1949
|
'data': object;
|
|
1974
1950
|
}
|
|
1975
|
-
export interface KnowledgeRecommendationsRequestDto {
|
|
1976
|
-
'metricId': string;
|
|
1977
|
-
'direction'?: KnowledgeRecommendationsRequestDtoDirectionEnum;
|
|
1978
|
-
'comparisonType': KnowledgeRecommendationsRequestDtoComparisonTypeEnum;
|
|
1979
|
-
'limit'?: number;
|
|
1980
|
-
'minScore'?: number;
|
|
1981
|
-
'aiModel'?: string;
|
|
1982
|
-
'temperature'?: number;
|
|
1983
|
-
'maxTokens'?: number;
|
|
1984
|
-
'gooddataHost'?: string;
|
|
1985
|
-
'gooddataToken'?: string;
|
|
1986
|
-
'analyticalDashboardId'?: string;
|
|
1987
|
-
'widgetId'?: string;
|
|
1988
|
-
'widgetName'?: string;
|
|
1989
|
-
'dryRun'?: boolean;
|
|
1990
|
-
'referenceValue'?: number;
|
|
1991
|
-
'analyzedValue'?: number;
|
|
1992
|
-
}
|
|
1993
|
-
export type KnowledgeRecommendationsRequestDtoDirectionEnum = 'INCREASED' | 'DECREASED';
|
|
1994
|
-
export type KnowledgeRecommendationsRequestDtoComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
|
|
1995
|
-
export interface KnowledgeRecommendationsResponseDto {
|
|
1996
|
-
'runId': string;
|
|
1997
|
-
'status': string;
|
|
1998
|
-
'message': string;
|
|
1999
|
-
}
|
|
2000
1951
|
export interface ListLlmProviderModelsRequest {
|
|
2001
1952
|
'providerConfig': TestLlmProviderByIdRequestProviderConfig;
|
|
2002
1953
|
}
|
|
@@ -2907,6 +2858,10 @@ export interface RichTextWidgetDescriptor {
|
|
|
2907
2858
|
* Filters currently applied to the dashboard.
|
|
2908
2859
|
*/
|
|
2909
2860
|
'filters'?: Array<FilterDefinition>;
|
|
2861
|
+
/**
|
|
2862
|
+
* Markdown/text content of the rich text widget.
|
|
2863
|
+
*/
|
|
2864
|
+
'content'?: string;
|
|
2910
2865
|
}
|
|
2911
2866
|
/**
|
|
2912
2867
|
* Question -> Use Case routing. May contain final answer is a special use case is not required.
|
|
@@ -3272,23 +3227,6 @@ export interface TimeSlicePartitionConfig {
|
|
|
3272
3227
|
'slices': number;
|
|
3273
3228
|
}
|
|
3274
3229
|
export type TimeSlicePartitionConfigUnitEnum = 'year' | 'quarter' | 'month' | 'week' | 'day' | 'hour' | 'minute' | 'second' | 'millisecond' | 'microsecond';
|
|
3275
|
-
/**
|
|
3276
|
-
* Tool call events emitted during the agentic loop (only present when GEN_AI_YIELD_TOOL_CALL_EVENTS is enabled).
|
|
3277
|
-
*/
|
|
3278
|
-
export interface ToolCallEventResult {
|
|
3279
|
-
/**
|
|
3280
|
-
* Name of the tool function that was called.
|
|
3281
|
-
*/
|
|
3282
|
-
'functionName': string;
|
|
3283
|
-
/**
|
|
3284
|
-
* JSON-encoded arguments passed to the tool function.
|
|
3285
|
-
*/
|
|
3286
|
-
'functionArguments': string;
|
|
3287
|
-
/**
|
|
3288
|
-
* Result returned by the tool function.
|
|
3289
|
-
*/
|
|
3290
|
-
'result': string;
|
|
3291
|
-
}
|
|
3292
3230
|
/**
|
|
3293
3231
|
* Definition of a total. There are two types of totals: grand totals and subtotals. Grand total data will be returned in a separate section of the result structure while subtotals are fully integrated into the main result data. The mechanism for this distinction is automatic and it\'s described in `TotalDimension`
|
|
3294
3232
|
*/
|
|
@@ -6112,15 +6050,6 @@ export declare function ActionsApiAxiosParamCreator_CancelExecutions(workspaceId
|
|
|
6112
6050
|
* @throws {RequiredError}
|
|
6113
6051
|
*/
|
|
6114
6052
|
export declare function ActionsApiAxiosParamCreator_CancelWorkflow(workspaceId: string, runId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6115
|
-
/**
|
|
6116
|
-
*
|
|
6117
|
-
* @param {string} workspaceId Workspace identifier
|
|
6118
|
-
* @param {string} runId
|
|
6119
|
-
* @param {*} [options] Override http request option.
|
|
6120
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
6121
|
-
* @throws {RequiredError}
|
|
6122
|
-
*/
|
|
6123
|
-
export declare function ActionsApiAxiosParamCreator_CancelWorkflow1(workspaceId: string, runId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6124
6053
|
/**
|
|
6125
6054
|
* Computes change analysis for the provided execution definition.
|
|
6126
6055
|
* @summary Compute change analysis
|
|
@@ -6275,15 +6204,6 @@ export declare function ActionsApiAxiosParamCreator_ForecastResult(workspaceId:
|
|
|
6275
6204
|
* @throws {RequiredError}
|
|
6276
6205
|
*/
|
|
6277
6206
|
export declare function ActionsApiAxiosParamCreator_GenerateDashboardSummary(workspaceId: string, workflowDashboardSummaryRequestDto: WorkflowDashboardSummaryRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6278
|
-
/**
|
|
6279
|
-
*
|
|
6280
|
-
* @param {string} workspaceId Workspace identifier
|
|
6281
|
-
* @param {DashboardSummaryRequestDto} dashboardSummaryRequestDto
|
|
6282
|
-
* @param {*} [options] Override http request option.
|
|
6283
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
6284
|
-
* @throws {RequiredError}
|
|
6285
|
-
*/
|
|
6286
|
-
export declare function ActionsApiAxiosParamCreator_GenerateDashboardSummary1(workspaceId: string, dashboardSummaryRequestDto: DashboardSummaryRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6287
6207
|
/**
|
|
6288
6208
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
6289
6209
|
* @summary Generate Description for Analytics Object
|
|
@@ -6294,15 +6214,6 @@ export declare function ActionsApiAxiosParamCreator_GenerateDashboardSummary1(wo
|
|
|
6294
6214
|
* @throws {RequiredError}
|
|
6295
6215
|
*/
|
|
6296
6216
|
export declare function ActionsApiAxiosParamCreator_GenerateDescription(workspaceId: string, generateDescriptionRequest: GenerateDescriptionRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6297
|
-
/**
|
|
6298
|
-
*
|
|
6299
|
-
* @param {string} workspaceId Workspace identifier
|
|
6300
|
-
* @param {KnowledgeRecommendationsRequestDto} knowledgeRecommendationsRequestDto
|
|
6301
|
-
* @param {*} [options] Override http request option.
|
|
6302
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
6303
|
-
* @throws {RequiredError}
|
|
6304
|
-
*/
|
|
6305
|
-
export declare function ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(workspaceId: string, knowledgeRecommendationsRequestDto: KnowledgeRecommendationsRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6306
6217
|
/**
|
|
6307
6218
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
6308
6219
|
* @summary Generate Title for Analytics Object
|
|
@@ -6341,15 +6252,6 @@ export declare function ActionsApiAxiosParamCreator_GetQualityIssuesCalculationS
|
|
|
6341
6252
|
* @throws {RequiredError}
|
|
6342
6253
|
*/
|
|
6343
6254
|
export declare function ActionsApiAxiosParamCreator_GetWorkflowStatus(workspaceId: string, runId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6344
|
-
/**
|
|
6345
|
-
*
|
|
6346
|
-
* @param {string} workspaceId Workspace identifier
|
|
6347
|
-
* @param {string} runId
|
|
6348
|
-
* @param {*} [options] Override http request option.
|
|
6349
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
6350
|
-
* @throws {RequiredError}
|
|
6351
|
-
*/
|
|
6352
|
-
export declare function ActionsApiAxiosParamCreator_GetWorkflowStatus1(workspaceId: string, runId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6353
6255
|
/**
|
|
6354
6256
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
6355
6257
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -6522,16 +6424,6 @@ export declare function ActionsApiAxiosParamCreator_TrendingObjects(workspaceId:
|
|
|
6522
6424
|
* @throws {RequiredError}
|
|
6523
6425
|
*/
|
|
6524
6426
|
export declare function ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculation(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6525
|
-
/**
|
|
6526
|
-
*
|
|
6527
|
-
* @param {string} workspaceId Workspace identifier
|
|
6528
|
-
* @param {string} runId
|
|
6529
|
-
* @param {FeedbackRequestDto} feedbackRequestDto
|
|
6530
|
-
* @param {*} [options] Override http request option.
|
|
6531
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
6532
|
-
* @throws {RequiredError}
|
|
6533
|
-
*/
|
|
6534
|
-
export declare function ActionsApiAxiosParamCreator_UserFeedback(workspaceId: string, runId: string, feedbackRequestDto: FeedbackRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6535
6427
|
/**
|
|
6536
6428
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
6537
6429
|
* @summary Validate LLM Endpoint (Removed)
|
|
@@ -6649,18 +6541,6 @@ export declare function ActionsApi_CancelExecutions(axios: AxiosInstance, basePa
|
|
|
6649
6541
|
export declare function ActionsApi_CancelWorkflow(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiCancelWorkflowRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<{
|
|
6650
6542
|
[key: string]: string;
|
|
6651
6543
|
}>;
|
|
6652
|
-
/**
|
|
6653
|
-
*
|
|
6654
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
6655
|
-
* @param {string} basePath Base path.
|
|
6656
|
-
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
6657
|
-
* @param {*} [options] Override http request option.
|
|
6658
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
6659
|
-
* @throws {RequiredError}
|
|
6660
|
-
*/
|
|
6661
|
-
export declare function ActionsApi_CancelWorkflow1(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiCancelWorkflow1Request, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<{
|
|
6662
|
-
[key: string]: string;
|
|
6663
|
-
}>;
|
|
6664
6544
|
/**
|
|
6665
6545
|
* Computes change analysis for the provided execution definition.
|
|
6666
6546
|
* @summary Compute change analysis
|
|
@@ -6814,16 +6694,6 @@ export declare function ActionsApi_ForecastResult(axios: AxiosInstance, basePath
|
|
|
6814
6694
|
* @throws {RequiredError}
|
|
6815
6695
|
*/
|
|
6816
6696
|
export declare function ActionsApi_GenerateDashboardSummary(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGenerateDashboardSummaryRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<WorkflowDashboardSummaryResponseDto>;
|
|
6817
|
-
/**
|
|
6818
|
-
*
|
|
6819
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
6820
|
-
* @param {string} basePath Base path.
|
|
6821
|
-
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
6822
|
-
* @param {*} [options] Override http request option.
|
|
6823
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
6824
|
-
* @throws {RequiredError}
|
|
6825
|
-
*/
|
|
6826
|
-
export declare function ActionsApi_GenerateDashboardSummary1(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGenerateDashboardSummary1Request, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<DashboardSummaryResponseDto>;
|
|
6827
6697
|
/**
|
|
6828
6698
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
6829
6699
|
* @summary Generate Description for Analytics Object
|
|
@@ -6835,16 +6705,6 @@ export declare function ActionsApi_GenerateDashboardSummary1(axios: AxiosInstanc
|
|
|
6835
6705
|
* @throws {RequiredError}
|
|
6836
6706
|
*/
|
|
6837
6707
|
export declare function ActionsApi_GenerateDescription(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<GenerateDescriptionResponse>;
|
|
6838
|
-
/**
|
|
6839
|
-
*
|
|
6840
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
6841
|
-
* @param {string} basePath Base path.
|
|
6842
|
-
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
6843
|
-
* @param {*} [options] Override http request option.
|
|
6844
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
6845
|
-
* @throws {RequiredError}
|
|
6846
|
-
*/
|
|
6847
|
-
export declare function ActionsApi_GenerateKnowledgeRecommendations(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGenerateKnowledgeRecommendationsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<KnowledgeRecommendationsResponseDto>;
|
|
6848
6708
|
/**
|
|
6849
6709
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
6850
6710
|
* @summary Generate Title for Analytics Object
|
|
@@ -6888,16 +6748,6 @@ export declare function ActionsApi_GetQualityIssuesCalculationStatus(axios: Axio
|
|
|
6888
6748
|
* @throws {RequiredError}
|
|
6889
6749
|
*/
|
|
6890
6750
|
export declare function ActionsApi_GetWorkflowStatus(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGetWorkflowStatusRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<WorkflowStatusResponseDto>;
|
|
6891
|
-
/**
|
|
6892
|
-
*
|
|
6893
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
6894
|
-
* @param {string} basePath Base path.
|
|
6895
|
-
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
6896
|
-
* @param {*} [options] Override http request option.
|
|
6897
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
6898
|
-
* @throws {RequiredError}
|
|
6899
|
-
*/
|
|
6900
|
-
export declare function ActionsApi_GetWorkflowStatus1(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGetWorkflowStatus1Request, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<WorkflowStatusResponseDto>;
|
|
6901
6751
|
/**
|
|
6902
6752
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
6903
6753
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -7085,18 +6935,6 @@ export declare function ActionsApi_TrendingObjects(axios: AxiosInstance, basePat
|
|
|
7085
6935
|
* @throws {RequiredError}
|
|
7086
6936
|
*/
|
|
7087
6937
|
export declare function ActionsApi_TriggerQualityIssuesCalculation(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
7088
|
-
/**
|
|
7089
|
-
*
|
|
7090
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
7091
|
-
* @param {string} basePath Base path.
|
|
7092
|
-
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
7093
|
-
* @param {*} [options] Override http request option.
|
|
7094
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
7095
|
-
* @throws {RequiredError}
|
|
7096
|
-
*/
|
|
7097
|
-
export declare function ActionsApi_UserFeedback(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiUserFeedbackRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<{
|
|
7098
|
-
[key: string]: string;
|
|
7099
|
-
}>;
|
|
7100
6938
|
/**
|
|
7101
6939
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
7102
6940
|
* @summary Validate LLM Endpoint (Removed)
|
|
@@ -7208,16 +7046,6 @@ export interface ActionsApiInterface {
|
|
|
7208
7046
|
cancelWorkflow(requestParameters: ActionsApiCancelWorkflowRequest, options?: AxiosRequestConfig): AxiosPromise<{
|
|
7209
7047
|
[key: string]: string;
|
|
7210
7048
|
}>;
|
|
7211
|
-
/**
|
|
7212
|
-
*
|
|
7213
|
-
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
7214
|
-
* @param {*} [options] Override http request option.
|
|
7215
|
-
* @throws {RequiredError}
|
|
7216
|
-
* @memberof ActionsApiInterface
|
|
7217
|
-
*/
|
|
7218
|
-
cancelWorkflow1(requestParameters: ActionsApiCancelWorkflow1Request, options?: AxiosRequestConfig): AxiosPromise<{
|
|
7219
|
-
[key: string]: string;
|
|
7220
|
-
}>;
|
|
7221
7049
|
/**
|
|
7222
7050
|
* Computes change analysis for the provided execution definition.
|
|
7223
7051
|
* @summary Compute change analysis
|
|
@@ -7343,14 +7171,6 @@ export interface ActionsApiInterface {
|
|
|
7343
7171
|
* @memberof ActionsApiInterface
|
|
7344
7172
|
*/
|
|
7345
7173
|
generateDashboardSummary(requestParameters: ActionsApiGenerateDashboardSummaryRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowDashboardSummaryResponseDto>;
|
|
7346
|
-
/**
|
|
7347
|
-
*
|
|
7348
|
-
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
7349
|
-
* @param {*} [options] Override http request option.
|
|
7350
|
-
* @throws {RequiredError}
|
|
7351
|
-
* @memberof ActionsApiInterface
|
|
7352
|
-
*/
|
|
7353
|
-
generateDashboardSummary1(requestParameters: ActionsApiGenerateDashboardSummary1Request, options?: AxiosRequestConfig): AxiosPromise<DashboardSummaryResponseDto>;
|
|
7354
7174
|
/**
|
|
7355
7175
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
7356
7176
|
* @summary Generate Description for Analytics Object
|
|
@@ -7360,14 +7180,6 @@ export interface ActionsApiInterface {
|
|
|
7360
7180
|
* @memberof ActionsApiInterface
|
|
7361
7181
|
*/
|
|
7362
7182
|
generateDescription(requestParameters: ActionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateDescriptionResponse>;
|
|
7363
|
-
/**
|
|
7364
|
-
*
|
|
7365
|
-
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
7366
|
-
* @param {*} [options] Override http request option.
|
|
7367
|
-
* @throws {RequiredError}
|
|
7368
|
-
* @memberof ActionsApiInterface
|
|
7369
|
-
*/
|
|
7370
|
-
generateKnowledgeRecommendations(requestParameters: ActionsApiGenerateKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeRecommendationsResponseDto>;
|
|
7371
7183
|
/**
|
|
7372
7184
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
7373
7185
|
* @summary Generate Title for Analytics Object
|
|
@@ -7403,14 +7215,6 @@ export interface ActionsApiInterface {
|
|
|
7403
7215
|
* @memberof ActionsApiInterface
|
|
7404
7216
|
*/
|
|
7405
7217
|
getWorkflowStatus(requestParameters: ActionsApiGetWorkflowStatusRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
|
|
7406
|
-
/**
|
|
7407
|
-
*
|
|
7408
|
-
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
7409
|
-
* @param {*} [options] Override http request option.
|
|
7410
|
-
* @throws {RequiredError}
|
|
7411
|
-
* @memberof ActionsApiInterface
|
|
7412
|
-
*/
|
|
7413
|
-
getWorkflowStatus1(requestParameters: ActionsApiGetWorkflowStatus1Request, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
|
|
7414
7218
|
/**
|
|
7415
7219
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
7416
7220
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -7565,16 +7369,6 @@ export interface ActionsApiInterface {
|
|
|
7565
7369
|
* @memberof ActionsApiInterface
|
|
7566
7370
|
*/
|
|
7567
7371
|
triggerQualityIssuesCalculation(requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
7568
|
-
/**
|
|
7569
|
-
*
|
|
7570
|
-
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
7571
|
-
* @param {*} [options] Override http request option.
|
|
7572
|
-
* @throws {RequiredError}
|
|
7573
|
-
* @memberof ActionsApiInterface
|
|
7574
|
-
*/
|
|
7575
|
-
userFeedback(requestParameters: ActionsApiUserFeedbackRequest, options?: AxiosRequestConfig): AxiosPromise<{
|
|
7576
|
-
[key: string]: string;
|
|
7577
|
-
}>;
|
|
7578
7372
|
/**
|
|
7579
7373
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
7580
7374
|
* @summary Validate LLM Endpoint (Removed)
|
|
@@ -7784,25 +7578,6 @@ export interface ActionsApiCancelWorkflowRequest {
|
|
|
7784
7578
|
*/
|
|
7785
7579
|
readonly runId: string;
|
|
7786
7580
|
}
|
|
7787
|
-
/**
|
|
7788
|
-
* Request parameters for cancelWorkflow1 operation in ActionsApi.
|
|
7789
|
-
* @export
|
|
7790
|
-
* @interface ActionsApiCancelWorkflow1Request
|
|
7791
|
-
*/
|
|
7792
|
-
export interface ActionsApiCancelWorkflow1Request {
|
|
7793
|
-
/**
|
|
7794
|
-
* Workspace identifier
|
|
7795
|
-
* @type {string}
|
|
7796
|
-
* @memberof ActionsApiCancelWorkflow1
|
|
7797
|
-
*/
|
|
7798
|
-
readonly workspaceId: string;
|
|
7799
|
-
/**
|
|
7800
|
-
*
|
|
7801
|
-
* @type {string}
|
|
7802
|
-
* @memberof ActionsApiCancelWorkflow1
|
|
7803
|
-
*/
|
|
7804
|
-
readonly runId: string;
|
|
7805
|
-
}
|
|
7806
7581
|
/**
|
|
7807
7582
|
* Request parameters for changeAnalysis operation in ActionsApi.
|
|
7808
7583
|
* @export
|
|
@@ -8159,25 +7934,6 @@ export interface ActionsApiGenerateDashboardSummaryRequest {
|
|
|
8159
7934
|
*/
|
|
8160
7935
|
readonly workflowDashboardSummaryRequestDto: WorkflowDashboardSummaryRequestDto;
|
|
8161
7936
|
}
|
|
8162
|
-
/**
|
|
8163
|
-
* Request parameters for generateDashboardSummary1 operation in ActionsApi.
|
|
8164
|
-
* @export
|
|
8165
|
-
* @interface ActionsApiGenerateDashboardSummary1Request
|
|
8166
|
-
*/
|
|
8167
|
-
export interface ActionsApiGenerateDashboardSummary1Request {
|
|
8168
|
-
/**
|
|
8169
|
-
* Workspace identifier
|
|
8170
|
-
* @type {string}
|
|
8171
|
-
* @memberof ActionsApiGenerateDashboardSummary1
|
|
8172
|
-
*/
|
|
8173
|
-
readonly workspaceId: string;
|
|
8174
|
-
/**
|
|
8175
|
-
*
|
|
8176
|
-
* @type {DashboardSummaryRequestDto}
|
|
8177
|
-
* @memberof ActionsApiGenerateDashboardSummary1
|
|
8178
|
-
*/
|
|
8179
|
-
readonly dashboardSummaryRequestDto: DashboardSummaryRequestDto;
|
|
8180
|
-
}
|
|
8181
7937
|
/**
|
|
8182
7938
|
* Request parameters for generateDescription operation in ActionsApi.
|
|
8183
7939
|
* @export
|
|
@@ -8197,25 +7953,6 @@ export interface ActionsApiGenerateDescriptionRequest {
|
|
|
8197
7953
|
*/
|
|
8198
7954
|
readonly generateDescriptionRequest: GenerateDescriptionRequest;
|
|
8199
7955
|
}
|
|
8200
|
-
/**
|
|
8201
|
-
* Request parameters for generateKnowledgeRecommendations operation in ActionsApi.
|
|
8202
|
-
* @export
|
|
8203
|
-
* @interface ActionsApiGenerateKnowledgeRecommendationsRequest
|
|
8204
|
-
*/
|
|
8205
|
-
export interface ActionsApiGenerateKnowledgeRecommendationsRequest {
|
|
8206
|
-
/**
|
|
8207
|
-
* Workspace identifier
|
|
8208
|
-
* @type {string}
|
|
8209
|
-
* @memberof ActionsApiGenerateKnowledgeRecommendations
|
|
8210
|
-
*/
|
|
8211
|
-
readonly workspaceId: string;
|
|
8212
|
-
/**
|
|
8213
|
-
*
|
|
8214
|
-
* @type {KnowledgeRecommendationsRequestDto}
|
|
8215
|
-
* @memberof ActionsApiGenerateKnowledgeRecommendations
|
|
8216
|
-
*/
|
|
8217
|
-
readonly knowledgeRecommendationsRequestDto: KnowledgeRecommendationsRequestDto;
|
|
8218
|
-
}
|
|
8219
7956
|
/**
|
|
8220
7957
|
* Request parameters for generateTitle operation in ActionsApi.
|
|
8221
7958
|
* @export
|
|
@@ -8286,25 +8023,6 @@ export interface ActionsApiGetWorkflowStatusRequest {
|
|
|
8286
8023
|
*/
|
|
8287
8024
|
readonly runId: string;
|
|
8288
8025
|
}
|
|
8289
|
-
/**
|
|
8290
|
-
* Request parameters for getWorkflowStatus1 operation in ActionsApi.
|
|
8291
|
-
* @export
|
|
8292
|
-
* @interface ActionsApiGetWorkflowStatus1Request
|
|
8293
|
-
*/
|
|
8294
|
-
export interface ActionsApiGetWorkflowStatus1Request {
|
|
8295
|
-
/**
|
|
8296
|
-
* Workspace identifier
|
|
8297
|
-
* @type {string}
|
|
8298
|
-
* @memberof ActionsApiGetWorkflowStatus1
|
|
8299
|
-
*/
|
|
8300
|
-
readonly workspaceId: string;
|
|
8301
|
-
/**
|
|
8302
|
-
*
|
|
8303
|
-
* @type {string}
|
|
8304
|
-
* @memberof ActionsApiGetWorkflowStatus1
|
|
8305
|
-
*/
|
|
8306
|
-
readonly runId: string;
|
|
8307
|
-
}
|
|
8308
8026
|
/**
|
|
8309
8027
|
* Request parameters for keyDriverAnalysis operation in ActionsApi.
|
|
8310
8028
|
* @export
|
|
@@ -8640,31 +8358,6 @@ export interface ActionsApiTriggerQualityIssuesCalculationRequest {
|
|
|
8640
8358
|
*/
|
|
8641
8359
|
readonly workspaceId: string;
|
|
8642
8360
|
}
|
|
8643
|
-
/**
|
|
8644
|
-
* Request parameters for userFeedback operation in ActionsApi.
|
|
8645
|
-
* @export
|
|
8646
|
-
* @interface ActionsApiUserFeedbackRequest
|
|
8647
|
-
*/
|
|
8648
|
-
export interface ActionsApiUserFeedbackRequest {
|
|
8649
|
-
/**
|
|
8650
|
-
* Workspace identifier
|
|
8651
|
-
* @type {string}
|
|
8652
|
-
* @memberof ActionsApiUserFeedback
|
|
8653
|
-
*/
|
|
8654
|
-
readonly workspaceId: string;
|
|
8655
|
-
/**
|
|
8656
|
-
*
|
|
8657
|
-
* @type {string}
|
|
8658
|
-
* @memberof ActionsApiUserFeedback
|
|
8659
|
-
*/
|
|
8660
|
-
readonly runId: string;
|
|
8661
|
-
/**
|
|
8662
|
-
*
|
|
8663
|
-
* @type {FeedbackRequestDto}
|
|
8664
|
-
* @memberof ActionsApiUserFeedback
|
|
8665
|
-
*/
|
|
8666
|
-
readonly feedbackRequestDto: FeedbackRequestDto;
|
|
8667
|
-
}
|
|
8668
8361
|
/**
|
|
8669
8362
|
* Request parameters for validateLLMEndpointById operation in ActionsApi.
|
|
8670
8363
|
* @export
|
|
@@ -8769,16 +8462,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
8769
8462
|
cancelWorkflow(requestParameters: ActionsApiCancelWorkflowRequest, options?: AxiosRequestConfig): AxiosPromise<{
|
|
8770
8463
|
[key: string]: string;
|
|
8771
8464
|
}>;
|
|
8772
|
-
/**
|
|
8773
|
-
*
|
|
8774
|
-
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
8775
|
-
* @param {*} [options] Override http request option.
|
|
8776
|
-
* @throws {RequiredError}
|
|
8777
|
-
* @memberof ActionsApi
|
|
8778
|
-
*/
|
|
8779
|
-
cancelWorkflow1(requestParameters: ActionsApiCancelWorkflow1Request, options?: AxiosRequestConfig): AxiosPromise<{
|
|
8780
|
-
[key: string]: string;
|
|
8781
|
-
}>;
|
|
8782
8465
|
/**
|
|
8783
8466
|
* Computes change analysis for the provided execution definition.
|
|
8784
8467
|
* @summary Compute change analysis
|
|
@@ -8904,14 +8587,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
8904
8587
|
* @memberof ActionsApi
|
|
8905
8588
|
*/
|
|
8906
8589
|
generateDashboardSummary(requestParameters: ActionsApiGenerateDashboardSummaryRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowDashboardSummaryResponseDto>;
|
|
8907
|
-
/**
|
|
8908
|
-
*
|
|
8909
|
-
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
8910
|
-
* @param {*} [options] Override http request option.
|
|
8911
|
-
* @throws {RequiredError}
|
|
8912
|
-
* @memberof ActionsApi
|
|
8913
|
-
*/
|
|
8914
|
-
generateDashboardSummary1(requestParameters: ActionsApiGenerateDashboardSummary1Request, options?: AxiosRequestConfig): AxiosPromise<DashboardSummaryResponseDto>;
|
|
8915
8590
|
/**
|
|
8916
8591
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
8917
8592
|
* @summary Generate Description for Analytics Object
|
|
@@ -8921,14 +8596,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
8921
8596
|
* @memberof ActionsApi
|
|
8922
8597
|
*/
|
|
8923
8598
|
generateDescription(requestParameters: ActionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateDescriptionResponse>;
|
|
8924
|
-
/**
|
|
8925
|
-
*
|
|
8926
|
-
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
8927
|
-
* @param {*} [options] Override http request option.
|
|
8928
|
-
* @throws {RequiredError}
|
|
8929
|
-
* @memberof ActionsApi
|
|
8930
|
-
*/
|
|
8931
|
-
generateKnowledgeRecommendations(requestParameters: ActionsApiGenerateKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeRecommendationsResponseDto>;
|
|
8932
8599
|
/**
|
|
8933
8600
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
8934
8601
|
* @summary Generate Title for Analytics Object
|
|
@@ -8964,14 +8631,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
8964
8631
|
* @memberof ActionsApi
|
|
8965
8632
|
*/
|
|
8966
8633
|
getWorkflowStatus(requestParameters: ActionsApiGetWorkflowStatusRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
|
|
8967
|
-
/**
|
|
8968
|
-
*
|
|
8969
|
-
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
8970
|
-
* @param {*} [options] Override http request option.
|
|
8971
|
-
* @throws {RequiredError}
|
|
8972
|
-
* @memberof ActionsApi
|
|
8973
|
-
*/
|
|
8974
|
-
getWorkflowStatus1(requestParameters: ActionsApiGetWorkflowStatus1Request, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
|
|
8975
8634
|
/**
|
|
8976
8635
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
8977
8636
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -9126,16 +8785,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
9126
8785
|
* @memberof ActionsApi
|
|
9127
8786
|
*/
|
|
9128
8787
|
triggerQualityIssuesCalculation(requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
9129
|
-
/**
|
|
9130
|
-
*
|
|
9131
|
-
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
9132
|
-
* @param {*} [options] Override http request option.
|
|
9133
|
-
* @throws {RequiredError}
|
|
9134
|
-
* @memberof ActionsApi
|
|
9135
|
-
*/
|
|
9136
|
-
userFeedback(requestParameters: ActionsApiUserFeedbackRequest, options?: AxiosRequestConfig): AxiosPromise<{
|
|
9137
|
-
[key: string]: string;
|
|
9138
|
-
}>;
|
|
9139
8788
|
/**
|
|
9140
8789
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
9141
8790
|
* @summary Validate LLM Endpoint (Removed)
|