@gooddata/code-cli 0.36.0-alpha.2 → 0.36.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +827 -790
- package/package.json +1 -1
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.36.0-alpha.
|
|
37095
|
+
var version$1 = "0.36.0-alpha.3";
|
|
37096
37096
|
//#endregion
|
|
37097
37097
|
//#region ../code/esm/features/references/types.js
|
|
37098
37098
|
var UpdateReferencesType;
|
|
@@ -86161,7 +86161,7 @@ var merge = createAssigner(function(object, source, srcIndex) {
|
|
|
86161
86161
|
});
|
|
86162
86162
|
//#endregion
|
|
86163
86163
|
//#region ../../../sdk/libs/api-client-tiger/esm/__version.js
|
|
86164
|
-
const LIB_VERSION = "11.40.0-alpha.
|
|
86164
|
+
const LIB_VERSION = "11.40.0-alpha.3";
|
|
86165
86165
|
const LIB_NAME = "@gooddata/api-client-tiger";
|
|
86166
86166
|
//#endregion
|
|
86167
86167
|
//#region ../../../sdk/libs/api-client-tiger/esm/axios.js
|
|
@@ -86384,6 +86384,40 @@ async function ActionsApiAxiosParamCreator_AllPlatformUsage(options = {}, config
|
|
|
86384
86384
|
}
|
|
86385
86385
|
/**
|
|
86386
86386
|
*
|
|
86387
|
+
* @summary Get Attribute Permissions
|
|
86388
|
+
* @param {string} workspaceId
|
|
86389
|
+
* @param {string} attributeId
|
|
86390
|
+
* @param {*} [options] Override http request option.
|
|
86391
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
86392
|
+
* @throws {RequiredError}
|
|
86393
|
+
*/
|
|
86394
|
+
async function ActionsApiAxiosParamCreator_AttributePermissions(workspaceId, attributeId, options = {}, configuration) {
|
|
86395
|
+
assertParamExists$6("attributePermissions", "workspaceId", workspaceId);
|
|
86396
|
+
assertParamExists$6("attributePermissions", "attributeId", attributeId);
|
|
86397
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/attributes/{attributeId}/permissions`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{attributeId}`, encodeURIComponent(String(attributeId)));
|
|
86398
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
86399
|
+
let baseOptions;
|
|
86400
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
86401
|
+
const localVarRequestOptions = {
|
|
86402
|
+
method: "GET",
|
|
86403
|
+
...baseOptions,
|
|
86404
|
+
...options
|
|
86405
|
+
};
|
|
86406
|
+
const localVarHeaderParameter = {};
|
|
86407
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
86408
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
86409
|
+
localVarRequestOptions.headers = {
|
|
86410
|
+
...localVarHeaderParameter,
|
|
86411
|
+
...headersFromBaseOptions,
|
|
86412
|
+
...options.headers
|
|
86413
|
+
};
|
|
86414
|
+
return {
|
|
86415
|
+
url: toPathString$6(localVarUrlObj),
|
|
86416
|
+
options: localVarRequestOptions
|
|
86417
|
+
};
|
|
86418
|
+
}
|
|
86419
|
+
/**
|
|
86420
|
+
*
|
|
86387
86421
|
* @summary Get Available Assignees
|
|
86388
86422
|
* @param {string} workspaceId
|
|
86389
86423
|
* @param {string} dashboardId
|
|
@@ -86600,6 +86634,40 @@ async function ActionsApiAxiosParamCreator_DeleteWorkspaceAutomations(workspaceI
|
|
|
86600
86634
|
};
|
|
86601
86635
|
}
|
|
86602
86636
|
/**
|
|
86637
|
+
*
|
|
86638
|
+
* @summary Get Fact Permissions
|
|
86639
|
+
* @param {string} workspaceId
|
|
86640
|
+
* @param {string} factId
|
|
86641
|
+
* @param {*} [options] Override http request option.
|
|
86642
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
86643
|
+
* @throws {RequiredError}
|
|
86644
|
+
*/
|
|
86645
|
+
async function ActionsApiAxiosParamCreator_FactPermissions(workspaceId, factId, options = {}, configuration) {
|
|
86646
|
+
assertParamExists$6("factPermissions", "workspaceId", workspaceId);
|
|
86647
|
+
assertParamExists$6("factPermissions", "factId", factId);
|
|
86648
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/facts/{factId}/permissions`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{factId}`, encodeURIComponent(String(factId)));
|
|
86649
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
86650
|
+
let baseOptions;
|
|
86651
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
86652
|
+
const localVarRequestOptions = {
|
|
86653
|
+
method: "GET",
|
|
86654
|
+
...baseOptions,
|
|
86655
|
+
...options
|
|
86656
|
+
};
|
|
86657
|
+
const localVarHeaderParameter = {};
|
|
86658
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
86659
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
86660
|
+
localVarRequestOptions.headers = {
|
|
86661
|
+
...localVarHeaderParameter,
|
|
86662
|
+
...headersFromBaseOptions,
|
|
86663
|
+
...options.headers
|
|
86664
|
+
};
|
|
86665
|
+
return {
|
|
86666
|
+
url: toPathString$6(localVarUrlObj),
|
|
86667
|
+
options: localVarRequestOptions
|
|
86668
|
+
};
|
|
86669
|
+
}
|
|
86670
|
+
/**
|
|
86603
86671
|
* Generate logical data model (LDM) from physical data model (PDM) stored in data source.
|
|
86604
86672
|
* @summary Generate logical data model (LDM) from physical data model (PDM)
|
|
86605
86673
|
* @param {string} dataSourceId
|
|
@@ -86805,17 +86873,17 @@ async function ActionsApiAxiosParamCreator_InheritedEntityPrefixes(workspaceId,
|
|
|
86805
86873
|
}
|
|
86806
86874
|
/**
|
|
86807
86875
|
*
|
|
86876
|
+
* @summary Get Label Permissions
|
|
86808
86877
|
* @param {string} workspaceId
|
|
86809
|
-
* @param {
|
|
86810
|
-
* @param {number} [size] The size of the page to be returned.
|
|
86811
|
-
* @param {string} [name] Filter by user name. Note that user name is case insensitive.
|
|
86878
|
+
* @param {string} labelId
|
|
86812
86879
|
* @param {*} [options] Override http request option.
|
|
86813
86880
|
* @param {Configuration} [configuration] Optional configuration.
|
|
86814
86881
|
* @throws {RequiredError}
|
|
86815
86882
|
*/
|
|
86816
|
-
async function
|
|
86817
|
-
assertParamExists$6("
|
|
86818
|
-
|
|
86883
|
+
async function ActionsApiAxiosParamCreator_LabelPermissions(workspaceId, labelId, options = {}, configuration) {
|
|
86884
|
+
assertParamExists$6("labelPermissions", "workspaceId", workspaceId);
|
|
86885
|
+
assertParamExists$6("labelPermissions", "labelId", labelId);
|
|
86886
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/labels/{labelId}/permissions`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{labelId}`, encodeURIComponent(String(labelId)));
|
|
86819
86887
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
86820
86888
|
let baseOptions;
|
|
86821
86889
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -86825,11 +86893,7 @@ async function ActionsApiAxiosParamCreator_ListWorkspaceUserGroups(workspaceId,
|
|
|
86825
86893
|
...options
|
|
86826
86894
|
};
|
|
86827
86895
|
const localVarHeaderParameter = {};
|
|
86828
|
-
|
|
86829
|
-
if (page !== void 0) localVarQueryParameter["page"] = page;
|
|
86830
|
-
if (size !== void 0) localVarQueryParameter["size"] = size;
|
|
86831
|
-
if (name !== void 0) localVarQueryParameter["name"] = name;
|
|
86832
|
-
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
86896
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
86833
86897
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
86834
86898
|
localVarRequestOptions.headers = {
|
|
86835
86899
|
...localVarHeaderParameter,
|
|
@@ -86851,9 +86915,9 @@ async function ActionsApiAxiosParamCreator_ListWorkspaceUserGroups(workspaceId,
|
|
|
86851
86915
|
* @param {Configuration} [configuration] Optional configuration.
|
|
86852
86916
|
* @throws {RequiredError}
|
|
86853
86917
|
*/
|
|
86854
|
-
async function
|
|
86855
|
-
assertParamExists$6("
|
|
86856
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/
|
|
86918
|
+
async function ActionsApiAxiosParamCreator_ListWorkspaceUserGroups(workspaceId, page, size, name, options = {}, configuration) {
|
|
86919
|
+
assertParamExists$6("listWorkspaceUserGroups", "workspaceId", workspaceId);
|
|
86920
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/userGroups`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
86857
86921
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
86858
86922
|
let baseOptions;
|
|
86859
86923
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -86881,31 +86945,30 @@ async function ActionsApiAxiosParamCreator_ListWorkspaceUsers(workspaceId, page,
|
|
|
86881
86945
|
}
|
|
86882
86946
|
/**
|
|
86883
86947
|
*
|
|
86884
|
-
* @summary Manage Permissions for a Dashboard
|
|
86885
86948
|
* @param {string} workspaceId
|
|
86886
|
-
* @param {
|
|
86887
|
-
* @param {
|
|
86949
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
86950
|
+
* @param {number} [size] The size of the page to be returned.
|
|
86951
|
+
* @param {string} [name] Filter by user name. Note that user name is case insensitive.
|
|
86888
86952
|
* @param {*} [options] Override http request option.
|
|
86889
86953
|
* @param {Configuration} [configuration] Optional configuration.
|
|
86890
86954
|
* @throws {RequiredError}
|
|
86891
86955
|
*/
|
|
86892
|
-
async function
|
|
86893
|
-
assertParamExists$6("
|
|
86894
|
-
|
|
86895
|
-
assertParamExists$6("manageDashboardPermissions", "manageDashboardPermissionsRequestInner", manageDashboardPermissionsRequestInner);
|
|
86896
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/analyticalDashboards/{dashboardId}/managePermissions`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{dashboardId}`, encodeURIComponent(String(dashboardId)));
|
|
86956
|
+
async function ActionsApiAxiosParamCreator_ListWorkspaceUsers(workspaceId, page, size, name, options = {}, configuration) {
|
|
86957
|
+
assertParamExists$6("listWorkspaceUsers", "workspaceId", workspaceId);
|
|
86958
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/users`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
86897
86959
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
86898
86960
|
let baseOptions;
|
|
86899
86961
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
86900
86962
|
const localVarRequestOptions = {
|
|
86901
|
-
method: "
|
|
86963
|
+
method: "GET",
|
|
86902
86964
|
...baseOptions,
|
|
86903
86965
|
...options
|
|
86904
86966
|
};
|
|
86905
86967
|
const localVarHeaderParameter = {};
|
|
86906
86968
|
const localVarQueryParameter = {};
|
|
86907
|
-
|
|
86908
|
-
|
|
86969
|
+
if (page !== void 0) localVarQueryParameter["page"] = page;
|
|
86970
|
+
if (size !== void 0) localVarQueryParameter["size"] = size;
|
|
86971
|
+
if (name !== void 0) localVarQueryParameter["name"] = name;
|
|
86909
86972
|
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
86910
86973
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
86911
86974
|
localVarRequestOptions.headers = {
|
|
@@ -86913,25 +86976,26 @@ async function ActionsApiAxiosParamCreator_ManageDashboardPermissions(workspaceI
|
|
|
86913
86976
|
...headersFromBaseOptions,
|
|
86914
86977
|
...options.headers
|
|
86915
86978
|
};
|
|
86916
|
-
localVarRequestOptions.data = typeof manageDashboardPermissionsRequestInner !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(manageDashboardPermissionsRequestInner !== void 0 ? manageDashboardPermissionsRequestInner : {}) : manageDashboardPermissionsRequestInner || "";
|
|
86917
86979
|
return {
|
|
86918
86980
|
url: toPathString$6(localVarUrlObj),
|
|
86919
86981
|
options: localVarRequestOptions
|
|
86920
86982
|
};
|
|
86921
86983
|
}
|
|
86922
86984
|
/**
|
|
86923
|
-
*
|
|
86924
|
-
* @summary Manage Permissions for
|
|
86925
|
-
* @param {string}
|
|
86926
|
-
* @param {
|
|
86985
|
+
*
|
|
86986
|
+
* @summary Manage Permissions for an Attribute
|
|
86987
|
+
* @param {string} workspaceId
|
|
86988
|
+
* @param {string} attributeId
|
|
86989
|
+
* @param {Array<ManageLabelPermissionsRequestInner>} manageLabelPermissionsRequestInner
|
|
86927
86990
|
* @param {*} [options] Override http request option.
|
|
86928
86991
|
* @param {Configuration} [configuration] Optional configuration.
|
|
86929
86992
|
* @throws {RequiredError}
|
|
86930
86993
|
*/
|
|
86931
|
-
async function
|
|
86932
|
-
assertParamExists$6("
|
|
86933
|
-
assertParamExists$6("
|
|
86934
|
-
|
|
86994
|
+
async function ActionsApiAxiosParamCreator_ManageAttributePermissions(workspaceId, attributeId, manageLabelPermissionsRequestInner, options = {}, configuration) {
|
|
86995
|
+
assertParamExists$6("manageAttributePermissions", "workspaceId", workspaceId);
|
|
86996
|
+
assertParamExists$6("manageAttributePermissions", "attributeId", attributeId);
|
|
86997
|
+
assertParamExists$6("manageAttributePermissions", "manageLabelPermissionsRequestInner", manageLabelPermissionsRequestInner);
|
|
86998
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/attributes/{attributeId}/managePermissions`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{attributeId}`, encodeURIComponent(String(attributeId)));
|
|
86935
86999
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
86936
87000
|
let baseOptions;
|
|
86937
87001
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -86951,23 +87015,28 @@ async function ActionsApiAxiosParamCreator_ManageDataSourcePermissions(dataSourc
|
|
|
86951
87015
|
...headersFromBaseOptions,
|
|
86952
87016
|
...options.headers
|
|
86953
87017
|
};
|
|
86954
|
-
localVarRequestOptions.data = typeof
|
|
87018
|
+
localVarRequestOptions.data = typeof manageLabelPermissionsRequestInner !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(manageLabelPermissionsRequestInner !== void 0 ? manageLabelPermissionsRequestInner : {}) : manageLabelPermissionsRequestInner || "";
|
|
86955
87019
|
return {
|
|
86956
87020
|
url: toPathString$6(localVarUrlObj),
|
|
86957
87021
|
options: localVarRequestOptions
|
|
86958
87022
|
};
|
|
86959
87023
|
}
|
|
86960
87024
|
/**
|
|
86961
|
-
*
|
|
86962
|
-
* @summary Manage Permissions for a
|
|
86963
|
-
* @param {
|
|
87025
|
+
*
|
|
87026
|
+
* @summary Manage Permissions for a Dashboard
|
|
87027
|
+
* @param {string} workspaceId
|
|
87028
|
+
* @param {string} dashboardId
|
|
87029
|
+
* @param {Array<ManageDashboardPermissionsRequestInner>} manageDashboardPermissionsRequestInner
|
|
86964
87030
|
* @param {*} [options] Override http request option.
|
|
86965
87031
|
* @param {Configuration} [configuration] Optional configuration.
|
|
86966
87032
|
* @throws {RequiredError}
|
|
86967
87033
|
*/
|
|
86968
|
-
async function
|
|
86969
|
-
assertParamExists$6("
|
|
86970
|
-
|
|
87034
|
+
async function ActionsApiAxiosParamCreator_ManageDashboardPermissions(workspaceId, dashboardId, manageDashboardPermissionsRequestInner, options = {}, configuration) {
|
|
87035
|
+
assertParamExists$6("manageDashboardPermissions", "workspaceId", workspaceId);
|
|
87036
|
+
assertParamExists$6("manageDashboardPermissions", "dashboardId", dashboardId);
|
|
87037
|
+
assertParamExists$6("manageDashboardPermissions", "manageDashboardPermissionsRequestInner", manageDashboardPermissionsRequestInner);
|
|
87038
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/analyticalDashboards/{dashboardId}/managePermissions`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{dashboardId}`, encodeURIComponent(String(dashboardId)));
|
|
87039
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
86971
87040
|
let baseOptions;
|
|
86972
87041
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
86973
87042
|
const localVarRequestOptions = {
|
|
@@ -86986,25 +87055,25 @@ async function ActionsApiAxiosParamCreator_ManageOrganizationPermissions(organiz
|
|
|
86986
87055
|
...headersFromBaseOptions,
|
|
86987
87056
|
...options.headers
|
|
86988
87057
|
};
|
|
86989
|
-
localVarRequestOptions.data = typeof
|
|
87058
|
+
localVarRequestOptions.data = typeof manageDashboardPermissionsRequestInner !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(manageDashboardPermissionsRequestInner !== void 0 ? manageDashboardPermissionsRequestInner : {}) : manageDashboardPermissionsRequestInner || "";
|
|
86990
87059
|
return {
|
|
86991
87060
|
url: toPathString$6(localVarUrlObj),
|
|
86992
87061
|
options: localVarRequestOptions
|
|
86993
87062
|
};
|
|
86994
87063
|
}
|
|
86995
87064
|
/**
|
|
86996
|
-
* Manage Permissions for a
|
|
86997
|
-
* @summary Manage Permissions for a
|
|
86998
|
-
* @param {string}
|
|
86999
|
-
* @param {Array<
|
|
87065
|
+
* Manage Permissions for a Data Source
|
|
87066
|
+
* @summary Manage Permissions for a Data Source
|
|
87067
|
+
* @param {string} dataSourceId
|
|
87068
|
+
* @param {Array<DataSourcePermissionAssignment>} dataSourcePermissionAssignment
|
|
87000
87069
|
* @param {*} [options] Override http request option.
|
|
87001
87070
|
* @param {Configuration} [configuration] Optional configuration.
|
|
87002
87071
|
* @throws {RequiredError}
|
|
87003
87072
|
*/
|
|
87004
|
-
async function
|
|
87005
|
-
assertParamExists$6("
|
|
87006
|
-
assertParamExists$6("
|
|
87007
|
-
const localVarPath = `/api/v1/actions/
|
|
87073
|
+
async function ActionsApiAxiosParamCreator_ManageDataSourcePermissions(dataSourceId, dataSourcePermissionAssignment, options = {}, configuration) {
|
|
87074
|
+
assertParamExists$6("manageDataSourcePermissions", "dataSourceId", dataSourceId);
|
|
87075
|
+
assertParamExists$6("manageDataSourcePermissions", "dataSourcePermissionAssignment", dataSourcePermissionAssignment);
|
|
87076
|
+
const localVarPath = `/api/v1/actions/dataSources/{dataSourceId}/managePermissions`.replace(`{dataSourceId}`, encodeURIComponent(String(dataSourceId)));
|
|
87008
87077
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
87009
87078
|
let baseOptions;
|
|
87010
87079
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -87024,23 +87093,27 @@ async function ActionsApiAxiosParamCreator_ManageWorkspacePermissions(workspaceI
|
|
|
87024
87093
|
...headersFromBaseOptions,
|
|
87025
87094
|
...options.headers
|
|
87026
87095
|
};
|
|
87027
|
-
localVarRequestOptions.data = typeof
|
|
87096
|
+
localVarRequestOptions.data = typeof dataSourcePermissionAssignment !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(dataSourcePermissionAssignment !== void 0 ? dataSourcePermissionAssignment : {}) : dataSourcePermissionAssignment || "";
|
|
87028
87097
|
return {
|
|
87029
87098
|
url: toPathString$6(localVarUrlObj),
|
|
87030
87099
|
options: localVarRequestOptions
|
|
87031
87100
|
};
|
|
87032
87101
|
}
|
|
87033
87102
|
/**
|
|
87034
|
-
*
|
|
87035
|
-
* @summary
|
|
87103
|
+
*
|
|
87104
|
+
* @summary Manage Permissions for a Fact
|
|
87036
87105
|
* @param {string} workspaceId
|
|
87106
|
+
* @param {string} factId
|
|
87107
|
+
* @param {Array<ManageLabelPermissionsRequestInner>} manageLabelPermissionsRequestInner
|
|
87037
87108
|
* @param {*} [options] Override http request option.
|
|
87038
87109
|
* @param {Configuration} [configuration] Optional configuration.
|
|
87039
87110
|
* @throws {RequiredError}
|
|
87040
87111
|
*/
|
|
87041
|
-
async function
|
|
87042
|
-
assertParamExists$6("
|
|
87043
|
-
|
|
87112
|
+
async function ActionsApiAxiosParamCreator_ManageFactPermissions(workspaceId, factId, manageLabelPermissionsRequestInner, options = {}, configuration) {
|
|
87113
|
+
assertParamExists$6("manageFactPermissions", "workspaceId", workspaceId);
|
|
87114
|
+
assertParamExists$6("manageFactPermissions", "factId", factId);
|
|
87115
|
+
assertParamExists$6("manageFactPermissions", "manageLabelPermissionsRequestInner", manageLabelPermissionsRequestInner);
|
|
87116
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/facts/{factId}/managePermissions`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{factId}`, encodeURIComponent(String(factId)));
|
|
87044
87117
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
87045
87118
|
let baseOptions;
|
|
87046
87119
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -87050,90 +87123,73 @@ async function ActionsApiAxiosParamCreator_MetadataSync(workspaceId, options = {
|
|
|
87050
87123
|
...options
|
|
87051
87124
|
};
|
|
87052
87125
|
const localVarHeaderParameter = {};
|
|
87053
|
-
|
|
87054
|
-
const
|
|
87055
|
-
|
|
87056
|
-
|
|
87057
|
-
...headersFromBaseOptions,
|
|
87058
|
-
...options.headers
|
|
87059
|
-
};
|
|
87060
|
-
return {
|
|
87061
|
-
url: toPathString$6(localVarUrlObj),
|
|
87062
|
-
options: localVarRequestOptions
|
|
87063
|
-
};
|
|
87064
|
-
}
|
|
87065
|
-
/**
|
|
87066
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger sync in their scope only.
|
|
87067
|
-
* @summary (BETA) Sync organization scope Metadata to other services
|
|
87068
|
-
* @param {*} [options] Override http request option.
|
|
87069
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
87070
|
-
* @throws {RequiredError}
|
|
87071
|
-
*/
|
|
87072
|
-
async function ActionsApiAxiosParamCreator_MetadataSyncOrganization(options = {}, configuration) {
|
|
87073
|
-
const localVarUrlObj = new URL(`/api/v1/actions/organization/metadataSync`, DUMMY_BASE_URL$6);
|
|
87074
|
-
let baseOptions;
|
|
87075
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
87076
|
-
const localVarRequestOptions = {
|
|
87077
|
-
method: "POST",
|
|
87078
|
-
...baseOptions,
|
|
87079
|
-
...options
|
|
87080
|
-
};
|
|
87081
|
-
const localVarHeaderParameter = {};
|
|
87082
|
-
setSearchParams$6(localVarUrlObj, {});
|
|
87126
|
+
const localVarQueryParameter = {};
|
|
87127
|
+
const consumes = ["application/json"];
|
|
87128
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
87129
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
87083
87130
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
87084
87131
|
localVarRequestOptions.headers = {
|
|
87085
87132
|
...localVarHeaderParameter,
|
|
87086
87133
|
...headersFromBaseOptions,
|
|
87087
87134
|
...options.headers
|
|
87088
87135
|
};
|
|
87136
|
+
localVarRequestOptions.data = typeof manageLabelPermissionsRequestInner !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(manageLabelPermissionsRequestInner !== void 0 ? manageLabelPermissionsRequestInner : {}) : manageLabelPermissionsRequestInner || "";
|
|
87089
87137
|
return {
|
|
87090
87138
|
url: toPathString$6(localVarUrlObj),
|
|
87091
87139
|
options: localVarRequestOptions
|
|
87092
87140
|
};
|
|
87093
87141
|
}
|
|
87094
87142
|
/**
|
|
87095
|
-
*
|
|
87096
|
-
* @summary
|
|
87143
|
+
*
|
|
87144
|
+
* @summary Manage Permissions for a Label
|
|
87097
87145
|
* @param {string} workspaceId
|
|
87146
|
+
* @param {string} labelId
|
|
87147
|
+
* @param {Array<ManageLabelPermissionsRequestInner>} manageLabelPermissionsRequestInner
|
|
87098
87148
|
* @param {*} [options] Override http request option.
|
|
87099
87149
|
* @param {Configuration} [configuration] Optional configuration.
|
|
87100
87150
|
* @throws {RequiredError}
|
|
87101
87151
|
*/
|
|
87102
|
-
async function
|
|
87103
|
-
assertParamExists$6("
|
|
87104
|
-
|
|
87152
|
+
async function ActionsApiAxiosParamCreator_ManageLabelPermissions(workspaceId, labelId, manageLabelPermissionsRequestInner, options = {}, configuration) {
|
|
87153
|
+
assertParamExists$6("manageLabelPermissions", "workspaceId", workspaceId);
|
|
87154
|
+
assertParamExists$6("manageLabelPermissions", "labelId", labelId);
|
|
87155
|
+
assertParamExists$6("manageLabelPermissions", "manageLabelPermissionsRequestInner", manageLabelPermissionsRequestInner);
|
|
87156
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/labels/{labelId}/managePermissions`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{labelId}`, encodeURIComponent(String(labelId)));
|
|
87105
87157
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
87106
87158
|
let baseOptions;
|
|
87107
87159
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
87108
87160
|
const localVarRequestOptions = {
|
|
87109
|
-
method: "
|
|
87161
|
+
method: "POST",
|
|
87110
87162
|
...baseOptions,
|
|
87111
87163
|
...options
|
|
87112
87164
|
};
|
|
87113
87165
|
const localVarHeaderParameter = {};
|
|
87114
|
-
|
|
87166
|
+
const localVarQueryParameter = {};
|
|
87167
|
+
const consumes = ["application/json"];
|
|
87168
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
87169
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
87115
87170
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
87116
87171
|
localVarRequestOptions.headers = {
|
|
87117
87172
|
...localVarHeaderParameter,
|
|
87118
87173
|
...headersFromBaseOptions,
|
|
87119
87174
|
...options.headers
|
|
87120
87175
|
};
|
|
87176
|
+
localVarRequestOptions.data = typeof manageLabelPermissionsRequestInner !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(manageLabelPermissionsRequestInner !== void 0 ? manageLabelPermissionsRequestInner : {}) : manageLabelPermissionsRequestInner || "";
|
|
87121
87177
|
return {
|
|
87122
87178
|
url: toPathString$6(localVarUrlObj),
|
|
87123
87179
|
options: localVarRequestOptions
|
|
87124
87180
|
};
|
|
87125
87181
|
}
|
|
87126
87182
|
/**
|
|
87127
|
-
*
|
|
87128
|
-
* @summary
|
|
87129
|
-
* @param {
|
|
87183
|
+
* Manage Permissions for a Organization
|
|
87184
|
+
* @summary Manage Permissions for a Organization
|
|
87185
|
+
* @param {Array<OrganizationPermissionAssignment>} organizationPermissionAssignment
|
|
87130
87186
|
* @param {*} [options] Override http request option.
|
|
87131
87187
|
* @param {Configuration} [configuration] Optional configuration.
|
|
87132
87188
|
* @throws {RequiredError}
|
|
87133
87189
|
*/
|
|
87134
|
-
async function
|
|
87135
|
-
assertParamExists$6("
|
|
87136
|
-
const localVarUrlObj = new URL(`/api/v1/actions/
|
|
87190
|
+
async function ActionsApiAxiosParamCreator_ManageOrganizationPermissions(organizationPermissionAssignment, options = {}, configuration) {
|
|
87191
|
+
assertParamExists$6("manageOrganizationPermissions", "organizationPermissionAssignment", organizationPermissionAssignment);
|
|
87192
|
+
const localVarUrlObj = new URL(`/api/v1/actions/organization/managePermissions`, DUMMY_BASE_URL$6);
|
|
87137
87193
|
let baseOptions;
|
|
87138
87194
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
87139
87195
|
const localVarRequestOptions = {
|
|
@@ -87152,23 +87208,26 @@ async function ActionsApiAxiosParamCreator_ParticularPlatformUsage(platformUsage
|
|
|
87152
87208
|
...headersFromBaseOptions,
|
|
87153
87209
|
...options.headers
|
|
87154
87210
|
};
|
|
87155
|
-
localVarRequestOptions.data = typeof
|
|
87211
|
+
localVarRequestOptions.data = typeof organizationPermissionAssignment !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(organizationPermissionAssignment !== void 0 ? organizationPermissionAssignment : {}) : organizationPermissionAssignment || "";
|
|
87156
87212
|
return {
|
|
87157
87213
|
url: toPathString$6(localVarUrlObj),
|
|
87158
87214
|
options: localVarRequestOptions
|
|
87159
87215
|
};
|
|
87160
87216
|
}
|
|
87161
87217
|
/**
|
|
87162
|
-
*
|
|
87163
|
-
* @summary
|
|
87164
|
-
* @param {
|
|
87218
|
+
* Manage Permissions for a Workspace and its Workspace Hierarchy
|
|
87219
|
+
* @summary Manage Permissions for a Workspace
|
|
87220
|
+
* @param {string} workspaceId
|
|
87221
|
+
* @param {Array<WorkspacePermissionAssignment>} workspacePermissionAssignment
|
|
87165
87222
|
* @param {*} [options] Override http request option.
|
|
87166
87223
|
* @param {Configuration} [configuration] Optional configuration.
|
|
87167
87224
|
* @throws {RequiredError}
|
|
87168
87225
|
*/
|
|
87169
|
-
async function
|
|
87170
|
-
assertParamExists$6("
|
|
87171
|
-
|
|
87226
|
+
async function ActionsApiAxiosParamCreator_ManageWorkspacePermissions(workspaceId, workspacePermissionAssignment, options = {}, configuration) {
|
|
87227
|
+
assertParamExists$6("manageWorkspacePermissions", "workspaceId", workspaceId);
|
|
87228
|
+
assertParamExists$6("manageWorkspacePermissions", "workspacePermissionAssignment", workspacePermissionAssignment);
|
|
87229
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/managePermissions`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
87230
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
87172
87231
|
let baseOptions;
|
|
87173
87232
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
87174
87233
|
const localVarRequestOptions = {
|
|
@@ -87187,25 +87246,23 @@ async function ActionsApiAxiosParamCreator_PauseOrganizationAutomations(organiza
|
|
|
87187
87246
|
...headersFromBaseOptions,
|
|
87188
87247
|
...options.headers
|
|
87189
87248
|
};
|
|
87190
|
-
localVarRequestOptions.data = typeof
|
|
87249
|
+
localVarRequestOptions.data = typeof workspacePermissionAssignment !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(workspacePermissionAssignment !== void 0 ? workspacePermissionAssignment : {}) : workspacePermissionAssignment || "";
|
|
87191
87250
|
return {
|
|
87192
87251
|
url: toPathString$6(localVarUrlObj),
|
|
87193
87252
|
options: localVarRequestOptions
|
|
87194
87253
|
};
|
|
87195
87254
|
}
|
|
87196
87255
|
/**
|
|
87197
|
-
*
|
|
87198
|
-
* @summary
|
|
87256
|
+
* (BETA) Temporary solution. Later relevant metadata actions will trigger it in its scope only.
|
|
87257
|
+
* @summary (BETA) Sync Metadata to other services
|
|
87199
87258
|
* @param {string} workspaceId
|
|
87200
|
-
* @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
|
|
87201
87259
|
* @param {*} [options] Override http request option.
|
|
87202
87260
|
* @param {Configuration} [configuration] Optional configuration.
|
|
87203
87261
|
* @throws {RequiredError}
|
|
87204
87262
|
*/
|
|
87205
|
-
async function
|
|
87206
|
-
assertParamExists$6("
|
|
87207
|
-
|
|
87208
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/automations/pause`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
87263
|
+
async function ActionsApiAxiosParamCreator_MetadataSync(workspaceId, options = {}, configuration) {
|
|
87264
|
+
assertParamExists$6("metadataSync", "workspaceId", workspaceId);
|
|
87265
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/metadataSync`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
87209
87266
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
87210
87267
|
let baseOptions;
|
|
87211
87268
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -87215,34 +87272,199 @@ async function ActionsApiAxiosParamCreator_PauseWorkspaceAutomations(workspaceId
|
|
|
87215
87272
|
...options
|
|
87216
87273
|
};
|
|
87217
87274
|
const localVarHeaderParameter = {};
|
|
87218
|
-
|
|
87219
|
-
const consumes = ["application/json"];
|
|
87220
|
-
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
87221
|
-
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
87275
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
87222
87276
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
87223
87277
|
localVarRequestOptions.headers = {
|
|
87224
87278
|
...localVarHeaderParameter,
|
|
87225
87279
|
...headersFromBaseOptions,
|
|
87226
87280
|
...options.headers
|
|
87227
87281
|
};
|
|
87228
|
-
localVarRequestOptions.data = typeof workspaceAutomationManagementBulkRequest !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(workspaceAutomationManagementBulkRequest !== void 0 ? workspaceAutomationManagementBulkRequest : {}) : workspaceAutomationManagementBulkRequest || "";
|
|
87229
87282
|
return {
|
|
87230
87283
|
url: toPathString$6(localVarUrlObj),
|
|
87231
87284
|
options: localVarRequestOptions
|
|
87232
87285
|
};
|
|
87233
87286
|
}
|
|
87234
87287
|
/**
|
|
87235
|
-
*
|
|
87236
|
-
* @summary
|
|
87237
|
-
* @param {string} dataSourceId
|
|
87288
|
+
* (BETA) Temporary solution. Later relevant metadata actions will trigger sync in their scope only.
|
|
87289
|
+
* @summary (BETA) Sync organization scope Metadata to other services
|
|
87238
87290
|
* @param {*} [options] Override http request option.
|
|
87239
87291
|
* @param {Configuration} [configuration] Optional configuration.
|
|
87240
87292
|
* @throws {RequiredError}
|
|
87241
87293
|
*/
|
|
87242
|
-
async function
|
|
87243
|
-
|
|
87244
|
-
|
|
87245
|
-
|
|
87294
|
+
async function ActionsApiAxiosParamCreator_MetadataSyncOrganization(options = {}, configuration) {
|
|
87295
|
+
const localVarUrlObj = new URL(`/api/v1/actions/organization/metadataSync`, DUMMY_BASE_URL$6);
|
|
87296
|
+
let baseOptions;
|
|
87297
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
87298
|
+
const localVarRequestOptions = {
|
|
87299
|
+
method: "POST",
|
|
87300
|
+
...baseOptions,
|
|
87301
|
+
...options
|
|
87302
|
+
};
|
|
87303
|
+
const localVarHeaderParameter = {};
|
|
87304
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
87305
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
87306
|
+
localVarRequestOptions.headers = {
|
|
87307
|
+
...localVarHeaderParameter,
|
|
87308
|
+
...headersFromBaseOptions,
|
|
87309
|
+
...options.headers
|
|
87310
|
+
};
|
|
87311
|
+
return {
|
|
87312
|
+
url: toPathString$6(localVarUrlObj),
|
|
87313
|
+
options: localVarRequestOptions
|
|
87314
|
+
};
|
|
87315
|
+
}
|
|
87316
|
+
/**
|
|
87317
|
+
* Finds API identifier overrides in given workspace hierarchy.
|
|
87318
|
+
* @summary Finds identifier overrides in workspace hierarchy.
|
|
87319
|
+
* @param {string} workspaceId
|
|
87320
|
+
* @param {*} [options] Override http request option.
|
|
87321
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
87322
|
+
* @throws {RequiredError}
|
|
87323
|
+
*/
|
|
87324
|
+
async function ActionsApiAxiosParamCreator_OverriddenChildEntities(workspaceId, options = {}, configuration) {
|
|
87325
|
+
assertParamExists$6("overriddenChildEntities", "workspaceId", workspaceId);
|
|
87326
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/overriddenChildEntities`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
87327
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
87328
|
+
let baseOptions;
|
|
87329
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
87330
|
+
const localVarRequestOptions = {
|
|
87331
|
+
method: "GET",
|
|
87332
|
+
...baseOptions,
|
|
87333
|
+
...options
|
|
87334
|
+
};
|
|
87335
|
+
const localVarHeaderParameter = {};
|
|
87336
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
87337
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
87338
|
+
localVarRequestOptions.headers = {
|
|
87339
|
+
...localVarHeaderParameter,
|
|
87340
|
+
...headersFromBaseOptions,
|
|
87341
|
+
...options.headers
|
|
87342
|
+
};
|
|
87343
|
+
return {
|
|
87344
|
+
url: toPathString$6(localVarUrlObj),
|
|
87345
|
+
options: localVarRequestOptions
|
|
87346
|
+
};
|
|
87347
|
+
}
|
|
87348
|
+
/**
|
|
87349
|
+
* Provides information about platform usage, like amount of users, workspaces, ... _NOTE_: The `admin` user is always excluded from this amount.
|
|
87350
|
+
* @summary Info about the platform usage for particular items.
|
|
87351
|
+
* @param {PlatformUsageRequest} platformUsageRequest
|
|
87352
|
+
* @param {*} [options] Override http request option.
|
|
87353
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
87354
|
+
* @throws {RequiredError}
|
|
87355
|
+
*/
|
|
87356
|
+
async function ActionsApiAxiosParamCreator_ParticularPlatformUsage(platformUsageRequest, options = {}, configuration) {
|
|
87357
|
+
assertParamExists$6("particularPlatformUsage", "platformUsageRequest", platformUsageRequest);
|
|
87358
|
+
const localVarUrlObj = new URL(`/api/v1/actions/collectUsage`, DUMMY_BASE_URL$6);
|
|
87359
|
+
let baseOptions;
|
|
87360
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
87361
|
+
const localVarRequestOptions = {
|
|
87362
|
+
method: "POST",
|
|
87363
|
+
...baseOptions,
|
|
87364
|
+
...options
|
|
87365
|
+
};
|
|
87366
|
+
const localVarHeaderParameter = {};
|
|
87367
|
+
const localVarQueryParameter = {};
|
|
87368
|
+
const consumes = ["application/json"];
|
|
87369
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
87370
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
87371
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
87372
|
+
localVarRequestOptions.headers = {
|
|
87373
|
+
...localVarHeaderParameter,
|
|
87374
|
+
...headersFromBaseOptions,
|
|
87375
|
+
...options.headers
|
|
87376
|
+
};
|
|
87377
|
+
localVarRequestOptions.data = typeof platformUsageRequest !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(platformUsageRequest !== void 0 ? platformUsageRequest : {}) : platformUsageRequest || "";
|
|
87378
|
+
return {
|
|
87379
|
+
url: toPathString$6(localVarUrlObj),
|
|
87380
|
+
options: localVarRequestOptions
|
|
87381
|
+
};
|
|
87382
|
+
}
|
|
87383
|
+
/**
|
|
87384
|
+
*
|
|
87385
|
+
* @summary Pause selected automations across all workspaces
|
|
87386
|
+
* @param {OrganizationAutomationManagementBulkRequest} organizationAutomationManagementBulkRequest
|
|
87387
|
+
* @param {*} [options] Override http request option.
|
|
87388
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
87389
|
+
* @throws {RequiredError}
|
|
87390
|
+
*/
|
|
87391
|
+
async function ActionsApiAxiosParamCreator_PauseOrganizationAutomations(organizationAutomationManagementBulkRequest, options = {}, configuration) {
|
|
87392
|
+
assertParamExists$6("pauseOrganizationAutomations", "organizationAutomationManagementBulkRequest", organizationAutomationManagementBulkRequest);
|
|
87393
|
+
const localVarUrlObj = new URL(`/api/v1/actions/organization/automations/pause`, DUMMY_BASE_URL$6);
|
|
87394
|
+
let baseOptions;
|
|
87395
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
87396
|
+
const localVarRequestOptions = {
|
|
87397
|
+
method: "POST",
|
|
87398
|
+
...baseOptions,
|
|
87399
|
+
...options
|
|
87400
|
+
};
|
|
87401
|
+
const localVarHeaderParameter = {};
|
|
87402
|
+
const localVarQueryParameter = {};
|
|
87403
|
+
const consumes = ["application/json"];
|
|
87404
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
87405
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
87406
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
87407
|
+
localVarRequestOptions.headers = {
|
|
87408
|
+
...localVarHeaderParameter,
|
|
87409
|
+
...headersFromBaseOptions,
|
|
87410
|
+
...options.headers
|
|
87411
|
+
};
|
|
87412
|
+
localVarRequestOptions.data = typeof organizationAutomationManagementBulkRequest !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(organizationAutomationManagementBulkRequest !== void 0 ? organizationAutomationManagementBulkRequest : {}) : organizationAutomationManagementBulkRequest || "";
|
|
87413
|
+
return {
|
|
87414
|
+
url: toPathString$6(localVarUrlObj),
|
|
87415
|
+
options: localVarRequestOptions
|
|
87416
|
+
};
|
|
87417
|
+
}
|
|
87418
|
+
/**
|
|
87419
|
+
*
|
|
87420
|
+
* @summary Pause selected automations in the workspace
|
|
87421
|
+
* @param {string} workspaceId
|
|
87422
|
+
* @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
|
|
87423
|
+
* @param {*} [options] Override http request option.
|
|
87424
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
87425
|
+
* @throws {RequiredError}
|
|
87426
|
+
*/
|
|
87427
|
+
async function ActionsApiAxiosParamCreator_PauseWorkspaceAutomations(workspaceId, workspaceAutomationManagementBulkRequest, options = {}, configuration) {
|
|
87428
|
+
assertParamExists$6("pauseWorkspaceAutomations", "workspaceId", workspaceId);
|
|
87429
|
+
assertParamExists$6("pauseWorkspaceAutomations", "workspaceAutomationManagementBulkRequest", workspaceAutomationManagementBulkRequest);
|
|
87430
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/automations/pause`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
87431
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
87432
|
+
let baseOptions;
|
|
87433
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
87434
|
+
const localVarRequestOptions = {
|
|
87435
|
+
method: "POST",
|
|
87436
|
+
...baseOptions,
|
|
87437
|
+
...options
|
|
87438
|
+
};
|
|
87439
|
+
const localVarHeaderParameter = {};
|
|
87440
|
+
const localVarQueryParameter = {};
|
|
87441
|
+
const consumes = ["application/json"];
|
|
87442
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
87443
|
+
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
87444
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
87445
|
+
localVarRequestOptions.headers = {
|
|
87446
|
+
...localVarHeaderParameter,
|
|
87447
|
+
...headersFromBaseOptions,
|
|
87448
|
+
...options.headers
|
|
87449
|
+
};
|
|
87450
|
+
localVarRequestOptions.data = typeof workspaceAutomationManagementBulkRequest !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(workspaceAutomationManagementBulkRequest !== void 0 ? workspaceAutomationManagementBulkRequest : {}) : workspaceAutomationManagementBulkRequest || "";
|
|
87451
|
+
return {
|
|
87452
|
+
url: toPathString$6(localVarUrlObj),
|
|
87453
|
+
options: localVarRequestOptions
|
|
87454
|
+
};
|
|
87455
|
+
}
|
|
87456
|
+
/**
|
|
87457
|
+
* Notification sets up all reports to be computed again with new data.
|
|
87458
|
+
* @summary Register an upload notification
|
|
87459
|
+
* @param {string} dataSourceId
|
|
87460
|
+
* @param {*} [options] Override http request option.
|
|
87461
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
87462
|
+
* @throws {RequiredError}
|
|
87463
|
+
*/
|
|
87464
|
+
async function ActionsApiAxiosParamCreator_RegisterUploadNotification(dataSourceId, options = {}, configuration) {
|
|
87465
|
+
assertParamExists$6("registerUploadNotification", "dataSourceId", dataSourceId);
|
|
87466
|
+
const localVarPath = `/api/v1/actions/dataSources/{dataSourceId}/uploadNotification`.replace(`{dataSourceId}`, encodeURIComponent(String(dataSourceId)));
|
|
87467
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
87246
87468
|
let baseOptions;
|
|
87247
87469
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
87248
87470
|
const localVarRequestOptions = {
|
|
@@ -87958,6 +88180,19 @@ async function ActionsApi_AllPlatformUsage(axios, basePath, options, configurati
|
|
|
87958
88180
|
}
|
|
87959
88181
|
/**
|
|
87960
88182
|
*
|
|
88183
|
+
* @summary Get Attribute Permissions
|
|
88184
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
88185
|
+
* @param {string} basePath Base path.
|
|
88186
|
+
* @param {ActionsApiAttributePermissionsRequest} requestParameters Request parameters.
|
|
88187
|
+
* @param {*} [options] Override http request option.
|
|
88188
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
88189
|
+
* @throws {RequiredError}
|
|
88190
|
+
*/
|
|
88191
|
+
async function ActionsApi_AttributePermissions(axios, basePath, requestParameters, options, configuration) {
|
|
88192
|
+
return createRequestFunction$6(await ActionsApiAxiosParamCreator_AttributePermissions(requestParameters.workspaceId, requestParameters.attributeId, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
88193
|
+
}
|
|
88194
|
+
/**
|
|
88195
|
+
*
|
|
87961
88196
|
* @summary Get Available Assignees
|
|
87962
88197
|
* @param {AxiosInstance} axios Axios instance.
|
|
87963
88198
|
* @param {string} basePath Base path.
|
|
@@ -88035,6 +88270,19 @@ async function ActionsApi_DeleteWorkspaceAutomations(axios, basePath, requestPar
|
|
|
88035
88270
|
return createRequestFunction$6(await ActionsApiAxiosParamCreator_DeleteWorkspaceAutomations(requestParameters.workspaceId, requestParameters.workspaceAutomationManagementBulkRequest, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
88036
88271
|
}
|
|
88037
88272
|
/**
|
|
88273
|
+
*
|
|
88274
|
+
* @summary Get Fact Permissions
|
|
88275
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
88276
|
+
* @param {string} basePath Base path.
|
|
88277
|
+
* @param {ActionsApiFactPermissionsRequest} requestParameters Request parameters.
|
|
88278
|
+
* @param {*} [options] Override http request option.
|
|
88279
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
88280
|
+
* @throws {RequiredError}
|
|
88281
|
+
*/
|
|
88282
|
+
async function ActionsApi_FactPermissions(axios, basePath, requestParameters, options, configuration) {
|
|
88283
|
+
return createRequestFunction$6(await ActionsApiAxiosParamCreator_FactPermissions(requestParameters.workspaceId, requestParameters.factId, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
88284
|
+
}
|
|
88285
|
+
/**
|
|
88038
88286
|
* Generate logical data model (LDM) from physical data model (PDM) stored in data source.
|
|
88039
88287
|
* @summary Generate logical data model (LDM) from physical data model (PDM)
|
|
88040
88288
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -88114,6 +88362,19 @@ async function ActionsApi_InheritedEntityPrefixes(axios, basePath, requestParame
|
|
|
88114
88362
|
}
|
|
88115
88363
|
/**
|
|
88116
88364
|
*
|
|
88365
|
+
* @summary Get Label Permissions
|
|
88366
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
88367
|
+
* @param {string} basePath Base path.
|
|
88368
|
+
* @param {ActionsApiLabelPermissionsRequest} requestParameters Request parameters.
|
|
88369
|
+
* @param {*} [options] Override http request option.
|
|
88370
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
88371
|
+
* @throws {RequiredError}
|
|
88372
|
+
*/
|
|
88373
|
+
async function ActionsApi_LabelPermissions(axios, basePath, requestParameters, options, configuration) {
|
|
88374
|
+
return createRequestFunction$6(await ActionsApiAxiosParamCreator_LabelPermissions(requestParameters.workspaceId, requestParameters.labelId, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
88375
|
+
}
|
|
88376
|
+
/**
|
|
88377
|
+
*
|
|
88117
88378
|
* @param {AxiosInstance} axios Axios instance.
|
|
88118
88379
|
* @param {string} basePath Base path.
|
|
88119
88380
|
* @param {ActionsApiListWorkspaceUserGroupsRequest} requestParameters Request parameters.
|
|
@@ -88138,6 +88399,19 @@ async function ActionsApi_ListWorkspaceUsers(axios, basePath, requestParameters,
|
|
|
88138
88399
|
}
|
|
88139
88400
|
/**
|
|
88140
88401
|
*
|
|
88402
|
+
* @summary Manage Permissions for an Attribute
|
|
88403
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
88404
|
+
* @param {string} basePath Base path.
|
|
88405
|
+
* @param {ActionsApiManageAttributePermissionsRequest} requestParameters Request parameters.
|
|
88406
|
+
* @param {*} [options] Override http request option.
|
|
88407
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
88408
|
+
* @throws {RequiredError}
|
|
88409
|
+
*/
|
|
88410
|
+
async function ActionsApi_ManageAttributePermissions(axios, basePath, requestParameters, options, configuration) {
|
|
88411
|
+
return createRequestFunction$6(await ActionsApiAxiosParamCreator_ManageAttributePermissions(requestParameters.workspaceId, requestParameters.attributeId, requestParameters.manageLabelPermissionsRequestInner, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
88412
|
+
}
|
|
88413
|
+
/**
|
|
88414
|
+
*
|
|
88141
88415
|
* @summary Manage Permissions for a Dashboard
|
|
88142
88416
|
* @param {AxiosInstance} axios Axios instance.
|
|
88143
88417
|
* @param {string} basePath Base path.
|
|
@@ -88163,6 +88437,32 @@ async function ActionsApi_ManageDataSourcePermissions(axios, basePath, requestPa
|
|
|
88163
88437
|
return createRequestFunction$6(await ActionsApiAxiosParamCreator_ManageDataSourcePermissions(requestParameters.dataSourceId, requestParameters.dataSourcePermissionAssignment, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
88164
88438
|
}
|
|
88165
88439
|
/**
|
|
88440
|
+
*
|
|
88441
|
+
* @summary Manage Permissions for a Fact
|
|
88442
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
88443
|
+
* @param {string} basePath Base path.
|
|
88444
|
+
* @param {ActionsApiManageFactPermissionsRequest} requestParameters Request parameters.
|
|
88445
|
+
* @param {*} [options] Override http request option.
|
|
88446
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
88447
|
+
* @throws {RequiredError}
|
|
88448
|
+
*/
|
|
88449
|
+
async function ActionsApi_ManageFactPermissions(axios, basePath, requestParameters, options, configuration) {
|
|
88450
|
+
return createRequestFunction$6(await ActionsApiAxiosParamCreator_ManageFactPermissions(requestParameters.workspaceId, requestParameters.factId, requestParameters.manageLabelPermissionsRequestInner, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
88451
|
+
}
|
|
88452
|
+
/**
|
|
88453
|
+
*
|
|
88454
|
+
* @summary Manage Permissions for a Label
|
|
88455
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
88456
|
+
* @param {string} basePath Base path.
|
|
88457
|
+
* @param {ActionsApiManageLabelPermissionsRequest} requestParameters Request parameters.
|
|
88458
|
+
* @param {*} [options] Override http request option.
|
|
88459
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
88460
|
+
* @throws {RequiredError}
|
|
88461
|
+
*/
|
|
88462
|
+
async function ActionsApi_ManageLabelPermissions(axios, basePath, requestParameters, options, configuration) {
|
|
88463
|
+
return createRequestFunction$6(await ActionsApiAxiosParamCreator_ManageLabelPermissions(requestParameters.workspaceId, requestParameters.labelId, requestParameters.manageLabelPermissionsRequestInner, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
88464
|
+
}
|
|
88465
|
+
/**
|
|
88166
88466
|
* Manage Permissions for a Organization
|
|
88167
88467
|
* @summary Manage Permissions for a Organization
|
|
88168
88468
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -88553,6 +88853,17 @@ var ActionsApi$4 = class extends BaseAPI$6 {
|
|
|
88553
88853
|
}
|
|
88554
88854
|
/**
|
|
88555
88855
|
*
|
|
88856
|
+
* @summary Get Attribute Permissions
|
|
88857
|
+
* @param {ActionsApiAttributePermissionsRequest} requestParameters Request parameters.
|
|
88858
|
+
* @param {*} [options] Override http request option.
|
|
88859
|
+
* @throws {RequiredError}
|
|
88860
|
+
* @memberof ActionsApi
|
|
88861
|
+
*/
|
|
88862
|
+
attributePermissions(requestParameters, options) {
|
|
88863
|
+
return ActionsApi_AttributePermissions(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
88864
|
+
}
|
|
88865
|
+
/**
|
|
88866
|
+
*
|
|
88556
88867
|
* @summary Get Available Assignees
|
|
88557
88868
|
* @param {ActionsApiAvailableAssigneesRequest} requestParameters Request parameters.
|
|
88558
88869
|
* @param {*} [options] Override http request option.
|
|
@@ -88618,6 +88929,17 @@ var ActionsApi$4 = class extends BaseAPI$6 {
|
|
|
88618
88929
|
return ActionsApi_DeleteWorkspaceAutomations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
88619
88930
|
}
|
|
88620
88931
|
/**
|
|
88932
|
+
*
|
|
88933
|
+
* @summary Get Fact Permissions
|
|
88934
|
+
* @param {ActionsApiFactPermissionsRequest} requestParameters Request parameters.
|
|
88935
|
+
* @param {*} [options] Override http request option.
|
|
88936
|
+
* @throws {RequiredError}
|
|
88937
|
+
* @memberof ActionsApi
|
|
88938
|
+
*/
|
|
88939
|
+
factPermissions(requestParameters, options) {
|
|
88940
|
+
return ActionsApi_FactPermissions(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
88941
|
+
}
|
|
88942
|
+
/**
|
|
88621
88943
|
* Generate logical data model (LDM) from physical data model (PDM) stored in data source.
|
|
88622
88944
|
* @summary Generate logical data model (LDM) from physical data model (PDM)
|
|
88623
88945
|
* @param {ActionsApiGenerateLogicalModelRequest} requestParameters Request parameters.
|
|
@@ -88685,6 +89007,17 @@ var ActionsApi$4 = class extends BaseAPI$6 {
|
|
|
88685
89007
|
}
|
|
88686
89008
|
/**
|
|
88687
89009
|
*
|
|
89010
|
+
* @summary Get Label Permissions
|
|
89011
|
+
* @param {ActionsApiLabelPermissionsRequest} requestParameters Request parameters.
|
|
89012
|
+
* @param {*} [options] Override http request option.
|
|
89013
|
+
* @throws {RequiredError}
|
|
89014
|
+
* @memberof ActionsApi
|
|
89015
|
+
*/
|
|
89016
|
+
labelPermissions(requestParameters, options) {
|
|
89017
|
+
return ActionsApi_LabelPermissions(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
89018
|
+
}
|
|
89019
|
+
/**
|
|
89020
|
+
*
|
|
88688
89021
|
* @param {ActionsApiListWorkspaceUserGroupsRequest} requestParameters Request parameters.
|
|
88689
89022
|
* @param {*} [options] Override http request option.
|
|
88690
89023
|
* @throws {RequiredError}
|
|
@@ -88705,6 +89038,17 @@ var ActionsApi$4 = class extends BaseAPI$6 {
|
|
|
88705
89038
|
}
|
|
88706
89039
|
/**
|
|
88707
89040
|
*
|
|
89041
|
+
* @summary Manage Permissions for an Attribute
|
|
89042
|
+
* @param {ActionsApiManageAttributePermissionsRequest} requestParameters Request parameters.
|
|
89043
|
+
* @param {*} [options] Override http request option.
|
|
89044
|
+
* @throws {RequiredError}
|
|
89045
|
+
* @memberof ActionsApi
|
|
89046
|
+
*/
|
|
89047
|
+
manageAttributePermissions(requestParameters, options) {
|
|
89048
|
+
return ActionsApi_ManageAttributePermissions(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
89049
|
+
}
|
|
89050
|
+
/**
|
|
89051
|
+
*
|
|
88708
89052
|
* @summary Manage Permissions for a Dashboard
|
|
88709
89053
|
* @param {ActionsApiManageDashboardPermissionsRequest} requestParameters Request parameters.
|
|
88710
89054
|
* @param {*} [options] Override http request option.
|
|
@@ -88726,6 +89070,28 @@ var ActionsApi$4 = class extends BaseAPI$6 {
|
|
|
88726
89070
|
return ActionsApi_ManageDataSourcePermissions(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
88727
89071
|
}
|
|
88728
89072
|
/**
|
|
89073
|
+
*
|
|
89074
|
+
* @summary Manage Permissions for a Fact
|
|
89075
|
+
* @param {ActionsApiManageFactPermissionsRequest} requestParameters Request parameters.
|
|
89076
|
+
* @param {*} [options] Override http request option.
|
|
89077
|
+
* @throws {RequiredError}
|
|
89078
|
+
* @memberof ActionsApi
|
|
89079
|
+
*/
|
|
89080
|
+
manageFactPermissions(requestParameters, options) {
|
|
89081
|
+
return ActionsApi_ManageFactPermissions(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
89082
|
+
}
|
|
89083
|
+
/**
|
|
89084
|
+
*
|
|
89085
|
+
* @summary Manage Permissions for a Label
|
|
89086
|
+
* @param {ActionsApiManageLabelPermissionsRequest} requestParameters Request parameters.
|
|
89087
|
+
* @param {*} [options] Override http request option.
|
|
89088
|
+
* @throws {RequiredError}
|
|
89089
|
+
* @memberof ActionsApi
|
|
89090
|
+
*/
|
|
89091
|
+
manageLabelPermissions(requestParameters, options) {
|
|
89092
|
+
return ActionsApi_ManageLabelPermissions(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
89093
|
+
}
|
|
89094
|
+
/**
|
|
88729
89095
|
* Manage Permissions for a Organization
|
|
88730
89096
|
* @summary Manage Permissions for a Organization
|
|
88731
89097
|
* @param {ActionsApiManageOrganizationPermissionsRequest} requestParameters Request parameters.
|
|
@@ -89032,6 +89398,35 @@ var ActionsApi$4 = class extends BaseAPI$6 {
|
|
|
89032
89398
|
}
|
|
89033
89399
|
};
|
|
89034
89400
|
/**
|
|
89401
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
89402
|
+
* @summary Post LLM endpoint entities (Removed)
|
|
89403
|
+
* @param {*} [options] Override http request option.
|
|
89404
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
89405
|
+
* @throws {RequiredError}
|
|
89406
|
+
*/
|
|
89407
|
+
async function EntitiesApiAxiosParamCreator_CreateEntity(options = {}, configuration) {
|
|
89408
|
+
const localVarUrlObj = new URL(`/api/v1/entities/llmEndpoints`, DUMMY_BASE_URL$6);
|
|
89409
|
+
let baseOptions;
|
|
89410
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
89411
|
+
const localVarRequestOptions = {
|
|
89412
|
+
method: "POST",
|
|
89413
|
+
...baseOptions,
|
|
89414
|
+
...options
|
|
89415
|
+
};
|
|
89416
|
+
const localVarHeaderParameter = {};
|
|
89417
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
89418
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
89419
|
+
localVarRequestOptions.headers = {
|
|
89420
|
+
...localVarHeaderParameter,
|
|
89421
|
+
...headersFromBaseOptions,
|
|
89422
|
+
...options.headers
|
|
89423
|
+
};
|
|
89424
|
+
return {
|
|
89425
|
+
url: toPathString$6(localVarUrlObj),
|
|
89426
|
+
options: localVarRequestOptions
|
|
89427
|
+
};
|
|
89428
|
+
}
|
|
89429
|
+
/**
|
|
89035
89430
|
* AI Agent - behavior configuration for AI assistants
|
|
89036
89431
|
* @summary Post Agent entities
|
|
89037
89432
|
* @param {JsonApiAgentInDocument} jsonApiAgentInDocument
|
|
@@ -89803,41 +90198,6 @@ async function EntitiesApiAxiosParamCreator_CreateEntityKnowledgeRecommendations
|
|
|
89803
90198
|
};
|
|
89804
90199
|
}
|
|
89805
90200
|
/**
|
|
89806
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
89807
|
-
* @summary Post LLM endpoint entities
|
|
89808
|
-
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
89809
|
-
* @param {*} [options] Override http request option.
|
|
89810
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
89811
|
-
* @throws {RequiredError}
|
|
89812
|
-
*/
|
|
89813
|
-
async function EntitiesApiAxiosParamCreator_CreateEntityLlmEndpoints(jsonApiLlmEndpointInDocument, options = {}, configuration) {
|
|
89814
|
-
assertParamExists$6("createEntityLlmEndpoints", "jsonApiLlmEndpointInDocument", jsonApiLlmEndpointInDocument);
|
|
89815
|
-
const localVarUrlObj = new URL(`/api/v1/entities/llmEndpoints`, DUMMY_BASE_URL$6);
|
|
89816
|
-
let baseOptions;
|
|
89817
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
89818
|
-
const localVarRequestOptions = {
|
|
89819
|
-
method: "POST",
|
|
89820
|
-
...baseOptions,
|
|
89821
|
-
...options
|
|
89822
|
-
};
|
|
89823
|
-
const localVarHeaderParameter = {};
|
|
89824
|
-
const localVarQueryParameter = {};
|
|
89825
|
-
const consumes = ["application/vnd.gooddata.api+json", "application/json"];
|
|
89826
|
-
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
89827
|
-
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
89828
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
89829
|
-
localVarRequestOptions.headers = {
|
|
89830
|
-
...localVarHeaderParameter,
|
|
89831
|
-
...headersFromBaseOptions,
|
|
89832
|
-
...options.headers
|
|
89833
|
-
};
|
|
89834
|
-
localVarRequestOptions.data = typeof jsonApiLlmEndpointInDocument !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(jsonApiLlmEndpointInDocument !== void 0 ? jsonApiLlmEndpointInDocument : {}) : jsonApiLlmEndpointInDocument || "";
|
|
89835
|
-
return {
|
|
89836
|
-
url: toPathString$6(localVarUrlObj),
|
|
89837
|
-
options: localVarRequestOptions
|
|
89838
|
-
};
|
|
89839
|
-
}
|
|
89840
|
-
/**
|
|
89841
90201
|
* LLM Provider - connection configuration for LLM services
|
|
89842
90202
|
* @summary Post LLM Provider entities
|
|
89843
90203
|
* @param {JsonApiLlmProviderInDocument} jsonApiLlmProviderInDocument
|
|
@@ -90463,6 +90823,38 @@ async function EntitiesApiAxiosParamCreator_CreateEntityWorkspaces(jsonApiWorksp
|
|
|
90463
90823
|
};
|
|
90464
90824
|
}
|
|
90465
90825
|
/**
|
|
90826
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
90827
|
+
* @summary Delete LLM endpoint entity (Removed)
|
|
90828
|
+
* @param {string} id
|
|
90829
|
+
* @param {*} [options] Override http request option.
|
|
90830
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
90831
|
+
* @throws {RequiredError}
|
|
90832
|
+
*/
|
|
90833
|
+
async function EntitiesApiAxiosParamCreator_DeleteEntity(id, options = {}, configuration) {
|
|
90834
|
+
assertParamExists$6("deleteEntity", "id", id);
|
|
90835
|
+
const localVarPath = `/api/v1/entities/llmEndpoints/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
90836
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
90837
|
+
let baseOptions;
|
|
90838
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
90839
|
+
const localVarRequestOptions = {
|
|
90840
|
+
method: "DELETE",
|
|
90841
|
+
...baseOptions,
|
|
90842
|
+
...options
|
|
90843
|
+
};
|
|
90844
|
+
const localVarHeaderParameter = {};
|
|
90845
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
90846
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
90847
|
+
localVarRequestOptions.headers = {
|
|
90848
|
+
...localVarHeaderParameter,
|
|
90849
|
+
...headersFromBaseOptions,
|
|
90850
|
+
...options.headers
|
|
90851
|
+
};
|
|
90852
|
+
return {
|
|
90853
|
+
url: toPathString$6(localVarUrlObj),
|
|
90854
|
+
options: localVarRequestOptions
|
|
90855
|
+
};
|
|
90856
|
+
}
|
|
90857
|
+
/**
|
|
90466
90858
|
*
|
|
90467
90859
|
* @summary Delete Agent entity
|
|
90468
90860
|
* @param {string} id
|
|
@@ -91125,38 +91517,6 @@ async function EntitiesApiAxiosParamCreator_DeleteEntityKnowledgeRecommendations
|
|
|
91125
91517
|
};
|
|
91126
91518
|
}
|
|
91127
91519
|
/**
|
|
91128
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
91129
|
-
* @summary Delete LLM endpoint entity
|
|
91130
|
-
* @param {string} id
|
|
91131
|
-
* @param {*} [options] Override http request option.
|
|
91132
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
91133
|
-
* @throws {RequiredError}
|
|
91134
|
-
*/
|
|
91135
|
-
async function EntitiesApiAxiosParamCreator_DeleteEntityLlmEndpoints(id, options = {}, configuration) {
|
|
91136
|
-
assertParamExists$6("deleteEntityLlmEndpoints", "id", id);
|
|
91137
|
-
const localVarPath = `/api/v1/entities/llmEndpoints/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
91138
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
91139
|
-
let baseOptions;
|
|
91140
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
91141
|
-
const localVarRequestOptions = {
|
|
91142
|
-
method: "DELETE",
|
|
91143
|
-
...baseOptions,
|
|
91144
|
-
...options
|
|
91145
|
-
};
|
|
91146
|
-
const localVarHeaderParameter = {};
|
|
91147
|
-
setSearchParams$6(localVarUrlObj, {});
|
|
91148
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
91149
|
-
localVarRequestOptions.headers = {
|
|
91150
|
-
...localVarHeaderParameter,
|
|
91151
|
-
...headersFromBaseOptions,
|
|
91152
|
-
...options.headers
|
|
91153
|
-
};
|
|
91154
|
-
return {
|
|
91155
|
-
url: toPathString$6(localVarUrlObj),
|
|
91156
|
-
options: localVarRequestOptions
|
|
91157
|
-
};
|
|
91158
|
-
}
|
|
91159
|
-
/**
|
|
91160
91520
|
*
|
|
91161
91521
|
* @summary Delete LLM Provider entity
|
|
91162
91522
|
* @param {string} id
|
|
@@ -91729,6 +92089,35 @@ async function EntitiesApiAxiosParamCreator_GetAllAutomationsWorkspaceAutomation
|
|
|
91729
92089
|
};
|
|
91730
92090
|
}
|
|
91731
92091
|
/**
|
|
92092
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
92093
|
+
* @summary Get all LLM endpoint entities (Removed)
|
|
92094
|
+
* @param {*} [options] Override http request option.
|
|
92095
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
92096
|
+
* @throws {RequiredError}
|
|
92097
|
+
*/
|
|
92098
|
+
async function EntitiesApiAxiosParamCreator_GetAllEntities(options = {}, configuration) {
|
|
92099
|
+
const localVarUrlObj = new URL(`/api/v1/entities/llmEndpoints`, DUMMY_BASE_URL$6);
|
|
92100
|
+
let baseOptions;
|
|
92101
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
92102
|
+
const localVarRequestOptions = {
|
|
92103
|
+
method: "GET",
|
|
92104
|
+
...baseOptions,
|
|
92105
|
+
...options
|
|
92106
|
+
};
|
|
92107
|
+
const localVarHeaderParameter = {};
|
|
92108
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
92109
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
92110
|
+
localVarRequestOptions.headers = {
|
|
92111
|
+
...localVarHeaderParameter,
|
|
92112
|
+
...headersFromBaseOptions,
|
|
92113
|
+
...options.headers
|
|
92114
|
+
};
|
|
92115
|
+
return {
|
|
92116
|
+
url: toPathString$6(localVarUrlObj),
|
|
92117
|
+
options: localVarRequestOptions
|
|
92118
|
+
};
|
|
92119
|
+
}
|
|
92120
|
+
/**
|
|
91732
92121
|
*
|
|
91733
92122
|
* @summary Get all Agent entities
|
|
91734
92123
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
@@ -92943,46 +93332,6 @@ async function EntitiesApiAxiosParamCreator_GetAllEntitiesLabels(workspaceId, or
|
|
|
92943
93332
|
};
|
|
92944
93333
|
}
|
|
92945
93334
|
/**
|
|
92946
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
92947
|
-
* @summary Get all LLM endpoint entities
|
|
92948
|
-
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
92949
|
-
* @param {number} [page] Zero-based page index (0..N)
|
|
92950
|
-
* @param {number} [size] The size of the page to be returned
|
|
92951
|
-
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
92952
|
-
* @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
92953
|
-
* @param {*} [options] Override http request option.
|
|
92954
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
92955
|
-
* @throws {RequiredError}
|
|
92956
|
-
*/
|
|
92957
|
-
async function EntitiesApiAxiosParamCreator_GetAllEntitiesLlmEndpoints(filter, page, size, sort, metaInclude, options = {}, configuration) {
|
|
92958
|
-
const localVarUrlObj = new URL(`/api/v1/entities/llmEndpoints`, DUMMY_BASE_URL$6);
|
|
92959
|
-
let baseOptions;
|
|
92960
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
92961
|
-
const localVarRequestOptions = {
|
|
92962
|
-
method: "GET",
|
|
92963
|
-
...baseOptions,
|
|
92964
|
-
...options
|
|
92965
|
-
};
|
|
92966
|
-
const localVarHeaderParameter = {};
|
|
92967
|
-
const localVarQueryParameter = {};
|
|
92968
|
-
if (filter !== void 0) localVarQueryParameter["filter"] = filter;
|
|
92969
|
-
if (page !== void 0) localVarQueryParameter["page"] = page;
|
|
92970
|
-
if (size !== void 0) localVarQueryParameter["size"] = size;
|
|
92971
|
-
if (sort) localVarQueryParameter["sort"] = sort;
|
|
92972
|
-
if (metaInclude) localVarQueryParameter["metaInclude"] = Array.from(metaInclude).join(COLLECTION_FORMATS$1.csv);
|
|
92973
|
-
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
92974
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
92975
|
-
localVarRequestOptions.headers = {
|
|
92976
|
-
...localVarHeaderParameter,
|
|
92977
|
-
...headersFromBaseOptions,
|
|
92978
|
-
...options.headers
|
|
92979
|
-
};
|
|
92980
|
-
return {
|
|
92981
|
-
url: toPathString$6(localVarUrlObj),
|
|
92982
|
-
options: localVarRequestOptions
|
|
92983
|
-
};
|
|
92984
|
-
}
|
|
92985
|
-
/**
|
|
92986
93335
|
*
|
|
92987
93336
|
* @summary Get all LLM Provider entities
|
|
92988
93337
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
@@ -93840,6 +94189,38 @@ async function EntitiesApiAxiosParamCreator_GetDataSourceDrivers(options = {}, c
|
|
|
93840
94189
|
};
|
|
93841
94190
|
}
|
|
93842
94191
|
/**
|
|
94192
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
94193
|
+
* @summary Get LLM endpoint entity (Removed)
|
|
94194
|
+
* @param {string} id
|
|
94195
|
+
* @param {*} [options] Override http request option.
|
|
94196
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
94197
|
+
* @throws {RequiredError}
|
|
94198
|
+
*/
|
|
94199
|
+
async function EntitiesApiAxiosParamCreator_GetEntity(id, options = {}, configuration) {
|
|
94200
|
+
assertParamExists$6("getEntity", "id", id);
|
|
94201
|
+
const localVarPath = `/api/v1/entities/llmEndpoints/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
94202
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
94203
|
+
let baseOptions;
|
|
94204
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
94205
|
+
const localVarRequestOptions = {
|
|
94206
|
+
method: "GET",
|
|
94207
|
+
...baseOptions,
|
|
94208
|
+
...options
|
|
94209
|
+
};
|
|
94210
|
+
const localVarHeaderParameter = {};
|
|
94211
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
94212
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
94213
|
+
localVarRequestOptions.headers = {
|
|
94214
|
+
...localVarHeaderParameter,
|
|
94215
|
+
...headersFromBaseOptions,
|
|
94216
|
+
...options.headers
|
|
94217
|
+
};
|
|
94218
|
+
return {
|
|
94219
|
+
url: toPathString$6(localVarUrlObj),
|
|
94220
|
+
options: localVarRequestOptions
|
|
94221
|
+
};
|
|
94222
|
+
}
|
|
94223
|
+
/**
|
|
93843
94224
|
*
|
|
93844
94225
|
* @summary Get Agent entity
|
|
93845
94226
|
* @param {string} id
|
|
@@ -94940,41 +95321,6 @@ async function EntitiesApiAxiosParamCreator_GetEntityLabels(workspaceId, objectI
|
|
|
94940
95321
|
};
|
|
94941
95322
|
}
|
|
94942
95323
|
/**
|
|
94943
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
94944
|
-
* @summary Get LLM endpoint entity
|
|
94945
|
-
* @param {string} id
|
|
94946
|
-
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
94947
|
-
* @param {*} [options] Override http request option.
|
|
94948
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
94949
|
-
* @throws {RequiredError}
|
|
94950
|
-
*/
|
|
94951
|
-
async function EntitiesApiAxiosParamCreator_GetEntityLlmEndpoints(id, filter, options = {}, configuration) {
|
|
94952
|
-
assertParamExists$6("getEntityLlmEndpoints", "id", id);
|
|
94953
|
-
const localVarPath = `/api/v1/entities/llmEndpoints/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
94954
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
94955
|
-
let baseOptions;
|
|
94956
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
94957
|
-
const localVarRequestOptions = {
|
|
94958
|
-
method: "GET",
|
|
94959
|
-
...baseOptions,
|
|
94960
|
-
...options
|
|
94961
|
-
};
|
|
94962
|
-
const localVarHeaderParameter = {};
|
|
94963
|
-
const localVarQueryParameter = {};
|
|
94964
|
-
if (filter !== void 0) localVarQueryParameter["filter"] = filter;
|
|
94965
|
-
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
94966
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
94967
|
-
localVarRequestOptions.headers = {
|
|
94968
|
-
...localVarHeaderParameter,
|
|
94969
|
-
...headersFromBaseOptions,
|
|
94970
|
-
...options.headers
|
|
94971
|
-
};
|
|
94972
|
-
return {
|
|
94973
|
-
url: toPathString$6(localVarUrlObj),
|
|
94974
|
-
options: localVarRequestOptions
|
|
94975
|
-
};
|
|
94976
|
-
}
|
|
94977
|
-
/**
|
|
94978
95324
|
*
|
|
94979
95325
|
* @summary Get LLM Provider entity
|
|
94980
95326
|
* @param {string} id
|
|
@@ -95748,6 +96094,38 @@ async function EntitiesApiAxiosParamCreator_GetOrganization(metaInclude, options
|
|
|
95748
96094
|
};
|
|
95749
96095
|
}
|
|
95750
96096
|
/**
|
|
96097
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
96098
|
+
* @summary Patch LLM endpoint entity (Removed)
|
|
96099
|
+
* @param {string} id
|
|
96100
|
+
* @param {*} [options] Override http request option.
|
|
96101
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
96102
|
+
* @throws {RequiredError}
|
|
96103
|
+
*/
|
|
96104
|
+
async function EntitiesApiAxiosParamCreator_PatchEntity(id, options = {}, configuration) {
|
|
96105
|
+
assertParamExists$6("patchEntity", "id", id);
|
|
96106
|
+
const localVarPath = `/api/v1/entities/llmEndpoints/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
96107
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
96108
|
+
let baseOptions;
|
|
96109
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
96110
|
+
const localVarRequestOptions = {
|
|
96111
|
+
method: "PATCH",
|
|
96112
|
+
...baseOptions,
|
|
96113
|
+
...options
|
|
96114
|
+
};
|
|
96115
|
+
const localVarHeaderParameter = {};
|
|
96116
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
96117
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
96118
|
+
localVarRequestOptions.headers = {
|
|
96119
|
+
...localVarHeaderParameter,
|
|
96120
|
+
...headersFromBaseOptions,
|
|
96121
|
+
...options.headers
|
|
96122
|
+
};
|
|
96123
|
+
return {
|
|
96124
|
+
url: toPathString$6(localVarUrlObj),
|
|
96125
|
+
options: localVarRequestOptions
|
|
96126
|
+
};
|
|
96127
|
+
}
|
|
96128
|
+
/**
|
|
95751
96129
|
*
|
|
95752
96130
|
* @summary Patch Agent entity
|
|
95753
96131
|
* @param {string} id
|
|
@@ -96680,46 +97058,6 @@ async function EntitiesApiAxiosParamCreator_PatchEntityLabels(workspaceId, objec
|
|
|
96680
97058
|
};
|
|
96681
97059
|
}
|
|
96682
97060
|
/**
|
|
96683
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
96684
|
-
* @summary Patch LLM endpoint entity
|
|
96685
|
-
* @param {string} id
|
|
96686
|
-
* @param {JsonApiLlmEndpointPatchDocument} jsonApiLlmEndpointPatchDocument
|
|
96687
|
-
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
96688
|
-
* @param {*} [options] Override http request option.
|
|
96689
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
96690
|
-
* @throws {RequiredError}
|
|
96691
|
-
*/
|
|
96692
|
-
async function EntitiesApiAxiosParamCreator_PatchEntityLlmEndpoints(id, jsonApiLlmEndpointPatchDocument, filter, options = {}, configuration) {
|
|
96693
|
-
assertParamExists$6("patchEntityLlmEndpoints", "id", id);
|
|
96694
|
-
assertParamExists$6("patchEntityLlmEndpoints", "jsonApiLlmEndpointPatchDocument", jsonApiLlmEndpointPatchDocument);
|
|
96695
|
-
const localVarPath = `/api/v1/entities/llmEndpoints/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
96696
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
96697
|
-
let baseOptions;
|
|
96698
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
96699
|
-
const localVarRequestOptions = {
|
|
96700
|
-
method: "PATCH",
|
|
96701
|
-
...baseOptions,
|
|
96702
|
-
...options
|
|
96703
|
-
};
|
|
96704
|
-
const localVarHeaderParameter = {};
|
|
96705
|
-
const localVarQueryParameter = {};
|
|
96706
|
-
if (filter !== void 0) localVarQueryParameter["filter"] = filter;
|
|
96707
|
-
const consumes = ["application/vnd.gooddata.api+json", "application/json"];
|
|
96708
|
-
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
96709
|
-
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
96710
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
96711
|
-
localVarRequestOptions.headers = {
|
|
96712
|
-
...localVarHeaderParameter,
|
|
96713
|
-
...headersFromBaseOptions,
|
|
96714
|
-
...options.headers
|
|
96715
|
-
};
|
|
96716
|
-
localVarRequestOptions.data = typeof jsonApiLlmEndpointPatchDocument !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(jsonApiLlmEndpointPatchDocument !== void 0 ? jsonApiLlmEndpointPatchDocument : {}) : jsonApiLlmEndpointPatchDocument || "";
|
|
96717
|
-
return {
|
|
96718
|
-
url: toPathString$6(localVarUrlObj),
|
|
96719
|
-
options: localVarRequestOptions
|
|
96720
|
-
};
|
|
96721
|
-
}
|
|
96722
|
-
/**
|
|
96723
97061
|
*
|
|
96724
97062
|
* @summary Patch LLM Provider entity
|
|
96725
97063
|
* @param {string} id
|
|
@@ -98364,6 +98702,38 @@ async function EntitiesApiAxiosParamCreator_SearchEntitiesWorkspaceSettings(work
|
|
|
98364
98702
|
};
|
|
98365
98703
|
}
|
|
98366
98704
|
/**
|
|
98705
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
98706
|
+
* @summary PUT LLM endpoint entity (Removed)
|
|
98707
|
+
* @param {string} id
|
|
98708
|
+
* @param {*} [options] Override http request option.
|
|
98709
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
98710
|
+
* @throws {RequiredError}
|
|
98711
|
+
*/
|
|
98712
|
+
async function EntitiesApiAxiosParamCreator_UpdateEntity(id, options = {}, configuration) {
|
|
98713
|
+
assertParamExists$6("updateEntity", "id", id);
|
|
98714
|
+
const localVarPath = `/api/v1/entities/llmEndpoints/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
98715
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
98716
|
+
let baseOptions;
|
|
98717
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
98718
|
+
const localVarRequestOptions = {
|
|
98719
|
+
method: "PUT",
|
|
98720
|
+
...baseOptions,
|
|
98721
|
+
...options
|
|
98722
|
+
};
|
|
98723
|
+
const localVarHeaderParameter = {};
|
|
98724
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
98725
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
98726
|
+
localVarRequestOptions.headers = {
|
|
98727
|
+
...localVarHeaderParameter,
|
|
98728
|
+
...headersFromBaseOptions,
|
|
98729
|
+
...options.headers
|
|
98730
|
+
};
|
|
98731
|
+
return {
|
|
98732
|
+
url: toPathString$6(localVarUrlObj),
|
|
98733
|
+
options: localVarRequestOptions
|
|
98734
|
+
};
|
|
98735
|
+
}
|
|
98736
|
+
/**
|
|
98367
98737
|
*
|
|
98368
98738
|
* @summary Put Agent entity
|
|
98369
98739
|
* @param {string} id
|
|
@@ -99204,46 +99574,6 @@ async function EntitiesApiAxiosParamCreator_UpdateEntityKnowledgeRecommendations
|
|
|
99204
99574
|
};
|
|
99205
99575
|
}
|
|
99206
99576
|
/**
|
|
99207
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
99208
|
-
* @summary PUT LLM endpoint entity
|
|
99209
|
-
* @param {string} id
|
|
99210
|
-
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
99211
|
-
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
99212
|
-
* @param {*} [options] Override http request option.
|
|
99213
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
99214
|
-
* @throws {RequiredError}
|
|
99215
|
-
*/
|
|
99216
|
-
async function EntitiesApiAxiosParamCreator_UpdateEntityLlmEndpoints(id, jsonApiLlmEndpointInDocument, filter, options = {}, configuration) {
|
|
99217
|
-
assertParamExists$6("updateEntityLlmEndpoints", "id", id);
|
|
99218
|
-
assertParamExists$6("updateEntityLlmEndpoints", "jsonApiLlmEndpointInDocument", jsonApiLlmEndpointInDocument);
|
|
99219
|
-
const localVarPath = `/api/v1/entities/llmEndpoints/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
99220
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
99221
|
-
let baseOptions;
|
|
99222
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
99223
|
-
const localVarRequestOptions = {
|
|
99224
|
-
method: "PUT",
|
|
99225
|
-
...baseOptions,
|
|
99226
|
-
...options
|
|
99227
|
-
};
|
|
99228
|
-
const localVarHeaderParameter = {};
|
|
99229
|
-
const localVarQueryParameter = {};
|
|
99230
|
-
if (filter !== void 0) localVarQueryParameter["filter"] = filter;
|
|
99231
|
-
const consumes = ["application/vnd.gooddata.api+json", "application/json"];
|
|
99232
|
-
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
99233
|
-
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
99234
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
99235
|
-
localVarRequestOptions.headers = {
|
|
99236
|
-
...localVarHeaderParameter,
|
|
99237
|
-
...headersFromBaseOptions,
|
|
99238
|
-
...options.headers
|
|
99239
|
-
};
|
|
99240
|
-
localVarRequestOptions.data = typeof jsonApiLlmEndpointInDocument !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(jsonApiLlmEndpointInDocument !== void 0 ? jsonApiLlmEndpointInDocument : {}) : jsonApiLlmEndpointInDocument || "";
|
|
99241
|
-
return {
|
|
99242
|
-
url: toPathString$6(localVarUrlObj),
|
|
99243
|
-
options: localVarRequestOptions
|
|
99244
|
-
};
|
|
99245
|
-
}
|
|
99246
|
-
/**
|
|
99247
99577
|
*
|
|
99248
99578
|
* @summary PUT LLM Provider entity
|
|
99249
99579
|
* @param {string} id
|
|
@@ -99964,6 +100294,18 @@ async function EntitiesApiAxiosParamCreator_UpdateEntityWorkspaces(id, jsonApiWo
|
|
|
99964
100294
|
};
|
|
99965
100295
|
}
|
|
99966
100296
|
/**
|
|
100297
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
100298
|
+
* @summary Post LLM endpoint entities (Removed)
|
|
100299
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
100300
|
+
* @param {string} basePath Base path.
|
|
100301
|
+
* @param {*} [options] Override http request option.
|
|
100302
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
100303
|
+
* @throws {RequiredError}
|
|
100304
|
+
*/
|
|
100305
|
+
async function EntitiesApi_CreateEntity(axios, basePath, options, configuration) {
|
|
100306
|
+
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_CreateEntity(options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
100307
|
+
}
|
|
100308
|
+
/**
|
|
99967
100309
|
* AI Agent - behavior configuration for AI assistants
|
|
99968
100310
|
* @summary Post Agent entities
|
|
99969
100311
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -100224,19 +100566,6 @@ async function EntitiesApi_CreateEntityKnowledgeRecommendations(axios, basePath,
|
|
|
100224
100566
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_CreateEntityKnowledgeRecommendations(requestParameters.workspaceId, requestParameters.jsonApiKnowledgeRecommendationPostOptionalIdDocument, requestParameters.include, requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
100225
100567
|
}
|
|
100226
100568
|
/**
|
|
100227
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
100228
|
-
* @summary Post LLM endpoint entities
|
|
100229
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
100230
|
-
* @param {string} basePath Base path.
|
|
100231
|
-
* @param {EntitiesApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
100232
|
-
* @param {*} [options] Override http request option.
|
|
100233
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
100234
|
-
* @throws {RequiredError}
|
|
100235
|
-
*/
|
|
100236
|
-
async function EntitiesApi_CreateEntityLlmEndpoints(axios, basePath, requestParameters, options, configuration) {
|
|
100237
|
-
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_CreateEntityLlmEndpoints(requestParameters.jsonApiLlmEndpointInDocument, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
100238
|
-
}
|
|
100239
|
-
/**
|
|
100240
100569
|
* LLM Provider - connection configuration for LLM services
|
|
100241
100570
|
* @summary Post LLM Provider entities
|
|
100242
100571
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -100445,6 +100774,19 @@ async function EntitiesApi_CreateEntityWorkspaces(axios, basePath, requestParame
|
|
|
100445
100774
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_CreateEntityWorkspaces(requestParameters.jsonApiWorkspaceInDocument, requestParameters.include, requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
100446
100775
|
}
|
|
100447
100776
|
/**
|
|
100777
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
100778
|
+
* @summary Delete LLM endpoint entity (Removed)
|
|
100779
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
100780
|
+
* @param {string} basePath Base path.
|
|
100781
|
+
* @param {EntitiesApiDeleteEntityRequest} requestParameters Request parameters.
|
|
100782
|
+
* @param {*} [options] Override http request option.
|
|
100783
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
100784
|
+
* @throws {RequiredError}
|
|
100785
|
+
*/
|
|
100786
|
+
async function EntitiesApi_DeleteEntity(axios, basePath, requestParameters, options, configuration) {
|
|
100787
|
+
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_DeleteEntity(requestParameters.id, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
100788
|
+
}
|
|
100789
|
+
/**
|
|
100448
100790
|
*
|
|
100449
100791
|
* @summary Delete Agent entity
|
|
100450
100792
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -100705,19 +101047,6 @@ async function EntitiesApi_DeleteEntityKnowledgeRecommendations(axios, basePath,
|
|
|
100705
101047
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_DeleteEntityKnowledgeRecommendations(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
100706
101048
|
}
|
|
100707
101049
|
/**
|
|
100708
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
100709
|
-
* @summary Delete LLM endpoint entity
|
|
100710
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
100711
|
-
* @param {string} basePath Base path.
|
|
100712
|
-
* @param {EntitiesApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
100713
|
-
* @param {*} [options] Override http request option.
|
|
100714
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
100715
|
-
* @throws {RequiredError}
|
|
100716
|
-
*/
|
|
100717
|
-
async function EntitiesApi_DeleteEntityLlmEndpoints(axios, basePath, requestParameters, options, configuration) {
|
|
100718
|
-
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_DeleteEntityLlmEndpoints(requestParameters.id, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
100719
|
-
}
|
|
100720
|
-
/**
|
|
100721
101050
|
*
|
|
100722
101051
|
* @summary Delete LLM Provider entity
|
|
100723
101052
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -100939,6 +101268,18 @@ async function EntitiesApi_GetAllAutomationsWorkspaceAutomations(axios, basePath
|
|
|
100939
101268
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_GetAllAutomationsWorkspaceAutomations(requestParameters.filter, requestParameters.include, requestParameters.page, requestParameters.size, requestParameters.sort, requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
100940
101269
|
}
|
|
100941
101270
|
/**
|
|
101271
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
101272
|
+
* @summary Get all LLM endpoint entities (Removed)
|
|
101273
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
101274
|
+
* @param {string} basePath Base path.
|
|
101275
|
+
* @param {*} [options] Override http request option.
|
|
101276
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
101277
|
+
* @throws {RequiredError}
|
|
101278
|
+
*/
|
|
101279
|
+
async function EntitiesApi_GetAllEntities(axios, basePath, options, configuration) {
|
|
101280
|
+
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_GetAllEntities(options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
101281
|
+
}
|
|
101282
|
+
/**
|
|
100942
101283
|
*
|
|
100943
101284
|
* @summary Get all Agent entities
|
|
100944
101285
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -101290,19 +101631,6 @@ async function EntitiesApi_GetAllEntitiesLabels(axios, basePath, requestParamete
|
|
|
101290
101631
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_GetAllEntitiesLabels(requestParameters.workspaceId, requestParameters.origin, requestParameters.filter, requestParameters.include, requestParameters.page, requestParameters.size, requestParameters.sort, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
101291
101632
|
}
|
|
101292
101633
|
/**
|
|
101293
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
101294
|
-
* @summary Get all LLM endpoint entities
|
|
101295
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
101296
|
-
* @param {string} basePath Base path.
|
|
101297
|
-
* @param {EntitiesApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
101298
|
-
* @param {*} [options] Override http request option.
|
|
101299
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
101300
|
-
* @throws {RequiredError}
|
|
101301
|
-
*/
|
|
101302
|
-
async function EntitiesApi_GetAllEntitiesLlmEndpoints(axios, basePath, requestParameters, options, configuration) {
|
|
101303
|
-
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_GetAllEntitiesLlmEndpoints(requestParameters.filter, requestParameters.page, requestParameters.size, requestParameters.sort, requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
101304
|
-
}
|
|
101305
|
-
/**
|
|
101306
101634
|
*
|
|
101307
101635
|
* @summary Get all LLM Provider entities
|
|
101308
101636
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -101561,6 +101889,19 @@ async function EntitiesApi_GetDataSourceDrivers(axios, basePath, options, config
|
|
|
101561
101889
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_GetDataSourceDrivers(options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
101562
101890
|
}
|
|
101563
101891
|
/**
|
|
101892
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
101893
|
+
* @summary Get LLM endpoint entity (Removed)
|
|
101894
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
101895
|
+
* @param {string} basePath Base path.
|
|
101896
|
+
* @param {EntitiesApiGetEntityRequest} requestParameters Request parameters.
|
|
101897
|
+
* @param {*} [options] Override http request option.
|
|
101898
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
101899
|
+
* @throws {RequiredError}
|
|
101900
|
+
*/
|
|
101901
|
+
async function EntitiesApi_GetEntity(axios, basePath, requestParameters, options, configuration) {
|
|
101902
|
+
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_GetEntity(requestParameters.id, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
101903
|
+
}
|
|
101904
|
+
/**
|
|
101564
101905
|
*
|
|
101565
101906
|
* @summary Get Agent entity
|
|
101566
101907
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -101925,19 +102266,6 @@ async function EntitiesApi_GetEntityLabels(axios, basePath, requestParameters, o
|
|
|
101925
102266
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_GetEntityLabels(requestParameters.workspaceId, requestParameters.objectId, requestParameters.filter, requestParameters.include, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
101926
102267
|
}
|
|
101927
102268
|
/**
|
|
101928
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
101929
|
-
* @summary Get LLM endpoint entity
|
|
101930
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
101931
|
-
* @param {string} basePath Base path.
|
|
101932
|
-
* @param {EntitiesApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
101933
|
-
* @param {*} [options] Override http request option.
|
|
101934
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
101935
|
-
* @throws {RequiredError}
|
|
101936
|
-
*/
|
|
101937
|
-
async function EntitiesApi_GetEntityLlmEndpoints(axios, basePath, requestParameters, options, configuration) {
|
|
101938
|
-
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_GetEntityLlmEndpoints(requestParameters.id, requestParameters.filter, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
101939
|
-
}
|
|
101940
|
-
/**
|
|
101941
102269
|
*
|
|
101942
102270
|
* @summary Get LLM Provider entity
|
|
101943
102271
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -102198,6 +102526,19 @@ async function EntitiesApi_GetOrganization(axios, basePath, requestParameters, o
|
|
|
102198
102526
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_GetOrganization(requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
102199
102527
|
}
|
|
102200
102528
|
/**
|
|
102529
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
102530
|
+
* @summary Patch LLM endpoint entity (Removed)
|
|
102531
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
102532
|
+
* @param {string} basePath Base path.
|
|
102533
|
+
* @param {EntitiesApiPatchEntityRequest} requestParameters Request parameters.
|
|
102534
|
+
* @param {*} [options] Override http request option.
|
|
102535
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
102536
|
+
* @throws {RequiredError}
|
|
102537
|
+
*/
|
|
102538
|
+
async function EntitiesApi_PatchEntity(axios, basePath, requestParameters, options, configuration) {
|
|
102539
|
+
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_PatchEntity(requestParameters.id, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
102540
|
+
}
|
|
102541
|
+
/**
|
|
102201
102542
|
*
|
|
102202
102543
|
* @summary Patch Agent entity
|
|
102203
102544
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -102484,19 +102825,6 @@ async function EntitiesApi_PatchEntityLabels(axios, basePath, requestParameters,
|
|
|
102484
102825
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_PatchEntityLabels(requestParameters.workspaceId, requestParameters.objectId, requestParameters.jsonApiLabelPatchDocument, requestParameters.filter, requestParameters.include, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
102485
102826
|
}
|
|
102486
102827
|
/**
|
|
102487
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
102488
|
-
* @summary Patch LLM endpoint entity
|
|
102489
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
102490
|
-
* @param {string} basePath Base path.
|
|
102491
|
-
* @param {EntitiesApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
102492
|
-
* @param {*} [options] Override http request option.
|
|
102493
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
102494
|
-
* @throws {RequiredError}
|
|
102495
|
-
*/
|
|
102496
|
-
async function EntitiesApi_PatchEntityLlmEndpoints(axios, basePath, requestParameters, options, configuration) {
|
|
102497
|
-
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_PatchEntityLlmEndpoints(requestParameters.id, requestParameters.jsonApiLlmEndpointPatchDocument, requestParameters.filter, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
102498
|
-
}
|
|
102499
|
-
/**
|
|
102500
102828
|
*
|
|
102501
102829
|
* @summary Patch LLM Provider entity
|
|
102502
102830
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -103004,6 +103332,19 @@ async function EntitiesApi_SearchEntitiesWorkspaceSettings(axios, basePath, requ
|
|
|
103004
103332
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_SearchEntitiesWorkspaceSettings(requestParameters.workspaceId, requestParameters.entitySearchBody, requestParameters.origin, requestParameters.xGDCVALIDATERELATIONS, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
103005
103333
|
}
|
|
103006
103334
|
/**
|
|
103335
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
103336
|
+
* @summary PUT LLM endpoint entity (Removed)
|
|
103337
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
103338
|
+
* @param {string} basePath Base path.
|
|
103339
|
+
* @param {EntitiesApiUpdateEntityRequest} requestParameters Request parameters.
|
|
103340
|
+
* @param {*} [options] Override http request option.
|
|
103341
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
103342
|
+
* @throws {RequiredError}
|
|
103343
|
+
*/
|
|
103344
|
+
async function EntitiesApi_UpdateEntity(axios, basePath, requestParameters, options, configuration) {
|
|
103345
|
+
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_UpdateEntity(requestParameters.id, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
103346
|
+
}
|
|
103347
|
+
/**
|
|
103007
103348
|
*
|
|
103008
103349
|
* @summary Put Agent entity
|
|
103009
103350
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -103264,19 +103605,6 @@ async function EntitiesApi_UpdateEntityKnowledgeRecommendations(axios, basePath,
|
|
|
103264
103605
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_UpdateEntityKnowledgeRecommendations(requestParameters.workspaceId, requestParameters.objectId, requestParameters.jsonApiKnowledgeRecommendationInDocument, requestParameters.filter, requestParameters.include, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
103265
103606
|
}
|
|
103266
103607
|
/**
|
|
103267
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
103268
|
-
* @summary PUT LLM endpoint entity
|
|
103269
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
103270
|
-
* @param {string} basePath Base path.
|
|
103271
|
-
* @param {EntitiesApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
103272
|
-
* @param {*} [options] Override http request option.
|
|
103273
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
103274
|
-
* @throws {RequiredError}
|
|
103275
|
-
*/
|
|
103276
|
-
async function EntitiesApi_UpdateEntityLlmEndpoints(axios, basePath, requestParameters, options, configuration) {
|
|
103277
|
-
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_UpdateEntityLlmEndpoints(requestParameters.id, requestParameters.jsonApiLlmEndpointInDocument, requestParameters.filter, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
103278
|
-
}
|
|
103279
|
-
/**
|
|
103280
103608
|
*
|
|
103281
103609
|
* @summary PUT LLM Provider entity
|
|
103282
103610
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -103504,6 +103832,17 @@ async function EntitiesApi_UpdateEntityWorkspaces(axios, basePath, requestParame
|
|
|
103504
103832
|
* @extends {BaseAPI}
|
|
103505
103833
|
*/
|
|
103506
103834
|
var EntitiesApi = class extends BaseAPI$6 {
|
|
103835
|
+
/**
|
|
103836
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
103837
|
+
* @summary Post LLM endpoint entities (Removed)
|
|
103838
|
+
* @param {*} [options] Override http request option.
|
|
103839
|
+
* @deprecated
|
|
103840
|
+
* @throws {RequiredError}
|
|
103841
|
+
* @memberof EntitiesApi
|
|
103842
|
+
*/
|
|
103843
|
+
createEntity(options) {
|
|
103844
|
+
return EntitiesApi_CreateEntity(this.axios, this.basePath, options, this.configuration);
|
|
103845
|
+
}
|
|
103507
103846
|
/**
|
|
103508
103847
|
* AI Agent - behavior configuration for AI assistants
|
|
103509
103848
|
* @summary Post Agent entities
|
|
@@ -103725,18 +104064,6 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
103725
104064
|
return EntitiesApi_CreateEntityKnowledgeRecommendations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
103726
104065
|
}
|
|
103727
104066
|
/**
|
|
103728
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
103729
|
-
* @summary Post LLM endpoint entities
|
|
103730
|
-
* @param {EntitiesApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
103731
|
-
* @param {*} [options] Override http request option.
|
|
103732
|
-
* @deprecated
|
|
103733
|
-
* @throws {RequiredError}
|
|
103734
|
-
* @memberof EntitiesApi
|
|
103735
|
-
*/
|
|
103736
|
-
createEntityLlmEndpoints(requestParameters, options) {
|
|
103737
|
-
return EntitiesApi_CreateEntityLlmEndpoints(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
103738
|
-
}
|
|
103739
|
-
/**
|
|
103740
104067
|
* LLM Provider - connection configuration for LLM services
|
|
103741
104068
|
* @summary Post LLM Provider entities
|
|
103742
104069
|
* @param {EntitiesApiCreateEntityLlmProvidersRequest} requestParameters Request parameters.
|
|
@@ -103913,6 +104240,18 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
103913
104240
|
return EntitiesApi_CreateEntityWorkspaces(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
103914
104241
|
}
|
|
103915
104242
|
/**
|
|
104243
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
104244
|
+
* @summary Delete LLM endpoint entity (Removed)
|
|
104245
|
+
* @param {EntitiesApiDeleteEntityRequest} requestParameters Request parameters.
|
|
104246
|
+
* @param {*} [options] Override http request option.
|
|
104247
|
+
* @deprecated
|
|
104248
|
+
* @throws {RequiredError}
|
|
104249
|
+
* @memberof EntitiesApi
|
|
104250
|
+
*/
|
|
104251
|
+
deleteEntity(requestParameters, options) {
|
|
104252
|
+
return EntitiesApi_DeleteEntity(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
104253
|
+
}
|
|
104254
|
+
/**
|
|
103916
104255
|
*
|
|
103917
104256
|
* @summary Delete Agent entity
|
|
103918
104257
|
* @param {EntitiesApiDeleteEntityAgentsRequest} requestParameters Request parameters.
|
|
@@ -104133,18 +104472,6 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
104133
104472
|
return EntitiesApi_DeleteEntityKnowledgeRecommendations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
104134
104473
|
}
|
|
104135
104474
|
/**
|
|
104136
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
104137
|
-
* @summary Delete LLM endpoint entity
|
|
104138
|
-
* @param {EntitiesApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
104139
|
-
* @param {*} [options] Override http request option.
|
|
104140
|
-
* @deprecated
|
|
104141
|
-
* @throws {RequiredError}
|
|
104142
|
-
* @memberof EntitiesApi
|
|
104143
|
-
*/
|
|
104144
|
-
deleteEntityLlmEndpoints(requestParameters, options) {
|
|
104145
|
-
return EntitiesApi_DeleteEntityLlmEndpoints(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
104146
|
-
}
|
|
104147
|
-
/**
|
|
104148
104475
|
*
|
|
104149
104476
|
* @summary Delete LLM Provider entity
|
|
104150
104477
|
* @param {EntitiesApiDeleteEntityLlmProvidersRequest} requestParameters Request parameters.
|
|
@@ -104332,6 +104659,17 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
104332
104659
|
return EntitiesApi_GetAllAutomationsWorkspaceAutomations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
104333
104660
|
}
|
|
104334
104661
|
/**
|
|
104662
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
104663
|
+
* @summary Get all LLM endpoint entities (Removed)
|
|
104664
|
+
* @param {*} [options] Override http request option.
|
|
104665
|
+
* @deprecated
|
|
104666
|
+
* @throws {RequiredError}
|
|
104667
|
+
* @memberof EntitiesApi
|
|
104668
|
+
*/
|
|
104669
|
+
getAllEntities(options) {
|
|
104670
|
+
return EntitiesApi_GetAllEntities(this.axios, this.basePath, options, this.configuration);
|
|
104671
|
+
}
|
|
104672
|
+
/**
|
|
104335
104673
|
*
|
|
104336
104674
|
* @summary Get all Agent entities
|
|
104337
104675
|
* @param {EntitiesApiGetAllEntitiesAgentsRequest} requestParameters Request parameters.
|
|
@@ -104629,18 +104967,6 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
104629
104967
|
return EntitiesApi_GetAllEntitiesLabels(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
104630
104968
|
}
|
|
104631
104969
|
/**
|
|
104632
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
104633
|
-
* @summary Get all LLM endpoint entities
|
|
104634
|
-
* @param {EntitiesApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
104635
|
-
* @param {*} [options] Override http request option.
|
|
104636
|
-
* @deprecated
|
|
104637
|
-
* @throws {RequiredError}
|
|
104638
|
-
* @memberof EntitiesApi
|
|
104639
|
-
*/
|
|
104640
|
-
getAllEntitiesLlmEndpoints(requestParameters = {}, options) {
|
|
104641
|
-
return EntitiesApi_GetAllEntitiesLlmEndpoints(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
104642
|
-
}
|
|
104643
|
-
/**
|
|
104644
104970
|
*
|
|
104645
104971
|
* @summary Get all LLM Provider entities
|
|
104646
104972
|
* @param {EntitiesApiGetAllEntitiesLlmProvidersRequest} requestParameters Request parameters.
|
|
@@ -104859,6 +105185,18 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
104859
105185
|
return EntitiesApi_GetDataSourceDrivers(this.axios, this.basePath, options, this.configuration);
|
|
104860
105186
|
}
|
|
104861
105187
|
/**
|
|
105188
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
105189
|
+
* @summary Get LLM endpoint entity (Removed)
|
|
105190
|
+
* @param {EntitiesApiGetEntityRequest} requestParameters Request parameters.
|
|
105191
|
+
* @param {*} [options] Override http request option.
|
|
105192
|
+
* @deprecated
|
|
105193
|
+
* @throws {RequiredError}
|
|
105194
|
+
* @memberof EntitiesApi
|
|
105195
|
+
*/
|
|
105196
|
+
getEntity(requestParameters, options) {
|
|
105197
|
+
return EntitiesApi_GetEntity(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
105198
|
+
}
|
|
105199
|
+
/**
|
|
104862
105200
|
*
|
|
104863
105201
|
* @summary Get Agent entity
|
|
104864
105202
|
* @param {EntitiesApiGetEntityAgentsRequest} requestParameters Request parameters.
|
|
@@ -105167,18 +105505,6 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
105167
105505
|
return EntitiesApi_GetEntityLabels(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
105168
105506
|
}
|
|
105169
105507
|
/**
|
|
105170
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
105171
|
-
* @summary Get LLM endpoint entity
|
|
105172
|
-
* @param {EntitiesApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
105173
|
-
* @param {*} [options] Override http request option.
|
|
105174
|
-
* @deprecated
|
|
105175
|
-
* @throws {RequiredError}
|
|
105176
|
-
* @memberof EntitiesApi
|
|
105177
|
-
*/
|
|
105178
|
-
getEntityLlmEndpoints(requestParameters, options) {
|
|
105179
|
-
return EntitiesApi_GetEntityLlmEndpoints(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
105180
|
-
}
|
|
105181
|
-
/**
|
|
105182
105508
|
*
|
|
105183
105509
|
* @summary Get LLM Provider entity
|
|
105184
105510
|
* @param {EntitiesApiGetEntityLlmProvidersRequest} requestParameters Request parameters.
|
|
@@ -105399,6 +105725,18 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
105399
105725
|
return EntitiesApi_GetOrganization(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
105400
105726
|
}
|
|
105401
105727
|
/**
|
|
105728
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
105729
|
+
* @summary Patch LLM endpoint entity (Removed)
|
|
105730
|
+
* @param {EntitiesApiPatchEntityRequest} requestParameters Request parameters.
|
|
105731
|
+
* @param {*} [options] Override http request option.
|
|
105732
|
+
* @deprecated
|
|
105733
|
+
* @throws {RequiredError}
|
|
105734
|
+
* @memberof EntitiesApi
|
|
105735
|
+
*/
|
|
105736
|
+
patchEntity(requestParameters, options) {
|
|
105737
|
+
return EntitiesApi_PatchEntity(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
105738
|
+
}
|
|
105739
|
+
/**
|
|
105402
105740
|
*
|
|
105403
105741
|
* @summary Patch Agent entity
|
|
105404
105742
|
* @param {EntitiesApiPatchEntityAgentsRequest} requestParameters Request parameters.
|
|
@@ -105641,18 +105979,6 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
105641
105979
|
return EntitiesApi_PatchEntityLabels(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
105642
105980
|
}
|
|
105643
105981
|
/**
|
|
105644
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
105645
|
-
* @summary Patch LLM endpoint entity
|
|
105646
|
-
* @param {EntitiesApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
105647
|
-
* @param {*} [options] Override http request option.
|
|
105648
|
-
* @deprecated
|
|
105649
|
-
* @throws {RequiredError}
|
|
105650
|
-
* @memberof EntitiesApi
|
|
105651
|
-
*/
|
|
105652
|
-
patchEntityLlmEndpoints(requestParameters, options) {
|
|
105653
|
-
return EntitiesApi_PatchEntityLlmEndpoints(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
105654
|
-
}
|
|
105655
|
-
/**
|
|
105656
105982
|
*
|
|
105657
105983
|
* @summary Patch LLM Provider entity
|
|
105658
105984
|
* @param {EntitiesApiPatchEntityLlmProvidersRequest} requestParameters Request parameters.
|
|
@@ -106082,6 +106408,18 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
106082
106408
|
return EntitiesApi_SearchEntitiesWorkspaceSettings(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
106083
106409
|
}
|
|
106084
106410
|
/**
|
|
106411
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
106412
|
+
* @summary PUT LLM endpoint entity (Removed)
|
|
106413
|
+
* @param {EntitiesApiUpdateEntityRequest} requestParameters Request parameters.
|
|
106414
|
+
* @param {*} [options] Override http request option.
|
|
106415
|
+
* @deprecated
|
|
106416
|
+
* @throws {RequiredError}
|
|
106417
|
+
* @memberof EntitiesApi
|
|
106418
|
+
*/
|
|
106419
|
+
updateEntity(requestParameters, options) {
|
|
106420
|
+
return EntitiesApi_UpdateEntity(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
106421
|
+
}
|
|
106422
|
+
/**
|
|
106085
106423
|
*
|
|
106086
106424
|
* @summary Put Agent entity
|
|
106087
106425
|
* @param {EntitiesApiUpdateEntityAgentsRequest} requestParameters Request parameters.
|
|
@@ -106302,18 +106640,6 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
106302
106640
|
return EntitiesApi_UpdateEntityKnowledgeRecommendations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
106303
106641
|
}
|
|
106304
106642
|
/**
|
|
106305
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
106306
|
-
* @summary PUT LLM endpoint entity
|
|
106307
|
-
* @param {EntitiesApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
106308
|
-
* @param {*} [options] Override http request option.
|
|
106309
|
-
* @deprecated
|
|
106310
|
-
* @throws {RequiredError}
|
|
106311
|
-
* @memberof EntitiesApi
|
|
106312
|
-
*/
|
|
106313
|
-
updateEntityLlmEndpoints(requestParameters, options) {
|
|
106314
|
-
return EntitiesApi_UpdateEntityLlmEndpoints(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
106315
|
-
}
|
|
106316
|
-
/**
|
|
106317
106643
|
*
|
|
106318
106644
|
* @summary PUT LLM Provider entity
|
|
106319
106645
|
* @param {EntitiesApiUpdateEntityLlmProvidersRequest} requestParameters Request parameters.
|
|
@@ -111218,39 +111544,6 @@ async function ActionsApiAxiosParamCreator_CancelWorkflow(workspaceId, runId, op
|
|
|
111218
111544
|
};
|
|
111219
111545
|
}
|
|
111220
111546
|
/**
|
|
111221
|
-
*
|
|
111222
|
-
* @param {string} workspaceId Workspace identifier
|
|
111223
|
-
* @param {string} runId
|
|
111224
|
-
* @param {*} [options] Override http request option.
|
|
111225
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
111226
|
-
* @throws {RequiredError}
|
|
111227
|
-
*/
|
|
111228
|
-
async function ActionsApiAxiosParamCreator_CancelWorkflow1(workspaceId, runId, options = {}, configuration) {
|
|
111229
|
-
assertParamExists$3("cancelWorkflow1", "workspaceId", workspaceId);
|
|
111230
|
-
assertParamExists$3("cancelWorkflow1", "runId", runId);
|
|
111231
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/cancel`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{runId}`, encodeURIComponent(String(runId)));
|
|
111232
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
111233
|
-
let baseOptions;
|
|
111234
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
111235
|
-
const localVarRequestOptions = {
|
|
111236
|
-
method: "POST",
|
|
111237
|
-
...baseOptions,
|
|
111238
|
-
...options
|
|
111239
|
-
};
|
|
111240
|
-
const localVarHeaderParameter = {};
|
|
111241
|
-
setSearchParams$3(localVarUrlObj, {});
|
|
111242
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
111243
|
-
localVarRequestOptions.headers = {
|
|
111244
|
-
...localVarHeaderParameter,
|
|
111245
|
-
...headersFromBaseOptions,
|
|
111246
|
-
...options.headers
|
|
111247
|
-
};
|
|
111248
|
-
return {
|
|
111249
|
-
url: toPathString$3(localVarUrlObj),
|
|
111250
|
-
options: localVarRequestOptions
|
|
111251
|
-
};
|
|
111252
|
-
}
|
|
111253
|
-
/**
|
|
111254
111547
|
* Computes change analysis for the provided execution definition.
|
|
111255
111548
|
* @summary Compute change analysis
|
|
111256
111549
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -111797,43 +112090,6 @@ async function ActionsApiAxiosParamCreator_GenerateDashboardSummary(workspaceId,
|
|
|
111797
112090
|
};
|
|
111798
112091
|
}
|
|
111799
112092
|
/**
|
|
111800
|
-
*
|
|
111801
|
-
* @param {string} workspaceId Workspace identifier
|
|
111802
|
-
* @param {DashboardSummaryRequestDto} dashboardSummaryRequestDto
|
|
111803
|
-
* @param {*} [options] Override http request option.
|
|
111804
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
111805
|
-
* @throws {RequiredError}
|
|
111806
|
-
*/
|
|
111807
|
-
async function ActionsApiAxiosParamCreator_GenerateDashboardSummary1(workspaceId, dashboardSummaryRequestDto, options = {}, configuration) {
|
|
111808
|
-
assertParamExists$3("generateDashboardSummary1", "workspaceId", workspaceId);
|
|
111809
|
-
assertParamExists$3("generateDashboardSummary1", "dashboardSummaryRequestDto", dashboardSummaryRequestDto);
|
|
111810
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/dashboardSummary`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
111811
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
111812
|
-
let baseOptions;
|
|
111813
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
111814
|
-
const localVarRequestOptions = {
|
|
111815
|
-
method: "POST",
|
|
111816
|
-
...baseOptions,
|
|
111817
|
-
...options
|
|
111818
|
-
};
|
|
111819
|
-
const localVarHeaderParameter = {};
|
|
111820
|
-
const localVarQueryParameter = {};
|
|
111821
|
-
const consumes = ["application/json"];
|
|
111822
|
-
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
111823
|
-
setSearchParams$3(localVarUrlObj, localVarQueryParameter);
|
|
111824
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
111825
|
-
localVarRequestOptions.headers = {
|
|
111826
|
-
...localVarHeaderParameter,
|
|
111827
|
-
...headersFromBaseOptions,
|
|
111828
|
-
...options.headers
|
|
111829
|
-
};
|
|
111830
|
-
localVarRequestOptions.data = typeof dashboardSummaryRequestDto !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(dashboardSummaryRequestDto !== void 0 ? dashboardSummaryRequestDto : {}) : dashboardSummaryRequestDto || "";
|
|
111831
|
-
return {
|
|
111832
|
-
url: toPathString$3(localVarUrlObj),
|
|
111833
|
-
options: localVarRequestOptions
|
|
111834
|
-
};
|
|
111835
|
-
}
|
|
111836
|
-
/**
|
|
111837
112093
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
111838
112094
|
* @summary Generate Description for Analytics Object
|
|
111839
112095
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -111872,43 +112128,6 @@ async function ActionsApiAxiosParamCreator_GenerateDescription(workspaceId, gene
|
|
|
111872
112128
|
};
|
|
111873
112129
|
}
|
|
111874
112130
|
/**
|
|
111875
|
-
*
|
|
111876
|
-
* @param {string} workspaceId Workspace identifier
|
|
111877
|
-
* @param {KnowledgeRecommendationsRequestDto} knowledgeRecommendationsRequestDto
|
|
111878
|
-
* @param {*} [options] Override http request option.
|
|
111879
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
111880
|
-
* @throws {RequiredError}
|
|
111881
|
-
*/
|
|
111882
|
-
async function ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(workspaceId, knowledgeRecommendationsRequestDto, options = {}, configuration) {
|
|
111883
|
-
assertParamExists$3("generateKnowledgeRecommendations", "workspaceId", workspaceId);
|
|
111884
|
-
assertParamExists$3("generateKnowledgeRecommendations", "knowledgeRecommendationsRequestDto", knowledgeRecommendationsRequestDto);
|
|
111885
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/knowledgeRecommendations`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
111886
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
111887
|
-
let baseOptions;
|
|
111888
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
111889
|
-
const localVarRequestOptions = {
|
|
111890
|
-
method: "POST",
|
|
111891
|
-
...baseOptions,
|
|
111892
|
-
...options
|
|
111893
|
-
};
|
|
111894
|
-
const localVarHeaderParameter = {};
|
|
111895
|
-
const localVarQueryParameter = {};
|
|
111896
|
-
const consumes = ["application/json"];
|
|
111897
|
-
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
111898
|
-
setSearchParams$3(localVarUrlObj, localVarQueryParameter);
|
|
111899
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
111900
|
-
localVarRequestOptions.headers = {
|
|
111901
|
-
...localVarHeaderParameter,
|
|
111902
|
-
...headersFromBaseOptions,
|
|
111903
|
-
...options.headers
|
|
111904
|
-
};
|
|
111905
|
-
localVarRequestOptions.data = typeof knowledgeRecommendationsRequestDto !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(knowledgeRecommendationsRequestDto !== void 0 ? knowledgeRecommendationsRequestDto : {}) : knowledgeRecommendationsRequestDto || "";
|
|
111906
|
-
return {
|
|
111907
|
-
url: toPathString$3(localVarUrlObj),
|
|
111908
|
-
options: localVarRequestOptions
|
|
111909
|
-
};
|
|
111910
|
-
}
|
|
111911
|
-
/**
|
|
111912
112131
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
111913
112132
|
* @summary Generate Title for Analytics Object
|
|
111914
112133
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -112046,39 +112265,6 @@ async function ActionsApiAxiosParamCreator_GetWorkflowStatus(workspaceId, runId,
|
|
|
112046
112265
|
};
|
|
112047
112266
|
}
|
|
112048
112267
|
/**
|
|
112049
|
-
*
|
|
112050
|
-
* @param {string} workspaceId Workspace identifier
|
|
112051
|
-
* @param {string} runId
|
|
112052
|
-
* @param {*} [options] Override http request option.
|
|
112053
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
112054
|
-
* @throws {RequiredError}
|
|
112055
|
-
*/
|
|
112056
|
-
async function ActionsApiAxiosParamCreator_GetWorkflowStatus1(workspaceId, runId, options = {}, configuration) {
|
|
112057
|
-
assertParamExists$3("getWorkflowStatus1", "workspaceId", workspaceId);
|
|
112058
|
-
assertParamExists$3("getWorkflowStatus1", "runId", runId);
|
|
112059
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/status`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{runId}`, encodeURIComponent(String(runId)));
|
|
112060
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
112061
|
-
let baseOptions;
|
|
112062
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
112063
|
-
const localVarRequestOptions = {
|
|
112064
|
-
method: "GET",
|
|
112065
|
-
...baseOptions,
|
|
112066
|
-
...options
|
|
112067
|
-
};
|
|
112068
|
-
const localVarHeaderParameter = {};
|
|
112069
|
-
setSearchParams$3(localVarUrlObj, {});
|
|
112070
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
112071
|
-
localVarRequestOptions.headers = {
|
|
112072
|
-
...localVarHeaderParameter,
|
|
112073
|
-
...headersFromBaseOptions,
|
|
112074
|
-
...options.headers
|
|
112075
|
-
};
|
|
112076
|
-
return {
|
|
112077
|
-
url: toPathString$3(localVarUrlObj),
|
|
112078
|
-
options: localVarRequestOptions
|
|
112079
|
-
};
|
|
112080
|
-
}
|
|
112081
|
-
/**
|
|
112082
112268
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
112083
112269
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
112084
112270
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -112682,45 +112868,6 @@ async function ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculation(works
|
|
|
112682
112868
|
};
|
|
112683
112869
|
}
|
|
112684
112870
|
/**
|
|
112685
|
-
*
|
|
112686
|
-
* @param {string} workspaceId Workspace identifier
|
|
112687
|
-
* @param {string} runId
|
|
112688
|
-
* @param {FeedbackRequestDto} feedbackRequestDto
|
|
112689
|
-
* @param {*} [options] Override http request option.
|
|
112690
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
112691
|
-
* @throws {RequiredError}
|
|
112692
|
-
*/
|
|
112693
|
-
async function ActionsApiAxiosParamCreator_UserFeedback(workspaceId, runId, feedbackRequestDto, options = {}, configuration) {
|
|
112694
|
-
assertParamExists$3("userFeedback", "workspaceId", workspaceId);
|
|
112695
|
-
assertParamExists$3("userFeedback", "runId", runId);
|
|
112696
|
-
assertParamExists$3("userFeedback", "feedbackRequestDto", feedbackRequestDto);
|
|
112697
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/feedback`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{runId}`, encodeURIComponent(String(runId)));
|
|
112698
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
112699
|
-
let baseOptions;
|
|
112700
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
112701
|
-
const localVarRequestOptions = {
|
|
112702
|
-
method: "POST",
|
|
112703
|
-
...baseOptions,
|
|
112704
|
-
...options
|
|
112705
|
-
};
|
|
112706
|
-
const localVarHeaderParameter = {};
|
|
112707
|
-
const localVarQueryParameter = {};
|
|
112708
|
-
const consumes = ["application/json"];
|
|
112709
|
-
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
112710
|
-
setSearchParams$3(localVarUrlObj, localVarQueryParameter);
|
|
112711
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
112712
|
-
localVarRequestOptions.headers = {
|
|
112713
|
-
...localVarHeaderParameter,
|
|
112714
|
-
...headersFromBaseOptions,
|
|
112715
|
-
...options.headers
|
|
112716
|
-
};
|
|
112717
|
-
localVarRequestOptions.data = typeof feedbackRequestDto !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(feedbackRequestDto !== void 0 ? feedbackRequestDto : {}) : feedbackRequestDto || "";
|
|
112718
|
-
return {
|
|
112719
|
-
url: toPathString$3(localVarUrlObj),
|
|
112720
|
-
options: localVarRequestOptions
|
|
112721
|
-
};
|
|
112722
|
-
}
|
|
112723
|
-
/**
|
|
112724
112871
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
112725
112872
|
* @summary Validate LLM Endpoint (Removed)
|
|
112726
112873
|
* @param {*} [options] Override http request option.
|
|
@@ -112898,18 +113045,6 @@ async function ActionsApi_CancelWorkflow(axios, basePath, requestParameters, opt
|
|
|
112898
113045
|
return createRequestFunction$3(await ActionsApiAxiosParamCreator_CancelWorkflow(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
112899
113046
|
}
|
|
112900
113047
|
/**
|
|
112901
|
-
*
|
|
112902
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
112903
|
-
* @param {string} basePath Base path.
|
|
112904
|
-
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
112905
|
-
* @param {*} [options] Override http request option.
|
|
112906
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
112907
|
-
* @throws {RequiredError}
|
|
112908
|
-
*/
|
|
112909
|
-
async function ActionsApi_CancelWorkflow1(axios, basePath, requestParameters, options, configuration) {
|
|
112910
|
-
return createRequestFunction$3(await ActionsApiAxiosParamCreator_CancelWorkflow1(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
112911
|
-
}
|
|
112912
|
-
/**
|
|
112913
113048
|
* Computes change analysis for the provided execution definition.
|
|
112914
113049
|
* @summary Compute change analysis
|
|
112915
113050
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -113091,18 +113226,6 @@ async function ActionsApi_GenerateDashboardSummary(axios, basePath, requestParam
|
|
|
113091
113226
|
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GenerateDashboardSummary(requestParameters.workspaceId, requestParameters.workflowDashboardSummaryRequestDto, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113092
113227
|
}
|
|
113093
113228
|
/**
|
|
113094
|
-
*
|
|
113095
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
113096
|
-
* @param {string} basePath Base path.
|
|
113097
|
-
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
113098
|
-
* @param {*} [options] Override http request option.
|
|
113099
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
113100
|
-
* @throws {RequiredError}
|
|
113101
|
-
*/
|
|
113102
|
-
async function ActionsApi_GenerateDashboardSummary1(axios, basePath, requestParameters, options, configuration) {
|
|
113103
|
-
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GenerateDashboardSummary1(requestParameters.workspaceId, requestParameters.dashboardSummaryRequestDto, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113104
|
-
}
|
|
113105
|
-
/**
|
|
113106
113229
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
113107
113230
|
* @summary Generate Description for Analytics Object
|
|
113108
113231
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -113116,18 +113239,6 @@ async function ActionsApi_GenerateDescription(axios, basePath, requestParameters
|
|
|
113116
113239
|
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GenerateDescription(requestParameters.workspaceId, requestParameters.generateDescriptionRequest, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113117
113240
|
}
|
|
113118
113241
|
/**
|
|
113119
|
-
*
|
|
113120
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
113121
|
-
* @param {string} basePath Base path.
|
|
113122
|
-
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
113123
|
-
* @param {*} [options] Override http request option.
|
|
113124
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
113125
|
-
* @throws {RequiredError}
|
|
113126
|
-
*/
|
|
113127
|
-
async function ActionsApi_GenerateKnowledgeRecommendations(axios, basePath, requestParameters, options, configuration) {
|
|
113128
|
-
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(requestParameters.workspaceId, requestParameters.knowledgeRecommendationsRequestDto, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113129
|
-
}
|
|
113130
|
-
/**
|
|
113131
113242
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
113132
113243
|
* @summary Generate Title for Analytics Object
|
|
113133
113244
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -113179,18 +113290,6 @@ async function ActionsApi_GetWorkflowStatus(axios, basePath, requestParameters,
|
|
|
113179
113290
|
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GetWorkflowStatus(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113180
113291
|
}
|
|
113181
113292
|
/**
|
|
113182
|
-
*
|
|
113183
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
113184
|
-
* @param {string} basePath Base path.
|
|
113185
|
-
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
113186
|
-
* @param {*} [options] Override http request option.
|
|
113187
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
113188
|
-
* @throws {RequiredError}
|
|
113189
|
-
*/
|
|
113190
|
-
async function ActionsApi_GetWorkflowStatus1(axios, basePath, requestParameters, options, configuration) {
|
|
113191
|
-
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GetWorkflowStatus1(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113192
|
-
}
|
|
113193
|
-
/**
|
|
113194
113293
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
113195
113294
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
113196
113295
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -113412,18 +113511,6 @@ async function ActionsApi_TriggerQualityIssuesCalculation(axios, basePath, reque
|
|
|
113412
113511
|
return createRequestFunction$3(await ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculation(requestParameters.workspaceId, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113413
113512
|
}
|
|
113414
113513
|
/**
|
|
113415
|
-
*
|
|
113416
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
113417
|
-
* @param {string} basePath Base path.
|
|
113418
|
-
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
113419
|
-
* @param {*} [options] Override http request option.
|
|
113420
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
113421
|
-
* @throws {RequiredError}
|
|
113422
|
-
*/
|
|
113423
|
-
async function ActionsApi_UserFeedback(axios, basePath, requestParameters, options, configuration) {
|
|
113424
|
-
return createRequestFunction$3(await ActionsApiAxiosParamCreator_UserFeedback(requestParameters.workspaceId, requestParameters.runId, requestParameters.feedbackRequestDto, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113425
|
-
}
|
|
113426
|
-
/**
|
|
113427
113514
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
113428
113515
|
* @summary Validate LLM Endpoint (Removed)
|
|
113429
113516
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -113556,16 +113643,6 @@ var ActionsApi$2 = class extends BaseAPI$3 {
|
|
|
113556
113643
|
return ActionsApi_CancelWorkflow(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113557
113644
|
}
|
|
113558
113645
|
/**
|
|
113559
|
-
*
|
|
113560
|
-
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
113561
|
-
* @param {*} [options] Override http request option.
|
|
113562
|
-
* @throws {RequiredError}
|
|
113563
|
-
* @memberof ActionsApi
|
|
113564
|
-
*/
|
|
113565
|
-
cancelWorkflow1(requestParameters, options) {
|
|
113566
|
-
return ActionsApi_CancelWorkflow1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113567
|
-
}
|
|
113568
|
-
/**
|
|
113569
113646
|
* Computes change analysis for the provided execution definition.
|
|
113570
113647
|
* @summary Compute change analysis
|
|
113571
113648
|
* @param {ActionsApiChangeAnalysisRequest} requestParameters Request parameters.
|
|
@@ -113719,16 +113796,6 @@ var ActionsApi$2 = class extends BaseAPI$3 {
|
|
|
113719
113796
|
return ActionsApi_GenerateDashboardSummary(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113720
113797
|
}
|
|
113721
113798
|
/**
|
|
113722
|
-
*
|
|
113723
|
-
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
113724
|
-
* @param {*} [options] Override http request option.
|
|
113725
|
-
* @throws {RequiredError}
|
|
113726
|
-
* @memberof ActionsApi
|
|
113727
|
-
*/
|
|
113728
|
-
generateDashboardSummary1(requestParameters, options) {
|
|
113729
|
-
return ActionsApi_GenerateDashboardSummary1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113730
|
-
}
|
|
113731
|
-
/**
|
|
113732
113799
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
113733
113800
|
* @summary Generate Description for Analytics Object
|
|
113734
113801
|
* @param {ActionsApiGenerateDescriptionRequest} requestParameters Request parameters.
|
|
@@ -113740,16 +113807,6 @@ var ActionsApi$2 = class extends BaseAPI$3 {
|
|
|
113740
113807
|
return ActionsApi_GenerateDescription(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113741
113808
|
}
|
|
113742
113809
|
/**
|
|
113743
|
-
*
|
|
113744
|
-
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
113745
|
-
* @param {*} [options] Override http request option.
|
|
113746
|
-
* @throws {RequiredError}
|
|
113747
|
-
* @memberof ActionsApi
|
|
113748
|
-
*/
|
|
113749
|
-
generateKnowledgeRecommendations(requestParameters, options) {
|
|
113750
|
-
return ActionsApi_GenerateKnowledgeRecommendations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113751
|
-
}
|
|
113752
|
-
/**
|
|
113753
113810
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
113754
113811
|
* @summary Generate Title for Analytics Object
|
|
113755
113812
|
* @param {ActionsApiGenerateTitleRequest} requestParameters Request parameters.
|
|
@@ -113793,16 +113850,6 @@ var ActionsApi$2 = class extends BaseAPI$3 {
|
|
|
113793
113850
|
return ActionsApi_GetWorkflowStatus(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113794
113851
|
}
|
|
113795
113852
|
/**
|
|
113796
|
-
*
|
|
113797
|
-
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
113798
|
-
* @param {*} [options] Override http request option.
|
|
113799
|
-
* @throws {RequiredError}
|
|
113800
|
-
* @memberof ActionsApi
|
|
113801
|
-
*/
|
|
113802
|
-
getWorkflowStatus1(requestParameters, options) {
|
|
113803
|
-
return ActionsApi_GetWorkflowStatus1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113804
|
-
}
|
|
113805
|
-
/**
|
|
113806
113853
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
113807
113854
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
113808
113855
|
* @param {ActionsApiKeyDriverAnalysisRequest} requestParameters Request parameters.
|
|
@@ -113991,16 +114038,6 @@ var ActionsApi$2 = class extends BaseAPI$3 {
|
|
|
113991
114038
|
return ActionsApi_TriggerQualityIssuesCalculation(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113992
114039
|
}
|
|
113993
114040
|
/**
|
|
113994
|
-
*
|
|
113995
|
-
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
113996
|
-
* @param {*} [options] Override http request option.
|
|
113997
|
-
* @throws {RequiredError}
|
|
113998
|
-
* @memberof ActionsApi
|
|
113999
|
-
*/
|
|
114000
|
-
userFeedback(requestParameters, options) {
|
|
114001
|
-
return ActionsApi_UserFeedback(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
114002
|
-
}
|
|
114003
|
-
/**
|
|
114004
114041
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
114005
114042
|
* @summary Validate LLM Endpoint (Removed)
|
|
114006
114043
|
* @param {*} [options] Override http request option.
|
|
@@ -193656,7 +193693,7 @@ async function get(state, opts) {
|
|
|
193656
193693
|
//#endregion
|
|
193657
193694
|
//#region ../code/package.json
|
|
193658
193695
|
var name = "@gooddata/code";
|
|
193659
|
-
var version = "0.36.0-alpha.
|
|
193696
|
+
var version = "0.36.0-alpha.3";
|
|
193660
193697
|
//#endregion
|
|
193661
193698
|
//#region ../code/esm/actions/initialize.js
|
|
193662
193699
|
async function initialize(state, emitter, options) {
|