@gooddata/code-cli 0.36.0-alpha.1 → 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 +847 -791
- 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;
|
|
@@ -41183,6 +41183,11 @@ const metadata_v1 = {
|
|
|
41183
41183
|
"description": "OR-ed list of conditions. Empty or omitted means \"All\" (no filtering).",
|
|
41184
41184
|
"items": { "$ref": "#/$defs/mvfCondition" }
|
|
41185
41185
|
},
|
|
41186
|
+
"dimensionality": {
|
|
41187
|
+
"type": "array",
|
|
41188
|
+
"description": "Optional array of label references to apply dimensionality to the filter.",
|
|
41189
|
+
"items": { "$ref": "#/$defs/labelIdentifier" }
|
|
41190
|
+
},
|
|
41186
41191
|
"null_values_as_zero": {
|
|
41187
41192
|
"type": "boolean",
|
|
41188
41193
|
"description": "Null values will be treated as zero during comparisons."
|
|
@@ -86156,7 +86161,7 @@ var merge = createAssigner(function(object, source, srcIndex) {
|
|
|
86156
86161
|
});
|
|
86157
86162
|
//#endregion
|
|
86158
86163
|
//#region ../../../sdk/libs/api-client-tiger/esm/__version.js
|
|
86159
|
-
const LIB_VERSION = "11.40.0-alpha.
|
|
86164
|
+
const LIB_VERSION = "11.40.0-alpha.3";
|
|
86160
86165
|
const LIB_NAME = "@gooddata/api-client-tiger";
|
|
86161
86166
|
//#endregion
|
|
86162
86167
|
//#region ../../../sdk/libs/api-client-tiger/esm/axios.js
|
|
@@ -86379,6 +86384,40 @@ async function ActionsApiAxiosParamCreator_AllPlatformUsage(options = {}, config
|
|
|
86379
86384
|
}
|
|
86380
86385
|
/**
|
|
86381
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
|
+
*
|
|
86382
86421
|
* @summary Get Available Assignees
|
|
86383
86422
|
* @param {string} workspaceId
|
|
86384
86423
|
* @param {string} dashboardId
|
|
@@ -86595,6 +86634,40 @@ async function ActionsApiAxiosParamCreator_DeleteWorkspaceAutomations(workspaceI
|
|
|
86595
86634
|
};
|
|
86596
86635
|
}
|
|
86597
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
|
+
/**
|
|
86598
86671
|
* Generate logical data model (LDM) from physical data model (PDM) stored in data source.
|
|
86599
86672
|
* @summary Generate logical data model (LDM) from physical data model (PDM)
|
|
86600
86673
|
* @param {string} dataSourceId
|
|
@@ -86800,17 +86873,17 @@ async function ActionsApiAxiosParamCreator_InheritedEntityPrefixes(workspaceId,
|
|
|
86800
86873
|
}
|
|
86801
86874
|
/**
|
|
86802
86875
|
*
|
|
86876
|
+
* @summary Get Label Permissions
|
|
86803
86877
|
* @param {string} workspaceId
|
|
86804
|
-
* @param {
|
|
86805
|
-
* @param {number} [size] The size of the page to be returned.
|
|
86806
|
-
* @param {string} [name] Filter by user name. Note that user name is case insensitive.
|
|
86878
|
+
* @param {string} labelId
|
|
86807
86879
|
* @param {*} [options] Override http request option.
|
|
86808
86880
|
* @param {Configuration} [configuration] Optional configuration.
|
|
86809
86881
|
* @throws {RequiredError}
|
|
86810
86882
|
*/
|
|
86811
|
-
async function
|
|
86812
|
-
assertParamExists$6("
|
|
86813
|
-
|
|
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)));
|
|
86814
86887
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
86815
86888
|
let baseOptions;
|
|
86816
86889
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -86820,11 +86893,7 @@ async function ActionsApiAxiosParamCreator_ListWorkspaceUserGroups(workspaceId,
|
|
|
86820
86893
|
...options
|
|
86821
86894
|
};
|
|
86822
86895
|
const localVarHeaderParameter = {};
|
|
86823
|
-
|
|
86824
|
-
if (page !== void 0) localVarQueryParameter["page"] = page;
|
|
86825
|
-
if (size !== void 0) localVarQueryParameter["size"] = size;
|
|
86826
|
-
if (name !== void 0) localVarQueryParameter["name"] = name;
|
|
86827
|
-
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
86896
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
86828
86897
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
86829
86898
|
localVarRequestOptions.headers = {
|
|
86830
86899
|
...localVarHeaderParameter,
|
|
@@ -86846,9 +86915,9 @@ async function ActionsApiAxiosParamCreator_ListWorkspaceUserGroups(workspaceId,
|
|
|
86846
86915
|
* @param {Configuration} [configuration] Optional configuration.
|
|
86847
86916
|
* @throws {RequiredError}
|
|
86848
86917
|
*/
|
|
86849
|
-
async function
|
|
86850
|
-
assertParamExists$6("
|
|
86851
|
-
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)));
|
|
86852
86921
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
86853
86922
|
let baseOptions;
|
|
86854
86923
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -86876,31 +86945,30 @@ async function ActionsApiAxiosParamCreator_ListWorkspaceUsers(workspaceId, page,
|
|
|
86876
86945
|
}
|
|
86877
86946
|
/**
|
|
86878
86947
|
*
|
|
86879
|
-
* @summary Manage Permissions for a Dashboard
|
|
86880
86948
|
* @param {string} workspaceId
|
|
86881
|
-
* @param {
|
|
86882
|
-
* @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.
|
|
86883
86952
|
* @param {*} [options] Override http request option.
|
|
86884
86953
|
* @param {Configuration} [configuration] Optional configuration.
|
|
86885
86954
|
* @throws {RequiredError}
|
|
86886
86955
|
*/
|
|
86887
|
-
async function
|
|
86888
|
-
assertParamExists$6("
|
|
86889
|
-
|
|
86890
|
-
assertParamExists$6("manageDashboardPermissions", "manageDashboardPermissionsRequestInner", manageDashboardPermissionsRequestInner);
|
|
86891
|
-
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)));
|
|
86892
86959
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
86893
86960
|
let baseOptions;
|
|
86894
86961
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
86895
86962
|
const localVarRequestOptions = {
|
|
86896
|
-
method: "
|
|
86963
|
+
method: "GET",
|
|
86897
86964
|
...baseOptions,
|
|
86898
86965
|
...options
|
|
86899
86966
|
};
|
|
86900
86967
|
const localVarHeaderParameter = {};
|
|
86901
86968
|
const localVarQueryParameter = {};
|
|
86902
|
-
|
|
86903
|
-
|
|
86969
|
+
if (page !== void 0) localVarQueryParameter["page"] = page;
|
|
86970
|
+
if (size !== void 0) localVarQueryParameter["size"] = size;
|
|
86971
|
+
if (name !== void 0) localVarQueryParameter["name"] = name;
|
|
86904
86972
|
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
86905
86973
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
86906
86974
|
localVarRequestOptions.headers = {
|
|
@@ -86908,25 +86976,26 @@ async function ActionsApiAxiosParamCreator_ManageDashboardPermissions(workspaceI
|
|
|
86908
86976
|
...headersFromBaseOptions,
|
|
86909
86977
|
...options.headers
|
|
86910
86978
|
};
|
|
86911
|
-
localVarRequestOptions.data = typeof manageDashboardPermissionsRequestInner !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(manageDashboardPermissionsRequestInner !== void 0 ? manageDashboardPermissionsRequestInner : {}) : manageDashboardPermissionsRequestInner || "";
|
|
86912
86979
|
return {
|
|
86913
86980
|
url: toPathString$6(localVarUrlObj),
|
|
86914
86981
|
options: localVarRequestOptions
|
|
86915
86982
|
};
|
|
86916
86983
|
}
|
|
86917
86984
|
/**
|
|
86918
|
-
*
|
|
86919
|
-
* @summary Manage Permissions for
|
|
86920
|
-
* @param {string}
|
|
86921
|
-
* @param {
|
|
86985
|
+
*
|
|
86986
|
+
* @summary Manage Permissions for an Attribute
|
|
86987
|
+
* @param {string} workspaceId
|
|
86988
|
+
* @param {string} attributeId
|
|
86989
|
+
* @param {Array<ManageLabelPermissionsRequestInner>} manageLabelPermissionsRequestInner
|
|
86922
86990
|
* @param {*} [options] Override http request option.
|
|
86923
86991
|
* @param {Configuration} [configuration] Optional configuration.
|
|
86924
86992
|
* @throws {RequiredError}
|
|
86925
86993
|
*/
|
|
86926
|
-
async function
|
|
86927
|
-
assertParamExists$6("
|
|
86928
|
-
assertParamExists$6("
|
|
86929
|
-
|
|
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)));
|
|
86930
86999
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
86931
87000
|
let baseOptions;
|
|
86932
87001
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -86946,23 +87015,28 @@ async function ActionsApiAxiosParamCreator_ManageDataSourcePermissions(dataSourc
|
|
|
86946
87015
|
...headersFromBaseOptions,
|
|
86947
87016
|
...options.headers
|
|
86948
87017
|
};
|
|
86949
|
-
localVarRequestOptions.data = typeof
|
|
87018
|
+
localVarRequestOptions.data = typeof manageLabelPermissionsRequestInner !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(manageLabelPermissionsRequestInner !== void 0 ? manageLabelPermissionsRequestInner : {}) : manageLabelPermissionsRequestInner || "";
|
|
86950
87019
|
return {
|
|
86951
87020
|
url: toPathString$6(localVarUrlObj),
|
|
86952
87021
|
options: localVarRequestOptions
|
|
86953
87022
|
};
|
|
86954
87023
|
}
|
|
86955
87024
|
/**
|
|
86956
|
-
*
|
|
86957
|
-
* @summary Manage Permissions for a
|
|
86958
|
-
* @param {
|
|
87025
|
+
*
|
|
87026
|
+
* @summary Manage Permissions for a Dashboard
|
|
87027
|
+
* @param {string} workspaceId
|
|
87028
|
+
* @param {string} dashboardId
|
|
87029
|
+
* @param {Array<ManageDashboardPermissionsRequestInner>} manageDashboardPermissionsRequestInner
|
|
86959
87030
|
* @param {*} [options] Override http request option.
|
|
86960
87031
|
* @param {Configuration} [configuration] Optional configuration.
|
|
86961
87032
|
* @throws {RequiredError}
|
|
86962
87033
|
*/
|
|
86963
|
-
async function
|
|
86964
|
-
assertParamExists$6("
|
|
86965
|
-
|
|
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);
|
|
86966
87040
|
let baseOptions;
|
|
86967
87041
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
86968
87042
|
const localVarRequestOptions = {
|
|
@@ -86981,25 +87055,25 @@ async function ActionsApiAxiosParamCreator_ManageOrganizationPermissions(organiz
|
|
|
86981
87055
|
...headersFromBaseOptions,
|
|
86982
87056
|
...options.headers
|
|
86983
87057
|
};
|
|
86984
|
-
localVarRequestOptions.data = typeof
|
|
87058
|
+
localVarRequestOptions.data = typeof manageDashboardPermissionsRequestInner !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(manageDashboardPermissionsRequestInner !== void 0 ? manageDashboardPermissionsRequestInner : {}) : manageDashboardPermissionsRequestInner || "";
|
|
86985
87059
|
return {
|
|
86986
87060
|
url: toPathString$6(localVarUrlObj),
|
|
86987
87061
|
options: localVarRequestOptions
|
|
86988
87062
|
};
|
|
86989
87063
|
}
|
|
86990
87064
|
/**
|
|
86991
|
-
* Manage Permissions for a
|
|
86992
|
-
* @summary Manage Permissions for a
|
|
86993
|
-
* @param {string}
|
|
86994
|
-
* @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
|
|
86995
87069
|
* @param {*} [options] Override http request option.
|
|
86996
87070
|
* @param {Configuration} [configuration] Optional configuration.
|
|
86997
87071
|
* @throws {RequiredError}
|
|
86998
87072
|
*/
|
|
86999
|
-
async function
|
|
87000
|
-
assertParamExists$6("
|
|
87001
|
-
assertParamExists$6("
|
|
87002
|
-
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)));
|
|
87003
87077
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
87004
87078
|
let baseOptions;
|
|
87005
87079
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -87019,23 +87093,27 @@ async function ActionsApiAxiosParamCreator_ManageWorkspacePermissions(workspaceI
|
|
|
87019
87093
|
...headersFromBaseOptions,
|
|
87020
87094
|
...options.headers
|
|
87021
87095
|
};
|
|
87022
|
-
localVarRequestOptions.data = typeof
|
|
87096
|
+
localVarRequestOptions.data = typeof dataSourcePermissionAssignment !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(dataSourcePermissionAssignment !== void 0 ? dataSourcePermissionAssignment : {}) : dataSourcePermissionAssignment || "";
|
|
87023
87097
|
return {
|
|
87024
87098
|
url: toPathString$6(localVarUrlObj),
|
|
87025
87099
|
options: localVarRequestOptions
|
|
87026
87100
|
};
|
|
87027
87101
|
}
|
|
87028
87102
|
/**
|
|
87029
|
-
*
|
|
87030
|
-
* @summary
|
|
87103
|
+
*
|
|
87104
|
+
* @summary Manage Permissions for a Fact
|
|
87031
87105
|
* @param {string} workspaceId
|
|
87106
|
+
* @param {string} factId
|
|
87107
|
+
* @param {Array<ManageLabelPermissionsRequestInner>} manageLabelPermissionsRequestInner
|
|
87032
87108
|
* @param {*} [options] Override http request option.
|
|
87033
87109
|
* @param {Configuration} [configuration] Optional configuration.
|
|
87034
87110
|
* @throws {RequiredError}
|
|
87035
87111
|
*/
|
|
87036
|
-
async function
|
|
87037
|
-
assertParamExists$6("
|
|
87038
|
-
|
|
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)));
|
|
87039
87117
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
87040
87118
|
let baseOptions;
|
|
87041
87119
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -87045,90 +87123,73 @@ async function ActionsApiAxiosParamCreator_MetadataSync(workspaceId, options = {
|
|
|
87045
87123
|
...options
|
|
87046
87124
|
};
|
|
87047
87125
|
const localVarHeaderParameter = {};
|
|
87048
|
-
|
|
87049
|
-
const
|
|
87050
|
-
|
|
87051
|
-
|
|
87052
|
-
...headersFromBaseOptions,
|
|
87053
|
-
...options.headers
|
|
87054
|
-
};
|
|
87055
|
-
return {
|
|
87056
|
-
url: toPathString$6(localVarUrlObj),
|
|
87057
|
-
options: localVarRequestOptions
|
|
87058
|
-
};
|
|
87059
|
-
}
|
|
87060
|
-
/**
|
|
87061
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger sync in their scope only.
|
|
87062
|
-
* @summary (BETA) Sync organization scope Metadata to other services
|
|
87063
|
-
* @param {*} [options] Override http request option.
|
|
87064
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
87065
|
-
* @throws {RequiredError}
|
|
87066
|
-
*/
|
|
87067
|
-
async function ActionsApiAxiosParamCreator_MetadataSyncOrganization(options = {}, configuration) {
|
|
87068
|
-
const localVarUrlObj = new URL(`/api/v1/actions/organization/metadataSync`, DUMMY_BASE_URL$6);
|
|
87069
|
-
let baseOptions;
|
|
87070
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
87071
|
-
const localVarRequestOptions = {
|
|
87072
|
-
method: "POST",
|
|
87073
|
-
...baseOptions,
|
|
87074
|
-
...options
|
|
87075
|
-
};
|
|
87076
|
-
const localVarHeaderParameter = {};
|
|
87077
|
-
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);
|
|
87078
87130
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
87079
87131
|
localVarRequestOptions.headers = {
|
|
87080
87132
|
...localVarHeaderParameter,
|
|
87081
87133
|
...headersFromBaseOptions,
|
|
87082
87134
|
...options.headers
|
|
87083
87135
|
};
|
|
87136
|
+
localVarRequestOptions.data = typeof manageLabelPermissionsRequestInner !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(manageLabelPermissionsRequestInner !== void 0 ? manageLabelPermissionsRequestInner : {}) : manageLabelPermissionsRequestInner || "";
|
|
87084
87137
|
return {
|
|
87085
87138
|
url: toPathString$6(localVarUrlObj),
|
|
87086
87139
|
options: localVarRequestOptions
|
|
87087
87140
|
};
|
|
87088
87141
|
}
|
|
87089
87142
|
/**
|
|
87090
|
-
*
|
|
87091
|
-
* @summary
|
|
87143
|
+
*
|
|
87144
|
+
* @summary Manage Permissions for a Label
|
|
87092
87145
|
* @param {string} workspaceId
|
|
87146
|
+
* @param {string} labelId
|
|
87147
|
+
* @param {Array<ManageLabelPermissionsRequestInner>} manageLabelPermissionsRequestInner
|
|
87093
87148
|
* @param {*} [options] Override http request option.
|
|
87094
87149
|
* @param {Configuration} [configuration] Optional configuration.
|
|
87095
87150
|
* @throws {RequiredError}
|
|
87096
87151
|
*/
|
|
87097
|
-
async function
|
|
87098
|
-
assertParamExists$6("
|
|
87099
|
-
|
|
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)));
|
|
87100
87157
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
87101
87158
|
let baseOptions;
|
|
87102
87159
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
87103
87160
|
const localVarRequestOptions = {
|
|
87104
|
-
method: "
|
|
87161
|
+
method: "POST",
|
|
87105
87162
|
...baseOptions,
|
|
87106
87163
|
...options
|
|
87107
87164
|
};
|
|
87108
87165
|
const localVarHeaderParameter = {};
|
|
87109
|
-
|
|
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);
|
|
87110
87170
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
87111
87171
|
localVarRequestOptions.headers = {
|
|
87112
87172
|
...localVarHeaderParameter,
|
|
87113
87173
|
...headersFromBaseOptions,
|
|
87114
87174
|
...options.headers
|
|
87115
87175
|
};
|
|
87176
|
+
localVarRequestOptions.data = typeof manageLabelPermissionsRequestInner !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(manageLabelPermissionsRequestInner !== void 0 ? manageLabelPermissionsRequestInner : {}) : manageLabelPermissionsRequestInner || "";
|
|
87116
87177
|
return {
|
|
87117
87178
|
url: toPathString$6(localVarUrlObj),
|
|
87118
87179
|
options: localVarRequestOptions
|
|
87119
87180
|
};
|
|
87120
87181
|
}
|
|
87121
87182
|
/**
|
|
87122
|
-
*
|
|
87123
|
-
* @summary
|
|
87124
|
-
* @param {
|
|
87183
|
+
* Manage Permissions for a Organization
|
|
87184
|
+
* @summary Manage Permissions for a Organization
|
|
87185
|
+
* @param {Array<OrganizationPermissionAssignment>} organizationPermissionAssignment
|
|
87125
87186
|
* @param {*} [options] Override http request option.
|
|
87126
87187
|
* @param {Configuration} [configuration] Optional configuration.
|
|
87127
87188
|
* @throws {RequiredError}
|
|
87128
87189
|
*/
|
|
87129
|
-
async function
|
|
87130
|
-
assertParamExists$6("
|
|
87131
|
-
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);
|
|
87132
87193
|
let baseOptions;
|
|
87133
87194
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
87134
87195
|
const localVarRequestOptions = {
|
|
@@ -87147,23 +87208,26 @@ async function ActionsApiAxiosParamCreator_ParticularPlatformUsage(platformUsage
|
|
|
87147
87208
|
...headersFromBaseOptions,
|
|
87148
87209
|
...options.headers
|
|
87149
87210
|
};
|
|
87150
|
-
localVarRequestOptions.data = typeof
|
|
87211
|
+
localVarRequestOptions.data = typeof organizationPermissionAssignment !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(organizationPermissionAssignment !== void 0 ? organizationPermissionAssignment : {}) : organizationPermissionAssignment || "";
|
|
87151
87212
|
return {
|
|
87152
87213
|
url: toPathString$6(localVarUrlObj),
|
|
87153
87214
|
options: localVarRequestOptions
|
|
87154
87215
|
};
|
|
87155
87216
|
}
|
|
87156
87217
|
/**
|
|
87157
|
-
*
|
|
87158
|
-
* @summary
|
|
87159
|
-
* @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
|
|
87160
87222
|
* @param {*} [options] Override http request option.
|
|
87161
87223
|
* @param {Configuration} [configuration] Optional configuration.
|
|
87162
87224
|
* @throws {RequiredError}
|
|
87163
87225
|
*/
|
|
87164
|
-
async function
|
|
87165
|
-
assertParamExists$6("
|
|
87166
|
-
|
|
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);
|
|
87167
87231
|
let baseOptions;
|
|
87168
87232
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
87169
87233
|
const localVarRequestOptions = {
|
|
@@ -87182,25 +87246,23 @@ async function ActionsApiAxiosParamCreator_PauseOrganizationAutomations(organiza
|
|
|
87182
87246
|
...headersFromBaseOptions,
|
|
87183
87247
|
...options.headers
|
|
87184
87248
|
};
|
|
87185
|
-
localVarRequestOptions.data = typeof
|
|
87249
|
+
localVarRequestOptions.data = typeof workspacePermissionAssignment !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(workspacePermissionAssignment !== void 0 ? workspacePermissionAssignment : {}) : workspacePermissionAssignment || "";
|
|
87186
87250
|
return {
|
|
87187
87251
|
url: toPathString$6(localVarUrlObj),
|
|
87188
87252
|
options: localVarRequestOptions
|
|
87189
87253
|
};
|
|
87190
87254
|
}
|
|
87191
87255
|
/**
|
|
87192
|
-
*
|
|
87193
|
-
* @summary
|
|
87256
|
+
* (BETA) Temporary solution. Later relevant metadata actions will trigger it in its scope only.
|
|
87257
|
+
* @summary (BETA) Sync Metadata to other services
|
|
87194
87258
|
* @param {string} workspaceId
|
|
87195
|
-
* @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
|
|
87196
87259
|
* @param {*} [options] Override http request option.
|
|
87197
87260
|
* @param {Configuration} [configuration] Optional configuration.
|
|
87198
87261
|
* @throws {RequiredError}
|
|
87199
87262
|
*/
|
|
87200
|
-
async function
|
|
87201
|
-
assertParamExists$6("
|
|
87202
|
-
|
|
87203
|
-
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)));
|
|
87204
87266
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
87205
87267
|
let baseOptions;
|
|
87206
87268
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -87210,34 +87272,199 @@ async function ActionsApiAxiosParamCreator_PauseWorkspaceAutomations(workspaceId
|
|
|
87210
87272
|
...options
|
|
87211
87273
|
};
|
|
87212
87274
|
const localVarHeaderParameter = {};
|
|
87213
|
-
|
|
87214
|
-
const consumes = ["application/json"];
|
|
87215
|
-
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
87216
|
-
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
87275
|
+
setSearchParams$6(localVarUrlObj, {});
|
|
87217
87276
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
87218
87277
|
localVarRequestOptions.headers = {
|
|
87219
87278
|
...localVarHeaderParameter,
|
|
87220
87279
|
...headersFromBaseOptions,
|
|
87221
87280
|
...options.headers
|
|
87222
87281
|
};
|
|
87223
|
-
localVarRequestOptions.data = typeof workspaceAutomationManagementBulkRequest !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(workspaceAutomationManagementBulkRequest !== void 0 ? workspaceAutomationManagementBulkRequest : {}) : workspaceAutomationManagementBulkRequest || "";
|
|
87224
87282
|
return {
|
|
87225
87283
|
url: toPathString$6(localVarUrlObj),
|
|
87226
87284
|
options: localVarRequestOptions
|
|
87227
87285
|
};
|
|
87228
87286
|
}
|
|
87229
87287
|
/**
|
|
87230
|
-
*
|
|
87231
|
-
* @summary
|
|
87232
|
-
* @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
|
|
87233
87290
|
* @param {*} [options] Override http request option.
|
|
87234
87291
|
* @param {Configuration} [configuration] Optional configuration.
|
|
87235
87292
|
* @throws {RequiredError}
|
|
87236
87293
|
*/
|
|
87237
|
-
async function
|
|
87238
|
-
|
|
87239
|
-
|
|
87240
|
-
|
|
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);
|
|
87241
87468
|
let baseOptions;
|
|
87242
87469
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
87243
87470
|
const localVarRequestOptions = {
|
|
@@ -87953,6 +88180,19 @@ async function ActionsApi_AllPlatformUsage(axios, basePath, options, configurati
|
|
|
87953
88180
|
}
|
|
87954
88181
|
/**
|
|
87955
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
|
+
*
|
|
87956
88196
|
* @summary Get Available Assignees
|
|
87957
88197
|
* @param {AxiosInstance} axios Axios instance.
|
|
87958
88198
|
* @param {string} basePath Base path.
|
|
@@ -88030,6 +88270,19 @@ async function ActionsApi_DeleteWorkspaceAutomations(axios, basePath, requestPar
|
|
|
88030
88270
|
return createRequestFunction$6(await ActionsApiAxiosParamCreator_DeleteWorkspaceAutomations(requestParameters.workspaceId, requestParameters.workspaceAutomationManagementBulkRequest, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
88031
88271
|
}
|
|
88032
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
|
+
/**
|
|
88033
88286
|
* Generate logical data model (LDM) from physical data model (PDM) stored in data source.
|
|
88034
88287
|
* @summary Generate logical data model (LDM) from physical data model (PDM)
|
|
88035
88288
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -88109,6 +88362,19 @@ async function ActionsApi_InheritedEntityPrefixes(axios, basePath, requestParame
|
|
|
88109
88362
|
}
|
|
88110
88363
|
/**
|
|
88111
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
|
+
*
|
|
88112
88378
|
* @param {AxiosInstance} axios Axios instance.
|
|
88113
88379
|
* @param {string} basePath Base path.
|
|
88114
88380
|
* @param {ActionsApiListWorkspaceUserGroupsRequest} requestParameters Request parameters.
|
|
@@ -88133,6 +88399,19 @@ async function ActionsApi_ListWorkspaceUsers(axios, basePath, requestParameters,
|
|
|
88133
88399
|
}
|
|
88134
88400
|
/**
|
|
88135
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
|
+
*
|
|
88136
88415
|
* @summary Manage Permissions for a Dashboard
|
|
88137
88416
|
* @param {AxiosInstance} axios Axios instance.
|
|
88138
88417
|
* @param {string} basePath Base path.
|
|
@@ -88158,6 +88437,32 @@ async function ActionsApi_ManageDataSourcePermissions(axios, basePath, requestPa
|
|
|
88158
88437
|
return createRequestFunction$6(await ActionsApiAxiosParamCreator_ManageDataSourcePermissions(requestParameters.dataSourceId, requestParameters.dataSourcePermissionAssignment, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
88159
88438
|
}
|
|
88160
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
|
+
/**
|
|
88161
88466
|
* Manage Permissions for a Organization
|
|
88162
88467
|
* @summary Manage Permissions for a Organization
|
|
88163
88468
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -88548,6 +88853,17 @@ var ActionsApi$4 = class extends BaseAPI$6 {
|
|
|
88548
88853
|
}
|
|
88549
88854
|
/**
|
|
88550
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
|
+
*
|
|
88551
88867
|
* @summary Get Available Assignees
|
|
88552
88868
|
* @param {ActionsApiAvailableAssigneesRequest} requestParameters Request parameters.
|
|
88553
88869
|
* @param {*} [options] Override http request option.
|
|
@@ -88613,6 +88929,17 @@ var ActionsApi$4 = class extends BaseAPI$6 {
|
|
|
88613
88929
|
return ActionsApi_DeleteWorkspaceAutomations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
88614
88930
|
}
|
|
88615
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
|
+
/**
|
|
88616
88943
|
* Generate logical data model (LDM) from physical data model (PDM) stored in data source.
|
|
88617
88944
|
* @summary Generate logical data model (LDM) from physical data model (PDM)
|
|
88618
88945
|
* @param {ActionsApiGenerateLogicalModelRequest} requestParameters Request parameters.
|
|
@@ -88680,6 +89007,17 @@ var ActionsApi$4 = class extends BaseAPI$6 {
|
|
|
88680
89007
|
}
|
|
88681
89008
|
/**
|
|
88682
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
|
+
*
|
|
88683
89021
|
* @param {ActionsApiListWorkspaceUserGroupsRequest} requestParameters Request parameters.
|
|
88684
89022
|
* @param {*} [options] Override http request option.
|
|
88685
89023
|
* @throws {RequiredError}
|
|
@@ -88700,6 +89038,17 @@ var ActionsApi$4 = class extends BaseAPI$6 {
|
|
|
88700
89038
|
}
|
|
88701
89039
|
/**
|
|
88702
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
|
+
*
|
|
88703
89052
|
* @summary Manage Permissions for a Dashboard
|
|
88704
89053
|
* @param {ActionsApiManageDashboardPermissionsRequest} requestParameters Request parameters.
|
|
88705
89054
|
* @param {*} [options] Override http request option.
|
|
@@ -88721,6 +89070,28 @@ var ActionsApi$4 = class extends BaseAPI$6 {
|
|
|
88721
89070
|
return ActionsApi_ManageDataSourcePermissions(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
88722
89071
|
}
|
|
88723
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
|
+
/**
|
|
88724
89095
|
* Manage Permissions for a Organization
|
|
88725
89096
|
* @summary Manage Permissions for a Organization
|
|
88726
89097
|
* @param {ActionsApiManageOrganizationPermissionsRequest} requestParameters Request parameters.
|
|
@@ -89027,6 +89398,35 @@ var ActionsApi$4 = class extends BaseAPI$6 {
|
|
|
89027
89398
|
}
|
|
89028
89399
|
};
|
|
89029
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
|
+
/**
|
|
89030
89430
|
* AI Agent - behavior configuration for AI assistants
|
|
89031
89431
|
* @summary Post Agent entities
|
|
89032
89432
|
* @param {JsonApiAgentInDocument} jsonApiAgentInDocument
|
|
@@ -89798,41 +90198,6 @@ async function EntitiesApiAxiosParamCreator_CreateEntityKnowledgeRecommendations
|
|
|
89798
90198
|
};
|
|
89799
90199
|
}
|
|
89800
90200
|
/**
|
|
89801
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
89802
|
-
* @summary Post LLM endpoint entities
|
|
89803
|
-
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
89804
|
-
* @param {*} [options] Override http request option.
|
|
89805
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
89806
|
-
* @throws {RequiredError}
|
|
89807
|
-
*/
|
|
89808
|
-
async function EntitiesApiAxiosParamCreator_CreateEntityLlmEndpoints(jsonApiLlmEndpointInDocument, options = {}, configuration) {
|
|
89809
|
-
assertParamExists$6("createEntityLlmEndpoints", "jsonApiLlmEndpointInDocument", jsonApiLlmEndpointInDocument);
|
|
89810
|
-
const localVarUrlObj = new URL(`/api/v1/entities/llmEndpoints`, DUMMY_BASE_URL$6);
|
|
89811
|
-
let baseOptions;
|
|
89812
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
89813
|
-
const localVarRequestOptions = {
|
|
89814
|
-
method: "POST",
|
|
89815
|
-
...baseOptions,
|
|
89816
|
-
...options
|
|
89817
|
-
};
|
|
89818
|
-
const localVarHeaderParameter = {};
|
|
89819
|
-
const localVarQueryParameter = {};
|
|
89820
|
-
const consumes = ["application/vnd.gooddata.api+json", "application/json"];
|
|
89821
|
-
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
89822
|
-
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
89823
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
89824
|
-
localVarRequestOptions.headers = {
|
|
89825
|
-
...localVarHeaderParameter,
|
|
89826
|
-
...headersFromBaseOptions,
|
|
89827
|
-
...options.headers
|
|
89828
|
-
};
|
|
89829
|
-
localVarRequestOptions.data = typeof jsonApiLlmEndpointInDocument !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(jsonApiLlmEndpointInDocument !== void 0 ? jsonApiLlmEndpointInDocument : {}) : jsonApiLlmEndpointInDocument || "";
|
|
89830
|
-
return {
|
|
89831
|
-
url: toPathString$6(localVarUrlObj),
|
|
89832
|
-
options: localVarRequestOptions
|
|
89833
|
-
};
|
|
89834
|
-
}
|
|
89835
|
-
/**
|
|
89836
90201
|
* LLM Provider - connection configuration for LLM services
|
|
89837
90202
|
* @summary Post LLM Provider entities
|
|
89838
90203
|
* @param {JsonApiLlmProviderInDocument} jsonApiLlmProviderInDocument
|
|
@@ -90458,6 +90823,38 @@ async function EntitiesApiAxiosParamCreator_CreateEntityWorkspaces(jsonApiWorksp
|
|
|
90458
90823
|
};
|
|
90459
90824
|
}
|
|
90460
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
|
+
/**
|
|
90461
90858
|
*
|
|
90462
90859
|
* @summary Delete Agent entity
|
|
90463
90860
|
* @param {string} id
|
|
@@ -91120,38 +91517,6 @@ async function EntitiesApiAxiosParamCreator_DeleteEntityKnowledgeRecommendations
|
|
|
91120
91517
|
};
|
|
91121
91518
|
}
|
|
91122
91519
|
/**
|
|
91123
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
91124
|
-
* @summary Delete LLM endpoint entity
|
|
91125
|
-
* @param {string} id
|
|
91126
|
-
* @param {*} [options] Override http request option.
|
|
91127
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
91128
|
-
* @throws {RequiredError}
|
|
91129
|
-
*/
|
|
91130
|
-
async function EntitiesApiAxiosParamCreator_DeleteEntityLlmEndpoints(id, options = {}, configuration) {
|
|
91131
|
-
assertParamExists$6("deleteEntityLlmEndpoints", "id", id);
|
|
91132
|
-
const localVarPath = `/api/v1/entities/llmEndpoints/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
91133
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
91134
|
-
let baseOptions;
|
|
91135
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
91136
|
-
const localVarRequestOptions = {
|
|
91137
|
-
method: "DELETE",
|
|
91138
|
-
...baseOptions,
|
|
91139
|
-
...options
|
|
91140
|
-
};
|
|
91141
|
-
const localVarHeaderParameter = {};
|
|
91142
|
-
setSearchParams$6(localVarUrlObj, {});
|
|
91143
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
91144
|
-
localVarRequestOptions.headers = {
|
|
91145
|
-
...localVarHeaderParameter,
|
|
91146
|
-
...headersFromBaseOptions,
|
|
91147
|
-
...options.headers
|
|
91148
|
-
};
|
|
91149
|
-
return {
|
|
91150
|
-
url: toPathString$6(localVarUrlObj),
|
|
91151
|
-
options: localVarRequestOptions
|
|
91152
|
-
};
|
|
91153
|
-
}
|
|
91154
|
-
/**
|
|
91155
91520
|
*
|
|
91156
91521
|
* @summary Delete LLM Provider entity
|
|
91157
91522
|
* @param {string} id
|
|
@@ -91724,6 +92089,35 @@ async function EntitiesApiAxiosParamCreator_GetAllAutomationsWorkspaceAutomation
|
|
|
91724
92089
|
};
|
|
91725
92090
|
}
|
|
91726
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
|
+
/**
|
|
91727
92121
|
*
|
|
91728
92122
|
* @summary Get all Agent entities
|
|
91729
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\').
|
|
@@ -92938,46 +93332,6 @@ async function EntitiesApiAxiosParamCreator_GetAllEntitiesLabels(workspaceId, or
|
|
|
92938
93332
|
};
|
|
92939
93333
|
}
|
|
92940
93334
|
/**
|
|
92941
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
92942
|
-
* @summary Get all LLM endpoint entities
|
|
92943
|
-
* @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\').
|
|
92944
|
-
* @param {number} [page] Zero-based page index (0..N)
|
|
92945
|
-
* @param {number} [size] The size of the page to be returned
|
|
92946
|
-
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
92947
|
-
* @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
92948
|
-
* @param {*} [options] Override http request option.
|
|
92949
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
92950
|
-
* @throws {RequiredError}
|
|
92951
|
-
*/
|
|
92952
|
-
async function EntitiesApiAxiosParamCreator_GetAllEntitiesLlmEndpoints(filter, page, size, sort, metaInclude, options = {}, configuration) {
|
|
92953
|
-
const localVarUrlObj = new URL(`/api/v1/entities/llmEndpoints`, DUMMY_BASE_URL$6);
|
|
92954
|
-
let baseOptions;
|
|
92955
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
92956
|
-
const localVarRequestOptions = {
|
|
92957
|
-
method: "GET",
|
|
92958
|
-
...baseOptions,
|
|
92959
|
-
...options
|
|
92960
|
-
};
|
|
92961
|
-
const localVarHeaderParameter = {};
|
|
92962
|
-
const localVarQueryParameter = {};
|
|
92963
|
-
if (filter !== void 0) localVarQueryParameter["filter"] = filter;
|
|
92964
|
-
if (page !== void 0) localVarQueryParameter["page"] = page;
|
|
92965
|
-
if (size !== void 0) localVarQueryParameter["size"] = size;
|
|
92966
|
-
if (sort) localVarQueryParameter["sort"] = sort;
|
|
92967
|
-
if (metaInclude) localVarQueryParameter["metaInclude"] = Array.from(metaInclude).join(COLLECTION_FORMATS$1.csv);
|
|
92968
|
-
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
92969
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
92970
|
-
localVarRequestOptions.headers = {
|
|
92971
|
-
...localVarHeaderParameter,
|
|
92972
|
-
...headersFromBaseOptions,
|
|
92973
|
-
...options.headers
|
|
92974
|
-
};
|
|
92975
|
-
return {
|
|
92976
|
-
url: toPathString$6(localVarUrlObj),
|
|
92977
|
-
options: localVarRequestOptions
|
|
92978
|
-
};
|
|
92979
|
-
}
|
|
92980
|
-
/**
|
|
92981
93335
|
*
|
|
92982
93336
|
* @summary Get all LLM Provider entities
|
|
92983
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\').
|
|
@@ -93835,6 +94189,38 @@ async function EntitiesApiAxiosParamCreator_GetDataSourceDrivers(options = {}, c
|
|
|
93835
94189
|
};
|
|
93836
94190
|
}
|
|
93837
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
|
+
/**
|
|
93838
94224
|
*
|
|
93839
94225
|
* @summary Get Agent entity
|
|
93840
94226
|
* @param {string} id
|
|
@@ -94935,41 +95321,6 @@ async function EntitiesApiAxiosParamCreator_GetEntityLabels(workspaceId, objectI
|
|
|
94935
95321
|
};
|
|
94936
95322
|
}
|
|
94937
95323
|
/**
|
|
94938
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
94939
|
-
* @summary Get LLM endpoint entity
|
|
94940
|
-
* @param {string} id
|
|
94941
|
-
* @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\').
|
|
94942
|
-
* @param {*} [options] Override http request option.
|
|
94943
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
94944
|
-
* @throws {RequiredError}
|
|
94945
|
-
*/
|
|
94946
|
-
async function EntitiesApiAxiosParamCreator_GetEntityLlmEndpoints(id, filter, options = {}, configuration) {
|
|
94947
|
-
assertParamExists$6("getEntityLlmEndpoints", "id", id);
|
|
94948
|
-
const localVarPath = `/api/v1/entities/llmEndpoints/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
94949
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
94950
|
-
let baseOptions;
|
|
94951
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
94952
|
-
const localVarRequestOptions = {
|
|
94953
|
-
method: "GET",
|
|
94954
|
-
...baseOptions,
|
|
94955
|
-
...options
|
|
94956
|
-
};
|
|
94957
|
-
const localVarHeaderParameter = {};
|
|
94958
|
-
const localVarQueryParameter = {};
|
|
94959
|
-
if (filter !== void 0) localVarQueryParameter["filter"] = filter;
|
|
94960
|
-
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
94961
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
94962
|
-
localVarRequestOptions.headers = {
|
|
94963
|
-
...localVarHeaderParameter,
|
|
94964
|
-
...headersFromBaseOptions,
|
|
94965
|
-
...options.headers
|
|
94966
|
-
};
|
|
94967
|
-
return {
|
|
94968
|
-
url: toPathString$6(localVarUrlObj),
|
|
94969
|
-
options: localVarRequestOptions
|
|
94970
|
-
};
|
|
94971
|
-
}
|
|
94972
|
-
/**
|
|
94973
95324
|
*
|
|
94974
95325
|
* @summary Get LLM Provider entity
|
|
94975
95326
|
* @param {string} id
|
|
@@ -95743,6 +96094,38 @@ async function EntitiesApiAxiosParamCreator_GetOrganization(metaInclude, options
|
|
|
95743
96094
|
};
|
|
95744
96095
|
}
|
|
95745
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
|
+
/**
|
|
95746
96129
|
*
|
|
95747
96130
|
* @summary Patch Agent entity
|
|
95748
96131
|
* @param {string} id
|
|
@@ -96675,46 +97058,6 @@ async function EntitiesApiAxiosParamCreator_PatchEntityLabels(workspaceId, objec
|
|
|
96675
97058
|
};
|
|
96676
97059
|
}
|
|
96677
97060
|
/**
|
|
96678
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
96679
|
-
* @summary Patch LLM endpoint entity
|
|
96680
|
-
* @param {string} id
|
|
96681
|
-
* @param {JsonApiLlmEndpointPatchDocument} jsonApiLlmEndpointPatchDocument
|
|
96682
|
-
* @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\').
|
|
96683
|
-
* @param {*} [options] Override http request option.
|
|
96684
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
96685
|
-
* @throws {RequiredError}
|
|
96686
|
-
*/
|
|
96687
|
-
async function EntitiesApiAxiosParamCreator_PatchEntityLlmEndpoints(id, jsonApiLlmEndpointPatchDocument, filter, options = {}, configuration) {
|
|
96688
|
-
assertParamExists$6("patchEntityLlmEndpoints", "id", id);
|
|
96689
|
-
assertParamExists$6("patchEntityLlmEndpoints", "jsonApiLlmEndpointPatchDocument", jsonApiLlmEndpointPatchDocument);
|
|
96690
|
-
const localVarPath = `/api/v1/entities/llmEndpoints/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
96691
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
96692
|
-
let baseOptions;
|
|
96693
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
96694
|
-
const localVarRequestOptions = {
|
|
96695
|
-
method: "PATCH",
|
|
96696
|
-
...baseOptions,
|
|
96697
|
-
...options
|
|
96698
|
-
};
|
|
96699
|
-
const localVarHeaderParameter = {};
|
|
96700
|
-
const localVarQueryParameter = {};
|
|
96701
|
-
if (filter !== void 0) localVarQueryParameter["filter"] = filter;
|
|
96702
|
-
const consumes = ["application/vnd.gooddata.api+json", "application/json"];
|
|
96703
|
-
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
96704
|
-
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
96705
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
96706
|
-
localVarRequestOptions.headers = {
|
|
96707
|
-
...localVarHeaderParameter,
|
|
96708
|
-
...headersFromBaseOptions,
|
|
96709
|
-
...options.headers
|
|
96710
|
-
};
|
|
96711
|
-
localVarRequestOptions.data = typeof jsonApiLlmEndpointPatchDocument !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(jsonApiLlmEndpointPatchDocument !== void 0 ? jsonApiLlmEndpointPatchDocument : {}) : jsonApiLlmEndpointPatchDocument || "";
|
|
96712
|
-
return {
|
|
96713
|
-
url: toPathString$6(localVarUrlObj),
|
|
96714
|
-
options: localVarRequestOptions
|
|
96715
|
-
};
|
|
96716
|
-
}
|
|
96717
|
-
/**
|
|
96718
97061
|
*
|
|
96719
97062
|
* @summary Patch LLM Provider entity
|
|
96720
97063
|
* @param {string} id
|
|
@@ -98359,6 +98702,38 @@ async function EntitiesApiAxiosParamCreator_SearchEntitiesWorkspaceSettings(work
|
|
|
98359
98702
|
};
|
|
98360
98703
|
}
|
|
98361
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
|
+
/**
|
|
98362
98737
|
*
|
|
98363
98738
|
* @summary Put Agent entity
|
|
98364
98739
|
* @param {string} id
|
|
@@ -99199,46 +99574,6 @@ async function EntitiesApiAxiosParamCreator_UpdateEntityKnowledgeRecommendations
|
|
|
99199
99574
|
};
|
|
99200
99575
|
}
|
|
99201
99576
|
/**
|
|
99202
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
99203
|
-
* @summary PUT LLM endpoint entity
|
|
99204
|
-
* @param {string} id
|
|
99205
|
-
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
99206
|
-
* @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\').
|
|
99207
|
-
* @param {*} [options] Override http request option.
|
|
99208
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
99209
|
-
* @throws {RequiredError}
|
|
99210
|
-
*/
|
|
99211
|
-
async function EntitiesApiAxiosParamCreator_UpdateEntityLlmEndpoints(id, jsonApiLlmEndpointInDocument, filter, options = {}, configuration) {
|
|
99212
|
-
assertParamExists$6("updateEntityLlmEndpoints", "id", id);
|
|
99213
|
-
assertParamExists$6("updateEntityLlmEndpoints", "jsonApiLlmEndpointInDocument", jsonApiLlmEndpointInDocument);
|
|
99214
|
-
const localVarPath = `/api/v1/entities/llmEndpoints/{id}`.replace(`{id}`, encodeURIComponent(String(id)));
|
|
99215
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$6);
|
|
99216
|
-
let baseOptions;
|
|
99217
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
99218
|
-
const localVarRequestOptions = {
|
|
99219
|
-
method: "PUT",
|
|
99220
|
-
...baseOptions,
|
|
99221
|
-
...options
|
|
99222
|
-
};
|
|
99223
|
-
const localVarHeaderParameter = {};
|
|
99224
|
-
const localVarQueryParameter = {};
|
|
99225
|
-
if (filter !== void 0) localVarQueryParameter["filter"] = filter;
|
|
99226
|
-
const consumes = ["application/vnd.gooddata.api+json", "application/json"];
|
|
99227
|
-
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
99228
|
-
setSearchParams$6(localVarUrlObj, localVarQueryParameter);
|
|
99229
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
99230
|
-
localVarRequestOptions.headers = {
|
|
99231
|
-
...localVarHeaderParameter,
|
|
99232
|
-
...headersFromBaseOptions,
|
|
99233
|
-
...options.headers
|
|
99234
|
-
};
|
|
99235
|
-
localVarRequestOptions.data = typeof jsonApiLlmEndpointInDocument !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(jsonApiLlmEndpointInDocument !== void 0 ? jsonApiLlmEndpointInDocument : {}) : jsonApiLlmEndpointInDocument || "";
|
|
99236
|
-
return {
|
|
99237
|
-
url: toPathString$6(localVarUrlObj),
|
|
99238
|
-
options: localVarRequestOptions
|
|
99239
|
-
};
|
|
99240
|
-
}
|
|
99241
|
-
/**
|
|
99242
99577
|
*
|
|
99243
99578
|
* @summary PUT LLM Provider entity
|
|
99244
99579
|
* @param {string} id
|
|
@@ -99959,6 +100294,18 @@ async function EntitiesApiAxiosParamCreator_UpdateEntityWorkspaces(id, jsonApiWo
|
|
|
99959
100294
|
};
|
|
99960
100295
|
}
|
|
99961
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
|
+
/**
|
|
99962
100309
|
* AI Agent - behavior configuration for AI assistants
|
|
99963
100310
|
* @summary Post Agent entities
|
|
99964
100311
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -100219,19 +100566,6 @@ async function EntitiesApi_CreateEntityKnowledgeRecommendations(axios, basePath,
|
|
|
100219
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);
|
|
100220
100567
|
}
|
|
100221
100568
|
/**
|
|
100222
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
100223
|
-
* @summary Post LLM endpoint entities
|
|
100224
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
100225
|
-
* @param {string} basePath Base path.
|
|
100226
|
-
* @param {EntitiesApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
100227
|
-
* @param {*} [options] Override http request option.
|
|
100228
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
100229
|
-
* @throws {RequiredError}
|
|
100230
|
-
*/
|
|
100231
|
-
async function EntitiesApi_CreateEntityLlmEndpoints(axios, basePath, requestParameters, options, configuration) {
|
|
100232
|
-
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_CreateEntityLlmEndpoints(requestParameters.jsonApiLlmEndpointInDocument, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
100233
|
-
}
|
|
100234
|
-
/**
|
|
100235
100569
|
* LLM Provider - connection configuration for LLM services
|
|
100236
100570
|
* @summary Post LLM Provider entities
|
|
100237
100571
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -100440,6 +100774,19 @@ async function EntitiesApi_CreateEntityWorkspaces(axios, basePath, requestParame
|
|
|
100440
100774
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_CreateEntityWorkspaces(requestParameters.jsonApiWorkspaceInDocument, requestParameters.include, requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
100441
100775
|
}
|
|
100442
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
|
+
/**
|
|
100443
100790
|
*
|
|
100444
100791
|
* @summary Delete Agent entity
|
|
100445
100792
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -100700,19 +101047,6 @@ async function EntitiesApi_DeleteEntityKnowledgeRecommendations(axios, basePath,
|
|
|
100700
101047
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_DeleteEntityKnowledgeRecommendations(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
100701
101048
|
}
|
|
100702
101049
|
/**
|
|
100703
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
100704
|
-
* @summary Delete LLM endpoint entity
|
|
100705
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
100706
|
-
* @param {string} basePath Base path.
|
|
100707
|
-
* @param {EntitiesApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
100708
|
-
* @param {*} [options] Override http request option.
|
|
100709
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
100710
|
-
* @throws {RequiredError}
|
|
100711
|
-
*/
|
|
100712
|
-
async function EntitiesApi_DeleteEntityLlmEndpoints(axios, basePath, requestParameters, options, configuration) {
|
|
100713
|
-
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_DeleteEntityLlmEndpoints(requestParameters.id, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
100714
|
-
}
|
|
100715
|
-
/**
|
|
100716
101050
|
*
|
|
100717
101051
|
* @summary Delete LLM Provider entity
|
|
100718
101052
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -100934,6 +101268,18 @@ async function EntitiesApi_GetAllAutomationsWorkspaceAutomations(axios, basePath
|
|
|
100934
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);
|
|
100935
101269
|
}
|
|
100936
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
|
+
/**
|
|
100937
101283
|
*
|
|
100938
101284
|
* @summary Get all Agent entities
|
|
100939
101285
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -101285,19 +101631,6 @@ async function EntitiesApi_GetAllEntitiesLabels(axios, basePath, requestParamete
|
|
|
101285
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);
|
|
101286
101632
|
}
|
|
101287
101633
|
/**
|
|
101288
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
101289
|
-
* @summary Get all LLM endpoint entities
|
|
101290
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
101291
|
-
* @param {string} basePath Base path.
|
|
101292
|
-
* @param {EntitiesApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
101293
|
-
* @param {*} [options] Override http request option.
|
|
101294
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
101295
|
-
* @throws {RequiredError}
|
|
101296
|
-
*/
|
|
101297
|
-
async function EntitiesApi_GetAllEntitiesLlmEndpoints(axios, basePath, requestParameters, options, configuration) {
|
|
101298
|
-
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);
|
|
101299
|
-
}
|
|
101300
|
-
/**
|
|
101301
101634
|
*
|
|
101302
101635
|
* @summary Get all LLM Provider entities
|
|
101303
101636
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -101556,6 +101889,19 @@ async function EntitiesApi_GetDataSourceDrivers(axios, basePath, options, config
|
|
|
101556
101889
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_GetDataSourceDrivers(options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
101557
101890
|
}
|
|
101558
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
|
+
/**
|
|
101559
101905
|
*
|
|
101560
101906
|
* @summary Get Agent entity
|
|
101561
101907
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -101920,19 +102266,6 @@ async function EntitiesApi_GetEntityLabels(axios, basePath, requestParameters, o
|
|
|
101920
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);
|
|
101921
102267
|
}
|
|
101922
102268
|
/**
|
|
101923
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
101924
|
-
* @summary Get LLM endpoint entity
|
|
101925
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
101926
|
-
* @param {string} basePath Base path.
|
|
101927
|
-
* @param {EntitiesApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
101928
|
-
* @param {*} [options] Override http request option.
|
|
101929
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
101930
|
-
* @throws {RequiredError}
|
|
101931
|
-
*/
|
|
101932
|
-
async function EntitiesApi_GetEntityLlmEndpoints(axios, basePath, requestParameters, options, configuration) {
|
|
101933
|
-
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_GetEntityLlmEndpoints(requestParameters.id, requestParameters.filter, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
101934
|
-
}
|
|
101935
|
-
/**
|
|
101936
102269
|
*
|
|
101937
102270
|
* @summary Get LLM Provider entity
|
|
101938
102271
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -102193,6 +102526,19 @@ async function EntitiesApi_GetOrganization(axios, basePath, requestParameters, o
|
|
|
102193
102526
|
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_GetOrganization(requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
102194
102527
|
}
|
|
102195
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
|
+
/**
|
|
102196
102542
|
*
|
|
102197
102543
|
* @summary Patch Agent entity
|
|
102198
102544
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -102479,19 +102825,6 @@ async function EntitiesApi_PatchEntityLabels(axios, basePath, requestParameters,
|
|
|
102479
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);
|
|
102480
102826
|
}
|
|
102481
102827
|
/**
|
|
102482
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
102483
|
-
* @summary Patch LLM endpoint entity
|
|
102484
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
102485
|
-
* @param {string} basePath Base path.
|
|
102486
|
-
* @param {EntitiesApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
102487
|
-
* @param {*} [options] Override http request option.
|
|
102488
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
102489
|
-
* @throws {RequiredError}
|
|
102490
|
-
*/
|
|
102491
|
-
async function EntitiesApi_PatchEntityLlmEndpoints(axios, basePath, requestParameters, options, configuration) {
|
|
102492
|
-
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_PatchEntityLlmEndpoints(requestParameters.id, requestParameters.jsonApiLlmEndpointPatchDocument, requestParameters.filter, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
102493
|
-
}
|
|
102494
|
-
/**
|
|
102495
102828
|
*
|
|
102496
102829
|
* @summary Patch LLM Provider entity
|
|
102497
102830
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -102999,6 +103332,19 @@ async function EntitiesApi_SearchEntitiesWorkspaceSettings(axios, basePath, requ
|
|
|
102999
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);
|
|
103000
103333
|
}
|
|
103001
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
|
+
/**
|
|
103002
103348
|
*
|
|
103003
103349
|
* @summary Put Agent entity
|
|
103004
103350
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -103259,19 +103605,6 @@ async function EntitiesApi_UpdateEntityKnowledgeRecommendations(axios, basePath,
|
|
|
103259
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);
|
|
103260
103606
|
}
|
|
103261
103607
|
/**
|
|
103262
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
103263
|
-
* @summary PUT LLM endpoint entity
|
|
103264
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
103265
|
-
* @param {string} basePath Base path.
|
|
103266
|
-
* @param {EntitiesApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
103267
|
-
* @param {*} [options] Override http request option.
|
|
103268
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
103269
|
-
* @throws {RequiredError}
|
|
103270
|
-
*/
|
|
103271
|
-
async function EntitiesApi_UpdateEntityLlmEndpoints(axios, basePath, requestParameters, options, configuration) {
|
|
103272
|
-
return createRequestFunction$6(await EntitiesApiAxiosParamCreator_UpdateEntityLlmEndpoints(requestParameters.id, requestParameters.jsonApiLlmEndpointInDocument, requestParameters.filter, options || {}, configuration), axios$1, BASE_PATH$6, configuration)(axios, basePath);
|
|
103273
|
-
}
|
|
103274
|
-
/**
|
|
103275
103608
|
*
|
|
103276
103609
|
* @summary PUT LLM Provider entity
|
|
103277
103610
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -103499,6 +103832,17 @@ async function EntitiesApi_UpdateEntityWorkspaces(axios, basePath, requestParame
|
|
|
103499
103832
|
* @extends {BaseAPI}
|
|
103500
103833
|
*/
|
|
103501
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
|
+
}
|
|
103502
103846
|
/**
|
|
103503
103847
|
* AI Agent - behavior configuration for AI assistants
|
|
103504
103848
|
* @summary Post Agent entities
|
|
@@ -103720,18 +104064,6 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
103720
104064
|
return EntitiesApi_CreateEntityKnowledgeRecommendations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
103721
104065
|
}
|
|
103722
104066
|
/**
|
|
103723
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
103724
|
-
* @summary Post LLM endpoint entities
|
|
103725
|
-
* @param {EntitiesApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
103726
|
-
* @param {*} [options] Override http request option.
|
|
103727
|
-
* @deprecated
|
|
103728
|
-
* @throws {RequiredError}
|
|
103729
|
-
* @memberof EntitiesApi
|
|
103730
|
-
*/
|
|
103731
|
-
createEntityLlmEndpoints(requestParameters, options) {
|
|
103732
|
-
return EntitiesApi_CreateEntityLlmEndpoints(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
103733
|
-
}
|
|
103734
|
-
/**
|
|
103735
104067
|
* LLM Provider - connection configuration for LLM services
|
|
103736
104068
|
* @summary Post LLM Provider entities
|
|
103737
104069
|
* @param {EntitiesApiCreateEntityLlmProvidersRequest} requestParameters Request parameters.
|
|
@@ -103908,6 +104240,18 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
103908
104240
|
return EntitiesApi_CreateEntityWorkspaces(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
103909
104241
|
}
|
|
103910
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
|
+
/**
|
|
103911
104255
|
*
|
|
103912
104256
|
* @summary Delete Agent entity
|
|
103913
104257
|
* @param {EntitiesApiDeleteEntityAgentsRequest} requestParameters Request parameters.
|
|
@@ -104128,18 +104472,6 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
104128
104472
|
return EntitiesApi_DeleteEntityKnowledgeRecommendations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
104129
104473
|
}
|
|
104130
104474
|
/**
|
|
104131
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
104132
|
-
* @summary Delete LLM endpoint entity
|
|
104133
|
-
* @param {EntitiesApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
104134
|
-
* @param {*} [options] Override http request option.
|
|
104135
|
-
* @deprecated
|
|
104136
|
-
* @throws {RequiredError}
|
|
104137
|
-
* @memberof EntitiesApi
|
|
104138
|
-
*/
|
|
104139
|
-
deleteEntityLlmEndpoints(requestParameters, options) {
|
|
104140
|
-
return EntitiesApi_DeleteEntityLlmEndpoints(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
104141
|
-
}
|
|
104142
|
-
/**
|
|
104143
104475
|
*
|
|
104144
104476
|
* @summary Delete LLM Provider entity
|
|
104145
104477
|
* @param {EntitiesApiDeleteEntityLlmProvidersRequest} requestParameters Request parameters.
|
|
@@ -104327,6 +104659,17 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
104327
104659
|
return EntitiesApi_GetAllAutomationsWorkspaceAutomations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
104328
104660
|
}
|
|
104329
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
|
+
/**
|
|
104330
104673
|
*
|
|
104331
104674
|
* @summary Get all Agent entities
|
|
104332
104675
|
* @param {EntitiesApiGetAllEntitiesAgentsRequest} requestParameters Request parameters.
|
|
@@ -104624,18 +104967,6 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
104624
104967
|
return EntitiesApi_GetAllEntitiesLabels(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
104625
104968
|
}
|
|
104626
104969
|
/**
|
|
104627
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
104628
|
-
* @summary Get all LLM endpoint entities
|
|
104629
|
-
* @param {EntitiesApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
104630
|
-
* @param {*} [options] Override http request option.
|
|
104631
|
-
* @deprecated
|
|
104632
|
-
* @throws {RequiredError}
|
|
104633
|
-
* @memberof EntitiesApi
|
|
104634
|
-
*/
|
|
104635
|
-
getAllEntitiesLlmEndpoints(requestParameters = {}, options) {
|
|
104636
|
-
return EntitiesApi_GetAllEntitiesLlmEndpoints(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
104637
|
-
}
|
|
104638
|
-
/**
|
|
104639
104970
|
*
|
|
104640
104971
|
* @summary Get all LLM Provider entities
|
|
104641
104972
|
* @param {EntitiesApiGetAllEntitiesLlmProvidersRequest} requestParameters Request parameters.
|
|
@@ -104854,6 +105185,18 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
104854
105185
|
return EntitiesApi_GetDataSourceDrivers(this.axios, this.basePath, options, this.configuration);
|
|
104855
105186
|
}
|
|
104856
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
|
+
/**
|
|
104857
105200
|
*
|
|
104858
105201
|
* @summary Get Agent entity
|
|
104859
105202
|
* @param {EntitiesApiGetEntityAgentsRequest} requestParameters Request parameters.
|
|
@@ -105162,18 +105505,6 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
105162
105505
|
return EntitiesApi_GetEntityLabels(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
105163
105506
|
}
|
|
105164
105507
|
/**
|
|
105165
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
105166
|
-
* @summary Get LLM endpoint entity
|
|
105167
|
-
* @param {EntitiesApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
105168
|
-
* @param {*} [options] Override http request option.
|
|
105169
|
-
* @deprecated
|
|
105170
|
-
* @throws {RequiredError}
|
|
105171
|
-
* @memberof EntitiesApi
|
|
105172
|
-
*/
|
|
105173
|
-
getEntityLlmEndpoints(requestParameters, options) {
|
|
105174
|
-
return EntitiesApi_GetEntityLlmEndpoints(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
105175
|
-
}
|
|
105176
|
-
/**
|
|
105177
105508
|
*
|
|
105178
105509
|
* @summary Get LLM Provider entity
|
|
105179
105510
|
* @param {EntitiesApiGetEntityLlmProvidersRequest} requestParameters Request parameters.
|
|
@@ -105394,6 +105725,18 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
105394
105725
|
return EntitiesApi_GetOrganization(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
105395
105726
|
}
|
|
105396
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
|
+
/**
|
|
105397
105740
|
*
|
|
105398
105741
|
* @summary Patch Agent entity
|
|
105399
105742
|
* @param {EntitiesApiPatchEntityAgentsRequest} requestParameters Request parameters.
|
|
@@ -105636,18 +105979,6 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
105636
105979
|
return EntitiesApi_PatchEntityLabels(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
105637
105980
|
}
|
|
105638
105981
|
/**
|
|
105639
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
105640
|
-
* @summary Patch LLM endpoint entity
|
|
105641
|
-
* @param {EntitiesApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
105642
|
-
* @param {*} [options] Override http request option.
|
|
105643
|
-
* @deprecated
|
|
105644
|
-
* @throws {RequiredError}
|
|
105645
|
-
* @memberof EntitiesApi
|
|
105646
|
-
*/
|
|
105647
|
-
patchEntityLlmEndpoints(requestParameters, options) {
|
|
105648
|
-
return EntitiesApi_PatchEntityLlmEndpoints(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
105649
|
-
}
|
|
105650
|
-
/**
|
|
105651
105982
|
*
|
|
105652
105983
|
* @summary Patch LLM Provider entity
|
|
105653
105984
|
* @param {EntitiesApiPatchEntityLlmProvidersRequest} requestParameters Request parameters.
|
|
@@ -106077,6 +106408,18 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
106077
106408
|
return EntitiesApi_SearchEntitiesWorkspaceSettings(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
106078
106409
|
}
|
|
106079
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
|
+
/**
|
|
106080
106423
|
*
|
|
106081
106424
|
* @summary Put Agent entity
|
|
106082
106425
|
* @param {EntitiesApiUpdateEntityAgentsRequest} requestParameters Request parameters.
|
|
@@ -106297,18 +106640,6 @@ var EntitiesApi = class extends BaseAPI$6 {
|
|
|
106297
106640
|
return EntitiesApi_UpdateEntityKnowledgeRecommendations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
106298
106641
|
}
|
|
106299
106642
|
/**
|
|
106300
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
106301
|
-
* @summary PUT LLM endpoint entity
|
|
106302
|
-
* @param {EntitiesApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
106303
|
-
* @param {*} [options] Override http request option.
|
|
106304
|
-
* @deprecated
|
|
106305
|
-
* @throws {RequiredError}
|
|
106306
|
-
* @memberof EntitiesApi
|
|
106307
|
-
*/
|
|
106308
|
-
updateEntityLlmEndpoints(requestParameters, options) {
|
|
106309
|
-
return EntitiesApi_UpdateEntityLlmEndpoints(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
106310
|
-
}
|
|
106311
|
-
/**
|
|
106312
106643
|
*
|
|
106313
106644
|
* @summary PUT LLM Provider entity
|
|
106314
106645
|
* @param {EntitiesApiUpdateEntityLlmProvidersRequest} requestParameters Request parameters.
|
|
@@ -111213,39 +111544,6 @@ async function ActionsApiAxiosParamCreator_CancelWorkflow(workspaceId, runId, op
|
|
|
111213
111544
|
};
|
|
111214
111545
|
}
|
|
111215
111546
|
/**
|
|
111216
|
-
*
|
|
111217
|
-
* @param {string} workspaceId Workspace identifier
|
|
111218
|
-
* @param {string} runId
|
|
111219
|
-
* @param {*} [options] Override http request option.
|
|
111220
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
111221
|
-
* @throws {RequiredError}
|
|
111222
|
-
*/
|
|
111223
|
-
async function ActionsApiAxiosParamCreator_CancelWorkflow1(workspaceId, runId, options = {}, configuration) {
|
|
111224
|
-
assertParamExists$3("cancelWorkflow1", "workspaceId", workspaceId);
|
|
111225
|
-
assertParamExists$3("cancelWorkflow1", "runId", runId);
|
|
111226
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/cancel`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{runId}`, encodeURIComponent(String(runId)));
|
|
111227
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
111228
|
-
let baseOptions;
|
|
111229
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
111230
|
-
const localVarRequestOptions = {
|
|
111231
|
-
method: "POST",
|
|
111232
|
-
...baseOptions,
|
|
111233
|
-
...options
|
|
111234
|
-
};
|
|
111235
|
-
const localVarHeaderParameter = {};
|
|
111236
|
-
setSearchParams$3(localVarUrlObj, {});
|
|
111237
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
111238
|
-
localVarRequestOptions.headers = {
|
|
111239
|
-
...localVarHeaderParameter,
|
|
111240
|
-
...headersFromBaseOptions,
|
|
111241
|
-
...options.headers
|
|
111242
|
-
};
|
|
111243
|
-
return {
|
|
111244
|
-
url: toPathString$3(localVarUrlObj),
|
|
111245
|
-
options: localVarRequestOptions
|
|
111246
|
-
};
|
|
111247
|
-
}
|
|
111248
|
-
/**
|
|
111249
111547
|
* Computes change analysis for the provided execution definition.
|
|
111250
111548
|
* @summary Compute change analysis
|
|
111251
111549
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -111792,43 +112090,6 @@ async function ActionsApiAxiosParamCreator_GenerateDashboardSummary(workspaceId,
|
|
|
111792
112090
|
};
|
|
111793
112091
|
}
|
|
111794
112092
|
/**
|
|
111795
|
-
*
|
|
111796
|
-
* @param {string} workspaceId Workspace identifier
|
|
111797
|
-
* @param {DashboardSummaryRequestDto} dashboardSummaryRequestDto
|
|
111798
|
-
* @param {*} [options] Override http request option.
|
|
111799
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
111800
|
-
* @throws {RequiredError}
|
|
111801
|
-
*/
|
|
111802
|
-
async function ActionsApiAxiosParamCreator_GenerateDashboardSummary1(workspaceId, dashboardSummaryRequestDto, options = {}, configuration) {
|
|
111803
|
-
assertParamExists$3("generateDashboardSummary1", "workspaceId", workspaceId);
|
|
111804
|
-
assertParamExists$3("generateDashboardSummary1", "dashboardSummaryRequestDto", dashboardSummaryRequestDto);
|
|
111805
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/dashboardSummary`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
111806
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
111807
|
-
let baseOptions;
|
|
111808
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
111809
|
-
const localVarRequestOptions = {
|
|
111810
|
-
method: "POST",
|
|
111811
|
-
...baseOptions,
|
|
111812
|
-
...options
|
|
111813
|
-
};
|
|
111814
|
-
const localVarHeaderParameter = {};
|
|
111815
|
-
const localVarQueryParameter = {};
|
|
111816
|
-
const consumes = ["application/json"];
|
|
111817
|
-
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
111818
|
-
setSearchParams$3(localVarUrlObj, localVarQueryParameter);
|
|
111819
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
111820
|
-
localVarRequestOptions.headers = {
|
|
111821
|
-
...localVarHeaderParameter,
|
|
111822
|
-
...headersFromBaseOptions,
|
|
111823
|
-
...options.headers
|
|
111824
|
-
};
|
|
111825
|
-
localVarRequestOptions.data = typeof dashboardSummaryRequestDto !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(dashboardSummaryRequestDto !== void 0 ? dashboardSummaryRequestDto : {}) : dashboardSummaryRequestDto || "";
|
|
111826
|
-
return {
|
|
111827
|
-
url: toPathString$3(localVarUrlObj),
|
|
111828
|
-
options: localVarRequestOptions
|
|
111829
|
-
};
|
|
111830
|
-
}
|
|
111831
|
-
/**
|
|
111832
112093
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
111833
112094
|
* @summary Generate Description for Analytics Object
|
|
111834
112095
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -111867,43 +112128,6 @@ async function ActionsApiAxiosParamCreator_GenerateDescription(workspaceId, gene
|
|
|
111867
112128
|
};
|
|
111868
112129
|
}
|
|
111869
112130
|
/**
|
|
111870
|
-
*
|
|
111871
|
-
* @param {string} workspaceId Workspace identifier
|
|
111872
|
-
* @param {KnowledgeRecommendationsRequestDto} knowledgeRecommendationsRequestDto
|
|
111873
|
-
* @param {*} [options] Override http request option.
|
|
111874
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
111875
|
-
* @throws {RequiredError}
|
|
111876
|
-
*/
|
|
111877
|
-
async function ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(workspaceId, knowledgeRecommendationsRequestDto, options = {}, configuration) {
|
|
111878
|
-
assertParamExists$3("generateKnowledgeRecommendations", "workspaceId", workspaceId);
|
|
111879
|
-
assertParamExists$3("generateKnowledgeRecommendations", "knowledgeRecommendationsRequestDto", knowledgeRecommendationsRequestDto);
|
|
111880
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/knowledgeRecommendations`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
111881
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
111882
|
-
let baseOptions;
|
|
111883
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
111884
|
-
const localVarRequestOptions = {
|
|
111885
|
-
method: "POST",
|
|
111886
|
-
...baseOptions,
|
|
111887
|
-
...options
|
|
111888
|
-
};
|
|
111889
|
-
const localVarHeaderParameter = {};
|
|
111890
|
-
const localVarQueryParameter = {};
|
|
111891
|
-
const consumes = ["application/json"];
|
|
111892
|
-
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
111893
|
-
setSearchParams$3(localVarUrlObj, localVarQueryParameter);
|
|
111894
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
111895
|
-
localVarRequestOptions.headers = {
|
|
111896
|
-
...localVarHeaderParameter,
|
|
111897
|
-
...headersFromBaseOptions,
|
|
111898
|
-
...options.headers
|
|
111899
|
-
};
|
|
111900
|
-
localVarRequestOptions.data = typeof knowledgeRecommendationsRequestDto !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(knowledgeRecommendationsRequestDto !== void 0 ? knowledgeRecommendationsRequestDto : {}) : knowledgeRecommendationsRequestDto || "";
|
|
111901
|
-
return {
|
|
111902
|
-
url: toPathString$3(localVarUrlObj),
|
|
111903
|
-
options: localVarRequestOptions
|
|
111904
|
-
};
|
|
111905
|
-
}
|
|
111906
|
-
/**
|
|
111907
112131
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
111908
112132
|
* @summary Generate Title for Analytics Object
|
|
111909
112133
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -112041,39 +112265,6 @@ async function ActionsApiAxiosParamCreator_GetWorkflowStatus(workspaceId, runId,
|
|
|
112041
112265
|
};
|
|
112042
112266
|
}
|
|
112043
112267
|
/**
|
|
112044
|
-
*
|
|
112045
|
-
* @param {string} workspaceId Workspace identifier
|
|
112046
|
-
* @param {string} runId
|
|
112047
|
-
* @param {*} [options] Override http request option.
|
|
112048
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
112049
|
-
* @throws {RequiredError}
|
|
112050
|
-
*/
|
|
112051
|
-
async function ActionsApiAxiosParamCreator_GetWorkflowStatus1(workspaceId, runId, options = {}, configuration) {
|
|
112052
|
-
assertParamExists$3("getWorkflowStatus1", "workspaceId", workspaceId);
|
|
112053
|
-
assertParamExists$3("getWorkflowStatus1", "runId", runId);
|
|
112054
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/status`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{runId}`, encodeURIComponent(String(runId)));
|
|
112055
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
112056
|
-
let baseOptions;
|
|
112057
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
112058
|
-
const localVarRequestOptions = {
|
|
112059
|
-
method: "GET",
|
|
112060
|
-
...baseOptions,
|
|
112061
|
-
...options
|
|
112062
|
-
};
|
|
112063
|
-
const localVarHeaderParameter = {};
|
|
112064
|
-
setSearchParams$3(localVarUrlObj, {});
|
|
112065
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
112066
|
-
localVarRequestOptions.headers = {
|
|
112067
|
-
...localVarHeaderParameter,
|
|
112068
|
-
...headersFromBaseOptions,
|
|
112069
|
-
...options.headers
|
|
112070
|
-
};
|
|
112071
|
-
return {
|
|
112072
|
-
url: toPathString$3(localVarUrlObj),
|
|
112073
|
-
options: localVarRequestOptions
|
|
112074
|
-
};
|
|
112075
|
-
}
|
|
112076
|
-
/**
|
|
112077
112268
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
112078
112269
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
112079
112270
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -112677,45 +112868,6 @@ async function ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculation(works
|
|
|
112677
112868
|
};
|
|
112678
112869
|
}
|
|
112679
112870
|
/**
|
|
112680
|
-
*
|
|
112681
|
-
* @param {string} workspaceId Workspace identifier
|
|
112682
|
-
* @param {string} runId
|
|
112683
|
-
* @param {FeedbackRequestDto} feedbackRequestDto
|
|
112684
|
-
* @param {*} [options] Override http request option.
|
|
112685
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
112686
|
-
* @throws {RequiredError}
|
|
112687
|
-
*/
|
|
112688
|
-
async function ActionsApiAxiosParamCreator_UserFeedback(workspaceId, runId, feedbackRequestDto, options = {}, configuration) {
|
|
112689
|
-
assertParamExists$3("userFeedback", "workspaceId", workspaceId);
|
|
112690
|
-
assertParamExists$3("userFeedback", "runId", runId);
|
|
112691
|
-
assertParamExists$3("userFeedback", "feedbackRequestDto", feedbackRequestDto);
|
|
112692
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/feedback`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{runId}`, encodeURIComponent(String(runId)));
|
|
112693
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$3);
|
|
112694
|
-
let baseOptions;
|
|
112695
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
112696
|
-
const localVarRequestOptions = {
|
|
112697
|
-
method: "POST",
|
|
112698
|
-
...baseOptions,
|
|
112699
|
-
...options
|
|
112700
|
-
};
|
|
112701
|
-
const localVarHeaderParameter = {};
|
|
112702
|
-
const localVarQueryParameter = {};
|
|
112703
|
-
const consumes = ["application/json"];
|
|
112704
|
-
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
112705
|
-
setSearchParams$3(localVarUrlObj, localVarQueryParameter);
|
|
112706
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
112707
|
-
localVarRequestOptions.headers = {
|
|
112708
|
-
...localVarHeaderParameter,
|
|
112709
|
-
...headersFromBaseOptions,
|
|
112710
|
-
...options.headers
|
|
112711
|
-
};
|
|
112712
|
-
localVarRequestOptions.data = typeof feedbackRequestDto !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(feedbackRequestDto !== void 0 ? feedbackRequestDto : {}) : feedbackRequestDto || "";
|
|
112713
|
-
return {
|
|
112714
|
-
url: toPathString$3(localVarUrlObj),
|
|
112715
|
-
options: localVarRequestOptions
|
|
112716
|
-
};
|
|
112717
|
-
}
|
|
112718
|
-
/**
|
|
112719
112871
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
112720
112872
|
* @summary Validate LLM Endpoint (Removed)
|
|
112721
112873
|
* @param {*} [options] Override http request option.
|
|
@@ -112893,18 +113045,6 @@ async function ActionsApi_CancelWorkflow(axios, basePath, requestParameters, opt
|
|
|
112893
113045
|
return createRequestFunction$3(await ActionsApiAxiosParamCreator_CancelWorkflow(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
112894
113046
|
}
|
|
112895
113047
|
/**
|
|
112896
|
-
*
|
|
112897
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
112898
|
-
* @param {string} basePath Base path.
|
|
112899
|
-
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
112900
|
-
* @param {*} [options] Override http request option.
|
|
112901
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
112902
|
-
* @throws {RequiredError}
|
|
112903
|
-
*/
|
|
112904
|
-
async function ActionsApi_CancelWorkflow1(axios, basePath, requestParameters, options, configuration) {
|
|
112905
|
-
return createRequestFunction$3(await ActionsApiAxiosParamCreator_CancelWorkflow1(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
112906
|
-
}
|
|
112907
|
-
/**
|
|
112908
113048
|
* Computes change analysis for the provided execution definition.
|
|
112909
113049
|
* @summary Compute change analysis
|
|
112910
113050
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -113086,18 +113226,6 @@ async function ActionsApi_GenerateDashboardSummary(axios, basePath, requestParam
|
|
|
113086
113226
|
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GenerateDashboardSummary(requestParameters.workspaceId, requestParameters.workflowDashboardSummaryRequestDto, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113087
113227
|
}
|
|
113088
113228
|
/**
|
|
113089
|
-
*
|
|
113090
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
113091
|
-
* @param {string} basePath Base path.
|
|
113092
|
-
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
113093
|
-
* @param {*} [options] Override http request option.
|
|
113094
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
113095
|
-
* @throws {RequiredError}
|
|
113096
|
-
*/
|
|
113097
|
-
async function ActionsApi_GenerateDashboardSummary1(axios, basePath, requestParameters, options, configuration) {
|
|
113098
|
-
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GenerateDashboardSummary1(requestParameters.workspaceId, requestParameters.dashboardSummaryRequestDto, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113099
|
-
}
|
|
113100
|
-
/**
|
|
113101
113229
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
113102
113230
|
* @summary Generate Description for Analytics Object
|
|
113103
113231
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -113111,18 +113239,6 @@ async function ActionsApi_GenerateDescription(axios, basePath, requestParameters
|
|
|
113111
113239
|
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GenerateDescription(requestParameters.workspaceId, requestParameters.generateDescriptionRequest, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113112
113240
|
}
|
|
113113
113241
|
/**
|
|
113114
|
-
*
|
|
113115
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
113116
|
-
* @param {string} basePath Base path.
|
|
113117
|
-
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
113118
|
-
* @param {*} [options] Override http request option.
|
|
113119
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
113120
|
-
* @throws {RequiredError}
|
|
113121
|
-
*/
|
|
113122
|
-
async function ActionsApi_GenerateKnowledgeRecommendations(axios, basePath, requestParameters, options, configuration) {
|
|
113123
|
-
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(requestParameters.workspaceId, requestParameters.knowledgeRecommendationsRequestDto, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113124
|
-
}
|
|
113125
|
-
/**
|
|
113126
113242
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
113127
113243
|
* @summary Generate Title for Analytics Object
|
|
113128
113244
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -113174,18 +113290,6 @@ async function ActionsApi_GetWorkflowStatus(axios, basePath, requestParameters,
|
|
|
113174
113290
|
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GetWorkflowStatus(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113175
113291
|
}
|
|
113176
113292
|
/**
|
|
113177
|
-
*
|
|
113178
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
113179
|
-
* @param {string} basePath Base path.
|
|
113180
|
-
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
113181
|
-
* @param {*} [options] Override http request option.
|
|
113182
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
113183
|
-
* @throws {RequiredError}
|
|
113184
|
-
*/
|
|
113185
|
-
async function ActionsApi_GetWorkflowStatus1(axios, basePath, requestParameters, options, configuration) {
|
|
113186
|
-
return createRequestFunction$3(await ActionsApiAxiosParamCreator_GetWorkflowStatus1(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113187
|
-
}
|
|
113188
|
-
/**
|
|
113189
113293
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
113190
113294
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
113191
113295
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -113407,18 +113511,6 @@ async function ActionsApi_TriggerQualityIssuesCalculation(axios, basePath, reque
|
|
|
113407
113511
|
return createRequestFunction$3(await ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculation(requestParameters.workspaceId, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113408
113512
|
}
|
|
113409
113513
|
/**
|
|
113410
|
-
*
|
|
113411
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
113412
|
-
* @param {string} basePath Base path.
|
|
113413
|
-
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
113414
|
-
* @param {*} [options] Override http request option.
|
|
113415
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
113416
|
-
* @throws {RequiredError}
|
|
113417
|
-
*/
|
|
113418
|
-
async function ActionsApi_UserFeedback(axios, basePath, requestParameters, options, configuration) {
|
|
113419
|
-
return createRequestFunction$3(await ActionsApiAxiosParamCreator_UserFeedback(requestParameters.workspaceId, requestParameters.runId, requestParameters.feedbackRequestDto, options || {}, configuration), axios$1, BASE_PATH$3, configuration)(axios, basePath);
|
|
113420
|
-
}
|
|
113421
|
-
/**
|
|
113422
113514
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
113423
113515
|
* @summary Validate LLM Endpoint (Removed)
|
|
113424
113516
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -113551,16 +113643,6 @@ var ActionsApi$2 = class extends BaseAPI$3 {
|
|
|
113551
113643
|
return ActionsApi_CancelWorkflow(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113552
113644
|
}
|
|
113553
113645
|
/**
|
|
113554
|
-
*
|
|
113555
|
-
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
113556
|
-
* @param {*} [options] Override http request option.
|
|
113557
|
-
* @throws {RequiredError}
|
|
113558
|
-
* @memberof ActionsApi
|
|
113559
|
-
*/
|
|
113560
|
-
cancelWorkflow1(requestParameters, options) {
|
|
113561
|
-
return ActionsApi_CancelWorkflow1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113562
|
-
}
|
|
113563
|
-
/**
|
|
113564
113646
|
* Computes change analysis for the provided execution definition.
|
|
113565
113647
|
* @summary Compute change analysis
|
|
113566
113648
|
* @param {ActionsApiChangeAnalysisRequest} requestParameters Request parameters.
|
|
@@ -113714,16 +113796,6 @@ var ActionsApi$2 = class extends BaseAPI$3 {
|
|
|
113714
113796
|
return ActionsApi_GenerateDashboardSummary(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113715
113797
|
}
|
|
113716
113798
|
/**
|
|
113717
|
-
*
|
|
113718
|
-
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
113719
|
-
* @param {*} [options] Override http request option.
|
|
113720
|
-
* @throws {RequiredError}
|
|
113721
|
-
* @memberof ActionsApi
|
|
113722
|
-
*/
|
|
113723
|
-
generateDashboardSummary1(requestParameters, options) {
|
|
113724
|
-
return ActionsApi_GenerateDashboardSummary1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113725
|
-
}
|
|
113726
|
-
/**
|
|
113727
113799
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
113728
113800
|
* @summary Generate Description for Analytics Object
|
|
113729
113801
|
* @param {ActionsApiGenerateDescriptionRequest} requestParameters Request parameters.
|
|
@@ -113735,16 +113807,6 @@ var ActionsApi$2 = class extends BaseAPI$3 {
|
|
|
113735
113807
|
return ActionsApi_GenerateDescription(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113736
113808
|
}
|
|
113737
113809
|
/**
|
|
113738
|
-
*
|
|
113739
|
-
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
113740
|
-
* @param {*} [options] Override http request option.
|
|
113741
|
-
* @throws {RequiredError}
|
|
113742
|
-
* @memberof ActionsApi
|
|
113743
|
-
*/
|
|
113744
|
-
generateKnowledgeRecommendations(requestParameters, options) {
|
|
113745
|
-
return ActionsApi_GenerateKnowledgeRecommendations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113746
|
-
}
|
|
113747
|
-
/**
|
|
113748
113810
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
113749
113811
|
* @summary Generate Title for Analytics Object
|
|
113750
113812
|
* @param {ActionsApiGenerateTitleRequest} requestParameters Request parameters.
|
|
@@ -113788,16 +113850,6 @@ var ActionsApi$2 = class extends BaseAPI$3 {
|
|
|
113788
113850
|
return ActionsApi_GetWorkflowStatus(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113789
113851
|
}
|
|
113790
113852
|
/**
|
|
113791
|
-
*
|
|
113792
|
-
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
113793
|
-
* @param {*} [options] Override http request option.
|
|
113794
|
-
* @throws {RequiredError}
|
|
113795
|
-
* @memberof ActionsApi
|
|
113796
|
-
*/
|
|
113797
|
-
getWorkflowStatus1(requestParameters, options) {
|
|
113798
|
-
return ActionsApi_GetWorkflowStatus1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113799
|
-
}
|
|
113800
|
-
/**
|
|
113801
113853
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
113802
113854
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
113803
113855
|
* @param {ActionsApiKeyDriverAnalysisRequest} requestParameters Request parameters.
|
|
@@ -113986,16 +114038,6 @@ var ActionsApi$2 = class extends BaseAPI$3 {
|
|
|
113986
114038
|
return ActionsApi_TriggerQualityIssuesCalculation(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113987
114039
|
}
|
|
113988
114040
|
/**
|
|
113989
|
-
*
|
|
113990
|
-
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
113991
|
-
* @param {*} [options] Override http request option.
|
|
113992
|
-
* @throws {RequiredError}
|
|
113993
|
-
* @memberof ActionsApi
|
|
113994
|
-
*/
|
|
113995
|
-
userFeedback(requestParameters, options) {
|
|
113996
|
-
return ActionsApi_UserFeedback(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
113997
|
-
}
|
|
113998
|
-
/**
|
|
113999
114041
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
114000
114042
|
* @summary Validate LLM Endpoint (Removed)
|
|
114001
114043
|
* @param {*} [options] Override http request option.
|
|
@@ -123680,10 +123722,13 @@ function yamlFilterContextToDeclarative(baseId, yamlFilters) {
|
|
|
123680
123722
|
...treatNullValuesAs === void 0 ? {} : { treatNullValuesAs }
|
|
123681
123723
|
} };
|
|
123682
123724
|
});
|
|
123725
|
+
const measureRef = createIdentifier(mvf.using ?? "", { forceMetric: true }) ?? createLocalIdentifier(mvf.using ?? "");
|
|
123726
|
+
const dimensionality = mvf.dimensionality?.map((item) => createIdentifier(item)).filter((item) => item !== null);
|
|
123683
123727
|
return { dashboardMeasureValueFilter: {
|
|
123684
|
-
measure:
|
|
123728
|
+
measure: measureRef,
|
|
123685
123729
|
localIdentifier: key,
|
|
123686
123730
|
...conditions && conditions.length > 0 ? { conditions } : {},
|
|
123731
|
+
...dimensionality && dimensionality.length > 0 ? { dimensionality } : {},
|
|
123687
123732
|
...mvf.title ? { title: mvf.title } : {}
|
|
123688
123733
|
} };
|
|
123689
123734
|
}
|
|
@@ -125631,6 +125676,17 @@ function declarativeMeasureValueFilterToYaml(filter, errorContext) {
|
|
|
125631
125676
|
conditions.forEach((c) => conditionsSeq.add(measureValueConditionToYaml(c)));
|
|
125632
125677
|
measureValueFilter.add(new import_dist$1.Pair("conditions", conditionsSeq));
|
|
125633
125678
|
}
|
|
125679
|
+
if (filter.dashboardMeasureValueFilter.dimensionality?.length) {
|
|
125680
|
+
const dimensionalitySeq = new import_dist$1.YAMLSeq();
|
|
125681
|
+
filter.dashboardMeasureValueFilter.dimensionality.forEach((item, i) => {
|
|
125682
|
+
dimensionalitySeq.add(getIdentifier(item, void 0, updateErrorContext(errorContext, { path: [
|
|
125683
|
+
"dashboardMeasureValueFilter",
|
|
125684
|
+
"dimensionality",
|
|
125685
|
+
i.toString()
|
|
125686
|
+
] })));
|
|
125687
|
+
});
|
|
125688
|
+
measureValueFilter.add(new import_dist$1.Pair("dimensionality", dimensionalitySeq));
|
|
125689
|
+
}
|
|
125634
125690
|
if (conditions.some(conditionHasTreatNullValuesAs)) measureValueFilter.add(new import_dist$1.Pair("null_values_as_zero", true));
|
|
125635
125691
|
return measureValueFilter;
|
|
125636
125692
|
}
|
|
@@ -193637,7 +193693,7 @@ async function get(state, opts) {
|
|
|
193637
193693
|
//#endregion
|
|
193638
193694
|
//#region ../code/package.json
|
|
193639
193695
|
var name = "@gooddata/code";
|
|
193640
|
-
var version = "0.36.0-alpha.
|
|
193696
|
+
var version = "0.36.0-alpha.3";
|
|
193641
193697
|
//#endregion
|
|
193642
193698
|
//#region ../code/esm/actions/initialize.js
|
|
193643
193699
|
async function initialize(state, emitter, options) {
|