@gooddata/api-client-tiger 11.41.0-alpha.1 → 11.41.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +652 -106
- package/esm/endpoints/genAI/index.d.ts +2 -2
- package/esm/endpoints/genAI/index.js +3 -3
- package/esm/genAI.d.ts +3 -1
- package/esm/genAI.js +21 -5
- package/esm/generated/afm-rest-api/api.d.ts +334 -0
- package/esm/generated/afm-rest-api/api.js +347 -0
- package/esm/generated/ai-json-api/api.d.ts +243 -2
- package/esm/generated/ai-json-api/api.js +235 -2
- package/esm/generated/auth-json-api/api.d.ts +0 -511
- package/esm/generated/auth-json-api/api.js +0 -650
- package/esm/generated/automation-json-api/api.d.ts +4 -0
- package/esm/generated/metadata-json-api/api.d.ts +103 -92
- package/esm/index.d.ts +3 -3
- package/esm/tsdoc-metadata.json +1 -1
- package/package.json +4 -4
|
@@ -3177,6 +3177,44 @@ export async function ActionsApiAxiosParamCreator_CancelWorkflow(workspaceId, ru
|
|
|
3177
3177
|
};
|
|
3178
3178
|
}
|
|
3179
3179
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
3180
|
+
/**
|
|
3181
|
+
*
|
|
3182
|
+
* @param {string} workspaceId Workspace identifier
|
|
3183
|
+
* @param {string} runId
|
|
3184
|
+
* @param {*} [options] Override http request option.
|
|
3185
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3186
|
+
* @throws {RequiredError}
|
|
3187
|
+
*/
|
|
3188
|
+
export async function ActionsApiAxiosParamCreator_CancelWorkflow1(workspaceId, runId, options = {}, configuration) {
|
|
3189
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
3190
|
+
assertParamExists('cancelWorkflow1', 'workspaceId', workspaceId);
|
|
3191
|
+
// verify required parameter 'runId' is not null or undefined
|
|
3192
|
+
assertParamExists('cancelWorkflow1', 'runId', runId);
|
|
3193
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/cancel`
|
|
3194
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
3195
|
+
.replace(`{${"runId"}}`, encodeURIComponent(String(runId)));
|
|
3196
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3197
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3198
|
+
let baseOptions;
|
|
3199
|
+
if (configuration) {
|
|
3200
|
+
baseOptions = configuration.baseOptions;
|
|
3201
|
+
}
|
|
3202
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
3203
|
+
const localVarHeaderParameter = {};
|
|
3204
|
+
const localVarQueryParameter = {};
|
|
3205
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3206
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
3207
|
+
localVarRequestOptions.headers = {
|
|
3208
|
+
...localVarHeaderParameter,
|
|
3209
|
+
...headersFromBaseOptions,
|
|
3210
|
+
...options.headers,
|
|
3211
|
+
};
|
|
3212
|
+
return {
|
|
3213
|
+
url: toPathString(localVarUrlObj),
|
|
3214
|
+
options: localVarRequestOptions,
|
|
3215
|
+
};
|
|
3216
|
+
}
|
|
3217
|
+
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
3180
3218
|
/**
|
|
3181
3219
|
* Computes change analysis for the provided execution definition.
|
|
3182
3220
|
* @summary Compute change analysis
|
|
@@ -3890,6 +3928,55 @@ export async function ActionsApiAxiosParamCreator_GenerateDashboardSummary(works
|
|
|
3890
3928
|
};
|
|
3891
3929
|
}
|
|
3892
3930
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
3931
|
+
/**
|
|
3932
|
+
*
|
|
3933
|
+
* @param {string} workspaceId Workspace identifier
|
|
3934
|
+
* @param {DashboardSummaryRequestDto} dashboardSummaryRequestDto
|
|
3935
|
+
* @param {*} [options] Override http request option.
|
|
3936
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3937
|
+
* @throws {RequiredError}
|
|
3938
|
+
*/
|
|
3939
|
+
export async function ActionsApiAxiosParamCreator_GenerateDashboardSummary1(workspaceId, dashboardSummaryRequestDto, options = {}, configuration) {
|
|
3940
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
3941
|
+
assertParamExists('generateDashboardSummary1', 'workspaceId', workspaceId);
|
|
3942
|
+
// verify required parameter 'dashboardSummaryRequestDto' is not null or undefined
|
|
3943
|
+
assertParamExists('generateDashboardSummary1', 'dashboardSummaryRequestDto', dashboardSummaryRequestDto);
|
|
3944
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/dashboardSummary`
|
|
3945
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
3946
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3947
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3948
|
+
let baseOptions;
|
|
3949
|
+
if (configuration) {
|
|
3950
|
+
baseOptions = configuration.baseOptions;
|
|
3951
|
+
}
|
|
3952
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
3953
|
+
const localVarHeaderParameter = {};
|
|
3954
|
+
const localVarQueryParameter = {};
|
|
3955
|
+
const consumes = [
|
|
3956
|
+
'application/json'
|
|
3957
|
+
];
|
|
3958
|
+
// use application/json if present, otherwise fallback to the first one
|
|
3959
|
+
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
3960
|
+
? 'application/json'
|
|
3961
|
+
: consumes[0];
|
|
3962
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3963
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
3964
|
+
localVarRequestOptions.headers = {
|
|
3965
|
+
...localVarHeaderParameter,
|
|
3966
|
+
...headersFromBaseOptions,
|
|
3967
|
+
...options.headers,
|
|
3968
|
+
};
|
|
3969
|
+
const needsSerialization = typeof dashboardSummaryRequestDto !== "string" ||
|
|
3970
|
+
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
3971
|
+
localVarRequestOptions.data = needsSerialization
|
|
3972
|
+
? JSON.stringify(dashboardSummaryRequestDto !== undefined ? dashboardSummaryRequestDto : {})
|
|
3973
|
+
: dashboardSummaryRequestDto || "";
|
|
3974
|
+
return {
|
|
3975
|
+
url: toPathString(localVarUrlObj),
|
|
3976
|
+
options: localVarRequestOptions,
|
|
3977
|
+
};
|
|
3978
|
+
}
|
|
3979
|
+
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
3893
3980
|
/**
|
|
3894
3981
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
3895
3982
|
* @summary Generate Description for Analytics Object
|
|
@@ -3940,6 +4027,55 @@ export async function ActionsApiAxiosParamCreator_GenerateDescription(workspaceI
|
|
|
3940
4027
|
};
|
|
3941
4028
|
}
|
|
3942
4029
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
4030
|
+
/**
|
|
4031
|
+
*
|
|
4032
|
+
* @param {string} workspaceId Workspace identifier
|
|
4033
|
+
* @param {KnowledgeRecommendationsRequestDto} knowledgeRecommendationsRequestDto
|
|
4034
|
+
* @param {*} [options] Override http request option.
|
|
4035
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4036
|
+
* @throws {RequiredError}
|
|
4037
|
+
*/
|
|
4038
|
+
export async function ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(workspaceId, knowledgeRecommendationsRequestDto, options = {}, configuration) {
|
|
4039
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
4040
|
+
assertParamExists('generateKnowledgeRecommendations', 'workspaceId', workspaceId);
|
|
4041
|
+
// verify required parameter 'knowledgeRecommendationsRequestDto' is not null or undefined
|
|
4042
|
+
assertParamExists('generateKnowledgeRecommendations', 'knowledgeRecommendationsRequestDto', knowledgeRecommendationsRequestDto);
|
|
4043
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/knowledgeRecommendations`
|
|
4044
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
4045
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4046
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4047
|
+
let baseOptions;
|
|
4048
|
+
if (configuration) {
|
|
4049
|
+
baseOptions = configuration.baseOptions;
|
|
4050
|
+
}
|
|
4051
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
4052
|
+
const localVarHeaderParameter = {};
|
|
4053
|
+
const localVarQueryParameter = {};
|
|
4054
|
+
const consumes = [
|
|
4055
|
+
'application/json'
|
|
4056
|
+
];
|
|
4057
|
+
// use application/json if present, otherwise fallback to the first one
|
|
4058
|
+
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
4059
|
+
? 'application/json'
|
|
4060
|
+
: consumes[0];
|
|
4061
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4062
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
4063
|
+
localVarRequestOptions.headers = {
|
|
4064
|
+
...localVarHeaderParameter,
|
|
4065
|
+
...headersFromBaseOptions,
|
|
4066
|
+
...options.headers,
|
|
4067
|
+
};
|
|
4068
|
+
const needsSerialization = typeof knowledgeRecommendationsRequestDto !== "string" ||
|
|
4069
|
+
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
4070
|
+
localVarRequestOptions.data = needsSerialization
|
|
4071
|
+
? JSON.stringify(knowledgeRecommendationsRequestDto !== undefined ? knowledgeRecommendationsRequestDto : {})
|
|
4072
|
+
: knowledgeRecommendationsRequestDto || "";
|
|
4073
|
+
return {
|
|
4074
|
+
url: toPathString(localVarUrlObj),
|
|
4075
|
+
options: localVarRequestOptions,
|
|
4076
|
+
};
|
|
4077
|
+
}
|
|
4078
|
+
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
3943
4079
|
/**
|
|
3944
4080
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
3945
4081
|
* @summary Generate Title for Analytics Object
|
|
@@ -4102,6 +4238,44 @@ export async function ActionsApiAxiosParamCreator_GetWorkflowStatus(workspaceId,
|
|
|
4102
4238
|
};
|
|
4103
4239
|
}
|
|
4104
4240
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
4241
|
+
/**
|
|
4242
|
+
*
|
|
4243
|
+
* @param {string} workspaceId Workspace identifier
|
|
4244
|
+
* @param {string} runId
|
|
4245
|
+
* @param {*} [options] Override http request option.
|
|
4246
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4247
|
+
* @throws {RequiredError}
|
|
4248
|
+
*/
|
|
4249
|
+
export async function ActionsApiAxiosParamCreator_GetWorkflowStatus1(workspaceId, runId, options = {}, configuration) {
|
|
4250
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
4251
|
+
assertParamExists('getWorkflowStatus1', 'workspaceId', workspaceId);
|
|
4252
|
+
// verify required parameter 'runId' is not null or undefined
|
|
4253
|
+
assertParamExists('getWorkflowStatus1', 'runId', runId);
|
|
4254
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/status`
|
|
4255
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
4256
|
+
.replace(`{${"runId"}}`, encodeURIComponent(String(runId)));
|
|
4257
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4258
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4259
|
+
let baseOptions;
|
|
4260
|
+
if (configuration) {
|
|
4261
|
+
baseOptions = configuration.baseOptions;
|
|
4262
|
+
}
|
|
4263
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
4264
|
+
const localVarHeaderParameter = {};
|
|
4265
|
+
const localVarQueryParameter = {};
|
|
4266
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4267
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
4268
|
+
localVarRequestOptions.headers = {
|
|
4269
|
+
...localVarHeaderParameter,
|
|
4270
|
+
...headersFromBaseOptions,
|
|
4271
|
+
...options.headers,
|
|
4272
|
+
};
|
|
4273
|
+
return {
|
|
4274
|
+
url: toPathString(localVarUrlObj),
|
|
4275
|
+
options: localVarRequestOptions,
|
|
4276
|
+
};
|
|
4277
|
+
}
|
|
4278
|
+
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
4105
4279
|
/**
|
|
4106
4280
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
4107
4281
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -4826,6 +5000,59 @@ export async function ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculatio
|
|
|
4826
5000
|
};
|
|
4827
5001
|
}
|
|
4828
5002
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
5003
|
+
/**
|
|
5004
|
+
*
|
|
5005
|
+
* @param {string} workspaceId Workspace identifier
|
|
5006
|
+
* @param {string} runId
|
|
5007
|
+
* @param {FeedbackRequestDto} feedbackRequestDto
|
|
5008
|
+
* @param {*} [options] Override http request option.
|
|
5009
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5010
|
+
* @throws {RequiredError}
|
|
5011
|
+
*/
|
|
5012
|
+
export async function ActionsApiAxiosParamCreator_UserFeedback(workspaceId, runId, feedbackRequestDto, options = {}, configuration) {
|
|
5013
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
5014
|
+
assertParamExists('userFeedback', 'workspaceId', workspaceId);
|
|
5015
|
+
// verify required parameter 'runId' is not null or undefined
|
|
5016
|
+
assertParamExists('userFeedback', 'runId', runId);
|
|
5017
|
+
// verify required parameter 'feedbackRequestDto' is not null or undefined
|
|
5018
|
+
assertParamExists('userFeedback', 'feedbackRequestDto', feedbackRequestDto);
|
|
5019
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/feedback`
|
|
5020
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
5021
|
+
.replace(`{${"runId"}}`, encodeURIComponent(String(runId)));
|
|
5022
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5023
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5024
|
+
let baseOptions;
|
|
5025
|
+
if (configuration) {
|
|
5026
|
+
baseOptions = configuration.baseOptions;
|
|
5027
|
+
}
|
|
5028
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
5029
|
+
const localVarHeaderParameter = {};
|
|
5030
|
+
const localVarQueryParameter = {};
|
|
5031
|
+
const consumes = [
|
|
5032
|
+
'application/json'
|
|
5033
|
+
];
|
|
5034
|
+
// use application/json if present, otherwise fallback to the first one
|
|
5035
|
+
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
5036
|
+
? 'application/json'
|
|
5037
|
+
: consumes[0];
|
|
5038
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5039
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
5040
|
+
localVarRequestOptions.headers = {
|
|
5041
|
+
...localVarHeaderParameter,
|
|
5042
|
+
...headersFromBaseOptions,
|
|
5043
|
+
...options.headers,
|
|
5044
|
+
};
|
|
5045
|
+
const needsSerialization = typeof feedbackRequestDto !== "string" ||
|
|
5046
|
+
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
5047
|
+
localVarRequestOptions.data = needsSerialization
|
|
5048
|
+
? JSON.stringify(feedbackRequestDto !== undefined ? feedbackRequestDto : {})
|
|
5049
|
+
: feedbackRequestDto || "";
|
|
5050
|
+
return {
|
|
5051
|
+
url: toPathString(localVarUrlObj),
|
|
5052
|
+
options: localVarRequestOptions,
|
|
5053
|
+
};
|
|
5054
|
+
}
|
|
5055
|
+
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
4829
5056
|
/**
|
|
4830
5057
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
4831
5058
|
* @summary Validate LLM Endpoint (Removed)
|
|
@@ -5026,6 +5253,20 @@ export async function ActionsApi_CancelWorkflow(axios, basePath, requestParamete
|
|
|
5026
5253
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5027
5254
|
}
|
|
5028
5255
|
// ActionsApi Api FP
|
|
5256
|
+
/**
|
|
5257
|
+
*
|
|
5258
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
5259
|
+
* @param {string} basePath Base path.
|
|
5260
|
+
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
5261
|
+
* @param {*} [options] Override http request option.
|
|
5262
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5263
|
+
* @throws {RequiredError}
|
|
5264
|
+
*/
|
|
5265
|
+
export async function ActionsApi_CancelWorkflow1(axios, basePath, requestParameters, options, configuration) {
|
|
5266
|
+
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_CancelWorkflow1(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration);
|
|
5267
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5268
|
+
}
|
|
5269
|
+
// ActionsApi Api FP
|
|
5029
5270
|
/**
|
|
5030
5271
|
* Computes change analysis for the provided execution definition.
|
|
5031
5272
|
* @summary Compute change analysis
|
|
@@ -5235,6 +5476,20 @@ export async function ActionsApi_GenerateDashboardSummary(axios, basePath, reque
|
|
|
5235
5476
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5236
5477
|
}
|
|
5237
5478
|
// ActionsApi Api FP
|
|
5479
|
+
/**
|
|
5480
|
+
*
|
|
5481
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
5482
|
+
* @param {string} basePath Base path.
|
|
5483
|
+
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
5484
|
+
* @param {*} [options] Override http request option.
|
|
5485
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5486
|
+
* @throws {RequiredError}
|
|
5487
|
+
*/
|
|
5488
|
+
export async function ActionsApi_GenerateDashboardSummary1(axios, basePath, requestParameters, options, configuration) {
|
|
5489
|
+
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_GenerateDashboardSummary1(requestParameters.workspaceId, requestParameters.dashboardSummaryRequestDto, options || {}, configuration);
|
|
5490
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5491
|
+
}
|
|
5492
|
+
// ActionsApi Api FP
|
|
5238
5493
|
/**
|
|
5239
5494
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
5240
5495
|
* @summary Generate Description for Analytics Object
|
|
@@ -5250,6 +5505,20 @@ export async function ActionsApi_GenerateDescription(axios, basePath, requestPar
|
|
|
5250
5505
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5251
5506
|
}
|
|
5252
5507
|
// ActionsApi Api FP
|
|
5508
|
+
/**
|
|
5509
|
+
*
|
|
5510
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
5511
|
+
* @param {string} basePath Base path.
|
|
5512
|
+
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
5513
|
+
* @param {*} [options] Override http request option.
|
|
5514
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5515
|
+
* @throws {RequiredError}
|
|
5516
|
+
*/
|
|
5517
|
+
export async function ActionsApi_GenerateKnowledgeRecommendations(axios, basePath, requestParameters, options, configuration) {
|
|
5518
|
+
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(requestParameters.workspaceId, requestParameters.knowledgeRecommendationsRequestDto, options || {}, configuration);
|
|
5519
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5520
|
+
}
|
|
5521
|
+
// ActionsApi Api FP
|
|
5253
5522
|
/**
|
|
5254
5523
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
5255
5524
|
* @summary Generate Title for Analytics Object
|
|
@@ -5309,6 +5578,20 @@ export async function ActionsApi_GetWorkflowStatus(axios, basePath, requestParam
|
|
|
5309
5578
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5310
5579
|
}
|
|
5311
5580
|
// ActionsApi Api FP
|
|
5581
|
+
/**
|
|
5582
|
+
*
|
|
5583
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
5584
|
+
* @param {string} basePath Base path.
|
|
5585
|
+
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
5586
|
+
* @param {*} [options] Override http request option.
|
|
5587
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5588
|
+
* @throws {RequiredError}
|
|
5589
|
+
*/
|
|
5590
|
+
export async function ActionsApi_GetWorkflowStatus1(axios, basePath, requestParameters, options, configuration) {
|
|
5591
|
+
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_GetWorkflowStatus1(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration);
|
|
5592
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5593
|
+
}
|
|
5594
|
+
// ActionsApi Api FP
|
|
5312
5595
|
/**
|
|
5313
5596
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
5314
5597
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -5564,6 +5847,20 @@ export async function ActionsApi_TriggerQualityIssuesCalculation(axios, basePath
|
|
|
5564
5847
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5565
5848
|
}
|
|
5566
5849
|
// ActionsApi Api FP
|
|
5850
|
+
/**
|
|
5851
|
+
*
|
|
5852
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
5853
|
+
* @param {string} basePath Base path.
|
|
5854
|
+
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
5855
|
+
* @param {*} [options] Override http request option.
|
|
5856
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5857
|
+
* @throws {RequiredError}
|
|
5858
|
+
*/
|
|
5859
|
+
export async function ActionsApi_UserFeedback(axios, basePath, requestParameters, options, configuration) {
|
|
5860
|
+
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_UserFeedback(requestParameters.workspaceId, requestParameters.runId, requestParameters.feedbackRequestDto, options || {}, configuration);
|
|
5861
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5862
|
+
}
|
|
5863
|
+
// ActionsApi Api FP
|
|
5567
5864
|
/**
|
|
5568
5865
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
5569
5866
|
* @summary Validate LLM Endpoint (Removed)
|
|
@@ -5699,6 +5996,16 @@ export class ActionsApi extends BaseAPI {
|
|
|
5699
5996
|
cancelWorkflow(requestParameters, options) {
|
|
5700
5997
|
return ActionsApi_CancelWorkflow(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
5701
5998
|
}
|
|
5999
|
+
/**
|
|
6000
|
+
*
|
|
6001
|
+
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
6002
|
+
* @param {*} [options] Override http request option.
|
|
6003
|
+
* @throws {RequiredError}
|
|
6004
|
+
* @memberof ActionsApi
|
|
6005
|
+
*/
|
|
6006
|
+
cancelWorkflow1(requestParameters, options) {
|
|
6007
|
+
return ActionsApi_CancelWorkflow1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
6008
|
+
}
|
|
5702
6009
|
/**
|
|
5703
6010
|
* Computes change analysis for the provided execution definition.
|
|
5704
6011
|
* @summary Compute change analysis
|
|
@@ -5852,6 +6159,16 @@ export class ActionsApi extends BaseAPI {
|
|
|
5852
6159
|
generateDashboardSummary(requestParameters, options) {
|
|
5853
6160
|
return ActionsApi_GenerateDashboardSummary(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
5854
6161
|
}
|
|
6162
|
+
/**
|
|
6163
|
+
*
|
|
6164
|
+
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
6165
|
+
* @param {*} [options] Override http request option.
|
|
6166
|
+
* @throws {RequiredError}
|
|
6167
|
+
* @memberof ActionsApi
|
|
6168
|
+
*/
|
|
6169
|
+
generateDashboardSummary1(requestParameters, options) {
|
|
6170
|
+
return ActionsApi_GenerateDashboardSummary1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
6171
|
+
}
|
|
5855
6172
|
/**
|
|
5856
6173
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
5857
6174
|
* @summary Generate Description for Analytics Object
|
|
@@ -5863,6 +6180,16 @@ export class ActionsApi extends BaseAPI {
|
|
|
5863
6180
|
generateDescription(requestParameters, options) {
|
|
5864
6181
|
return ActionsApi_GenerateDescription(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
5865
6182
|
}
|
|
6183
|
+
/**
|
|
6184
|
+
*
|
|
6185
|
+
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
6186
|
+
* @param {*} [options] Override http request option.
|
|
6187
|
+
* @throws {RequiredError}
|
|
6188
|
+
* @memberof ActionsApi
|
|
6189
|
+
*/
|
|
6190
|
+
generateKnowledgeRecommendations(requestParameters, options) {
|
|
6191
|
+
return ActionsApi_GenerateKnowledgeRecommendations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
6192
|
+
}
|
|
5866
6193
|
/**
|
|
5867
6194
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
5868
6195
|
* @summary Generate Title for Analytics Object
|
|
@@ -5906,6 +6233,16 @@ export class ActionsApi extends BaseAPI {
|
|
|
5906
6233
|
getWorkflowStatus(requestParameters, options) {
|
|
5907
6234
|
return ActionsApi_GetWorkflowStatus(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
5908
6235
|
}
|
|
6236
|
+
/**
|
|
6237
|
+
*
|
|
6238
|
+
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
6239
|
+
* @param {*} [options] Override http request option.
|
|
6240
|
+
* @throws {RequiredError}
|
|
6241
|
+
* @memberof ActionsApi
|
|
6242
|
+
*/
|
|
6243
|
+
getWorkflowStatus1(requestParameters, options) {
|
|
6244
|
+
return ActionsApi_GetWorkflowStatus1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
6245
|
+
}
|
|
5909
6246
|
/**
|
|
5910
6247
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
5911
6248
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -6094,6 +6431,16 @@ export class ActionsApi extends BaseAPI {
|
|
|
6094
6431
|
triggerQualityIssuesCalculation(requestParameters, options) {
|
|
6095
6432
|
return ActionsApi_TriggerQualityIssuesCalculation(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
6096
6433
|
}
|
|
6434
|
+
/**
|
|
6435
|
+
*
|
|
6436
|
+
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
6437
|
+
* @param {*} [options] Override http request option.
|
|
6438
|
+
* @throws {RequiredError}
|
|
6439
|
+
* @memberof ActionsApi
|
|
6440
|
+
*/
|
|
6441
|
+
userFeedback(requestParameters, options) {
|
|
6442
|
+
return ActionsApi_UserFeedback(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
6443
|
+
}
|
|
6097
6444
|
/**
|
|
6098
6445
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
6099
6446
|
* @summary Validate LLM Endpoint (Removed)
|