@gooddata/api-client-tiger 11.40.0-alpha.1 → 11.40.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.
@@ -3177,44 +3177,6 @@ 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
3218
3180
  /**
3219
3181
  * Computes change analysis for the provided execution definition.
3220
3182
  * @summary Compute change analysis
@@ -3928,55 +3890,6 @@ export async function ActionsApiAxiosParamCreator_GenerateDashboardSummary(works
3928
3890
  };
3929
3891
  }
3930
3892
  // 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
3980
3893
  /**
3981
3894
  * Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
3982
3895
  * @summary Generate Description for Analytics Object
@@ -4027,55 +3940,6 @@ export async function ActionsApiAxiosParamCreator_GenerateDescription(workspaceI
4027
3940
  };
4028
3941
  }
4029
3942
  // 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
4079
3943
  /**
4080
3944
  * Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
4081
3945
  * @summary Generate Title for Analytics Object
@@ -4238,44 +4102,6 @@ export async function ActionsApiAxiosParamCreator_GetWorkflowStatus(workspaceId,
4238
4102
  };
4239
4103
  }
4240
4104
  // 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
4279
4105
  /**
4280
4106
  * (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
4281
4107
  * @summary (EXPERIMENTAL) Compute key driver analysis
@@ -5000,59 +4826,6 @@ export async function ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculatio
5000
4826
  };
5001
4827
  }
5002
4828
  // 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
5056
4829
  /**
5057
4830
  * Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
5058
4831
  * @summary Validate LLM Endpoint (Removed)
@@ -5253,20 +5026,6 @@ export async function ActionsApi_CancelWorkflow(axios, basePath, requestParamete
5253
5026
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
5254
5027
  }
5255
5028
  // 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
5270
5029
  /**
5271
5030
  * Computes change analysis for the provided execution definition.
5272
5031
  * @summary Compute change analysis
@@ -5476,20 +5235,6 @@ export async function ActionsApi_GenerateDashboardSummary(axios, basePath, reque
5476
5235
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
5477
5236
  }
5478
5237
  // 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
5493
5238
  /**
5494
5239
  * Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
5495
5240
  * @summary Generate Description for Analytics Object
@@ -5505,20 +5250,6 @@ export async function ActionsApi_GenerateDescription(axios, basePath, requestPar
5505
5250
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
5506
5251
  }
5507
5252
  // 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
5522
5253
  /**
5523
5254
  * Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
5524
5255
  * @summary Generate Title for Analytics Object
@@ -5578,20 +5309,6 @@ export async function ActionsApi_GetWorkflowStatus(axios, basePath, requestParam
5578
5309
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
5579
5310
  }
5580
5311
  // 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
5595
5312
  /**
5596
5313
  * (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
5597
5314
  * @summary (EXPERIMENTAL) Compute key driver analysis
@@ -5847,20 +5564,6 @@ export async function ActionsApi_TriggerQualityIssuesCalculation(axios, basePath
5847
5564
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
5848
5565
  }
5849
5566
  // 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
5864
5567
  /**
5865
5568
  * Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
5866
5569
  * @summary Validate LLM Endpoint (Removed)
@@ -5996,16 +5699,6 @@ export class ActionsApi extends BaseAPI {
5996
5699
  cancelWorkflow(requestParameters, options) {
5997
5700
  return ActionsApi_CancelWorkflow(this.axios, this.basePath, requestParameters, options, this.configuration);
5998
5701
  }
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
- }
6009
5702
  /**
6010
5703
  * Computes change analysis for the provided execution definition.
6011
5704
  * @summary Compute change analysis
@@ -6159,16 +5852,6 @@ export class ActionsApi extends BaseAPI {
6159
5852
  generateDashboardSummary(requestParameters, options) {
6160
5853
  return ActionsApi_GenerateDashboardSummary(this.axios, this.basePath, requestParameters, options, this.configuration);
6161
5854
  }
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
- }
6172
5855
  /**
6173
5856
  * Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
6174
5857
  * @summary Generate Description for Analytics Object
@@ -6180,16 +5863,6 @@ export class ActionsApi extends BaseAPI {
6180
5863
  generateDescription(requestParameters, options) {
6181
5864
  return ActionsApi_GenerateDescription(this.axios, this.basePath, requestParameters, options, this.configuration);
6182
5865
  }
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
- }
6193
5866
  /**
6194
5867
  * Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
6195
5868
  * @summary Generate Title for Analytics Object
@@ -6233,16 +5906,6 @@ export class ActionsApi extends BaseAPI {
6233
5906
  getWorkflowStatus(requestParameters, options) {
6234
5907
  return ActionsApi_GetWorkflowStatus(this.axios, this.basePath, requestParameters, options, this.configuration);
6235
5908
  }
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
- }
6246
5909
  /**
6247
5910
  * (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
6248
5911
  * @summary (EXPERIMENTAL) Compute key driver analysis
@@ -6431,16 +6094,6 @@ export class ActionsApi extends BaseAPI {
6431
6094
  triggerQualityIssuesCalculation(requestParameters, options) {
6432
6095
  return ActionsApi_TriggerQualityIssuesCalculation(this.axios, this.basePath, requestParameters, options, this.configuration);
6433
6096
  }
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
- }
6444
6097
  /**
6445
6098
  * Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
6446
6099
  * @summary Validate LLM Endpoint (Removed)
@@ -685,6 +685,7 @@ export declare const AiObjectType: {
685
685
  readonly VISUALIZATION: "visualization";
686
686
  readonly DASHBOARD: "dashboard";
687
687
  readonly FILTER_CONTEXT: "filter_context";
688
+ readonly PARAMETER: "parameter";
688
689
  };
689
690
  export type AiObjectType = typeof AiObjectType[keyof typeof AiObjectType];
690
691
  /**
@@ -994,6 +995,7 @@ export interface AiSummarizeRequest {
994
995
  'visualizations'?: Array<string> | null;
995
996
  'filterContext'?: Array<AiSummarizeRequestFilterContextInner> | null;
996
997
  'dashboardId': string;
998
+ 'tabId'?: string | null;
997
999
  'formatHint'?: string | null;
998
1000
  }
999
1001
  /**
@@ -1006,6 +1008,7 @@ export interface AiSummarizeResponse {
1006
1008
  'visualizationsIncluded': Array<AiVisualizationIncludedResponse>;
1007
1009
  'visualizationsExcluded': Array<AiVisualizationExcludedResponse>;
1008
1010
  'generatedAt': string;
1011
+ 'tabId'?: string | null;
1009
1012
  }
1010
1013
  /**
1011
1014
  * @type AiSummarizeResponseFilterContextInner
@@ -1097,6 +1100,7 @@ export interface AiUserContextRichTextWidgetDescriptor {
1097
1100
  'title': string;
1098
1101
  'filters'?: Array<AiVisualizationFilter> | null;
1099
1102
  'widgetType': AiUserContextRichTextWidgetDescriptorWidgetTypeEnum;
1103
+ 'content'?: string | null;
1100
1104
  }
1101
1105
  export type AiUserContextRichTextWidgetDescriptorWidgetTypeEnum = 'richText';
1102
1106
  export interface AiUserContextView {
@@ -1119,6 +1123,7 @@ export interface AiUserContextWidgetDescriptor {
1119
1123
  'widgetType': AiUserContextWidgetDescriptorWidgetTypeEnum;
1120
1124
  'resultId'?: string;
1121
1125
  'visualizationId': string;
1126
+ 'content'?: string;
1122
1127
  'activeVisualizationId': string;
1123
1128
  'visualizationIds'?: Array<string>;
1124
1129
  }
@@ -115,7 +115,8 @@ export const AiObjectType = {
115
115
  LABEL: 'label',
116
116
  VISUALIZATION: 'visualization',
117
117
  DASHBOARD: 'dashboard',
118
- FILTER_CONTEXT: 'filter_context'
118
+ FILTER_CONTEXT: 'filter_context',
119
+ PARAMETER: 'parameter'
119
120
  };
120
121
  export const AiRangeMeasureValueOperator = {
121
122
  BETWEEN: 'BETWEEN',