@gooddata/api-client-tiger 11.6.0-alpha.3 → 11.6.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/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +1735 -457
- package/esm/genAI.d.ts.map +1 -1
- package/esm/genAI.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +27 -26
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +280 -279
- package/esm/generated/automation-json-api/api.d.ts +1 -0
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +1 -0
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +1 -0
- package/esm/generated/export-json-api/api.d.ts +1 -0
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js +1 -0
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +1 -0
- package/esm/generated/metadata-json-api/api.d.ts +1611 -385
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +1232 -133
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +8946 -8114
- package/esm/generated/scan-json-api/api.d.ts +8 -0
- package/esm/generated/scan-json-api/api.d.ts.map +1 -1
- package/esm/generated/scan-json-api/api.js.map +1 -1
- package/esm/generated/scan-json-api/openapi-spec.json +10 -0
- package/package.json +4 -4
|
@@ -521,6 +521,7 @@ export const DependentEntitiesNodeTypeEnum = {
|
|
|
521
521
|
METRIC: "metric",
|
|
522
522
|
USER_DATA_FILTER: "userDataFilter",
|
|
523
523
|
AUTOMATION: "automation",
|
|
524
|
+
MEMORY_ITEM: "memoryItem",
|
|
524
525
|
VISUALIZATION_OBJECT: "visualizationObject",
|
|
525
526
|
FILTER_CONTEXT: "filterContext",
|
|
526
527
|
FILTER_VIEW: "filterView",
|
|
@@ -618,6 +619,7 @@ export const IdentifierRefIdentifierTypeEnum = {
|
|
|
618
619
|
EXPORT_DEFINITION: "exportDefinition",
|
|
619
620
|
AUTOMATION: "automation",
|
|
620
621
|
AUTOMATION_RESULT: "automationResult",
|
|
622
|
+
MEMORY_ITEM: "memoryItem",
|
|
621
623
|
PROMPT: "prompt",
|
|
622
624
|
VISUALIZATION_OBJECT: "visualizationObject",
|
|
623
625
|
FILTER_CONTEXT: "filterContext",
|
|
@@ -746,6 +748,18 @@ export const JsonApiAttributeOutWithLinksTypeEnum = {
|
|
|
746
748
|
export const JsonApiAutomationInTypeEnum = {
|
|
747
749
|
AUTOMATION: "automation",
|
|
748
750
|
};
|
|
751
|
+
export const JsonApiAutomationInAttributesStateEnum = {
|
|
752
|
+
ACTIVE: "ACTIVE",
|
|
753
|
+
PAUSED: "PAUSED",
|
|
754
|
+
};
|
|
755
|
+
export const JsonApiAutomationInAttributesEvaluationModeEnum = {
|
|
756
|
+
SHARED: "SHARED",
|
|
757
|
+
PER_RECIPIENT: "PER_RECIPIENT",
|
|
758
|
+
};
|
|
759
|
+
export const JsonApiAutomationInAttributesAlertTriggerEnum = {
|
|
760
|
+
ALWAYS: "ALWAYS",
|
|
761
|
+
ONCE: "ONCE",
|
|
762
|
+
};
|
|
749
763
|
export const JsonApiAutomationLinkageTypeEnum = {
|
|
750
764
|
AUTOMATION: "automation",
|
|
751
765
|
};
|
|
@@ -766,18 +780,6 @@ export const JsonApiAutomationOutWithLinksTypeEnum = {
|
|
|
766
780
|
export const JsonApiAutomationPatchTypeEnum = {
|
|
767
781
|
AUTOMATION: "automation",
|
|
768
782
|
};
|
|
769
|
-
export const JsonApiAutomationPatchAttributesStateEnum = {
|
|
770
|
-
ACTIVE: "ACTIVE",
|
|
771
|
-
PAUSED: "PAUSED",
|
|
772
|
-
};
|
|
773
|
-
export const JsonApiAutomationPatchAttributesEvaluationModeEnum = {
|
|
774
|
-
SHARED: "SHARED",
|
|
775
|
-
PER_RECIPIENT: "PER_RECIPIENT",
|
|
776
|
-
};
|
|
777
|
-
export const JsonApiAutomationPatchAttributesAlertTriggerEnum = {
|
|
778
|
-
ALWAYS: "ALWAYS",
|
|
779
|
-
ONCE: "ONCE",
|
|
780
|
-
};
|
|
781
783
|
export const JsonApiAutomationResultLinkageTypeEnum = {
|
|
782
784
|
AUTOMATION_RESULT: "automationResult",
|
|
783
785
|
};
|
|
@@ -1238,6 +1240,33 @@ export const JsonApiLlmEndpointPatchAttributesProviderEnum = {
|
|
|
1238
1240
|
OPENAI: "OPENAI",
|
|
1239
1241
|
AZURE_OPENAI: "AZURE_OPENAI",
|
|
1240
1242
|
};
|
|
1243
|
+
export const JsonApiMemoryItemInTypeEnum = {
|
|
1244
|
+
MEMORY_ITEM: "memoryItem",
|
|
1245
|
+
};
|
|
1246
|
+
export const JsonApiMemoryItemOutTypeEnum = {
|
|
1247
|
+
MEMORY_ITEM: "memoryItem",
|
|
1248
|
+
};
|
|
1249
|
+
export const JsonApiMemoryItemOutAttributesStrategyEnum = {
|
|
1250
|
+
ALWAYS: "ALWAYS",
|
|
1251
|
+
AUTO: "AUTO",
|
|
1252
|
+
};
|
|
1253
|
+
export const JsonApiMemoryItemOutWithLinksTypeEnum = {
|
|
1254
|
+
MEMORY_ITEM: "memoryItem",
|
|
1255
|
+
};
|
|
1256
|
+
export const JsonApiMemoryItemPatchTypeEnum = {
|
|
1257
|
+
MEMORY_ITEM: "memoryItem",
|
|
1258
|
+
};
|
|
1259
|
+
export const JsonApiMemoryItemPatchAttributesStrategyEnum = {
|
|
1260
|
+
ALWAYS: "ALWAYS",
|
|
1261
|
+
AUTO: "AUTO",
|
|
1262
|
+
};
|
|
1263
|
+
export const JsonApiMemoryItemPostOptionalIdTypeEnum = {
|
|
1264
|
+
MEMORY_ITEM: "memoryItem",
|
|
1265
|
+
};
|
|
1266
|
+
export const JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum = {
|
|
1267
|
+
ALWAYS: "ALWAYS",
|
|
1268
|
+
AUTO: "AUTO",
|
|
1269
|
+
};
|
|
1241
1270
|
export const JsonApiMetricInTypeEnum = {
|
|
1242
1271
|
METRIC: "metric",
|
|
1243
1272
|
};
|
|
@@ -1276,6 +1305,20 @@ export const JsonApiNotificationChannelIdentifierOutWithLinksTypeEnum = {
|
|
|
1276
1305
|
export const JsonApiNotificationChannelInTypeEnum = {
|
|
1277
1306
|
NOTIFICATION_CHANNEL: "notificationChannel",
|
|
1278
1307
|
};
|
|
1308
|
+
export const JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum = {
|
|
1309
|
+
HIDDEN: "HIDDEN",
|
|
1310
|
+
INTERNAL_ONLY: "INTERNAL_ONLY",
|
|
1311
|
+
ALL: "ALL",
|
|
1312
|
+
};
|
|
1313
|
+
export const JsonApiNotificationChannelInAttributesAllowedRecipientsEnum = {
|
|
1314
|
+
CREATOR: "CREATOR",
|
|
1315
|
+
INTERNAL: "INTERNAL",
|
|
1316
|
+
EXTERNAL: "EXTERNAL",
|
|
1317
|
+
};
|
|
1318
|
+
export const JsonApiNotificationChannelInAttributesInPlatformNotificationEnum = {
|
|
1319
|
+
DISABLED: "DISABLED",
|
|
1320
|
+
ENABLED: "ENABLED",
|
|
1321
|
+
};
|
|
1279
1322
|
export const JsonApiNotificationChannelLinkageTypeEnum = {
|
|
1280
1323
|
NOTIFICATION_CHANNEL: "notificationChannel",
|
|
1281
1324
|
};
|
|
@@ -1311,20 +1354,6 @@ export const JsonApiNotificationChannelPatchTypeEnum = {
|
|
|
1311
1354
|
export const JsonApiNotificationChannelPostOptionalIdTypeEnum = {
|
|
1312
1355
|
NOTIFICATION_CHANNEL: "notificationChannel",
|
|
1313
1356
|
};
|
|
1314
|
-
export const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = {
|
|
1315
|
-
HIDDEN: "HIDDEN",
|
|
1316
|
-
INTERNAL_ONLY: "INTERNAL_ONLY",
|
|
1317
|
-
ALL: "ALL",
|
|
1318
|
-
};
|
|
1319
|
-
export const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = {
|
|
1320
|
-
CREATOR: "CREATOR",
|
|
1321
|
-
INTERNAL: "INTERNAL",
|
|
1322
|
-
EXTERNAL: "EXTERNAL",
|
|
1323
|
-
};
|
|
1324
|
-
export const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = {
|
|
1325
|
-
DISABLED: "DISABLED",
|
|
1326
|
-
ENABLED: "ENABLED",
|
|
1327
|
-
};
|
|
1328
1357
|
export const JsonApiOrganizationInTypeEnum = {
|
|
1329
1358
|
ORGANIZATION: "organization",
|
|
1330
1359
|
};
|
|
@@ -15179,6 +15208,56 @@ export const EntitiesApiAxiosParamCreator = function (configuration) {
|
|
|
15179
15208
|
options: localVarRequestOptions,
|
|
15180
15209
|
};
|
|
15181
15210
|
},
|
|
15211
|
+
/**
|
|
15212
|
+
*
|
|
15213
|
+
* @param {string} workspaceId
|
|
15214
|
+
* @param {JsonApiMemoryItemPostOptionalIdDocument} jsonApiMemoryItemPostOptionalIdDocument
|
|
15215
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | '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.
|
|
15216
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
15217
|
+
* @param {*} [options] Override http request option.
|
|
15218
|
+
* @throws {RequiredError}
|
|
15219
|
+
*/
|
|
15220
|
+
createEntityMemoryItems: async (workspaceId, jsonApiMemoryItemPostOptionalIdDocument, include, metaInclude, options = {}) => {
|
|
15221
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
15222
|
+
assertParamExists("createEntityMemoryItems", "workspaceId", workspaceId);
|
|
15223
|
+
// verify required parameter 'jsonApiMemoryItemPostOptionalIdDocument' is not null or undefined
|
|
15224
|
+
assertParamExists("createEntityMemoryItems", "jsonApiMemoryItemPostOptionalIdDocument", jsonApiMemoryItemPostOptionalIdDocument);
|
|
15225
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/memoryItems`.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
15226
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
15227
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
15228
|
+
let baseOptions;
|
|
15229
|
+
if (configuration) {
|
|
15230
|
+
baseOptions = configuration.baseOptions;
|
|
15231
|
+
}
|
|
15232
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
15233
|
+
const localVarHeaderParameter = {};
|
|
15234
|
+
const localVarQueryParameter = {};
|
|
15235
|
+
if (include) {
|
|
15236
|
+
localVarQueryParameter["include"] = include.join(COLLECTION_FORMATS.csv);
|
|
15237
|
+
}
|
|
15238
|
+
if (metaInclude) {
|
|
15239
|
+
localVarQueryParameter["metaInclude"] = Array.from(metaInclude).join(COLLECTION_FORMATS.csv);
|
|
15240
|
+
}
|
|
15241
|
+
localVarHeaderParameter["Content-Type"] = "application/vnd.gooddata.api+json";
|
|
15242
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
15243
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
15244
|
+
localVarRequestOptions.headers = {
|
|
15245
|
+
...localVarHeaderParameter,
|
|
15246
|
+
...headersFromBaseOptions,
|
|
15247
|
+
...options.headers,
|
|
15248
|
+
};
|
|
15249
|
+
const needsSerialization = typeof jsonApiMemoryItemPostOptionalIdDocument !== "string" ||
|
|
15250
|
+
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
15251
|
+
localVarRequestOptions.data = needsSerialization
|
|
15252
|
+
? JSON.stringify(jsonApiMemoryItemPostOptionalIdDocument !== undefined
|
|
15253
|
+
? jsonApiMemoryItemPostOptionalIdDocument
|
|
15254
|
+
: {})
|
|
15255
|
+
: jsonApiMemoryItemPostOptionalIdDocument || "";
|
|
15256
|
+
return {
|
|
15257
|
+
url: toPathString(localVarUrlObj),
|
|
15258
|
+
options: localVarRequestOptions,
|
|
15259
|
+
};
|
|
15260
|
+
},
|
|
15182
15261
|
/**
|
|
15183
15262
|
*
|
|
15184
15263
|
* @summary Post Metrics
|
|
@@ -16390,6 +16469,46 @@ export const EntitiesApiAxiosParamCreator = function (configuration) {
|
|
|
16390
16469
|
options: localVarRequestOptions,
|
|
16391
16470
|
};
|
|
16392
16471
|
},
|
|
16472
|
+
/**
|
|
16473
|
+
*
|
|
16474
|
+
* @param {string} workspaceId
|
|
16475
|
+
* @param {string} objectId
|
|
16476
|
+
* @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\').
|
|
16477
|
+
* @param {*} [options] Override http request option.
|
|
16478
|
+
* @throws {RequiredError}
|
|
16479
|
+
*/
|
|
16480
|
+
deleteEntityMemoryItems: async (workspaceId, objectId, filter, options = {}) => {
|
|
16481
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
16482
|
+
assertParamExists("deleteEntityMemoryItems", "workspaceId", workspaceId);
|
|
16483
|
+
// verify required parameter 'objectId' is not null or undefined
|
|
16484
|
+
assertParamExists("deleteEntityMemoryItems", "objectId", objectId);
|
|
16485
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId}`
|
|
16486
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
16487
|
+
.replace(`{${"objectId"}}`, encodeURIComponent(String(objectId)));
|
|
16488
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
16489
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16490
|
+
let baseOptions;
|
|
16491
|
+
if (configuration) {
|
|
16492
|
+
baseOptions = configuration.baseOptions;
|
|
16493
|
+
}
|
|
16494
|
+
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
16495
|
+
const localVarHeaderParameter = {};
|
|
16496
|
+
const localVarQueryParameter = {};
|
|
16497
|
+
if (filter !== undefined) {
|
|
16498
|
+
localVarQueryParameter["filter"] = filter;
|
|
16499
|
+
}
|
|
16500
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
16501
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
16502
|
+
localVarRequestOptions.headers = {
|
|
16503
|
+
...localVarHeaderParameter,
|
|
16504
|
+
...headersFromBaseOptions,
|
|
16505
|
+
...options.headers,
|
|
16506
|
+
};
|
|
16507
|
+
return {
|
|
16508
|
+
url: toPathString(localVarUrlObj),
|
|
16509
|
+
options: localVarRequestOptions,
|
|
16510
|
+
};
|
|
16511
|
+
},
|
|
16393
16512
|
/**
|
|
16394
16513
|
*
|
|
16395
16514
|
* @summary Delete a Metric
|
|
@@ -18268,11 +18387,10 @@ export const EntitiesApiAxiosParamCreator = function (configuration) {
|
|
|
18268
18387
|
},
|
|
18269
18388
|
/**
|
|
18270
18389
|
*
|
|
18271
|
-
* @summary Get all Metrics
|
|
18272
18390
|
* @param {string} workspaceId
|
|
18273
18391
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
18274
18392
|
* @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\').
|
|
18275
|
-
* @param {Array<'userIdentifiers' | '
|
|
18393
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | '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.
|
|
18276
18394
|
* @param {number} [page] Zero-based page index (0..N)
|
|
18277
18395
|
* @param {number} [size] The size of the page to be returned
|
|
18278
18396
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -18281,10 +18399,10 @@ export const EntitiesApiAxiosParamCreator = function (configuration) {
|
|
|
18281
18399
|
* @param {*} [options] Override http request option.
|
|
18282
18400
|
* @throws {RequiredError}
|
|
18283
18401
|
*/
|
|
18284
|
-
|
|
18402
|
+
getAllEntitiesMemoryItems: async (workspaceId, origin, filter, include, page, size, sort, xGDCVALIDATERELATIONS, metaInclude, options = {}) => {
|
|
18285
18403
|
// verify required parameter 'workspaceId' is not null or undefined
|
|
18286
|
-
assertParamExists("
|
|
18287
|
-
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/
|
|
18404
|
+
assertParamExists("getAllEntitiesMemoryItems", "workspaceId", workspaceId);
|
|
18405
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/memoryItems`.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
18288
18406
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
18289
18407
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
18290
18408
|
let baseOptions;
|
|
@@ -18332,16 +18450,23 @@ export const EntitiesApiAxiosParamCreator = function (configuration) {
|
|
|
18332
18450
|
},
|
|
18333
18451
|
/**
|
|
18334
18452
|
*
|
|
18453
|
+
* @summary Get all Metrics
|
|
18454
|
+
* @param {string} workspaceId
|
|
18455
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
18335
18456
|
* @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\').
|
|
18457
|
+
* @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | '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.
|
|
18336
18458
|
* @param {number} [page] Zero-based page index (0..N)
|
|
18337
18459
|
* @param {number} [size] The size of the page to be returned
|
|
18338
18460
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
18339
|
-
* @param {
|
|
18461
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
18462
|
+
* @param {Array<'origin' | 'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
18340
18463
|
* @param {*} [options] Override http request option.
|
|
18341
18464
|
* @throws {RequiredError}
|
|
18342
18465
|
*/
|
|
18343
|
-
|
|
18344
|
-
|
|
18466
|
+
getAllEntitiesMetrics: async (workspaceId, origin, filter, include, page, size, sort, xGDCVALIDATERELATIONS, metaInclude, options = {}) => {
|
|
18467
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
18468
|
+
assertParamExists("getAllEntitiesMetrics", "workspaceId", workspaceId);
|
|
18469
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/metrics`.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
18345
18470
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
18346
18471
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
18347
18472
|
let baseOptions;
|
|
@@ -18351,106 +18476,14 @@ export const EntitiesApiAxiosParamCreator = function (configuration) {
|
|
|
18351
18476
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
18352
18477
|
const localVarHeaderParameter = {};
|
|
18353
18478
|
const localVarQueryParameter = {};
|
|
18354
|
-
if (
|
|
18355
|
-
localVarQueryParameter["
|
|
18356
|
-
}
|
|
18357
|
-
if (page !== undefined) {
|
|
18358
|
-
localVarQueryParameter["page"] = page;
|
|
18359
|
-
}
|
|
18360
|
-
if (size !== undefined) {
|
|
18361
|
-
localVarQueryParameter["size"] = size;
|
|
18362
|
-
}
|
|
18363
|
-
if (sort) {
|
|
18364
|
-
localVarQueryParameter["sort"] = sort;
|
|
18365
|
-
}
|
|
18366
|
-
if (metaInclude) {
|
|
18367
|
-
localVarQueryParameter["metaInclude"] = Array.from(metaInclude).join(COLLECTION_FORMATS.csv);
|
|
18368
|
-
}
|
|
18369
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
18370
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
18371
|
-
localVarRequestOptions.headers = {
|
|
18372
|
-
...localVarHeaderParameter,
|
|
18373
|
-
...headersFromBaseOptions,
|
|
18374
|
-
...options.headers,
|
|
18375
|
-
};
|
|
18376
|
-
return {
|
|
18377
|
-
url: toPathString(localVarUrlObj),
|
|
18378
|
-
options: localVarRequestOptions,
|
|
18379
|
-
};
|
|
18380
|
-
},
|
|
18381
|
-
/**
|
|
18382
|
-
*
|
|
18383
|
-
* @summary Get all Notification Channel entities
|
|
18384
|
-
* @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\').
|
|
18385
|
-
* @param {number} [page] Zero-based page index (0..N)
|
|
18386
|
-
* @param {number} [size] The size of the page to be returned
|
|
18387
|
-
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
18388
|
-
* @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
18389
|
-
* @param {*} [options] Override http request option.
|
|
18390
|
-
* @throws {RequiredError}
|
|
18391
|
-
*/
|
|
18392
|
-
getAllEntitiesNotificationChannels: async (filter, page, size, sort, metaInclude, options = {}) => {
|
|
18393
|
-
const localVarPath = `/api/v1/entities/notificationChannels`;
|
|
18394
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
18395
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
18396
|
-
let baseOptions;
|
|
18397
|
-
if (configuration) {
|
|
18398
|
-
baseOptions = configuration.baseOptions;
|
|
18479
|
+
if (origin !== undefined) {
|
|
18480
|
+
localVarQueryParameter["origin"] = origin;
|
|
18399
18481
|
}
|
|
18400
|
-
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
18401
|
-
const localVarHeaderParameter = {};
|
|
18402
|
-
const localVarQueryParameter = {};
|
|
18403
18482
|
if (filter !== undefined) {
|
|
18404
18483
|
localVarQueryParameter["filter"] = filter;
|
|
18405
18484
|
}
|
|
18406
|
-
if (
|
|
18407
|
-
localVarQueryParameter["
|
|
18408
|
-
}
|
|
18409
|
-
if (size !== undefined) {
|
|
18410
|
-
localVarQueryParameter["size"] = size;
|
|
18411
|
-
}
|
|
18412
|
-
if (sort) {
|
|
18413
|
-
localVarQueryParameter["sort"] = sort;
|
|
18414
|
-
}
|
|
18415
|
-
if (metaInclude) {
|
|
18416
|
-
localVarQueryParameter["metaInclude"] = Array.from(metaInclude).join(COLLECTION_FORMATS.csv);
|
|
18417
|
-
}
|
|
18418
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
18419
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
18420
|
-
localVarRequestOptions.headers = {
|
|
18421
|
-
...localVarHeaderParameter,
|
|
18422
|
-
...headersFromBaseOptions,
|
|
18423
|
-
...options.headers,
|
|
18424
|
-
};
|
|
18425
|
-
return {
|
|
18426
|
-
url: toPathString(localVarUrlObj),
|
|
18427
|
-
options: localVarRequestOptions,
|
|
18428
|
-
};
|
|
18429
|
-
},
|
|
18430
|
-
/**
|
|
18431
|
-
*
|
|
18432
|
-
* @summary Get Organization entities
|
|
18433
|
-
* @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\').
|
|
18434
|
-
* @param {number} [page] Zero-based page index (0..N)
|
|
18435
|
-
* @param {number} [size] The size of the page to be returned
|
|
18436
|
-
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
18437
|
-
* @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
18438
|
-
* @param {*} [options] Override http request option.
|
|
18439
|
-
* @throws {RequiredError}
|
|
18440
|
-
*/
|
|
18441
|
-
getAllEntitiesOrganizationSettings: async (filter, page, size, sort, metaInclude, options = {}) => {
|
|
18442
|
-
const localVarPath = `/api/v1/entities/organizationSettings`;
|
|
18443
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
18444
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
18445
|
-
let baseOptions;
|
|
18446
|
-
if (configuration) {
|
|
18447
|
-
baseOptions = configuration.baseOptions;
|
|
18448
|
-
}
|
|
18449
|
-
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
18450
|
-
const localVarHeaderParameter = {};
|
|
18451
|
-
const localVarQueryParameter = {};
|
|
18452
|
-
if (filter !== undefined) {
|
|
18453
|
-
localVarQueryParameter["filter"] = filter;
|
|
18485
|
+
if (include) {
|
|
18486
|
+
localVarQueryParameter["include"] = include.join(COLLECTION_FORMATS.csv);
|
|
18454
18487
|
}
|
|
18455
18488
|
if (page !== undefined) {
|
|
18456
18489
|
localVarQueryParameter["page"] = page;
|
|
@@ -18464,6 +18497,9 @@ export const EntitiesApiAxiosParamCreator = function (configuration) {
|
|
|
18464
18497
|
if (metaInclude) {
|
|
18465
18498
|
localVarQueryParameter["metaInclude"] = Array.from(metaInclude).join(COLLECTION_FORMATS.csv);
|
|
18466
18499
|
}
|
|
18500
|
+
if (xGDCVALIDATERELATIONS !== undefined && xGDCVALIDATERELATIONS !== null) {
|
|
18501
|
+
localVarHeaderParameter["X-GDC-VALIDATE-RELATIONS"] = String(JSON.stringify(xGDCVALIDATERELATIONS));
|
|
18502
|
+
}
|
|
18467
18503
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
18468
18504
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
18469
18505
|
localVarRequestOptions.headers = {
|
|
@@ -18478,7 +18514,6 @@ export const EntitiesApiAxiosParamCreator = function (configuration) {
|
|
|
18478
18514
|
},
|
|
18479
18515
|
/**
|
|
18480
18516
|
*
|
|
18481
|
-
* @summary Get all Theming entities
|
|
18482
18517
|
* @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\').
|
|
18483
18518
|
* @param {number} [page] Zero-based page index (0..N)
|
|
18484
18519
|
* @param {number} [size] The size of the page to be returned
|
|
@@ -18487,8 +18522,155 @@ export const EntitiesApiAxiosParamCreator = function (configuration) {
|
|
|
18487
18522
|
* @param {*} [options] Override http request option.
|
|
18488
18523
|
* @throws {RequiredError}
|
|
18489
18524
|
*/
|
|
18490
|
-
|
|
18491
|
-
const localVarPath = `/api/v1/entities/
|
|
18525
|
+
getAllEntitiesNotificationChannelIdentifiers: async (filter, page, size, sort, metaInclude, options = {}) => {
|
|
18526
|
+
const localVarPath = `/api/v1/entities/notificationChannelIdentifiers`;
|
|
18527
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
18528
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
18529
|
+
let baseOptions;
|
|
18530
|
+
if (configuration) {
|
|
18531
|
+
baseOptions = configuration.baseOptions;
|
|
18532
|
+
}
|
|
18533
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
18534
|
+
const localVarHeaderParameter = {};
|
|
18535
|
+
const localVarQueryParameter = {};
|
|
18536
|
+
if (filter !== undefined) {
|
|
18537
|
+
localVarQueryParameter["filter"] = filter;
|
|
18538
|
+
}
|
|
18539
|
+
if (page !== undefined) {
|
|
18540
|
+
localVarQueryParameter["page"] = page;
|
|
18541
|
+
}
|
|
18542
|
+
if (size !== undefined) {
|
|
18543
|
+
localVarQueryParameter["size"] = size;
|
|
18544
|
+
}
|
|
18545
|
+
if (sort) {
|
|
18546
|
+
localVarQueryParameter["sort"] = sort;
|
|
18547
|
+
}
|
|
18548
|
+
if (metaInclude) {
|
|
18549
|
+
localVarQueryParameter["metaInclude"] = Array.from(metaInclude).join(COLLECTION_FORMATS.csv);
|
|
18550
|
+
}
|
|
18551
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
18552
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
18553
|
+
localVarRequestOptions.headers = {
|
|
18554
|
+
...localVarHeaderParameter,
|
|
18555
|
+
...headersFromBaseOptions,
|
|
18556
|
+
...options.headers,
|
|
18557
|
+
};
|
|
18558
|
+
return {
|
|
18559
|
+
url: toPathString(localVarUrlObj),
|
|
18560
|
+
options: localVarRequestOptions,
|
|
18561
|
+
};
|
|
18562
|
+
},
|
|
18563
|
+
/**
|
|
18564
|
+
*
|
|
18565
|
+
* @summary Get all Notification Channel entities
|
|
18566
|
+
* @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\').
|
|
18567
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
18568
|
+
* @param {number} [size] The size of the page to be returned
|
|
18569
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
18570
|
+
* @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
18571
|
+
* @param {*} [options] Override http request option.
|
|
18572
|
+
* @throws {RequiredError}
|
|
18573
|
+
*/
|
|
18574
|
+
getAllEntitiesNotificationChannels: async (filter, page, size, sort, metaInclude, options = {}) => {
|
|
18575
|
+
const localVarPath = `/api/v1/entities/notificationChannels`;
|
|
18576
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
18577
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
18578
|
+
let baseOptions;
|
|
18579
|
+
if (configuration) {
|
|
18580
|
+
baseOptions = configuration.baseOptions;
|
|
18581
|
+
}
|
|
18582
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
18583
|
+
const localVarHeaderParameter = {};
|
|
18584
|
+
const localVarQueryParameter = {};
|
|
18585
|
+
if (filter !== undefined) {
|
|
18586
|
+
localVarQueryParameter["filter"] = filter;
|
|
18587
|
+
}
|
|
18588
|
+
if (page !== undefined) {
|
|
18589
|
+
localVarQueryParameter["page"] = page;
|
|
18590
|
+
}
|
|
18591
|
+
if (size !== undefined) {
|
|
18592
|
+
localVarQueryParameter["size"] = size;
|
|
18593
|
+
}
|
|
18594
|
+
if (sort) {
|
|
18595
|
+
localVarQueryParameter["sort"] = sort;
|
|
18596
|
+
}
|
|
18597
|
+
if (metaInclude) {
|
|
18598
|
+
localVarQueryParameter["metaInclude"] = Array.from(metaInclude).join(COLLECTION_FORMATS.csv);
|
|
18599
|
+
}
|
|
18600
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
18601
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
18602
|
+
localVarRequestOptions.headers = {
|
|
18603
|
+
...localVarHeaderParameter,
|
|
18604
|
+
...headersFromBaseOptions,
|
|
18605
|
+
...options.headers,
|
|
18606
|
+
};
|
|
18607
|
+
return {
|
|
18608
|
+
url: toPathString(localVarUrlObj),
|
|
18609
|
+
options: localVarRequestOptions,
|
|
18610
|
+
};
|
|
18611
|
+
},
|
|
18612
|
+
/**
|
|
18613
|
+
*
|
|
18614
|
+
* @summary Get Organization entities
|
|
18615
|
+
* @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\').
|
|
18616
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
18617
|
+
* @param {number} [size] The size of the page to be returned
|
|
18618
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
18619
|
+
* @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
18620
|
+
* @param {*} [options] Override http request option.
|
|
18621
|
+
* @throws {RequiredError}
|
|
18622
|
+
*/
|
|
18623
|
+
getAllEntitiesOrganizationSettings: async (filter, page, size, sort, metaInclude, options = {}) => {
|
|
18624
|
+
const localVarPath = `/api/v1/entities/organizationSettings`;
|
|
18625
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
18626
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
18627
|
+
let baseOptions;
|
|
18628
|
+
if (configuration) {
|
|
18629
|
+
baseOptions = configuration.baseOptions;
|
|
18630
|
+
}
|
|
18631
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
18632
|
+
const localVarHeaderParameter = {};
|
|
18633
|
+
const localVarQueryParameter = {};
|
|
18634
|
+
if (filter !== undefined) {
|
|
18635
|
+
localVarQueryParameter["filter"] = filter;
|
|
18636
|
+
}
|
|
18637
|
+
if (page !== undefined) {
|
|
18638
|
+
localVarQueryParameter["page"] = page;
|
|
18639
|
+
}
|
|
18640
|
+
if (size !== undefined) {
|
|
18641
|
+
localVarQueryParameter["size"] = size;
|
|
18642
|
+
}
|
|
18643
|
+
if (sort) {
|
|
18644
|
+
localVarQueryParameter["sort"] = sort;
|
|
18645
|
+
}
|
|
18646
|
+
if (metaInclude) {
|
|
18647
|
+
localVarQueryParameter["metaInclude"] = Array.from(metaInclude).join(COLLECTION_FORMATS.csv);
|
|
18648
|
+
}
|
|
18649
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
18650
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
18651
|
+
localVarRequestOptions.headers = {
|
|
18652
|
+
...localVarHeaderParameter,
|
|
18653
|
+
...headersFromBaseOptions,
|
|
18654
|
+
...options.headers,
|
|
18655
|
+
};
|
|
18656
|
+
return {
|
|
18657
|
+
url: toPathString(localVarUrlObj),
|
|
18658
|
+
options: localVarRequestOptions,
|
|
18659
|
+
};
|
|
18660
|
+
},
|
|
18661
|
+
/**
|
|
18662
|
+
*
|
|
18663
|
+
* @summary Get all Theming entities
|
|
18664
|
+
* @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\').
|
|
18665
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
18666
|
+
* @param {number} [size] The size of the page to be returned
|
|
18667
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
18668
|
+
* @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
18669
|
+
* @param {*} [options] Override http request option.
|
|
18670
|
+
* @throws {RequiredError}
|
|
18671
|
+
*/
|
|
18672
|
+
getAllEntitiesThemes: async (filter, page, size, sort, metaInclude, options = {}) => {
|
|
18673
|
+
const localVarPath = `/api/v1/entities/themes`;
|
|
18492
18674
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
18493
18675
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
18494
18676
|
let baseOptions;
|
|
@@ -20248,6 +20430,58 @@ export const EntitiesApiAxiosParamCreator = function (configuration) {
|
|
|
20248
20430
|
options: localVarRequestOptions,
|
|
20249
20431
|
};
|
|
20250
20432
|
},
|
|
20433
|
+
/**
|
|
20434
|
+
*
|
|
20435
|
+
* @param {string} workspaceId
|
|
20436
|
+
* @param {string} objectId
|
|
20437
|
+
* @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\').
|
|
20438
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | '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.
|
|
20439
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
20440
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
20441
|
+
* @param {*} [options] Override http request option.
|
|
20442
|
+
* @throws {RequiredError}
|
|
20443
|
+
*/
|
|
20444
|
+
getEntityMemoryItems: async (workspaceId, objectId, filter, include, xGDCVALIDATERELATIONS, metaInclude, options = {}) => {
|
|
20445
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
20446
|
+
assertParamExists("getEntityMemoryItems", "workspaceId", workspaceId);
|
|
20447
|
+
// verify required parameter 'objectId' is not null or undefined
|
|
20448
|
+
assertParamExists("getEntityMemoryItems", "objectId", objectId);
|
|
20449
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId}`
|
|
20450
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
20451
|
+
.replace(`{${"objectId"}}`, encodeURIComponent(String(objectId)));
|
|
20452
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
20453
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
20454
|
+
let baseOptions;
|
|
20455
|
+
if (configuration) {
|
|
20456
|
+
baseOptions = configuration.baseOptions;
|
|
20457
|
+
}
|
|
20458
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
20459
|
+
const localVarHeaderParameter = {};
|
|
20460
|
+
const localVarQueryParameter = {};
|
|
20461
|
+
if (filter !== undefined) {
|
|
20462
|
+
localVarQueryParameter["filter"] = filter;
|
|
20463
|
+
}
|
|
20464
|
+
if (include) {
|
|
20465
|
+
localVarQueryParameter["include"] = include.join(COLLECTION_FORMATS.csv);
|
|
20466
|
+
}
|
|
20467
|
+
if (metaInclude) {
|
|
20468
|
+
localVarQueryParameter["metaInclude"] = Array.from(metaInclude).join(COLLECTION_FORMATS.csv);
|
|
20469
|
+
}
|
|
20470
|
+
if (xGDCVALIDATERELATIONS !== undefined && xGDCVALIDATERELATIONS !== null) {
|
|
20471
|
+
localVarHeaderParameter["X-GDC-VALIDATE-RELATIONS"] = String(JSON.stringify(xGDCVALIDATERELATIONS));
|
|
20472
|
+
}
|
|
20473
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
20474
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
20475
|
+
localVarRequestOptions.headers = {
|
|
20476
|
+
...localVarHeaderParameter,
|
|
20477
|
+
...headersFromBaseOptions,
|
|
20478
|
+
...options.headers,
|
|
20479
|
+
};
|
|
20480
|
+
return {
|
|
20481
|
+
url: toPathString(localVarUrlObj),
|
|
20482
|
+
options: localVarRequestOptions,
|
|
20483
|
+
};
|
|
20484
|
+
},
|
|
20251
20485
|
/**
|
|
20252
20486
|
*
|
|
20253
20487
|
* @summary Get a Metric
|
|
@@ -21789,6 +22023,59 @@ export const EntitiesApiAxiosParamCreator = function (configuration) {
|
|
|
21789
22023
|
options: localVarRequestOptions,
|
|
21790
22024
|
};
|
|
21791
22025
|
},
|
|
22026
|
+
/**
|
|
22027
|
+
*
|
|
22028
|
+
* @param {string} workspaceId
|
|
22029
|
+
* @param {string} objectId
|
|
22030
|
+
* @param {JsonApiMemoryItemPatchDocument} jsonApiMemoryItemPatchDocument
|
|
22031
|
+
* @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\').
|
|
22032
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | '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.
|
|
22033
|
+
* @param {*} [options] Override http request option.
|
|
22034
|
+
* @throws {RequiredError}
|
|
22035
|
+
*/
|
|
22036
|
+
patchEntityMemoryItems: async (workspaceId, objectId, jsonApiMemoryItemPatchDocument, filter, include, options = {}) => {
|
|
22037
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
22038
|
+
assertParamExists("patchEntityMemoryItems", "workspaceId", workspaceId);
|
|
22039
|
+
// verify required parameter 'objectId' is not null or undefined
|
|
22040
|
+
assertParamExists("patchEntityMemoryItems", "objectId", objectId);
|
|
22041
|
+
// verify required parameter 'jsonApiMemoryItemPatchDocument' is not null or undefined
|
|
22042
|
+
assertParamExists("patchEntityMemoryItems", "jsonApiMemoryItemPatchDocument", jsonApiMemoryItemPatchDocument);
|
|
22043
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId}`
|
|
22044
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
22045
|
+
.replace(`{${"objectId"}}`, encodeURIComponent(String(objectId)));
|
|
22046
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
22047
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
22048
|
+
let baseOptions;
|
|
22049
|
+
if (configuration) {
|
|
22050
|
+
baseOptions = configuration.baseOptions;
|
|
22051
|
+
}
|
|
22052
|
+
const localVarRequestOptions = { method: "PATCH", ...baseOptions, ...options };
|
|
22053
|
+
const localVarHeaderParameter = {};
|
|
22054
|
+
const localVarQueryParameter = {};
|
|
22055
|
+
if (filter !== undefined) {
|
|
22056
|
+
localVarQueryParameter["filter"] = filter;
|
|
22057
|
+
}
|
|
22058
|
+
if (include) {
|
|
22059
|
+
localVarQueryParameter["include"] = include.join(COLLECTION_FORMATS.csv);
|
|
22060
|
+
}
|
|
22061
|
+
localVarHeaderParameter["Content-Type"] = "application/vnd.gooddata.api+json";
|
|
22062
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
22063
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
22064
|
+
localVarRequestOptions.headers = {
|
|
22065
|
+
...localVarHeaderParameter,
|
|
22066
|
+
...headersFromBaseOptions,
|
|
22067
|
+
...options.headers,
|
|
22068
|
+
};
|
|
22069
|
+
const needsSerialization = typeof jsonApiMemoryItemPatchDocument !== "string" ||
|
|
22070
|
+
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
22071
|
+
localVarRequestOptions.data = needsSerialization
|
|
22072
|
+
? JSON.stringify(jsonApiMemoryItemPatchDocument !== undefined ? jsonApiMemoryItemPatchDocument : {})
|
|
22073
|
+
: jsonApiMemoryItemPatchDocument || "";
|
|
22074
|
+
return {
|
|
22075
|
+
url: toPathString(localVarUrlObj),
|
|
22076
|
+
options: localVarRequestOptions,
|
|
22077
|
+
};
|
|
22078
|
+
},
|
|
21792
22079
|
/**
|
|
21793
22080
|
*
|
|
21794
22081
|
* @summary Patch a Metric
|
|
@@ -23254,6 +23541,59 @@ export const EntitiesApiAxiosParamCreator = function (configuration) {
|
|
|
23254
23541
|
options: localVarRequestOptions,
|
|
23255
23542
|
};
|
|
23256
23543
|
},
|
|
23544
|
+
/**
|
|
23545
|
+
*
|
|
23546
|
+
* @param {string} workspaceId
|
|
23547
|
+
* @param {string} objectId
|
|
23548
|
+
* @param {JsonApiMemoryItemInDocument} jsonApiMemoryItemInDocument
|
|
23549
|
+
* @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\').
|
|
23550
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | '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.
|
|
23551
|
+
* @param {*} [options] Override http request option.
|
|
23552
|
+
* @throws {RequiredError}
|
|
23553
|
+
*/
|
|
23554
|
+
updateEntityMemoryItems: async (workspaceId, objectId, jsonApiMemoryItemInDocument, filter, include, options = {}) => {
|
|
23555
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
23556
|
+
assertParamExists("updateEntityMemoryItems", "workspaceId", workspaceId);
|
|
23557
|
+
// verify required parameter 'objectId' is not null or undefined
|
|
23558
|
+
assertParamExists("updateEntityMemoryItems", "objectId", objectId);
|
|
23559
|
+
// verify required parameter 'jsonApiMemoryItemInDocument' is not null or undefined
|
|
23560
|
+
assertParamExists("updateEntityMemoryItems", "jsonApiMemoryItemInDocument", jsonApiMemoryItemInDocument);
|
|
23561
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId}`
|
|
23562
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
23563
|
+
.replace(`{${"objectId"}}`, encodeURIComponent(String(objectId)));
|
|
23564
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
23565
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
23566
|
+
let baseOptions;
|
|
23567
|
+
if (configuration) {
|
|
23568
|
+
baseOptions = configuration.baseOptions;
|
|
23569
|
+
}
|
|
23570
|
+
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
23571
|
+
const localVarHeaderParameter = {};
|
|
23572
|
+
const localVarQueryParameter = {};
|
|
23573
|
+
if (filter !== undefined) {
|
|
23574
|
+
localVarQueryParameter["filter"] = filter;
|
|
23575
|
+
}
|
|
23576
|
+
if (include) {
|
|
23577
|
+
localVarQueryParameter["include"] = include.join(COLLECTION_FORMATS.csv);
|
|
23578
|
+
}
|
|
23579
|
+
localVarHeaderParameter["Content-Type"] = "application/vnd.gooddata.api+json";
|
|
23580
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
23581
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
23582
|
+
localVarRequestOptions.headers = {
|
|
23583
|
+
...localVarHeaderParameter,
|
|
23584
|
+
...headersFromBaseOptions,
|
|
23585
|
+
...options.headers,
|
|
23586
|
+
};
|
|
23587
|
+
const needsSerialization = typeof jsonApiMemoryItemInDocument !== "string" ||
|
|
23588
|
+
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
23589
|
+
localVarRequestOptions.data = needsSerialization
|
|
23590
|
+
? JSON.stringify(jsonApiMemoryItemInDocument !== undefined ? jsonApiMemoryItemInDocument : {})
|
|
23591
|
+
: jsonApiMemoryItemInDocument || "";
|
|
23592
|
+
return {
|
|
23593
|
+
url: toPathString(localVarUrlObj),
|
|
23594
|
+
options: localVarRequestOptions,
|
|
23595
|
+
};
|
|
23596
|
+
},
|
|
23257
23597
|
/**
|
|
23258
23598
|
*
|
|
23259
23599
|
* @summary Put a Metric
|
|
@@ -24176,6 +24516,19 @@ export const EntitiesApiFp = function (configuration) {
|
|
|
24176
24516
|
const localVarAxiosArgs = await localVarAxiosParamCreator.createEntityLlmEndpoints(jsonApiLlmEndpointInDocument, options);
|
|
24177
24517
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
24178
24518
|
},
|
|
24519
|
+
/**
|
|
24520
|
+
*
|
|
24521
|
+
* @param {string} workspaceId
|
|
24522
|
+
* @param {JsonApiMemoryItemPostOptionalIdDocument} jsonApiMemoryItemPostOptionalIdDocument
|
|
24523
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | '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.
|
|
24524
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
24525
|
+
* @param {*} [options] Override http request option.
|
|
24526
|
+
* @throws {RequiredError}
|
|
24527
|
+
*/
|
|
24528
|
+
async createEntityMemoryItems(workspaceId, jsonApiMemoryItemPostOptionalIdDocument, include, metaInclude, options) {
|
|
24529
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createEntityMemoryItems(workspaceId, jsonApiMemoryItemPostOptionalIdDocument, include, metaInclude, options);
|
|
24530
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
24531
|
+
},
|
|
24179
24532
|
/**
|
|
24180
24533
|
*
|
|
24181
24534
|
* @summary Post Metrics
|
|
@@ -24541,6 +24894,18 @@ export const EntitiesApiFp = function (configuration) {
|
|
|
24541
24894
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEntityLlmEndpoints(id, filter, options);
|
|
24542
24895
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
24543
24896
|
},
|
|
24897
|
+
/**
|
|
24898
|
+
*
|
|
24899
|
+
* @param {string} workspaceId
|
|
24900
|
+
* @param {string} objectId
|
|
24901
|
+
* @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\').
|
|
24902
|
+
* @param {*} [options] Override http request option.
|
|
24903
|
+
* @throws {RequiredError}
|
|
24904
|
+
*/
|
|
24905
|
+
async deleteEntityMemoryItems(workspaceId, objectId, filter, options) {
|
|
24906
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEntityMemoryItems(workspaceId, objectId, filter, options);
|
|
24907
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
24908
|
+
},
|
|
24544
24909
|
/**
|
|
24545
24910
|
*
|
|
24546
24911
|
* @summary Delete a Metric
|
|
@@ -25116,6 +25481,24 @@ export const EntitiesApiFp = function (configuration) {
|
|
|
25116
25481
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getAllEntitiesLlmEndpoints(filter, page, size, sort, metaInclude, options);
|
|
25117
25482
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
25118
25483
|
},
|
|
25484
|
+
/**
|
|
25485
|
+
*
|
|
25486
|
+
* @param {string} workspaceId
|
|
25487
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
25488
|
+
* @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\').
|
|
25489
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | '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.
|
|
25490
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
25491
|
+
* @param {number} [size] The size of the page to be returned
|
|
25492
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
25493
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
25494
|
+
* @param {Array<'origin' | 'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
25495
|
+
* @param {*} [options] Override http request option.
|
|
25496
|
+
* @throws {RequiredError}
|
|
25497
|
+
*/
|
|
25498
|
+
async getAllEntitiesMemoryItems(workspaceId, origin, filter, include, page, size, sort, xGDCVALIDATERELATIONS, metaInclude, options) {
|
|
25499
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getAllEntitiesMemoryItems(workspaceId, origin, filter, include, page, size, sort, xGDCVALIDATERELATIONS, metaInclude, options);
|
|
25500
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
25501
|
+
},
|
|
25119
25502
|
/**
|
|
25120
25503
|
*
|
|
25121
25504
|
* @summary Get all Metrics
|
|
@@ -25727,6 +26110,21 @@ export const EntitiesApiFp = function (configuration) {
|
|
|
25727
26110
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getEntityLlmEndpoints(id, filter, options);
|
|
25728
26111
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
25729
26112
|
},
|
|
26113
|
+
/**
|
|
26114
|
+
*
|
|
26115
|
+
* @param {string} workspaceId
|
|
26116
|
+
* @param {string} objectId
|
|
26117
|
+
* @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\').
|
|
26118
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | '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.
|
|
26119
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
26120
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
26121
|
+
* @param {*} [options] Override http request option.
|
|
26122
|
+
* @throws {RequiredError}
|
|
26123
|
+
*/
|
|
26124
|
+
async getEntityMemoryItems(workspaceId, objectId, filter, include, xGDCVALIDATERELATIONS, metaInclude, options) {
|
|
26125
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getEntityMemoryItems(workspaceId, objectId, filter, include, xGDCVALIDATERELATIONS, metaInclude, options);
|
|
26126
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
26127
|
+
},
|
|
25730
26128
|
/**
|
|
25731
26129
|
*
|
|
25732
26130
|
* @summary Get a Metric
|
|
@@ -26182,6 +26580,20 @@ export const EntitiesApiFp = function (configuration) {
|
|
|
26182
26580
|
const localVarAxiosArgs = await localVarAxiosParamCreator.patchEntityLlmEndpoints(id, jsonApiLlmEndpointPatchDocument, filter, options);
|
|
26183
26581
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
26184
26582
|
},
|
|
26583
|
+
/**
|
|
26584
|
+
*
|
|
26585
|
+
* @param {string} workspaceId
|
|
26586
|
+
* @param {string} objectId
|
|
26587
|
+
* @param {JsonApiMemoryItemPatchDocument} jsonApiMemoryItemPatchDocument
|
|
26588
|
+
* @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\').
|
|
26589
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | '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.
|
|
26590
|
+
* @param {*} [options] Override http request option.
|
|
26591
|
+
* @throws {RequiredError}
|
|
26592
|
+
*/
|
|
26593
|
+
async patchEntityMemoryItems(workspaceId, objectId, jsonApiMemoryItemPatchDocument, filter, include, options) {
|
|
26594
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchEntityMemoryItems(workspaceId, objectId, jsonApiMemoryItemPatchDocument, filter, include, options);
|
|
26595
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
26596
|
+
},
|
|
26185
26597
|
/**
|
|
26186
26598
|
*
|
|
26187
26599
|
* @summary Patch a Metric
|
|
@@ -26589,6 +27001,20 @@ export const EntitiesApiFp = function (configuration) {
|
|
|
26589
27001
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateEntityLlmEndpoints(id, jsonApiLlmEndpointInDocument, filter, options);
|
|
26590
27002
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
26591
27003
|
},
|
|
27004
|
+
/**
|
|
27005
|
+
*
|
|
27006
|
+
* @param {string} workspaceId
|
|
27007
|
+
* @param {string} objectId
|
|
27008
|
+
* @param {JsonApiMemoryItemInDocument} jsonApiMemoryItemInDocument
|
|
27009
|
+
* @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\').
|
|
27010
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | '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.
|
|
27011
|
+
* @param {*} [options] Override http request option.
|
|
27012
|
+
* @throws {RequiredError}
|
|
27013
|
+
*/
|
|
27014
|
+
async updateEntityMemoryItems(workspaceId, objectId, jsonApiMemoryItemInDocument, filter, include, options) {
|
|
27015
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateEntityMemoryItems(workspaceId, objectId, jsonApiMemoryItemInDocument, filter, include, options);
|
|
27016
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
27017
|
+
},
|
|
26592
27018
|
/**
|
|
26593
27019
|
*
|
|
26594
27020
|
* @summary Put a Metric
|
|
@@ -26988,6 +27414,17 @@ export const EntitiesApiFactory = function (configuration, basePath, axios) {
|
|
|
26988
27414
|
.createEntityLlmEndpoints(requestParameters.jsonApiLlmEndpointInDocument, options)
|
|
26989
27415
|
.then((request) => request(axios, basePath));
|
|
26990
27416
|
},
|
|
27417
|
+
/**
|
|
27418
|
+
*
|
|
27419
|
+
* @param {EntitiesApiCreateEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
27420
|
+
* @param {*} [options] Override http request option.
|
|
27421
|
+
* @throws {RequiredError}
|
|
27422
|
+
*/
|
|
27423
|
+
createEntityMemoryItems(requestParameters, options) {
|
|
27424
|
+
return localVarFp
|
|
27425
|
+
.createEntityMemoryItems(requestParameters.workspaceId, requestParameters.jsonApiMemoryItemPostOptionalIdDocument, requestParameters.include, requestParameters.metaInclude, options)
|
|
27426
|
+
.then((request) => request(axios, basePath));
|
|
27427
|
+
},
|
|
26991
27428
|
/**
|
|
26992
27429
|
*
|
|
26993
27430
|
* @summary Post Metrics
|
|
@@ -27335,6 +27772,17 @@ export const EntitiesApiFactory = function (configuration, basePath, axios) {
|
|
|
27335
27772
|
.deleteEntityLlmEndpoints(requestParameters.id, requestParameters.filter, options)
|
|
27336
27773
|
.then((request) => request(axios, basePath));
|
|
27337
27774
|
},
|
|
27775
|
+
/**
|
|
27776
|
+
*
|
|
27777
|
+
* @param {EntitiesApiDeleteEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
27778
|
+
* @param {*} [options] Override http request option.
|
|
27779
|
+
* @throws {RequiredError}
|
|
27780
|
+
*/
|
|
27781
|
+
deleteEntityMemoryItems(requestParameters, options) {
|
|
27782
|
+
return localVarFp
|
|
27783
|
+
.deleteEntityMemoryItems(requestParameters.workspaceId, requestParameters.objectId, requestParameters.filter, options)
|
|
27784
|
+
.then((request) => request(axios, basePath));
|
|
27785
|
+
},
|
|
27338
27786
|
/**
|
|
27339
27787
|
*
|
|
27340
27788
|
* @summary Delete a Metric
|
|
@@ -27778,6 +28226,17 @@ export const EntitiesApiFactory = function (configuration, basePath, axios) {
|
|
|
27778
28226
|
.getAllEntitiesLlmEndpoints(requestParameters.filter, requestParameters.page, requestParameters.size, requestParameters.sort, requestParameters.metaInclude, options)
|
|
27779
28227
|
.then((request) => request(axios, basePath));
|
|
27780
28228
|
},
|
|
28229
|
+
/**
|
|
28230
|
+
*
|
|
28231
|
+
* @param {EntitiesApiGetAllEntitiesMemoryItemsRequest} requestParameters Request parameters.
|
|
28232
|
+
* @param {*} [options] Override http request option.
|
|
28233
|
+
* @throws {RequiredError}
|
|
28234
|
+
*/
|
|
28235
|
+
getAllEntitiesMemoryItems(requestParameters, options) {
|
|
28236
|
+
return localVarFp
|
|
28237
|
+
.getAllEntitiesMemoryItems(requestParameters.workspaceId, requestParameters.origin, requestParameters.filter, requestParameters.include, requestParameters.page, requestParameters.size, requestParameters.sort, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options)
|
|
28238
|
+
.then((request) => request(axios, basePath));
|
|
28239
|
+
},
|
|
27781
28240
|
/**
|
|
27782
28241
|
*
|
|
27783
28242
|
* @summary Get all Metrics
|
|
@@ -28262,6 +28721,17 @@ export const EntitiesApiFactory = function (configuration, basePath, axios) {
|
|
|
28262
28721
|
.getEntityLlmEndpoints(requestParameters.id, requestParameters.filter, options)
|
|
28263
28722
|
.then((request) => request(axios, basePath));
|
|
28264
28723
|
},
|
|
28724
|
+
/**
|
|
28725
|
+
*
|
|
28726
|
+
* @param {EntitiesApiGetEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
28727
|
+
* @param {*} [options] Override http request option.
|
|
28728
|
+
* @throws {RequiredError}
|
|
28729
|
+
*/
|
|
28730
|
+
getEntityMemoryItems(requestParameters, options) {
|
|
28731
|
+
return localVarFp
|
|
28732
|
+
.getEntityMemoryItems(requestParameters.workspaceId, requestParameters.objectId, requestParameters.filter, requestParameters.include, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options)
|
|
28733
|
+
.then((request) => request(axios, basePath));
|
|
28734
|
+
},
|
|
28265
28735
|
/**
|
|
28266
28736
|
*
|
|
28267
28737
|
* @summary Get a Metric
|
|
@@ -28657,6 +29127,17 @@ export const EntitiesApiFactory = function (configuration, basePath, axios) {
|
|
|
28657
29127
|
.patchEntityLlmEndpoints(requestParameters.id, requestParameters.jsonApiLlmEndpointPatchDocument, requestParameters.filter, options)
|
|
28658
29128
|
.then((request) => request(axios, basePath));
|
|
28659
29129
|
},
|
|
29130
|
+
/**
|
|
29131
|
+
*
|
|
29132
|
+
* @param {EntitiesApiPatchEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
29133
|
+
* @param {*} [options] Override http request option.
|
|
29134
|
+
* @throws {RequiredError}
|
|
29135
|
+
*/
|
|
29136
|
+
patchEntityMemoryItems(requestParameters, options) {
|
|
29137
|
+
return localVarFp
|
|
29138
|
+
.patchEntityMemoryItems(requestParameters.workspaceId, requestParameters.objectId, requestParameters.jsonApiMemoryItemPatchDocument, requestParameters.filter, requestParameters.include, options)
|
|
29139
|
+
.then((request) => request(axios, basePath));
|
|
29140
|
+
},
|
|
28660
29141
|
/**
|
|
28661
29142
|
*
|
|
28662
29143
|
* @summary Patch a Metric
|
|
@@ -29005,6 +29486,17 @@ export const EntitiesApiFactory = function (configuration, basePath, axios) {
|
|
|
29005
29486
|
.updateEntityLlmEndpoints(requestParameters.id, requestParameters.jsonApiLlmEndpointInDocument, requestParameters.filter, options)
|
|
29006
29487
|
.then((request) => request(axios, basePath));
|
|
29007
29488
|
},
|
|
29489
|
+
/**
|
|
29490
|
+
*
|
|
29491
|
+
* @param {EntitiesApiUpdateEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
29492
|
+
* @param {*} [options] Override http request option.
|
|
29493
|
+
* @throws {RequiredError}
|
|
29494
|
+
*/
|
|
29495
|
+
updateEntityMemoryItems(requestParameters, options) {
|
|
29496
|
+
return localVarFp
|
|
29497
|
+
.updateEntityMemoryItems(requestParameters.workspaceId, requestParameters.objectId, requestParameters.jsonApiMemoryItemInDocument, requestParameters.filter, requestParameters.include, options)
|
|
29498
|
+
.then((request) => request(axios, basePath));
|
|
29499
|
+
},
|
|
29008
29500
|
/**
|
|
29009
29501
|
*
|
|
29010
29502
|
* @summary Put a Metric
|
|
@@ -29390,6 +29882,18 @@ export class EntitiesApi extends BaseAPI {
|
|
|
29390
29882
|
.createEntityLlmEndpoints(requestParameters.jsonApiLlmEndpointInDocument, options)
|
|
29391
29883
|
.then((request) => request(this.axios, this.basePath));
|
|
29392
29884
|
}
|
|
29885
|
+
/**
|
|
29886
|
+
*
|
|
29887
|
+
* @param {EntitiesApiCreateEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
29888
|
+
* @param {*} [options] Override http request option.
|
|
29889
|
+
* @throws {RequiredError}
|
|
29890
|
+
* @memberof EntitiesApi
|
|
29891
|
+
*/
|
|
29892
|
+
createEntityMemoryItems(requestParameters, options) {
|
|
29893
|
+
return EntitiesApiFp(this.configuration)
|
|
29894
|
+
.createEntityMemoryItems(requestParameters.workspaceId, requestParameters.jsonApiMemoryItemPostOptionalIdDocument, requestParameters.include, requestParameters.metaInclude, options)
|
|
29895
|
+
.then((request) => request(this.axios, this.basePath));
|
|
29896
|
+
}
|
|
29393
29897
|
/**
|
|
29394
29898
|
*
|
|
29395
29899
|
* @summary Post Metrics
|
|
@@ -29766,6 +30270,18 @@ export class EntitiesApi extends BaseAPI {
|
|
|
29766
30270
|
.deleteEntityLlmEndpoints(requestParameters.id, requestParameters.filter, options)
|
|
29767
30271
|
.then((request) => request(this.axios, this.basePath));
|
|
29768
30272
|
}
|
|
30273
|
+
/**
|
|
30274
|
+
*
|
|
30275
|
+
* @param {EntitiesApiDeleteEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
30276
|
+
* @param {*} [options] Override http request option.
|
|
30277
|
+
* @throws {RequiredError}
|
|
30278
|
+
* @memberof EntitiesApi
|
|
30279
|
+
*/
|
|
30280
|
+
deleteEntityMemoryItems(requestParameters, options) {
|
|
30281
|
+
return EntitiesApiFp(this.configuration)
|
|
30282
|
+
.deleteEntityMemoryItems(requestParameters.workspaceId, requestParameters.objectId, requestParameters.filter, options)
|
|
30283
|
+
.then((request) => request(this.axios, this.basePath));
|
|
30284
|
+
}
|
|
29769
30285
|
/**
|
|
29770
30286
|
*
|
|
29771
30287
|
* @summary Delete a Metric
|
|
@@ -30246,6 +30762,18 @@ export class EntitiesApi extends BaseAPI {
|
|
|
30246
30762
|
.getAllEntitiesLlmEndpoints(requestParameters.filter, requestParameters.page, requestParameters.size, requestParameters.sort, requestParameters.metaInclude, options)
|
|
30247
30763
|
.then((request) => request(this.axios, this.basePath));
|
|
30248
30764
|
}
|
|
30765
|
+
/**
|
|
30766
|
+
*
|
|
30767
|
+
* @param {EntitiesApiGetAllEntitiesMemoryItemsRequest} requestParameters Request parameters.
|
|
30768
|
+
* @param {*} [options] Override http request option.
|
|
30769
|
+
* @throws {RequiredError}
|
|
30770
|
+
* @memberof EntitiesApi
|
|
30771
|
+
*/
|
|
30772
|
+
getAllEntitiesMemoryItems(requestParameters, options) {
|
|
30773
|
+
return EntitiesApiFp(this.configuration)
|
|
30774
|
+
.getAllEntitiesMemoryItems(requestParameters.workspaceId, requestParameters.origin, requestParameters.filter, requestParameters.include, requestParameters.page, requestParameters.size, requestParameters.sort, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options)
|
|
30775
|
+
.then((request) => request(this.axios, this.basePath));
|
|
30776
|
+
}
|
|
30249
30777
|
/**
|
|
30250
30778
|
*
|
|
30251
30779
|
* @summary Get all Metrics
|
|
@@ -30775,6 +31303,18 @@ export class EntitiesApi extends BaseAPI {
|
|
|
30775
31303
|
.getEntityLlmEndpoints(requestParameters.id, requestParameters.filter, options)
|
|
30776
31304
|
.then((request) => request(this.axios, this.basePath));
|
|
30777
31305
|
}
|
|
31306
|
+
/**
|
|
31307
|
+
*
|
|
31308
|
+
* @param {EntitiesApiGetEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
31309
|
+
* @param {*} [options] Override http request option.
|
|
31310
|
+
* @throws {RequiredError}
|
|
31311
|
+
* @memberof EntitiesApi
|
|
31312
|
+
*/
|
|
31313
|
+
getEntityMemoryItems(requestParameters, options) {
|
|
31314
|
+
return EntitiesApiFp(this.configuration)
|
|
31315
|
+
.getEntityMemoryItems(requestParameters.workspaceId, requestParameters.objectId, requestParameters.filter, requestParameters.include, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options)
|
|
31316
|
+
.then((request) => request(this.axios, this.basePath));
|
|
31317
|
+
}
|
|
30778
31318
|
/**
|
|
30779
31319
|
*
|
|
30780
31320
|
* @summary Get a Metric
|
|
@@ -31203,6 +31743,18 @@ export class EntitiesApi extends BaseAPI {
|
|
|
31203
31743
|
.patchEntityLlmEndpoints(requestParameters.id, requestParameters.jsonApiLlmEndpointPatchDocument, requestParameters.filter, options)
|
|
31204
31744
|
.then((request) => request(this.axios, this.basePath));
|
|
31205
31745
|
}
|
|
31746
|
+
/**
|
|
31747
|
+
*
|
|
31748
|
+
* @param {EntitiesApiPatchEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
31749
|
+
* @param {*} [options] Override http request option.
|
|
31750
|
+
* @throws {RequiredError}
|
|
31751
|
+
* @memberof EntitiesApi
|
|
31752
|
+
*/
|
|
31753
|
+
patchEntityMemoryItems(requestParameters, options) {
|
|
31754
|
+
return EntitiesApiFp(this.configuration)
|
|
31755
|
+
.patchEntityMemoryItems(requestParameters.workspaceId, requestParameters.objectId, requestParameters.jsonApiMemoryItemPatchDocument, requestParameters.filter, requestParameters.include, options)
|
|
31756
|
+
.then((request) => request(this.axios, this.basePath));
|
|
31757
|
+
}
|
|
31206
31758
|
/**
|
|
31207
31759
|
*
|
|
31208
31760
|
* @summary Patch a Metric
|
|
@@ -31580,6 +32132,18 @@ export class EntitiesApi extends BaseAPI {
|
|
|
31580
32132
|
.updateEntityLlmEndpoints(requestParameters.id, requestParameters.jsonApiLlmEndpointInDocument, requestParameters.filter, options)
|
|
31581
32133
|
.then((request) => request(this.axios, this.basePath));
|
|
31582
32134
|
}
|
|
32135
|
+
/**
|
|
32136
|
+
*
|
|
32137
|
+
* @param {EntitiesApiUpdateEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
32138
|
+
* @param {*} [options] Override http request option.
|
|
32139
|
+
* @throws {RequiredError}
|
|
32140
|
+
* @memberof EntitiesApi
|
|
32141
|
+
*/
|
|
32142
|
+
updateEntityMemoryItems(requestParameters, options) {
|
|
32143
|
+
return EntitiesApiFp(this.configuration)
|
|
32144
|
+
.updateEntityMemoryItems(requestParameters.workspaceId, requestParameters.objectId, requestParameters.jsonApiMemoryItemInDocument, requestParameters.filter, requestParameters.include, options)
|
|
32145
|
+
.then((request) => request(this.axios, this.basePath));
|
|
32146
|
+
}
|
|
31583
32147
|
/**
|
|
31584
32148
|
*
|
|
31585
32149
|
* @summary Put a Metric
|
|
@@ -57877,6 +58441,56 @@ export const WorkspaceObjectControllerApiAxiosParamCreator = function (configura
|
|
|
57877
58441
|
options: localVarRequestOptions,
|
|
57878
58442
|
};
|
|
57879
58443
|
},
|
|
58444
|
+
/**
|
|
58445
|
+
*
|
|
58446
|
+
* @param {string} workspaceId
|
|
58447
|
+
* @param {JsonApiMemoryItemPostOptionalIdDocument} jsonApiMemoryItemPostOptionalIdDocument
|
|
58448
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | '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.
|
|
58449
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
58450
|
+
* @param {*} [options] Override http request option.
|
|
58451
|
+
* @throws {RequiredError}
|
|
58452
|
+
*/
|
|
58453
|
+
createEntityMemoryItems: async (workspaceId, jsonApiMemoryItemPostOptionalIdDocument, include, metaInclude, options = {}) => {
|
|
58454
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
58455
|
+
assertParamExists("createEntityMemoryItems", "workspaceId", workspaceId);
|
|
58456
|
+
// verify required parameter 'jsonApiMemoryItemPostOptionalIdDocument' is not null or undefined
|
|
58457
|
+
assertParamExists("createEntityMemoryItems", "jsonApiMemoryItemPostOptionalIdDocument", jsonApiMemoryItemPostOptionalIdDocument);
|
|
58458
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/memoryItems`.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
58459
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
58460
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
58461
|
+
let baseOptions;
|
|
58462
|
+
if (configuration) {
|
|
58463
|
+
baseOptions = configuration.baseOptions;
|
|
58464
|
+
}
|
|
58465
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
58466
|
+
const localVarHeaderParameter = {};
|
|
58467
|
+
const localVarQueryParameter = {};
|
|
58468
|
+
if (include) {
|
|
58469
|
+
localVarQueryParameter["include"] = include.join(COLLECTION_FORMATS.csv);
|
|
58470
|
+
}
|
|
58471
|
+
if (metaInclude) {
|
|
58472
|
+
localVarQueryParameter["metaInclude"] = Array.from(metaInclude).join(COLLECTION_FORMATS.csv);
|
|
58473
|
+
}
|
|
58474
|
+
localVarHeaderParameter["Content-Type"] = "application/vnd.gooddata.api+json";
|
|
58475
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
58476
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
58477
|
+
localVarRequestOptions.headers = {
|
|
58478
|
+
...localVarHeaderParameter,
|
|
58479
|
+
...headersFromBaseOptions,
|
|
58480
|
+
...options.headers,
|
|
58481
|
+
};
|
|
58482
|
+
const needsSerialization = typeof jsonApiMemoryItemPostOptionalIdDocument !== "string" ||
|
|
58483
|
+
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
58484
|
+
localVarRequestOptions.data = needsSerialization
|
|
58485
|
+
? JSON.stringify(jsonApiMemoryItemPostOptionalIdDocument !== undefined
|
|
58486
|
+
? jsonApiMemoryItemPostOptionalIdDocument
|
|
58487
|
+
: {})
|
|
58488
|
+
: jsonApiMemoryItemPostOptionalIdDocument || "";
|
|
58489
|
+
return {
|
|
58490
|
+
url: toPathString(localVarUrlObj),
|
|
58491
|
+
options: localVarRequestOptions,
|
|
58492
|
+
};
|
|
58493
|
+
},
|
|
57880
58494
|
/**
|
|
57881
58495
|
*
|
|
57882
58496
|
* @summary Post Metrics
|
|
@@ -58507,6 +59121,46 @@ export const WorkspaceObjectControllerApiAxiosParamCreator = function (configura
|
|
|
58507
59121
|
options: localVarRequestOptions,
|
|
58508
59122
|
};
|
|
58509
59123
|
},
|
|
59124
|
+
/**
|
|
59125
|
+
*
|
|
59126
|
+
* @param {string} workspaceId
|
|
59127
|
+
* @param {string} objectId
|
|
59128
|
+
* @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\').
|
|
59129
|
+
* @param {*} [options] Override http request option.
|
|
59130
|
+
* @throws {RequiredError}
|
|
59131
|
+
*/
|
|
59132
|
+
deleteEntityMemoryItems: async (workspaceId, objectId, filter, options = {}) => {
|
|
59133
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
59134
|
+
assertParamExists("deleteEntityMemoryItems", "workspaceId", workspaceId);
|
|
59135
|
+
// verify required parameter 'objectId' is not null or undefined
|
|
59136
|
+
assertParamExists("deleteEntityMemoryItems", "objectId", objectId);
|
|
59137
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId}`
|
|
59138
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
59139
|
+
.replace(`{${"objectId"}}`, encodeURIComponent(String(objectId)));
|
|
59140
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
59141
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
59142
|
+
let baseOptions;
|
|
59143
|
+
if (configuration) {
|
|
59144
|
+
baseOptions = configuration.baseOptions;
|
|
59145
|
+
}
|
|
59146
|
+
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
59147
|
+
const localVarHeaderParameter = {};
|
|
59148
|
+
const localVarQueryParameter = {};
|
|
59149
|
+
if (filter !== undefined) {
|
|
59150
|
+
localVarQueryParameter["filter"] = filter;
|
|
59151
|
+
}
|
|
59152
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
59153
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
59154
|
+
localVarRequestOptions.headers = {
|
|
59155
|
+
...localVarHeaderParameter,
|
|
59156
|
+
...headersFromBaseOptions,
|
|
59157
|
+
...options.headers,
|
|
59158
|
+
};
|
|
59159
|
+
return {
|
|
59160
|
+
url: toPathString(localVarUrlObj),
|
|
59161
|
+
options: localVarRequestOptions,
|
|
59162
|
+
};
|
|
59163
|
+
},
|
|
58510
59164
|
/**
|
|
58511
59165
|
*
|
|
58512
59166
|
* @summary Delete a Metric
|
|
@@ -59580,6 +60234,69 @@ export const WorkspaceObjectControllerApiAxiosParamCreator = function (configura
|
|
|
59580
60234
|
options: localVarRequestOptions,
|
|
59581
60235
|
};
|
|
59582
60236
|
},
|
|
60237
|
+
/**
|
|
60238
|
+
*
|
|
60239
|
+
* @param {string} workspaceId
|
|
60240
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
60241
|
+
* @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\').
|
|
60242
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | '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.
|
|
60243
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
60244
|
+
* @param {number} [size] The size of the page to be returned
|
|
60245
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
60246
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
60247
|
+
* @param {Array<'origin' | 'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
60248
|
+
* @param {*} [options] Override http request option.
|
|
60249
|
+
* @throws {RequiredError}
|
|
60250
|
+
*/
|
|
60251
|
+
getAllEntitiesMemoryItems: async (workspaceId, origin, filter, include, page, size, sort, xGDCVALIDATERELATIONS, metaInclude, options = {}) => {
|
|
60252
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
60253
|
+
assertParamExists("getAllEntitiesMemoryItems", "workspaceId", workspaceId);
|
|
60254
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/memoryItems`.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
60255
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
60256
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
60257
|
+
let baseOptions;
|
|
60258
|
+
if (configuration) {
|
|
60259
|
+
baseOptions = configuration.baseOptions;
|
|
60260
|
+
}
|
|
60261
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
60262
|
+
const localVarHeaderParameter = {};
|
|
60263
|
+
const localVarQueryParameter = {};
|
|
60264
|
+
if (origin !== undefined) {
|
|
60265
|
+
localVarQueryParameter["origin"] = origin;
|
|
60266
|
+
}
|
|
60267
|
+
if (filter !== undefined) {
|
|
60268
|
+
localVarQueryParameter["filter"] = filter;
|
|
60269
|
+
}
|
|
60270
|
+
if (include) {
|
|
60271
|
+
localVarQueryParameter["include"] = include.join(COLLECTION_FORMATS.csv);
|
|
60272
|
+
}
|
|
60273
|
+
if (page !== undefined) {
|
|
60274
|
+
localVarQueryParameter["page"] = page;
|
|
60275
|
+
}
|
|
60276
|
+
if (size !== undefined) {
|
|
60277
|
+
localVarQueryParameter["size"] = size;
|
|
60278
|
+
}
|
|
60279
|
+
if (sort) {
|
|
60280
|
+
localVarQueryParameter["sort"] = sort;
|
|
60281
|
+
}
|
|
60282
|
+
if (metaInclude) {
|
|
60283
|
+
localVarQueryParameter["metaInclude"] = Array.from(metaInclude).join(COLLECTION_FORMATS.csv);
|
|
60284
|
+
}
|
|
60285
|
+
if (xGDCVALIDATERELATIONS !== undefined && xGDCVALIDATERELATIONS !== null) {
|
|
60286
|
+
localVarHeaderParameter["X-GDC-VALIDATE-RELATIONS"] = String(JSON.stringify(xGDCVALIDATERELATIONS));
|
|
60287
|
+
}
|
|
60288
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
60289
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
60290
|
+
localVarRequestOptions.headers = {
|
|
60291
|
+
...localVarHeaderParameter,
|
|
60292
|
+
...headersFromBaseOptions,
|
|
60293
|
+
...options.headers,
|
|
60294
|
+
};
|
|
60295
|
+
return {
|
|
60296
|
+
url: toPathString(localVarUrlObj),
|
|
60297
|
+
options: localVarRequestOptions,
|
|
60298
|
+
};
|
|
60299
|
+
},
|
|
59583
60300
|
/**
|
|
59584
60301
|
*
|
|
59585
60302
|
* @summary Get all Metrics
|
|
@@ -60640,6 +61357,58 @@ export const WorkspaceObjectControllerApiAxiosParamCreator = function (configura
|
|
|
60640
61357
|
options: localVarRequestOptions,
|
|
60641
61358
|
};
|
|
60642
61359
|
},
|
|
61360
|
+
/**
|
|
61361
|
+
*
|
|
61362
|
+
* @param {string} workspaceId
|
|
61363
|
+
* @param {string} objectId
|
|
61364
|
+
* @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\').
|
|
61365
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | '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.
|
|
61366
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
61367
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
61368
|
+
* @param {*} [options] Override http request option.
|
|
61369
|
+
* @throws {RequiredError}
|
|
61370
|
+
*/
|
|
61371
|
+
getEntityMemoryItems: async (workspaceId, objectId, filter, include, xGDCVALIDATERELATIONS, metaInclude, options = {}) => {
|
|
61372
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
61373
|
+
assertParamExists("getEntityMemoryItems", "workspaceId", workspaceId);
|
|
61374
|
+
// verify required parameter 'objectId' is not null or undefined
|
|
61375
|
+
assertParamExists("getEntityMemoryItems", "objectId", objectId);
|
|
61376
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId}`
|
|
61377
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
61378
|
+
.replace(`{${"objectId"}}`, encodeURIComponent(String(objectId)));
|
|
61379
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
61380
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
61381
|
+
let baseOptions;
|
|
61382
|
+
if (configuration) {
|
|
61383
|
+
baseOptions = configuration.baseOptions;
|
|
61384
|
+
}
|
|
61385
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
61386
|
+
const localVarHeaderParameter = {};
|
|
61387
|
+
const localVarQueryParameter = {};
|
|
61388
|
+
if (filter !== undefined) {
|
|
61389
|
+
localVarQueryParameter["filter"] = filter;
|
|
61390
|
+
}
|
|
61391
|
+
if (include) {
|
|
61392
|
+
localVarQueryParameter["include"] = include.join(COLLECTION_FORMATS.csv);
|
|
61393
|
+
}
|
|
61394
|
+
if (metaInclude) {
|
|
61395
|
+
localVarQueryParameter["metaInclude"] = Array.from(metaInclude).join(COLLECTION_FORMATS.csv);
|
|
61396
|
+
}
|
|
61397
|
+
if (xGDCVALIDATERELATIONS !== undefined && xGDCVALIDATERELATIONS !== null) {
|
|
61398
|
+
localVarHeaderParameter["X-GDC-VALIDATE-RELATIONS"] = String(JSON.stringify(xGDCVALIDATERELATIONS));
|
|
61399
|
+
}
|
|
61400
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
61401
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
61402
|
+
localVarRequestOptions.headers = {
|
|
61403
|
+
...localVarHeaderParameter,
|
|
61404
|
+
...headersFromBaseOptions,
|
|
61405
|
+
...options.headers,
|
|
61406
|
+
};
|
|
61407
|
+
return {
|
|
61408
|
+
url: toPathString(localVarUrlObj),
|
|
61409
|
+
options: localVarRequestOptions,
|
|
61410
|
+
};
|
|
61411
|
+
},
|
|
60643
61412
|
/**
|
|
60644
61413
|
*
|
|
60645
61414
|
* @summary Get a Metric
|
|
@@ -61394,6 +62163,59 @@ export const WorkspaceObjectControllerApiAxiosParamCreator = function (configura
|
|
|
61394
62163
|
options: localVarRequestOptions,
|
|
61395
62164
|
};
|
|
61396
62165
|
},
|
|
62166
|
+
/**
|
|
62167
|
+
*
|
|
62168
|
+
* @param {string} workspaceId
|
|
62169
|
+
* @param {string} objectId
|
|
62170
|
+
* @param {JsonApiMemoryItemPatchDocument} jsonApiMemoryItemPatchDocument
|
|
62171
|
+
* @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\').
|
|
62172
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | '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.
|
|
62173
|
+
* @param {*} [options] Override http request option.
|
|
62174
|
+
* @throws {RequiredError}
|
|
62175
|
+
*/
|
|
62176
|
+
patchEntityMemoryItems: async (workspaceId, objectId, jsonApiMemoryItemPatchDocument, filter, include, options = {}) => {
|
|
62177
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
62178
|
+
assertParamExists("patchEntityMemoryItems", "workspaceId", workspaceId);
|
|
62179
|
+
// verify required parameter 'objectId' is not null or undefined
|
|
62180
|
+
assertParamExists("patchEntityMemoryItems", "objectId", objectId);
|
|
62181
|
+
// verify required parameter 'jsonApiMemoryItemPatchDocument' is not null or undefined
|
|
62182
|
+
assertParamExists("patchEntityMemoryItems", "jsonApiMemoryItemPatchDocument", jsonApiMemoryItemPatchDocument);
|
|
62183
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId}`
|
|
62184
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
62185
|
+
.replace(`{${"objectId"}}`, encodeURIComponent(String(objectId)));
|
|
62186
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
62187
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
62188
|
+
let baseOptions;
|
|
62189
|
+
if (configuration) {
|
|
62190
|
+
baseOptions = configuration.baseOptions;
|
|
62191
|
+
}
|
|
62192
|
+
const localVarRequestOptions = { method: "PATCH", ...baseOptions, ...options };
|
|
62193
|
+
const localVarHeaderParameter = {};
|
|
62194
|
+
const localVarQueryParameter = {};
|
|
62195
|
+
if (filter !== undefined) {
|
|
62196
|
+
localVarQueryParameter["filter"] = filter;
|
|
62197
|
+
}
|
|
62198
|
+
if (include) {
|
|
62199
|
+
localVarQueryParameter["include"] = include.join(COLLECTION_FORMATS.csv);
|
|
62200
|
+
}
|
|
62201
|
+
localVarHeaderParameter["Content-Type"] = "application/vnd.gooddata.api+json";
|
|
62202
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
62203
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
62204
|
+
localVarRequestOptions.headers = {
|
|
62205
|
+
...localVarHeaderParameter,
|
|
62206
|
+
...headersFromBaseOptions,
|
|
62207
|
+
...options.headers,
|
|
62208
|
+
};
|
|
62209
|
+
const needsSerialization = typeof jsonApiMemoryItemPatchDocument !== "string" ||
|
|
62210
|
+
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
62211
|
+
localVarRequestOptions.data = needsSerialization
|
|
62212
|
+
? JSON.stringify(jsonApiMemoryItemPatchDocument !== undefined ? jsonApiMemoryItemPatchDocument : {})
|
|
62213
|
+
: jsonApiMemoryItemPatchDocument || "";
|
|
62214
|
+
return {
|
|
62215
|
+
url: toPathString(localVarUrlObj),
|
|
62216
|
+
options: localVarRequestOptions,
|
|
62217
|
+
};
|
|
62218
|
+
},
|
|
61397
62219
|
/**
|
|
61398
62220
|
*
|
|
61399
62221
|
* @summary Patch a Metric
|
|
@@ -62160,6 +62982,59 @@ export const WorkspaceObjectControllerApiAxiosParamCreator = function (configura
|
|
|
62160
62982
|
options: localVarRequestOptions,
|
|
62161
62983
|
};
|
|
62162
62984
|
},
|
|
62985
|
+
/**
|
|
62986
|
+
*
|
|
62987
|
+
* @param {string} workspaceId
|
|
62988
|
+
* @param {string} objectId
|
|
62989
|
+
* @param {JsonApiMemoryItemInDocument} jsonApiMemoryItemInDocument
|
|
62990
|
+
* @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\').
|
|
62991
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | '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.
|
|
62992
|
+
* @param {*} [options] Override http request option.
|
|
62993
|
+
* @throws {RequiredError}
|
|
62994
|
+
*/
|
|
62995
|
+
updateEntityMemoryItems: async (workspaceId, objectId, jsonApiMemoryItemInDocument, filter, include, options = {}) => {
|
|
62996
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
62997
|
+
assertParamExists("updateEntityMemoryItems", "workspaceId", workspaceId);
|
|
62998
|
+
// verify required parameter 'objectId' is not null or undefined
|
|
62999
|
+
assertParamExists("updateEntityMemoryItems", "objectId", objectId);
|
|
63000
|
+
// verify required parameter 'jsonApiMemoryItemInDocument' is not null or undefined
|
|
63001
|
+
assertParamExists("updateEntityMemoryItems", "jsonApiMemoryItemInDocument", jsonApiMemoryItemInDocument);
|
|
63002
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId}`
|
|
63003
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
63004
|
+
.replace(`{${"objectId"}}`, encodeURIComponent(String(objectId)));
|
|
63005
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
63006
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
63007
|
+
let baseOptions;
|
|
63008
|
+
if (configuration) {
|
|
63009
|
+
baseOptions = configuration.baseOptions;
|
|
63010
|
+
}
|
|
63011
|
+
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
63012
|
+
const localVarHeaderParameter = {};
|
|
63013
|
+
const localVarQueryParameter = {};
|
|
63014
|
+
if (filter !== undefined) {
|
|
63015
|
+
localVarQueryParameter["filter"] = filter;
|
|
63016
|
+
}
|
|
63017
|
+
if (include) {
|
|
63018
|
+
localVarQueryParameter["include"] = include.join(COLLECTION_FORMATS.csv);
|
|
63019
|
+
}
|
|
63020
|
+
localVarHeaderParameter["Content-Type"] = "application/vnd.gooddata.api+json";
|
|
63021
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
63022
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
63023
|
+
localVarRequestOptions.headers = {
|
|
63024
|
+
...localVarHeaderParameter,
|
|
63025
|
+
...headersFromBaseOptions,
|
|
63026
|
+
...options.headers,
|
|
63027
|
+
};
|
|
63028
|
+
const needsSerialization = typeof jsonApiMemoryItemInDocument !== "string" ||
|
|
63029
|
+
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
63030
|
+
localVarRequestOptions.data = needsSerialization
|
|
63031
|
+
? JSON.stringify(jsonApiMemoryItemInDocument !== undefined ? jsonApiMemoryItemInDocument : {})
|
|
63032
|
+
: jsonApiMemoryItemInDocument || "";
|
|
63033
|
+
return {
|
|
63034
|
+
url: toPathString(localVarUrlObj),
|
|
63035
|
+
options: localVarRequestOptions,
|
|
63036
|
+
};
|
|
63037
|
+
},
|
|
62163
63038
|
/**
|
|
62164
63039
|
*
|
|
62165
63040
|
* @summary Put a Metric
|
|
@@ -62607,6 +63482,19 @@ export const WorkspaceObjectControllerApiFp = function (configuration) {
|
|
|
62607
63482
|
const localVarAxiosArgs = await localVarAxiosParamCreator.createEntityFilterViews(workspaceId, jsonApiFilterViewInDocument, include, options);
|
|
62608
63483
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
62609
63484
|
},
|
|
63485
|
+
/**
|
|
63486
|
+
*
|
|
63487
|
+
* @param {string} workspaceId
|
|
63488
|
+
* @param {JsonApiMemoryItemPostOptionalIdDocument} jsonApiMemoryItemPostOptionalIdDocument
|
|
63489
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | '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.
|
|
63490
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
63491
|
+
* @param {*} [options] Override http request option.
|
|
63492
|
+
* @throws {RequiredError}
|
|
63493
|
+
*/
|
|
63494
|
+
async createEntityMemoryItems(workspaceId, jsonApiMemoryItemPostOptionalIdDocument, include, metaInclude, options) {
|
|
63495
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createEntityMemoryItems(workspaceId, jsonApiMemoryItemPostOptionalIdDocument, include, metaInclude, options);
|
|
63496
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
63497
|
+
},
|
|
62610
63498
|
/**
|
|
62611
63499
|
*
|
|
62612
63500
|
* @summary Post Metrics
|
|
@@ -62794,6 +63682,18 @@ export const WorkspaceObjectControllerApiFp = function (configuration) {
|
|
|
62794
63682
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEntityFilterViews(workspaceId, objectId, filter, options);
|
|
62795
63683
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
62796
63684
|
},
|
|
63685
|
+
/**
|
|
63686
|
+
*
|
|
63687
|
+
* @param {string} workspaceId
|
|
63688
|
+
* @param {string} objectId
|
|
63689
|
+
* @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\').
|
|
63690
|
+
* @param {*} [options] Override http request option.
|
|
63691
|
+
* @throws {RequiredError}
|
|
63692
|
+
*/
|
|
63693
|
+
async deleteEntityMemoryItems(workspaceId, objectId, filter, options) {
|
|
63694
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEntityMemoryItems(workspaceId, objectId, filter, options);
|
|
63695
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
63696
|
+
},
|
|
62797
63697
|
/**
|
|
62798
63698
|
*
|
|
62799
63699
|
* @summary Delete a Metric
|
|
@@ -63117,6 +64017,24 @@ export const WorkspaceObjectControllerApiFp = function (configuration) {
|
|
|
63117
64017
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getAllEntitiesLabels(workspaceId, origin, filter, include, page, size, sort, xGDCVALIDATERELATIONS, metaInclude, options);
|
|
63118
64018
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
63119
64019
|
},
|
|
64020
|
+
/**
|
|
64021
|
+
*
|
|
64022
|
+
* @param {string} workspaceId
|
|
64023
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
64024
|
+
* @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\').
|
|
64025
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | '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.
|
|
64026
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
64027
|
+
* @param {number} [size] The size of the page to be returned
|
|
64028
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
64029
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
64030
|
+
* @param {Array<'origin' | 'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
64031
|
+
* @param {*} [options] Override http request option.
|
|
64032
|
+
* @throws {RequiredError}
|
|
64033
|
+
*/
|
|
64034
|
+
async getAllEntitiesMemoryItems(workspaceId, origin, filter, include, page, size, sort, xGDCVALIDATERELATIONS, metaInclude, options) {
|
|
64035
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getAllEntitiesMemoryItems(workspaceId, origin, filter, include, page, size, sort, xGDCVALIDATERELATIONS, metaInclude, options);
|
|
64036
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
64037
|
+
},
|
|
63120
64038
|
/**
|
|
63121
64039
|
*
|
|
63122
64040
|
* @summary Get all Metrics
|
|
@@ -63435,6 +64353,21 @@ export const WorkspaceObjectControllerApiFp = function (configuration) {
|
|
|
63435
64353
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getEntityLabels(workspaceId, objectId, filter, include, xGDCVALIDATERELATIONS, metaInclude, options);
|
|
63436
64354
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
63437
64355
|
},
|
|
64356
|
+
/**
|
|
64357
|
+
*
|
|
64358
|
+
* @param {string} workspaceId
|
|
64359
|
+
* @param {string} objectId
|
|
64360
|
+
* @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\').
|
|
64361
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | '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.
|
|
64362
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
64363
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
64364
|
+
* @param {*} [options] Override http request option.
|
|
64365
|
+
* @throws {RequiredError}
|
|
64366
|
+
*/
|
|
64367
|
+
async getEntityMemoryItems(workspaceId, objectId, filter, include, xGDCVALIDATERELATIONS, metaInclude, options) {
|
|
64368
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getEntityMemoryItems(workspaceId, objectId, filter, include, xGDCVALIDATERELATIONS, metaInclude, options);
|
|
64369
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
64370
|
+
},
|
|
63438
64371
|
/**
|
|
63439
64372
|
*
|
|
63440
64373
|
* @summary Get a Metric
|
|
@@ -63649,6 +64582,20 @@ export const WorkspaceObjectControllerApiFp = function (configuration) {
|
|
|
63649
64582
|
const localVarAxiosArgs = await localVarAxiosParamCreator.patchEntityFilterViews(workspaceId, objectId, jsonApiFilterViewPatchDocument, filter, include, options);
|
|
63650
64583
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
63651
64584
|
},
|
|
64585
|
+
/**
|
|
64586
|
+
*
|
|
64587
|
+
* @param {string} workspaceId
|
|
64588
|
+
* @param {string} objectId
|
|
64589
|
+
* @param {JsonApiMemoryItemPatchDocument} jsonApiMemoryItemPatchDocument
|
|
64590
|
+
* @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\').
|
|
64591
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | '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.
|
|
64592
|
+
* @param {*} [options] Override http request option.
|
|
64593
|
+
* @throws {RequiredError}
|
|
64594
|
+
*/
|
|
64595
|
+
async patchEntityMemoryItems(workspaceId, objectId, jsonApiMemoryItemPatchDocument, filter, include, options) {
|
|
64596
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchEntityMemoryItems(workspaceId, objectId, jsonApiMemoryItemPatchDocument, filter, include, options);
|
|
64597
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
64598
|
+
},
|
|
63652
64599
|
/**
|
|
63653
64600
|
*
|
|
63654
64601
|
* @summary Patch a Metric
|
|
@@ -63857,6 +64804,20 @@ export const WorkspaceObjectControllerApiFp = function (configuration) {
|
|
|
63857
64804
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateEntityFilterViews(workspaceId, objectId, jsonApiFilterViewInDocument, filter, include, options);
|
|
63858
64805
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
63859
64806
|
},
|
|
64807
|
+
/**
|
|
64808
|
+
*
|
|
64809
|
+
* @param {string} workspaceId
|
|
64810
|
+
* @param {string} objectId
|
|
64811
|
+
* @param {JsonApiMemoryItemInDocument} jsonApiMemoryItemInDocument
|
|
64812
|
+
* @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\').
|
|
64813
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | '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.
|
|
64814
|
+
* @param {*} [options] Override http request option.
|
|
64815
|
+
* @throws {RequiredError}
|
|
64816
|
+
*/
|
|
64817
|
+
async updateEntityMemoryItems(workspaceId, objectId, jsonApiMemoryItemInDocument, filter, include, options) {
|
|
64818
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateEntityMemoryItems(workspaceId, objectId, jsonApiMemoryItemInDocument, filter, include, options);
|
|
64819
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
64820
|
+
},
|
|
63860
64821
|
/**
|
|
63861
64822
|
*
|
|
63862
64823
|
* @summary Put a Metric
|
|
@@ -64051,6 +65012,17 @@ export const WorkspaceObjectControllerApiFactory = function (configuration, base
|
|
|
64051
65012
|
.createEntityFilterViews(requestParameters.workspaceId, requestParameters.jsonApiFilterViewInDocument, requestParameters.include, options)
|
|
64052
65013
|
.then((request) => request(axios, basePath));
|
|
64053
65014
|
},
|
|
65015
|
+
/**
|
|
65016
|
+
*
|
|
65017
|
+
* @param {WorkspaceObjectControllerApiCreateEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
65018
|
+
* @param {*} [options] Override http request option.
|
|
65019
|
+
* @throws {RequiredError}
|
|
65020
|
+
*/
|
|
65021
|
+
createEntityMemoryItems(requestParameters, options) {
|
|
65022
|
+
return localVarFp
|
|
65023
|
+
.createEntityMemoryItems(requestParameters.workspaceId, requestParameters.jsonApiMemoryItemPostOptionalIdDocument, requestParameters.include, requestParameters.metaInclude, options)
|
|
65024
|
+
.then((request) => request(axios, basePath));
|
|
65025
|
+
},
|
|
64054
65026
|
/**
|
|
64055
65027
|
*
|
|
64056
65028
|
* @summary Post Metrics
|
|
@@ -64219,6 +65191,17 @@ export const WorkspaceObjectControllerApiFactory = function (configuration, base
|
|
|
64219
65191
|
.deleteEntityFilterViews(requestParameters.workspaceId, requestParameters.objectId, requestParameters.filter, options)
|
|
64220
65192
|
.then((request) => request(axios, basePath));
|
|
64221
65193
|
},
|
|
65194
|
+
/**
|
|
65195
|
+
*
|
|
65196
|
+
* @param {WorkspaceObjectControllerApiDeleteEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
65197
|
+
* @param {*} [options] Override http request option.
|
|
65198
|
+
* @throws {RequiredError}
|
|
65199
|
+
*/
|
|
65200
|
+
deleteEntityMemoryItems(requestParameters, options) {
|
|
65201
|
+
return localVarFp
|
|
65202
|
+
.deleteEntityMemoryItems(requestParameters.workspaceId, requestParameters.objectId, requestParameters.filter, options)
|
|
65203
|
+
.then((request) => request(axios, basePath));
|
|
65204
|
+
},
|
|
64222
65205
|
/**
|
|
64223
65206
|
*
|
|
64224
65207
|
* @summary Delete a Metric
|
|
@@ -64446,6 +65429,17 @@ export const WorkspaceObjectControllerApiFactory = function (configuration, base
|
|
|
64446
65429
|
.getAllEntitiesLabels(requestParameters.workspaceId, requestParameters.origin, requestParameters.filter, requestParameters.include, requestParameters.page, requestParameters.size, requestParameters.sort, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options)
|
|
64447
65430
|
.then((request) => request(axios, basePath));
|
|
64448
65431
|
},
|
|
65432
|
+
/**
|
|
65433
|
+
*
|
|
65434
|
+
* @param {WorkspaceObjectControllerApiGetAllEntitiesMemoryItemsRequest} requestParameters Request parameters.
|
|
65435
|
+
* @param {*} [options] Override http request option.
|
|
65436
|
+
* @throws {RequiredError}
|
|
65437
|
+
*/
|
|
65438
|
+
getAllEntitiesMemoryItems(requestParameters, options) {
|
|
65439
|
+
return localVarFp
|
|
65440
|
+
.getAllEntitiesMemoryItems(requestParameters.workspaceId, requestParameters.origin, requestParameters.filter, requestParameters.include, requestParameters.page, requestParameters.size, requestParameters.sort, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options)
|
|
65441
|
+
.then((request) => request(axios, basePath));
|
|
65442
|
+
},
|
|
64449
65443
|
/**
|
|
64450
65444
|
*
|
|
64451
65445
|
* @summary Get all Metrics
|
|
@@ -64673,6 +65667,17 @@ export const WorkspaceObjectControllerApiFactory = function (configuration, base
|
|
|
64673
65667
|
.getEntityLabels(requestParameters.workspaceId, requestParameters.objectId, requestParameters.filter, requestParameters.include, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options)
|
|
64674
65668
|
.then((request) => request(axios, basePath));
|
|
64675
65669
|
},
|
|
65670
|
+
/**
|
|
65671
|
+
*
|
|
65672
|
+
* @param {WorkspaceObjectControllerApiGetEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
65673
|
+
* @param {*} [options] Override http request option.
|
|
65674
|
+
* @throws {RequiredError}
|
|
65675
|
+
*/
|
|
65676
|
+
getEntityMemoryItems(requestParameters, options) {
|
|
65677
|
+
return localVarFp
|
|
65678
|
+
.getEntityMemoryItems(requestParameters.workspaceId, requestParameters.objectId, requestParameters.filter, requestParameters.include, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options)
|
|
65679
|
+
.then((request) => request(axios, basePath));
|
|
65680
|
+
},
|
|
64676
65681
|
/**
|
|
64677
65682
|
*
|
|
64678
65683
|
* @summary Get a Metric
|
|
@@ -64841,6 +65846,17 @@ export const WorkspaceObjectControllerApiFactory = function (configuration, base
|
|
|
64841
65846
|
.patchEntityFilterViews(requestParameters.workspaceId, requestParameters.objectId, requestParameters.jsonApiFilterViewPatchDocument, requestParameters.filter, requestParameters.include, options)
|
|
64842
65847
|
.then((request) => request(axios, basePath));
|
|
64843
65848
|
},
|
|
65849
|
+
/**
|
|
65850
|
+
*
|
|
65851
|
+
* @param {WorkspaceObjectControllerApiPatchEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
65852
|
+
* @param {*} [options] Override http request option.
|
|
65853
|
+
* @throws {RequiredError}
|
|
65854
|
+
*/
|
|
65855
|
+
patchEntityMemoryItems(requestParameters, options) {
|
|
65856
|
+
return localVarFp
|
|
65857
|
+
.patchEntityMemoryItems(requestParameters.workspaceId, requestParameters.objectId, requestParameters.jsonApiMemoryItemPatchDocument, requestParameters.filter, requestParameters.include, options)
|
|
65858
|
+
.then((request) => request(axios, basePath));
|
|
65859
|
+
},
|
|
64844
65860
|
/**
|
|
64845
65861
|
*
|
|
64846
65862
|
* @summary Patch a Metric
|
|
@@ -65009,6 +66025,17 @@ export const WorkspaceObjectControllerApiFactory = function (configuration, base
|
|
|
65009
66025
|
.updateEntityFilterViews(requestParameters.workspaceId, requestParameters.objectId, requestParameters.jsonApiFilterViewInDocument, requestParameters.filter, requestParameters.include, options)
|
|
65010
66026
|
.then((request) => request(axios, basePath));
|
|
65011
66027
|
},
|
|
66028
|
+
/**
|
|
66029
|
+
*
|
|
66030
|
+
* @param {WorkspaceObjectControllerApiUpdateEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
66031
|
+
* @param {*} [options] Override http request option.
|
|
66032
|
+
* @throws {RequiredError}
|
|
66033
|
+
*/
|
|
66034
|
+
updateEntityMemoryItems(requestParameters, options) {
|
|
66035
|
+
return localVarFp
|
|
66036
|
+
.updateEntityMemoryItems(requestParameters.workspaceId, requestParameters.objectId, requestParameters.jsonApiMemoryItemInDocument, requestParameters.filter, requestParameters.include, options)
|
|
66037
|
+
.then((request) => request(axios, basePath));
|
|
66038
|
+
},
|
|
65012
66039
|
/**
|
|
65013
66040
|
*
|
|
65014
66041
|
* @summary Put a Metric
|
|
@@ -65194,6 +66221,18 @@ export class WorkspaceObjectControllerApi extends BaseAPI {
|
|
|
65194
66221
|
.createEntityFilterViews(requestParameters.workspaceId, requestParameters.jsonApiFilterViewInDocument, requestParameters.include, options)
|
|
65195
66222
|
.then((request) => request(this.axios, this.basePath));
|
|
65196
66223
|
}
|
|
66224
|
+
/**
|
|
66225
|
+
*
|
|
66226
|
+
* @param {WorkspaceObjectControllerApiCreateEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
66227
|
+
* @param {*} [options] Override http request option.
|
|
66228
|
+
* @throws {RequiredError}
|
|
66229
|
+
* @memberof WorkspaceObjectControllerApi
|
|
66230
|
+
*/
|
|
66231
|
+
createEntityMemoryItems(requestParameters, options) {
|
|
66232
|
+
return WorkspaceObjectControllerApiFp(this.configuration)
|
|
66233
|
+
.createEntityMemoryItems(requestParameters.workspaceId, requestParameters.jsonApiMemoryItemPostOptionalIdDocument, requestParameters.include, requestParameters.metaInclude, options)
|
|
66234
|
+
.then((request) => request(this.axios, this.basePath));
|
|
66235
|
+
}
|
|
65197
66236
|
/**
|
|
65198
66237
|
*
|
|
65199
66238
|
* @summary Post Metrics
|
|
@@ -65376,6 +66415,18 @@ export class WorkspaceObjectControllerApi extends BaseAPI {
|
|
|
65376
66415
|
.deleteEntityFilterViews(requestParameters.workspaceId, requestParameters.objectId, requestParameters.filter, options)
|
|
65377
66416
|
.then((request) => request(this.axios, this.basePath));
|
|
65378
66417
|
}
|
|
66418
|
+
/**
|
|
66419
|
+
*
|
|
66420
|
+
* @param {WorkspaceObjectControllerApiDeleteEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
66421
|
+
* @param {*} [options] Override http request option.
|
|
66422
|
+
* @throws {RequiredError}
|
|
66423
|
+
* @memberof WorkspaceObjectControllerApi
|
|
66424
|
+
*/
|
|
66425
|
+
deleteEntityMemoryItems(requestParameters, options) {
|
|
66426
|
+
return WorkspaceObjectControllerApiFp(this.configuration)
|
|
66427
|
+
.deleteEntityMemoryItems(requestParameters.workspaceId, requestParameters.objectId, requestParameters.filter, options)
|
|
66428
|
+
.then((request) => request(this.axios, this.basePath));
|
|
66429
|
+
}
|
|
65379
66430
|
/**
|
|
65380
66431
|
*
|
|
65381
66432
|
* @summary Delete a Metric
|
|
@@ -65622,6 +66673,18 @@ export class WorkspaceObjectControllerApi extends BaseAPI {
|
|
|
65622
66673
|
.getAllEntitiesLabels(requestParameters.workspaceId, requestParameters.origin, requestParameters.filter, requestParameters.include, requestParameters.page, requestParameters.size, requestParameters.sort, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options)
|
|
65623
66674
|
.then((request) => request(this.axios, this.basePath));
|
|
65624
66675
|
}
|
|
66676
|
+
/**
|
|
66677
|
+
*
|
|
66678
|
+
* @param {WorkspaceObjectControllerApiGetAllEntitiesMemoryItemsRequest} requestParameters Request parameters.
|
|
66679
|
+
* @param {*} [options] Override http request option.
|
|
66680
|
+
* @throws {RequiredError}
|
|
66681
|
+
* @memberof WorkspaceObjectControllerApi
|
|
66682
|
+
*/
|
|
66683
|
+
getAllEntitiesMemoryItems(requestParameters, options) {
|
|
66684
|
+
return WorkspaceObjectControllerApiFp(this.configuration)
|
|
66685
|
+
.getAllEntitiesMemoryItems(requestParameters.workspaceId, requestParameters.origin, requestParameters.filter, requestParameters.include, requestParameters.page, requestParameters.size, requestParameters.sort, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options)
|
|
66686
|
+
.then((request) => request(this.axios, this.basePath));
|
|
66687
|
+
}
|
|
65625
66688
|
/**
|
|
65626
66689
|
*
|
|
65627
66690
|
* @summary Get all Metrics
|
|
@@ -65868,6 +66931,18 @@ export class WorkspaceObjectControllerApi extends BaseAPI {
|
|
|
65868
66931
|
.getEntityLabels(requestParameters.workspaceId, requestParameters.objectId, requestParameters.filter, requestParameters.include, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options)
|
|
65869
66932
|
.then((request) => request(this.axios, this.basePath));
|
|
65870
66933
|
}
|
|
66934
|
+
/**
|
|
66935
|
+
*
|
|
66936
|
+
* @param {WorkspaceObjectControllerApiGetEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
66937
|
+
* @param {*} [options] Override http request option.
|
|
66938
|
+
* @throws {RequiredError}
|
|
66939
|
+
* @memberof WorkspaceObjectControllerApi
|
|
66940
|
+
*/
|
|
66941
|
+
getEntityMemoryItems(requestParameters, options) {
|
|
66942
|
+
return WorkspaceObjectControllerApiFp(this.configuration)
|
|
66943
|
+
.getEntityMemoryItems(requestParameters.workspaceId, requestParameters.objectId, requestParameters.filter, requestParameters.include, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options)
|
|
66944
|
+
.then((request) => request(this.axios, this.basePath));
|
|
66945
|
+
}
|
|
65871
66946
|
/**
|
|
65872
66947
|
*
|
|
65873
66948
|
* @summary Get a Metric
|
|
@@ -66050,6 +67125,18 @@ export class WorkspaceObjectControllerApi extends BaseAPI {
|
|
|
66050
67125
|
.patchEntityFilterViews(requestParameters.workspaceId, requestParameters.objectId, requestParameters.jsonApiFilterViewPatchDocument, requestParameters.filter, requestParameters.include, options)
|
|
66051
67126
|
.then((request) => request(this.axios, this.basePath));
|
|
66052
67127
|
}
|
|
67128
|
+
/**
|
|
67129
|
+
*
|
|
67130
|
+
* @param {WorkspaceObjectControllerApiPatchEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
67131
|
+
* @param {*} [options] Override http request option.
|
|
67132
|
+
* @throws {RequiredError}
|
|
67133
|
+
* @memberof WorkspaceObjectControllerApi
|
|
67134
|
+
*/
|
|
67135
|
+
patchEntityMemoryItems(requestParameters, options) {
|
|
67136
|
+
return WorkspaceObjectControllerApiFp(this.configuration)
|
|
67137
|
+
.patchEntityMemoryItems(requestParameters.workspaceId, requestParameters.objectId, requestParameters.jsonApiMemoryItemPatchDocument, requestParameters.filter, requestParameters.include, options)
|
|
67138
|
+
.then((request) => request(this.axios, this.basePath));
|
|
67139
|
+
}
|
|
66053
67140
|
/**
|
|
66054
67141
|
*
|
|
66055
67142
|
* @summary Patch a Metric
|
|
@@ -66232,6 +67319,18 @@ export class WorkspaceObjectControllerApi extends BaseAPI {
|
|
|
66232
67319
|
.updateEntityFilterViews(requestParameters.workspaceId, requestParameters.objectId, requestParameters.jsonApiFilterViewInDocument, requestParameters.filter, requestParameters.include, options)
|
|
66233
67320
|
.then((request) => request(this.axios, this.basePath));
|
|
66234
67321
|
}
|
|
67322
|
+
/**
|
|
67323
|
+
*
|
|
67324
|
+
* @param {WorkspaceObjectControllerApiUpdateEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
67325
|
+
* @param {*} [options] Override http request option.
|
|
67326
|
+
* @throws {RequiredError}
|
|
67327
|
+
* @memberof WorkspaceObjectControllerApi
|
|
67328
|
+
*/
|
|
67329
|
+
updateEntityMemoryItems(requestParameters, options) {
|
|
67330
|
+
return WorkspaceObjectControllerApiFp(this.configuration)
|
|
67331
|
+
.updateEntityMemoryItems(requestParameters.workspaceId, requestParameters.objectId, requestParameters.jsonApiMemoryItemInDocument, requestParameters.filter, requestParameters.include, options)
|
|
67332
|
+
.then((request) => request(this.axios, this.basePath));
|
|
67333
|
+
}
|
|
66235
67334
|
/**
|
|
66236
67335
|
*
|
|
66237
67336
|
* @summary Put a Metric
|