@gooddata/api-client-tiger 11.27.0-alpha.2 → 11.27.0-alpha.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/esm/__version.d.ts +1 -1
  2. package/esm/__version.js +1 -1
  3. package/esm/api-client-tiger.d.ts +6528 -6256
  4. package/esm/endpoints/automation/index.d.ts +1 -1
  5. package/esm/endpoints/automation/index.d.ts.map +1 -1
  6. package/esm/endpoints/automation/index.js +1 -1
  7. package/esm/endpoints/automation/index.js.map +1 -1
  8. package/esm/endpoints/entitiesObjects/index.d.ts +1 -1
  9. package/esm/endpoints/entitiesObjects/index.d.ts.map +1 -1
  10. package/esm/endpoints/entitiesObjects/index.js +2 -0
  11. package/esm/endpoints/entitiesObjects/index.js.map +1 -1
  12. package/esm/generated/afm-rest-api/api.d.ts +346 -8
  13. package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
  14. package/esm/generated/afm-rest-api/api.js +347 -0
  15. package/esm/generated/afm-rest-api/api.js.map +1 -1
  16. package/esm/generated/auth-json-api/api.d.ts +0 -511
  17. package/esm/generated/auth-json-api/api.d.ts.map +1 -1
  18. package/esm/generated/auth-json-api/api.js +0 -650
  19. package/esm/generated/auth-json-api/api.js.map +1 -1
  20. package/esm/generated/automation-json-api/api.d.ts +35 -1
  21. package/esm/generated/automation-json-api/api.d.ts.map +1 -1
  22. package/esm/generated/automation-json-api/api.js.map +1 -1
  23. package/esm/generated/export-json-api/api.d.ts +9 -0
  24. package/esm/generated/export-json-api/api.d.ts.map +1 -1
  25. package/esm/generated/export-json-api/api.js.map +1 -1
  26. package/esm/generated/metadata-json-api/api.d.ts +7093 -7087
  27. package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
  28. package/esm/generated/metadata-json-api/api.js +8987 -8993
  29. package/esm/generated/metadata-json-api/api.js.map +1 -1
  30. package/esm/generated/result-json-api/base.d.ts.map +1 -1
  31. package/esm/generated/result-json-api/base.js +1 -1
  32. package/esm/generated/result-json-api/base.js.map +1 -1
  33. package/esm/index.d.ts +1 -1
  34. package/esm/index.d.ts.map +1 -1
  35. package/esm/index.js.map +1 -1
  36. package/package.json +5 -5
@@ -987,6 +987,44 @@ export async function ActionsApiAxiosParamCreator_CancelWorkflow(workspaceId, ru
987
987
  };
988
988
  }
989
989
  // ActionsApi FP - ActionsApiAxiosParamCreator
