@gooddata/api-client-tiger 11.50.0-alpha.3 → 11.50.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.d.ts.map +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +8005 -4512
- package/esm/generated/afm-rest-api/api.d.ts +731 -673
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/ai-json-api/api.d.ts +432 -380
- package/esm/generated/ai-json-api/api.d.ts.map +1 -1
- package/esm/generated/ai-json-api/api.js +29 -24
- package/esm/generated/auth-json-api/api.d.ts +22 -22
- package/esm/generated/auth-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.d.ts +339 -300
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.d.ts +266 -207
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +6107 -2913
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +570 -68
- package/esm/generated/result-json-api/api.d.ts +87 -87
- package/esm/generated/result-json-api/api.d.ts.map +1 -1
- package/esm/generated/scan-json-api/api.d.ts +109 -109
- package/esm/generated/scan-json-api/api.d.ts.map +1 -1
- package/esm/index.d.ts +4 -4
- package/esm/index.d.ts.map +1 -1
- package/package.json +4 -4
|
@@ -3316,18 +3316,18 @@ export async function ActionsApiAxiosParamCreator_ListWorkspaceUsers(workspaceId
|
|
|
3316
3316
|
* @summary Manage Permissions for an Attribute
|
|
3317
3317
|
* @param {string} workspaceId
|
|
3318
3318
|
* @param {string} attributeId
|
|
3319
|
-
* @param {Array<
|
|
3319
|
+
* @param {Array<ManageAttributePermissionsRequestInner>} manageAttributePermissionsRequestInner
|
|
3320
3320
|
* @param {*} [options] Override http request option.
|
|
3321
3321
|
* @param {Configuration} [configuration] Optional configuration.
|
|
3322
3322
|
* @throws {RequiredError}
|
|
3323
3323
|
*/
|
|
3324
|
-
export async function ActionsApiAxiosParamCreator_ManageAttributePermissions(workspaceId, attributeId,
|
|
3324
|
+
export async function ActionsApiAxiosParamCreator_ManageAttributePermissions(workspaceId, attributeId, manageAttributePermissionsRequestInner, options = {}, configuration) {
|
|
3325
3325
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
3326
3326
|
assertParamExists('manageAttributePermissions', 'workspaceId', workspaceId);
|
|
3327
3327
|
// verify required parameter 'attributeId' is not null or undefined
|
|
3328
3328
|
assertParamExists('manageAttributePermissions', 'attributeId', attributeId);
|
|
3329
|
-
// verify required parameter '
|
|
3330
|
-
assertParamExists('manageAttributePermissions', '
|
|
3329
|
+
// verify required parameter 'manageAttributePermissionsRequestInner' is not null or undefined
|
|
3330
|
+
assertParamExists('manageAttributePermissions', 'manageAttributePermissionsRequestInner', manageAttributePermissionsRequestInner);
|
|
3331
3331
|
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/attributes/{attributeId}/managePermissions`
|
|
3332
3332
|
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
3333
3333
|
.replace(`{${"attributeId"}}`, encodeURIComponent(String(attributeId)));
|
|
@@ -3354,11 +3354,11 @@ export async function ActionsApiAxiosParamCreator_ManageAttributePermissions(wor
|
|
|
3354
3354
|
...headersFromBaseOptions,
|
|
3355
3355
|
...options.headers,
|
|
3356
3356
|
};
|
|
3357
|
-
const needsSerialization = typeof
|
|
3357
|
+
const needsSerialization = typeof manageAttributePermissionsRequestInner !== "string" ||
|
|
3358
3358
|
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
3359
3359
|
localVarRequestOptions.data = needsSerialization
|
|
3360
|
-
? JSON.stringify(
|
|
3361
|
-
:
|
|
3360
|
+
? JSON.stringify(manageAttributePermissionsRequestInner !== undefined ? manageAttributePermissionsRequestInner : {})
|
|
3361
|
+
: manageAttributePermissionsRequestInner || "";
|
|
3362
3362
|
return {
|
|
3363
3363
|
url: toPathString(localVarUrlObj),
|
|
3364
3364
|
options: localVarRequestOptions,
|
|
@@ -3474,18 +3474,18 @@ export async function ActionsApiAxiosParamCreator_ManageDataSourcePermissions(da
|
|
|
3474
3474
|
* @summary Manage Permissions for a Fact
|
|
3475
3475
|
* @param {string} workspaceId
|
|
3476
3476
|
* @param {string} factId
|
|
3477
|
-
* @param {Array<
|
|
3477
|
+
* @param {Array<ManageFactPermissionsRequestInner>} manageFactPermissionsRequestInner
|
|
3478
3478
|
* @param {*} [options] Override http request option.
|
|
3479
3479
|
* @param {Configuration} [configuration] Optional configuration.
|
|
3480
3480
|
* @throws {RequiredError}
|
|
3481
3481
|
*/
|
|
3482
|
-
export async function ActionsApiAxiosParamCreator_ManageFactPermissions(workspaceId, factId,
|
|
3482
|
+
export async function ActionsApiAxiosParamCreator_ManageFactPermissions(workspaceId, factId, manageFactPermissionsRequestInner, options = {}, configuration) {
|
|
3483
3483
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
3484
3484
|
assertParamExists('manageFactPermissions', 'workspaceId', workspaceId);
|
|
3485
3485
|
// verify required parameter 'factId' is not null or undefined
|
|
3486
3486
|
assertParamExists('manageFactPermissions', 'factId', factId);
|
|
3487
|
-
// verify required parameter '
|
|
3488
|
-
assertParamExists('manageFactPermissions', '
|
|
3487
|
+
// verify required parameter 'manageFactPermissionsRequestInner' is not null or undefined
|
|
3488
|
+
assertParamExists('manageFactPermissions', 'manageFactPermissionsRequestInner', manageFactPermissionsRequestInner);
|
|
3489
3489
|
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/facts/{factId}/managePermissions`
|
|
3490
3490
|
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
3491
3491
|
.replace(`{${"factId"}}`, encodeURIComponent(String(factId)));
|
|
@@ -3512,11 +3512,11 @@ export async function ActionsApiAxiosParamCreator_ManageFactPermissions(workspac
|
|
|
3512
3512
|
...headersFromBaseOptions,
|
|
3513
3513
|
...options.headers,
|
|
3514
3514
|
};
|
|
3515
|
-
const needsSerialization = typeof
|
|
3515
|
+
const needsSerialization = typeof manageFactPermissionsRequestInner !== "string" ||
|
|
3516
3516
|
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
3517
3517
|
localVarRequestOptions.data = needsSerialization
|
|
3518
|
-
? JSON.stringify(
|
|
3519
|
-
:
|
|
3518
|
+
? JSON.stringify(manageFactPermissionsRequestInner !== undefined ? manageFactPermissionsRequestInner : {})
|
|
3519
|
+
: manageFactPermissionsRequestInner || "";
|
|
3520
3520
|
return {
|
|
3521
3521
|
url: toPathString(localVarUrlObj),
|
|
3522
3522
|
options: localVarRequestOptions,
|
|
@@ -5185,7 +5185,7 @@ export async function ActionsApi_ListWorkspaceUsers(axios, basePath, requestPara
|
|
|
5185
5185
|
* @throws {RequiredError}
|
|
5186
5186
|
*/
|
|
5187
5187
|
export async function ActionsApi_ManageAttributePermissions(axios, basePath, requestParameters, options, configuration) {
|
|
5188
|
-
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_ManageAttributePermissions(requestParameters.workspaceId, requestParameters.attributeId, requestParameters.
|
|
5188
|
+
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_ManageAttributePermissions(requestParameters.workspaceId, requestParameters.attributeId, requestParameters.manageAttributePermissionsRequestInner, options || {}, configuration);
|
|
5189
5189
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5190
5190
|
}
|
|
5191
5191
|
// ActionsApi Api FP
|
|
@@ -5230,7 +5230,7 @@ export async function ActionsApi_ManageDataSourcePermissions(axios, basePath, re
|
|
|
5230
5230
|
* @throws {RequiredError}
|
|
5231
5231
|
*/
|
|
5232
5232
|
export async function ActionsApi_ManageFactPermissions(axios, basePath, requestParameters, options, configuration) {
|
|
5233
|
-
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_ManageFactPermissions(requestParameters.workspaceId, requestParameters.factId, requestParameters.
|
|
5233
|
+
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_ManageFactPermissions(requestParameters.workspaceId, requestParameters.factId, requestParameters.manageFactPermissionsRequestInner, options || {}, configuration);
|
|
5234
5234
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5235
5235
|
}
|
|
5236
5236
|
// ActionsApi Api FP
|
|
@@ -8202,8 +8202,8 @@ export async function AppearanceApiAxiosParamCreator_CreateEntityWorkspaceColorP
|
|
|
8202
8202
|
localVarQueryParameter['metaInclude'] = Array.from(metaInclude).join(COLLECTION_FORMATS.csv);
|
|
8203
8203
|
}
|
|
8204
8204
|
const consumes = [
|
|
8205
|
-
'application/json',
|
|
8206
|
-
'application/
|
|
8205
|
+
'application/vnd.gooddata.api+json',
|
|
8206
|
+
'application/json'
|
|
8207
8207
|
];
|
|
8208
8208
|
// use application/json if present, otherwise fallback to the first one
|
|
8209
8209
|
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
@@ -8257,8 +8257,8 @@ export async function AppearanceApiAxiosParamCreator_CreateEntityWorkspaceThemes
|
|
|
8257
8257
|
localVarQueryParameter['metaInclude'] = Array.from(metaInclude).join(COLLECTION_FORMATS.csv);
|
|
8258
8258
|
}
|
|
8259
8259
|
const consumes = [
|
|
8260
|
-
'application/json',
|
|
8261
|
-
'application/
|
|
8260
|
+
'application/vnd.gooddata.api+json',
|
|
8261
|
+
'application/json'
|
|
8262
8262
|
];
|
|
8263
8263
|
// use application/json if present, otherwise fallback to the first one
|
|
8264
8264
|
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
@@ -8982,8 +8982,8 @@ export async function AppearanceApiAxiosParamCreator_PatchEntityWorkspaceColorPa
|
|
|
8982
8982
|
localVarQueryParameter['filter'] = filter;
|
|
8983
8983
|
}
|
|
8984
8984
|
const consumes = [
|
|
8985
|
-
'application/json',
|
|
8986
|
-
'application/
|
|
8985
|
+
'application/vnd.gooddata.api+json',
|
|
8986
|
+
'application/json'
|
|
8987
8987
|
];
|
|
8988
8988
|
// use application/json if present, otherwise fallback to the first one
|
|
8989
8989
|
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
@@ -9041,8 +9041,8 @@ export async function AppearanceApiAxiosParamCreator_PatchEntityWorkspaceThemes(
|
|
|
9041
9041
|
localVarQueryParameter['filter'] = filter;
|
|
9042
9042
|
}
|
|
9043
9043
|
const consumes = [
|
|
9044
|
-
'application/json',
|
|
9045
|
-
'application/
|
|
9044
|
+
'application/vnd.gooddata.api+json',
|
|
9045
|
+
'application/json'
|
|
9046
9046
|
];
|
|
9047
9047
|
// use application/json if present, otherwise fallback to the first one
|
|
9048
9048
|
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
@@ -9210,8 +9210,8 @@ export async function AppearanceApiAxiosParamCreator_UpdateEntityWorkspaceColorP
|
|
|
9210
9210
|
localVarQueryParameter['filter'] = filter;
|
|
9211
9211
|
}
|
|
9212
9212
|
const consumes = [
|
|
9213
|
-
'application/json',
|
|
9214
|
-
'application/
|
|
9213
|
+
'application/vnd.gooddata.api+json',
|
|
9214
|
+
'application/json'
|
|
9215
9215
|
];
|
|
9216
9216
|
// use application/json if present, otherwise fallback to the first one
|
|
9217
9217
|
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
@@ -9269,8 +9269,8 @@ export async function AppearanceApiAxiosParamCreator_UpdateEntityWorkspaceThemes
|
|
|
9269
9269
|
localVarQueryParameter['filter'] = filter;
|
|
9270
9270
|
}
|
|
9271
9271
|
const consumes = [
|
|
9272
|
-
'application/json',
|
|
9273
|
-
'application/
|
|
9272
|
+
'application/vnd.gooddata.api+json',
|
|
9273
|
+
'application/json'
|
|
9274
9274
|
];
|
|
9275
9275
|
// use application/json if present, otherwise fallback to the first one
|
|
9276
9276
|
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
@@ -24996,8 +24996,8 @@ export async function EntitiesApiAxiosParamCreator_CreateEntityWorkspaceColorPal
|
|
|
24996
24996
|
localVarQueryParameter['metaInclude'] = Array.from(metaInclude).join(COLLECTION_FORMATS.csv);
|
|
24997
24997
|
}
|
|
24998
24998
|
const consumes = [
|
|
24999
|
-
'application/json',
|
|
25000
|
-
'application/
|
|
24999
|
+
'application/vnd.gooddata.api+json',
|
|
25000
|
+
'application/json'
|
|
25001
25001
|
];
|
|
25002
25002
|
// use application/json if present, otherwise fallback to the first one
|
|
25003
25003
|
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
@@ -25279,8 +25279,8 @@ export async function EntitiesApiAxiosParamCreator_CreateEntityWorkspaceThemes(w
|
|
|
25279
25279
|
localVarQueryParameter['metaInclude'] = Array.from(metaInclude).join(COLLECTION_FORMATS.csv);
|
|
25280
25280
|
}
|
|
25281
25281
|
const consumes = [
|
|
25282
|
-
'application/json',
|
|
25283
|
-
'application/
|
|
25282
|
+
'application/vnd.gooddata.api+json',
|
|
25283
|
+
'application/json'
|
|
25284
25284
|
];
|
|
25285
25285
|
// use application/json if present, otherwise fallback to the first one
|
|
25286
25286
|
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
@@ -28294,6 +28294,69 @@ export async function EntitiesApiAxiosParamCreator_GetAllEntitiesFilterViews(wor
|
|
|
28294
28294
|
};
|
|
28295
28295
|
}
|
|
28296
28296
|
// EntitiesApi FP - EntitiesApiAxiosParamCreator
|
|
28297
|
+
/**
|
|
28298
|
+
*
|
|
28299
|
+
* @summary Get all Fiscal Calendars
|
|
28300
|
+
* @param {string} workspaceId
|
|
28301
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
28302
|
+
* @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\').
|
|
28303
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
28304
|
+
* @param {number} [size] The size of the page to be returned
|
|
28305
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
28306
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
28307
|
+
* @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
28308
|
+
* @param {*} [options] Override http request option.
|
|
28309
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
28310
|
+
* @throws {RequiredError}
|
|
28311
|
+
*/
|
|
28312
|
+
export async function EntitiesApiAxiosParamCreator_GetAllEntitiesFiscalCalendars(workspaceId, origin, filter, page, size, sort, xGDCVALIDATERELATIONS, metaInclude, options = {}, configuration) {
|
|
28313
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
28314
|
+
assertParamExists('getAllEntitiesFiscalCalendars', 'workspaceId', workspaceId);
|
|
28315
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/fiscalCalendars`
|
|
28316
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
28317
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
28318
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
28319
|
+
let baseOptions;
|
|
28320
|
+
if (configuration) {
|
|
28321
|
+
baseOptions = configuration.baseOptions;
|
|
28322
|
+
}
|
|
28323
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
28324
|
+
const localVarHeaderParameter = {};
|
|
28325
|
+
const localVarQueryParameter = {};
|
|
28326
|
+
if (origin !== undefined) {
|
|
28327
|
+
localVarQueryParameter['origin'] = origin;
|
|
28328
|
+
}
|
|
28329
|
+
if (filter !== undefined) {
|
|
28330
|
+
localVarQueryParameter['filter'] = filter;
|
|
28331
|
+
}
|
|
28332
|
+
if (page !== undefined) {
|
|
28333
|
+
localVarQueryParameter['page'] = page;
|
|
28334
|
+
}
|
|
28335
|
+
if (size !== undefined) {
|
|
28336
|
+
localVarQueryParameter['size'] = size;
|
|
28337
|
+
}
|
|
28338
|
+
if (sort) {
|
|
28339
|
+
localVarQueryParameter['sort'] = sort;
|
|
28340
|
+
}
|
|
28341
|
+
if (metaInclude) {
|
|
28342
|
+
localVarQueryParameter['metaInclude'] = Array.from(metaInclude).join(COLLECTION_FORMATS.csv);
|
|
28343
|
+
}
|
|
28344
|
+
if (xGDCVALIDATERELATIONS !== undefined && xGDCVALIDATERELATIONS !== null) {
|
|
28345
|
+
localVarHeaderParameter['X-GDC-VALIDATE-RELATIONS'] = String(JSON.stringify(xGDCVALIDATERELATIONS));
|
|
28346
|
+
}
|
|
28347
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
28348
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
28349
|
+
localVarRequestOptions.headers = {
|
|
28350
|
+
...localVarHeaderParameter,
|
|
28351
|
+
...headersFromBaseOptions,
|
|
28352
|
+
...options.headers,
|
|
28353
|
+
};
|
|
28354
|
+
return {
|
|
28355
|
+
url: toPathString(localVarUrlObj),
|
|
28356
|
+
options: localVarRequestOptions,
|
|
28357
|
+
};
|
|
28358
|
+
}
|
|
28359
|
+
// EntitiesApi FP - EntitiesApiAxiosParamCreator
|
|
28297
28360
|
/**
|
|
28298
28361
|
*
|
|
28299
28362
|
* @summary Get all Identity Providers
|
|
@@ -31085,6 +31148,53 @@ export async function EntitiesApiAxiosParamCreator_GetEntityFilterViews(workspac
|
|
|
31085
31148
|
};
|
|
31086
31149
|
}
|
|
31087
31150
|
// EntitiesApi FP - EntitiesApiAxiosParamCreator
|
|
31151
|
+
/**
|
|
31152
|
+
*
|
|
31153
|
+
* @summary Get a Fiscal Calendar
|
|
31154
|
+
* @param {string} workspaceId
|
|
31155
|
+
* @param {string} objectId
|
|
31156
|
+
* @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\').
|
|
31157
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
31158
|
+
* @param {*} [options] Override http request option.
|
|
31159
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
31160
|
+
* @throws {RequiredError}
|
|
31161
|
+
*/
|
|
31162
|
+
export async function EntitiesApiAxiosParamCreator_GetEntityFiscalCalendars(workspaceId, objectId, filter, xGDCVALIDATERELATIONS, options = {}, configuration) {
|
|
31163
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
31164
|
+
assertParamExists('getEntityFiscalCalendars', 'workspaceId', workspaceId);
|
|
31165
|
+
// verify required parameter 'objectId' is not null or undefined
|
|
31166
|
+
assertParamExists('getEntityFiscalCalendars', 'objectId', objectId);
|
|
31167
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/fiscalCalendars/{objectId}`
|
|
31168
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
31169
|
+
.replace(`{${"objectId"}}`, encodeURIComponent(String(objectId)));
|
|
31170
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
31171
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
31172
|
+
let baseOptions;
|
|
31173
|
+
if (configuration) {
|
|
31174
|
+
baseOptions = configuration.baseOptions;
|
|
31175
|
+
}
|
|
31176
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
31177
|
+
const localVarHeaderParameter = {};
|
|
31178
|
+
const localVarQueryParameter = {};
|
|
31179
|
+
if (filter !== undefined) {
|
|
31180
|
+
localVarQueryParameter['filter'] = filter;
|
|
31181
|
+
}
|
|
31182
|
+
if (xGDCVALIDATERELATIONS !== undefined && xGDCVALIDATERELATIONS !== null) {
|
|
31183
|
+
localVarHeaderParameter['X-GDC-VALIDATE-RELATIONS'] = String(JSON.stringify(xGDCVALIDATERELATIONS));
|
|
31184
|
+
}
|
|
31185
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
31186
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
31187
|
+
localVarRequestOptions.headers = {
|
|
31188
|
+
...localVarHeaderParameter,
|
|
31189
|
+
...headersFromBaseOptions,
|
|
31190
|
+
...options.headers,
|
|
31191
|
+
};
|
|
31192
|
+
return {
|
|
31193
|
+
url: toPathString(localVarUrlObj),
|
|
31194
|
+
options: localVarRequestOptions,
|
|
31195
|
+
};
|
|
31196
|
+
}
|
|
31197
|
+
// EntitiesApi FP - EntitiesApiAxiosParamCreator
|
|
31088
31198
|
/**
|
|
31089
31199
|
*
|
|
31090
31200
|
* @summary Get Identity Provider
|
|
@@ -34594,8 +34704,8 @@ export async function EntitiesApiAxiosParamCreator_PatchEntityWorkspaceColorPale
|
|
|
34594
34704
|
localVarQueryParameter['filter'] = filter;
|
|
34595
34705
|
}
|
|
34596
34706
|
const consumes = [
|
|
34597
|
-
'application/json',
|
|
34598
|
-
'application/
|
|
34707
|
+
'application/vnd.gooddata.api+json',
|
|
34708
|
+
'application/json'
|
|
34599
34709
|
];
|
|
34600
34710
|
// use application/json if present, otherwise fallback to the first one
|
|
34601
34711
|
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
@@ -34897,8 +35007,8 @@ export async function EntitiesApiAxiosParamCreator_PatchEntityWorkspaceThemes(wo
|
|
|
34897
35007
|
localVarQueryParameter['filter'] = filter;
|
|
34898
35008
|
}
|
|
34899
35009
|
const consumes = [
|
|
34900
|
-
'application/json',
|
|
34901
|
-
'application/
|
|
35010
|
+
'application/vnd.gooddata.api+json',
|
|
35011
|
+
'application/json'
|
|
34902
35012
|
];
|
|
34903
35013
|
// use application/json if present, otherwise fallback to the first one
|
|
34904
35014
|
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
@@ -38394,8 +38504,8 @@ export async function EntitiesApiAxiosParamCreator_UpdateEntityWorkspaceColorPal
|
|
|
38394
38504
|
localVarQueryParameter['filter'] = filter;
|
|
38395
38505
|
}
|
|
38396
38506
|
const consumes = [
|
|
38397
|
-
'application/json',
|
|
38398
|
-
'application/
|
|
38507
|
+
'application/vnd.gooddata.api+json',
|
|
38508
|
+
'application/json'
|
|
38399
38509
|
];
|
|
38400
38510
|
// use application/json if present, otherwise fallback to the first one
|
|
38401
38511
|
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
@@ -38697,8 +38807,8 @@ export async function EntitiesApiAxiosParamCreator_UpdateEntityWorkspaceThemes(w
|
|
|
38697
38807
|
localVarQueryParameter['filter'] = filter;
|
|
38698
38808
|
}
|
|
38699
38809
|
const consumes = [
|
|
38700
|
-
'application/json',
|
|
38701
|
-
'application/
|
|
38810
|
+
'application/vnd.gooddata.api+json',
|
|
38811
|
+
'application/json'
|
|
38702
38812
|
];
|
|
38703
38813
|
// use application/json if present, otherwise fallback to the first one
|
|
38704
38814
|
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
@@ -40369,6 +40479,21 @@ export async function EntitiesApi_GetAllEntitiesFilterViews(axios, basePath, req
|
|
|
40369
40479
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
40370
40480
|
}
|
|
40371
40481
|
// EntitiesApi Api FP
|
|
40482
|
+
/**
|
|
40483
|
+
*
|
|
40484
|
+
* @summary Get all Fiscal Calendars
|
|
40485
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
40486
|
+
* @param {string} basePath Base path.
|
|
40487
|
+
* @param {EntitiesApiGetAllEntitiesFiscalCalendarsRequest} requestParameters Request parameters.
|
|
40488
|
+
* @param {*} [options] Override http request option.
|
|
40489
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
40490
|
+
* @throws {RequiredError}
|
|
40491
|
+
*/
|
|
40492
|
+
export async function EntitiesApi_GetAllEntitiesFiscalCalendars(axios, basePath, requestParameters, options, configuration) {
|
|
40493
|
+
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_GetAllEntitiesFiscalCalendars(requestParameters.workspaceId, requestParameters.origin, requestParameters.filter, requestParameters.page, requestParameters.size, requestParameters.sort, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options || {}, configuration);
|
|
40494
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
40495
|
+
}
|
|
40496
|
+
// EntitiesApi Api FP
|
|
40372
40497
|
/**
|
|
40373
40498
|
*
|
|
40374
40499
|
* @summary Get all Identity Providers
|
|
@@ -41162,6 +41287,21 @@ export async function EntitiesApi_GetEntityFilterViews(axios, basePath, requestP
|
|
|
41162
41287
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
41163
41288
|
}
|
|
41164
41289
|
// EntitiesApi Api FP
|
|
41290
|
+
/**
|
|
41291
|
+
*
|
|
41292
|
+
* @summary Get a Fiscal Calendar
|
|
41293
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
41294
|
+
* @param {string} basePath Base path.
|
|
41295
|
+
* @param {EntitiesApiGetEntityFiscalCalendarsRequest} requestParameters Request parameters.
|
|
41296
|
+
* @param {*} [options] Override http request option.
|
|
41297
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
41298
|
+
* @throws {RequiredError}
|
|
41299
|
+
*/
|
|
41300
|
+
export async function EntitiesApi_GetEntityFiscalCalendars(axios, basePath, requestParameters, options, configuration) {
|
|
41301
|
+
const localVarAxiosArgs = await EntitiesApiAxiosParamCreator_GetEntityFiscalCalendars(requestParameters.workspaceId, requestParameters.objectId, requestParameters.filter, requestParameters.xGDCVALIDATERELATIONS, options || {}, configuration);
|
|
41302
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
41303
|
+
}
|
|
41304
|
+
// EntitiesApi Api FP
|
|
41165
41305
|
/**
|
|
41166
41306
|
*
|
|
41167
41307
|
* @summary Get Identity Provider
|
|
@@ -44390,6 +44530,17 @@ export class EntitiesApi extends BaseAPI {
|
|
|
44390
44530
|
getAllEntitiesFilterViews(requestParameters, options) {
|
|
44391
44531
|
return EntitiesApi_GetAllEntitiesFilterViews(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
44392
44532
|
}
|
|
44533
|
+
/**
|
|
44534
|
+
*
|
|
44535
|
+
* @summary Get all Fiscal Calendars
|
|
44536
|
+
* @param {EntitiesApiGetAllEntitiesFiscalCalendarsRequest} requestParameters Request parameters.
|
|
44537
|
+
* @param {*} [options] Override http request option.
|
|
44538
|
+
* @throws {RequiredError}
|
|
44539
|
+
* @memberof EntitiesApi
|
|
44540
|
+
*/
|
|
44541
|
+
getAllEntitiesFiscalCalendars(requestParameters, options) {
|
|
44542
|
+
return EntitiesApi_GetAllEntitiesFiscalCalendars(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
44543
|
+
}
|
|
44393
44544
|
/**
|
|
44394
44545
|
*
|
|
44395
44546
|
* @summary Get all Identity Providers
|
|
@@ -44972,6 +45123,17 @@ export class EntitiesApi extends BaseAPI {
|
|
|
44972
45123
|
getEntityFilterViews(requestParameters, options) {
|
|
44973
45124
|
return EntitiesApi_GetEntityFilterViews(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
44974
45125
|
}
|
|
45126
|
+
/**
|
|
45127
|
+
*
|
|
45128
|
+
* @summary Get a Fiscal Calendar
|
|
45129
|
+
* @param {EntitiesApiGetEntityFiscalCalendarsRequest} requestParameters Request parameters.
|
|
45130
|
+
* @param {*} [options] Override http request option.
|
|
45131
|
+
* @throws {RequiredError}
|
|
45132
|
+
* @memberof EntitiesApi
|
|
45133
|
+
*/
|
|
45134
|
+
getEntityFiscalCalendars(requestParameters, options) {
|
|
45135
|
+
return EntitiesApi_GetEntityFiscalCalendars(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
45136
|
+
}
|
|
44975
45137
|
/**
|
|
44976
45138
|
*
|
|
44977
45139
|
* @summary Get Identity Provider
|
|
@@ -52940,6 +53102,346 @@ export class FilterViewsApi extends BaseAPI {
|
|
|
52940
53102
|
return FilterViewsApi_UpdateEntityFilterViews(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
52941
53103
|
}
|
|
52942
53104
|
}
|
|
53105
|
+
// FiscalCalendarControllerApi FP - FiscalCalendarControllerApiAxiosParamCreator
|
|
53106
|
+
/**
|
|
53107
|
+
*
|
|
53108
|
+
* @summary Get all Fiscal Calendars
|
|
53109
|
+
* @param {string} workspaceId
|
|
53110
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
53111
|
+
* @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\').
|
|
53112
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
53113
|
+
* @param {number} [size] The size of the page to be returned
|
|
53114
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
53115
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
53116
|
+
* @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
53117
|
+
* @param {*} [options] Override http request option.
|
|
53118
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
53119
|
+
* @throws {RequiredError}
|
|
53120
|
+
*/
|
|
53121
|
+
export async function FiscalCalendarControllerApiAxiosParamCreator_GetAllEntitiesFiscalCalendars(workspaceId, origin, filter, page, size, sort, xGDCVALIDATERELATIONS, metaInclude, options = {}, configuration) {
|
|
53122
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
53123
|
+
assertParamExists('getAllEntitiesFiscalCalendars', 'workspaceId', workspaceId);
|
|
53124
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/fiscalCalendars`
|
|
53125
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
53126
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
53127
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
53128
|
+
let baseOptions;
|
|
53129
|
+
if (configuration) {
|
|
53130
|
+
baseOptions = configuration.baseOptions;
|
|
53131
|
+
}
|
|
53132
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
53133
|
+
const localVarHeaderParameter = {};
|
|
53134
|
+
const localVarQueryParameter = {};
|
|
53135
|
+
if (origin !== undefined) {
|
|
53136
|
+
localVarQueryParameter['origin'] = origin;
|
|
53137
|
+
}
|
|
53138
|
+
if (filter !== undefined) {
|
|
53139
|
+
localVarQueryParameter['filter'] = filter;
|
|
53140
|
+
}
|
|
53141
|
+
if (page !== undefined) {
|
|
53142
|
+
localVarQueryParameter['page'] = page;
|
|
53143
|
+
}
|
|
53144
|
+
if (size !== undefined) {
|
|
53145
|
+
localVarQueryParameter['size'] = size;
|
|
53146
|
+
}
|
|
53147
|
+
if (sort) {
|
|
53148
|
+
localVarQueryParameter['sort'] = sort;
|
|
53149
|
+
}
|
|
53150
|
+
if (metaInclude) {
|
|
53151
|
+
localVarQueryParameter['metaInclude'] = Array.from(metaInclude).join(COLLECTION_FORMATS.csv);
|
|
53152
|
+
}
|
|
53153
|
+
if (xGDCVALIDATERELATIONS !== undefined && xGDCVALIDATERELATIONS !== null) {
|
|
53154
|
+
localVarHeaderParameter['X-GDC-VALIDATE-RELATIONS'] = String(JSON.stringify(xGDCVALIDATERELATIONS));
|
|
53155
|
+
}
|
|
53156
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
53157
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
53158
|
+
localVarRequestOptions.headers = {
|
|
53159
|
+
...localVarHeaderParameter,
|
|
53160
|
+
...headersFromBaseOptions,
|
|
53161
|
+
...options.headers,
|
|
53162
|
+
};
|
|
53163
|
+
return {
|
|
53164
|
+
url: toPathString(localVarUrlObj),
|
|
53165
|
+
options: localVarRequestOptions,
|
|
53166
|
+
};
|
|
53167
|
+
}
|
|
53168
|
+
// FiscalCalendarControllerApi FP - FiscalCalendarControllerApiAxiosParamCreator
|
|
53169
|
+
/**
|
|
53170
|
+
*
|
|
53171
|
+
* @summary Get a Fiscal Calendar
|
|
53172
|
+
* @param {string} workspaceId
|
|
53173
|
+
* @param {string} objectId
|
|
53174
|
+
* @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\').
|
|
53175
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
53176
|
+
* @param {*} [options] Override http request option.
|
|
53177
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
53178
|
+
* @throws {RequiredError}
|
|
53179
|
+
*/
|
|
53180
|
+
export async function FiscalCalendarControllerApiAxiosParamCreator_GetEntityFiscalCalendars(workspaceId, objectId, filter, xGDCVALIDATERELATIONS, options = {}, configuration) {
|
|
53181
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
53182
|
+
assertParamExists('getEntityFiscalCalendars', 'workspaceId', workspaceId);
|
|
53183
|
+
// verify required parameter 'objectId' is not null or undefined
|
|
53184
|
+
assertParamExists('getEntityFiscalCalendars', 'objectId', objectId);
|
|
53185
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/fiscalCalendars/{objectId}`
|
|
53186
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
53187
|
+
.replace(`{${"objectId"}}`, encodeURIComponent(String(objectId)));
|
|
53188
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
53189
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
53190
|
+
let baseOptions;
|
|
53191
|
+
if (configuration) {
|
|
53192
|
+
baseOptions = configuration.baseOptions;
|
|
53193
|
+
}
|
|
53194
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
53195
|
+
const localVarHeaderParameter = {};
|
|
53196
|
+
const localVarQueryParameter = {};
|
|
53197
|
+
if (filter !== undefined) {
|
|
53198
|
+
localVarQueryParameter['filter'] = filter;
|
|
53199
|
+
}
|
|
53200
|
+
if (xGDCVALIDATERELATIONS !== undefined && xGDCVALIDATERELATIONS !== null) {
|
|
53201
|
+
localVarHeaderParameter['X-GDC-VALIDATE-RELATIONS'] = String(JSON.stringify(xGDCVALIDATERELATIONS));
|
|
53202
|
+
}
|
|
53203
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
53204
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
53205
|
+
localVarRequestOptions.headers = {
|
|
53206
|
+
...localVarHeaderParameter,
|
|
53207
|
+
...headersFromBaseOptions,
|
|
53208
|
+
...options.headers,
|
|
53209
|
+
};
|
|
53210
|
+
return {
|
|
53211
|
+
url: toPathString(localVarUrlObj),
|
|
53212
|
+
options: localVarRequestOptions,
|
|
53213
|
+
};
|
|
53214
|
+
}
|
|
53215
|
+
// FiscalCalendarControllerApi Api FP
|
|
53216
|
+
/**
|
|
53217
|
+
*
|
|
53218
|
+
* @summary Get all Fiscal Calendars
|
|
53219
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
53220
|
+
* @param {string} basePath Base path.
|
|
53221
|
+
* @param {FiscalCalendarControllerApiGetAllEntitiesFiscalCalendarsRequest} requestParameters Request parameters.
|
|
53222
|
+
* @param {*} [options] Override http request option.
|
|
53223
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
53224
|
+
* @throws {RequiredError}
|
|
53225
|
+
*/
|
|
53226
|
+
export async function FiscalCalendarControllerApi_GetAllEntitiesFiscalCalendars(axios, basePath, requestParameters, options, configuration) {
|
|
53227
|
+
const localVarAxiosArgs = await FiscalCalendarControllerApiAxiosParamCreator_GetAllEntitiesFiscalCalendars(requestParameters.workspaceId, requestParameters.origin, requestParameters.filter, requestParameters.page, requestParameters.size, requestParameters.sort, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options || {}, configuration);
|
|
53228
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
53229
|
+
}
|
|
53230
|
+
// FiscalCalendarControllerApi Api FP
|
|
53231
|
+
/**
|
|
53232
|
+
*
|
|
53233
|
+
* @summary Get a Fiscal Calendar
|
|
53234
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
53235
|
+
* @param {string} basePath Base path.
|
|
53236
|
+
* @param {FiscalCalendarControllerApiGetEntityFiscalCalendarsRequest} requestParameters Request parameters.
|
|
53237
|
+
* @param {*} [options] Override http request option.
|
|
53238
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
53239
|
+
* @throws {RequiredError}
|
|
53240
|
+
*/
|
|
53241
|
+
export async function FiscalCalendarControllerApi_GetEntityFiscalCalendars(axios, basePath, requestParameters, options, configuration) {
|
|
53242
|
+
const localVarAxiosArgs = await FiscalCalendarControllerApiAxiosParamCreator_GetEntityFiscalCalendars(requestParameters.workspaceId, requestParameters.objectId, requestParameters.filter, requestParameters.xGDCVALIDATERELATIONS, options || {}, configuration);
|
|
53243
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
53244
|
+
}
|
|
53245
|
+
/**
|
|
53246
|
+
* FiscalCalendarControllerApi - object-oriented interface
|
|
53247
|
+
* @export
|
|
53248
|
+
* @class FiscalCalendarControllerApi
|
|
53249
|
+
* @extends {BaseAPI}
|
|
53250
|
+
*/
|
|
53251
|
+
export class FiscalCalendarControllerApi extends BaseAPI {
|
|
53252
|
+
/**
|
|
53253
|
+
*
|
|
53254
|
+
* @summary Get all Fiscal Calendars
|
|
53255
|
+
* @param {FiscalCalendarControllerApiGetAllEntitiesFiscalCalendarsRequest} requestParameters Request parameters.
|
|
53256
|
+
* @param {*} [options] Override http request option.
|
|
53257
|
+
* @throws {RequiredError}
|
|
53258
|
+
* @memberof FiscalCalendarControllerApi
|
|
53259
|
+
*/
|
|
53260
|
+
getAllEntitiesFiscalCalendars(requestParameters, options) {
|
|
53261
|
+
return FiscalCalendarControllerApi_GetAllEntitiesFiscalCalendars(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
53262
|
+
}
|
|
53263
|
+
/**
|
|
53264
|
+
*
|
|
53265
|
+
* @summary Get a Fiscal Calendar
|
|
53266
|
+
* @param {FiscalCalendarControllerApiGetEntityFiscalCalendarsRequest} requestParameters Request parameters.
|
|
53267
|
+
* @param {*} [options] Override http request option.
|
|
53268
|
+
* @throws {RequiredError}
|
|
53269
|
+
* @memberof FiscalCalendarControllerApi
|
|
53270
|
+
*/
|
|
53271
|
+
getEntityFiscalCalendars(requestParameters, options) {
|
|
53272
|
+
return FiscalCalendarControllerApi_GetEntityFiscalCalendars(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
53273
|
+
}
|
|
53274
|
+
}
|
|
53275
|
+
// FiscalCalendarsApi FP - FiscalCalendarsApiAxiosParamCreator
|
|
53276
|
+
/**
|
|
53277
|
+
*
|
|
53278
|
+
* @summary Get all Fiscal Calendars
|
|
53279
|
+
* @param {string} workspaceId
|
|
53280
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
53281
|
+
* @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\').
|
|
53282
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
53283
|
+
* @param {number} [size] The size of the page to be returned
|
|
53284
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
53285
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
53286
|
+
* @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
53287
|
+
* @param {*} [options] Override http request option.
|
|
53288
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
53289
|
+
* @throws {RequiredError}
|
|
53290
|
+
*/
|
|
53291
|
+
export async function FiscalCalendarsApiAxiosParamCreator_GetAllEntitiesFiscalCalendars(workspaceId, origin, filter, page, size, sort, xGDCVALIDATERELATIONS, metaInclude, options = {}, configuration) {
|
|
53292
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
53293
|
+
assertParamExists('getAllEntitiesFiscalCalendars', 'workspaceId', workspaceId);
|
|
53294
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/fiscalCalendars`
|
|
53295
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
53296
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
53297
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
53298
|
+
let baseOptions;
|
|
53299
|
+
if (configuration) {
|
|
53300
|
+
baseOptions = configuration.baseOptions;
|
|
53301
|
+
}
|
|
53302
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
53303
|
+
const localVarHeaderParameter = {};
|
|
53304
|
+
const localVarQueryParameter = {};
|
|
53305
|
+
if (origin !== undefined) {
|
|
53306
|
+
localVarQueryParameter['origin'] = origin;
|
|
53307
|
+
}
|
|
53308
|
+
if (filter !== undefined) {
|
|
53309
|
+
localVarQueryParameter['filter'] = filter;
|
|
53310
|
+
}
|
|
53311
|
+
if (page !== undefined) {
|
|
53312
|
+
localVarQueryParameter['page'] = page;
|
|
53313
|
+
}
|
|
53314
|
+
if (size !== undefined) {
|
|
53315
|
+
localVarQueryParameter['size'] = size;
|
|
53316
|
+
}
|
|
53317
|
+
if (sort) {
|
|
53318
|
+
localVarQueryParameter['sort'] = sort;
|
|
53319
|
+
}
|
|
53320
|
+
if (metaInclude) {
|
|
53321
|
+
localVarQueryParameter['metaInclude'] = Array.from(metaInclude).join(COLLECTION_FORMATS.csv);
|
|
53322
|
+
}
|
|
53323
|
+
if (xGDCVALIDATERELATIONS !== undefined && xGDCVALIDATERELATIONS !== null) {
|
|
53324
|
+
localVarHeaderParameter['X-GDC-VALIDATE-RELATIONS'] = String(JSON.stringify(xGDCVALIDATERELATIONS));
|
|
53325
|
+
}
|
|
53326
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
53327
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
53328
|
+
localVarRequestOptions.headers = {
|
|
53329
|
+
...localVarHeaderParameter,
|
|
53330
|
+
...headersFromBaseOptions,
|
|
53331
|
+
...options.headers,
|
|
53332
|
+
};
|
|
53333
|
+
return {
|
|
53334
|
+
url: toPathString(localVarUrlObj),
|
|
53335
|
+
options: localVarRequestOptions,
|
|
53336
|
+
};
|
|
53337
|
+
}
|
|
53338
|
+
// FiscalCalendarsApi FP - FiscalCalendarsApiAxiosParamCreator
|
|
53339
|
+
/**
|
|
53340
|
+
*
|
|
53341
|
+
* @summary Get a Fiscal Calendar
|
|
53342
|
+
* @param {string} workspaceId
|
|
53343
|
+
* @param {string} objectId
|
|
53344
|
+
* @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\').
|
|
53345
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
53346
|
+
* @param {*} [options] Override http request option.
|
|
53347
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
53348
|
+
* @throws {RequiredError}
|
|
53349
|
+
*/
|
|
53350
|
+
export async function FiscalCalendarsApiAxiosParamCreator_GetEntityFiscalCalendars(workspaceId, objectId, filter, xGDCVALIDATERELATIONS, options = {}, configuration) {
|
|
53351
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
53352
|
+
assertParamExists('getEntityFiscalCalendars', 'workspaceId', workspaceId);
|
|
53353
|
+
// verify required parameter 'objectId' is not null or undefined
|
|
53354
|
+
assertParamExists('getEntityFiscalCalendars', 'objectId', objectId);
|
|
53355
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/fiscalCalendars/{objectId}`
|
|
53356
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
53357
|
+
.replace(`{${"objectId"}}`, encodeURIComponent(String(objectId)));
|
|
53358
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
53359
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
53360
|
+
let baseOptions;
|
|
53361
|
+
if (configuration) {
|
|
53362
|
+
baseOptions = configuration.baseOptions;
|
|
53363
|
+
}
|
|
53364
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
53365
|
+
const localVarHeaderParameter = {};
|
|
53366
|
+
const localVarQueryParameter = {};
|
|
53367
|
+
if (filter !== undefined) {
|
|
53368
|
+
localVarQueryParameter['filter'] = filter;
|
|
53369
|
+
}
|
|
53370
|
+
if (xGDCVALIDATERELATIONS !== undefined && xGDCVALIDATERELATIONS !== null) {
|
|
53371
|
+
localVarHeaderParameter['X-GDC-VALIDATE-RELATIONS'] = String(JSON.stringify(xGDCVALIDATERELATIONS));
|
|
53372
|
+
}
|
|
53373
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
53374
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
53375
|
+
localVarRequestOptions.headers = {
|
|
53376
|
+
...localVarHeaderParameter,
|
|
53377
|
+
...headersFromBaseOptions,
|
|
53378
|
+
...options.headers,
|
|
53379
|
+
};
|
|
53380
|
+
return {
|
|
53381
|
+
url: toPathString(localVarUrlObj),
|
|
53382
|
+
options: localVarRequestOptions,
|
|
53383
|
+
};
|
|
53384
|
+
}
|
|
53385
|
+
// FiscalCalendarsApi Api FP
|
|
53386
|
+
/**
|
|
53387
|
+
*
|
|
53388
|
+
* @summary Get all Fiscal Calendars
|
|
53389
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
53390
|
+
* @param {string} basePath Base path.
|
|
53391
|
+
* @param {FiscalCalendarsApiGetAllEntitiesFiscalCalendarsRequest} requestParameters Request parameters.
|
|
53392
|
+
* @param {*} [options] Override http request option.
|
|
53393
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
53394
|
+
* @throws {RequiredError}
|
|
53395
|
+
*/
|
|
53396
|
+
export async function FiscalCalendarsApi_GetAllEntitiesFiscalCalendars(axios, basePath, requestParameters, options, configuration) {
|
|
53397
|
+
const localVarAxiosArgs = await FiscalCalendarsApiAxiosParamCreator_GetAllEntitiesFiscalCalendars(requestParameters.workspaceId, requestParameters.origin, requestParameters.filter, requestParameters.page, requestParameters.size, requestParameters.sort, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options || {}, configuration);
|
|
53398
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
53399
|
+
}
|
|
53400
|
+
// FiscalCalendarsApi Api FP
|
|
53401
|
+
/**
|
|
53402
|
+
*
|
|
53403
|
+
* @summary Get a Fiscal Calendar
|
|
53404
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
53405
|
+
* @param {string} basePath Base path.
|
|
53406
|
+
* @param {FiscalCalendarsApiGetEntityFiscalCalendarsRequest} requestParameters Request parameters.
|
|
53407
|
+
* @param {*} [options] Override http request option.
|
|
53408
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
53409
|
+
* @throws {RequiredError}
|
|
53410
|
+
*/
|
|
53411
|
+
export async function FiscalCalendarsApi_GetEntityFiscalCalendars(axios, basePath, requestParameters, options, configuration) {
|
|
53412
|
+
const localVarAxiosArgs = await FiscalCalendarsApiAxiosParamCreator_GetEntityFiscalCalendars(requestParameters.workspaceId, requestParameters.objectId, requestParameters.filter, requestParameters.xGDCVALIDATERELATIONS, options || {}, configuration);
|
|
53413
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
53414
|
+
}
|
|
53415
|
+
/**
|
|
53416
|
+
* FiscalCalendarsApi - object-oriented interface
|
|
53417
|
+
* @export
|
|
53418
|
+
* @class FiscalCalendarsApi
|
|
53419
|
+
* @extends {BaseAPI}
|
|
53420
|
+
*/
|
|
53421
|
+
export class FiscalCalendarsApi extends BaseAPI {
|
|
53422
|
+
/**
|
|
53423
|
+
*
|
|
53424
|
+
* @summary Get all Fiscal Calendars
|
|
53425
|
+
* @param {FiscalCalendarsApiGetAllEntitiesFiscalCalendarsRequest} requestParameters Request parameters.
|
|
53426
|
+
* @param {*} [options] Override http request option.
|
|
53427
|
+
* @throws {RequiredError}
|
|
53428
|
+
* @memberof FiscalCalendarsApi
|
|
53429
|
+
*/
|
|
53430
|
+
getAllEntitiesFiscalCalendars(requestParameters, options) {
|
|
53431
|
+
return FiscalCalendarsApi_GetAllEntitiesFiscalCalendars(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
53432
|
+
}
|
|
53433
|
+
/**
|
|
53434
|
+
*
|
|
53435
|
+
* @summary Get a Fiscal Calendar
|
|
53436
|
+
* @param {FiscalCalendarsApiGetEntityFiscalCalendarsRequest} requestParameters Request parameters.
|
|
53437
|
+
* @param {*} [options] Override http request option.
|
|
53438
|
+
* @throws {RequiredError}
|
|
53439
|
+
* @memberof FiscalCalendarsApi
|
|
53440
|
+
*/
|
|
53441
|
+
getEntityFiscalCalendars(requestParameters, options) {
|
|
53442
|
+
return FiscalCalendarsApi_GetEntityFiscalCalendars(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
53443
|
+
}
|
|
53444
|
+
}
|
|
52943
53445
|
// GenerateLogicalDataModelApi FP - GenerateLogicalDataModelApiAxiosParamCreator
|
|
52944
53446
|
/**
|
|
52945
53447
|
* Generate logical data model (LDM) from physical data model (PDM) stored in data source.
|
|
@@ -70073,18 +70575,18 @@ export async function PermissionsApiAxiosParamCreator_LabelPermissions(workspace
|
|
|
70073
70575
|
* @summary Manage Permissions for an Attribute
|
|
70074
70576
|
* @param {string} workspaceId
|
|
70075
70577
|
* @param {string} attributeId
|
|
70076
|
-
* @param {Array<
|
|
70578
|
+
* @param {Array<ManageAttributePermissionsRequestInner>} manageAttributePermissionsRequestInner
|
|
70077
70579
|
* @param {*} [options] Override http request option.
|
|
70078
70580
|
* @param {Configuration} [configuration] Optional configuration.
|
|
70079
70581
|
* @throws {RequiredError}
|
|
70080
70582
|
*/
|
|
70081
|
-
export async function PermissionsApiAxiosParamCreator_ManageAttributePermissions(workspaceId, attributeId,
|
|
70583
|
+
export async function PermissionsApiAxiosParamCreator_ManageAttributePermissions(workspaceId, attributeId, manageAttributePermissionsRequestInner, options = {}, configuration) {
|
|
70082
70584
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
70083
70585
|
assertParamExists('manageAttributePermissions', 'workspaceId', workspaceId);
|
|
70084
70586
|
// verify required parameter 'attributeId' is not null or undefined
|
|
70085
70587
|
assertParamExists('manageAttributePermissions', 'attributeId', attributeId);
|
|
70086
|
-
// verify required parameter '
|
|
70087
|
-
assertParamExists('manageAttributePermissions', '
|
|
70588
|
+
// verify required parameter 'manageAttributePermissionsRequestInner' is not null or undefined
|
|
70589
|
+
assertParamExists('manageAttributePermissions', 'manageAttributePermissionsRequestInner', manageAttributePermissionsRequestInner);
|
|
70088
70590
|
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/attributes/{attributeId}/managePermissions`
|
|
70089
70591
|
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
70090
70592
|
.replace(`{${"attributeId"}}`, encodeURIComponent(String(attributeId)));
|
|
@@ -70111,11 +70613,11 @@ export async function PermissionsApiAxiosParamCreator_ManageAttributePermissions
|
|
|
70111
70613
|
...headersFromBaseOptions,
|
|
70112
70614
|
...options.headers,
|
|
70113
70615
|
};
|
|
70114
|
-
const needsSerialization = typeof
|
|
70616
|
+
const needsSerialization = typeof manageAttributePermissionsRequestInner !== "string" ||
|
|
70115
70617
|
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
70116
70618
|
localVarRequestOptions.data = needsSerialization
|
|
70117
|
-
? JSON.stringify(
|
|
70118
|
-
:
|
|
70619
|
+
? JSON.stringify(manageAttributePermissionsRequestInner !== undefined ? manageAttributePermissionsRequestInner : {})
|
|
70620
|
+
: manageAttributePermissionsRequestInner || "";
|
|
70119
70621
|
return {
|
|
70120
70622
|
url: toPathString(localVarUrlObj),
|
|
70121
70623
|
options: localVarRequestOptions,
|
|
@@ -70231,18 +70733,18 @@ export async function PermissionsApiAxiosParamCreator_ManageDataSourcePermission
|
|
|
70231
70733
|
* @summary Manage Permissions for a Fact
|
|
70232
70734
|
* @param {string} workspaceId
|
|
70233
70735
|
* @param {string} factId
|
|
70234
|
-
* @param {Array<
|
|
70736
|
+
* @param {Array<ManageFactPermissionsRequestInner>} manageFactPermissionsRequestInner
|
|
70235
70737
|
* @param {*} [options] Override http request option.
|
|
70236
70738
|
* @param {Configuration} [configuration] Optional configuration.
|
|
70237
70739
|
* @throws {RequiredError}
|
|
70238
70740
|
*/
|
|
70239
|
-
export async function PermissionsApiAxiosParamCreator_ManageFactPermissions(workspaceId, factId,
|
|
70741
|
+
export async function PermissionsApiAxiosParamCreator_ManageFactPermissions(workspaceId, factId, manageFactPermissionsRequestInner, options = {}, configuration) {
|
|
70240
70742
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
70241
70743
|
assertParamExists('manageFactPermissions', 'workspaceId', workspaceId);
|
|
70242
70744
|
// verify required parameter 'factId' is not null or undefined
|
|
70243
70745
|
assertParamExists('manageFactPermissions', 'factId', factId);
|
|
70244
|
-
// verify required parameter '
|
|
70245
|
-
assertParamExists('manageFactPermissions', '
|
|
70746
|
+
// verify required parameter 'manageFactPermissionsRequestInner' is not null or undefined
|
|
70747
|
+
assertParamExists('manageFactPermissions', 'manageFactPermissionsRequestInner', manageFactPermissionsRequestInner);
|
|
70246
70748
|
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/facts/{factId}/managePermissions`
|
|
70247
70749
|
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
70248
70750
|
.replace(`{${"factId"}}`, encodeURIComponent(String(factId)));
|
|
@@ -70269,11 +70771,11 @@ export async function PermissionsApiAxiosParamCreator_ManageFactPermissions(work
|
|
|
70269
70771
|
...headersFromBaseOptions,
|
|
70270
70772
|
...options.headers,
|
|
70271
70773
|
};
|
|
70272
|
-
const needsSerialization = typeof
|
|
70774
|
+
const needsSerialization = typeof manageFactPermissionsRequestInner !== "string" ||
|
|
70273
70775
|
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
70274
70776
|
localVarRequestOptions.data = needsSerialization
|
|
70275
|
-
? JSON.stringify(
|
|
70276
|
-
:
|
|
70777
|
+
? JSON.stringify(manageFactPermissionsRequestInner !== undefined ? manageFactPermissionsRequestInner : {})
|
|
70778
|
+
: manageFactPermissionsRequestInner || "";
|
|
70277
70779
|
return {
|
|
70278
70780
|
url: toPathString(localVarUrlObj),
|
|
70279
70781
|
options: localVarRequestOptions,
|
|
@@ -70864,7 +71366,7 @@ export async function PermissionsApi_LabelPermissions(axios, basePath, requestPa
|
|
|
70864
71366
|
* @throws {RequiredError}
|
|
70865
71367
|
*/
|
|
70866
71368
|
export async function PermissionsApi_ManageAttributePermissions(axios, basePath, requestParameters, options, configuration) {
|
|
70867
|
-
const localVarAxiosArgs = await PermissionsApiAxiosParamCreator_ManageAttributePermissions(requestParameters.workspaceId, requestParameters.attributeId, requestParameters.
|
|
71369
|
+
const localVarAxiosArgs = await PermissionsApiAxiosParamCreator_ManageAttributePermissions(requestParameters.workspaceId, requestParameters.attributeId, requestParameters.manageAttributePermissionsRequestInner, options || {}, configuration);
|
|
70868
71370
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
70869
71371
|
}
|
|
70870
71372
|
// PermissionsApi Api FP
|
|
@@ -70909,7 +71411,7 @@ export async function PermissionsApi_ManageDataSourcePermissions(axios, basePath
|
|
|
70909
71411
|
* @throws {RequiredError}
|
|
70910
71412
|
*/
|
|
70911
71413
|
export async function PermissionsApi_ManageFactPermissions(axios, basePath, requestParameters, options, configuration) {
|
|
70912
|
-
const localVarAxiosArgs = await PermissionsApiAxiosParamCreator_ManageFactPermissions(requestParameters.workspaceId, requestParameters.factId, requestParameters.
|
|
71414
|
+
const localVarAxiosArgs = await PermissionsApiAxiosParamCreator_ManageFactPermissions(requestParameters.workspaceId, requestParameters.factId, requestParameters.manageFactPermissionsRequestInner, options || {}, configuration);
|
|
70913
71415
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
70914
71416
|
}
|
|
70915
71417
|
// PermissionsApi Api FP
|
|
@@ -79753,8 +80255,8 @@ export async function WorkspaceColorPaletteControllerApiAxiosParamCreator_Create
|
|
|
79753
80255
|
localVarQueryParameter['metaInclude'] = Array.from(metaInclude).join(COLLECTION_FORMATS.csv);
|
|
79754
80256
|
}
|
|
79755
80257
|
const consumes = [
|
|
79756
|
-
'application/json',
|
|
79757
|
-
'application/
|
|
80258
|
+
'application/vnd.gooddata.api+json',
|
|
80259
|
+
'application/json'
|
|
79758
80260
|
];
|
|
79759
80261
|
// use application/json if present, otherwise fallback to the first one
|
|
79760
80262
|
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
@@ -79965,8 +80467,8 @@ export async function WorkspaceColorPaletteControllerApiAxiosParamCreator_PatchE
|
|
|
79965
80467
|
localVarQueryParameter['filter'] = filter;
|
|
79966
80468
|
}
|
|
79967
80469
|
const consumes = [
|
|
79968
|
-
'application/json',
|
|
79969
|
-
'application/
|
|
80470
|
+
'application/vnd.gooddata.api+json',
|
|
80471
|
+
'application/json'
|
|
79970
80472
|
];
|
|
79971
80473
|
// use application/json if present, otherwise fallback to the first one
|
|
79972
80474
|
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
@@ -80024,8 +80526,8 @@ export async function WorkspaceColorPaletteControllerApiAxiosParamCreator_Update
|
|
|
80024
80526
|
localVarQueryParameter['filter'] = filter;
|
|
80025
80527
|
}
|
|
80026
80528
|
const consumes = [
|
|
80027
|
-
'application/json',
|
|
80028
|
-
'application/
|
|
80529
|
+
'application/vnd.gooddata.api+json',
|
|
80530
|
+
'application/json'
|
|
80029
80531
|
];
|
|
80030
80532
|
// use application/json if present, otherwise fallback to the first one
|
|
80031
80533
|
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
@@ -82969,8 +83471,8 @@ export async function WorkspaceThemeControllerApiAxiosParamCreator_CreateEntityW
|
|
|
82969
83471
|
localVarQueryParameter['metaInclude'] = Array.from(metaInclude).join(COLLECTION_FORMATS.csv);
|
|
82970
83472
|
}
|
|
82971
83473
|
const consumes = [
|
|
82972
|
-
'application/json',
|
|
82973
|
-
'application/
|
|
83474
|
+
'application/vnd.gooddata.api+json',
|
|
83475
|
+
'application/json'
|
|
82974
83476
|
];
|
|
82975
83477
|
// use application/json if present, otherwise fallback to the first one
|
|
82976
83478
|
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
@@ -83181,8 +83683,8 @@ export async function WorkspaceThemeControllerApiAxiosParamCreator_PatchEntityWo
|
|
|
83181
83683
|
localVarQueryParameter['filter'] = filter;
|
|
83182
83684
|
}
|
|
83183
83685
|
const consumes = [
|
|
83184
|
-
'application/json',
|
|
83185
|
-
'application/
|
|
83686
|
+
'application/vnd.gooddata.api+json',
|
|
83687
|
+
'application/json'
|
|
83186
83688
|
];
|
|
83187
83689
|
// use application/json if present, otherwise fallback to the first one
|
|
83188
83690
|
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|
|
@@ -83240,8 +83742,8 @@ export async function WorkspaceThemeControllerApiAxiosParamCreator_UpdateEntityW
|
|
|
83240
83742
|
localVarQueryParameter['filter'] = filter;
|
|
83241
83743
|
}
|
|
83242
83744
|
const consumes = [
|
|
83243
|
-
'application/json',
|
|
83244
|
-
'application/
|
|
83745
|
+
'application/vnd.gooddata.api+json',
|
|
83746
|
+
'application/json'
|
|
83245
83747
|
];
|
|
83246
83748
|
// use application/json if present, otherwise fallback to the first one
|
|
83247
83749
|
localVarHeaderParameter['Content-Type'] = consumes.includes('application/json')
|