@gooddata/code-cli 0.49.0-alpha.4 → 0.49.0-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +494 -28
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -37370,7 +37370,7 @@ function isPromise(value) {
|
|
|
37370
37370
|
//#endregion
|
|
37371
37371
|
//#region package.json
|
|
37372
37372
|
var name$1 = "@gooddata/code-cli";
|
|
37373
|
-
var version$1 = "0.49.0-alpha.
|
|
37373
|
+
var version$1 = "0.49.0-alpha.6";
|
|
37374
37374
|
//#endregion
|
|
37375
37375
|
//#region ../../../common/temp/aac/node_modules/.pnpm/vscode-languageserver@8.1.0/node_modules/vscode-languageserver/lib/common/utils/is.js
|
|
37376
37376
|
var require_is$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
@@ -160397,7 +160397,7 @@ async function open(state, emitter, file) {
|
|
|
160397
160397
|
//#endregion
|
|
160398
160398
|
//#region ../code/package.json
|
|
160399
160399
|
var name = "@gooddata/code";
|
|
160400
|
-
var version = "0.49.0-alpha.
|
|
160400
|
+
var version = "0.49.0-alpha.6";
|
|
160401
160401
|
//#endregion
|
|
160402
160402
|
//#region ../../../sdk/libs/api-client-tiger/src/axios.ts
|
|
160403
160403
|
/**
|
|
@@ -160419,7 +160419,7 @@ const _CONFIG = {
|
|
|
160419
160419
|
common: {
|
|
160420
160420
|
"X-Requested-With": "XMLHttpRequest",
|
|
160421
160421
|
"X-GDC-JS-PACKAGE": "@gooddata/api-client-tiger",
|
|
160422
|
-
"X-GDC-JS-PACKAGE-VERSION": "11.53.0-alpha.
|
|
160422
|
+
"X-GDC-JS-PACKAGE-VERSION": "11.53.0-alpha.6"
|
|
160423
160423
|
},
|
|
160424
160424
|
post: { "Content-Type": "application/json;charset=utf8" },
|
|
160425
160425
|
put: { "Content-Type": "application/json;charset=utf8" }
|
|
@@ -164127,6 +164127,48 @@ async function EntitiesApiAxiosParamCreator_CreateEntityColorPalettes(jsonApiCol
|
|
|
164127
164127
|
};
|
|
164128
164128
|
}
|
|
164129
164129
|
/**
|
|
164130
|
+
*
|
|
164131
|
+
* @summary Post Computed Attributes
|
|
164132
|
+
* @param {string} workspaceId
|
|
164133
|
+
* @param {JsonApiComputedAttributePostOptionalIdDocument} jsonApiComputedAttributePostOptionalIdDocument
|
|
164134
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
164135
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
164136
|
+
* @param {*} [options] Override http request option.
|
|
164137
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
164138
|
+
* @throws {RequiredError}
|
|
164139
|
+
*/
|
|
164140
|
+
async function EntitiesApiAxiosParamCreator_CreateEntityComputedAttributes(workspaceId, jsonApiComputedAttributePostOptionalIdDocument, include, metaInclude, options = {}, configuration) {
|
|
164141
|
+
assertParamExists$6("createEntityComputedAttributes", "workspaceId", workspaceId);
|
|
164142
|
+
assertParamExists$6("createEntityComputedAttributes", "jsonApiComputedAttributePostOptionalIdDocument", jsonApiComputedAttributePostOptionalIdDocument);
|
|
164143
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/computedAttributes`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
164144
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
164145
|
+
let baseOptions;
|
|
164146
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
164147
|
+
const localVarRequestOptions = {
|
|
164148
|
+
method: "POST",
|
|
164149
|
+
...baseOptions,
|
|
164150
|
+
...options
|
|
164151
|
+
};
|
|
164152
|
+
const localVarHeaderParameter = {};
|
|
164153
|
+
const localVarQueryParameter = {};
|
|
164154
|
+
if (include) localVarQueryParameter["include"] = include.join(COLLECTION_FORMATS$1.csv);
|
|
164155
|
+
if (metaInclude) localVarQueryParameter["metaInclude"] = Array.from(metaInclude).join(COLLECTION_FORMATS$1.csv);
|
|
164156
|
+
const consumes = ["application/vnd.gooddata.api+json", "application/json"];
|
|
164157
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
164158
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter);
|
|
164159
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
164160
|
+
localVarRequestOptions.headers = {
|
|
164161
|
+
...localVarHeaderParameter,
|
|
164162
|
+
...headersFromBaseOptions,
|
|
164163
|
+
...options.headers
|
|
164164
|
+
};
|
|
164165
|
+
localVarRequestOptions.data = typeof jsonApiComputedAttributePostOptionalIdDocument !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(jsonApiComputedAttributePostOptionalIdDocument !== void 0 ? jsonApiComputedAttributePostOptionalIdDocument : {}) : jsonApiComputedAttributePostOptionalIdDocument || "";
|
|
164166
|
+
return {
|
|
164167
|
+
url: toPathString$7(localVarUrlObj),
|
|
164168
|
+
options: localVarRequestOptions
|
|
164169
|
+
};
|
|
164170
|
+
}
|
|
164171
|
+
/**
|
|
164130
164172
|
* Context Security Police Directive
|
|
164131
164173
|
* @summary Post CSP Directives
|
|
164132
164174
|
* @param {JsonApiCspDirectiveInDocument} jsonApiCspDirectiveInDocument
|
|
@@ -164743,7 +164785,7 @@ async function EntitiesApiAxiosParamCreator_CreateEntityMemoryItems(workspaceId,
|
|
|
164743
164785
|
* @summary Post Metrics
|
|
164744
164786
|
* @param {string} workspaceId
|
|
164745
164787
|
* @param {JsonApiMetricPostOptionalIdDocument} jsonApiMetricPostOptionalIdDocument
|
|
164746
|
-
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
164788
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
164747
164789
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
164748
164790
|
* @param {*} [options] Override http request option.
|
|
164749
164791
|
* @param {Configuration} [configuration] Optional configuration.
|
|
@@ -164969,7 +165011,7 @@ async function EntitiesApiAxiosParamCreator_CreateEntityThemes(jsonApiThemeInDoc
|
|
|
164969
165011
|
* @summary Post User Data Filters
|
|
164970
165012
|
* @param {string} workspaceId
|
|
164971
165013
|
* @param {JsonApiUserDataFilterPostOptionalIdDocument} jsonApiUserDataFilterPostOptionalIdDocument
|
|
164972
|
-
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
165014
|
+
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
164973
165015
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
164974
165016
|
* @param {*} [options] Override http request option.
|
|
164975
165017
|
* @param {Configuration} [configuration] Optional configuration.
|
|
@@ -165676,6 +165718,40 @@ async function EntitiesApiAxiosParamCreator_DeleteEntityColorPalettes(id, option
|
|
|
165676
165718
|
};
|
|
165677
165719
|
}
|
|
165678
165720
|
/**
|
|
165721
|
+
*
|
|
165722
|
+
* @summary Delete a Computed Attribute
|
|
165723
|
+
* @param {string} workspaceId
|
|
165724
|
+
* @param {string} objectId
|
|
165725
|
+
* @param {*} [options] Override http request option.
|
|
165726
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
165727
|
+
* @throws {RequiredError}
|
|
165728
|
+
*/
|
|
165729
|
+
async function EntitiesApiAxiosParamCreator_DeleteEntityComputedAttributes(workspaceId, objectId, options = {}, configuration) {
|
|
165730
|
+
assertParamExists$6("deleteEntityComputedAttributes", "workspaceId", workspaceId);
|
|
165731
|
+
assertParamExists$6("deleteEntityComputedAttributes", "objectId", objectId);
|
|
165732
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/computedAttributes/{objectId}`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{objectId}`, encodeURIComponent(String(objectId)));
|
|
165733
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
165734
|
+
let baseOptions;
|
|
165735
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
165736
|
+
const localVarRequestOptions = {
|
|
165737
|
+
method: "DELETE",
|
|
165738
|
+
...baseOptions,
|
|
165739
|
+
...options
|
|
165740
|
+
};
|
|
165741
|
+
const localVarHeaderParameter = {};
|
|
165742
|
+
setSearchParams$7(localVarUrlObj, {});
|
|
165743
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
165744
|
+
localVarRequestOptions.headers = {
|
|
165745
|
+
...localVarHeaderParameter,
|
|
165746
|
+
...headersFromBaseOptions,
|
|
165747
|
+
...options.headers
|
|
165748
|
+
};
|
|
165749
|
+
return {
|
|
165750
|
+
url: toPathString$7(localVarUrlObj),
|
|
165751
|
+
options: localVarRequestOptions
|
|
165752
|
+
};
|
|
165753
|
+
}
|
|
165754
|
+
/**
|
|
165679
165755
|
* Context Security Police Directive
|
|
165680
165756
|
* @summary Delete CSP Directives
|
|
165681
165757
|
* @param {string} id
|
|
@@ -167243,6 +167319,55 @@ async function EntitiesApiAxiosParamCreator_GetAllEntitiesColorPalettes(filter,
|
|
|
167243
167319
|
};
|
|
167244
167320
|
}
|
|
167245
167321
|
/**
|
|
167322
|
+
*
|
|
167323
|
+
* @summary Get all Computed Attributes
|
|
167324
|
+
* @param {string} workspaceId
|
|
167325
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
167326
|
+
* @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\').
|
|
167327
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
167328
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
167329
|
+
* @param {number} [size] The size of the page to be returned
|
|
167330
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
167331
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
167332
|
+
* @param {Array<'origin' | 'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
167333
|
+
* @param {*} [options] Override http request option.
|
|
167334
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
167335
|
+
* @throws {RequiredError}
|
|
167336
|
+
*/
|
|
167337
|
+
async function EntitiesApiAxiosParamCreator_GetAllEntitiesComputedAttributes(workspaceId, origin, filter, include, page, size, sort, xGDCVALIDATERELATIONS, metaInclude, options = {}, configuration) {
|
|
167338
|
+
assertParamExists$6("getAllEntitiesComputedAttributes", "workspaceId", workspaceId);
|
|
167339
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/computedAttributes`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
167340
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
167341
|
+
let baseOptions;
|
|
167342
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
167343
|
+
const localVarRequestOptions = {
|
|
167344
|
+
method: "GET",
|
|
167345
|
+
...baseOptions,
|
|
167346
|
+
...options
|
|
167347
|
+
};
|
|
167348
|
+
const localVarHeaderParameter = {};
|
|
167349
|
+
const localVarQueryParameter = {};
|
|
167350
|
+
if (origin !== void 0) localVarQueryParameter["origin"] = origin;
|
|
167351
|
+
if (filter !== void 0) localVarQueryParameter["filter"] = filter;
|
|
167352
|
+
if (include) localVarQueryParameter["include"] = include.join(COLLECTION_FORMATS$1.csv);
|
|
167353
|
+
if (page !== void 0) localVarQueryParameter["page"] = page;
|
|
167354
|
+
if (size !== void 0) localVarQueryParameter["size"] = size;
|
|
167355
|
+
if (sort) localVarQueryParameter["sort"] = sort;
|
|
167356
|
+
if (metaInclude) localVarQueryParameter["metaInclude"] = Array.from(metaInclude).join(COLLECTION_FORMATS$1.csv);
|
|
167357
|
+
if (xGDCVALIDATERELATIONS !== void 0 && xGDCVALIDATERELATIONS !== null) localVarHeaderParameter["X-GDC-VALIDATE-RELATIONS"] = String(JSON.stringify(xGDCVALIDATERELATIONS));
|
|
167358
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter);
|
|
167359
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
167360
|
+
localVarRequestOptions.headers = {
|
|
167361
|
+
...localVarHeaderParameter,
|
|
167362
|
+
...headersFromBaseOptions,
|
|
167363
|
+
...options.headers
|
|
167364
|
+
};
|
|
167365
|
+
return {
|
|
167366
|
+
url: toPathString$7(localVarUrlObj),
|
|
167367
|
+
options: localVarRequestOptions
|
|
167368
|
+
};
|
|
167369
|
+
}
|
|
167370
|
+
/**
|
|
167246
167371
|
* Context Security Police Directive
|
|
167247
167372
|
* @summary Get CSP Directives
|
|
167248
167373
|
* @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\').
|
|
@@ -168228,7 +168353,7 @@ async function EntitiesApiAxiosParamCreator_GetAllEntitiesMemoryItems(workspaceI
|
|
|
168228
168353
|
* @param {string} workspaceId
|
|
168229
168354
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
168230
168355
|
* @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\').
|
|
168231
|
-
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
168356
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
168232
168357
|
* @param {number} [page] Zero-based page index (0..N)
|
|
168233
168358
|
* @param {number} [size] The size of the page to be returned
|
|
168234
168359
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -168528,7 +168653,7 @@ async function EntitiesApiAxiosParamCreator_GetAllEntitiesThemes(filter, page, s
|
|
|
168528
168653
|
* @param {string} workspaceId
|
|
168529
168654
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
168530
168655
|
* @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\').
|
|
168531
|
-
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
168656
|
+
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
168532
168657
|
* @param {number} [page] Zero-based page index (0..N)
|
|
168533
168658
|
* @param {number} [size] The size of the page to be returned
|
|
168534
168659
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -169531,6 +169656,49 @@ async function EntitiesApiAxiosParamCreator_GetEntityColorPalettes(id, filter, o
|
|
|
169531
169656
|
}
|
|
169532
169657
|
/**
|
|
169533
169658
|
*
|
|
169659
|
+
* @summary Get a Computed Attribute
|
|
169660
|
+
* @param {string} workspaceId
|
|
169661
|
+
* @param {string} objectId
|
|
169662
|
+
* @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\').
|
|
169663
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
169664
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
169665
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
169666
|
+
* @param {*} [options] Override http request option.
|
|
169667
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
169668
|
+
* @throws {RequiredError}
|
|
169669
|
+
*/
|
|
169670
|
+
async function EntitiesApiAxiosParamCreator_GetEntityComputedAttributes(workspaceId, objectId, filter, include, xGDCVALIDATERELATIONS, metaInclude, options = {}, configuration) {
|
|
169671
|
+
assertParamExists$6("getEntityComputedAttributes", "workspaceId", workspaceId);
|
|
169672
|
+
assertParamExists$6("getEntityComputedAttributes", "objectId", objectId);
|
|
169673
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/computedAttributes/{objectId}`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{objectId}`, encodeURIComponent(String(objectId)));
|
|
169674
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
169675
|
+
let baseOptions;
|
|
169676
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
169677
|
+
const localVarRequestOptions = {
|
|
169678
|
+
method: "GET",
|
|
169679
|
+
...baseOptions,
|
|
169680
|
+
...options
|
|
169681
|
+
};
|
|
169682
|
+
const localVarHeaderParameter = {};
|
|
169683
|
+
const localVarQueryParameter = {};
|
|
169684
|
+
if (filter !== void 0) localVarQueryParameter["filter"] = filter;
|
|
169685
|
+
if (include) localVarQueryParameter["include"] = include.join(COLLECTION_FORMATS$1.csv);
|
|
169686
|
+
if (metaInclude) localVarQueryParameter["metaInclude"] = Array.from(metaInclude).join(COLLECTION_FORMATS$1.csv);
|
|
169687
|
+
if (xGDCVALIDATERELATIONS !== void 0 && xGDCVALIDATERELATIONS !== null) localVarHeaderParameter["X-GDC-VALIDATE-RELATIONS"] = String(JSON.stringify(xGDCVALIDATERELATIONS));
|
|
169688
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter);
|
|
169689
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
169690
|
+
localVarRequestOptions.headers = {
|
|
169691
|
+
...localVarHeaderParameter,
|
|
169692
|
+
...headersFromBaseOptions,
|
|
169693
|
+
...options.headers
|
|
169694
|
+
};
|
|
169695
|
+
return {
|
|
169696
|
+
url: toPathString$7(localVarUrlObj),
|
|
169697
|
+
options: localVarRequestOptions
|
|
169698
|
+
};
|
|
169699
|
+
}
|
|
169700
|
+
/**
|
|
169701
|
+
*
|
|
169534
169702
|
* @summary Get CookieSecurityConfiguration
|
|
169535
169703
|
* @param {string} id
|
|
169536
169704
|
* @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\').
|
|
@@ -170428,7 +170596,7 @@ async function EntitiesApiAxiosParamCreator_GetEntityMemoryItems(workspaceId, ob
|
|
|
170428
170596
|
* @param {string} workspaceId
|
|
170429
170597
|
* @param {string} objectId
|
|
170430
170598
|
* @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\').
|
|
170431
|
-
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
170599
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
170432
170600
|
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
170433
170601
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
170434
170602
|
* @param {*} [options] Override http request option.
|
|
@@ -170730,7 +170898,7 @@ async function EntitiesApiAxiosParamCreator_GetEntityThemes(id, filter, options
|
|
|
170730
170898
|
* @param {string} workspaceId
|
|
170731
170899
|
* @param {string} objectId
|
|
170732
170900
|
* @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\').
|
|
170733
|
-
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
170901
|
+
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
170734
170902
|
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
170735
170903
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
170736
170904
|
* @param {*} [options] Override http request option.
|
|
@@ -171569,6 +171737,50 @@ async function EntitiesApiAxiosParamCreator_PatchEntityColorPalettes(id, jsonApi
|
|
|
171569
171737
|
}
|
|
171570
171738
|
/**
|
|
171571
171739
|
*
|
|
171740
|
+
* @summary Patch a Computed Attribute
|
|
171741
|
+
* @param {string} workspaceId
|
|
171742
|
+
* @param {string} objectId
|
|
171743
|
+
* @param {JsonApiComputedAttributePatchDocument} jsonApiComputedAttributePatchDocument
|
|
171744
|
+
* @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\').
|
|
171745
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
171746
|
+
* @param {*} [options] Override http request option.
|
|
171747
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
171748
|
+
* @throws {RequiredError}
|
|
171749
|
+
*/
|
|
171750
|
+
async function EntitiesApiAxiosParamCreator_PatchEntityComputedAttributes(workspaceId, objectId, jsonApiComputedAttributePatchDocument, filter, include, options = {}, configuration) {
|
|
171751
|
+
assertParamExists$6("patchEntityComputedAttributes", "workspaceId", workspaceId);
|
|
171752
|
+
assertParamExists$6("patchEntityComputedAttributes", "objectId", objectId);
|
|
171753
|
+
assertParamExists$6("patchEntityComputedAttributes", "jsonApiComputedAttributePatchDocument", jsonApiComputedAttributePatchDocument);
|
|
171754
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/computedAttributes/{objectId}`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{objectId}`, encodeURIComponent(String(objectId)));
|
|
171755
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
171756
|
+
let baseOptions;
|
|
171757
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
171758
|
+
const localVarRequestOptions = {
|
|
171759
|
+
method: "PATCH",
|
|
171760
|
+
...baseOptions,
|
|
171761
|
+
...options
|
|
171762
|
+
};
|
|
171763
|
+
const localVarHeaderParameter = {};
|
|
171764
|
+
const localVarQueryParameter = {};
|
|
171765
|
+
if (filter !== void 0) localVarQueryParameter["filter"] = filter;
|
|
171766
|
+
if (include) localVarQueryParameter["include"] = include.join(COLLECTION_FORMATS$1.csv);
|
|
171767
|
+
const consumes = ["application/vnd.gooddata.api+json", "application/json"];
|
|
171768
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
171769
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter);
|
|
171770
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
171771
|
+
localVarRequestOptions.headers = {
|
|
171772
|
+
...localVarHeaderParameter,
|
|
171773
|
+
...headersFromBaseOptions,
|
|
171774
|
+
...options.headers
|
|
171775
|
+
};
|
|
171776
|
+
localVarRequestOptions.data = typeof jsonApiComputedAttributePatchDocument !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(jsonApiComputedAttributePatchDocument !== void 0 ? jsonApiComputedAttributePatchDocument : {}) : jsonApiComputedAttributePatchDocument || "";
|
|
171777
|
+
return {
|
|
171778
|
+
url: toPathString$7(localVarUrlObj),
|
|
171779
|
+
options: localVarRequestOptions
|
|
171780
|
+
};
|
|
171781
|
+
}
|
|
171782
|
+
/**
|
|
171783
|
+
*
|
|
171572
171784
|
* @summary Patch CookieSecurityConfiguration
|
|
171573
171785
|
* @param {string} id
|
|
171574
171786
|
* @param {JsonApiCookieSecurityConfigurationPatchDocument} jsonApiCookieSecurityConfigurationPatchDocument
|
|
@@ -172332,7 +172544,7 @@ async function EntitiesApiAxiosParamCreator_PatchEntityMemoryItems(workspaceId,
|
|
|
172332
172544
|
* @param {string} objectId
|
|
172333
172545
|
* @param {JsonApiMetricPatchDocument} jsonApiMetricPatchDocument
|
|
172334
172546
|
* @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\').
|
|
172335
|
-
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
172547
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
172336
172548
|
* @param {*} [options] Override http request option.
|
|
172337
172549
|
* @param {Configuration} [configuration] Optional configuration.
|
|
172338
172550
|
* @throws {RequiredError}
|
|
@@ -172624,7 +172836,7 @@ async function EntitiesApiAxiosParamCreator_PatchEntityThemes(id, jsonApiThemePa
|
|
|
172624
172836
|
* @param {string} objectId
|
|
172625
172837
|
* @param {JsonApiUserDataFilterPatchDocument} jsonApiUserDataFilterPatchDocument
|
|
172626
172838
|
* @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\').
|
|
172627
|
-
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
172839
|
+
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
172628
172840
|
* @param {*} [options] Override http request option.
|
|
172629
172841
|
* @param {Configuration} [configuration] Optional configuration.
|
|
172630
172842
|
* @throws {RequiredError}
|
|
@@ -173350,6 +173562,48 @@ async function EntitiesApiAxiosParamCreator_SearchEntitiesAutomations(workspaceI
|
|
|
173350
173562
|
* @param {Configuration} [configuration] Optional configuration.
|
|
173351
173563
|
* @throws {RequiredError}
|
|
173352
173564
|
*/
|
|
173565
|
+
async function EntitiesApiAxiosParamCreator_SearchEntitiesComputedAttributes(workspaceId, entitySearchBody, origin, xGDCVALIDATERELATIONS, options = {}, configuration) {
|
|
173566
|
+
assertParamExists$6("searchEntitiesComputedAttributes", "workspaceId", workspaceId);
|
|
173567
|
+
assertParamExists$6("searchEntitiesComputedAttributes", "entitySearchBody", entitySearchBody);
|
|
173568
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/computedAttributes/search`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
173569
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
173570
|
+
let baseOptions;
|
|
173571
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
173572
|
+
const localVarRequestOptions = {
|
|
173573
|
+
method: "POST",
|
|
173574
|
+
...baseOptions,
|
|
173575
|
+
...options
|
|
173576
|
+
};
|
|
173577
|
+
const localVarHeaderParameter = {};
|
|
173578
|
+
const localVarQueryParameter = {};
|
|
173579
|
+
if (origin !== void 0) localVarQueryParameter["origin"] = origin;
|
|
173580
|
+
if (xGDCVALIDATERELATIONS !== void 0 && xGDCVALIDATERELATIONS !== null) localVarHeaderParameter["X-GDC-VALIDATE-RELATIONS"] = String(JSON.stringify(xGDCVALIDATERELATIONS));
|
|
173581
|
+
const consumes = ["application/json"];
|
|
173582
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
173583
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter);
|
|
173584
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
173585
|
+
localVarRequestOptions.headers = {
|
|
173586
|
+
...localVarHeaderParameter,
|
|
173587
|
+
...headersFromBaseOptions,
|
|
173588
|
+
...options.headers
|
|
173589
|
+
};
|
|
173590
|
+
localVarRequestOptions.data = typeof entitySearchBody !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(entitySearchBody !== void 0 ? entitySearchBody : {}) : entitySearchBody || "";
|
|
173591
|
+
return {
|
|
173592
|
+
url: toPathString$7(localVarUrlObj),
|
|
173593
|
+
options: localVarRequestOptions
|
|
173594
|
+
};
|
|
173595
|
+
}
|
|
173596
|
+
/**
|
|
173597
|
+
*
|
|
173598
|
+
* @summary The search endpoint (beta)
|
|
173599
|
+
* @param {string} workspaceId
|
|
173600
|
+
* @param {EntitySearchBody} entitySearchBody Search request body with filter, pagination, and sorting options
|
|
173601
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
173602
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
173603
|
+
* @param {*} [options] Override http request option.
|
|
173604
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
173605
|
+
* @throws {RequiredError}
|
|
173606
|
+
*/
|
|
173353
173607
|
async function EntitiesApiAxiosParamCreator_SearchEntitiesCustomApplicationSettings(workspaceId, entitySearchBody, origin, xGDCVALIDATERELATIONS, options = {}, configuration) {
|
|
173354
173608
|
assertParamExists$6("searchEntitiesCustomApplicationSettings", "workspaceId", workspaceId);
|
|
173355
173609
|
assertParamExists$6("searchEntitiesCustomApplicationSettings", "entitySearchBody", entitySearchBody);
|
|
@@ -174301,6 +174555,50 @@ async function EntitiesApiAxiosParamCreator_UpdateEntityColorPalettes(id, jsonAp
|
|
|
174301
174555
|
}
|
|
174302
174556
|
/**
|
|
174303
174557
|
*
|
|
174558
|
+
* @summary Put a Computed Attribute
|
|
174559
|
+
* @param {string} workspaceId
|
|
174560
|
+
* @param {string} objectId
|
|
174561
|
+
* @param {JsonApiComputedAttributeInDocument} jsonApiComputedAttributeInDocument
|
|
174562
|
+
* @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\').
|
|
174563
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
174564
|
+
* @param {*} [options] Override http request option.
|
|
174565
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
174566
|
+
* @throws {RequiredError}
|
|
174567
|
+
*/
|
|
174568
|
+
async function EntitiesApiAxiosParamCreator_UpdateEntityComputedAttributes(workspaceId, objectId, jsonApiComputedAttributeInDocument, filter, include, options = {}, configuration) {
|
|
174569
|
+
assertParamExists$6("updateEntityComputedAttributes", "workspaceId", workspaceId);
|
|
174570
|
+
assertParamExists$6("updateEntityComputedAttributes", "objectId", objectId);
|
|
174571
|
+
assertParamExists$6("updateEntityComputedAttributes", "jsonApiComputedAttributeInDocument", jsonApiComputedAttributeInDocument);
|
|
174572
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/computedAttributes/{objectId}`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{objectId}`, encodeURIComponent(String(objectId)));
|
|
174573
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
174574
|
+
let baseOptions;
|
|
174575
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
174576
|
+
const localVarRequestOptions = {
|
|
174577
|
+
method: "PUT",
|
|
174578
|
+
...baseOptions,
|
|
174579
|
+
...options
|
|
174580
|
+
};
|
|
174581
|
+
const localVarHeaderParameter = {};
|
|
174582
|
+
const localVarQueryParameter = {};
|
|
174583
|
+
if (filter !== void 0) localVarQueryParameter["filter"] = filter;
|
|
174584
|
+
if (include) localVarQueryParameter["include"] = include.join(COLLECTION_FORMATS$1.csv);
|
|
174585
|
+
const consumes = ["application/vnd.gooddata.api+json", "application/json"];
|
|
174586
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
174587
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter);
|
|
174588
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
174589
|
+
localVarRequestOptions.headers = {
|
|
174590
|
+
...localVarHeaderParameter,
|
|
174591
|
+
...headersFromBaseOptions,
|
|
174592
|
+
...options.headers
|
|
174593
|
+
};
|
|
174594
|
+
localVarRequestOptions.data = typeof jsonApiComputedAttributeInDocument !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(jsonApiComputedAttributeInDocument !== void 0 ? jsonApiComputedAttributeInDocument : {}) : jsonApiComputedAttributeInDocument || "";
|
|
174595
|
+
return {
|
|
174596
|
+
url: toPathString$7(localVarUrlObj),
|
|
174597
|
+
options: localVarRequestOptions
|
|
174598
|
+
};
|
|
174599
|
+
}
|
|
174600
|
+
/**
|
|
174601
|
+
*
|
|
174304
174602
|
* @summary Put CookieSecurityConfiguration
|
|
174305
174603
|
* @param {string} id
|
|
174306
174604
|
* @param {JsonApiCookieSecurityConfigurationInDocument} jsonApiCookieSecurityConfigurationInDocument
|
|
@@ -175016,7 +175314,7 @@ async function EntitiesApiAxiosParamCreator_UpdateEntityMemoryItems(workspaceId,
|
|
|
175016
175314
|
* @param {string} objectId
|
|
175017
175315
|
* @param {JsonApiMetricInDocument} jsonApiMetricInDocument
|
|
175018
175316
|
* @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\').
|
|
175019
|
-
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
175317
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
175020
175318
|
* @param {*} [options] Override http request option.
|
|
175021
175319
|
* @param {Configuration} [configuration] Optional configuration.
|
|
175022
175320
|
* @throws {RequiredError}
|
|
@@ -175308,7 +175606,7 @@ async function EntitiesApiAxiosParamCreator_UpdateEntityThemes(id, jsonApiThemeI
|
|
|
175308
175606
|
* @param {string} objectId
|
|
175309
175607
|
* @param {JsonApiUserDataFilterInDocument} jsonApiUserDataFilterInDocument
|
|
175310
175608
|
* @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\').
|
|
175311
|
-
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
175609
|
+
* @param {Array<'users' | 'userGroups' | 'facts' | 'attributes' | 'labels' | 'computedAttributes' | 'metrics' | 'datasets' | 'parameters' | 'user' | 'userGroup' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
175312
175610
|
* @param {*} [options] Override http request option.
|
|
175313
175611
|
* @param {Configuration} [configuration] Optional configuration.
|
|
175314
175612
|
* @throws {RequiredError}
|
|
@@ -175904,6 +176202,19 @@ async function EntitiesApi_CreateEntityColorPalettes(axios, basePath, requestPar
|
|
|
175904
176202
|
return createRequestFunction$7(await EntitiesApiAxiosParamCreator_CreateEntityColorPalettes(requestParameters.jsonApiColorPaletteInDocument, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
175905
176203
|
}
|
|
175906
176204
|
/**
|
|
176205
|
+
*
|
|
176206
|
+
* @summary Post Computed Attributes
|
|
176207
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
176208
|
+
* @param {string} basePath Base path.
|
|
176209
|
+
* @param {EntitiesApiCreateEntityComputedAttributesRequest} requestParameters Request parameters.
|
|
176210
|
+
* @param {*} [options] Override http request option.
|
|
176211
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
176212
|
+
* @throws {RequiredError}
|
|
176213
|
+
*/
|
|
176214
|
+
async function EntitiesApi_CreateEntityComputedAttributes(axios, basePath, requestParameters, options, configuration) {
|
|
176215
|
+
return createRequestFunction$7(await EntitiesApiAxiosParamCreator_CreateEntityComputedAttributes(requestParameters.workspaceId, requestParameters.jsonApiComputedAttributePostOptionalIdDocument, requestParameters.include, requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
176216
|
+
}
|
|
176217
|
+
/**
|
|
175907
176218
|
* Context Security Police Directive
|
|
175908
176219
|
* @summary Post CSP Directives
|
|
175909
176220
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -176437,6 +176748,19 @@ async function EntitiesApi_DeleteEntityColorPalettes(axios, basePath, requestPar
|
|
|
176437
176748
|
return createRequestFunction$7(await EntitiesApiAxiosParamCreator_DeleteEntityColorPalettes(requestParameters.id, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
176438
176749
|
}
|
|
176439
176750
|
/**
|
|
176751
|
+
*
|
|
176752
|
+
* @summary Delete a Computed Attribute
|
|
176753
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
176754
|
+
* @param {string} basePath Base path.
|
|
176755
|
+
* @param {EntitiesApiDeleteEntityComputedAttributesRequest} requestParameters Request parameters.
|
|
176756
|
+
* @param {*} [options] Override http request option.
|
|
176757
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
176758
|
+
* @throws {RequiredError}
|
|
176759
|
+
*/
|
|
176760
|
+
async function EntitiesApi_DeleteEntityComputedAttributes(axios, basePath, requestParameters, options, configuration) {
|
|
176761
|
+
return createRequestFunction$7(await EntitiesApiAxiosParamCreator_DeleteEntityComputedAttributes(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
176762
|
+
}
|
|
176763
|
+
/**
|
|
176440
176764
|
* Context Security Police Directive
|
|
176441
176765
|
* @summary Delete CSP Directives
|
|
176442
176766
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -177008,6 +177332,19 @@ async function EntitiesApi_GetAllEntitiesColorPalettes(axios, basePath, requestP
|
|
|
177008
177332
|
return createRequestFunction$7(await EntitiesApiAxiosParamCreator_GetAllEntitiesColorPalettes(requestParameters.filter, requestParameters.page, requestParameters.size, requestParameters.sort, requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
177009
177333
|
}
|
|
177010
177334
|
/**
|
|
177335
|
+
*
|
|
177336
|
+
* @summary Get all Computed Attributes
|
|
177337
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
177338
|
+
* @param {string} basePath Base path.
|
|
177339
|
+
* @param {EntitiesApiGetAllEntitiesComputedAttributesRequest} requestParameters Request parameters.
|
|
177340
|
+
* @param {*} [options] Override http request option.
|
|
177341
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
177342
|
+
* @throws {RequiredError}
|
|
177343
|
+
*/
|
|
177344
|
+
async function EntitiesApi_GetAllEntitiesComputedAttributes(axios, basePath, requestParameters, options, configuration) {
|
|
177345
|
+
return createRequestFunction$7(await EntitiesApiAxiosParamCreator_GetAllEntitiesComputedAttributes(requestParameters.workspaceId, requestParameters.origin, requestParameters.filter, requestParameters.include, requestParameters.page, requestParameters.size, requestParameters.sort, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
177346
|
+
}
|
|
177347
|
+
/**
|
|
177011
177348
|
* Context Security Police Directive
|
|
177012
177349
|
* @summary Get CSP Directives
|
|
177013
177350
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -177696,6 +178033,19 @@ async function EntitiesApi_GetEntityColorPalettes(axios, basePath, requestParame
|
|
|
177696
178033
|
}
|
|
177697
178034
|
/**
|
|
177698
178035
|
*
|
|
178036
|
+
* @summary Get a Computed Attribute
|
|
178037
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
178038
|
+
* @param {string} basePath Base path.
|
|
178039
|
+
* @param {EntitiesApiGetEntityComputedAttributesRequest} requestParameters Request parameters.
|
|
178040
|
+
* @param {*} [options] Override http request option.
|
|
178041
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
178042
|
+
* @throws {RequiredError}
|
|
178043
|
+
*/
|
|
178044
|
+
async function EntitiesApi_GetEntityComputedAttributes(axios, basePath, requestParameters, options, configuration) {
|
|
178045
|
+
return createRequestFunction$7(await EntitiesApiAxiosParamCreator_GetEntityComputedAttributes(requestParameters.workspaceId, requestParameters.objectId, requestParameters.filter, requestParameters.include, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
178046
|
+
}
|
|
178047
|
+
/**
|
|
178048
|
+
*
|
|
177699
178049
|
* @summary Get CookieSecurityConfiguration
|
|
177700
178050
|
* @param {AxiosInstance} axios Axios instance.
|
|
177701
178051
|
* @param {string} basePath Base path.
|
|
@@ -178372,6 +178722,19 @@ async function EntitiesApi_PatchEntityColorPalettes(axios, basePath, requestPara
|
|
|
178372
178722
|
}
|
|
178373
178723
|
/**
|
|
178374
178724
|
*
|
|
178725
|
+
* @summary Patch a Computed Attribute
|
|
178726
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
178727
|
+
* @param {string} basePath Base path.
|
|
178728
|
+
* @param {EntitiesApiPatchEntityComputedAttributesRequest} requestParameters Request parameters.
|
|
178729
|
+
* @param {*} [options] Override http request option.
|
|
178730
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
178731
|
+
* @throws {RequiredError}
|
|
178732
|
+
*/
|
|
178733
|
+
async function EntitiesApi_PatchEntityComputedAttributes(axios, basePath, requestParameters, options, configuration) {
|
|
178734
|
+
return createRequestFunction$7(await EntitiesApiAxiosParamCreator_PatchEntityComputedAttributes(requestParameters.workspaceId, requestParameters.objectId, requestParameters.jsonApiComputedAttributePatchDocument, requestParameters.filter, requestParameters.include, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
178735
|
+
}
|
|
178736
|
+
/**
|
|
178737
|
+
*
|
|
178375
178738
|
* @summary Patch CookieSecurityConfiguration
|
|
178376
178739
|
* @param {AxiosInstance} axios Axios instance.
|
|
178377
178740
|
* @param {string} basePath Base path.
|
|
@@ -178921,6 +179284,19 @@ async function EntitiesApi_SearchEntitiesAutomations(axios, basePath, requestPar
|
|
|
178921
179284
|
* @summary The search endpoint (beta)
|
|
178922
179285
|
* @param {AxiosInstance} axios Axios instance.
|
|
178923
179286
|
* @param {string} basePath Base path.
|
|
179287
|
+
* @param {EntitiesApiSearchEntitiesComputedAttributesRequest} requestParameters Request parameters.
|
|
179288
|
+
* @param {*} [options] Override http request option.
|
|
179289
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
179290
|
+
* @throws {RequiredError}
|
|
179291
|
+
*/
|
|
179292
|
+
async function EntitiesApi_SearchEntitiesComputedAttributes(axios, basePath, requestParameters, options, configuration) {
|
|
179293
|
+
return createRequestFunction$7(await EntitiesApiAxiosParamCreator_SearchEntitiesComputedAttributes(requestParameters.workspaceId, requestParameters.entitySearchBody, requestParameters.origin, requestParameters.xGDCVALIDATERELATIONS, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
179294
|
+
}
|
|
179295
|
+
/**
|
|
179296
|
+
*
|
|
179297
|
+
* @summary The search endpoint (beta)
|
|
179298
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
179299
|
+
* @param {string} basePath Base path.
|
|
178924
179300
|
* @param {EntitiesApiSearchEntitiesCustomApplicationSettingsRequest} requestParameters Request parameters.
|
|
178925
179301
|
* @param {*} [options] Override http request option.
|
|
178926
179302
|
* @param {Configuration} [configuration] Optional configuration.
|
|
@@ -179217,6 +179593,19 @@ async function EntitiesApi_UpdateEntityColorPalettes(axios, basePath, requestPar
|
|
|
179217
179593
|
}
|
|
179218
179594
|
/**
|
|
179219
179595
|
*
|
|
179596
|
+
* @summary Put a Computed Attribute
|
|
179597
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
179598
|
+
* @param {string} basePath Base path.
|
|
179599
|
+
* @param {EntitiesApiUpdateEntityComputedAttributesRequest} requestParameters Request parameters.
|
|
179600
|
+
* @param {*} [options] Override http request option.
|
|
179601
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
179602
|
+
* @throws {RequiredError}
|
|
179603
|
+
*/
|
|
179604
|
+
async function EntitiesApi_UpdateEntityComputedAttributes(axios, basePath, requestParameters, options, configuration) {
|
|
179605
|
+
return createRequestFunction$7(await EntitiesApiAxiosParamCreator_UpdateEntityComputedAttributes(requestParameters.workspaceId, requestParameters.objectId, requestParameters.jsonApiComputedAttributeInDocument, requestParameters.filter, requestParameters.include, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
179606
|
+
}
|
|
179607
|
+
/**
|
|
179608
|
+
*
|
|
179220
179609
|
* @summary Put CookieSecurityConfiguration
|
|
179221
179610
|
* @param {AxiosInstance} axios Axios instance.
|
|
179222
179611
|
* @param {string} basePath Base path.
|
|
@@ -179768,6 +180157,17 @@ var EntitiesApi = class extends BaseAPI$7 {
|
|
|
179768
180157
|
return EntitiesApi_CreateEntityColorPalettes(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
179769
180158
|
}
|
|
179770
180159
|
/**
|
|
180160
|
+
*
|
|
180161
|
+
* @summary Post Computed Attributes
|
|
180162
|
+
* @param {EntitiesApiCreateEntityComputedAttributesRequest} requestParameters Request parameters.
|
|
180163
|
+
* @param {*} [options] Override http request option.
|
|
180164
|
+
* @throws {RequiredError}
|
|
180165
|
+
* @memberof EntitiesApi
|
|
180166
|
+
*/
|
|
180167
|
+
createEntityComputedAttributes(requestParameters, options) {
|
|
180168
|
+
return EntitiesApi_CreateEntityComputedAttributes(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
180169
|
+
}
|
|
180170
|
+
/**
|
|
179771
180171
|
* Context Security Police Directive
|
|
179772
180172
|
* @summary Post CSP Directives
|
|
179773
180173
|
* @param {EntitiesApiCreateEntityCspDirectivesRequest} requestParameters Request parameters.
|
|
@@ -180220,6 +180620,17 @@ var EntitiesApi = class extends BaseAPI$7 {
|
|
|
180220
180620
|
return EntitiesApi_DeleteEntityColorPalettes(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
180221
180621
|
}
|
|
180222
180622
|
/**
|
|
180623
|
+
*
|
|
180624
|
+
* @summary Delete a Computed Attribute
|
|
180625
|
+
* @param {EntitiesApiDeleteEntityComputedAttributesRequest} requestParameters Request parameters.
|
|
180626
|
+
* @param {*} [options] Override http request option.
|
|
180627
|
+
* @throws {RequiredError}
|
|
180628
|
+
* @memberof EntitiesApi
|
|
180629
|
+
*/
|
|
180630
|
+
deleteEntityComputedAttributes(requestParameters, options) {
|
|
180631
|
+
return EntitiesApi_DeleteEntityComputedAttributes(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
180632
|
+
}
|
|
180633
|
+
/**
|
|
180223
180634
|
* Context Security Police Directive
|
|
180224
180635
|
* @summary Delete CSP Directives
|
|
180225
180636
|
* @param {EntitiesApiDeleteEntityCspDirectivesRequest} requestParameters Request parameters.
|
|
@@ -180704,6 +181115,17 @@ var EntitiesApi = class extends BaseAPI$7 {
|
|
|
180704
181115
|
return EntitiesApi_GetAllEntitiesColorPalettes(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
180705
181116
|
}
|
|
180706
181117
|
/**
|
|
181118
|
+
*
|
|
181119
|
+
* @summary Get all Computed Attributes
|
|
181120
|
+
* @param {EntitiesApiGetAllEntitiesComputedAttributesRequest} requestParameters Request parameters.
|
|
181121
|
+
* @param {*} [options] Override http request option.
|
|
181122
|
+
* @throws {RequiredError}
|
|
181123
|
+
* @memberof EntitiesApi
|
|
181124
|
+
*/
|
|
181125
|
+
getAllEntitiesComputedAttributes(requestParameters, options) {
|
|
181126
|
+
return EntitiesApi_GetAllEntitiesComputedAttributes(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
181127
|
+
}
|
|
181128
|
+
/**
|
|
180707
181129
|
* Context Security Police Directive
|
|
180708
181130
|
* @summary Get CSP Directives
|
|
180709
181131
|
* @param {EntitiesApiGetAllEntitiesCspDirectivesRequest} requestParameters Request parameters.
|
|
@@ -181287,6 +181709,17 @@ var EntitiesApi = class extends BaseAPI$7 {
|
|
|
181287
181709
|
}
|
|
181288
181710
|
/**
|
|
181289
181711
|
*
|
|
181712
|
+
* @summary Get a Computed Attribute
|
|
181713
|
+
* @param {EntitiesApiGetEntityComputedAttributesRequest} requestParameters Request parameters.
|
|
181714
|
+
* @param {*} [options] Override http request option.
|
|
181715
|
+
* @throws {RequiredError}
|
|
181716
|
+
* @memberof EntitiesApi
|
|
181717
|
+
*/
|
|
181718
|
+
getEntityComputedAttributes(requestParameters, options) {
|
|
181719
|
+
return EntitiesApi_GetEntityComputedAttributes(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
181720
|
+
}
|
|
181721
|
+
/**
|
|
181722
|
+
*
|
|
181290
181723
|
* @summary Get CookieSecurityConfiguration
|
|
181291
181724
|
* @param {EntitiesApiGetEntityCookieSecurityConfigurationsRequest} requestParameters Request parameters.
|
|
181292
181725
|
* @param {*} [options] Override http request option.
|
|
@@ -181860,6 +182293,17 @@ var EntitiesApi = class extends BaseAPI$7 {
|
|
|
181860
182293
|
}
|
|
181861
182294
|
/**
|
|
181862
182295
|
*
|
|
182296
|
+
* @summary Patch a Computed Attribute
|
|
182297
|
+
* @param {EntitiesApiPatchEntityComputedAttributesRequest} requestParameters Request parameters.
|
|
182298
|
+
* @param {*} [options] Override http request option.
|
|
182299
|
+
* @throws {RequiredError}
|
|
182300
|
+
* @memberof EntitiesApi
|
|
182301
|
+
*/
|
|
182302
|
+
patchEntityComputedAttributes(requestParameters, options) {
|
|
182303
|
+
return EntitiesApi_PatchEntityComputedAttributes(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
182304
|
+
}
|
|
182305
|
+
/**
|
|
182306
|
+
*
|
|
181863
182307
|
* @summary Patch CookieSecurityConfiguration
|
|
181864
182308
|
* @param {EntitiesApiPatchEntityCookieSecurityConfigurationsRequest} requestParameters Request parameters.
|
|
181865
182309
|
* @param {*} [options] Override http request option.
|
|
@@ -182323,6 +182767,17 @@ var EntitiesApi = class extends BaseAPI$7 {
|
|
|
182323
182767
|
/**
|
|
182324
182768
|
*
|
|
182325
182769
|
* @summary The search endpoint (beta)
|
|
182770
|
+
* @param {EntitiesApiSearchEntitiesComputedAttributesRequest} requestParameters Request parameters.
|
|
182771
|
+
* @param {*} [options] Override http request option.
|
|
182772
|
+
* @throws {RequiredError}
|
|
182773
|
+
* @memberof EntitiesApi
|
|
182774
|
+
*/
|
|
182775
|
+
searchEntitiesComputedAttributes(requestParameters, options) {
|
|
182776
|
+
return EntitiesApi_SearchEntitiesComputedAttributes(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
182777
|
+
}
|
|
182778
|
+
/**
|
|
182779
|
+
*
|
|
182780
|
+
* @summary The search endpoint (beta)
|
|
182326
182781
|
* @param {EntitiesApiSearchEntitiesCustomApplicationSettingsRequest} requestParameters Request parameters.
|
|
182327
182782
|
* @param {*} [options] Override http request option.
|
|
182328
182783
|
* @throws {RequiredError}
|
|
@@ -182576,6 +183031,17 @@ var EntitiesApi = class extends BaseAPI$7 {
|
|
|
182576
183031
|
}
|
|
182577
183032
|
/**
|
|
182578
183033
|
*
|
|
183034
|
+
* @summary Put a Computed Attribute
|
|
183035
|
+
* @param {EntitiesApiUpdateEntityComputedAttributesRequest} requestParameters Request parameters.
|
|
183036
|
+
* @param {*} [options] Override http request option.
|
|
183037
|
+
* @throws {RequiredError}
|
|
183038
|
+
* @memberof EntitiesApi
|
|
183039
|
+
*/
|
|
183040
|
+
updateEntityComputedAttributes(requestParameters, options) {
|
|
183041
|
+
return EntitiesApi_UpdateEntityComputedAttributes(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
183042
|
+
}
|
|
183043
|
+
/**
|
|
183044
|
+
*
|
|
182579
183045
|
* @summary Put CookieSecurityConfiguration
|
|
182580
183046
|
* @param {EntitiesApiUpdateEntityCookieSecurityConfigurationsRequest} requestParameters Request parameters.
|
|
182581
183047
|
* @param {*} [options] Override http request option.
|
|
@@ -191396,13 +191862,13 @@ const createRequestFunction$2 = function(axiosArgs, globalAxios, BASE_PATH, conf
|
|
|
191396
191862
|
//#endregion
|
|
191397
191863
|
//#region ../../../sdk/libs/api-client-tiger/src/generated/ai-json-api/api.ts
|
|
191398
191864
|
/**
|
|
191399
|
-
* Returns AI usage stats for the
|
|
191400
|
-
* @summary (EXPERIMENTAL) AI observability overview
|
|
191865
|
+
* Returns AI usage stats for the user\'s organization for the current calendar month, alongside the previous month\'s value. Backed by the ai_usage_counters table populated by the metering pipeline.
|
|
191866
|
+
* @summary (EXPERIMENTAL) AI observability overview
|
|
191401
191867
|
* @param {*} [options] Override http request option.
|
|
191402
191868
|
* @param {Configuration} [configuration] Optional configuration.
|
|
191403
191869
|
* @throws {RequiredError}
|
|
191404
191870
|
*/
|
|
191405
|
-
async function
|
|
191871
|
+
async function ObservabilityAiAxiosParamCreator_GetObservabilityOverview(options = {}, configuration) {
|
|
191406
191872
|
const localVarUrlObj = new URL(`/api/v1/ai/organization/observability`, DUMMY_BASE_URL$2);
|
|
191407
191873
|
let baseOptions;
|
|
191408
191874
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -191425,40 +191891,40 @@ async function AIObservabilityAiAxiosParamCreator_GetObservabilityOverview(optio
|
|
|
191425
191891
|
};
|
|
191426
191892
|
}
|
|
191427
191893
|
/**
|
|
191428
|
-
* Returns AI usage stats for the
|
|
191429
|
-
* @summary (EXPERIMENTAL) AI observability overview
|
|
191894
|
+
* Returns AI usage stats for the user\'s organization for the current calendar month, alongside the previous month\'s value. Backed by the ai_usage_counters table populated by the metering pipeline.
|
|
191895
|
+
* @summary (EXPERIMENTAL) AI observability overview
|
|
191430
191896
|
* @param {AxiosInstance} axios Axios instance.
|
|
191431
191897
|
* @param {string} basePath Base path.
|
|
191432
191898
|
* @param {*} [options] Override http request option.
|
|
191433
191899
|
* @param {Configuration} [configuration] Optional configuration.
|
|
191434
191900
|
* @throws {RequiredError}
|
|
191435
191901
|
*/
|
|
191436
|
-
async function
|
|
191437
|
-
return createRequestFunction$2(await
|
|
191902
|
+
async function ObservabilityAi_GetObservabilityOverview(axios, basePath, options, configuration) {
|
|
191903
|
+
return createRequestFunction$2(await ObservabilityAiAxiosParamCreator_GetObservabilityOverview(options || {}, configuration), axios$1, BASE_PATH$2, configuration)(axios, basePath);
|
|
191438
191904
|
}
|
|
191439
191905
|
/**
|
|
191440
|
-
*
|
|
191906
|
+
* ObservabilityAi - object-oriented interface
|
|
191441
191907
|
* @export
|
|
191442
|
-
* @class
|
|
191908
|
+
* @class ObservabilityAi
|
|
191443
191909
|
* @extends {BaseAPI}
|
|
191444
191910
|
*/
|
|
191445
|
-
var
|
|
191911
|
+
var ObservabilityAi = class extends BaseAPI$2 {
|
|
191446
191912
|
/**
|
|
191447
|
-
* Returns AI usage stats for the
|
|
191448
|
-
* @summary (EXPERIMENTAL) AI observability overview
|
|
191913
|
+
* Returns AI usage stats for the user\'s organization for the current calendar month, alongside the previous month\'s value. Backed by the ai_usage_counters table populated by the metering pipeline.
|
|
191914
|
+
* @summary (EXPERIMENTAL) AI observability overview
|
|
191449
191915
|
* @param {*} [options] Override http request option.
|
|
191450
191916
|
* @throws {RequiredError}
|
|
191451
|
-
* @memberof
|
|
191917
|
+
* @memberof ObservabilityAi
|
|
191452
191918
|
*/
|
|
191453
191919
|
getObservabilityOverview(options) {
|
|
191454
|
-
return
|
|
191920
|
+
return ObservabilityAi_GetObservabilityOverview(this.axios, this.basePath, options, this.configuration);
|
|
191455
191921
|
}
|
|
191456
191922
|
};
|
|
191457
191923
|
//#endregion
|
|
191458
191924
|
//#region ../../../sdk/libs/api-client-tiger/src/genAI.ts
|
|
191459
191925
|
const tigerGenAIClientFactory = (axios) => {
|
|
191460
191926
|
const actionsApi = new ActionsApi$2(void 0, "", axios);
|
|
191461
|
-
const observabilityApi = new
|
|
191927
|
+
const observabilityApi = new ObservabilityAi(void 0, "", axios);
|
|
191462
191928
|
return {
|
|
191463
191929
|
aiSearch: actionsApi.aiSearch.bind(actionsApi),
|
|
191464
191930
|
aiChat: actionsApi.aiChat.bind(actionsApi),
|