990
+ /**
991
+ *
992
+ * @param {string} workspaceId Workspace identifier
993
+ * @param {string} runId
994
+ * @param {*} [options] Override http request option.
995
+ * @param {Configuration} [configuration] Optional configuration.
996
+ * @throws {RequiredError}
997
+ */
998
+ export async function ActionsApiAxiosParamCreator_CancelWorkflow1(workspaceId, runId, options = {}, configuration) {
999
+ // verify required parameter 'workspaceId' is not null or undefined
1000
+ assertParamExists('cancelWorkflow1', 'workspaceId', workspaceId);
1001
+ // verify required parameter 'runId' is not null or undefined
1002
+ assertParamExists('cancelWorkflow1', 'runId', runId);
1003
+ const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/cancel`
1004
+ .replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
1005
+ .replace(`{${"runId"}}`, encodeURIComponent(String(runId)));
1006
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1007
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1008
+ let baseOptions;
1009
+ if (configuration) {
1010
+ baseOptions = configuration.baseOptions;
1011
+ }
1012
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
1013
+ const localVarHeaderParameter = {};
1014
+ const localVarQueryParameter = {};
1015
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1016
+ const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
1017
+ localVarRequestOptions.headers = {
1018
+ ...localVarHeaderParameter,
1019
+ ...headersFromBaseOptions,
1020
+ ...options.headers,
1021
+ };
1022
+ return {
1023
+ url: toPathString(localVarUrlObj),
1024
+ options: localVarRequestOptions,
1025
+ };
1026
+ }
1027
+ // ActionsApi FP - ActionsApiAxiosParamCreator
990
1028
  /**
991
1029
  * Computes change analysis for the provided execution definition.
992
1030
  * @summary Compute change analysis
@@ -1731,6 +1769,55 @@ export async function ActionsApiAxiosParamCreator_GenerateDashboardSummary(works
1731
1769
  };
1732
1770
  }
1733
1771
  // ActionsApi FP - ActionsApiAxiosParamCreator
1772
+ /**
1773
+ *
1774
+ * @param {string} workspaceId Workspace identifier
1775
+ * @param {DashboardSummaryRequestDto} dashboardSummaryRequestDto
1776
+ * @param {*} [options] Override http request option.
1777
+ * @param {Configuration} [configuration] Optional configuration.
1778
+ * @throws {RequiredError}
1779
+ */
1780
+ export async function ActionsApiAxiosParamCreator_GenerateDashboardSummary1(workspaceId, dashboardSummaryRequestDto, options = {}, configuration) {
1781
+ // verify required parameter 'workspaceId' is not null or undefined
1782
+ assertParamExists('generateDashboardSummary1', 'workspaceId', workspaceId);
1783
+ // verify required parameter 'dashboardSummaryRequestDto' is not null or undefined
1784
+ assertParamExists('generateDashboardSummary1', 'dashboardSummaryRequestDto', dashboardSummaryRequestDto);
1785
+ const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/dashboardSummary`
1786
+ .replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
1787
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1788
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1789
+ let baseOptions;
1790
+ if (configuration) {
1791
+ baseOptions = configuration.baseOptions;
1792
+ }
1793
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
1794
+ const localVarHeaderParameter = {};
1795
+ const localVarQueryParameter = {};
1796
+ const consumes = [
1797
+ 'application/json'
1798
+ ];
1799
+ // use application/json if present, otherwise fallback to the first one
1800
+ localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
1801
+ ? 'application/json'
1802
+ : consumes[0];
1803
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1804
+ const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
1805
+ localVarRequestOptions.headers = {
1806
+ ...localVarHeaderParameter,
1807
+ ...headersFromBaseOptions,
1808
+ ...options.headers,
1809
+ };
1810
+ const needsSerialization = typeof dashboardSummaryRequestDto !== "string" ||
1811
+ localVarRequestOptions.headers["Content-Type"] === "application/json";
1812
+ localVarRequestOptions.data = needsSerialization
1813
+ ? JSON.stringify(dashboardSummaryRequestDto !== undefined ? dashboardSummaryRequestDto : {})
1814
+ : dashboardSummaryRequestDto || "";
1815
+ return {
1816
+ url: toPathString(localVarUrlObj),
1817
+ options: localVarRequestOptions,
1818
+ };
1819
+ }
1820
+ // ActionsApi FP - ActionsApiAxiosParamCreator
1734
1821
  /**
1735
1822
  * Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
1736
1823
  * @summary Generate Description for Analytics Object
@@ -1781,6 +1868,55 @@ export async function ActionsApiAxiosParamCreator_GenerateDescription(workspaceI
1781
1868
  };
1782
1869
  }
1783
1870
  // ActionsApi FP - ActionsApiAxiosParamCreator
1871
+ /**
1872
+ *
1873
+ * @param {string} workspaceId Workspace identifier
1874
+ * @param {KnowledgeRecommendationsRequestDto} knowledgeRecommendationsRequestDto
1875
+ * @param {*} [options] Override http request option.
1876
+ * @param {Configuration} [configuration] Optional configuration.
1877
+ * @throws {RequiredError}
1878
+ */
1879
+ export async function ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(workspaceId, knowledgeRecommendationsRequestDto, options = {}, configuration) {
1880
+ // verify required parameter 'workspaceId' is not null or undefined
1881
+ assertParamExists('generateKnowledgeRecommendations', 'workspaceId', workspaceId);
1882
+ // verify required parameter 'knowledgeRecommendationsRequestDto' is not null or undefined
1883
+ assertParamExists('generateKnowledgeRecommendations', 'knowledgeRecommendationsRequestDto', knowledgeRecommendationsRequestDto);
1884
+ const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/knowledgeRecommendations`
1885
+ .replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
1886
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1887
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1888
+ let baseOptions;
1889
+ if (configuration) {
1890
+ baseOptions = configuration.baseOptions;
1891
+ }
1892
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
1893
+ const localVarHeaderParameter = {};
1894
+ const localVarQueryParameter = {};
1895
+ const consumes = [
1896
+ 'application/json'
1897
+ ];
1898
+ // use application/json if present, otherwise fallback to the first one
1899
+ localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
1900
+ ? 'application/json'
1901
+ : consumes[0];
1902
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1903
+ const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
1904
+ localVarRequestOptions.headers = {
1905
+ ...localVarHeaderParameter,
1906
+ ...headersFromBaseOptions,
1907
+ ...options.headers,
1908
+ };
1909
+ const needsSerialization = typeof knowledgeRecommendationsRequestDto !== "string" ||
1910
+ localVarRequestOptions.headers["Content-Type"] === "application/json";
1911
+ localVarRequestOptions.data = needsSerialization
1912
+ ? JSON.stringify(knowledgeRecommendationsRequestDto !== undefined ? knowledgeRecommendationsRequestDto : {})
1913
+ : knowledgeRecommendationsRequestDto || "";
1914
+ return {
1915
+ url: toPathString(localVarUrlObj),
1916
+ options: localVarRequestOptions,
1917
+ };
1918
+ }
1919
+ // ActionsApi FP - ActionsApiAxiosParamCreator
1784
1920
  /**
1785
1921
  * Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
1786
1922
  * @summary Generate Title for Analytics Object
@@ -1981,6 +2117,44 @@ export async function ActionsApiAxiosParamCreator_GetWorkflowStatus(workspaceId,
1981
2117
  };
1982
2118
  }
1983
2119
  // ActionsApi FP - ActionsApiAxiosParamCreator
2120
+ /**
2121
+ *
2122
+ * @param {string} workspaceId Workspace identifier
2123
+ * @param {string} runId
2124
+ * @param {*} [options] Override http request option.
2125
+ * @param {Configuration} [configuration] Optional configuration.
2126
+ * @throws {RequiredError}
2127
+ */
2128
+ export async function ActionsApiAxiosParamCreator_GetWorkflowStatus1(workspaceId, runId, options = {}, configuration) {
2129
+ // verify required parameter 'workspaceId' is not null or undefined
2130
+ assertParamExists('getWorkflowStatus1', 'workspaceId', workspaceId);
2131
+ // verify required parameter 'runId' is not null or undefined
2132
+ assertParamExists('getWorkflowStatus1', 'runId', runId);
2133
+ const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/status`
2134
+ .replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
2135
+ .replace(`{${"runId"}}`, encodeURIComponent(String(runId)));
2136
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
2137
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2138
+ let baseOptions;
2139
+ if (configuration) {
2140
+ baseOptions = configuration.baseOptions;
2141
+ }
2142
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
2143
+ const localVarHeaderParameter = {};
2144
+ const localVarQueryParameter = {};
2145
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
2146
+ const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
2147
+ localVarRequestOptions.headers = {
2148
+ ...localVarHeaderParameter,
2149
+ ...headersFromBaseOptions,
2150
+ ...options.headers,
2151
+ };
2152
+ return {
2153
+ url: toPathString(localVarUrlObj),
2154
+ options: localVarRequestOptions,
2155
+ };
2156
+ }
2157
+ // ActionsApi FP - ActionsApiAxiosParamCreator
1984
2158
  /**
1985
2159
  * (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
1986
2160
  * @summary (EXPERIMENTAL) Compute key driver analysis
@@ -2917,6 +3091,59 @@ export async function ActionsApiAxiosParamCreator_UpsertDocument(workspaceId, up
2917
3091
  };
2918
3092
  }
2919
3093
  // ActionsApi FP - ActionsApiAxiosParamCreator
3094
+ /**
3095
+ *
3096
+ * @param {string} workspaceId Workspace identifier
3097
+ * @param {string} runId
3098
+ * @param {FeedbackRequestDto} feedbackRequestDto
3099
+ * @param {*} [options] Override http request option.
3100
+ * @param {Configuration} [configuration] Optional configuration.
3101
+ * @throws {RequiredError}
3102
+ */
3103
+ export async function ActionsApiAxiosParamCreator_UserFeedback(workspaceId, runId, feedbackRequestDto, options = {}, configuration) {
3104
+ // verify required parameter 'workspaceId' is not null or undefined
3105
+ assertParamExists('userFeedback', 'workspaceId', workspaceId);
3106
+ // verify required parameter 'runId' is not null or undefined
3107
+ assertParamExists('userFeedback', 'runId', runId);
3108
+ // verify required parameter 'feedbackRequestDto' is not null or undefined
3109
+ assertParamExists('userFeedback', 'feedbackRequestDto', feedbackRequestDto);
3110
+ const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/feedback`
3111
+ .replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
3112
+ .replace(`{${"runId"}}`, encodeURIComponent(String(runId)));
3113
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
3114
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3115
+ let baseOptions;
3116
+ if (configuration) {
3117
+ baseOptions = configuration.baseOptions;
3118
+ }
3119
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
3120
+ const localVarHeaderParameter = {};
3121
+ const localVarQueryParameter = {};
3122
+ const consumes = [
3123
+ 'application/json'
3124
+ ];
3125
+ // use application/json if present, otherwise fallback to the first one
3126
+ localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
3127
+ ? 'application/json'
3128
+ : consumes[0];
3129
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
3130
+ const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
3131
+ localVarRequestOptions.headers = {
3132
+ ...localVarHeaderParameter,
3133
+ ...headersFromBaseOptions,
3134
+ ...options.headers,
3135
+ };
3136
+ const needsSerialization = typeof feedbackRequestDto !== "string" ||
3137
+ localVarRequestOptions.headers["Content-Type"] === "application/json";
3138
+ localVarRequestOptions.data = needsSerialization
3139
+ ? JSON.stringify(feedbackRequestDto !== undefined ? feedbackRequestDto : {})
3140
+ : feedbackRequestDto || "";
3141
+ return {
3142
+ url: toPathString(localVarUrlObj),
3143
+ options: localVarRequestOptions,
3144
+ };
3145
+ }
3146
+ // ActionsApi FP - ActionsApiAxiosParamCreator
2920
3147
  /**
2921
3148
  * Will be soon removed and replaced by testLlmProvider.
2922
3149
  * @summary Validate LLM Endpoint
@@ -3145,6 +3372,20 @@ export async function ActionsApi_CancelWorkflow(axios, basePath, requestParamete
3145
3372
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
3146
3373
  }
3147
3374
  // ActionsApi Api FP
3375
+ /**
3376
+ *
3377
+ * @param {AxiosInstance} axios Axios instance.
3378
+ * @param {string} basePath Base path.
3379
+ * @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
3380
+ * @param {*} [options] Override http request option.
3381
+ * @param {Configuration} [configuration] Optional configuration.
3382
+ * @throws {RequiredError}
3383
+ */
3384
+ export async function ActionsApi_CancelWorkflow1(axios, basePath, requestParameters, options, configuration) {
3385
+ const localVarAxiosArgs = await ActionsApiAxiosParamCreator_CancelWorkflow1(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration);
3386
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
3387
+ }
3388
+ // ActionsApi Api FP
3148
3389
  /**
3149
3390
  * Computes change analysis for the provided execution definition.
3150
3391
  * @summary Compute change analysis
@@ -3367,6 +3608,20 @@ export async function ActionsApi_GenerateDashboardSummary(axios, basePath, reque
3367
3608
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
3368
3609
  }
3369
3610
  // ActionsApi Api FP
3611
+ /**
3612
+ *
3613
+ * @param {AxiosInstance} axios Axios instance.
3614
+ * @param {string} basePath Base path.
3615
+ * @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
3616
+ * @param {*} [options] Override http request option.
3617
+ * @param {Configuration} [configuration] Optional configuration.
3618
+ * @throws {RequiredError}
3619
+ */
3620
+ export async function ActionsApi_GenerateDashboardSummary1(axios, basePath, requestParameters, options, configuration) {
3621
+ const localVarAxiosArgs = await ActionsApiAxiosParamCreator_GenerateDashboardSummary1(requestParameters.workspaceId, requestParameters.dashboardSummaryRequestDto, options || {}, configuration);
3622
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
3623
+ }
3624
+ // ActionsApi Api FP
3370
3625
  /**
3371
3626
  * Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
3372
3627
  * @summary Generate Description for Analytics Object
@@ -3382,6 +3637,20 @@ export async function ActionsApi_GenerateDescription(axios, basePath, requestPar
3382
3637
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
3383
3638
  }
3384
3639
  // ActionsApi Api FP
3640
+ /**
3641
+ *
3642
+ * @param {AxiosInstance} axios Axios instance.
3643
+ * @param {string} basePath Base path.
3644
+ * @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
3645
+ * @param {*} [options] Override http request option.
3646
+ * @param {Configuration} [configuration] Optional configuration.
3647
+ * @throws {RequiredError}
3648
+ */
3649
+ export async function ActionsApi_GenerateKnowledgeRecommendations(axios, basePath, requestParameters, options, configuration) {
3650
+ const localVarAxiosArgs = await ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(requestParameters.workspaceId, requestParameters.knowledgeRecommendationsRequestDto, options || {}, configuration);
3651
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
3652
+ }
3653
+ // ActionsApi Api FP
3385
3654
  /**
3386
3655
  * Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
3387
3656
  * @summary Generate Title for Analytics Object
@@ -3455,6 +3724,20 @@ export async function ActionsApi_GetWorkflowStatus(axios, basePath, requestParam
3455
3724
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
3456
3725
  }
3457
3726
  // ActionsApi Api FP
3727
+ /**
3728
+ *
3729
+ * @param {AxiosInstance} axios Axios instance.
3730
+ * @param {string} basePath Base path.
3731
+ * @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
3732
+ * @param {*} [options] Override http request option.
3733
+ * @param {Configuration} [configuration] Optional configuration.
3734
+ * @throws {RequiredError}
3735
+ */
3736
+ export async function ActionsApi_GetWorkflowStatus1(axios, basePath, requestParameters, options, configuration) {
3737
+ const localVarAxiosArgs = await ActionsApiAxiosParamCreator_GetWorkflowStatus1(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration);
3738
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
3739
+ }
3740
+ // ActionsApi Api FP
3458
3741
  /**
3459
3742
  * (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
3460
3743
  * @summary (EXPERIMENTAL) Compute key driver analysis
@@ -3766,6 +4049,20 @@ export async function ActionsApi_UpsertDocument(axios, basePath, requestParamete
3766
4049
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
3767
4050
  }
3768
4051
  // ActionsApi Api FP
4052
+ /**
4053
+ *
4054
+ * @param {AxiosInstance} axios Axios instance.
4055
+ * @param {string} basePath Base path.
4056
+ * @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
4057
+ * @param {*} [options] Override http request option.
4058
+ * @param {Configuration} [configuration] Optional configuration.
4059
+ * @throws {RequiredError}
4060
+ */
4061
+ export async function ActionsApi_UserFeedback(axios, basePath, requestParameters, options, configuration) {
4062
+ const localVarAxiosArgs = await ActionsApiAxiosParamCreator_UserFeedback(requestParameters.workspaceId, requestParameters.runId, requestParameters.feedbackRequestDto, options || {}, configuration);
4063
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
4064
+ }
4065
+ // ActionsApi Api FP
3769
4066
  /**
3770
4067
  * Will be soon removed and replaced by testLlmProvider.
3771
4068
  * @summary Validate LLM Endpoint
@@ -3900,6 +4197,16 @@ export class ActionsApi extends BaseAPI {
3900
4197
  cancelWorkflow(requestParameters, options) {
3901
4198
  return ActionsApi_CancelWorkflow(this.axios, this.basePath, requestParameters, options, this.configuration);
3902
4199
  }
4200
+ /**
4201
+ *
4202
+ * @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
4203
+ * @param {*} [options] Override http request option.
4204
+ * @throws {RequiredError}
4205
+ * @memberof ActionsApi
4206
+ */
4207
+ cancelWorkflow1(requestParameters, options) {
4208
+ return ActionsApi_CancelWorkflow1(this.axios, this.basePath, requestParameters, options, this.configuration);
4209
+ }
3903
4210
  /**
3904
4211
  * Computes change analysis for the provided execution definition.
3905
4212
  * @summary Compute change analysis
@@ -4062,6 +4369,16 @@ export class ActionsApi extends BaseAPI {
4062
4369
  generateDashboardSummary(requestParameters, options) {
4063
4370
  return ActionsApi_GenerateDashboardSummary(this.axios, this.basePath, requestParameters, options, this.configuration);
4064
4371
  }
4372
+ /**
4373
+ *
4374
+ * @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
4375
+ * @param {*} [options] Override http request option.
4376
+ * @throws {RequiredError}
4377
+ * @memberof ActionsApi
4378
+ */
4379
+ generateDashboardSummary1(requestParameters, options) {
4380
+ return ActionsApi_GenerateDashboardSummary1(this.axios, this.basePath, requestParameters, options, this.configuration);
4381
+ }
4065
4382
  /**
4066
4383
  * Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
4067
4384
  * @summary Generate Description for Analytics Object
@@ -4073,6 +4390,16 @@ export class ActionsApi extends BaseAPI {
4073
4390
  generateDescription(requestParameters, options) {
4074
4391
  return ActionsApi_GenerateDescription(this.axios, this.basePath, requestParameters, options, this.configuration);
4075
4392
  }
4393
+ /**
4394
+ *
4395
+ * @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
4396
+ * @param {*} [options] Override http request option.
4397
+ * @throws {RequiredError}
4398
+ * @memberof ActionsApi
4399
+ */
4400
+ generateKnowledgeRecommendations(requestParameters, options) {
4401
+ return ActionsApi_GenerateKnowledgeRecommendations(this.axios, this.basePath, requestParameters, options, this.configuration);
4402
+ }
4076
4403
  /**
4077
4404
  * Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
4078
4405
  * @summary Generate Title for Analytics Object
@@ -4126,6 +4453,16 @@ export class ActionsApi extends BaseAPI {
4126
4453
  getWorkflowStatus(requestParameters, options) {
4127
4454
  return ActionsApi_GetWorkflowStatus(this.axios, this.basePath, requestParameters, options, this.configuration);
4128
4455
  }
4456
+ /**
4457
+ *
4458
+ * @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
4459
+ * @param {*} [options] Override http request option.
4460
+ * @throws {RequiredError}
4461
+ * @memberof ActionsApi
4462
+ */
4463
+ getWorkflowStatus1(requestParameters, options) {
4464
+ return ActionsApi_GetWorkflowStatus1(this.axios, this.basePath, requestParameters, options, this.configuration);
4465
+ }
4129
4466
  /**
4130
4467
  * (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
4131
4468
  * @summary (EXPERIMENTAL) Compute key driver analysis
@@ -4354,6 +4691,16 @@ export class ActionsApi extends BaseAPI {
4354
4691
  upsertDocument(requestParameters, options) {
4355
4692
  return ActionsApi_UpsertDocument(this.axios, this.basePath, requestParameters, options, this.configuration);
4356
4693
  }
4694
+ /**
4695
+ *
4696
+ * @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
4697
+ * @param {*} [options] Override http request option.
4698
+ * @throws {RequiredError}
4699
+ * @memberof ActionsApi
4700
+ */
4701
+ userFeedback(requestParameters, options) {
4702
+ return ActionsApi_UserFeedback(this.axios, this.basePath, requestParameters, options, this.configuration);
4703
+ }
4357
4704
  /**
4358
4705
  * Will be soon removed and replaced by testLlmProvider.
4359
4706
  * @summary Validate LLM Endpoint