@gooddata/api-client-tiger 11.26.0 → 11.27.0-alpha.1
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/esm/__version.d.ts +1 -1
- package/esm/__version.d.ts.map +1 -1
- package/esm/__version.js +1 -1
- package/esm/__version.js.map +1 -1
- package/esm/api-client-tiger.d.ts +191 -476
- package/esm/gd-tiger-model/TigerTypes.d.ts +33 -2
- package/esm/gd-tiger-model/TigerTypes.d.ts.map +1 -1
- package/esm/gd-tiger-model/typeGuards.d.ts.map +1 -1
- package/esm/gd-tiger-model/typeGuards.js +6 -0
- package/esm/gd-tiger-model/typeGuards.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +2 -2
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.d.ts +26 -1
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +97 -471
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +114 -342
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +5 -5
|
@@ -1384,12 +1384,11 @@ export async function APITokensApiAxiosParamCreator_CreateEntityApiTokens(userId
|
|
|
1384
1384
|
* @summary Delete an API Token for a user
|
|
1385
1385
|
* @param {string} userId
|
|
1386
1386
|
* @param {string} id
|
|
1387
|
-
* @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\').
|
|
1388
1387
|
* @param {*} [options] Override http request option.
|
|
1389
1388
|
* @param {Configuration} [configuration] Optional configuration.
|
|
1390
1389
|
* @throws {RequiredError}
|
|
1391
1390
|
*/
|
|
1392
|
-
export async function APITokensApiAxiosParamCreator_DeleteEntityApiTokens(userId, id,
|
|
1391
|
+
export async function APITokensApiAxiosParamCreator_DeleteEntityApiTokens(userId, id, options = {}, configuration) {
|
|
1393
1392
|
// verify required parameter 'userId' is not null or undefined
|
|
1394
1393
|
assertParamExists('deleteEntityApiTokens', 'userId', userId);
|
|
1395
1394
|
// verify required parameter 'id' is not null or undefined
|
|
@@ -1406,9 +1405,6 @@ export async function APITokensApiAxiosParamCreator_DeleteEntityApiTokens(userId
|
|
|
1406
1405
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
1407
1406
|
const localVarHeaderParameter = {};
|
|
1408
1407
|
const localVarQueryParameter = {};
|
|
1409
|
-
if (filter !== undefined) {
|
|
1410
|
-
localVarQueryParameter['filter'] = filter;
|
|
1411
|
-
}
|
|
1412
1408
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1413
1409
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
1414
1410
|
localVarRequestOptions.headers = {
|
|
@@ -1546,7 +1542,7 @@ export async function APITokensApi_CreateEntityApiTokens(axios, basePath, reques
|
|
|
1546
1542
|
* @throws {RequiredError}
|
|
1547
1543
|
*/
|
|
1548
1544
|
export async function APITokensApi_DeleteEntityApiTokens(axios, basePath, requestParameters, options, configuration) {
|
|
1549
|
-
const localVarAxiosArgs = await APITokensApiAxiosParamCreator_DeleteEntityApiTokens(requestParameters.userId, requestParameters.id,
|
|
1545
|
+
const localVarAxiosArgs = await APITokensApiAxiosParamCreator_DeleteEntityApiTokens(requestParameters.userId, requestParameters.id, options || {}, configuration);
|
|
1550
1546
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
1551
1547
|
}
|
|
1552
1548
|
// APITokensApi Api FP
|
|
@@ -4728,12 +4724,11 @@ export async function AnalyticalDashboardControllerApiAxiosParamCreator_CreateEn
|
|
|
4728
4724
|
* @summary Delete a Dashboard
|
|
4729
4725
|
* @param {string} workspaceId
|
|
4730
4726
|
* @param {string} objectId
|
|
4731
|
-
* @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\').
|
|
4732
4727
|
* @param {*} [options] Override http request option.
|
|
4733
4728
|
* @param {Configuration} [configuration] Optional configuration.
|
|
4734
4729
|
* @throws {RequiredError}
|
|
4735
4730
|
*/
|
|
4736
|
-
export async function AnalyticalDashboardControllerApiAxiosParamCreator_DeleteEntityAnalyticalDashboards(workspaceId, objectId,
|
|
4731
|
+
export async function AnalyticalDashboardControllerApiAxiosParamCreator_DeleteEntityAnalyticalDashboards(workspaceId, objectId, options = {}, configuration) {
|
|
4737
4732
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
4738
4733
|
assertParamExists('deleteEntityAnalyticalDashboards', 'workspaceId', workspaceId);
|
|
4739
4734
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -4750,9 +4745,6 @@ export async function AnalyticalDashboardControllerApiAxiosParamCreator_DeleteEn
|
|
|
4750
4745
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
4751
4746
|
const localVarHeaderParameter = {};
|
|
4752
4747
|
const localVarQueryParameter = {};
|
|
4753
|
-
if (filter !== undefined) {
|
|
4754
|
-
localVarQueryParameter['filter'] = filter;
|
|
4755
|
-
}
|
|
4756
4748
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4757
4749
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
4758
4750
|
localVarRequestOptions.headers = {
|
|
@@ -5098,7 +5090,7 @@ export async function AnalyticalDashboardControllerApi_CreateEntityAnalyticalDas
|
|
|
5098
5090
|
* @throws {RequiredError}
|
|
5099
5091
|
*/
|
|
5100
5092
|
export async function AnalyticalDashboardControllerApi_DeleteEntityAnalyticalDashboards(axios, basePath, requestParameters, options, configuration) {
|
|
5101
|
-
const localVarAxiosArgs = await AnalyticalDashboardControllerApiAxiosParamCreator_DeleteEntityAnalyticalDashboards(requestParameters.workspaceId, requestParameters.objectId,
|
|
5093
|
+
const localVarAxiosArgs = await AnalyticalDashboardControllerApiAxiosParamCreator_DeleteEntityAnalyticalDashboards(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
5102
5094
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5103
5095
|
}
|
|
5104
5096
|
// AnalyticalDashboardControllerApi Api FP
|
|
@@ -5467,12 +5459,11 @@ export async function ApiTokenControllerApiAxiosParamCreator_CreateEntityApiToke
|
|
|
5467
5459
|
* @summary Delete an API Token for a user
|
|
5468
5460
|
* @param {string} userId
|
|
5469
5461
|
* @param {string} id
|
|
5470
|
-
* @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\').
|
|
5471
5462
|
* @param {*} [options] Override http request option.
|
|
5472
5463
|
* @param {Configuration} [configuration] Optional configuration.
|
|
5473
5464
|
* @throws {RequiredError}
|
|
5474
5465
|
*/
|
|
5475
|
-
export async function ApiTokenControllerApiAxiosParamCreator_DeleteEntityApiTokens(userId, id,
|
|
5466
|
+
export async function ApiTokenControllerApiAxiosParamCreator_DeleteEntityApiTokens(userId, id, options = {}, configuration) {
|
|
5476
5467
|
// verify required parameter 'userId' is not null or undefined
|
|
5477
5468
|
assertParamExists('deleteEntityApiTokens', 'userId', userId);
|
|
5478
5469
|
// verify required parameter 'id' is not null or undefined
|
|
@@ -5489,9 +5480,6 @@ export async function ApiTokenControllerApiAxiosParamCreator_DeleteEntityApiToke
|
|
|
5489
5480
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
5490
5481
|
const localVarHeaderParameter = {};
|
|
5491
5482
|
const localVarQueryParameter = {};
|
|
5492
|
-
if (filter !== undefined) {
|
|
5493
|
-
localVarQueryParameter['filter'] = filter;
|
|
5494
|
-
}
|
|
5495
5483
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5496
5484
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
5497
5485
|
localVarRequestOptions.headers = {
|
|
@@ -5629,7 +5617,7 @@ export async function ApiTokenControllerApi_CreateEntityApiTokens(axios, basePat
|
|
|
5629
5617
|
* @throws {RequiredError}
|
|
5630
5618
|
*/
|
|
5631
5619
|
export async function ApiTokenControllerApi_DeleteEntityApiTokens(axios, basePath, requestParameters, options, configuration) {
|
|
5632
|
-
const localVarAxiosArgs = await ApiTokenControllerApiAxiosParamCreator_DeleteEntityApiTokens(requestParameters.userId, requestParameters.id,
|
|
5620
|
+
const localVarAxiosArgs = await ApiTokenControllerApiAxiosParamCreator_DeleteEntityApiTokens(requestParameters.userId, requestParameters.id, options || {}, configuration);
|
|
5633
5621
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5634
5622
|
}
|
|
5635
5623
|
// ApiTokenControllerApi Api FP
|
|
@@ -7026,12 +7014,11 @@ export async function AttributeHierarchiesApiAxiosParamCreator_CreateEntityAttri
|
|
|
7026
7014
|
* @summary Delete an Attribute Hierarchy
|
|
7027
7015
|
* @param {string} workspaceId
|
|
7028
7016
|
* @param {string} objectId
|
|
7029
|
-
* @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\').
|
|
7030
7017
|
* @param {*} [options] Override http request option.
|
|
7031
7018
|
* @param {Configuration} [configuration] Optional configuration.
|
|
7032
7019
|
* @throws {RequiredError}
|
|
7033
7020
|
*/
|
|
7034
|
-
export async function AttributeHierarchiesApiAxiosParamCreator_DeleteEntityAttributeHierarchies(workspaceId, objectId,
|
|
7021
|
+
export async function AttributeHierarchiesApiAxiosParamCreator_DeleteEntityAttributeHierarchies(workspaceId, objectId, options = {}, configuration) {
|
|
7035
7022
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
7036
7023
|
assertParamExists('deleteEntityAttributeHierarchies', 'workspaceId', workspaceId);
|
|
7037
7024
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -7048,9 +7035,6 @@ export async function AttributeHierarchiesApiAxiosParamCreator_DeleteEntityAttri
|
|
|
7048
7035
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
7049
7036
|
const localVarHeaderParameter = {};
|
|
7050
7037
|
const localVarQueryParameter = {};
|
|
7051
|
-
if (filter !== undefined) {
|
|
7052
|
-
localVarQueryParameter['filter'] = filter;
|
|
7053
|
-
}
|
|
7054
7038
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7055
7039
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
7056
7040
|
localVarRequestOptions.headers = {
|
|
@@ -7396,7 +7380,7 @@ export async function AttributeHierarchiesApi_CreateEntityAttributeHierarchies(a
|
|
|
7396
7380
|
* @throws {RequiredError}
|
|
7397
7381
|
*/
|
|
7398
7382
|
export async function AttributeHierarchiesApi_DeleteEntityAttributeHierarchies(axios, basePath, requestParameters, options, configuration) {
|
|
7399
|
-
const localVarAxiosArgs = await AttributeHierarchiesApiAxiosParamCreator_DeleteEntityAttributeHierarchies(requestParameters.workspaceId, requestParameters.objectId,
|
|
7383
|
+
const localVarAxiosArgs = await AttributeHierarchiesApiAxiosParamCreator_DeleteEntityAttributeHierarchies(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
7400
7384
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
7401
7385
|
}
|
|
7402
7386
|
// AttributeHierarchiesApi Api FP
|
|
@@ -7624,12 +7608,11 @@ export async function AttributeHierarchyControllerApiAxiosParamCreator_CreateEnt
|
|
|
7624
7608
|
* @summary Delete an Attribute Hierarchy
|
|
7625
7609
|
* @param {string} workspaceId
|
|
7626
7610
|
* @param {string} objectId
|
|
7627
|
-
* @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\').
|
|
7628
7611
|
* @param {*} [options] Override http request option.
|
|
7629
7612
|
* @param {Configuration} [configuration] Optional configuration.
|
|
7630
7613
|
* @throws {RequiredError}
|
|
7631
7614
|
*/
|
|
7632
|
-
export async function AttributeHierarchyControllerApiAxiosParamCreator_DeleteEntityAttributeHierarchies(workspaceId, objectId,
|
|
7615
|
+
export async function AttributeHierarchyControllerApiAxiosParamCreator_DeleteEntityAttributeHierarchies(workspaceId, objectId, options = {}, configuration) {
|
|
7633
7616
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
7634
7617
|
assertParamExists('deleteEntityAttributeHierarchies', 'workspaceId', workspaceId);
|
|
7635
7618
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -7646,9 +7629,6 @@ export async function AttributeHierarchyControllerApiAxiosParamCreator_DeleteEnt
|
|
|
7646
7629
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
7647
7630
|
const localVarHeaderParameter = {};
|
|
7648
7631
|
const localVarQueryParameter = {};
|
|
7649
|
-
if (filter !== undefined) {
|
|
7650
|
-
localVarQueryParameter['filter'] = filter;
|
|
7651
|
-
}
|
|
7652
7632
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7653
7633
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
7654
7634
|
localVarRequestOptions.headers = {
|
|
@@ -7994,7 +7974,7 @@ export async function AttributeHierarchyControllerApi_CreateEntityAttributeHiera
|
|
|
7994
7974
|
* @throws {RequiredError}
|
|
7995
7975
|
*/
|
|
7996
7976
|
export async function AttributeHierarchyControllerApi_DeleteEntityAttributeHierarchies(axios, basePath, requestParameters, options, configuration) {
|
|
7997
|
-
const localVarAxiosArgs = await AttributeHierarchyControllerApiAxiosParamCreator_DeleteEntityAttributeHierarchies(requestParameters.workspaceId, requestParameters.objectId,
|
|
7977
|
+
const localVarAxiosArgs = await AttributeHierarchyControllerApiAxiosParamCreator_DeleteEntityAttributeHierarchies(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
7998
7978
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
7999
7979
|
}
|
|
8000
7980
|
// AttributeHierarchyControllerApi Api FP
|
|
@@ -8577,12 +8557,11 @@ export async function AutomationControllerApiAxiosParamCreator_CreateEntityAutom
|
|
|
8577
8557
|
* @summary Delete an Automation
|
|
8578
8558
|
* @param {string} workspaceId
|
|
8579
8559
|
* @param {string} objectId
|
|
8580
|
-
* @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\').
|
|
8581
8560
|
* @param {*} [options] Override http request option.
|
|
8582
8561
|
* @param {Configuration} [configuration] Optional configuration.
|
|
8583
8562
|
* @throws {RequiredError}
|
|
8584
8563
|
*/
|
|
8585
|
-
export async function AutomationControllerApiAxiosParamCreator_DeleteEntityAutomations(workspaceId, objectId,
|
|
8564
|
+
export async function AutomationControllerApiAxiosParamCreator_DeleteEntityAutomations(workspaceId, objectId, options = {}, configuration) {
|
|
8586
8565
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
8587
8566
|
assertParamExists('deleteEntityAutomations', 'workspaceId', workspaceId);
|
|
8588
8567
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -8599,9 +8578,6 @@ export async function AutomationControllerApiAxiosParamCreator_DeleteEntityAutom
|
|
|
8599
8578
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
8600
8579
|
const localVarHeaderParameter = {};
|
|
8601
8580
|
const localVarQueryParameter = {};
|
|
8602
|
-
if (filter !== undefined) {
|
|
8603
|
-
localVarQueryParameter['filter'] = filter;
|
|
8604
|
-
}
|
|
8605
8581
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8606
8582
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
8607
8583
|
localVarRequestOptions.headers = {
|
|
@@ -8947,7 +8923,7 @@ export async function AutomationControllerApi_CreateEntityAutomations(axios, bas
|
|
|
8947
8923
|
* @throws {RequiredError}
|
|
8948
8924
|
*/
|
|
8949
8925
|
export async function AutomationControllerApi_DeleteEntityAutomations(axios, basePath, requestParameters, options, configuration) {
|
|
8950
|
-
const localVarAxiosArgs = await AutomationControllerApiAxiosParamCreator_DeleteEntityAutomations(requestParameters.workspaceId, requestParameters.objectId,
|
|
8926
|
+
const localVarAxiosArgs = await AutomationControllerApiAxiosParamCreator_DeleteEntityAutomations(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
8951
8927
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
8952
8928
|
}
|
|
8953
8929
|
// AutomationControllerApi Api FP
|
|
@@ -9264,12 +9240,11 @@ export async function AutomationsApiAxiosParamCreator_CreateEntityAutomations(wo
|
|
|
9264
9240
|
* @summary Delete an Automation
|
|
9265
9241
|
* @param {string} workspaceId
|
|
9266
9242
|
* @param {string} objectId
|
|
9267
|
-
* @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\').
|
|
9268
9243
|
* @param {*} [options] Override http request option.
|
|
9269
9244
|
* @param {Configuration} [configuration] Optional configuration.
|
|
9270
9245
|
* @throws {RequiredError}
|
|
9271
9246
|
*/
|
|
9272
|
-
export async function AutomationsApiAxiosParamCreator_DeleteEntityAutomations(workspaceId, objectId,
|
|
9247
|
+
export async function AutomationsApiAxiosParamCreator_DeleteEntityAutomations(workspaceId, objectId, options = {}, configuration) {
|
|
9273
9248
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
9274
9249
|
assertParamExists('deleteEntityAutomations', 'workspaceId', workspaceId);
|
|
9275
9250
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -9286,9 +9261,6 @@ export async function AutomationsApiAxiosParamCreator_DeleteEntityAutomations(wo
|
|
|
9286
9261
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
9287
9262
|
const localVarHeaderParameter = {};
|
|
9288
9263
|
const localVarQueryParameter = {};
|
|
9289
|
-
if (filter !== undefined) {
|
|
9290
|
-
localVarQueryParameter['filter'] = filter;
|
|
9291
|
-
}
|
|
9292
9264
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9293
9265
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
9294
9266
|
localVarRequestOptions.headers = {
|
|
@@ -10325,7 +10297,7 @@ export async function AutomationsApi_CreateEntityAutomations(axios, basePath, re
|
|
|
10325
10297
|
* @throws {RequiredError}
|
|
10326
10298
|
*/
|
|
10327
10299
|
export async function AutomationsApi_DeleteEntityAutomations(axios, basePath, requestParameters, options, configuration) {
|
|
10328
|
-
const localVarAxiosArgs = await AutomationsApiAxiosParamCreator_DeleteEntityAutomations(requestParameters.workspaceId, requestParameters.objectId,
|
|
10300
|
+
const localVarAxiosArgs = await AutomationsApiAxiosParamCreator_DeleteEntityAutomations(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
10329
10301
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
10330
10302
|
}
|
|
10331
10303
|
// AutomationsApi Api FP
|
|
@@ -12004,12 +11976,11 @@ export async function CustomApplicationSettingControllerApiAxiosParamCreator_Cre
|
|
|
12004
11976
|
* @summary Delete a Custom Application Setting
|
|
12005
11977
|
* @param {string} workspaceId
|
|
12006
11978
|
* @param {string} objectId
|
|
12007
|
-
* @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\').
|
|
12008
11979
|
* @param {*} [options] Override http request option.
|
|
12009
11980
|
* @param {Configuration} [configuration] Optional configuration.
|
|
12010
11981
|
* @throws {RequiredError}
|
|
12011
11982
|
*/
|
|
12012
|
-
export async function CustomApplicationSettingControllerApiAxiosParamCreator_DeleteEntityCustomApplicationSettings(workspaceId, objectId,
|
|
11983
|
+
export async function CustomApplicationSettingControllerApiAxiosParamCreator_DeleteEntityCustomApplicationSettings(workspaceId, objectId, options = {}, configuration) {
|
|
12013
11984
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
12014
11985
|
assertParamExists('deleteEntityCustomApplicationSettings', 'workspaceId', workspaceId);
|
|
12015
11986
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -12026,9 +11997,6 @@ export async function CustomApplicationSettingControllerApiAxiosParamCreator_Del
|
|
|
12026
11997
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
12027
11998
|
const localVarHeaderParameter = {};
|
|
12028
11999
|
const localVarQueryParameter = {};
|
|
12029
|
-
if (filter !== undefined) {
|
|
12030
|
-
localVarQueryParameter['filter'] = filter;
|
|
12031
|
-
}
|
|
12032
12000
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
12033
12001
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
12034
12002
|
localVarRequestOptions.headers = {
|
|
@@ -12358,7 +12326,7 @@ export async function CustomApplicationSettingControllerApi_CreateEntityCustomAp
|
|
|
12358
12326
|
* @throws {RequiredError}
|
|
12359
12327
|
*/
|
|
12360
12328
|
export async function CustomApplicationSettingControllerApi_DeleteEntityCustomApplicationSettings(axios, basePath, requestParameters, options, configuration) {
|
|
12361
|
-
const localVarAxiosArgs = await CustomApplicationSettingControllerApiAxiosParamCreator_DeleteEntityCustomApplicationSettings(requestParameters.workspaceId, requestParameters.objectId,
|
|
12329
|
+
const localVarAxiosArgs = await CustomApplicationSettingControllerApiAxiosParamCreator_DeleteEntityCustomApplicationSettings(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
12362
12330
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
12363
12331
|
}
|
|
12364
12332
|
// CustomApplicationSettingControllerApi Api FP
|
|
@@ -12573,12 +12541,11 @@ export async function CustomGeoCollectionControllerApiAxiosParamCreator_CreateEn
|
|
|
12573
12541
|
*
|
|
12574
12542
|
* @summary Delete Custom Geo Collection
|
|
12575
12543
|
* @param {string} id
|
|
12576
|
-
* @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\').
|
|
12577
12544
|
* @param {*} [options] Override http request option.
|
|
12578
12545
|
* @param {Configuration} [configuration] Optional configuration.
|
|
12579
12546
|
* @throws {RequiredError}
|
|
12580
12547
|
*/
|
|
12581
|
-
export async function CustomGeoCollectionControllerApiAxiosParamCreator_DeleteEntityCustomGeoCollections(id,
|
|
12548
|
+
export async function CustomGeoCollectionControllerApiAxiosParamCreator_DeleteEntityCustomGeoCollections(id, options = {}, configuration) {
|
|
12582
12549
|
// verify required parameter 'id' is not null or undefined
|
|
12583
12550
|
assertParamExists('deleteEntityCustomGeoCollections', 'id', id);
|
|
12584
12551
|
const localVarPath = `/api/v1/entities/customGeoCollections/{id}`
|
|
@@ -12592,9 +12559,6 @@ export async function CustomGeoCollectionControllerApiAxiosParamCreator_DeleteEn
|
|
|
12592
12559
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
12593
12560
|
const localVarHeaderParameter = {};
|
|
12594
12561
|
const localVarQueryParameter = {};
|
|
12595
|
-
if (filter !== undefined) {
|
|
12596
|
-
localVarQueryParameter['filter'] = filter;
|
|
12597
|
-
}
|
|
12598
12562
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
12599
12563
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
12600
12564
|
localVarRequestOptions.headers = {
|
|
@@ -12834,7 +12798,7 @@ export async function CustomGeoCollectionControllerApi_CreateEntityCustomGeoColl
|
|
|
12834
12798
|
* @throws {RequiredError}
|
|
12835
12799
|
*/
|
|
12836
12800
|
export async function CustomGeoCollectionControllerApi_DeleteEntityCustomGeoCollections(axios, basePath, requestParameters, options, configuration) {
|
|
12837
|
-
const localVarAxiosArgs = await CustomGeoCollectionControllerApiAxiosParamCreator_DeleteEntityCustomGeoCollections(requestParameters.id,
|
|
12801
|
+
const localVarAxiosArgs = await CustomGeoCollectionControllerApiAxiosParamCreator_DeleteEntityCustomGeoCollections(requestParameters.id, options || {}, configuration);
|
|
12838
12802
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
12839
12803
|
}
|
|
12840
12804
|
// CustomGeoCollectionControllerApi Api FP
|
|
@@ -13036,12 +13000,11 @@ export async function DashboardPluginControllerApiAxiosParamCreator_CreateEntity
|
|
|
13036
13000
|
* @summary Delete a Plugin
|
|
13037
13001
|
* @param {string} workspaceId
|
|
13038
13002
|
* @param {string} objectId
|
|
13039
|
-
* @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\').
|
|
13040
13003
|
* @param {*} [options] Override http request option.
|
|
13041
13004
|
* @param {Configuration} [configuration] Optional configuration.
|
|
13042
13005
|
* @throws {RequiredError}
|
|
13043
13006
|
*/
|
|
13044
|
-
export async function DashboardPluginControllerApiAxiosParamCreator_DeleteEntityDashboardPlugins(workspaceId, objectId,
|
|
13007
|
+
export async function DashboardPluginControllerApiAxiosParamCreator_DeleteEntityDashboardPlugins(workspaceId, objectId, options = {}, configuration) {
|
|
13045
13008
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
13046
13009
|
assertParamExists('deleteEntityDashboardPlugins', 'workspaceId', workspaceId);
|
|
13047
13010
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -13058,9 +13021,6 @@ export async function DashboardPluginControllerApiAxiosParamCreator_DeleteEntity
|
|
|
13058
13021
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
13059
13022
|
const localVarHeaderParameter = {};
|
|
13060
13023
|
const localVarQueryParameter = {};
|
|
13061
|
-
if (filter !== undefined) {
|
|
13062
|
-
localVarQueryParameter['filter'] = filter;
|
|
13063
|
-
}
|
|
13064
13024
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
13065
13025
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
13066
13026
|
localVarRequestOptions.headers = {
|
|
@@ -13406,7 +13366,7 @@ export async function DashboardPluginControllerApi_CreateEntityDashboardPlugins(
|
|
|
13406
13366
|
* @throws {RequiredError}
|
|
13407
13367
|
*/
|
|
13408
13368
|
export async function DashboardPluginControllerApi_DeleteEntityDashboardPlugins(axios, basePath, requestParameters, options, configuration) {
|
|
13409
|
-
const localVarAxiosArgs = await DashboardPluginControllerApiAxiosParamCreator_DeleteEntityDashboardPlugins(requestParameters.workspaceId, requestParameters.objectId,
|
|
13369
|
+
const localVarAxiosArgs = await DashboardPluginControllerApiAxiosParamCreator_DeleteEntityDashboardPlugins(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
13410
13370
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
13411
13371
|
}
|
|
13412
13372
|
// DashboardPluginControllerApi Api FP
|
|
@@ -13634,12 +13594,11 @@ export async function DashboardsApiAxiosParamCreator_CreateEntityAnalyticalDashb
|
|
|
13634
13594
|
* @summary Delete a Dashboard
|
|
13635
13595
|
* @param {string} workspaceId
|
|
13636
13596
|
* @param {string} objectId
|
|
13637
|
-
* @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\').
|
|
13638
13597
|
* @param {*} [options] Override http request option.
|
|
13639
13598
|
* @param {Configuration} [configuration] Optional configuration.
|
|
13640
13599
|
* @throws {RequiredError}
|
|
13641
13600
|
*/
|
|
13642
|
-
export async function DashboardsApiAxiosParamCreator_DeleteEntityAnalyticalDashboards(workspaceId, objectId,
|
|
13601
|
+
export async function DashboardsApiAxiosParamCreator_DeleteEntityAnalyticalDashboards(workspaceId, objectId, options = {}, configuration) {
|
|
13643
13602
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
13644
13603
|
assertParamExists('deleteEntityAnalyticalDashboards', 'workspaceId', workspaceId);
|
|
13645
13604
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -13656,9 +13615,6 @@ export async function DashboardsApiAxiosParamCreator_DeleteEntityAnalyticalDashb
|
|
|
13656
13615
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
13657
13616
|
const localVarHeaderParameter = {};
|
|
13658
13617
|
const localVarQueryParameter = {};
|
|
13659
|
-
if (filter !== undefined) {
|
|
13660
|
-
localVarQueryParameter['filter'] = filter;
|
|
13661
|
-
}
|
|
13662
13618
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
13663
13619
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
13664
13620
|
localVarRequestOptions.headers = {
|
|
@@ -14004,7 +13960,7 @@ export async function DashboardsApi_CreateEntityAnalyticalDashboards(axios, base
|
|
|
14004
13960
|
* @throws {RequiredError}
|
|
14005
13961
|
*/
|
|
14006
13962
|
export async function DashboardsApi_DeleteEntityAnalyticalDashboards(axios, basePath, requestParameters, options, configuration) {
|
|
14007
|
-
const localVarAxiosArgs = await DashboardsApiAxiosParamCreator_DeleteEntityAnalyticalDashboards(requestParameters.workspaceId, requestParameters.objectId,
|
|
13963
|
+
const localVarAxiosArgs = await DashboardsApiAxiosParamCreator_DeleteEntityAnalyticalDashboards(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
14008
13964
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
14009
13965
|
}
|
|
14010
13966
|
// DashboardsApi Api FP
|
|
@@ -14350,12 +14306,11 @@ export async function DataFiltersApiAxiosParamCreator_CreateEntityWorkspaceDataF
|
|
|
14350
14306
|
* @summary Delete a User Data Filter
|
|
14351
14307
|
* @param {string} workspaceId
|
|
14352
14308
|
* @param {string} objectId
|
|
14353
|
-
* @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\').
|
|
14354
14309
|
* @param {*} [options] Override http request option.
|
|
14355
14310
|
* @param {Configuration} [configuration] Optional configuration.
|
|
14356
14311
|
* @throws {RequiredError}
|
|
14357
14312
|
*/
|
|
14358
|
-
export async function DataFiltersApiAxiosParamCreator_DeleteEntityUserDataFilters(workspaceId, objectId,
|
|
14313
|
+
export async function DataFiltersApiAxiosParamCreator_DeleteEntityUserDataFilters(workspaceId, objectId, options = {}, configuration) {
|
|
14359
14314
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
14360
14315
|
assertParamExists('deleteEntityUserDataFilters', 'workspaceId', workspaceId);
|
|
14361
14316
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -14372,9 +14327,6 @@ export async function DataFiltersApiAxiosParamCreator_DeleteEntityUserDataFilter
|
|
|
14372
14327
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
14373
14328
|
const localVarHeaderParameter = {};
|
|
14374
14329
|
const localVarQueryParameter = {};
|
|
14375
|
-
if (filter !== undefined) {
|
|
14376
|
-
localVarQueryParameter['filter'] = filter;
|
|
14377
|
-
}
|
|
14378
14330
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
14379
14331
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
14380
14332
|
localVarRequestOptions.headers = {
|
|
@@ -14393,12 +14345,11 @@ export async function DataFiltersApiAxiosParamCreator_DeleteEntityUserDataFilter
|
|
|
14393
14345
|
* @summary Delete a Settings for Workspace Data Filter
|
|
14394
14346
|
* @param {string} workspaceId
|
|
14395
14347
|
* @param {string} objectId
|
|
14396
|
-
* @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\').
|
|
14397
14348
|
* @param {*} [options] Override http request option.
|
|
14398
14349
|
* @param {Configuration} [configuration] Optional configuration.
|
|
14399
14350
|
* @throws {RequiredError}
|
|
14400
14351
|
*/
|
|
14401
|
-
export async function DataFiltersApiAxiosParamCreator_DeleteEntityWorkspaceDataFilterSettings(workspaceId, objectId,
|
|
14352
|
+
export async function DataFiltersApiAxiosParamCreator_DeleteEntityWorkspaceDataFilterSettings(workspaceId, objectId, options = {}, configuration) {
|
|
14402
14353
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
14403
14354
|
assertParamExists('deleteEntityWorkspaceDataFilterSettings', 'workspaceId', workspaceId);
|
|
14404
14355
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -14415,9 +14366,6 @@ export async function DataFiltersApiAxiosParamCreator_DeleteEntityWorkspaceDataF
|
|
|
14415
14366
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
14416
14367
|
const localVarHeaderParameter = {};
|
|
14417
14368
|
const localVarQueryParameter = {};
|
|
14418
|
-
if (filter !== undefined) {
|
|
14419
|
-
localVarQueryParameter['filter'] = filter;
|
|
14420
|
-
}
|
|
14421
14369
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
14422
14370
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
14423
14371
|
localVarRequestOptions.headers = {
|
|
@@ -14436,12 +14384,11 @@ export async function DataFiltersApiAxiosParamCreator_DeleteEntityWorkspaceDataF
|
|
|
14436
14384
|
* @summary Delete a Workspace Data Filter
|
|
14437
14385
|
* @param {string} workspaceId
|
|
14438
14386
|
* @param {string} objectId
|
|
14439
|
-
* @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\').
|
|
14440
14387
|
* @param {*} [options] Override http request option.
|
|
14441
14388
|
* @param {Configuration} [configuration] Optional configuration.
|
|
14442
14389
|
* @throws {RequiredError}
|
|
14443
14390
|
*/
|
|
14444
|
-
export async function DataFiltersApiAxiosParamCreator_DeleteEntityWorkspaceDataFilters(workspaceId, objectId,
|
|
14391
|
+
export async function DataFiltersApiAxiosParamCreator_DeleteEntityWorkspaceDataFilters(workspaceId, objectId, options = {}, configuration) {
|
|
14445
14392
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
14446
14393
|
assertParamExists('deleteEntityWorkspaceDataFilters', 'workspaceId', workspaceId);
|
|
14447
14394
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -14458,9 +14405,6 @@ export async function DataFiltersApiAxiosParamCreator_DeleteEntityWorkspaceDataF
|
|
|
14458
14405
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
14459
14406
|
const localVarHeaderParameter = {};
|
|
14460
14407
|
const localVarQueryParameter = {};
|
|
14461
|
-
if (filter !== undefined) {
|
|
14462
|
-
localVarQueryParameter['filter'] = filter;
|
|
14463
|
-
}
|
|
14464
14408
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
14465
14409
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
14466
14410
|
localVarRequestOptions.headers = {
|
|
@@ -15525,7 +15469,7 @@ export async function DataFiltersApi_CreateEntityWorkspaceDataFilters(axios, bas
|
|
|
15525
15469
|
* @throws {RequiredError}
|
|
15526
15470
|
*/
|
|
15527
15471
|
export async function DataFiltersApi_DeleteEntityUserDataFilters(axios, basePath, requestParameters, options, configuration) {
|
|
15528
|
-
const localVarAxiosArgs = await DataFiltersApiAxiosParamCreator_DeleteEntityUserDataFilters(requestParameters.workspaceId, requestParameters.objectId,
|
|
15472
|
+
const localVarAxiosArgs = await DataFiltersApiAxiosParamCreator_DeleteEntityUserDataFilters(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
15529
15473
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
15530
15474
|
}
|
|
15531
15475
|
// DataFiltersApi Api FP
|
|
@@ -15540,7 +15484,7 @@ export async function DataFiltersApi_DeleteEntityUserDataFilters(axios, basePath
|
|
|
15540
15484
|
* @throws {RequiredError}
|
|
15541
15485
|
*/
|
|
15542
15486
|
export async function DataFiltersApi_DeleteEntityWorkspaceDataFilterSettings(axios, basePath, requestParameters, options, configuration) {
|
|
15543
|
-
const localVarAxiosArgs = await DataFiltersApiAxiosParamCreator_DeleteEntityWorkspaceDataFilterSettings(requestParameters.workspaceId, requestParameters.objectId,
|
|
15487
|
+
const localVarAxiosArgs = await DataFiltersApiAxiosParamCreator_DeleteEntityWorkspaceDataFilterSettings(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
15544
15488
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
15545
15489
|
}
|
|
15546
15490
|
// DataFiltersApi Api FP
|
|
@@ -15555,7 +15499,7 @@ export async function DataFiltersApi_DeleteEntityWorkspaceDataFilterSettings(axi
|
|
|
15555
15499
|
* @throws {RequiredError}
|
|
15556
15500
|
*/
|
|
15557
15501
|
export async function DataFiltersApi_DeleteEntityWorkspaceDataFilters(axios, basePath, requestParameters, options, configuration) {
|
|
15558
|
-
const localVarAxiosArgs = await DataFiltersApiAxiosParamCreator_DeleteEntityWorkspaceDataFilters(requestParameters.workspaceId, requestParameters.objectId,
|
|
15502
|
+
const localVarAxiosArgs = await DataFiltersApiAxiosParamCreator_DeleteEntityWorkspaceDataFilters(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
15559
15503
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
15560
15504
|
}
|
|
15561
15505
|
// DataFiltersApi Api FP
|
|
@@ -16128,12 +16072,11 @@ export async function DataSourceControllerApiAxiosParamCreator_CreateEntityDataS
|
|
|
16128
16072
|
* Data Source - represents data source for the workspace
|
|
16129
16073
|
* @summary Delete Data Source entity
|
|
16130
16074
|
* @param {string} id
|
|
16131
|
-
* @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\').
|
|
16132
16075
|
* @param {*} [options] Override http request option.
|
|
16133
16076
|
* @param {Configuration} [configuration] Optional configuration.
|
|
16134
16077
|
* @throws {RequiredError}
|
|
16135
16078
|
*/
|
|
16136
|
-
export async function DataSourceControllerApiAxiosParamCreator_DeleteEntityDataSources(id,
|
|
16079
|
+
export async function DataSourceControllerApiAxiosParamCreator_DeleteEntityDataSources(id, options = {}, configuration) {
|
|
16137
16080
|
// verify required parameter 'id' is not null or undefined
|
|
16138
16081
|
assertParamExists('deleteEntityDataSources', 'id', id);
|
|
16139
16082
|
const localVarPath = `/api/v1/entities/dataSources/{id}`
|
|
@@ -16147,9 +16090,6 @@ export async function DataSourceControllerApiAxiosParamCreator_DeleteEntityDataS
|
|
|
16147
16090
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
16148
16091
|
const localVarHeaderParameter = {};
|
|
16149
16092
|
const localVarQueryParameter = {};
|
|
16150
|
-
if (filter !== undefined) {
|
|
16151
|
-
localVarQueryParameter['filter'] = filter;
|
|
16152
|
-
}
|
|
16153
16093
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
16154
16094
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
16155
16095
|
localVarRequestOptions.headers = {
|
|
@@ -16393,7 +16333,7 @@ export async function DataSourceControllerApi_CreateEntityDataSources(axios, bas
|
|
|
16393
16333
|
* @throws {RequiredError}
|
|
16394
16334
|
*/
|
|
16395
16335
|
export async function DataSourceControllerApi_DeleteEntityDataSources(axios, basePath, requestParameters, options, configuration) {
|
|
16396
|
-
const localVarAxiosArgs = await DataSourceControllerApiAxiosParamCreator_DeleteEntityDataSources(requestParameters.id,
|
|
16336
|
+
const localVarAxiosArgs = await DataSourceControllerApiAxiosParamCreator_DeleteEntityDataSources(requestParameters.id, options || {}, configuration);
|
|
16397
16337
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
16398
16338
|
}
|
|
16399
16339
|
// DataSourceControllerApi Api FP
|
|
@@ -16721,12 +16661,11 @@ export async function DataSourceEntityAPIsApiAxiosParamCreator_CreateEntityDataS
|
|
|
16721
16661
|
* Data Source - represents data source for the workspace
|
|
16722
16662
|
* @summary Delete Data Source entity
|
|
16723
16663
|
* @param {string} id
|
|
16724
|
-
* @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\').
|
|
16725
16664
|
* @param {*} [options] Override http request option.
|
|
16726
16665
|
* @param {Configuration} [configuration] Optional configuration.
|
|
16727
16666
|
* @throws {RequiredError}
|
|
16728
16667
|
*/
|
|
16729
|
-
export async function DataSourceEntityAPIsApiAxiosParamCreator_DeleteEntityDataSources(id,
|
|
16668
|
+
export async function DataSourceEntityAPIsApiAxiosParamCreator_DeleteEntityDataSources(id, options = {}, configuration) {
|
|
16730
16669
|
// verify required parameter 'id' is not null or undefined
|
|
16731
16670
|
assertParamExists('deleteEntityDataSources', 'id', id);
|
|
16732
16671
|
const localVarPath = `/api/v1/entities/dataSources/{id}`
|
|
@@ -16740,9 +16679,6 @@ export async function DataSourceEntityAPIsApiAxiosParamCreator_DeleteEntityDataS
|
|
|
16740
16679
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
16741
16680
|
const localVarHeaderParameter = {};
|
|
16742
16681
|
const localVarQueryParameter = {};
|
|
16743
|
-
if (filter !== undefined) {
|
|
16744
|
-
localVarQueryParameter['filter'] = filter;
|
|
16745
|
-
}
|
|
16746
16682
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
16747
16683
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
16748
16684
|
localVarRequestOptions.headers = {
|
|
@@ -17080,7 +17016,7 @@ export async function DataSourceEntityAPIsApi_CreateEntityDataSources(axios, bas
|
|
|
17080
17016
|
* @throws {RequiredError}
|
|
17081
17017
|
*/
|
|
17082
17018
|
export async function DataSourceEntityAPIsApi_DeleteEntityDataSources(axios, basePath, requestParameters, options, configuration) {
|
|
17083
|
-
const localVarAxiosArgs = await DataSourceEntityAPIsApiAxiosParamCreator_DeleteEntityDataSources(requestParameters.id,
|
|
17019
|
+
const localVarAxiosArgs = await DataSourceEntityAPIsApiAxiosParamCreator_DeleteEntityDataSources(requestParameters.id, options || {}, configuration);
|
|
17084
17020
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
17085
17021
|
}
|
|
17086
17022
|
// DataSourceEntityAPIsApi Api FP
|
|
@@ -19887,12 +19823,11 @@ export async function EntitiesApiAxiosParamCreator_CreateEntityWorkspaces(jsonAp
|
|
|
19887
19823
|
* @summary Delete a Dashboard
|
|
19888
19824
|
* @param {string} workspaceId
|
|
19889
19825
|
* @param {string} objectId
|
|
19890
|
-
* @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\').
|
|
19891
19826
|
* @param {*} [options] Override http request option.
|
|
19892
19827
|
* @param {Configuration} [configuration] Optional configuration.
|
|
19893
19828
|
* @throws {RequiredError}
|
|
19894
19829
|
*/
|
|
19895
|
-
export async function EntitiesApiAxiosParamCreator_DeleteEntityAnalyticalDashboards(workspaceId, objectId,
|
|
19830
|
+
export async function EntitiesApiAxiosParamCreator_DeleteEntityAnalyticalDashboards(workspaceId, objectId, options = {}, configuration) {
|
|
19896
19831
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
19897
19832
|
assertParamExists('deleteEntityAnalyticalDashboards', 'workspaceId', workspaceId);
|
|
19898
19833
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -19909,9 +19844,6 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityAnalyticalDashboa
|
|
|
19909
19844
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
19910
19845
|
const localVarHeaderParameter = {};
|
|
19911
19846
|
const localVarQueryParameter = {};
|
|
19912
|
-
if (filter !== undefined) {
|
|
19913
|
-
localVarQueryParameter['filter'] = filter;
|
|
19914
|
-
}
|
|
19915
19847
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
19916
19848
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
19917
19849
|
localVarRequestOptions.headers = {
|
|
@@ -19930,12 +19862,11 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityAnalyticalDashboa
|
|
|
19930
19862
|
* @summary Delete an API Token for a user
|
|
19931
19863
|
* @param {string} userId
|
|
19932
19864
|
* @param {string} id
|
|
19933
|
-
* @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\').
|
|
19934
19865
|
* @param {*} [options] Override http request option.
|
|
19935
19866
|
* @param {Configuration} [configuration] Optional configuration.
|
|
19936
19867
|
* @throws {RequiredError}
|
|
19937
19868
|
*/
|
|
19938
|
-
export async function EntitiesApiAxiosParamCreator_DeleteEntityApiTokens(userId, id,
|
|
19869
|
+
export async function EntitiesApiAxiosParamCreator_DeleteEntityApiTokens(userId, id, options = {}, configuration) {
|
|
19939
19870
|
// verify required parameter 'userId' is not null or undefined
|
|
19940
19871
|
assertParamExists('deleteEntityApiTokens', 'userId', userId);
|
|
19941
19872
|
// verify required parameter 'id' is not null or undefined
|
|
@@ -19952,9 +19883,6 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityApiTokens(userId,
|
|
|
19952
19883
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
19953
19884
|
const localVarHeaderParameter = {};
|
|
19954
19885
|
const localVarQueryParameter = {};
|
|
19955
|
-
if (filter !== undefined) {
|
|
19956
|
-
localVarQueryParameter['filter'] = filter;
|
|
19957
|
-
}
|
|
19958
19886
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
19959
19887
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
19960
19888
|
localVarRequestOptions.headers = {
|
|
@@ -19973,12 +19901,11 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityApiTokens(userId,
|
|
|
19973
19901
|
* @summary Delete an Attribute Hierarchy
|
|
19974
19902
|
* @param {string} workspaceId
|
|
19975
19903
|
* @param {string} objectId
|
|
19976
|
-
* @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\').
|
|
19977
19904
|
* @param {*} [options] Override http request option.
|
|
19978
19905
|
* @param {Configuration} [configuration] Optional configuration.
|
|
19979
19906
|
* @throws {RequiredError}
|
|
19980
19907
|
*/
|
|
19981
|
-
export async function EntitiesApiAxiosParamCreator_DeleteEntityAttributeHierarchies(workspaceId, objectId,
|
|
19908
|
+
export async function EntitiesApiAxiosParamCreator_DeleteEntityAttributeHierarchies(workspaceId, objectId, options = {}, configuration) {
|
|
19982
19909
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
19983
19910
|
assertParamExists('deleteEntityAttributeHierarchies', 'workspaceId', workspaceId);
|
|
19984
19911
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -19995,9 +19922,6 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityAttributeHierarch
|
|
|
19995
19922
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
19996
19923
|
const localVarHeaderParameter = {};
|
|
19997
19924
|
const localVarQueryParameter = {};
|
|
19998
|
-
if (filter !== undefined) {
|
|
19999
|
-
localVarQueryParameter['filter'] = filter;
|
|
20000
|
-
}
|
|
20001
19925
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
20002
19926
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
20003
19927
|
localVarRequestOptions.headers = {
|
|
@@ -20016,12 +19940,11 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityAttributeHierarch
|
|
|
20016
19940
|
* @summary Delete an Automation
|
|
20017
19941
|
* @param {string} workspaceId
|
|
20018
19942
|
* @param {string} objectId
|
|
20019
|
-
* @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\').
|
|
20020
19943
|
* @param {*} [options] Override http request option.
|
|
20021
19944
|
* @param {Configuration} [configuration] Optional configuration.
|
|
20022
19945
|
* @throws {RequiredError}
|
|
20023
19946
|
*/
|
|
20024
|
-
export async function EntitiesApiAxiosParamCreator_DeleteEntityAutomations(workspaceId, objectId,
|
|
19947
|
+
export async function EntitiesApiAxiosParamCreator_DeleteEntityAutomations(workspaceId, objectId, options = {}, configuration) {
|
|
20025
19948
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
20026
19949
|
assertParamExists('deleteEntityAutomations', 'workspaceId', workspaceId);
|
|
20027
19950
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -20038,9 +19961,6 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityAutomations(works
|
|
|
20038
19961
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
20039
19962
|
const localVarHeaderParameter = {};
|
|
20040
19963
|
const localVarQueryParameter = {};
|
|
20041
|
-
if (filter !== undefined) {
|
|
20042
|
-
localVarQueryParameter['filter'] = filter;
|
|
20043
|
-
}
|
|
20044
19964
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
20045
19965
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
20046
19966
|
localVarRequestOptions.headers = {
|
|
@@ -20137,12 +20057,11 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityCspDirectives(id,
|
|
|
20137
20057
|
* @summary Delete a Custom Application Setting
|
|
20138
20058
|
* @param {string} workspaceId
|
|
20139
20059
|
* @param {string} objectId
|
|
20140
|
-
* @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\').
|
|
20141
20060
|
* @param {*} [options] Override http request option.
|
|
20142
20061
|
* @param {Configuration} [configuration] Optional configuration.
|
|
20143
20062
|
* @throws {RequiredError}
|
|
20144
20063
|
*/
|
|
20145
|
-
export async function EntitiesApiAxiosParamCreator_DeleteEntityCustomApplicationSettings(workspaceId, objectId,
|
|
20064
|
+
export async function EntitiesApiAxiosParamCreator_DeleteEntityCustomApplicationSettings(workspaceId, objectId, options = {}, configuration) {
|
|
20146
20065
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
20147
20066
|
assertParamExists('deleteEntityCustomApplicationSettings', 'workspaceId', workspaceId);
|
|
20148
20067
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -20159,9 +20078,6 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityCustomApplication
|
|
|
20159
20078
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
20160
20079
|
const localVarHeaderParameter = {};
|
|
20161
20080
|
const localVarQueryParameter = {};
|
|
20162
|
-
if (filter !== undefined) {
|
|
20163
|
-
localVarQueryParameter['filter'] = filter;
|
|
20164
|
-
}
|
|
20165
20081
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
20166
20082
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
20167
20083
|
localVarRequestOptions.headers = {
|
|
@@ -20179,12 +20095,11 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityCustomApplication
|
|
|
20179
20095
|
*
|
|
20180
20096
|
* @summary Delete Custom Geo Collection
|
|
20181
20097
|
* @param {string} id
|
|
20182
|
-
* @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\').
|
|
20183
20098
|
* @param {*} [options] Override http request option.
|
|
20184
20099
|
* @param {Configuration} [configuration] Optional configuration.
|
|
20185
20100
|
* @throws {RequiredError}
|
|
20186
20101
|
*/
|
|
20187
|
-
export async function EntitiesApiAxiosParamCreator_DeleteEntityCustomGeoCollections(id,
|
|
20102
|
+
export async function EntitiesApiAxiosParamCreator_DeleteEntityCustomGeoCollections(id, options = {}, configuration) {
|
|
20188
20103
|
// verify required parameter 'id' is not null or undefined
|
|
20189
20104
|
assertParamExists('deleteEntityCustomGeoCollections', 'id', id);
|
|
20190
20105
|
const localVarPath = `/api/v1/entities/customGeoCollections/{id}`
|
|
@@ -20198,9 +20113,6 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityCustomGeoCollecti
|
|
|
20198
20113
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
20199
20114
|
const localVarHeaderParameter = {};
|
|
20200
20115
|
const localVarQueryParameter = {};
|
|
20201
|
-
if (filter !== undefined) {
|
|
20202
|
-
localVarQueryParameter['filter'] = filter;
|
|
20203
|
-
}
|
|
20204
20116
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
20205
20117
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
20206
20118
|
localVarRequestOptions.headers = {
|
|
@@ -20219,12 +20131,11 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityCustomGeoCollecti
|
|
|
20219
20131
|
* @summary Delete a Plugin
|
|
20220
20132
|
* @param {string} workspaceId
|
|
20221
20133
|
* @param {string} objectId
|
|
20222
|
-
* @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\').
|
|
20223
20134
|
* @param {*} [options] Override http request option.
|
|
20224
20135
|
* @param {Configuration} [configuration] Optional configuration.
|
|
20225
20136
|
* @throws {RequiredError}
|
|
20226
20137
|
*/
|
|
20227
|
-
export async function EntitiesApiAxiosParamCreator_DeleteEntityDashboardPlugins(workspaceId, objectId,
|
|
20138
|
+
export async function EntitiesApiAxiosParamCreator_DeleteEntityDashboardPlugins(workspaceId, objectId, options = {}, configuration) {
|
|
20228
20139
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
20229
20140
|
assertParamExists('deleteEntityDashboardPlugins', 'workspaceId', workspaceId);
|
|
20230
20141
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -20241,9 +20152,6 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityDashboardPlugins(
|
|
|
20241
20152
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
20242
20153
|
const localVarHeaderParameter = {};
|
|
20243
20154
|
const localVarQueryParameter = {};
|
|
20244
|
-
if (filter !== undefined) {
|
|
20245
|
-
localVarQueryParameter['filter'] = filter;
|
|
20246
|
-
}
|
|
20247
20155
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
20248
20156
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
20249
20157
|
localVarRequestOptions.headers = {
|
|
@@ -20261,12 +20169,11 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityDashboardPlugins(
|
|
|
20261
20169
|
* Data Source - represents data source for the workspace
|
|
20262
20170
|
* @summary Delete Data Source entity
|
|
20263
20171
|
* @param {string} id
|
|
20264
|
-
* @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\').
|
|
20265
20172
|
* @param {*} [options] Override http request option.
|
|
20266
20173
|
* @param {Configuration} [configuration] Optional configuration.
|
|
20267
20174
|
* @throws {RequiredError}
|
|
20268
20175
|
*/
|
|
20269
|
-
export async function EntitiesApiAxiosParamCreator_DeleteEntityDataSources(id,
|
|
20176
|
+
export async function EntitiesApiAxiosParamCreator_DeleteEntityDataSources(id, options = {}, configuration) {
|
|
20270
20177
|
// verify required parameter 'id' is not null or undefined
|
|
20271
20178
|
assertParamExists('deleteEntityDataSources', 'id', id);
|
|
20272
20179
|
const localVarPath = `/api/v1/entities/dataSources/{id}`
|
|
@@ -20280,9 +20187,6 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityDataSources(id, f
|
|
|
20280
20187
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
20281
20188
|
const localVarHeaderParameter = {};
|
|
20282
20189
|
const localVarQueryParameter = {};
|
|
20283
|
-
if (filter !== undefined) {
|
|
20284
|
-
localVarQueryParameter['filter'] = filter;
|
|
20285
|
-
}
|
|
20286
20190
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
20287
20191
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
20288
20192
|
localVarRequestOptions.headers = {
|
|
@@ -20301,12 +20205,11 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityDataSources(id, f
|
|
|
20301
20205
|
* @summary Delete an Export Definition
|
|
20302
20206
|
* @param {string} workspaceId
|
|
20303
20207
|
* @param {string} objectId
|
|
20304
|
-
* @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\').
|
|
20305
20208
|
* @param {*} [options] Override http request option.
|
|
20306
20209
|
* @param {Configuration} [configuration] Optional configuration.
|
|
20307
20210
|
* @throws {RequiredError}
|
|
20308
20211
|
*/
|
|
20309
|
-
export async function EntitiesApiAxiosParamCreator_DeleteEntityExportDefinitions(workspaceId, objectId,
|
|
20212
|
+
export async function EntitiesApiAxiosParamCreator_DeleteEntityExportDefinitions(workspaceId, objectId, options = {}, configuration) {
|
|
20310
20213
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
20311
20214
|
assertParamExists('deleteEntityExportDefinitions', 'workspaceId', workspaceId);
|
|
20312
20215
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -20323,9 +20226,6 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityExportDefinitions
|
|
|
20323
20226
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
20324
20227
|
const localVarHeaderParameter = {};
|
|
20325
20228
|
const localVarQueryParameter = {};
|
|
20326
|
-
if (filter !== undefined) {
|
|
20327
|
-
localVarQueryParameter['filter'] = filter;
|
|
20328
|
-
}
|
|
20329
20229
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
20330
20230
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
20331
20231
|
localVarRequestOptions.headers = {
|
|
@@ -20383,12 +20283,11 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityExportTemplates(i
|
|
|
20383
20283
|
* @summary Delete a Filter Context
|
|
20384
20284
|
* @param {string} workspaceId
|
|
20385
20285
|
* @param {string} objectId
|
|
20386
|
-
* @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\').
|
|
20387
20286
|
* @param {*} [options] Override http request option.
|
|
20388
20287
|
* @param {Configuration} [configuration] Optional configuration.
|
|
20389
20288
|
* @throws {RequiredError}
|
|
20390
20289
|
*/
|
|
20391
|
-
export async function EntitiesApiAxiosParamCreator_DeleteEntityFilterContexts(workspaceId, objectId,
|
|
20290
|
+
export async function EntitiesApiAxiosParamCreator_DeleteEntityFilterContexts(workspaceId, objectId, options = {}, configuration) {
|
|
20392
20291
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
20393
20292
|
assertParamExists('deleteEntityFilterContexts', 'workspaceId', workspaceId);
|
|
20394
20293
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -20405,9 +20304,6 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityFilterContexts(wo
|
|
|
20405
20304
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
20406
20305
|
const localVarHeaderParameter = {};
|
|
20407
20306
|
const localVarQueryParameter = {};
|
|
20408
|
-
if (filter !== undefined) {
|
|
20409
|
-
localVarQueryParameter['filter'] = filter;
|
|
20410
|
-
}
|
|
20411
20307
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
20412
20308
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
20413
20309
|
localVarRequestOptions.headers = {
|
|
@@ -20426,12 +20322,11 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityFilterContexts(wo
|
|
|
20426
20322
|
* @summary Delete Filter view
|
|
20427
20323
|
* @param {string} workspaceId
|
|
20428
20324
|
* @param {string} objectId
|
|
20429
|
-
* @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\').
|
|
20430
20325
|
* @param {*} [options] Override http request option.
|
|
20431
20326
|
* @param {Configuration} [configuration] Optional configuration.
|
|
20432
20327
|
* @throws {RequiredError}
|
|
20433
20328
|
*/
|
|
20434
|
-
export async function EntitiesApiAxiosParamCreator_DeleteEntityFilterViews(workspaceId, objectId,
|
|
20329
|
+
export async function EntitiesApiAxiosParamCreator_DeleteEntityFilterViews(workspaceId, objectId, options = {}, configuration) {
|
|
20435
20330
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
20436
20331
|
assertParamExists('deleteEntityFilterViews', 'workspaceId', workspaceId);
|
|
20437
20332
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -20448,9 +20343,6 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityFilterViews(works
|
|
|
20448
20343
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
20449
20344
|
const localVarHeaderParameter = {};
|
|
20450
20345
|
const localVarQueryParameter = {};
|
|
20451
|
-
if (filter !== undefined) {
|
|
20452
|
-
localVarQueryParameter['filter'] = filter;
|
|
20453
|
-
}
|
|
20454
20346
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
20455
20347
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
20456
20348
|
localVarRequestOptions.headers = {
|
|
@@ -20507,12 +20399,11 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityIdentityProviders
|
|
|
20507
20399
|
* Deletes JSON web key - used to verify JSON web tokens (Jwts)
|
|
20508
20400
|
* @summary Delete Jwk
|
|
20509
20401
|
* @param {string} id
|
|
20510
|
-
* @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\').
|
|
20511
20402
|
* @param {*} [options] Override http request option.
|
|
20512
20403
|
* @param {Configuration} [configuration] Optional configuration.
|
|
20513
20404
|
* @throws {RequiredError}
|
|
20514
20405
|
*/
|
|
20515
|
-
export async function EntitiesApiAxiosParamCreator_DeleteEntityJwks(id,
|
|
20406
|
+
export async function EntitiesApiAxiosParamCreator_DeleteEntityJwks(id, options = {}, configuration) {
|
|
20516
20407
|
// verify required parameter 'id' is not null or undefined
|
|
20517
20408
|
assertParamExists('deleteEntityJwks', 'id', id);
|
|
20518
20409
|
const localVarPath = `/api/v1/entities/jwks/{id}`
|
|
@@ -20526,9 +20417,6 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityJwks(id, filter,
|
|
|
20526
20417
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
20527
20418
|
const localVarHeaderParameter = {};
|
|
20528
20419
|
const localVarQueryParameter = {};
|
|
20529
|
-
if (filter !== undefined) {
|
|
20530
|
-
localVarQueryParameter['filter'] = filter;
|
|
20531
|
-
}
|
|
20532
20420
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
20533
20421
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
20534
20422
|
localVarRequestOptions.headers = {
|
|
@@ -20709,12 +20597,11 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityMemoryItems(works
|
|
|
20709
20597
|
* @summary Delete a Metric
|
|
20710
20598
|
* @param {string} workspaceId
|
|
20711
20599
|
* @param {string} objectId
|
|
20712
|
-
* @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\').
|
|
20713
20600
|
* @param {*} [options] Override http request option.
|
|
20714
20601
|
* @param {Configuration} [configuration] Optional configuration.
|
|
20715
20602
|
* @throws {RequiredError}
|
|
20716
20603
|
*/
|
|
20717
|
-
export async function EntitiesApiAxiosParamCreator_DeleteEntityMetrics(workspaceId, objectId,
|
|
20604
|
+
export async function EntitiesApiAxiosParamCreator_DeleteEntityMetrics(workspaceId, objectId, options = {}, configuration) {
|
|
20718
20605
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
20719
20606
|
assertParamExists('deleteEntityMetrics', 'workspaceId', workspaceId);
|
|
20720
20607
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -20731,9 +20618,6 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityMetrics(workspace
|
|
|
20731
20618
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
20732
20619
|
const localVarHeaderParameter = {};
|
|
20733
20620
|
const localVarQueryParameter = {};
|
|
20734
|
-
if (filter !== undefined) {
|
|
20735
|
-
localVarQueryParameter['filter'] = filter;
|
|
20736
|
-
}
|
|
20737
20621
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
20738
20622
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
20739
20623
|
localVarRequestOptions.headers = {
|
|
@@ -20869,12 +20753,11 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityThemes(id, filter
|
|
|
20869
20753
|
* @summary Delete a User Data Filter
|
|
20870
20754
|
* @param {string} workspaceId
|
|
20871
20755
|
* @param {string} objectId
|
|
20872
|
-
* @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\').
|
|
20873
20756
|
* @param {*} [options] Override http request option.
|
|
20874
20757
|
* @param {Configuration} [configuration] Optional configuration.
|
|
20875
20758
|
* @throws {RequiredError}
|
|
20876
20759
|
*/
|
|
20877
|
-
export async function EntitiesApiAxiosParamCreator_DeleteEntityUserDataFilters(workspaceId, objectId,
|
|
20760
|
+
export async function EntitiesApiAxiosParamCreator_DeleteEntityUserDataFilters(workspaceId, objectId, options = {}, configuration) {
|
|
20878
20761
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
20879
20762
|
assertParamExists('deleteEntityUserDataFilters', 'workspaceId', workspaceId);
|
|
20880
20763
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -20891,9 +20774,6 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityUserDataFilters(w
|
|
|
20891
20774
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
20892
20775
|
const localVarHeaderParameter = {};
|
|
20893
20776
|
const localVarQueryParameter = {};
|
|
20894
|
-
if (filter !== undefined) {
|
|
20895
|
-
localVarQueryParameter['filter'] = filter;
|
|
20896
|
-
}
|
|
20897
20777
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
20898
20778
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
20899
20779
|
localVarRequestOptions.headers = {
|
|
@@ -20951,12 +20831,11 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityUserGroups(id, fi
|
|
|
20951
20831
|
* @summary Delete a setting for a user
|
|
20952
20832
|
* @param {string} userId
|
|
20953
20833
|
* @param {string} id
|
|
20954
|
-
* @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\').
|
|
20955
20834
|
* @param {*} [options] Override http request option.
|
|
20956
20835
|
* @param {Configuration} [configuration] Optional configuration.
|
|
20957
20836
|
* @throws {RequiredError}
|
|
20958
20837
|
*/
|
|
20959
|
-
export async function EntitiesApiAxiosParamCreator_DeleteEntityUserSettings(userId, id,
|
|
20838
|
+
export async function EntitiesApiAxiosParamCreator_DeleteEntityUserSettings(userId, id, options = {}, configuration) {
|
|
20960
20839
|
// verify required parameter 'userId' is not null or undefined
|
|
20961
20840
|
assertParamExists('deleteEntityUserSettings', 'userId', userId);
|
|
20962
20841
|
// verify required parameter 'id' is not null or undefined
|
|
@@ -20973,9 +20852,6 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityUserSettings(user
|
|
|
20973
20852
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
20974
20853
|
const localVarHeaderParameter = {};
|
|
20975
20854
|
const localVarQueryParameter = {};
|
|
20976
|
-
if (filter !== undefined) {
|
|
20977
|
-
localVarQueryParameter['filter'] = filter;
|
|
20978
|
-
}
|
|
20979
20855
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
20980
20856
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
20981
20857
|
localVarRequestOptions.headers = {
|
|
@@ -21033,12 +20909,11 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityUsers(id, filter,
|
|
|
21033
20909
|
* @summary Delete a Visualization Object
|
|
21034
20910
|
* @param {string} workspaceId
|
|
21035
20911
|
* @param {string} objectId
|
|
21036
|
-
* @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\').
|
|
21037
20912
|
* @param {*} [options] Override http request option.
|
|
21038
20913
|
* @param {Configuration} [configuration] Optional configuration.
|
|
21039
20914
|
* @throws {RequiredError}
|
|
21040
20915
|
*/
|
|
21041
|
-
export async function EntitiesApiAxiosParamCreator_DeleteEntityVisualizationObjects(workspaceId, objectId,
|
|
20916
|
+
export async function EntitiesApiAxiosParamCreator_DeleteEntityVisualizationObjects(workspaceId, objectId, options = {}, configuration) {
|
|
21042
20917
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
21043
20918
|
assertParamExists('deleteEntityVisualizationObjects', 'workspaceId', workspaceId);
|
|
21044
20919
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -21055,9 +20930,6 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityVisualizationObje
|
|
|
21055
20930
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
21056
20931
|
const localVarHeaderParameter = {};
|
|
21057
20932
|
const localVarQueryParameter = {};
|
|
21058
|
-
if (filter !== undefined) {
|
|
21059
|
-
localVarQueryParameter['filter'] = filter;
|
|
21060
|
-
}
|
|
21061
20933
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
21062
20934
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
21063
20935
|
localVarRequestOptions.headers = {
|
|
@@ -21076,12 +20948,11 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityVisualizationObje
|
|
|
21076
20948
|
* @summary Delete a Settings for Workspace Data Filter
|
|
21077
20949
|
* @param {string} workspaceId
|
|
21078
20950
|
* @param {string} objectId
|
|
21079
|
-
* @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\').
|
|
21080
20951
|
* @param {*} [options] Override http request option.
|
|
21081
20952
|
* @param {Configuration} [configuration] Optional configuration.
|
|
21082
20953
|
* @throws {RequiredError}
|
|
21083
20954
|
*/
|
|
21084
|
-
export async function EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceDataFilterSettings(workspaceId, objectId,
|
|
20955
|
+
export async function EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceDataFilterSettings(workspaceId, objectId, options = {}, configuration) {
|
|
21085
20956
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
21086
20957
|
assertParamExists('deleteEntityWorkspaceDataFilterSettings', 'workspaceId', workspaceId);
|
|
21087
20958
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -21098,9 +20969,6 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceDataFilt
|
|
|
21098
20969
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
21099
20970
|
const localVarHeaderParameter = {};
|
|
21100
20971
|
const localVarQueryParameter = {};
|
|
21101
|
-
if (filter !== undefined) {
|
|
21102
|
-
localVarQueryParameter['filter'] = filter;
|
|
21103
|
-
}
|
|
21104
20972
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
21105
20973
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
21106
20974
|
localVarRequestOptions.headers = {
|
|
@@ -21119,12 +20987,11 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceDataFilt
|
|
|
21119
20987
|
* @summary Delete a Workspace Data Filter
|
|
21120
20988
|
* @param {string} workspaceId
|
|
21121
20989
|
* @param {string} objectId
|
|
21122
|
-
* @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\').
|
|
21123
20990
|
* @param {*} [options] Override http request option.
|
|
21124
20991
|
* @param {Configuration} [configuration] Optional configuration.
|
|
21125
20992
|
* @throws {RequiredError}
|
|
21126
20993
|
*/
|
|
21127
|
-
export async function EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceDataFilters(workspaceId, objectId,
|
|
20994
|
+
export async function EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceDataFilters(workspaceId, objectId, options = {}, configuration) {
|
|
21128
20995
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
21129
20996
|
assertParamExists('deleteEntityWorkspaceDataFilters', 'workspaceId', workspaceId);
|
|
21130
20997
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -21141,9 +21008,6 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceDataFilt
|
|
|
21141
21008
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
21142
21009
|
const localVarHeaderParameter = {};
|
|
21143
21010
|
const localVarQueryParameter = {};
|
|
21144
|
-
if (filter !== undefined) {
|
|
21145
|
-
localVarQueryParameter['filter'] = filter;
|
|
21146
|
-
}
|
|
21147
21011
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
21148
21012
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
21149
21013
|
localVarRequestOptions.headers = {
|
|
@@ -21162,12 +21026,11 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceDataFilt
|
|
|
21162
21026
|
* @summary Delete a Setting for Workspace
|
|
21163
21027
|
* @param {string} workspaceId
|
|
21164
21028
|
* @param {string} objectId
|
|
21165
|
-
* @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\').
|
|
21166
21029
|
* @param {*} [options] Override http request option.
|
|
21167
21030
|
* @param {Configuration} [configuration] Optional configuration.
|
|
21168
21031
|
* @throws {RequiredError}
|
|
21169
21032
|
*/
|
|
21170
|
-
export async function EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceSettings(workspaceId, objectId,
|
|
21033
|
+
export async function EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceSettings(workspaceId, objectId, options = {}, configuration) {
|
|
21171
21034
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
21172
21035
|
assertParamExists('deleteEntityWorkspaceSettings', 'workspaceId', workspaceId);
|
|
21173
21036
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -21184,9 +21047,6 @@ export async function EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceSettings
|
|
|
21184
21047
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
21185
21048
|
const localVarHeaderParameter = {};
|
|
21186
21049
|
const localVarQueryParameter = {};
|
|
21187
|
-
if (filter !== undefined) {
|
|
21188
|
-
localVarQueryParameter['filter'] = filter;
|
|
21189
|
-
}
|
|
21190
21050
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
21191
21051
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
21192
21052
|
localVarRequestOptions.headers = {
|
|
@@ -31942,7 +31802,7 @@ export async function EntitiesApi_CreateEntityWorkspaces(axios, basePath, reques
|
|
|
31942
31802
|
* @throws {RequiredError}
|
|
31943
31803
|
*/
|
|
31944
31804
|
export async function EntitiesApi_DeleteEntityAnalyticalDashboards(axios, basePath, requestParameters, options, configuration) {
|
|
31945
|
-
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityAnalyticalDashboards(requestParameters.workspaceId, requestParameters.objectId,
|
|
31805
|
+
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityAnalyticalDashboards(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
31946
31806
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
31947
31807
|
}
|
|
31948
31808
|
// EntitiesApi Api FP
|
|
@@ -31957,7 +31817,7 @@ export async function EntitiesApi_DeleteEntityAnalyticalDashboards(axios, basePa
|
|
|
31957
31817
|
* @throws {RequiredError}
|
|
31958
31818
|
*/
|
|
31959
31819
|
export async function EntitiesApi_DeleteEntityApiTokens(axios, basePath, requestParameters, options, configuration) {
|
|
31960
|
-
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityApiTokens(requestParameters.userId, requestParameters.id,
|
|
31820
|
+
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityApiTokens(requestParameters.userId, requestParameters.id, options || {}, configuration);
|
|
31961
31821
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
31962
31822
|
}
|
|
31963
31823
|
// EntitiesApi Api FP
|
|
@@ -31972,7 +31832,7 @@ export async function EntitiesApi_DeleteEntityApiTokens(axios, basePath, request
|
|
|
31972
31832
|
* @throws {RequiredError}
|
|
31973
31833
|
*/
|
|
31974
31834
|
export async function EntitiesApi_DeleteEntityAttributeHierarchies(axios, basePath, requestParameters, options, configuration) {
|
|
31975
|
-
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityAttributeHierarchies(requestParameters.workspaceId, requestParameters.objectId,
|
|
31835
|
+
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityAttributeHierarchies(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
31976
31836
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
31977
31837
|
}
|
|
31978
31838
|
// EntitiesApi Api FP
|
|
@@ -31987,7 +31847,7 @@ export async function EntitiesApi_DeleteEntityAttributeHierarchies(axios, basePa
|
|
|
31987
31847
|
* @throws {RequiredError}
|
|
31988
31848
|
*/
|
|
31989
31849
|
export async function EntitiesApi_DeleteEntityAutomations(axios, basePath, requestParameters, options, configuration) {
|
|
31990
|
-
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityAutomations(requestParameters.workspaceId, requestParameters.objectId,
|
|
31850
|
+
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityAutomations(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
31991
31851
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
31992
31852
|
}
|
|
31993
31853
|
// EntitiesApi Api FP
|
|
@@ -32032,7 +31892,7 @@ export async function EntitiesApi_DeleteEntityCspDirectives(axios, basePath, req
|
|
|
32032
31892
|
* @throws {RequiredError}
|
|
32033
31893
|
*/
|
|
32034
31894
|
export async function EntitiesApi_DeleteEntityCustomApplicationSettings(axios, basePath, requestParameters, options, configuration) {
|
|
32035
|
-
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityCustomApplicationSettings(requestParameters.workspaceId, requestParameters.objectId,
|
|
31895
|
+
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityCustomApplicationSettings(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
32036
31896
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
32037
31897
|
}
|
|
32038
31898
|
// EntitiesApi Api FP
|
|
@@ -32047,7 +31907,7 @@ export async function EntitiesApi_DeleteEntityCustomApplicationSettings(axios, b
|
|
|
32047
31907
|
* @throws {RequiredError}
|
|
32048
31908
|
*/
|
|
32049
31909
|
export async function EntitiesApi_DeleteEntityCustomGeoCollections(axios, basePath, requestParameters, options, configuration) {
|
|
32050
|
-
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityCustomGeoCollections(requestParameters.id,
|
|
31910
|
+
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityCustomGeoCollections(requestParameters.id, options || {}, configuration);
|
|
32051
31911
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
32052
31912
|
}
|
|
32053
31913
|
// EntitiesApi Api FP
|
|
@@ -32062,7 +31922,7 @@ export async function EntitiesApi_DeleteEntityCustomGeoCollections(axios, basePa
|
|
|
32062
31922
|
* @throws {RequiredError}
|
|
32063
31923
|
*/
|
|
32064
31924
|
export async function EntitiesApi_DeleteEntityDashboardPlugins(axios, basePath, requestParameters, options, configuration) {
|
|
32065
|
-
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityDashboardPlugins(requestParameters.workspaceId, requestParameters.objectId,
|
|
31925
|
+
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityDashboardPlugins(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
32066
31926
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
32067
31927
|
}
|
|
32068
31928
|
// EntitiesApi Api FP
|
|
@@ -32077,7 +31937,7 @@ export async function EntitiesApi_DeleteEntityDashboardPlugins(axios, basePath,
|
|
|
32077
31937
|
* @throws {RequiredError}
|
|
32078
31938
|
*/
|
|
32079
31939
|
export async function EntitiesApi_DeleteEntityDataSources(axios, basePath, requestParameters, options, configuration) {
|
|
32080
|
-
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityDataSources(requestParameters.id,
|
|
31940
|
+
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityDataSources(requestParameters.id, options || {}, configuration);
|
|
32081
31941
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
32082
31942
|
}
|
|
32083
31943
|
// EntitiesApi Api FP
|
|
@@ -32092,7 +31952,7 @@ export async function EntitiesApi_DeleteEntityDataSources(axios, basePath, reque
|
|
|
32092
31952
|
* @throws {RequiredError}
|
|
32093
31953
|
*/
|
|
32094
31954
|
export async function EntitiesApi_DeleteEntityExportDefinitions(axios, basePath, requestParameters, options, configuration) {
|
|
32095
|
-
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityExportDefinitions(requestParameters.workspaceId, requestParameters.objectId,
|
|
31955
|
+
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityExportDefinitions(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
32096
31956
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
32097
31957
|
}
|
|
32098
31958
|
// EntitiesApi Api FP
|
|
@@ -32122,7 +31982,7 @@ export async function EntitiesApi_DeleteEntityExportTemplates(axios, basePath, r
|
|
|
32122
31982
|
* @throws {RequiredError}
|
|
32123
31983
|
*/
|
|
32124
31984
|
export async function EntitiesApi_DeleteEntityFilterContexts(axios, basePath, requestParameters, options, configuration) {
|
|
32125
|
-
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityFilterContexts(requestParameters.workspaceId, requestParameters.objectId,
|
|
31985
|
+
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityFilterContexts(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
32126
31986
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
32127
31987
|
}
|
|
32128
31988
|
// EntitiesApi Api FP
|
|
@@ -32137,7 +31997,7 @@ export async function EntitiesApi_DeleteEntityFilterContexts(axios, basePath, re
|
|
|
32137
31997
|
* @throws {RequiredError}
|
|
32138
31998
|
*/
|
|
32139
31999
|
export async function EntitiesApi_DeleteEntityFilterViews(axios, basePath, requestParameters, options, configuration) {
|
|
32140
|
-
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityFilterViews(requestParameters.workspaceId, requestParameters.objectId,
|
|
32000
|
+
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityFilterViews(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
32141
32001
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
32142
32002
|
}
|
|
32143
32003
|
// EntitiesApi Api FP
|
|
@@ -32167,7 +32027,7 @@ export async function EntitiesApi_DeleteEntityIdentityProviders(axios, basePath,
|
|
|
32167
32027
|
* @throws {RequiredError}
|
|
32168
32028
|
*/
|
|
32169
32029
|
export async function EntitiesApi_DeleteEntityJwks(axios, basePath, requestParameters, options, configuration) {
|
|
32170
|
-
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityJwks(requestParameters.id,
|
|
32030
|
+
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityJwks(requestParameters.id, options || {}, configuration);
|
|
32171
32031
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
32172
32032
|
}
|
|
32173
32033
|
// EntitiesApi Api FP
|
|
@@ -32240,7 +32100,7 @@ export async function EntitiesApi_DeleteEntityMemoryItems(axios, basePath, reque
|
|
|
32240
32100
|
* @throws {RequiredError}
|
|
32241
32101
|
*/
|
|
32242
32102
|
export async function EntitiesApi_DeleteEntityMetrics(axios, basePath, requestParameters, options, configuration) {
|
|
32243
|
-
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityMetrics(requestParameters.workspaceId, requestParameters.objectId,
|
|
32103
|
+
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityMetrics(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
32244
32104
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
32245
32105
|
}
|
|
32246
32106
|
// EntitiesApi Api FP
|
|
@@ -32300,7 +32160,7 @@ export async function EntitiesApi_DeleteEntityThemes(axios, basePath, requestPar
|
|
|
32300
32160
|
* @throws {RequiredError}
|
|
32301
32161
|
*/
|
|
32302
32162
|
export async function EntitiesApi_DeleteEntityUserDataFilters(axios, basePath, requestParameters, options, configuration) {
|
|
32303
|
-
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityUserDataFilters(requestParameters.workspaceId, requestParameters.objectId,
|
|
32163
|
+
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityUserDataFilters(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
32304
32164
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
32305
32165
|
}
|
|
32306
32166
|
// EntitiesApi Api FP
|
|
@@ -32330,7 +32190,7 @@ export async function EntitiesApi_DeleteEntityUserGroups(axios, basePath, reques
|
|
|
32330
32190
|
* @throws {RequiredError}
|
|
32331
32191
|
*/
|
|
32332
32192
|
export async function EntitiesApi_DeleteEntityUserSettings(axios, basePath, requestParameters, options, configuration) {
|
|
32333
|
-
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityUserSettings(requestParameters.userId, requestParameters.id,
|
|
32193
|
+
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityUserSettings(requestParameters.userId, requestParameters.id, options || {}, configuration);
|
|
32334
32194
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
32335
32195
|
}
|
|
32336
32196
|
// EntitiesApi Api FP
|
|
@@ -32360,7 +32220,7 @@ export async function EntitiesApi_DeleteEntityUsers(axios, basePath, requestPara
|
|
|
32360
32220
|
* @throws {RequiredError}
|
|
32361
32221
|
*/
|
|
32362
32222
|
export async function EntitiesApi_DeleteEntityVisualizationObjects(axios, basePath, requestParameters, options, configuration) {
|
|
32363
|
-
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityVisualizationObjects(requestParameters.workspaceId, requestParameters.objectId,
|
|
32223
|
+
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityVisualizationObjects(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
32364
32224
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
32365
32225
|
}
|
|
32366
32226
|
// EntitiesApi Api FP
|
|
@@ -32375,7 +32235,7 @@ export async function EntitiesApi_DeleteEntityVisualizationObjects(axios, basePa
|
|
|
32375
32235
|
* @throws {RequiredError}
|
|
32376
32236
|
*/
|
|
32377
32237
|
export async function EntitiesApi_DeleteEntityWorkspaceDataFilterSettings(axios, basePath, requestParameters, options, configuration) {
|
|
32378
|
-
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceDataFilterSettings(requestParameters.workspaceId, requestParameters.objectId,
|
|
32238
|
+
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceDataFilterSettings(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
32379
32239
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
32380
32240
|
}
|
|
32381
32241
|
// EntitiesApi Api FP
|
|
@@ -32390,7 +32250,7 @@ export async function EntitiesApi_DeleteEntityWorkspaceDataFilterSettings(axios,
|
|
|
32390
32250
|
* @throws {RequiredError}
|
|
32391
32251
|
*/
|
|
32392
32252
|
export async function EntitiesApi_DeleteEntityWorkspaceDataFilters(axios, basePath, requestParameters, options, configuration) {
|
|
32393
|
-
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceDataFilters(requestParameters.workspaceId, requestParameters.objectId,
|
|
32253
|
+
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceDataFilters(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
32394
32254
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
32395
32255
|
}
|
|
32396
32256
|
// EntitiesApi Api FP
|
|
@@ -32405,7 +32265,7 @@ export async function EntitiesApi_DeleteEntityWorkspaceDataFilters(axios, basePa
|
|
|
32405
32265
|
* @throws {RequiredError}
|
|
32406
32266
|
*/
|
|
32407
32267
|
export async function EntitiesApi_DeleteEntityWorkspaceSettings(axios, basePath, requestParameters, options, configuration) {
|
|
32408
|
-
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceSettings(requestParameters.workspaceId, requestParameters.objectId,
|
|
32268
|
+
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceSettings(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
32409
32269
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
32410
32270
|
}
|
|
32411
32271
|
// EntitiesApi Api FP
|
|
@@ -38231,12 +38091,11 @@ export async function ExportDefinitionControllerApiAxiosParamCreator_CreateEntit
|
|
|
38231
38091
|
* @summary Delete an Export Definition
|
|
38232
38092
|
* @param {string} workspaceId
|
|
38233
38093
|
* @param {string} objectId
|
|
38234
|
-
* @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\').
|
|
38235
38094
|
* @param {*} [options] Override http request option.
|
|
38236
38095
|
* @param {Configuration} [configuration] Optional configuration.
|
|
38237
38096
|
* @throws {RequiredError}
|
|
38238
38097
|
*/
|
|
38239
|
-
export async function ExportDefinitionControllerApiAxiosParamCreator_DeleteEntityExportDefinitions(workspaceId, objectId,
|
|
38098
|
+
export async function ExportDefinitionControllerApiAxiosParamCreator_DeleteEntityExportDefinitions(workspaceId, objectId, options = {}, configuration) {
|
|
38240
38099
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
38241
38100
|
assertParamExists('deleteEntityExportDefinitions', 'workspaceId', workspaceId);
|
|
38242
38101
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -38253,9 +38112,6 @@ export async function ExportDefinitionControllerApiAxiosParamCreator_DeleteEntit
|
|
|
38253
38112
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
38254
38113
|
const localVarHeaderParameter = {};
|
|
38255
38114
|
const localVarQueryParameter = {};
|
|
38256
|
-
if (filter !== undefined) {
|
|
38257
|
-
localVarQueryParameter['filter'] = filter;
|
|
38258
|
-
}
|
|
38259
38115
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
38260
38116
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
38261
38117
|
localVarRequestOptions.headers = {
|
|
@@ -38601,7 +38457,7 @@ export async function ExportDefinitionControllerApi_CreateEntityExportDefinition
|
|
|
38601
38457
|
* @throws {RequiredError}
|
|
38602
38458
|
*/
|
|
38603
38459
|
export async function ExportDefinitionControllerApi_DeleteEntityExportDefinitions(axios, basePath, requestParameters, options, configuration) {
|
|
38604
|
-
const localVarAxiosArgs = await ExportDefinitionControllerApiAxiosParamCreator_DeleteEntityExportDefinitions(requestParameters.workspaceId, requestParameters.objectId,
|
|
38460
|
+
const localVarAxiosArgs = await ExportDefinitionControllerApiAxiosParamCreator_DeleteEntityExportDefinitions(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
38605
38461
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
38606
38462
|
}
|
|
38607
38463
|
// ExportDefinitionControllerApi Api FP
|
|
@@ -38829,12 +38685,11 @@ export async function ExportDefinitionsApiAxiosParamCreator_CreateEntityExportDe
|
|
|
38829
38685
|
* @summary Delete an Export Definition
|
|
38830
38686
|
* @param {string} workspaceId
|
|
38831
38687
|
* @param {string} objectId
|
|
38832
|
-
* @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\').
|
|
38833
38688
|
* @param {*} [options] Override http request option.
|
|
38834
38689
|
* @param {Configuration} [configuration] Optional configuration.
|
|
38835
38690
|
* @throws {RequiredError}
|
|
38836
38691
|
*/
|
|
38837
|
-
export async function ExportDefinitionsApiAxiosParamCreator_DeleteEntityExportDefinitions(workspaceId, objectId,
|
|
38692
|
+
export async function ExportDefinitionsApiAxiosParamCreator_DeleteEntityExportDefinitions(workspaceId, objectId, options = {}, configuration) {
|
|
38838
38693
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
38839
38694
|
assertParamExists('deleteEntityExportDefinitions', 'workspaceId', workspaceId);
|
|
38840
38695
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -38851,9 +38706,6 @@ export async function ExportDefinitionsApiAxiosParamCreator_DeleteEntityExportDe
|
|
|
38851
38706
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
38852
38707
|
const localVarHeaderParameter = {};
|
|
38853
38708
|
const localVarQueryParameter = {};
|
|
38854
|
-
if (filter !== undefined) {
|
|
38855
|
-
localVarQueryParameter['filter'] = filter;
|
|
38856
|
-
}
|
|
38857
38709
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
38858
38710
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
38859
38711
|
localVarRequestOptions.headers = {
|
|
@@ -39199,7 +39051,7 @@ export async function ExportDefinitionsApi_CreateEntityExportDefinitions(axios,
|
|
|
39199
39051
|
* @throws {RequiredError}
|
|
39200
39052
|
*/
|
|
39201
39053
|
export async function ExportDefinitionsApi_DeleteEntityExportDefinitions(axios, basePath, requestParameters, options, configuration) {
|
|
39202
|
-
const localVarAxiosArgs = await ExportDefinitionsApiAxiosParamCreator_DeleteEntityExportDefinitions(requestParameters.workspaceId, requestParameters.objectId,
|
|
39054
|
+
const localVarAxiosArgs = await ExportDefinitionsApiAxiosParamCreator_DeleteEntityExportDefinitions(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
39203
39055
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
39204
39056
|
}
|
|
39205
39057
|
// ExportDefinitionsApi Api FP
|
|
@@ -40839,12 +40691,11 @@ export async function FilterContextApiAxiosParamCreator_CreateEntityFilterContex
|
|
|
40839
40691
|
* @summary Delete a Filter Context
|
|
40840
40692
|
* @param {string} workspaceId
|
|
40841
40693
|
* @param {string} objectId
|
|
40842
|
-
* @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\').
|
|
40843
40694
|
* @param {*} [options] Override http request option.
|
|
40844
40695
|
* @param {Configuration} [configuration] Optional configuration.
|
|
40845
40696
|
* @throws {RequiredError}
|
|
40846
40697
|
*/
|
|
40847
|
-
export async function FilterContextApiAxiosParamCreator_DeleteEntityFilterContexts(workspaceId, objectId,
|
|
40698
|
+
export async function FilterContextApiAxiosParamCreator_DeleteEntityFilterContexts(workspaceId, objectId, options = {}, configuration) {
|
|
40848
40699
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
40849
40700
|
assertParamExists('deleteEntityFilterContexts', 'workspaceId', workspaceId);
|
|
40850
40701
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -40861,9 +40712,6 @@ export async function FilterContextApiAxiosParamCreator_DeleteEntityFilterContex
|
|
|
40861
40712
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
40862
40713
|
const localVarHeaderParameter = {};
|
|
40863
40714
|
const localVarQueryParameter = {};
|
|
40864
|
-
if (filter !== undefined) {
|
|
40865
|
-
localVarQueryParameter['filter'] = filter;
|
|
40866
|
-
}
|
|
40867
40715
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
40868
40716
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
40869
40717
|
localVarRequestOptions.headers = {
|
|
@@ -41209,7 +41057,7 @@ export async function FilterContextApi_CreateEntityFilterContexts(axios, basePat
|
|
|
41209
41057
|
* @throws {RequiredError}
|
|
41210
41058
|
*/
|
|
41211
41059
|
export async function FilterContextApi_DeleteEntityFilterContexts(axios, basePath, requestParameters, options, configuration) {
|
|
41212
|
-
const localVarAxiosArgs = await FilterContextApiAxiosParamCreator_DeleteEntityFilterContexts(requestParameters.workspaceId, requestParameters.objectId,
|
|
41060
|
+
const localVarAxiosArgs = await FilterContextApiAxiosParamCreator_DeleteEntityFilterContexts(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
41213
41061
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
41214
41062
|
}
|
|
41215
41063
|
// FilterContextApi Api FP
|
|
@@ -41437,12 +41285,11 @@ export async function FilterContextControllerApiAxiosParamCreator_CreateEntityFi
|
|
|
41437
41285
|
* @summary Delete a Filter Context
|
|
41438
41286
|
* @param {string} workspaceId
|
|
41439
41287
|
* @param {string} objectId
|
|
41440
|
-
* @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\').
|
|
41441
41288
|
* @param {*} [options] Override http request option.
|
|
41442
41289
|
* @param {Configuration} [configuration] Optional configuration.
|
|
41443
41290
|
* @throws {RequiredError}
|
|
41444
41291
|
*/
|
|
41445
|
-
export async function FilterContextControllerApiAxiosParamCreator_DeleteEntityFilterContexts(workspaceId, objectId,
|
|
41292
|
+
export async function FilterContextControllerApiAxiosParamCreator_DeleteEntityFilterContexts(workspaceId, objectId, options = {}, configuration) {
|
|
41446
41293
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
41447
41294
|
assertParamExists('deleteEntityFilterContexts', 'workspaceId', workspaceId);
|
|
41448
41295
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -41459,9 +41306,6 @@ export async function FilterContextControllerApiAxiosParamCreator_DeleteEntityFi
|
|
|
41459
41306
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
41460
41307
|
const localVarHeaderParameter = {};
|
|
41461
41308
|
const localVarQueryParameter = {};
|
|
41462
|
-
if (filter !== undefined) {
|
|
41463
|
-
localVarQueryParameter['filter'] = filter;
|
|
41464
|
-
}
|
|
41465
41309
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
41466
41310
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
41467
41311
|
localVarRequestOptions.headers = {
|
|
@@ -41807,7 +41651,7 @@ export async function FilterContextControllerApi_CreateEntityFilterContexts(axio
|
|
|
41807
41651
|
* @throws {RequiredError}
|
|
41808
41652
|
*/
|
|
41809
41653
|
export async function FilterContextControllerApi_DeleteEntityFilterContexts(axios, basePath, requestParameters, options, configuration) {
|
|
41810
|
-
const localVarAxiosArgs = await FilterContextControllerApiAxiosParamCreator_DeleteEntityFilterContexts(requestParameters.workspaceId, requestParameters.objectId,
|
|
41654
|
+
const localVarAxiosArgs = await FilterContextControllerApiAxiosParamCreator_DeleteEntityFilterContexts(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
41811
41655
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
41812
41656
|
}
|
|
41813
41657
|
// FilterContextControllerApi Api FP
|
|
@@ -42031,12 +41875,11 @@ export async function FilterViewControllerApiAxiosParamCreator_CreateEntityFilte
|
|
|
42031
41875
|
* @summary Delete Filter view
|
|
42032
41876
|
* @param {string} workspaceId
|
|
42033
41877
|
* @param {string} objectId
|
|
42034
|
-
* @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\').
|
|
42035
41878
|
* @param {*} [options] Override http request option.
|
|
42036
41879
|
* @param {Configuration} [configuration] Optional configuration.
|
|
42037
41880
|
* @throws {RequiredError}
|
|
42038
41881
|
*/
|
|
42039
|
-
export async function FilterViewControllerApiAxiosParamCreator_DeleteEntityFilterViews(workspaceId, objectId,
|
|
41882
|
+
export async function FilterViewControllerApiAxiosParamCreator_DeleteEntityFilterViews(workspaceId, objectId, options = {}, configuration) {
|
|
42040
41883
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
42041
41884
|
assertParamExists('deleteEntityFilterViews', 'workspaceId', workspaceId);
|
|
42042
41885
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -42053,9 +41896,6 @@ export async function FilterViewControllerApiAxiosParamCreator_DeleteEntityFilte
|
|
|
42053
41896
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
42054
41897
|
const localVarHeaderParameter = {};
|
|
42055
41898
|
const localVarQueryParameter = {};
|
|
42056
|
-
if (filter !== undefined) {
|
|
42057
|
-
localVarQueryParameter['filter'] = filter;
|
|
42058
|
-
}
|
|
42059
41899
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
42060
41900
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
42061
41901
|
localVarRequestOptions.headers = {
|
|
@@ -42397,7 +42237,7 @@ export async function FilterViewControllerApi_CreateEntityFilterViews(axios, bas
|
|
|
42397
42237
|
* @throws {RequiredError}
|
|
42398
42238
|
*/
|
|
42399
42239
|
export async function FilterViewControllerApi_DeleteEntityFilterViews(axios, basePath, requestParameters, options, configuration) {
|
|
42400
|
-
const localVarAxiosArgs = await FilterViewControllerApiAxiosParamCreator_DeleteEntityFilterViews(requestParameters.workspaceId, requestParameters.objectId,
|
|
42240
|
+
const localVarAxiosArgs = await FilterViewControllerApiAxiosParamCreator_DeleteEntityFilterViews(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
42401
42241
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
42402
42242
|
}
|
|
42403
42243
|
// FilterViewControllerApi Api FP
|
|
@@ -42621,12 +42461,11 @@ export async function FilterViewsApiAxiosParamCreator_CreateEntityFilterViews(wo
|
|
|
42621
42461
|
* @summary Delete Filter view
|
|
42622
42462
|
* @param {string} workspaceId
|
|
42623
42463
|
* @param {string} objectId
|
|
42624
|
-
* @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\').
|
|
42625
42464
|
* @param {*} [options] Override http request option.
|
|
42626
42465
|
* @param {Configuration} [configuration] Optional configuration.
|
|
42627
42466
|
* @throws {RequiredError}
|
|
42628
42467
|
*/
|
|
42629
|
-
export async function FilterViewsApiAxiosParamCreator_DeleteEntityFilterViews(workspaceId, objectId,
|
|
42468
|
+
export async function FilterViewsApiAxiosParamCreator_DeleteEntityFilterViews(workspaceId, objectId, options = {}, configuration) {
|
|
42630
42469
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
42631
42470
|
assertParamExists('deleteEntityFilterViews', 'workspaceId', workspaceId);
|
|
42632
42471
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -42643,9 +42482,6 @@ export async function FilterViewsApiAxiosParamCreator_DeleteEntityFilterViews(wo
|
|
|
42643
42482
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
42644
42483
|
const localVarHeaderParameter = {};
|
|
42645
42484
|
const localVarQueryParameter = {};
|
|
42646
|
-
if (filter !== undefined) {
|
|
42647
|
-
localVarQueryParameter['filter'] = filter;
|
|
42648
|
-
}
|
|
42649
42485
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
42650
42486
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
42651
42487
|
localVarRequestOptions.headers = {
|
|
@@ -43076,7 +42912,7 @@ export async function FilterViewsApi_CreateEntityFilterViews(axios, basePath, re
|
|
|
43076
42912
|
* @throws {RequiredError}
|
|
43077
42913
|
*/
|
|
43078
42914
|
export async function FilterViewsApi_DeleteEntityFilterViews(axios, basePath, requestParameters, options, configuration) {
|
|
43079
|
-
const localVarAxiosArgs = await FilterViewsApiAxiosParamCreator_DeleteEntityFilterViews(requestParameters.workspaceId, requestParameters.objectId,
|
|
42915
|
+
const localVarAxiosArgs = await FilterViewsApiAxiosParamCreator_DeleteEntityFilterViews(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
43080
42916
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
43081
42917
|
}
|
|
43082
42918
|
// FilterViewsApi Api FP
|
|
@@ -43427,12 +43263,11 @@ export async function GeographicDataApiAxiosParamCreator_CreateEntityCustomGeoCo
|
|
|
43427
43263
|
*
|
|
43428
43264
|
* @summary Delete Custom Geo Collection
|
|
43429
43265
|
* @param {string} id
|
|
43430
|
-
* @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\').
|
|
43431
43266
|
* @param {*} [options] Override http request option.
|
|
43432
43267
|
* @param {Configuration} [configuration] Optional configuration.
|
|
43433
43268
|
* @throws {RequiredError}
|
|
43434
43269
|
*/
|
|
43435
|
-
export async function GeographicDataApiAxiosParamCreator_DeleteEntityCustomGeoCollections(id,
|
|
43270
|
+
export async function GeographicDataApiAxiosParamCreator_DeleteEntityCustomGeoCollections(id, options = {}, configuration) {
|
|
43436
43271
|
// verify required parameter 'id' is not null or undefined
|
|
43437
43272
|
assertParamExists('deleteEntityCustomGeoCollections', 'id', id);
|
|
43438
43273
|
const localVarPath = `/api/v1/entities/customGeoCollections/{id}`
|
|
@@ -43446,9 +43281,6 @@ export async function GeographicDataApiAxiosParamCreator_DeleteEntityCustomGeoCo
|
|
|
43446
43281
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
43447
43282
|
const localVarHeaderParameter = {};
|
|
43448
43283
|
const localVarQueryParameter = {};
|
|
43449
|
-
if (filter !== undefined) {
|
|
43450
|
-
localVarQueryParameter['filter'] = filter;
|
|
43451
|
-
}
|
|
43452
43284
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
43453
43285
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
43454
43286
|
localVarRequestOptions.headers = {
|
|
@@ -43688,7 +43520,7 @@ export async function GeographicDataApi_CreateEntityCustomGeoCollections(axios,
|
|
|
43688
43520
|
* @throws {RequiredError}
|
|
43689
43521
|
*/
|
|
43690
43522
|
export async function GeographicDataApi_DeleteEntityCustomGeoCollections(axios, basePath, requestParameters, options, configuration) {
|
|
43691
|
-
const localVarAxiosArgs = await GeographicDataApiAxiosParamCreator_DeleteEntityCustomGeoCollections(requestParameters.id,
|
|
43523
|
+
const localVarAxiosArgs = await GeographicDataApiAxiosParamCreator_DeleteEntityCustomGeoCollections(requestParameters.id, options || {}, configuration);
|
|
43692
43524
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
43693
43525
|
}
|
|
43694
43526
|
// GeographicDataApi Api FP
|
|
@@ -44790,12 +44622,11 @@ export async function JWKSApiAxiosParamCreator_CreateEntityJwks(jsonApiJwkInDocu
|
|
|
44790
44622
|
* Deletes JSON web key - used to verify JSON web tokens (Jwts)
|
|
44791
44623
|
* @summary Delete Jwk
|
|
44792
44624
|
* @param {string} id
|
|
44793
|
-
* @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\').
|
|
44794
44625
|
* @param {*} [options] Override http request option.
|
|
44795
44626
|
* @param {Configuration} [configuration] Optional configuration.
|
|
44796
44627
|
* @throws {RequiredError}
|
|
44797
44628
|
*/
|
|
44798
|
-
export async function JWKSApiAxiosParamCreator_DeleteEntityJwks(id,
|
|
44629
|
+
export async function JWKSApiAxiosParamCreator_DeleteEntityJwks(id, options = {}, configuration) {
|
|
44799
44630
|
// verify required parameter 'id' is not null or undefined
|
|
44800
44631
|
assertParamExists('deleteEntityJwks', 'id', id);
|
|
44801
44632
|
const localVarPath = `/api/v1/entities/jwks/{id}`
|
|
@@ -44809,9 +44640,6 @@ export async function JWKSApiAxiosParamCreator_DeleteEntityJwks(id, filter, opti
|
|
|
44809
44640
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
44810
44641
|
const localVarHeaderParameter = {};
|
|
44811
44642
|
const localVarQueryParameter = {};
|
|
44812
|
-
if (filter !== undefined) {
|
|
44813
|
-
localVarQueryParameter['filter'] = filter;
|
|
44814
|
-
}
|
|
44815
44643
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
44816
44644
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
44817
44645
|
localVarRequestOptions.headers = {
|
|
@@ -45051,7 +44879,7 @@ export async function JWKSApi_CreateEntityJwks(axios, basePath, requestParameter
|
|
|
45051
44879
|
* @throws {RequiredError}
|
|
45052
44880
|
*/
|
|
45053
44881
|
export async function JWKSApi_DeleteEntityJwks(axios, basePath, requestParameters, options, configuration) {
|
|
45054
|
-
const localVarAxiosArgs = await JWKSApiAxiosParamCreator_DeleteEntityJwks(requestParameters.id,
|
|
44882
|
+
const localVarAxiosArgs = await JWKSApiAxiosParamCreator_DeleteEntityJwks(requestParameters.id, options || {}, configuration);
|
|
45055
44883
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
45056
44884
|
}
|
|
45057
44885
|
// JWKSApi Api FP
|
|
@@ -45240,12 +45068,11 @@ export async function JwkControllerApiAxiosParamCreator_CreateEntityJwks(jsonApi
|
|
|
45240
45068
|
* Deletes JSON web key - used to verify JSON web tokens (Jwts)
|
|
45241
45069
|
* @summary Delete Jwk
|
|
45242
45070
|
* @param {string} id
|
|
45243
|
-
* @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\').
|
|
45244
45071
|
* @param {*} [options] Override http request option.
|
|
45245
45072
|
* @param {Configuration} [configuration] Optional configuration.
|
|
45246
45073
|
* @throws {RequiredError}
|
|
45247
45074
|
*/
|
|
45248
|
-
export async function JwkControllerApiAxiosParamCreator_DeleteEntityJwks(id,
|
|
45075
|
+
export async function JwkControllerApiAxiosParamCreator_DeleteEntityJwks(id, options = {}, configuration) {
|
|
45249
45076
|
// verify required parameter 'id' is not null or undefined
|
|
45250
45077
|
assertParamExists('deleteEntityJwks', 'id', id);
|
|
45251
45078
|
const localVarPath = `/api/v1/entities/jwks/{id}`
|
|
@@ -45259,9 +45086,6 @@ export async function JwkControllerApiAxiosParamCreator_DeleteEntityJwks(id, fil
|
|
|
45259
45086
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
45260
45087
|
const localVarHeaderParameter = {};
|
|
45261
45088
|
const localVarQueryParameter = {};
|
|
45262
|
-
if (filter !== undefined) {
|
|
45263
|
-
localVarQueryParameter['filter'] = filter;
|
|
45264
|
-
}
|
|
45265
45089
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
45266
45090
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
45267
45091
|
localVarRequestOptions.headers = {
|
|
@@ -45501,7 +45325,7 @@ export async function JwkControllerApi_CreateEntityJwks(axios, basePath, request
|
|
|
45501
45325
|
* @throws {RequiredError}
|
|
45502
45326
|
*/
|
|
45503
45327
|
export async function JwkControllerApi_DeleteEntityJwks(axios, basePath, requestParameters, options, configuration) {
|
|
45504
|
-
const localVarAxiosArgs = await JwkControllerApiAxiosParamCreator_DeleteEntityJwks(requestParameters.id,
|
|
45328
|
+
const localVarAxiosArgs = await JwkControllerApiAxiosParamCreator_DeleteEntityJwks(requestParameters.id, options || {}, configuration);
|
|
45505
45329
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
45506
45330
|
}
|
|
45507
45331
|
// JwkControllerApi Api FP
|
|
@@ -50810,12 +50634,11 @@ export async function MetricControllerApiAxiosParamCreator_CreateEntityMetrics(w
|
|
|
50810
50634
|
* @summary Delete a Metric
|
|
50811
50635
|
* @param {string} workspaceId
|
|
50812
50636
|
* @param {string} objectId
|
|
50813
|
-
* @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\').
|
|
50814
50637
|
* @param {*} [options] Override http request option.
|
|
50815
50638
|
* @param {Configuration} [configuration] Optional configuration.
|
|
50816
50639
|
* @throws {RequiredError}
|
|
50817
50640
|
*/
|
|
50818
|
-
export async function MetricControllerApiAxiosParamCreator_DeleteEntityMetrics(workspaceId, objectId,
|
|
50641
|
+
export async function MetricControllerApiAxiosParamCreator_DeleteEntityMetrics(workspaceId, objectId, options = {}, configuration) {
|
|
50819
50642
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
50820
50643
|
assertParamExists('deleteEntityMetrics', 'workspaceId', workspaceId);
|
|
50821
50644
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -50832,9 +50655,6 @@ export async function MetricControllerApiAxiosParamCreator_DeleteEntityMetrics(w
|
|
|
50832
50655
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
50833
50656
|
const localVarHeaderParameter = {};
|
|
50834
50657
|
const localVarQueryParameter = {};
|
|
50835
|
-
if (filter !== undefined) {
|
|
50836
|
-
localVarQueryParameter['filter'] = filter;
|
|
50837
|
-
}
|
|
50838
50658
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
50839
50659
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
50840
50660
|
localVarRequestOptions.headers = {
|
|
@@ -51180,7 +51000,7 @@ export async function MetricControllerApi_CreateEntityMetrics(axios, basePath, r
|
|
|
51180
51000
|
* @throws {RequiredError}
|
|
51181
51001
|
*/
|
|
51182
51002
|
export async function MetricControllerApi_DeleteEntityMetrics(axios, basePath, requestParameters, options, configuration) {
|
|
51183
|
-
const localVarAxiosArgs = await MetricControllerApiAxiosParamCreator_DeleteEntityMetrics(requestParameters.workspaceId, requestParameters.objectId,
|
|
51003
|
+
const localVarAxiosArgs = await MetricControllerApiAxiosParamCreator_DeleteEntityMetrics(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
51184
51004
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
51185
51005
|
}
|
|
51186
51006
|
// MetricControllerApi Api FP
|
|
@@ -51408,12 +51228,11 @@ export async function MetricsApiAxiosParamCreator_CreateEntityMetrics(workspaceI
|
|
|
51408
51228
|
* @summary Delete a Metric
|
|
51409
51229
|
* @param {string} workspaceId
|
|
51410
51230
|
* @param {string} objectId
|
|
51411
|
-
* @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\').
|
|
51412
51231
|
* @param {*} [options] Override http request option.
|
|
51413
51232
|
* @param {Configuration} [configuration] Optional configuration.
|
|
51414
51233
|
* @throws {RequiredError}
|
|
51415
51234
|
*/
|
|
51416
|
-
export async function MetricsApiAxiosParamCreator_DeleteEntityMetrics(workspaceId, objectId,
|
|
51235
|
+
export async function MetricsApiAxiosParamCreator_DeleteEntityMetrics(workspaceId, objectId, options = {}, configuration) {
|
|
51417
51236
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
51418
51237
|
assertParamExists('deleteEntityMetrics', 'workspaceId', workspaceId);
|
|
51419
51238
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -51430,9 +51249,6 @@ export async function MetricsApiAxiosParamCreator_DeleteEntityMetrics(workspaceI
|
|
|
51430
51249
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
51431
51250
|
const localVarHeaderParameter = {};
|
|
51432
51251
|
const localVarQueryParameter = {};
|
|
51433
|
-
if (filter !== undefined) {
|
|
51434
|
-
localVarQueryParameter['filter'] = filter;
|
|
51435
|
-
}
|
|
51436
51252
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
51437
51253
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
51438
51254
|
localVarRequestOptions.headers = {
|
|
@@ -51778,7 +51594,7 @@ export async function MetricsApi_CreateEntityMetrics(axios, basePath, requestPar
|
|
|
51778
51594
|
* @throws {RequiredError}
|
|
51779
51595
|
*/
|
|
51780
51596
|
export async function MetricsApi_DeleteEntityMetrics(axios, basePath, requestParameters, options, configuration) {
|
|
51781
|
-
const localVarAxiosArgs = await MetricsApiAxiosParamCreator_DeleteEntityMetrics(requestParameters.workspaceId, requestParameters.objectId,
|
|
51597
|
+
const localVarAxiosArgs = await MetricsApiAxiosParamCreator_DeleteEntityMetrics(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
51782
51598
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
51783
51599
|
}
|
|
51784
51600
|
// MetricsApi Api FP
|
|
@@ -61194,12 +61010,11 @@ export async function PluginsApiAxiosParamCreator_CreateEntityDashboardPlugins(w
|
|
|
61194
61010
|
* @summary Delete a Plugin
|
|
61195
61011
|
* @param {string} workspaceId
|
|
61196
61012
|
* @param {string} objectId
|
|
61197
|
-
* @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\').
|
|
61198
61013
|
* @param {*} [options] Override http request option.
|
|
61199
61014
|
* @param {Configuration} [configuration] Optional configuration.
|
|
61200
61015
|
* @throws {RequiredError}
|
|
61201
61016
|
*/
|
|
61202
|
-
export async function PluginsApiAxiosParamCreator_DeleteEntityDashboardPlugins(workspaceId, objectId,
|
|
61017
|
+
export async function PluginsApiAxiosParamCreator_DeleteEntityDashboardPlugins(workspaceId, objectId, options = {}, configuration) {
|
|
61203
61018
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
61204
61019
|
assertParamExists('deleteEntityDashboardPlugins', 'workspaceId', workspaceId);
|
|
61205
61020
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -61216,9 +61031,6 @@ export async function PluginsApiAxiosParamCreator_DeleteEntityDashboardPlugins(w
|
|
|
61216
61031
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
61217
61032
|
const localVarHeaderParameter = {};
|
|
61218
61033
|
const localVarQueryParameter = {};
|
|
61219
|
-
if (filter !== undefined) {
|
|
61220
|
-
localVarQueryParameter['filter'] = filter;
|
|
61221
|
-
}
|
|
61222
61034
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
61223
61035
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
61224
61036
|
localVarRequestOptions.headers = {
|
|
@@ -61564,7 +61376,7 @@ export async function PluginsApi_CreateEntityDashboardPlugins(axios, basePath, r
|
|
|
61564
61376
|
* @throws {RequiredError}
|
|
61565
61377
|
*/
|
|
61566
61378
|
export async function PluginsApi_DeleteEntityDashboardPlugins(axios, basePath, requestParameters, options, configuration) {
|
|
61567
|
-
const localVarAxiosArgs = await PluginsApiAxiosParamCreator_DeleteEntityDashboardPlugins(requestParameters.workspaceId, requestParameters.objectId,
|
|
61379
|
+
const localVarAxiosArgs = await PluginsApiAxiosParamCreator_DeleteEntityDashboardPlugins(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
61568
61380
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
61569
61381
|
}
|
|
61570
61382
|
// PluginsApi Api FP
|
|
@@ -62369,12 +62181,11 @@ export async function UserDataFilterControllerApiAxiosParamCreator_CreateEntityU
|
|
|
62369
62181
|
* @summary Delete a User Data Filter
|
|
62370
62182
|
* @param {string} workspaceId
|
|
62371
62183
|
* @param {string} objectId
|
|
62372
|
-
* @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\').
|
|
62373
62184
|
* @param {*} [options] Override http request option.
|
|
62374
62185
|
* @param {Configuration} [configuration] Optional configuration.
|
|
62375
62186
|
* @throws {RequiredError}
|
|
62376
62187
|
*/
|
|
62377
|
-
export async function UserDataFilterControllerApiAxiosParamCreator_DeleteEntityUserDataFilters(workspaceId, objectId,
|
|
62188
|
+
export async function UserDataFilterControllerApiAxiosParamCreator_DeleteEntityUserDataFilters(workspaceId, objectId, options = {}, configuration) {
|
|
62378
62189
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
62379
62190
|
assertParamExists('deleteEntityUserDataFilters', 'workspaceId', workspaceId);
|
|
62380
62191
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -62391,9 +62202,6 @@ export async function UserDataFilterControllerApiAxiosParamCreator_DeleteEntityU
|
|
|
62391
62202
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
62392
62203
|
const localVarHeaderParameter = {};
|
|
62393
62204
|
const localVarQueryParameter = {};
|
|
62394
|
-
if (filter !== undefined) {
|
|
62395
|
-
localVarQueryParameter['filter'] = filter;
|
|
62396
|
-
}
|
|
62397
62205
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
62398
62206
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
62399
62207
|
localVarRequestOptions.headers = {
|
|
@@ -62739,7 +62547,7 @@ export async function UserDataFilterControllerApi_CreateEntityUserDataFilters(ax
|
|
|
62739
62547
|
* @throws {RequiredError}
|
|
62740
62548
|
*/
|
|
62741
62549
|
export async function UserDataFilterControllerApi_DeleteEntityUserDataFilters(axios, basePath, requestParameters, options, configuration) {
|
|
62742
|
-
const localVarAxiosArgs = await UserDataFilterControllerApiAxiosParamCreator_DeleteEntityUserDataFilters(requestParameters.workspaceId, requestParameters.objectId,
|
|
62550
|
+
const localVarAxiosArgs = await UserDataFilterControllerApiAxiosParamCreator_DeleteEntityUserDataFilters(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
62743
62551
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
62744
62552
|
}
|
|
62745
62553
|
// UserDataFilterControllerApi Api FP
|
|
@@ -64959,12 +64767,11 @@ export async function UserSettingControllerApiAxiosParamCreator_CreateEntityUser
|
|
|
64959
64767
|
* @summary Delete a setting for a user
|
|
64960
64768
|
* @param {string} userId
|
|
64961
64769
|
* @param {string} id
|
|
64962
|
-
* @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\').
|
|
64963
64770
|
* @param {*} [options] Override http request option.
|
|
64964
64771
|
* @param {Configuration} [configuration] Optional configuration.
|
|
64965
64772
|
* @throws {RequiredError}
|
|
64966
64773
|
*/
|
|
64967
|
-
export async function UserSettingControllerApiAxiosParamCreator_DeleteEntityUserSettings(userId, id,
|
|
64774
|
+
export async function UserSettingControllerApiAxiosParamCreator_DeleteEntityUserSettings(userId, id, options = {}, configuration) {
|
|
64968
64775
|
// verify required parameter 'userId' is not null or undefined
|
|
64969
64776
|
assertParamExists('deleteEntityUserSettings', 'userId', userId);
|
|
64970
64777
|
// verify required parameter 'id' is not null or undefined
|
|
@@ -64981,9 +64788,6 @@ export async function UserSettingControllerApiAxiosParamCreator_DeleteEntityUser
|
|
|
64981
64788
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
64982
64789
|
const localVarHeaderParameter = {};
|
|
64983
64790
|
const localVarQueryParameter = {};
|
|
64984
|
-
if (filter !== undefined) {
|
|
64985
|
-
localVarQueryParameter['filter'] = filter;
|
|
64986
|
-
}
|
|
64987
64791
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
64988
64792
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
64989
64793
|
localVarRequestOptions.headers = {
|
|
@@ -65180,7 +64984,7 @@ export async function UserSettingControllerApi_CreateEntityUserSettings(axios, b
|
|
|
65180
64984
|
* @throws {RequiredError}
|
|
65181
64985
|
*/
|
|
65182
64986
|
export async function UserSettingControllerApi_DeleteEntityUserSettings(axios, basePath, requestParameters, options, configuration) {
|
|
65183
|
-
const localVarAxiosArgs = await UserSettingControllerApiAxiosParamCreator_DeleteEntityUserSettings(requestParameters.userId, requestParameters.id,
|
|
64987
|
+
const localVarAxiosArgs = await UserSettingControllerApiAxiosParamCreator_DeleteEntityUserSettings(requestParameters.userId, requestParameters.id, options || {}, configuration);
|
|
65184
64988
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
65185
64989
|
}
|
|
65186
64990
|
// UserSettingControllerApi Api FP
|
|
@@ -65348,12 +65152,11 @@ export async function UserSettingsApiAxiosParamCreator_CreateEntityUserSettings(
|
|
|
65348
65152
|
* @summary Delete a setting for a user
|
|
65349
65153
|
* @param {string} userId
|
|
65350
65154
|
* @param {string} id
|
|
65351
|
-
* @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\').
|
|
65352
65155
|
* @param {*} [options] Override http request option.
|
|
65353
65156
|
* @param {Configuration} [configuration] Optional configuration.
|
|
65354
65157
|
* @throws {RequiredError}
|
|
65355
65158
|
*/
|
|
65356
|
-
export async function UserSettingsApiAxiosParamCreator_DeleteEntityUserSettings(userId, id,
|
|
65159
|
+
export async function UserSettingsApiAxiosParamCreator_DeleteEntityUserSettings(userId, id, options = {}, configuration) {
|
|
65357
65160
|
// verify required parameter 'userId' is not null or undefined
|
|
65358
65161
|
assertParamExists('deleteEntityUserSettings', 'userId', userId);
|
|
65359
65162
|
// verify required parameter 'id' is not null or undefined
|
|
@@ -65370,9 +65173,6 @@ export async function UserSettingsApiAxiosParamCreator_DeleteEntityUserSettings(
|
|
|
65370
65173
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
65371
65174
|
const localVarHeaderParameter = {};
|
|
65372
65175
|
const localVarQueryParameter = {};
|
|
65373
|
-
if (filter !== undefined) {
|
|
65374
|
-
localVarQueryParameter['filter'] = filter;
|
|
65375
|
-
}
|
|
65376
65176
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
65377
65177
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
65378
65178
|
localVarRequestOptions.headers = {
|
|
@@ -65569,7 +65369,7 @@ export async function UserSettingsApi_CreateEntityUserSettings(axios, basePath,
|
|
|
65569
65369
|
* @throws {RequiredError}
|
|
65570
65370
|
*/
|
|
65571
65371
|
export async function UserSettingsApi_DeleteEntityUserSettings(axios, basePath, requestParameters, options, configuration) {
|
|
65572
|
-
const localVarAxiosArgs = await UserSettingsApiAxiosParamCreator_DeleteEntityUserSettings(requestParameters.userId, requestParameters.id,
|
|
65372
|
+
const localVarAxiosArgs = await UserSettingsApiAxiosParamCreator_DeleteEntityUserSettings(requestParameters.userId, requestParameters.id, options || {}, configuration);
|
|
65573
65373
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
65574
65374
|
}
|
|
65575
65375
|
// UserSettingsApi Api FP
|
|
@@ -66350,12 +66150,11 @@ export async function VisualizationObjectApiAxiosParamCreator_CreateEntityVisual
|
|
|
66350
66150
|
* @summary Delete a Visualization Object
|
|
66351
66151
|
* @param {string} workspaceId
|
|
66352
66152
|
* @param {string} objectId
|
|
66353
|
-
* @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\').
|
|
66354
66153
|
* @param {*} [options] Override http request option.
|
|
66355
66154
|
* @param {Configuration} [configuration] Optional configuration.
|
|
66356
66155
|
* @throws {RequiredError}
|
|
66357
66156
|
*/
|
|
66358
|
-
export async function VisualizationObjectApiAxiosParamCreator_DeleteEntityVisualizationObjects(workspaceId, objectId,
|
|
66157
|
+
export async function VisualizationObjectApiAxiosParamCreator_DeleteEntityVisualizationObjects(workspaceId, objectId, options = {}, configuration) {
|
|
66359
66158
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
66360
66159
|
assertParamExists('deleteEntityVisualizationObjects', 'workspaceId', workspaceId);
|
|
66361
66160
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -66372,9 +66171,6 @@ export async function VisualizationObjectApiAxiosParamCreator_DeleteEntityVisual
|
|
|
66372
66171
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
66373
66172
|
const localVarHeaderParameter = {};
|
|
66374
66173
|
const localVarQueryParameter = {};
|
|
66375
|
-
if (filter !== undefined) {
|
|
66376
|
-
localVarQueryParameter['filter'] = filter;
|
|
66377
|
-
}
|
|
66378
66174
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
66379
66175
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
66380
66176
|
localVarRequestOptions.headers = {
|
|
@@ -66720,7 +66516,7 @@ export async function VisualizationObjectApi_CreateEntityVisualizationObjects(ax
|
|
|
66720
66516
|
* @throws {RequiredError}
|
|
66721
66517
|
*/
|
|
66722
66518
|
export async function VisualizationObjectApi_DeleteEntityVisualizationObjects(axios, basePath, requestParameters, options, configuration) {
|
|
66723
|
-
const localVarAxiosArgs = await VisualizationObjectApiAxiosParamCreator_DeleteEntityVisualizationObjects(requestParameters.workspaceId, requestParameters.objectId,
|
|
66519
|
+
const localVarAxiosArgs = await VisualizationObjectApiAxiosParamCreator_DeleteEntityVisualizationObjects(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
66724
66520
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
66725
66521
|
}
|
|
66726
66522
|
// VisualizationObjectApi Api FP
|
|
@@ -66948,12 +66744,11 @@ export async function VisualizationObjectControllerApiAxiosParamCreator_CreateEn
|
|
|
66948
66744
|
* @summary Delete a Visualization Object
|
|
66949
66745
|
* @param {string} workspaceId
|
|
66950
66746
|
* @param {string} objectId
|
|
66951
|
-
* @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\').
|
|
66952
66747
|
* @param {*} [options] Override http request option.
|
|
66953
66748
|
* @param {Configuration} [configuration] Optional configuration.
|
|
66954
66749
|
* @throws {RequiredError}
|
|
66955
66750
|
*/
|
|
66956
|
-
export async function VisualizationObjectControllerApiAxiosParamCreator_DeleteEntityVisualizationObjects(workspaceId, objectId,
|
|
66751
|
+
export async function VisualizationObjectControllerApiAxiosParamCreator_DeleteEntityVisualizationObjects(workspaceId, objectId, options = {}, configuration) {
|
|
66957
66752
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
66958
66753
|
assertParamExists('deleteEntityVisualizationObjects', 'workspaceId', workspaceId);
|
|
66959
66754
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -66970,9 +66765,6 @@ export async function VisualizationObjectControllerApiAxiosParamCreator_DeleteEn
|
|
|
66970
66765
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
66971
66766
|
const localVarHeaderParameter = {};
|
|
66972
66767
|
const localVarQueryParameter = {};
|
|
66973
|
-
if (filter !== undefined) {
|
|
66974
|
-
localVarQueryParameter['filter'] = filter;
|
|
66975
|
-
}
|
|
66976
66768
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
66977
66769
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
66978
66770
|
localVarRequestOptions.headers = {
|
|
@@ -67318,7 +67110,7 @@ export async function VisualizationObjectControllerApi_CreateEntityVisualization
|
|
|
67318
67110
|
* @throws {RequiredError}
|
|
67319
67111
|
*/
|
|
67320
67112
|
export async function VisualizationObjectControllerApi_DeleteEntityVisualizationObjects(axios, basePath, requestParameters, options, configuration) {
|
|
67321
|
-
const localVarAxiosArgs = await VisualizationObjectControllerApiAxiosParamCreator_DeleteEntityVisualizationObjects(requestParameters.workspaceId, requestParameters.objectId,
|
|
67113
|
+
const localVarAxiosArgs = await VisualizationObjectControllerApiAxiosParamCreator_DeleteEntityVisualizationObjects(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
67322
67114
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
67323
67115
|
}
|
|
67324
67116
|
// VisualizationObjectControllerApi Api FP
|
|
@@ -67546,12 +67338,11 @@ export async function WorkspaceDataFilterControllerApiAxiosParamCreator_CreateEn
|
|
|
67546
67338
|
* @summary Delete a Workspace Data Filter
|
|
67547
67339
|
* @param {string} workspaceId
|
|
67548
67340
|
* @param {string} objectId
|
|
67549
|
-
* @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\').
|
|
67550
67341
|
* @param {*} [options] Override http request option.
|
|
67551
67342
|
* @param {Configuration} [configuration] Optional configuration.
|
|
67552
67343
|
* @throws {RequiredError}
|
|
67553
67344
|
*/
|
|
67554
|
-
export async function WorkspaceDataFilterControllerApiAxiosParamCreator_DeleteEntityWorkspaceDataFilters(workspaceId, objectId,
|
|
67345
|
+
export async function WorkspaceDataFilterControllerApiAxiosParamCreator_DeleteEntityWorkspaceDataFilters(workspaceId, objectId, options = {}, configuration) {
|
|
67555
67346
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
67556
67347
|
assertParamExists('deleteEntityWorkspaceDataFilters', 'workspaceId', workspaceId);
|
|
67557
67348
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -67568,9 +67359,6 @@ export async function WorkspaceDataFilterControllerApiAxiosParamCreator_DeleteEn
|
|
|
67568
67359
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
67569
67360
|
const localVarHeaderParameter = {};
|
|
67570
67361
|
const localVarQueryParameter = {};
|
|
67571
|
-
if (filter !== undefined) {
|
|
67572
|
-
localVarQueryParameter['filter'] = filter;
|
|
67573
|
-
}
|
|
67574
67362
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
67575
67363
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
67576
67364
|
localVarRequestOptions.headers = {
|
|
@@ -67916,7 +67704,7 @@ export async function WorkspaceDataFilterControllerApi_CreateEntityWorkspaceData
|
|
|
67916
67704
|
* @throws {RequiredError}
|
|
67917
67705
|
*/
|
|
67918
67706
|
export async function WorkspaceDataFilterControllerApi_DeleteEntityWorkspaceDataFilters(axios, basePath, requestParameters, options, configuration) {
|
|
67919
|
-
const localVarAxiosArgs = await WorkspaceDataFilterControllerApiAxiosParamCreator_DeleteEntityWorkspaceDataFilters(requestParameters.workspaceId, requestParameters.objectId,
|
|
67707
|
+
const localVarAxiosArgs = await WorkspaceDataFilterControllerApiAxiosParamCreator_DeleteEntityWorkspaceDataFilters(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
67920
67708
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
67921
67709
|
}
|
|
67922
67710
|
// WorkspaceDataFilterControllerApi Api FP
|
|
@@ -68144,12 +67932,11 @@ export async function WorkspaceDataFilterSettingControllerApiAxiosParamCreator_C
|
|
|
68144
67932
|
* @summary Delete a Settings for Workspace Data Filter
|
|
68145
67933
|
* @param {string} workspaceId
|
|
68146
67934
|
* @param {string} objectId
|
|
68147
|
-
* @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\').
|
|
68148
67935
|
* @param {*} [options] Override http request option.
|
|
68149
67936
|
* @param {Configuration} [configuration] Optional configuration.
|
|
68150
67937
|
* @throws {RequiredError}
|
|
68151
67938
|
*/
|
|
68152
|
-
export async function WorkspaceDataFilterSettingControllerApiAxiosParamCreator_DeleteEntityWorkspaceDataFilterSettings(workspaceId, objectId,
|
|
67939
|
+
export async function WorkspaceDataFilterSettingControllerApiAxiosParamCreator_DeleteEntityWorkspaceDataFilterSettings(workspaceId, objectId, options = {}, configuration) {
|
|
68153
67940
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
68154
67941
|
assertParamExists('deleteEntityWorkspaceDataFilterSettings', 'workspaceId', workspaceId);
|
|
68155
67942
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -68166,9 +67953,6 @@ export async function WorkspaceDataFilterSettingControllerApiAxiosParamCreator_D
|
|
|
68166
67953
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
68167
67954
|
const localVarHeaderParameter = {};
|
|
68168
67955
|
const localVarQueryParameter = {};
|
|
68169
|
-
if (filter !== undefined) {
|
|
68170
|
-
localVarQueryParameter['filter'] = filter;
|
|
68171
|
-
}
|
|
68172
67956
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
68173
67957
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
68174
67958
|
localVarRequestOptions.headers = {
|
|
@@ -68514,7 +68298,7 @@ export async function WorkspaceDataFilterSettingControllerApi_CreateEntityWorksp
|
|
|
68514
68298
|
* @throws {RequiredError}
|
|
68515
68299
|
*/
|
|
68516
68300
|
export async function WorkspaceDataFilterSettingControllerApi_DeleteEntityWorkspaceDataFilterSettings(axios, basePath, requestParameters, options, configuration) {
|
|
68517
|
-
const localVarAxiosArgs = await WorkspaceDataFilterSettingControllerApiAxiosParamCreator_DeleteEntityWorkspaceDataFilterSettings(requestParameters.workspaceId, requestParameters.objectId,
|
|
68301
|
+
const localVarAxiosArgs = await WorkspaceDataFilterSettingControllerApiAxiosParamCreator_DeleteEntityWorkspaceDataFilterSettings(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
68518
68302
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
68519
68303
|
}
|
|
68520
68304
|
// WorkspaceDataFilterSettingControllerApi Api FP
|
|
@@ -70226,12 +70010,11 @@ export async function WorkspaceSettingControllerApiAxiosParamCreator_CreateEntit
|
|
|
70226
70010
|
* @summary Delete a Setting for Workspace
|
|
70227
70011
|
* @param {string} workspaceId
|
|
70228
70012
|
* @param {string} objectId
|
|
70229
|
-
* @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\').
|
|
70230
70013
|
* @param {*} [options] Override http request option.
|
|
70231
70014
|
* @param {Configuration} [configuration] Optional configuration.
|
|
70232
70015
|
* @throws {RequiredError}
|
|
70233
70016
|
*/
|
|
70234
|
-
export async function WorkspaceSettingControllerApiAxiosParamCreator_DeleteEntityWorkspaceSettings(workspaceId, objectId,
|
|
70017
|
+
export async function WorkspaceSettingControllerApiAxiosParamCreator_DeleteEntityWorkspaceSettings(workspaceId, objectId, options = {}, configuration) {
|
|
70235
70018
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
70236
70019
|
assertParamExists('deleteEntityWorkspaceSettings', 'workspaceId', workspaceId);
|
|
70237
70020
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -70248,9 +70031,6 @@ export async function WorkspaceSettingControllerApiAxiosParamCreator_DeleteEntit
|
|
|
70248
70031
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
70249
70032
|
const localVarHeaderParameter = {};
|
|
70250
70033
|
const localVarQueryParameter = {};
|
|
70251
|
-
if (filter !== undefined) {
|
|
70252
|
-
localVarQueryParameter['filter'] = filter;
|
|
70253
|
-
}
|
|
70254
70034
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
70255
70035
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
70256
70036
|
localVarRequestOptions.headers = {
|
|
@@ -70580,7 +70360,7 @@ export async function WorkspaceSettingControllerApi_CreateEntityWorkspaceSetting
|
|
|
70580
70360
|
* @throws {RequiredError}
|
|
70581
70361
|
*/
|
|
70582
70362
|
export async function WorkspaceSettingControllerApi_DeleteEntityWorkspaceSettings(axios, basePath, requestParameters, options, configuration) {
|
|
70583
|
-
const localVarAxiosArgs = await WorkspaceSettingControllerApiAxiosParamCreator_DeleteEntityWorkspaceSettings(requestParameters.workspaceId, requestParameters.objectId,
|
|
70363
|
+
const localVarAxiosArgs = await WorkspaceSettingControllerApiAxiosParamCreator_DeleteEntityWorkspaceSettings(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
70584
70364
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
70585
70365
|
}
|
|
70586
70366
|
// WorkspaceSettingControllerApi Api FP
|
|
@@ -71619,12 +71399,11 @@ export async function WorkspacesSettingsApiAxiosParamCreator_CreateEntityWorkspa
|
|
|
71619
71399
|
* @summary Delete a Custom Application Setting
|
|
71620
71400
|
* @param {string} workspaceId
|
|
71621
71401
|
* @param {string} objectId
|
|
71622
|
-
* @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\').
|
|
71623
71402
|
* @param {*} [options] Override http request option.
|
|
71624
71403
|
* @param {Configuration} [configuration] Optional configuration.
|
|
71625
71404
|
* @throws {RequiredError}
|
|
71626
71405
|
*/
|
|
71627
|
-
export async function WorkspacesSettingsApiAxiosParamCreator_DeleteEntityCustomApplicationSettings(workspaceId, objectId,
|
|
71406
|
+
export async function WorkspacesSettingsApiAxiosParamCreator_DeleteEntityCustomApplicationSettings(workspaceId, objectId, options = {}, configuration) {
|
|
71628
71407
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
71629
71408
|
assertParamExists('deleteEntityCustomApplicationSettings', 'workspaceId', workspaceId);
|
|
71630
71409
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -71641,9 +71420,6 @@ export async function WorkspacesSettingsApiAxiosParamCreator_DeleteEntityCustomA
|
|
|
71641
71420
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
71642
71421
|
const localVarHeaderParameter = {};
|
|
71643
71422
|
const localVarQueryParameter = {};
|
|
71644
|
-
if (filter !== undefined) {
|
|
71645
|
-
localVarQueryParameter['filter'] = filter;
|
|
71646
|
-
}
|
|
71647
71423
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
71648
71424
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
71649
71425
|
localVarRequestOptions.headers = {
|
|
@@ -71662,12 +71438,11 @@ export async function WorkspacesSettingsApiAxiosParamCreator_DeleteEntityCustomA
|
|
|
71662
71438
|
* @summary Delete a Setting for Workspace
|
|
71663
71439
|
* @param {string} workspaceId
|
|
71664
71440
|
* @param {string} objectId
|
|
71665
|
-
* @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\').
|
|
71666
71441
|
* @param {*} [options] Override http request option.
|
|
71667
71442
|
* @param {Configuration} [configuration] Optional configuration.
|
|
71668
71443
|
* @throws {RequiredError}
|
|
71669
71444
|
*/
|
|
71670
|
-
export async function WorkspacesSettingsApiAxiosParamCreator_DeleteEntityWorkspaceSettings(workspaceId, objectId,
|
|
71445
|
+
export async function WorkspacesSettingsApiAxiosParamCreator_DeleteEntityWorkspaceSettings(workspaceId, objectId, options = {}, configuration) {
|
|
71671
71446
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
71672
71447
|
assertParamExists('deleteEntityWorkspaceSettings', 'workspaceId', workspaceId);
|
|
71673
71448
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -71684,9 +71459,6 @@ export async function WorkspacesSettingsApiAxiosParamCreator_DeleteEntityWorkspa
|
|
|
71684
71459
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
71685
71460
|
const localVarHeaderParameter = {};
|
|
71686
71461
|
const localVarQueryParameter = {};
|
|
71687
|
-
if (filter !== undefined) {
|
|
71688
|
-
localVarQueryParameter['filter'] = filter;
|
|
71689
|
-
}
|
|
71690
71462
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
71691
71463
|
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
71692
71464
|
localVarRequestOptions.headers = {
|
|
@@ -72414,7 +72186,7 @@ export async function WorkspacesSettingsApi_CreateEntityWorkspaceSettings(axios,
|
|
|
72414
72186
|
* @throws {RequiredError}
|
|
72415
72187
|
*/
|
|
72416
72188
|
export async function WorkspacesSettingsApi_DeleteEntityCustomApplicationSettings(axios, basePath, requestParameters, options, configuration) {
|
|
72417
|
-
const localVarAxiosArgs = await WorkspacesSettingsApiAxiosParamCreator_DeleteEntityCustomApplicationSettings(requestParameters.workspaceId, requestParameters.objectId,
|
|
72189
|
+
const localVarAxiosArgs = await WorkspacesSettingsApiAxiosParamCreator_DeleteEntityCustomApplicationSettings(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
72418
72190
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
72419
72191
|
}
|
|
72420
72192
|
// WorkspacesSettingsApi Api FP
|
|
@@ -72429,7 +72201,7 @@ export async function WorkspacesSettingsApi_DeleteEntityCustomApplicationSetting
|
|
|
72429
72201
|
* @throws {RequiredError}
|
|
72430
72202
|
*/
|
|
72431
72203
|
export async function WorkspacesSettingsApi_DeleteEntityWorkspaceSettings(axios, basePath, requestParameters, options, configuration) {
|
|
72432
|
-
const localVarAxiosArgs = await WorkspacesSettingsApiAxiosParamCreator_DeleteEntityWorkspaceSettings(requestParameters.workspaceId, requestParameters.objectId,
|
|
72204
|
+
const localVarAxiosArgs = await WorkspacesSettingsApiAxiosParamCreator_DeleteEntityWorkspaceSettings(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration);
|
|
72433
72205
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
72434
72206
|
}
|
|
72435
72207
|
// WorkspacesSettingsApi Api FP
|