@gooddata/api-client-tiger 11.46.0-alpha.3 → 11.46.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 +1341 -429
- package/esm/endpoints/actions/index.d.ts +1 -1
- package/esm/endpoints/actions/index.d.ts.map +1 -1
- package/esm/endpoints/actions/index.js +1 -1
- package/esm/endpoints/entitiesObjects/index.d.ts +1 -1
- package/esm/endpoints/entitiesObjects/index.d.ts.map +1 -1
- package/esm/endpoints/entitiesObjects/index.js +4 -2
- 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 +3 -1
- package/esm/genAI.d.ts +1 -1
- package/esm/genAI.d.ts.map +1 -1
- package/esm/genAI.js +0 -2
- package/esm/generated/afm-rest-api/api.d.ts +366 -266
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +371 -268
- package/esm/generated/ai-json-api/api.d.ts +31 -8
- package/esm/generated/ai-json-api/api.d.ts.map +1 -1
- package/esm/generated/auth-json-api/api.d.ts +0 -511
- package/esm/generated/auth-json-api/api.d.ts.map +1 -1
- package/esm/generated/auth-json-api/api.js +0 -650
- package/esm/generated/automation-json-api/api.d.ts +19 -1
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.d.ts +19 -1
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +1963 -340
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +1946 -478
- package/esm/generated/scan-json-api/api.d.ts +10 -0
- package/esm/generated/scan-json-api/api.d.ts.map +1 -1
- package/esm/index.d.ts +4 -3
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +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
|
|
@@ -3647,41 +3685,6 @@ export async function ActionsApiAxiosParamCreator_ComputeValidObjects(workspaceI
|
|
|
3647
3685
|
};
|
|
3648
3686
|
}
|
|
3649
3687
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
3650
|
-
/**
|
|
3651
|
-
* Returns a list of Users who created any object for this workspace
|
|
3652
|
-
* @summary Get Analytics Catalog CreatedBy Users
|
|
3653
|
-
* @param {string} workspaceId Workspace identifier
|
|
3654
|
-
* @param {*} [options] Override http request option.
|
|
3655
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
3656
|
-
* @throws {RequiredError}
|
|
3657
|
-
*/
|
|
3658
|
-
export async function ActionsApiAxiosParamCreator_CreatedBy(workspaceId, options = {}, configuration) {
|
|
3659
|
-
// verify required parameter 'workspaceId' is not null or undefined
|
|
3660
|
-
assertParamExists('createdBy', 'workspaceId', workspaceId);
|
|
3661
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/createdBy`
|
|
3662
|
-
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
3663
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3664
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3665
|
-
let baseOptions;
|
|
3666
|
-
if (configuration) {
|
|
3667
|
-
baseOptions = configuration.baseOptions;
|
|
3668
|
-
}
|
|
3669
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
3670
|
-
const localVarHeaderParameter = {};
|
|
3671
|
-
const localVarQueryParameter = {};
|
|
3672
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3673
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
3674
|
-
localVarRequestOptions.headers = {
|
|
3675
|
-
...localVarHeaderParameter,
|
|
3676
|
-
...headersFromBaseOptions,
|
|
3677
|
-
...options.headers,
|
|
3678
|
-
};
|
|
3679
|
-
return {
|
|
3680
|
-
url: toPathString(localVarUrlObj),
|
|
3681
|
-
options: localVarRequestOptions,
|
|
3682
|
-
};
|
|
3683
|
-
}
|
|
3684
|
-
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
3685
3688
|
/**
|
|
3686
3689
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
3687
3690
|
* @summary AFM explain resource.
|
|
@@ -3737,8 +3740,8 @@ export async function ActionsApiAxiosParamCreator_ExplainAFM(workspaceId, afmExe
|
|
|
3737
3740
|
}
|
|
3738
3741
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
3739
3742
|
/**
|
|
3740
|
-
*
|
|
3741
|
-
* @summary
|
|
3743
|
+
* Computes forecasted data points from the provided execution result and parameters.
|
|
3744
|
+
* @summary Smart functions - Forecast
|
|
3742
3745
|
* @param {string} workspaceId Workspace identifier
|
|
3743
3746
|
* @param {string} resultId Input result ID to be used in the computation
|
|
3744
3747
|
* @param {ForecastRequest} forecastRequest
|
|
@@ -3795,8 +3798,8 @@ export async function ActionsApiAxiosParamCreator_Forecast(workspaceId, resultId
|
|
|
3795
3798
|
}
|
|
3796
3799
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
3797
3800
|
/**
|
|
3798
|
-
*
|
|
3799
|
-
* @summary
|
|
3801
|
+
* Gets forecast result.
|
|
3802
|
+
* @summary Smart functions - Forecast Result
|
|
3800
3803
|
* @param {string} workspaceId Workspace identifier
|
|
3801
3804
|
* @param {string} resultId Result ID
|
|
3802
3805
|
* @param {number} [offset]
|
|
@@ -3890,6 +3893,55 @@ export async function ActionsApiAxiosParamCreator_GenerateDashboardSummary(works
|
|
|
3890
3893
|
};
|
|
3891
3894
|
}
|
|
3892
3895
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
3896
|
+
/**
|
|
3897
|
+
*
|
|
3898
|
+
* @param {string} workspaceId Workspace identifier
|
|
3899
|
+
* @param {DashboardSummaryRequestDto} dashboardSummaryRequestDto
|
|
3900
|
+
* @param {*} [options] Override http request option.
|
|
3901
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3902
|
+
* @throws {RequiredError}
|
|
3903
|
+
*/
|
|
3904
|
+
export async function ActionsApiAxiosParamCreator_GenerateDashboardSummary1(workspaceId, dashboardSummaryRequestDto, options = {}, configuration) {
|
|
3905
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
3906
|
+
assertParamExists('generateDashboardSummary1', 'workspaceId', workspaceId);
|
|
3907
|
+
// verify required parameter 'dashboardSummaryRequestDto' is not null or undefined
|
|
3908
|
+
assertParamExists('generateDashboardSummary1', 'dashboardSummaryRequestDto', dashboardSummaryRequestDto);
|
|
3909
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/dashboardSummary`
|
|
3910
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
3911
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3912
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3913
|
+
let baseOptions;
|
|
3914
|
+
if (configuration) {
|
|
3915
|
+
baseOptions = configuration.baseOptions;
|
|
3916
|
+
}
|
|
3917
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
3918
|
+
const localVarHeaderParameter = {};
|
|
3919
|
+
const localVarQueryParameter = {};
|
|
3920
|
+
const consumes = [
|
|
3921
|
+
'application/json'
|
|
3922
|
+
];
|
|
3923
|
+
// use application/json if present, otherwise fallback to the first one
|
|
3924
|
+
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
3925
|
+
? 'application/json'
|
|
3926
|
+
: consumes[0];
|
|
3927
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3928
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
3929
|
+
localVarRequestOptions.headers = {
|
|
3930
|
+
...localVarHeaderParameter,
|
|
3931
|
+
...headersFromBaseOptions,
|
|
3932
|
+
...options.headers,
|
|
3933
|
+
};
|
|
3934
|
+
const needsSerialization = typeof dashboardSummaryRequestDto !== "string" ||
|
|
3935
|
+
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
3936
|
+
localVarRequestOptions.data = needsSerialization
|
|
3937
|
+
? JSON.stringify(dashboardSummaryRequestDto !== undefined ? dashboardSummaryRequestDto : {})
|
|
3938
|
+
: dashboardSummaryRequestDto || "";
|
|
3939
|
+
return {
|
|
3940
|
+
url: toPathString(localVarUrlObj),
|
|
3941
|
+
options: localVarRequestOptions,
|
|
3942
|
+
};
|
|
3943
|
+
}
|
|
3944
|
+
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
3893
3945
|
/**
|
|
3894
3946
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
3895
3947
|
* @summary Generate Description for Analytics Object
|
|
@@ -3940,6 +3992,55 @@ export async function ActionsApiAxiosParamCreator_GenerateDescription(workspaceI
|
|
|
3940
3992
|
};
|
|
3941
3993
|
}
|
|
3942
3994
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
3995
|
+
/**
|
|
3996
|
+
*
|
|
3997
|
+
* @param {string} workspaceId Workspace identifier
|
|
3998
|
+
* @param {KnowledgeRecommendationsRequestDto} knowledgeRecommendationsRequestDto
|
|
3999
|
+
* @param {*} [options] Override http request option.
|
|
4000
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4001
|
+
* @throws {RequiredError}
|
|
4002
|
+
*/
|
|
4003
|
+
export async function ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(workspaceId, knowledgeRecommendationsRequestDto, options = {}, configuration) {
|
|
4004
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
4005
|
+
assertParamExists('generateKnowledgeRecommendations', 'workspaceId', workspaceId);
|
|
4006
|
+
// verify required parameter 'knowledgeRecommendationsRequestDto' is not null or undefined
|
|
4007
|
+
assertParamExists('generateKnowledgeRecommendations', 'knowledgeRecommendationsRequestDto', knowledgeRecommendationsRequestDto);
|
|
4008
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/knowledgeRecommendations`
|
|
4009
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
4010
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4011
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4012
|
+
let baseOptions;
|
|
4013
|
+
if (configuration) {
|
|
4014
|
+
baseOptions = configuration.baseOptions;
|
|
4015
|
+
}
|
|
4016
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
4017
|
+
const localVarHeaderParameter = {};
|
|
4018
|
+
const localVarQueryParameter = {};
|
|
4019
|
+
const consumes = [
|
|
4020
|
+
'application/json'
|
|
4021
|
+
];
|
|
4022
|
+
// use application/json if present, otherwise fallback to the first one
|
|
4023
|
+
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
4024
|
+
? 'application/json'
|
|
4025
|
+
: consumes[0];
|
|
4026
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4027
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
4028
|
+
localVarRequestOptions.headers = {
|
|
4029
|
+
...localVarHeaderParameter,
|
|
4030
|
+
...headersFromBaseOptions,
|
|
4031
|
+
...options.headers,
|
|
4032
|
+
};
|
|
4033
|
+
const needsSerialization = typeof knowledgeRecommendationsRequestDto !== "string" ||
|
|
4034
|
+
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
4035
|
+
localVarRequestOptions.data = needsSerialization
|
|
4036
|
+
? JSON.stringify(knowledgeRecommendationsRequestDto !== undefined ? knowledgeRecommendationsRequestDto : {})
|
|
4037
|
+
: knowledgeRecommendationsRequestDto || "";
|
|
4038
|
+
return {
|
|
4039
|
+
url: toPathString(localVarUrlObj),
|
|
4040
|
+
options: localVarRequestOptions,
|
|
4041
|
+
};
|
|
4042
|
+
}
|
|
4043
|
+
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
3943
4044
|
/**
|
|
3944
4045
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
3945
4046
|
* @summary Generate Title for Analytics Object
|
|
@@ -4102,6 +4203,44 @@ export async function ActionsApiAxiosParamCreator_GetWorkflowStatus(workspaceId,
|
|
|
4102
4203
|
};
|
|
4103
4204
|
}
|
|
4104
4205
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
4206
|
+
/**
|
|
4207
|
+
*
|
|
4208
|
+
* @param {string} workspaceId Workspace identifier
|
|
4209
|
+
* @param {string} runId
|
|
4210
|
+
* @param {*} [options] Override http request option.
|
|
4211
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4212
|
+
* @throws {RequiredError}
|
|
4213
|
+
*/
|
|
4214
|
+
export async function ActionsApiAxiosParamCreator_GetWorkflowStatus1(workspaceId, runId, options = {}, configuration) {
|
|
4215
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
4216
|
+
assertParamExists('getWorkflowStatus1', 'workspaceId', workspaceId);
|
|
4217
|
+
// verify required parameter 'runId' is not null or undefined
|
|
4218
|
+
assertParamExists('getWorkflowStatus1', 'runId', runId);
|
|
4219
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/status`
|
|
4220
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
4221
|
+
.replace(`{${"runId"}}`, encodeURIComponent(String(runId)));
|
|
4222
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4223
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4224
|
+
let baseOptions;
|
|
4225
|
+
if (configuration) {
|
|
4226
|
+
baseOptions = configuration.baseOptions;
|
|
4227
|
+
}
|
|
4228
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
4229
|
+
const localVarHeaderParameter = {};
|
|
4230
|
+
const localVarQueryParameter = {};
|
|
4231
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4232
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
4233
|
+
localVarRequestOptions.headers = {
|
|
4234
|
+
...localVarHeaderParameter,
|
|
4235
|
+
...headersFromBaseOptions,
|
|
4236
|
+
...options.headers,
|
|
4237
|
+
};
|
|
4238
|
+
return {
|
|
4239
|
+
url: toPathString(localVarUrlObj),
|
|
4240
|
+
options: localVarRequestOptions,
|
|
4241
|
+
};
|
|
4242
|
+
}
|
|
4243
|
+
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
4105
4244
|
/**
|
|
4106
4245
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
4107
4246
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -4627,41 +4766,6 @@ export async function ActionsApiAxiosParamCreator_RetrieveResultBinary(workspace
|
|
|
4627
4766
|
};
|
|
4628
4767
|
}
|
|
4629
4768
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
4630
|
-
/**
|
|
4631
|
-
* Returns a list of tags for this workspace
|
|
4632
|
-
* @summary Get Analytics Catalog Tags
|
|
4633
|
-
* @param {string} workspaceId Workspace identifier
|
|
4634
|
-
* @param {*} [options] Override http request option.
|
|
4635
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
4636
|
-
* @throws {RequiredError}
|
|
4637
|
-
*/
|
|
4638
|
-
export async function ActionsApiAxiosParamCreator_Tags(workspaceId, options = {}, configuration) {
|
|
4639
|
-
// verify required parameter 'workspaceId' is not null or undefined
|
|
4640
|
-
assertParamExists('tags', 'workspaceId', workspaceId);
|
|
4641
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/tags`
|
|
4642
|
-
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
4643
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4644
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4645
|
-
let baseOptions;
|
|
4646
|
-
if (configuration) {
|
|
4647
|
-
baseOptions = configuration.baseOptions;
|
|
4648
|
-
}
|
|
4649
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
4650
|
-
const localVarHeaderParameter = {};
|
|
4651
|
-
const localVarQueryParameter = {};
|
|
4652
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4653
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
4654
|
-
localVarRequestOptions.headers = {
|
|
4655
|
-
...localVarHeaderParameter,
|
|
4656
|
-
...headersFromBaseOptions,
|
|
4657
|
-
...options.headers,
|
|
4658
|
-
};
|
|
4659
|
-
return {
|
|
4660
|
-
url: toPathString(localVarUrlObj),
|
|
4661
|
-
options: localVarRequestOptions,
|
|
4662
|
-
};
|
|
4663
|
-
}
|
|
4664
|
-
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
4665
4769
|
/**
|
|
4666
4770
|
* Tests LLM provider connectivity with a full definition.
|
|
4667
4771
|
* @summary Test LLM Provider
|
|
@@ -4826,6 +4930,59 @@ export async function ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculatio
|
|
|
4826
4930
|
};
|
|
4827
4931
|
}
|
|
4828
4932
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
4933
|
+
/**
|
|
4934
|
+
*
|
|
4935
|
+
* @param {string} workspaceId Workspace identifier
|
|
4936
|
+
* @param {string} runId
|
|
4937
|
+
* @param {FeedbackRequestDto} feedbackRequestDto
|
|
4938
|
+
* @param {*} [options] Override http request option.
|
|
4939
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4940
|
+
* @throws {RequiredError}
|
|
4941
|
+
*/
|
|
4942
|
+
export async function ActionsApiAxiosParamCreator_UserFeedback(workspaceId, runId, feedbackRequestDto, options = {}, configuration) {
|
|
4943
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
4944
|
+
assertParamExists('userFeedback', 'workspaceId', workspaceId);
|
|
4945
|
+
// verify required parameter 'runId' is not null or undefined
|
|
4946
|
+
assertParamExists('userFeedback', 'runId', runId);
|
|
4947
|
+
// verify required parameter 'feedbackRequestDto' is not null or undefined
|
|
4948
|
+
assertParamExists('userFeedback', 'feedbackRequestDto', feedbackRequestDto);
|
|
4949
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/feedback`
|
|
4950
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
4951
|
+
.replace(`{${"runId"}}`, encodeURIComponent(String(runId)));
|
|
4952
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4953
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4954
|
+
let baseOptions;
|
|
4955
|
+
if (configuration) {
|
|
4956
|
+
baseOptions = configuration.baseOptions;
|
|
4957
|
+
}
|
|
4958
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
4959
|
+
const localVarHeaderParameter = {};
|
|
4960
|
+
const localVarQueryParameter = {};
|
|
4961
|
+
const consumes = [
|
|
4962
|
+
'application/json'
|
|
4963
|
+
];
|
|
4964
|
+
// use application/json if present, otherwise fallback to the first one
|
|
4965
|
+
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
4966
|
+
? 'application/json'
|
|
4967
|
+
: consumes[0];
|
|
4968
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4969
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
4970
|
+
localVarRequestOptions.headers = {
|
|
4971
|
+
...localVarHeaderParameter,
|
|
4972
|
+
...headersFromBaseOptions,
|
|
4973
|
+
...options.headers,
|
|
4974
|
+
};
|
|
4975
|
+
const needsSerialization = typeof feedbackRequestDto !== "string" ||
|
|
4976
|
+
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
4977
|
+
localVarRequestOptions.data = needsSerialization
|
|
4978
|
+
? JSON.stringify(feedbackRequestDto !== undefined ? feedbackRequestDto : {})
|
|
4979
|
+
: feedbackRequestDto || "";
|
|
4980
|
+
return {
|
|
4981
|
+
url: toPathString(localVarUrlObj),
|
|
4982
|
+
options: localVarRequestOptions,
|
|
4983
|
+
};
|
|
4984
|
+
}
|
|
4985
|
+
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
4829
4986
|
/**
|
|
4830
4987
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
4831
4988
|
* @summary Validate LLM Endpoint (Removed)
|
|
@@ -5026,6 +5183,20 @@ export async function ActionsApi_CancelWorkflow(axios, basePath, requestParamete
|
|
|
5026
5183
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5027
5184
|
}
|
|
5028
5185
|
// ActionsApi Api FP
|
|
5186
|
+
/**
|
|
5187
|
+
*
|
|
5188
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
5189
|
+
* @param {string} basePath Base path.
|
|
5190
|
+
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
5191
|
+
* @param {*} [options] Override http request option.
|
|
5192
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5193
|
+
* @throws {RequiredError}
|
|
5194
|
+
*/
|
|
5195
|
+
export async function ActionsApi_CancelWorkflow1(axios, basePath, requestParameters, options, configuration) {
|
|
5196
|
+
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_CancelWorkflow1(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration);
|
|
5197
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5198
|
+
}
|
|
5199
|
+
// ActionsApi Api FP
|
|
5029
5200
|
/**
|
|
5030
5201
|
* Computes change analysis for the provided execution definition.
|
|
5031
5202
|
* @summary Compute change analysis
|
|
@@ -5161,21 +5332,6 @@ export async function ActionsApi_ComputeValidObjects(axios, basePath, requestPar
|
|
|
5161
5332
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5162
5333
|
}
|
|
5163
5334
|
// ActionsApi Api FP
|
|
5164
|
-
/**
|
|
5165
|
-
* Returns a list of Users who created any object for this workspace
|
|
5166
|
-
* @summary Get Analytics Catalog CreatedBy Users
|
|
5167
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
5168
|
-
* @param {string} basePath Base path.
|
|
5169
|
-
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
5170
|
-
* @param {*} [options] Override http request option.
|
|
5171
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
5172
|
-
* @throws {RequiredError}
|
|
5173
|
-
*/
|
|
5174
|
-
export async function ActionsApi_CreatedBy(axios, basePath, requestParameters, options, configuration) {
|
|
5175
|
-
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_CreatedBy(requestParameters.workspaceId, options || {}, configuration);
|
|
5176
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5177
|
-
}
|
|
5178
|
-
// ActionsApi Api FP
|
|
5179
5335
|
/**
|
|
5180
5336
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
5181
5337
|
* @summary AFM explain resource.
|
|
@@ -5192,8 +5348,8 @@ export async function ActionsApi_ExplainAFM(axios, basePath, requestParameters,
|
|
|
5192
5348
|
}
|
|
5193
5349
|
// ActionsApi Api FP
|
|
5194
5350
|
/**
|
|
5195
|
-
*
|
|
5196
|
-
* @summary
|
|
5351
|
+
* Computes forecasted data points from the provided execution result and parameters.
|
|
5352
|
+
* @summary Smart functions - Forecast
|
|
5197
5353
|
* @param {AxiosInstance} axios Axios instance.
|
|
5198
5354
|
* @param {string} basePath Base path.
|
|
5199
5355
|
* @param {ActionsApiForecastRequest} requestParameters Request parameters.
|
|
@@ -5207,8 +5363,8 @@ export async function ActionsApi_Forecast(axios, basePath, requestParameters, op
|
|
|
5207
5363
|
}
|
|
5208
5364
|
// ActionsApi Api FP
|
|
5209
5365
|
/**
|
|
5210
|
-
*
|
|
5211
|
-
* @summary
|
|
5366
|
+
* Gets forecast result.
|
|
5367
|
+
* @summary Smart functions - Forecast Result
|
|
5212
5368
|
* @param {AxiosInstance} axios Axios instance.
|
|
5213
5369
|
* @param {string} basePath Base path.
|
|
5214
5370
|
* @param {ActionsApiForecastResultRequest} requestParameters Request parameters.
|
|
@@ -5235,6 +5391,20 @@ export async function ActionsApi_GenerateDashboardSummary(axios, basePath, reque
|
|
|
5235
5391
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5236
5392
|
}
|
|
5237
5393
|
// ActionsApi Api FP
|
|
5394
|
+
/**
|
|
5395
|
+
*
|
|
5396
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
5397
|
+
* @param {string} basePath Base path.
|
|
5398
|
+
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
5399
|
+
* @param {*} [options] Override http request option.
|
|
5400
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5401
|
+
* @throws {RequiredError}
|
|
5402
|
+
*/
|
|
5403
|
+
export async function ActionsApi_GenerateDashboardSummary1(axios, basePath, requestParameters, options, configuration) {
|
|
5404
|
+
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_GenerateDashboardSummary1(requestParameters.workspaceId, requestParameters.dashboardSummaryRequestDto, options || {}, configuration);
|
|
5405
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5406
|
+
}
|
|
5407
|
+
// ActionsApi Api FP
|
|
5238
5408
|
/**
|
|
5239
5409
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
5240
5410
|
* @summary Generate Description for Analytics Object
|
|
@@ -5250,6 +5420,20 @@ export async function ActionsApi_GenerateDescription(axios, basePath, requestPar
|
|
|
5250
5420
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5251
5421
|
}
|
|
5252
5422
|
// ActionsApi Api FP
|
|
5423
|
+
/**
|
|
5424
|
+
*
|
|
5425
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
5426
|
+
* @param {string} basePath Base path.
|
|
5427
|
+
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
5428
|
+
* @param {*} [options] Override http request option.
|
|
5429
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5430
|
+
* @throws {RequiredError}
|
|
5431
|
+
*/
|
|
5432
|
+
export async function ActionsApi_GenerateKnowledgeRecommendations(axios, basePath, requestParameters, options, configuration) {
|
|
5433
|
+
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(requestParameters.workspaceId, requestParameters.knowledgeRecommendationsRequestDto, options || {}, configuration);
|
|
5434
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5435
|
+
}
|
|
5436
|
+
// ActionsApi Api FP
|
|
5253
5437
|
/**
|
|
5254
5438
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
5255
5439
|
* @summary Generate Title for Analytics Object
|
|
@@ -5309,6 +5493,20 @@ export async function ActionsApi_GetWorkflowStatus(axios, basePath, requestParam
|
|
|
5309
5493
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5310
5494
|
}
|
|
5311
5495
|
// ActionsApi Api FP
|
|
5496
|
+
/**
|
|
5497
|
+
*
|
|
5498
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
5499
|
+
* @param {string} basePath Base path.
|
|
5500
|
+
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
5501
|
+
* @param {*} [options] Override http request option.
|
|
5502
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5503
|
+
* @throws {RequiredError}
|
|
5504
|
+
*/
|
|
5505
|
+
export async function ActionsApi_GetWorkflowStatus1(axios, basePath, requestParameters, options, configuration) {
|
|
5506
|
+
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_GetWorkflowStatus1(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration);
|
|
5507
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5508
|
+
}
|
|
5509
|
+
// ActionsApi Api FP
|
|
5312
5510
|
/**
|
|
5313
5511
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
5314
5512
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -5489,21 +5687,6 @@ export async function ActionsApi_RetrieveResultBinary(axios, basePath, requestPa
|
|
|
5489
5687
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5490
5688
|
}
|
|
5491
5689
|
// ActionsApi Api FP
|
|
5492
|
-
/**
|
|
5493
|
-
* Returns a list of tags for this workspace
|
|
5494
|
-
* @summary Get Analytics Catalog Tags
|
|
5495
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
5496
|
-
* @param {string} basePath Base path.
|
|
5497
|
-
* @param {ActionsApiTagsRequest} requestParameters Request parameters.
|
|
5498
|
-
* @param {*} [options] Override http request option.
|
|
5499
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
5500
|
-
* @throws {RequiredError}
|
|
5501
|
-
*/
|
|
5502
|
-
export async function ActionsApi_Tags(axios, basePath, requestParameters, options, configuration) {
|
|
5503
|
-
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_Tags(requestParameters.workspaceId, options || {}, configuration);
|
|
5504
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5505
|
-
}
|
|
5506
|
-
// ActionsApi Api FP
|
|
5507
5690
|
/**
|
|
5508
5691
|
* Tests LLM provider connectivity with a full definition.
|
|
5509
5692
|
* @summary Test LLM Provider
|
|
@@ -5564,6 +5747,20 @@ export async function ActionsApi_TriggerQualityIssuesCalculation(axios, basePath
|
|
|
5564
5747
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5565
5748
|
}
|
|
5566
5749
|
// ActionsApi Api FP
|
|
5750
|
+
/**
|
|
5751
|
+
*
|
|
5752
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
5753
|
+
* @param {string} basePath Base path.
|
|
5754
|
+
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
5755
|
+
* @param {*} [options] Override http request option.
|
|
5756
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5757
|
+
* @throws {RequiredError}
|
|
5758
|
+
*/
|
|
5759
|
+
export async function ActionsApi_UserFeedback(axios, basePath, requestParameters, options, configuration) {
|
|
5760
|
+
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_UserFeedback(requestParameters.workspaceId, requestParameters.runId, requestParameters.feedbackRequestDto, options || {}, configuration);
|
|
5761
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5762
|
+
}
|
|
5763
|
+
// ActionsApi Api FP
|
|
5567
5764
|
/**
|
|
5568
5765
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
5569
5766
|
* @summary Validate LLM Endpoint (Removed)
|
|
@@ -5699,6 +5896,16 @@ export class ActionsApi extends BaseAPI {
|
|
|
5699
5896
|
cancelWorkflow(requestParameters, options) {
|
|
5700
5897
|
return ActionsApi_CancelWorkflow(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
5701
5898
|
}
|
|
5899
|
+
/**
|
|
5900
|
+
*
|
|
5901
|
+
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
5902
|
+
* @param {*} [options] Override http request option.
|
|
5903
|
+
* @throws {RequiredError}
|
|
5904
|
+
* @memberof ActionsApi
|
|
5905
|
+
*/
|
|
5906
|
+
cancelWorkflow1(requestParameters, options) {
|
|
5907
|
+
return ActionsApi_CancelWorkflow1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
5908
|
+
}
|
|
5702
5909
|
/**
|
|
5703
5910
|
* Computes change analysis for the provided execution definition.
|
|
5704
5911
|
* @summary Compute change analysis
|
|
@@ -5798,17 +6005,6 @@ export class ActionsApi extends BaseAPI {
|
|
|
5798
6005
|
computeValidObjects(requestParameters, options) {
|
|
5799
6006
|
return ActionsApi_ComputeValidObjects(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
5800
6007
|
}
|
|
5801
|
-
/**
|
|
5802
|
-
* Returns a list of Users who created any object for this workspace
|
|
5803
|
-
* @summary Get Analytics Catalog CreatedBy Users
|
|
5804
|
-
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
5805
|
-
* @param {*} [options] Override http request option.
|
|
5806
|
-
* @throws {RequiredError}
|
|
5807
|
-
* @memberof ActionsApi
|
|
5808
|
-
*/
|
|
5809
|
-
createdBy(requestParameters, options) {
|
|
5810
|
-
return ActionsApi_CreatedBy(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
5811
|
-
}
|
|
5812
6008
|
/**
|
|
5813
6009
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
5814
6010
|
* @summary AFM explain resource.
|
|
@@ -5821,8 +6017,8 @@ export class ActionsApi extends BaseAPI {
|
|
|
5821
6017
|
return ActionsApi_ExplainAFM(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
5822
6018
|
}
|
|
5823
6019
|
/**
|
|
5824
|
-
*
|
|
5825
|
-
* @summary
|
|
6020
|
+
* Computes forecasted data points from the provided execution result and parameters.
|
|
6021
|
+
* @summary Smart functions - Forecast
|
|
5826
6022
|
* @param {ActionsApiForecastRequest} requestParameters Request parameters.
|
|
5827
6023
|
* @param {*} [options] Override http request option.
|
|
5828
6024
|
* @throws {RequiredError}
|
|
@@ -5832,8 +6028,8 @@ export class ActionsApi extends BaseAPI {
|
|
|
5832
6028
|
return ActionsApi_Forecast(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
5833
6029
|
}
|
|
5834
6030
|
/**
|
|
5835
|
-
*
|
|
5836
|
-
* @summary
|
|
6031
|
+
* Gets forecast result.
|
|
6032
|
+
* @summary Smart functions - Forecast Result
|
|
5837
6033
|
* @param {ActionsApiForecastResultRequest} requestParameters Request parameters.
|
|
5838
6034
|
* @param {*} [options] Override http request option.
|
|
5839
6035
|
* @throws {RequiredError}
|
|
@@ -5852,6 +6048,16 @@ export class ActionsApi extends BaseAPI {
|
|
|
5852
6048
|
generateDashboardSummary(requestParameters, options) {
|
|
5853
6049
|
return ActionsApi_GenerateDashboardSummary(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
5854
6050
|
}
|
|
6051
|
+
/**
|
|
6052
|
+
*
|
|
6053
|
+
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
6054
|
+
* @param {*} [options] Override http request option.
|
|
6055
|
+
* @throws {RequiredError}
|
|
6056
|
+
* @memberof ActionsApi
|
|
6057
|
+
*/
|
|
6058
|
+
generateDashboardSummary1(requestParameters, options) {
|
|
6059
|
+
return ActionsApi_GenerateDashboardSummary1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
6060
|
+
}
|
|
5855
6061
|
/**
|
|
5856
6062
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
5857
6063
|
* @summary Generate Description for Analytics Object
|
|
@@ -5863,6 +6069,16 @@ export class ActionsApi extends BaseAPI {
|
|
|
5863
6069
|
generateDescription(requestParameters, options) {
|
|
5864
6070
|
return ActionsApi_GenerateDescription(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
5865
6071
|
}
|
|
6072
|
+
/**
|
|
6073
|
+
*
|
|
6074
|
+
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
6075
|
+
* @param {*} [options] Override http request option.
|
|
6076
|
+
* @throws {RequiredError}
|
|
6077
|
+
* @memberof ActionsApi
|
|
6078
|
+
*/
|
|
6079
|
+
generateKnowledgeRecommendations(requestParameters, options) {
|
|
6080
|
+
return ActionsApi_GenerateKnowledgeRecommendations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
6081
|
+
}
|
|
5866
6082
|
/**
|
|
5867
6083
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
5868
6084
|
* @summary Generate Title for Analytics Object
|
|
@@ -5906,6 +6122,16 @@ export class ActionsApi extends BaseAPI {
|
|
|
5906
6122
|
getWorkflowStatus(requestParameters, options) {
|
|
5907
6123
|
return ActionsApi_GetWorkflowStatus(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
5908
6124
|
}
|
|
6125
|
+
/**
|
|
6126
|
+
*
|
|
6127
|
+
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
6128
|
+
* @param {*} [options] Override http request option.
|
|
6129
|
+
* @throws {RequiredError}
|
|
6130
|
+
* @memberof ActionsApi
|
|
6131
|
+
*/
|
|
6132
|
+
getWorkflowStatus1(requestParameters, options) {
|
|
6133
|
+
return ActionsApi_GetWorkflowStatus1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
6134
|
+
}
|
|
5909
6135
|
/**
|
|
5910
6136
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
5911
6137
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -6039,17 +6265,6 @@ export class ActionsApi extends BaseAPI {
|
|
|
6039
6265
|
retrieveResultBinary(requestParameters, options) {
|
|
6040
6266
|
return ActionsApi_RetrieveResultBinary(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
6041
6267
|
}
|
|
6042
|
-
/**
|
|
6043
|
-
* Returns a list of tags for this workspace
|
|
6044
|
-
* @summary Get Analytics Catalog Tags
|
|
6045
|
-
* @param {ActionsApiTagsRequest} requestParameters Request parameters.
|
|
6046
|
-
* @param {*} [options] Override http request option.
|
|
6047
|
-
* @throws {RequiredError}
|
|
6048
|
-
* @memberof ActionsApi
|
|
6049
|
-
*/
|
|
6050
|
-
tags(requestParameters, options) {
|
|
6051
|
-
return ActionsApi_Tags(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
6052
|
-
}
|
|
6053
6268
|
/**
|
|
6054
6269
|
* Tests LLM provider connectivity with a full definition.
|
|
6055
6270
|
* @summary Test LLM Provider
|
|
@@ -6094,6 +6309,16 @@ export class ActionsApi extends BaseAPI {
|
|
|
6094
6309
|
triggerQualityIssuesCalculation(requestParameters, options) {
|
|
6095
6310
|
return ActionsApi_TriggerQualityIssuesCalculation(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
6096
6311
|
}
|
|
6312
|
+
/**
|
|
6313
|
+
*
|
|
6314
|
+
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
6315
|
+
* @param {*} [options] Override http request option.
|
|
6316
|
+
* @throws {RequiredError}
|
|
6317
|
+
* @memberof ActionsApi
|
|
6318
|
+
*/
|
|
6319
|
+
userFeedback(requestParameters, options) {
|
|
6320
|
+
return ActionsApi_UserFeedback(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
6321
|
+
}
|
|
6097
6322
|
/**
|
|
6098
6323
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
6099
6324
|
* @summary Validate LLM Endpoint (Removed)
|
|
@@ -7797,43 +8022,8 @@ export async function SmartFunctionsApiAxiosParamCreator_ClusteringResult(worksp
|
|
|
7797
8022
|
}
|
|
7798
8023
|
// SmartFunctionsApi FP - SmartFunctionsApiAxiosParamCreator
|
|
7799
8024
|
/**
|
|
7800
|
-
*
|
|
7801
|
-
* @summary
|
|
7802
|
-
* @param {string} workspaceId Workspace identifier
|
|
7803
|
-
* @param {*} [options] Override http request option.
|
|
7804
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
7805
|
-
* @throws {RequiredError}
|
|
7806
|
-
*/
|
|
7807
|
-
export async function SmartFunctionsApiAxiosParamCreator_CreatedBy(workspaceId, options = {}, configuration) {
|
|
7808
|
-
// verify required parameter 'workspaceId' is not null or undefined
|
|
7809
|
-
assertParamExists('createdBy', 'workspaceId', workspaceId);
|
|
7810
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/createdBy`
|
|
7811
|
-
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
7812
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7813
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
7814
|
-
let baseOptions;
|
|
7815
|
-
if (configuration) {
|
|
7816
|
-
baseOptions = configuration.baseOptions;
|
|
7817
|
-
}
|
|
7818
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
7819
|
-
const localVarHeaderParameter = {};
|
|
7820
|
-
const localVarQueryParameter = {};
|
|
7821
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7822
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
7823
|
-
localVarRequestOptions.headers = {
|
|
7824
|
-
...localVarHeaderParameter,
|
|
7825
|
-
...headersFromBaseOptions,
|
|
7826
|
-
...options.headers,
|
|
7827
|
-
};
|
|
7828
|
-
return {
|
|
7829
|
-
url: toPathString(localVarUrlObj),
|
|
7830
|
-
options: localVarRequestOptions,
|
|
7831
|
-
};
|
|
7832
|
-
}
|
|
7833
|
-
// SmartFunctionsApi FP - SmartFunctionsApiAxiosParamCreator
|
|
7834
|
-
/**
|
|
7835
|
-
* (BETA) Computes forecasted data points from the provided execution result and parameters.
|
|
7836
|
-
* @summary (BETA) Smart functions - Forecast
|
|
8025
|
+
* Computes forecasted data points from the provided execution result and parameters.
|
|
8026
|
+
* @summary Smart functions - Forecast
|
|
7837
8027
|
* @param {string} workspaceId Workspace identifier
|
|
7838
8028
|
* @param {string} resultId Input result ID to be used in the computation
|
|
7839
8029
|
* @param {ForecastRequest} forecastRequest
|
|
@@ -7890,8 +8080,8 @@ export async function SmartFunctionsApiAxiosParamCreator_Forecast(workspaceId, r
|
|
|
7890
8080
|
}
|
|
7891
8081
|
// SmartFunctionsApi FP - SmartFunctionsApiAxiosParamCreator
|
|
7892
8082
|
/**
|
|
7893
|
-
*
|
|
7894
|
-
* @summary
|
|
8083
|
+
* Gets forecast result.
|
|
8084
|
+
* @summary Smart functions - Forecast Result
|
|
7895
8085
|
* @param {string} workspaceId Workspace identifier
|
|
7896
8086
|
* @param {string} resultId Result ID
|
|
7897
8087
|
* @param {number} [offset]
|
|
@@ -8296,41 +8486,6 @@ export async function SmartFunctionsApiAxiosParamCreator_ResolveLlmProviders(wor
|
|
|
8296
8486
|
};
|
|
8297
8487
|
}
|
|
8298
8488
|
// SmartFunctionsApi FP - SmartFunctionsApiAxiosParamCreator
|
|
8299
|
-
/**
|
|
8300
|
-
* Returns a list of tags for this workspace
|
|
8301
|
-
* @summary Get Analytics Catalog Tags
|
|
8302
|
-
* @param {string} workspaceId Workspace identifier
|
|
8303
|
-
* @param {*} [options] Override http request option.
|
|
8304
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
8305
|
-
* @throws {RequiredError}
|
|
8306
|
-
*/
|
|
8307
|
-
export async function SmartFunctionsApiAxiosParamCreator_Tags(workspaceId, options = {}, configuration) {
|
|
8308
|
-
// verify required parameter 'workspaceId' is not null or undefined
|
|
8309
|
-
assertParamExists('tags', 'workspaceId', workspaceId);
|
|
8310
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/tags`
|
|
8311
|
-
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
8312
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
8313
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
8314
|
-
let baseOptions;
|
|
8315
|
-
if (configuration) {
|
|
8316
|
-
baseOptions = configuration.baseOptions;
|
|
8317
|
-
}
|
|
8318
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
8319
|
-
const localVarHeaderParameter = {};
|
|
8320
|
-
const localVarQueryParameter = {};
|
|
8321
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8322
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
8323
|
-
localVarRequestOptions.headers = {
|
|
8324
|
-
...localVarHeaderParameter,
|
|
8325
|
-
...headersFromBaseOptions,
|
|
8326
|
-
...options.headers,
|
|
8327
|
-
};
|
|
8328
|
-
return {
|
|
8329
|
-
url: toPathString(localVarUrlObj),
|
|
8330
|
-
options: localVarRequestOptions,
|
|
8331
|
-
};
|
|
8332
|
-
}
|
|
8333
|
-
// SmartFunctionsApi FP - SmartFunctionsApiAxiosParamCreator
|
|
8334
8489
|
/**
|
|
8335
8490
|
* Tests LLM provider connectivity with a full definition.
|
|
8336
8491
|
* @summary Test LLM Provider
|
|
@@ -8697,23 +8852,8 @@ export async function SmartFunctionsApi_ClusteringResult(axios, basePath, reques
|
|
|
8697
8852
|
}
|
|
8698
8853
|
// SmartFunctionsApi Api FP
|
|
8699
8854
|
/**
|
|
8700
|
-
*
|
|
8701
|
-
* @summary
|
|
8702
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
8703
|
-
* @param {string} basePath Base path.
|
|
8704
|
-
* @param {SmartFunctionsApiCreatedByRequest} requestParameters Request parameters.
|
|
8705
|
-
* @param {*} [options] Override http request option.
|
|
8706
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
8707
|
-
* @throws {RequiredError}
|
|
8708
|
-
*/
|
|
8709
|
-
export async function SmartFunctionsApi_CreatedBy(axios, basePath, requestParameters, options, configuration) {
|
|
8710
|
-
const localVarAxiosArgs = await SmartFunctionsApiAxiosParamCreator_CreatedBy(requestParameters.workspaceId, options || {}, configuration);
|
|
8711
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
8712
|
-
}
|
|
8713
|
-
// SmartFunctionsApi Api FP
|
|
8714
|
-
/**
|
|
8715
|
-
* (BETA) Computes forecasted data points from the provided execution result and parameters.
|
|
8716
|
-
* @summary (BETA) Smart functions - Forecast
|
|
8855
|
+
* Computes forecasted data points from the provided execution result and parameters.
|
|
8856
|
+
* @summary Smart functions - Forecast
|
|
8717
8857
|
* @param {AxiosInstance} axios Axios instance.
|
|
8718
8858
|
* @param {string} basePath Base path.
|
|
8719
8859
|
* @param {SmartFunctionsApiForecastRequest} requestParameters Request parameters.
|
|
@@ -8727,8 +8867,8 @@ export async function SmartFunctionsApi_Forecast(axios, basePath, requestParamet
|
|
|
8727
8867
|
}
|
|
8728
8868
|
// SmartFunctionsApi Api FP
|
|
8729
8869
|
/**
|
|
8730
|
-
*
|
|
8731
|
-
* @summary
|
|
8870
|
+
* Gets forecast result.
|
|
8871
|
+
* @summary Smart functions - Forecast Result
|
|
8732
8872
|
* @param {AxiosInstance} axios Axios instance.
|
|
8733
8873
|
* @param {string} basePath Base path.
|
|
8734
8874
|
* @param {SmartFunctionsApiForecastResultRequest} requestParameters Request parameters.
|
|
@@ -8876,21 +9016,6 @@ export async function SmartFunctionsApi_ResolveLlmProviders(axios, basePath, req
|
|
|
8876
9016
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
8877
9017
|
}
|
|
8878
9018
|
// SmartFunctionsApi Api FP
|
|
8879
|
-
/**
|
|
8880
|
-
* Returns a list of tags for this workspace
|
|
8881
|
-
* @summary Get Analytics Catalog Tags
|
|
8882
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
8883
|
-
* @param {string} basePath Base path.
|
|
8884
|
-
* @param {SmartFunctionsApiTagsRequest} requestParameters Request parameters.
|
|
8885
|
-
* @param {*} [options] Override http request option.
|
|
8886
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
8887
|
-
* @throws {RequiredError}
|
|
8888
|
-
*/
|
|
8889
|
-
export async function SmartFunctionsApi_Tags(axios, basePath, requestParameters, options, configuration) {
|
|
8890
|
-
const localVarAxiosArgs = await SmartFunctionsApiAxiosParamCreator_Tags(requestParameters.workspaceId, options || {}, configuration);
|
|
8891
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
8892
|
-
}
|
|
8893
|
-
// SmartFunctionsApi Api FP
|
|
8894
9019
|
/**
|
|
8895
9020
|
* Tests LLM provider connectivity with a full definition.
|
|
8896
9021
|
* @summary Test LLM Provider
|
|
@@ -9088,19 +9213,8 @@ export class SmartFunctionsApi extends BaseAPI {
|
|
|
9088
9213
|
return SmartFunctionsApi_ClusteringResult(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
9089
9214
|
}
|
|
9090
9215
|
/**
|
|
9091
|
-
*
|
|
9092
|
-
* @summary
|
|
9093
|
-
* @param {SmartFunctionsApiCreatedByRequest} requestParameters Request parameters.
|
|
9094
|
-
* @param {*} [options] Override http request option.
|
|
9095
|
-
* @throws {RequiredError}
|
|
9096
|
-
* @memberof SmartFunctionsApi
|
|
9097
|
-
*/
|
|
9098
|
-
createdBy(requestParameters, options) {
|
|
9099
|
-
return SmartFunctionsApi_CreatedBy(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
9100
|
-
}
|
|
9101
|
-
/**
|
|
9102
|
-
* (BETA) Computes forecasted data points from the provided execution result and parameters.
|
|
9103
|
-
* @summary (BETA) Smart functions - Forecast
|
|
9216
|
+
* Computes forecasted data points from the provided execution result and parameters.
|
|
9217
|
+
* @summary Smart functions - Forecast
|
|
9104
9218
|
* @param {SmartFunctionsApiForecastRequest} requestParameters Request parameters.
|
|
9105
9219
|
* @param {*} [options] Override http request option.
|
|
9106
9220
|
* @throws {RequiredError}
|
|
@@ -9110,8 +9224,8 @@ export class SmartFunctionsApi extends BaseAPI {
|
|
|
9110
9224
|
return SmartFunctionsApi_Forecast(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
9111
9225
|
}
|
|
9112
9226
|
/**
|
|
9113
|
-
*
|
|
9114
|
-
* @summary
|
|
9227
|
+
* Gets forecast result.
|
|
9228
|
+
* @summary Smart functions - Forecast Result
|
|
9115
9229
|
* @param {SmartFunctionsApiForecastResultRequest} requestParameters Request parameters.
|
|
9116
9230
|
* @param {*} [options] Override http request option.
|
|
9117
9231
|
* @throws {RequiredError}
|
|
@@ -9220,17 +9334,6 @@ export class SmartFunctionsApi extends BaseAPI {
|
|
|
9220
9334
|
resolveLlmProviders(requestParameters, options) {
|
|
9221
9335
|
return SmartFunctionsApi_ResolveLlmProviders(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
9222
9336
|
}
|
|
9223
|
-
/**
|
|
9224
|
-
* Returns a list of tags for this workspace
|
|
9225
|
-
* @summary Get Analytics Catalog Tags
|
|
9226
|
-
* @param {SmartFunctionsApiTagsRequest} requestParameters Request parameters.
|
|
9227
|
-
* @param {*} [options] Override http request option.
|
|
9228
|
-
* @throws {RequiredError}
|
|
9229
|
-
* @memberof SmartFunctionsApi
|
|
9230
|
-
*/
|
|
9231
|
-
tags(requestParameters, options) {
|
|
9232
|
-
return SmartFunctionsApi_Tags(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
9233
|
-
}
|
|
9234
9337
|
/**
|
|
9235
9338
|
* Tests LLM provider connectivity with a full definition.
|
|
9236
9339
|
* @summary Test LLM Provider
|