@gooddata/code-cli 0.35.0-alpha.3 → 0.35.0
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/CHANGELOG.md +7 -1
- package/NOTICE +3 -3
- package/dist/index.js +294 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# Change Log - @gooddata/code-cli
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Thu, 28 May 2026 07:19:02 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 0.35.0
|
|
6
|
+
|
|
7
|
+
Thu, 28 May 2026 07:19:02 GMT
|
|
8
|
+
|
|
9
|
+
_Version update only_
|
|
4
10
|
|
|
5
11
|
## 0.32.0
|
|
6
12
|
|
package/NOTICE
CHANGED
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
|
|
8
8
|
The following 3rd-party software packages may be used by or distributed with gdc-analytics-as-code. Any information relevant to third-party vendors listed below are collected using common, reasonable means.
|
|
9
9
|
|
|
10
|
-
Date generated: 2026-5-
|
|
10
|
+
Date generated: 2026-5-27
|
|
11
11
|
|
|
12
|
-
Revision ID:
|
|
12
|
+
Revision ID: 9f9cce29e83fdfaaed30b93ae6742424556604dc
|
|
13
13
|
|
|
14
14
|
================================================================================
|
|
15
15
|
================================================================================
|
|
@@ -17909,4 +17909,4 @@ POSSIBILITY OF SUCH DAMAGE.
|
|
|
17909
17909
|
--------------------------------------------------------------------------------
|
|
17910
17910
|
--------------------------------------------------------------------------------
|
|
17911
17911
|
|
|
17912
|
-
Report Generated by FOSSA on 2026-5-
|
|
17912
|
+
Report Generated by FOSSA on 2026-5-27
|
package/dist/index.js
CHANGED
|
@@ -37092,7 +37092,7 @@ function isPromise(value) {
|
|
|
37092
37092
|
//#endregion
|
|
37093
37093
|
//#region package.json
|
|
37094
37094
|
var name$1 = "@gooddata/code-cli";
|
|
37095
|
-
var version$1 = "0.35.0
|
|
37095
|
+
var version$1 = "0.35.0";
|
|
37096
37096
|
//#endregion
|
|
37097
37097
|
//#region ../code/esm/features/references/types.js
|
|
37098
37098
|
var UpdateReferencesType;
|
|
@@ -86156,7 +86156,7 @@ var merge = createAssigner(function(object, source, srcIndex) {
|
|
|
86156
86156
|
});
|
|
86157
86157
|
//#endregion
|
|
86158
86158
|
//#region ../../../sdk/libs/api-client-tiger/esm/__version.js
|
|
86159
|
-
const LIB_VERSION = "11.39.0
|
|
86159
|
+
const LIB_VERSION = "11.39.0";
|
|
86160
86160
|
const LIB_NAME = "@gooddata/api-client-tiger";
|
|
86161
86161
|
//#endregion
|
|
86162
86162
|
//#region ../../../sdk/libs/api-client-tiger/esm/axios.js
|
|
@@ -111213,6 +111213,39 @@ async function ActionsApiAxiosParamCreator_CancelWorkflow(workspaceId, runId, op
|
|
|
111213
111213
|
};
|
|
111214
111214
|
}
|
|
111215
111215
|
/**
|
|
111216
|
+
*
|
|
111217
|
+
* @param {string} workspaceId Workspace identifier
|
|
111218
|
+
* @param {string} runId
|
|
111219
|
+
* @param {*} [options] Override http request option.
|
|
111220
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
111221
|
+
* @throws {RequiredError}
|
|
111222
|
+
*/
|
|
111223
|
+
async function ActionsApiAxiosParamCreator_CancelWorkflow1(workspaceId, runId, options = {}, configuration) {
|
|
111224
|
+
assertParamExists$3("cancelWorkflow1", "workspaceId", workspaceId);
|
|
111225
|
+
assertParamExists$3("cancelWorkflow1", "runId", runId);
|
|
111226
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/cancel`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{runId}`, encodeURIComponent(String(runId)));
|
|
111227
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
111228
|
+
let baseOptions;
|
|
111229
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
111230
|
+
const localVarRequestOptions = {
|
|
111231
|
+
method: "POST",
|
|
111232
|
+
...baseOptions,
|
|
111233
|
+
...options
|
|
111234
|
+
};
|
|
111235
|
+
const localVarHeaderParameter = {};
|
|
111236
|
+
setSearchParams$3(localVarUrlObj, {});
|
|
111237
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
111238
|
+
localVarRequestOptions.headers = {
|
|
111239
|
+
...localVarHeaderParameter,
|
|
111240
|
+
...headersFromBaseOptions,
|
|
111241
|
+
...options.headers
|
|
111242
|
+
};
|
|
111243
|
+
return {
|
|
111244
|
+
url: toPathString$3(localVarUrlObj),
|
|
111245
|
+
options: localVarRequestOptions
|
|
111246
|
+
};
|
|
111247
|
+
}
|
|
111248
|
+
/**
|
|
111216
111249
|
* Computes change analysis for the provided execution definition.
|
|
111217
111250
|
* @summary Compute change analysis
|
|
111218
111251
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -111759,6 +111792,43 @@ async function ActionsApiAxiosParamCreator_GenerateDashboardSummary(workspaceId,
|
|
|
111759
111792
|
};
|
|
111760
111793
|
}
|
|
111761
111794
|
/**
|
|
111795
|
+
*
|
|
111796
|
+
* @param {string} workspaceId Workspace identifier
|
|
111797
|
+
* @param {DashboardSummaryRequestDto} dashboardSummaryRequestDto
|
|
111798
|
+
* @param {*} [options] Override http request option.
|
|
111799
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
111800
|
+
* @throws {RequiredError}
|
|
111801
|
+
*/
|
|
111802
|
+
async function ActionsApiAxiosParamCreator_GenerateDashboardSummary1(workspaceId, dashboardSummaryRequestDto, options = {}, configuration) {
|
|
111803
|
+
assertParamExists$3("generateDashboardSummary1", "workspaceId", workspaceId);
|
|
111804
|
+
assertParamExists$3("generateDashboardSummary1", "dashboardSummaryRequestDto", dashboardSummaryRequestDto);
|
|
111805
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/dashboardSummary`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
111806
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
111807
|
+
let baseOptions;
|
|
111808
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
111809
|
+
const localVarRequestOptions = {
|
|
111810
|
+
method: "POST",
|
|
111811
|
+
...baseOptions,
|
|
111812
|
+
...options
|
|
111813
|
+
};
|
|
111814
|
+
const localVarHeaderParameter = {};
|
|
111815
|
+
const localVarQueryParameter = {};
|
|
111816
|
+
const consumes = ["application/json"];
|
|
111817
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
111818
|
+
setSearchParams$3(localVarUrlObj, localVarQueryParameter);
|
|
111819
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
111820
|
+
localVarRequestOptions.headers = {
|
|
111821
|
+
...localVarHeaderParameter,
|
|
111822
|
+
...headersFromBaseOptions,
|
|
111823
|
+
...options.headers
|
|
111824
|
+
};
|
|
111825
|
+
localVarRequestOptions.data = typeof dashboardSummaryRequestDto !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(dashboardSummaryRequestDto !== void 0 ? dashboardSummaryRequestDto : {}) : dashboardSummaryRequestDto || "";
|
|
111826
|
+
return {
|
|
111827
|
+
url: toPathString$3(localVarUrlObj),
|
|
111828
|
+
options: localVarRequestOptions
|
|
111829
|
+
};
|
|
111830
|
+
}
|
|
111831
|
+
/**
|
|
111762
111832
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
111763
111833
|
* @summary Generate Description for Analytics Object
|
|
111764
111834
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -111797,6 +111867,43 @@ async function ActionsApiAxiosParamCreator_GenerateDescription(workspaceId, gene
|
|
|
111797
111867
|
};
|
|
111798
111868
|
}
|
|
111799
111869
|
/**
|
|
111870
|
+
*
|
|
111871
|
+
* @param {string} workspaceId Workspace identifier
|
|
111872
|
+
* @param {KnowledgeRecommendationsRequestDto} knowledgeRecommendationsRequestDto
|
|
111873
|
+
* @param {*} [options] Override http request option.
|
|
111874
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
111875
|
+
* @throws {RequiredError}
|
|
111876
|
+
*/
|
|
111877
|
+
async function ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(workspaceId, knowledgeRecommendationsRequestDto, options = {}, configuration) {
|
|
111878
|
+
assertParamExists$3("generateKnowledgeRecommendations", "workspaceId", workspaceId);
|
|
111879
|
+
assertParamExists$3("generateKnowledgeRecommendations", "knowledgeRecommendationsRequestDto", knowledgeRecommendationsRequestDto);
|
|
111880
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/knowledgeRecommendations`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
111881
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
111882
|
+
let baseOptions;
|
|
111883
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
111884
|
+
const localVarRequestOptions = {
|
|
111885
|
+
method: "POST",
|
|
111886
|
+
...baseOptions,
|
|
111887
|
+
...options
|
|
111888
|
+
};
|
|
111889
|
+
const localVarHeaderParameter = {};
|
|
111890
|
+
const localVarQueryParameter = {};
|
|
111891
|
+
const consumes = ["application/json"];
|
|
111892
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
111893
|
+
setSearchParams$3(localVarUrlObj, localVarQueryParameter);
|
|
111894
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
111895
|
+
localVarRequestOptions.headers = {
|
|
111896
|
+
...localVarHeaderParameter,
|
|
111897
|
+
...headersFromBaseOptions,
|
|
111898
|
+
...options.headers
|
|
111899
|
+
};
|
|
111900
|
+
localVarRequestOptions.data = typeof knowledgeRecommendationsRequestDto !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(knowledgeRecommendationsRequestDto !== void 0 ? knowledgeRecommendationsRequestDto : {}) : knowledgeRecommendationsRequestDto || "";
|
|
111901
|
+
return {
|
|
111902
|
+
url: toPathString$3(localVarUrlObj),
|
|
111903
|
+
options: localVarRequestOptions
|
|
111904
|
+
};
|
|
111905
|
+
}
|
|
111906
|
+
/**
|
|
111800
111907
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
111801
111908
|
* @summary Generate Title for Analytics Object
|
|
111802
111909
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -111934,6 +112041,39 @@ async function ActionsApiAxiosParamCreator_GetWorkflowStatus(workspaceId, runId,
|
|
|
111934
112041
|
};
|
|
111935
112042
|
}
|
|
111936
112043
|
/**
|
|
112044
|
+
*
|
|
112045
|
+
* @param {string} workspaceId Workspace identifier
|
|
112046
|
+
* @param {string} runId
|
|
112047
|
+
* @param {*} [options] Override http request option.
|
|
112048
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
112049
|
+
* @throws {RequiredError}
|
|
112050
|
+
*/
|
|
112051
|
+
async function ActionsApiAxiosParamCreator_GetWorkflowStatus1(workspaceId, runId, options = {}, configuration) {
|
|
112052
|
+
assertParamExists$3("getWorkflowStatus1", "workspaceId", workspaceId);
|
|
112053
|
+
assertParamExists$3("getWorkflowStatus1", "runId", runId);
|
|
112054
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/status`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{runId}`, encodeURIComponent(String(runId)));
|
|
112055
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
112056
|
+
let baseOptions;
|
|
112057
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
112058
|
+
const localVarRequestOptions = {
|
|
112059
|
+
method: "GET",
|
|
112060
|
+
...baseOptions,
|
|
112061
|
+
...options
|
|
112062
|
+
};
|
|
112063
|
+
const localVarHeaderParameter = {};
|
|
112064
|
+
setSearchParams$3(localVarUrlObj, {});
|
|
112065
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
112066
|
+
localVarRequestOptions.headers = {
|
|
112067
|
+
...localVarHeaderParameter,
|
|
112068
|
+
...headersFromBaseOptions,
|
|
112069
|
+
...options.headers
|
|
112070
|
+
};
|
|
112071
|
+
return {
|
|
112072
|
+
url: toPathString$3(localVarUrlObj),
|
|
112073
|
+
options: localVarRequestOptions
|
|
112074
|
+
};
|
|
112075
|
+
}
|
|
112076
|
+
/**
|
|
111937
112077
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
111938
112078
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
111939
112079
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -112537,6 +112677,45 @@ async function ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculation(works
|
|
|
112537
112677
|
};
|
|
112538
112678
|
}
|
|
112539
112679
|
/**
|
|
112680
|
+
*
|
|
112681
|
+
* @param {string} workspaceId Workspace identifier
|
|
112682
|
+
* @param {string} runId
|
|
112683
|
+
* @param {FeedbackRequestDto} feedbackRequestDto
|
|
112684
|
+
* @param {*} [options] Override http request option.
|
|
112685
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
112686
|
+
* @throws {RequiredError}
|
|
112687
|
+
*/
|
|
112688
|
+
async function ActionsApiAxiosParamCreator_UserFeedback(workspaceId, runId, feedbackRequestDto, options = {}, configuration) {
|
|
112689
|
+
assertParamExists$3("userFeedback", "workspaceId", workspaceId);
|
|
112690
|
+
assertParamExists$3("userFeedback", "runId", runId);
|
|
112691
|
+
assertParamExists$3("userFeedback", "feedbackRequestDto", feedbackRequestDto);
|
|
112692
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/feedback`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{runId}`, encodeURIComponent(String(runId)));
|
|
112693
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
112694
|
+
let baseOptions;
|
|
112695
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
112696
|
+
const localVarRequestOptions = {
|
|
112697
|
+
method: "POST",
|
|
112698
|
+
...baseOptions,
|
|
112699
|
+
...options
|
|
112700
|
+
};
|
|
112701
|
+
const localVarHeaderParameter = {};
|
|
112702
|
+
const localVarQueryParameter = {};
|
|
112703
|
+
const consumes = ["application/json"];
|
|
112704
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
112705
|
+
setSearchParams$3(localVarUrlObj, localVarQueryParameter);
|
|
112706
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
112707
|
+
localVarRequestOptions.headers = {
|
|
112708
|
+
...localVarHeaderParameter,
|
|
112709
|
+
...headersFromBaseOptions,
|
|
112710
|
+
...options.headers
|
|
112711
|
+
};
|
|
112712
|
+
localVarRequestOptions.data = typeof feedbackRequestDto !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(feedbackRequestDto !== void 0 ? feedbackRequestDto : {}) : feedbackRequestDto || "";
|
|
112713
|
+
return {
|
|
112714
|
+
url: toPathString$3(localVarUrlObj),
|
|
112715
|
+
options: localVarRequestOptions
|
|
112716
|
+
};
|
|
112717
|
+
}
|
|
112718
|
+
/**
|
|
112540
112719
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
112541
112720
|
* @summary Validate LLM Endpoint (Removed)
|
|
112542
112721
|
* @param {*} [options] Override http request option.
|
|
@@ -112714,6 +112893,18 @@ async function ActionsApi_CancelWorkflow(axios, basePath, requestParameters, opt
|
|
|
112714
112893
|
return createRequestFunction$3(await ActionsApiAxiosParamCreator_CancelWorkflow(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
112715
112894
|
}
|
|
112716
112895
|
/**
|
|
112896
|
+
*
|
|
112897
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
112898
|
+
* @param {string} basePath Base path.
|
|
112899
|
+
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
112900
|
+
* @param {*} [options] Override http request option.
|
|
112901
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
112902
|
+
* @throws {RequiredError}
|
|
112903
|
+
*/
|
|
112904
|
+
async function ActionsApi_CancelWorkflow1(axios, basePath, requestParameters, options, configuration) {
|
|
112905
|
+
return createRequestFunction$3(await ActionsApiAxiosParamCreator_CancelWorkflow1(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
112906
|
+
}
|
|
112907
|
+
/**
|
|
112717
112908
|
* Computes change analysis for the provided execution definition.
|
|
112718
112909
|
* @summary Compute change analysis
|
|
112719
112910
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -112895,6 +113086,18 @@ async function ActionsApi_GenerateDashboardSummary(axios, basePath, requestParam
|
|
|
112895
113086
|
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GenerateDashboardSummary(requestParameters.workspaceId, requestParameters.workflowDashboardSummaryRequestDto, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
112896
113087
|
}
|
|
112897
113088
|
/**
|
|
113089
|
+
*
|
|
113090
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
113091
|
+
* @param {string} basePath Base path.
|
|
113092
|
+
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
113093
|
+
* @param {*} [options] Override http request option.
|
|
113094
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
113095
|
+
* @throws {RequiredError}
|
|
113096
|
+
*/
|
|
113097
|
+
async function ActionsApi_GenerateDashboardSummary1(axios, basePath, requestParameters, options, configuration) {
|
|
113098
|
+
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GenerateDashboardSummary1(requestParameters.workspaceId, requestParameters.dashboardSummaryRequestDto, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113099
|
+
}
|
|
113100
|
+
/**
|
|
112898
113101
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
112899
113102
|
* @summary Generate Description for Analytics Object
|
|
112900
113103
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -112908,6 +113111,18 @@ async function ActionsApi_GenerateDescription(axios, basePath, requestParameters
|
|
|
112908
113111
|
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GenerateDescription(requestParameters.workspaceId, requestParameters.generateDescriptionRequest, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
112909
113112
|
}
|
|
112910
113113
|
/**
|
|
113114
|
+
*
|
|
113115
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
113116
|
+
* @param {string} basePath Base path.
|
|
113117
|
+
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
113118
|
+
* @param {*} [options] Override http request option.
|
|
113119
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
113120
|
+
* @throws {RequiredError}
|
|
113121
|
+
*/
|
|
113122
|
+
async function ActionsApi_GenerateKnowledgeRecommendations(axios, basePath, requestParameters, options, configuration) {
|
|
113123
|
+
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(requestParameters.workspaceId, requestParameters.knowledgeRecommendationsRequestDto, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113124
|
+
}
|
|
113125
|
+
/**
|
|
112911
113126
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
112912
113127
|
* @summary Generate Title for Analytics Object
|
|
112913
113128
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -112959,6 +113174,18 @@ async function ActionsApi_GetWorkflowStatus(axios, basePath, requestParameters,
|
|
|
112959
113174
|
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GetWorkflowStatus(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
112960
113175
|
}
|
|
112961
113176
|
/**
|
|
113177
|
+
*
|
|
113178
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
113179
|
+
* @param {string} basePath Base path.
|
|
113180
|
+
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
113181
|
+
* @param {*} [options] Override http request option.
|
|
113182
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
113183
|
+
* @throws {RequiredError}
|
|
113184
|
+
*/
|
|
113185
|
+
async function ActionsApi_GetWorkflowStatus1(axios, basePath, requestParameters, options, configuration) {
|
|
113186
|
+
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GetWorkflowStatus1(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113187
|
+
}
|
|
113188
|
+
/**
|
|
112962
113189
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
112963
113190
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
112964
113191
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -113180,6 +113407,18 @@ async function ActionsApi_TriggerQualityIssuesCalculation(axios, basePath, reque
|
|
|
113180
113407
|
return createRequestFunction$3(await ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculation(requestParameters.workspaceId, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113181
113408
|
}
|
|
113182
113409
|
/**
|
|
113410
|
+
*
|
|
113411
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
113412
|
+
* @param {string} basePath Base path.
|
|
113413
|
+
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
113414
|
+
* @param {*} [options] Override http request option.
|
|
113415
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
113416
|
+
* @throws {RequiredError}
|
|
113417
|
+
*/
|
|
113418
|
+
async function ActionsApi_UserFeedback(axios, basePath, requestParameters, options, configuration) {
|
|
113419
|
+
return createRequestFunction$3(await ActionsApiAxiosParamCreator_UserFeedback(requestParameters.workspaceId, requestParameters.runId, requestParameters.feedbackRequestDto, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113420
|
+
}
|
|
113421
|
+
/**
|
|
113183
113422
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
113184
113423
|
* @summary Validate LLM Endpoint (Removed)
|
|
113185
113424
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -113312,6 +113551,16 @@ var ActionsApi$2 = class extends BaseAPI$3 {
|
|
|
113312
113551
|
return ActionsApi_CancelWorkflow(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113313
113552
|
}
|
|
113314
113553
|
/**
|
|
113554
|
+
*
|
|
113555
|
+
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
113556
|
+
* @param {*} [options] Override http request option.
|
|
113557
|
+
* @throws {RequiredError}
|
|
113558
|
+
* @memberof ActionsApi
|
|
113559
|
+
*/
|
|
113560
|
+
cancelWorkflow1(requestParameters, options) {
|
|
113561
|
+
return ActionsApi_CancelWorkflow1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113562
|
+
}
|
|
113563
|
+
/**
|
|
113315
113564
|
* Computes change analysis for the provided execution definition.
|
|
113316
113565
|
* @summary Compute change analysis
|
|
113317
113566
|
* @param {ActionsApiChangeAnalysisRequest} requestParameters Request parameters.
|
|
@@ -113465,6 +113714,16 @@ var ActionsApi$2 = class extends BaseAPI$3 {
|
|
|
113465
113714
|
return ActionsApi_GenerateDashboardSummary(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113466
113715
|
}
|
|
113467
113716
|
/**
|
|
113717
|
+
*
|
|
113718
|
+
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
113719
|
+
* @param {*} [options] Override http request option.
|
|
113720
|
+
* @throws {RequiredError}
|
|
113721
|
+
* @memberof ActionsApi
|
|
113722
|
+
*/
|
|
113723
|
+
generateDashboardSummary1(requestParameters, options) {
|
|
113724
|
+
return ActionsApi_GenerateDashboardSummary1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113725
|
+
}
|
|
113726
|
+
/**
|
|
113468
113727
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
113469
113728
|
* @summary Generate Description for Analytics Object
|
|
113470
113729
|
* @param {ActionsApiGenerateDescriptionRequest} requestParameters Request parameters.
|
|
@@ -113476,6 +113735,16 @@ var ActionsApi$2 = class extends BaseAPI$3 {
|
|
|
113476
113735
|
return ActionsApi_GenerateDescription(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113477
113736
|
}
|
|
113478
113737
|
/**
|
|
113738
|
+
*
|
|
113739
|
+
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
113740
|
+
* @param {*} [options] Override http request option.
|
|
113741
|
+
* @throws {RequiredError}
|
|
113742
|
+
* @memberof ActionsApi
|
|
113743
|
+
*/
|
|
113744
|
+
generateKnowledgeRecommendations(requestParameters, options) {
|
|
113745
|
+
return ActionsApi_GenerateKnowledgeRecommendations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113746
|
+
}
|
|
113747
|
+
/**
|
|
113479
113748
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
113480
113749
|
* @summary Generate Title for Analytics Object
|
|
113481
113750
|
* @param {ActionsApiGenerateTitleRequest} requestParameters Request parameters.
|
|
@@ -113519,6 +113788,16 @@ var ActionsApi$2 = class extends BaseAPI$3 {
|
|
|
113519
113788
|
return ActionsApi_GetWorkflowStatus(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113520
113789
|
}
|
|
113521
113790
|
/**
|
|
113791
|
+
*
|
|
113792
|
+
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
113793
|
+
* @param {*} [options] Override http request option.
|
|
113794
|
+
* @throws {RequiredError}
|
|
113795
|
+
* @memberof ActionsApi
|
|
113796
|
+
*/
|
|
113797
|
+
getWorkflowStatus1(requestParameters, options) {
|
|
113798
|
+
return ActionsApi_GetWorkflowStatus1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113799
|
+
}
|
|
113800
|
+
/**
|
|
113522
113801
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
113523
113802
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
113524
113803
|
* @param {ActionsApiKeyDriverAnalysisRequest} requestParameters Request parameters.
|
|
@@ -113707,6 +113986,16 @@ var ActionsApi$2 = class extends BaseAPI$3 {
|
|
|
113707
113986
|
return ActionsApi_TriggerQualityIssuesCalculation(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113708
113987
|
}
|
|
113709
113988
|
/**
|
|
113989
|
+
*
|
|
113990
|
+
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
113991
|
+
* @param {*} [options] Override http request option.
|
|
113992
|
+
* @throws {RequiredError}
|
|
113993
|
+
* @memberof ActionsApi
|
|
113994
|
+
*/
|
|
113995
|
+
userFeedback(requestParameters, options) {
|
|
113996
|
+
return ActionsApi_UserFeedback(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113997
|
+
}
|
|
113998
|
+
/**
|
|
113710
113999
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
113711
114000
|
* @summary Validate LLM Endpoint (Removed)
|
|
113712
114001
|
* @param {*} [options] Override http request option.
|
|
@@ -114767,7 +115056,7 @@ async function getUserDetails(axios, id) {
|
|
|
114767
115056
|
}
|
|
114768
115057
|
//#endregion
|
|
114769
115058
|
//#region ../../../sdk/libs/api-client-tiger/esm/generated/result-json-api/base.js
|
|
114770
|
-
const BASE_PATH$1 = "https://staging.
|
|
115059
|
+
const BASE_PATH$1 = "https://staging-automation.staging-ui.stg11.panther.intgdc.com".replace(/\/+$/, "");
|
|
114771
115060
|
var BaseAPI$1 = class {
|
|
114772
115061
|
basePath;
|
|
114773
115062
|
axios;
|
|
@@ -122965,7 +123254,7 @@ function yamlDashboardToDeclarative(entities, input) {
|
|
|
122965
123254
|
const plugins = yamlPluginsToDeclarative(input.plugins);
|
|
122966
123255
|
const [, permissions] = toDeclarativePermissions(input.permissions);
|
|
122967
123256
|
const content = yamlVersion === "3" ? {
|
|
122968
|
-
version: "
|
|
123257
|
+
version: "3",
|
|
122969
123258
|
plugins,
|
|
122970
123259
|
tabs,
|
|
122971
123260
|
...input.cross_filtering === false ? { disableCrossFiltering: true } : {},
|
|
@@ -193348,7 +193637,7 @@ async function get(state, opts) {
|
|
|
193348
193637
|
//#endregion
|
|
193349
193638
|
//#region ../code/package.json
|
|
193350
193639
|
var name = "@gooddata/code";
|
|
193351
|
-
var version = "0.35.0
|
|
193640
|
+
var version = "0.35.0";
|
|
193352
193641
|
//#endregion
|
|
193353
193642
|
//#region ../code/esm/actions/initialize.js
|
|
193354
193643
|
async function initialize(state, emitter, options) {
|