@gooddata/api-client-tiger 10.38.0 → 10.39.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.d.ts.map +1 -1
- package/esm/__version.js +1 -1
- package/esm/__version.js.map +1 -1
- package/esm/api-client-tiger.d.ts +1393 -730
- package/esm/generated/afm-rest-api/api.d.ts +16 -0
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +9 -0
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +13 -0
- package/esm/generated/automation-json-api/api.d.ts +58 -0
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +26 -0
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +46 -0
- package/esm/generated/export-json-api/api.d.ts +58 -0
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js +26 -0
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +46 -0
- package/esm/generated/metadata-json-api/api.d.ts +1212 -713
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +424 -57
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +4558 -4311
- package/esm/generated/scan-json-api/api.d.ts +1 -0
- package/esm/generated/scan-json-api/api.d.ts.map +1 -1
- package/esm/generated/scan-json-api/api.js +1 -0
- package/esm/generated/scan-json-api/api.js.map +1 -1
- package/esm/generated/scan-json-api/configuration.d.ts.map +1 -1
- package/esm/generated/scan-json-api/configuration.js +2 -14
- package/esm/generated/scan-json-api/configuration.js.map +1 -1
- package/esm/generated/scan-json-api/openapi-spec.json +2 -1
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -273,6 +273,7 @@ export const DeclarativeDataSourceTypeEnum = {
|
|
|
273
273
|
FLEXCONNECT: "FLEXCONNECT",
|
|
274
274
|
STARROCKS: "STARROCKS",
|
|
275
275
|
ATHENA: "ATHENA",
|
|
276
|
+
MONGODB: "MONGODB",
|
|
276
277
|
};
|
|
277
278
|
export const DeclarativeDataSourceCacheStrategyEnum = {
|
|
278
279
|
ALWAYS: "ALWAYS",
|
|
@@ -427,6 +428,7 @@ export const DeclarativeSettingTypeEnum = {
|
|
|
427
428
|
AI_RATE_LIMIT: "AI_RATE_LIMIT",
|
|
428
429
|
ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT",
|
|
429
430
|
ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL",
|
|
431
|
+
AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE",
|
|
430
432
|
};
|
|
431
433
|
export const DeclarativeSingleWorkspacePermissionNameEnum = {
|
|
432
434
|
MANAGE: "MANAGE",
|
|
@@ -598,6 +600,7 @@ export const IdentifierRefIdentifierTypeEnum = {
|
|
|
598
600
|
USER_DATA_FILTER: "userDataFilter",
|
|
599
601
|
EXPORT_DEFINITION: "exportDefinition",
|
|
600
602
|
AUTOMATION: "automation",
|
|
603
|
+
AUTOMATION_RESULT: "automationResult",
|
|
601
604
|
PROMPT: "prompt",
|
|
602
605
|
VISUALIZATION_OBJECT: "visualizationObject",
|
|
603
606
|
FILTER_CONTEXT: "filterContext",
|
|
@@ -753,6 +756,19 @@ export const JsonApiAutomationOutWithLinksTypeEnum = {
|
|
|
753
756
|
export const JsonApiAutomationPatchTypeEnum = {
|
|
754
757
|
AUTOMATION: "automation",
|
|
755
758
|
};
|
|
759
|
+
export const JsonApiAutomationResultLinkageTypeEnum = {
|
|
760
|
+
AUTOMATION_RESULT: "automationResult",
|
|
761
|
+
};
|
|
762
|
+
export const JsonApiAutomationResultOutTypeEnum = {
|
|
763
|
+
AUTOMATION_RESULT: "automationResult",
|
|
764
|
+
};
|
|
765
|
+
export const JsonApiAutomationResultOutAttributesStatusEnum = {
|
|
766
|
+
SUCCESS: "SUCCESS",
|
|
767
|
+
FAILED: "FAILED",
|
|
768
|
+
};
|
|
769
|
+
export const JsonApiAutomationResultOutWithLinksTypeEnum = {
|
|
770
|
+
AUTOMATION_RESULT: "automationResult",
|
|
771
|
+
};
|
|
756
772
|
export const JsonApiColorPaletteInTypeEnum = {
|
|
757
773
|
COLOR_PALETTE: "colorPalette",
|
|
758
774
|
};
|
|
@@ -848,6 +864,7 @@ export const JsonApiDataSourceIdentifierOutAttributesTypeEnum = {
|
|
|
848
864
|
FLEXCONNECT: "FLEXCONNECT",
|
|
849
865
|
STARROCKS: "STARROCKS",
|
|
850
866
|
ATHENA: "ATHENA",
|
|
867
|
+
MONGODB: "MONGODB",
|
|
851
868
|
};
|
|
852
869
|
export const JsonApiDataSourceIdentifierOutWithLinksTypeEnum = {
|
|
853
870
|
DATA_SOURCE_IDENTIFIER: "dataSourceIdentifier",
|
|
@@ -881,6 +898,7 @@ export const JsonApiDataSourceInAttributesTypeEnum = {
|
|
|
881
898
|
FLEXCONNECT: "FLEXCONNECT",
|
|
882
899
|
STARROCKS: "STARROCKS",
|
|
883
900
|
ATHENA: "ATHENA",
|
|
901
|
+
MONGODB: "MONGODB",
|
|
884
902
|
};
|
|
885
903
|
export const JsonApiDataSourceInAttributesCacheStrategyEnum = {
|
|
886
904
|
ALWAYS: "ALWAYS",
|
|
@@ -915,6 +933,7 @@ export const JsonApiDataSourceOutAttributesTypeEnum = {
|
|
|
915
933
|
FLEXCONNECT: "FLEXCONNECT",
|
|
916
934
|
STARROCKS: "STARROCKS",
|
|
917
935
|
ATHENA: "ATHENA",
|
|
936
|
+
MONGODB: "MONGODB",
|
|
918
937
|
};
|
|
919
938
|
export const JsonApiDataSourceOutAttributesCacheStrategyEnum = {
|
|
920
939
|
ALWAYS: "ALWAYS",
|
|
@@ -963,6 +982,7 @@ export const JsonApiDataSourcePatchAttributesTypeEnum = {
|
|
|
963
982
|
FLEXCONNECT: "FLEXCONNECT",
|
|
964
983
|
STARROCKS: "STARROCKS",
|
|
965
984
|
ATHENA: "ATHENA",
|
|
985
|
+
MONGODB: "MONGODB",
|
|
966
986
|
};
|
|
967
987
|
export const JsonApiDataSourcePatchAttributesCacheStrategyEnum = {
|
|
968
988
|
ALWAYS: "ALWAYS",
|
|
@@ -1384,6 +1404,34 @@ export const JsonApiUserSettingInTypeEnum = {
|
|
|
1384
1404
|
export const JsonApiUserSettingOutTypeEnum = {
|
|
1385
1405
|
USER_SETTING: "userSetting",
|
|
1386
1406
|
};
|
|
1407
|
+
export const JsonApiUserSettingOutAttributesTypeEnum = {
|
|
1408
|
+
TIMEZONE: "TIMEZONE",
|
|
1409
|
+
ACTIVE_THEME: "ACTIVE_THEME",
|
|
1410
|
+
ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE",
|
|
1411
|
+
ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT",
|
|
1412
|
+
WHITE_LABELING: "WHITE_LABELING",
|
|
1413
|
+
LOCALE: "LOCALE",
|
|
1414
|
+
METADATA_LOCALE: "METADATA_LOCALE",
|
|
1415
|
+
FORMAT_LOCALE: "FORMAT_LOCALE",
|
|
1416
|
+
MAPBOX_TOKEN: "MAPBOX_TOKEN",
|
|
1417
|
+
WEEK_START: "WEEK_START",
|
|
1418
|
+
SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS",
|
|
1419
|
+
OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES",
|
|
1420
|
+
TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED",
|
|
1421
|
+
OPENAI_CONFIG: "OPENAI_CONFIG",
|
|
1422
|
+
ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS",
|
|
1423
|
+
ALERT: "ALERT",
|
|
1424
|
+
SEPARATORS: "SEPARATORS",
|
|
1425
|
+
DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG",
|
|
1426
|
+
JIT_PROVISIONING: "JIT_PROVISIONING",
|
|
1427
|
+
JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING",
|
|
1428
|
+
DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE",
|
|
1429
|
+
ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT",
|
|
1430
|
+
AI_RATE_LIMIT: "AI_RATE_LIMIT",
|
|
1431
|
+
ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT",
|
|
1432
|
+
ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL",
|
|
1433
|
+
AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE",
|
|
1434
|
+
};
|
|
1387
1435
|
export const JsonApiUserSettingOutWithLinksTypeEnum = {
|
|
1388
1436
|
USER_SETTING: "userSetting",
|
|
1389
1437
|
};
|
|
@@ -1480,33 +1528,6 @@ export const JsonApiWorkspaceSettingPatchTypeEnum = {
|
|
|
1480
1528
|
export const JsonApiWorkspaceSettingPostOptionalIdTypeEnum = {
|
|
1481
1529
|
WORKSPACE_SETTING: "workspaceSetting",
|
|
1482
1530
|
};
|
|
1483
|
-
export const JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum = {
|
|
1484
|
-
TIMEZONE: "TIMEZONE",
|
|
1485
|
-
ACTIVE_THEME: "ACTIVE_THEME",
|
|
1486
|
-
ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE",
|
|
1487
|
-
ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT",
|
|
1488
|
-
WHITE_LABELING: "WHITE_LABELING",
|
|
1489
|
-
LOCALE: "LOCALE",
|
|
1490
|
-
METADATA_LOCALE: "METADATA_LOCALE",
|
|
1491
|
-
FORMAT_LOCALE: "FORMAT_LOCALE",
|
|
1492
|
-
MAPBOX_TOKEN: "MAPBOX_TOKEN",
|
|
1493
|
-
WEEK_START: "WEEK_START",
|
|
1494
|
-
SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS",
|
|
1495
|
-
OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES",
|
|
1496
|
-
TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED",
|
|
1497
|
-
OPENAI_CONFIG: "OPENAI_CONFIG",
|
|
1498
|
-
ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS",
|
|
1499
|
-
ALERT: "ALERT",
|
|
1500
|
-
SEPARATORS: "SEPARATORS",
|
|
1501
|
-
DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG",
|
|
1502
|
-
JIT_PROVISIONING: "JIT_PROVISIONING",
|
|
1503
|
-
JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING",
|
|
1504
|
-
DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE",
|
|
1505
|
-
ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT",
|
|
1506
|
-
AI_RATE_LIMIT: "AI_RATE_LIMIT",
|
|
1507
|
-
ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT",
|
|
1508
|
-
ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL",
|
|
1509
|
-
};
|
|
1510
1531
|
export const LabelIdentifierTypeEnum = {
|
|
1511
1532
|
LABEL: "label",
|
|
1512
1533
|
};
|
|
@@ -1588,6 +1609,31 @@ export const RelativeOperatorEnum = {
|
|
|
1588
1609
|
DECREASES_BY: "DECREASES_BY",
|
|
1589
1610
|
CHANGES_BY: "CHANGES_BY",
|
|
1590
1611
|
};
|
|
1612
|
+
export const RelativeBoundedDateFilterGranularityEnum = {
|
|
1613
|
+
ALL_TIME_GRANULARITY: "ALL_TIME_GRANULARITY",
|
|
1614
|
+
GDC_TIME_YEAR: "GDC.time.year",
|
|
1615
|
+
GDC_TIME_WEEK_US: "GDC.time.week_us",
|
|
1616
|
+
GDC_TIME_WEEK_IN_YEAR: "GDC.time.week_in_year",
|
|
1617
|
+
GDC_TIME_WEEK_IN_QUARTER: "GDC.time.week_in_quarter",
|
|
1618
|
+
GDC_TIME_WEEK: "GDC.time.week",
|
|
1619
|
+
GDC_TIME_EUWEEK_IN_YEAR: "GDC.time.euweek_in_year",
|
|
1620
|
+
GDC_TIME_EUWEEK_IN_QUARTER: "GDC.time.euweek_in_quarter",
|
|
1621
|
+
GDC_TIME_QUARTER: "GDC.time.quarter",
|
|
1622
|
+
GDC_TIME_QUARTER_IN_YEAR: "GDC.time.quarter_in_year",
|
|
1623
|
+
GDC_TIME_MONTH: "GDC.time.month",
|
|
1624
|
+
GDC_TIME_MONTH_IN_QUARTER: "GDC.time.month_in_quarter",
|
|
1625
|
+
GDC_TIME_MONTH_IN_YEAR: "GDC.time.month_in_year",
|
|
1626
|
+
GDC_TIME_DAY_IN_YEAR: "GDC.time.day_in_year",
|
|
1627
|
+
GDC_TIME_DAY_IN_QUARTER: "GDC.time.day_in_quarter",
|
|
1628
|
+
GDC_TIME_DAY_IN_MONTH: "GDC.time.day_in_month",
|
|
1629
|
+
GDC_TIME_DAY_IN_WEEK: "GDC.time.day_in_week",
|
|
1630
|
+
GDC_TIME_DAY_IN_EUWEEK: "GDC.time.day_in_euweek",
|
|
1631
|
+
GDC_TIME_DATE: "GDC.time.date",
|
|
1632
|
+
GDC_TIME_HOUR: "GDC.time.hour",
|
|
1633
|
+
GDC_TIME_HOUR_IN_DAY: "GDC.time.hour_in_day",
|
|
1634
|
+
GDC_TIME_MINUTE: "GDC.time.minute",
|
|
1635
|
+
GDC_TIME_MINUTE_IN_HOUR: "GDC.time.minute_in_hour",
|
|
1636
|
+
};
|
|
1591
1637
|
export const RelativeDateFilterRelativeDateFilterGranularityEnum = {
|
|
1592
1638
|
MINUTE: "MINUTE",
|
|
1593
1639
|
HOUR: "HOUR",
|
|
@@ -1632,6 +1678,7 @@ export const ResolvedSettingTypeEnum = {
|
|
|
1632
1678
|
AI_RATE_LIMIT: "AI_RATE_LIMIT",
|
|
1633
1679
|
ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT",
|
|
1634
1680
|
ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL",
|
|
1681
|
+
AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE",
|
|
1635
1682
|
};
|
|
1636
1683
|
export const RsaSpecificationKtyEnum = {
|
|
1637
1684
|
RSA: "RSA",
|
|
@@ -2468,6 +2515,49 @@ export const ActionsApiAxiosParamCreator = function (configuration) {
|
|
|
2468
2515
|
options: localVarRequestOptions,
|
|
2469
2516
|
};
|
|
2470
2517
|
},
|
|
2518
|
+
/**
|
|
2519
|
+
*
|
|
2520
|
+
* @summary Delete selected automations in the workspace
|
|
2521
|
+
* @param {string} workspaceId
|
|
2522
|
+
* @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
|
|
2523
|
+
* @param {*} [options] Override http request option.
|
|
2524
|
+
* @throws {RequiredError}
|
|
2525
|
+
*/
|
|
2526
|
+
deleteWorkspaceAutomations: async (workspaceId, workspaceAutomationManagementBulkRequest, options = {}) => {
|
|
2527
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
2528
|
+
assertParamExists("deleteWorkspaceAutomations", "workspaceId", workspaceId);
|
|
2529
|
+
// verify required parameter 'workspaceAutomationManagementBulkRequest' is not null or undefined
|
|
2530
|
+
assertParamExists("deleteWorkspaceAutomations", "workspaceAutomationManagementBulkRequest", workspaceAutomationManagementBulkRequest);
|
|
2531
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/automations/delete`.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
2532
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2533
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2534
|
+
let baseOptions;
|
|
2535
|
+
if (configuration) {
|
|
2536
|
+
baseOptions = configuration.baseOptions;
|
|
2537
|
+
}
|
|
2538
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
2539
|
+
const localVarHeaderParameter = {};
|
|
2540
|
+
const localVarQueryParameter = {};
|
|
2541
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
2542
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2543
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2544
|
+
localVarRequestOptions.headers = {
|
|
2545
|
+
...localVarHeaderParameter,
|
|
2546
|
+
...headersFromBaseOptions,
|
|
2547
|
+
...options.headers,
|
|
2548
|
+
};
|
|
2549
|
+
const needsSerialization = typeof workspaceAutomationManagementBulkRequest !== "string" ||
|
|
2550
|
+
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
2551
|
+
localVarRequestOptions.data = needsSerialization
|
|
2552
|
+
? JSON.stringify(workspaceAutomationManagementBulkRequest !== undefined
|
|
2553
|
+
? workspaceAutomationManagementBulkRequest
|
|
2554
|
+
: {})
|
|
2555
|
+
: workspaceAutomationManagementBulkRequest || "";
|
|
2556
|
+
return {
|
|
2557
|
+
url: toPathString(localVarUrlObj),
|
|
2558
|
+
options: localVarRequestOptions,
|
|
2559
|
+
};
|
|
2560
|
+
},
|
|
2471
2561
|
/**
|
|
2472
2562
|
* Generate logical data model (LDM) from physical data model (PDM) stored in data source.
|
|
2473
2563
|
* @summary Generate logical data model (LDM) from physical data model (PDM)
|
|
@@ -3415,6 +3505,49 @@ export const ActionsApiAxiosParamCreator = function (configuration) {
|
|
|
3415
3505
|
options: localVarRequestOptions,
|
|
3416
3506
|
};
|
|
3417
3507
|
},
|
|
3508
|
+
/**
|
|
3509
|
+
*
|
|
3510
|
+
* @summary Unsubscribe from selected automations in the workspace
|
|
3511
|
+
* @param {string} workspaceId
|
|
3512
|
+
* @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
|
|
3513
|
+
* @param {*} [options] Override http request option.
|
|
3514
|
+
* @throws {RequiredError}
|
|
3515
|
+
*/
|
|
3516
|
+
unsubscribeSelectedWorkspaceAutomations: async (workspaceId, workspaceAutomationManagementBulkRequest, options = {}) => {
|
|
3517
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
3518
|
+
assertParamExists("unsubscribeSelectedWorkspaceAutomations", "workspaceId", workspaceId);
|
|
3519
|
+
// verify required parameter 'workspaceAutomationManagementBulkRequest' is not null or undefined
|
|
3520
|
+
assertParamExists("unsubscribeSelectedWorkspaceAutomations", "workspaceAutomationManagementBulkRequest", workspaceAutomationManagementBulkRequest);
|
|
3521
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/automations/unsubscribe`.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
3522
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3523
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3524
|
+
let baseOptions;
|
|
3525
|
+
if (configuration) {
|
|
3526
|
+
baseOptions = configuration.baseOptions;
|
|
3527
|
+
}
|
|
3528
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
3529
|
+
const localVarHeaderParameter = {};
|
|
3530
|
+
const localVarQueryParameter = {};
|
|
3531
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3532
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3533
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3534
|
+
localVarRequestOptions.headers = {
|
|
3535
|
+
...localVarHeaderParameter,
|
|
3536
|
+
...headersFromBaseOptions,
|
|
3537
|
+
...options.headers,
|
|
3538
|
+
};
|
|
3539
|
+
const needsSerialization = typeof workspaceAutomationManagementBulkRequest !== "string" ||
|
|
3540
|
+
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
3541
|
+
localVarRequestOptions.data = needsSerialization
|
|
3542
|
+
? JSON.stringify(workspaceAutomationManagementBulkRequest !== undefined
|
|
3543
|
+
? workspaceAutomationManagementBulkRequest
|
|
3544
|
+
: {})
|
|
3545
|
+
: workspaceAutomationManagementBulkRequest || "";
|
|
3546
|
+
return {
|
|
3547
|
+
url: toPathString(localVarUrlObj),
|
|
3548
|
+
options: localVarRequestOptions,
|
|
3549
|
+
};
|
|
3550
|
+
},
|
|
3418
3551
|
/**
|
|
3419
3552
|
*
|
|
3420
3553
|
* @summary Unsubscribe from all automations in the workspace
|
|
@@ -3587,6 +3720,18 @@ export const ActionsApiFp = function (configuration) {
|
|
|
3587
3720
|
const localVarAxiosArgs = await localVarAxiosParamCreator.dashboardPermissions(workspaceId, dashboardId, options);
|
|
3588
3721
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3589
3722
|
},
|
|
3723
|
+
/**
|
|
3724
|
+
*
|
|
3725
|
+
* @summary Delete selected automations in the workspace
|
|
3726
|
+
* @param {string} workspaceId
|
|
3727
|
+
* @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
|
|
3728
|
+
* @param {*} [options] Override http request option.
|
|
3729
|
+
* @throws {RequiredError}
|
|
3730
|
+
*/
|
|
3731
|
+
async deleteWorkspaceAutomations(workspaceId, workspaceAutomationManagementBulkRequest, options) {
|
|
3732
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteWorkspaceAutomations(workspaceId, workspaceAutomationManagementBulkRequest, options);
|
|
3733
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3734
|
+
},
|
|
3590
3735
|
/**
|
|
3591
3736
|
* Generate logical data model (LDM) from physical data model (PDM) stored in data source.
|
|
3592
3737
|
* @summary Generate logical data model (LDM) from physical data model (PDM)
|
|
@@ -3882,6 +4027,18 @@ export const ActionsApiFp = function (configuration) {
|
|
|
3882
4027
|
const localVarAxiosArgs = await localVarAxiosParamCreator.unsubscribeAutomation(workspaceId, automationId, options);
|
|
3883
4028
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3884
4029
|
},
|
|
4030
|
+
/**
|
|
4031
|
+
*
|
|
4032
|
+
* @summary Unsubscribe from selected automations in the workspace
|
|
4033
|
+
* @param {string} workspaceId
|
|
4034
|
+
* @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
|
|
4035
|
+
* @param {*} [options] Override http request option.
|
|
4036
|
+
* @throws {RequiredError}
|
|
4037
|
+
*/
|
|
4038
|
+
async unsubscribeSelectedWorkspaceAutomations(workspaceId, workspaceAutomationManagementBulkRequest, options) {
|
|
4039
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.unsubscribeSelectedWorkspaceAutomations(workspaceId, workspaceAutomationManagementBulkRequest, options);
|
|
4040
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4041
|
+
},
|
|
3885
4042
|
/**
|
|
3886
4043
|
*
|
|
3887
4044
|
* @summary Unsubscribe from all automations in the workspace
|
|
@@ -3982,6 +4139,18 @@ export const ActionsApiFactory = function (configuration, basePath, axios) {
|
|
|
3982
4139
|
.dashboardPermissions(requestParameters.workspaceId, requestParameters.dashboardId, options)
|
|
3983
4140
|
.then((request) => request(axios, basePath));
|
|
3984
4141
|
},
|
|
4142
|
+
/**
|
|
4143
|
+
*
|
|
4144
|
+
* @summary Delete selected automations in the workspace
|
|
4145
|
+
* @param {ActionsApiDeleteWorkspaceAutomationsRequest} requestParameters Request parameters.
|
|
4146
|
+
* @param {*} [options] Override http request option.
|
|
4147
|
+
* @throws {RequiredError}
|
|
4148
|
+
*/
|
|
4149
|
+
deleteWorkspaceAutomations(requestParameters, options) {
|
|
4150
|
+
return localVarFp
|
|
4151
|
+
.deleteWorkspaceAutomations(requestParameters.workspaceId, requestParameters.workspaceAutomationManagementBulkRequest, options)
|
|
4152
|
+
.then((request) => request(axios, basePath));
|
|
4153
|
+
},
|
|
3985
4154
|
/**
|
|
3986
4155
|
* Generate logical data model (LDM) from physical data model (PDM) stored in data source.
|
|
3987
4156
|
* @summary Generate logical data model (LDM) from physical data model (PDM)
|
|
@@ -4282,6 +4451,18 @@ export const ActionsApiFactory = function (configuration, basePath, axios) {
|
|
|
4282
4451
|
.unsubscribeAutomation(requestParameters.workspaceId, requestParameters.automationId, options)
|
|
4283
4452
|
.then((request) => request(axios, basePath));
|
|
4284
4453
|
},
|
|
4454
|
+
/**
|
|
4455
|
+
*
|
|
4456
|
+
* @summary Unsubscribe from selected automations in the workspace
|
|
4457
|
+
* @param {ActionsApiUnsubscribeSelectedWorkspaceAutomationsRequest} requestParameters Request parameters.
|
|
4458
|
+
* @param {*} [options] Override http request option.
|
|
4459
|
+
* @throws {RequiredError}
|
|
4460
|
+
*/
|
|
4461
|
+
unsubscribeSelectedWorkspaceAutomations(requestParameters, options) {
|
|
4462
|
+
return localVarFp
|
|
4463
|
+
.unsubscribeSelectedWorkspaceAutomations(requestParameters.workspaceId, requestParameters.workspaceAutomationManagementBulkRequest, options)
|
|
4464
|
+
.then((request) => request(axios, basePath));
|
|
4465
|
+
},
|
|
4285
4466
|
/**
|
|
4286
4467
|
*
|
|
4287
4468
|
* @summary Unsubscribe from all automations in the workspace
|
|
@@ -4391,6 +4572,19 @@ export class ActionsApi extends BaseAPI {
|
|
|
4391
4572
|
.dashboardPermissions(requestParameters.workspaceId, requestParameters.dashboardId, options)
|
|
4392
4573
|
.then((request) => request(this.axios, this.basePath));
|
|
4393
4574
|
}
|
|
4575
|
+
/**
|
|
4576
|
+
*
|
|
4577
|
+
* @summary Delete selected automations in the workspace
|
|
4578
|
+
* @param {ActionsApiDeleteWorkspaceAutomationsRequest} requestParameters Request parameters.
|
|
4579
|
+
* @param {*} [options] Override http request option.
|
|
4580
|
+
* @throws {RequiredError}
|
|
4581
|
+
* @memberof ActionsApi
|
|
4582
|
+
*/
|
|
4583
|
+
deleteWorkspaceAutomations(requestParameters, options) {
|
|
4584
|
+
return ActionsApiFp(this.configuration)
|
|
4585
|
+
.deleteWorkspaceAutomations(requestParameters.workspaceId, requestParameters.workspaceAutomationManagementBulkRequest, options)
|
|
4586
|
+
.then((request) => request(this.axios, this.basePath));
|
|
4587
|
+
}
|
|
4394
4588
|
/**
|
|
4395
4589
|
* Generate logical data model (LDM) from physical data model (PDM) stored in data source.
|
|
4396
4590
|
* @summary Generate logical data model (LDM) from physical data model (PDM)
|
|
@@ -4723,6 +4917,19 @@ export class ActionsApi extends BaseAPI {
|
|
|
4723
4917
|
.unsubscribeAutomation(requestParameters.workspaceId, requestParameters.automationId, options)
|
|
4724
4918
|
.then((request) => request(this.axios, this.basePath));
|
|
4725
4919
|
}
|
|
4920
|
+
/**
|
|
4921
|
+
*
|
|
4922
|
+
* @summary Unsubscribe from selected automations in the workspace
|
|
4923
|
+
* @param {ActionsApiUnsubscribeSelectedWorkspaceAutomationsRequest} requestParameters Request parameters.
|
|
4924
|
+
* @param {*} [options] Override http request option.
|
|
4925
|
+
* @throws {RequiredError}
|
|
4926
|
+
* @memberof ActionsApi
|
|
4927
|
+
*/
|
|
4928
|
+
unsubscribeSelectedWorkspaceAutomations(requestParameters, options) {
|
|
4929
|
+
return ActionsApiFp(this.configuration)
|
|
4930
|
+
.unsubscribeSelectedWorkspaceAutomations(requestParameters.workspaceId, requestParameters.workspaceAutomationManagementBulkRequest, options)
|
|
4931
|
+
.then((request) => request(this.axios, this.basePath));
|
|
4932
|
+
}
|
|
4726
4933
|
/**
|
|
4727
4934
|
*
|
|
4728
4935
|
* @summary Unsubscribe from all automations in the workspace
|
|
@@ -6776,7 +6983,7 @@ export const AutomationsApiAxiosParamCreator = function (configuration) {
|
|
|
6776
6983
|
* @summary Post Automations
|
|
6777
6984
|
* @param {string} workspaceId
|
|
6778
6985
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
6779
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
6986
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
6780
6987
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
6781
6988
|
* @param {*} [options] Override http request option.
|
|
6782
6989
|
* @throws {RequiredError}
|
|
@@ -6861,13 +7068,56 @@ export const AutomationsApiAxiosParamCreator = function (configuration) {
|
|
|
6861
7068
|
options: localVarRequestOptions,
|
|
6862
7069
|
};
|
|
6863
7070
|
},
|
|
7071
|
+
/**
|
|
7072
|
+
*
|
|
7073
|
+
* @summary Delete selected automations in the workspace
|
|
7074
|
+
* @param {string} workspaceId
|
|
7075
|
+
* @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
|
|
7076
|
+
* @param {*} [options] Override http request option.
|
|
7077
|
+
* @throws {RequiredError}
|
|
7078
|
+
*/
|
|
7079
|
+
deleteWorkspaceAutomations: async (workspaceId, workspaceAutomationManagementBulkRequest, options = {}) => {
|
|
7080
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
7081
|
+
assertParamExists("deleteWorkspaceAutomations", "workspaceId", workspaceId);
|
|
7082
|
+
// verify required parameter 'workspaceAutomationManagementBulkRequest' is not null or undefined
|
|
7083
|
+
assertParamExists("deleteWorkspaceAutomations", "workspaceAutomationManagementBulkRequest", workspaceAutomationManagementBulkRequest);
|
|
7084
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/automations/delete`.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
7085
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7086
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
7087
|
+
let baseOptions;
|
|
7088
|
+
if (configuration) {
|
|
7089
|
+
baseOptions = configuration.baseOptions;
|
|
7090
|
+
}
|
|
7091
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
7092
|
+
const localVarHeaderParameter = {};
|
|
7093
|
+
const localVarQueryParameter = {};
|
|
7094
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
7095
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7096
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7097
|
+
localVarRequestOptions.headers = {
|
|
7098
|
+
...localVarHeaderParameter,
|
|
7099
|
+
...headersFromBaseOptions,
|
|
7100
|
+
...options.headers,
|
|
7101
|
+
};
|
|
7102
|
+
const needsSerialization = typeof workspaceAutomationManagementBulkRequest !== "string" ||
|
|
7103
|
+
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
7104
|
+
localVarRequestOptions.data = needsSerialization
|
|
7105
|
+
? JSON.stringify(workspaceAutomationManagementBulkRequest !== undefined
|
|
7106
|
+
? workspaceAutomationManagementBulkRequest
|
|
7107
|
+
: {})
|
|
7108
|
+
: workspaceAutomationManagementBulkRequest || "";
|
|
7109
|
+
return {
|
|
7110
|
+
url: toPathString(localVarUrlObj),
|
|
7111
|
+
options: localVarRequestOptions,
|
|
7112
|
+
};
|
|
7113
|
+
},
|
|
6864
7114
|
/**
|
|
6865
7115
|
*
|
|
6866
7116
|
* @summary Get all Automations
|
|
6867
7117
|
* @param {string} workspaceId
|
|
6868
7118
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
6869
7119
|
* @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\').
|
|
6870
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
7120
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
6871
7121
|
* @param {number} [page] Zero-based page index (0..N)
|
|
6872
7122
|
* @param {number} [size] The size of the page to be returned
|
|
6873
7123
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -6967,7 +7217,7 @@ export const AutomationsApiAxiosParamCreator = function (configuration) {
|
|
|
6967
7217
|
* @param {string} workspaceId
|
|
6968
7218
|
* @param {string} objectId
|
|
6969
7219
|
* @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\').
|
|
6970
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
7220
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
6971
7221
|
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
6972
7222
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
6973
7223
|
* @param {*} [options] Override http request option.
|
|
@@ -7021,7 +7271,7 @@ export const AutomationsApiAxiosParamCreator = function (configuration) {
|
|
|
7021
7271
|
* @param {string} objectId
|
|
7022
7272
|
* @param {JsonApiAutomationPatchDocument} jsonApiAutomationPatchDocument
|
|
7023
7273
|
* @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\').
|
|
7024
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
7274
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
7025
7275
|
* @param {*} [options] Override http request option.
|
|
7026
7276
|
* @throws {RequiredError}
|
|
7027
7277
|
*/
|
|
@@ -7175,6 +7425,49 @@ export const AutomationsApiAxiosParamCreator = function (configuration) {
|
|
|
7175
7425
|
options: localVarRequestOptions,
|
|
7176
7426
|
};
|
|
7177
7427
|
},
|
|
7428
|
+
/**
|
|
7429
|
+
*
|
|
7430
|
+
* @summary Unsubscribe from selected automations in the workspace
|
|
7431
|
+
* @param {string} workspaceId
|
|
7432
|
+
* @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
|
|
7433
|
+
* @param {*} [options] Override http request option.
|
|
7434
|
+
* @throws {RequiredError}
|
|
7435
|
+
*/
|
|
7436
|
+
unsubscribeSelectedWorkspaceAutomations: async (workspaceId, workspaceAutomationManagementBulkRequest, options = {}) => {
|
|
7437
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
7438
|
+
assertParamExists("unsubscribeSelectedWorkspaceAutomations", "workspaceId", workspaceId);
|
|
7439
|
+
// verify required parameter 'workspaceAutomationManagementBulkRequest' is not null or undefined
|
|
7440
|
+
assertParamExists("unsubscribeSelectedWorkspaceAutomations", "workspaceAutomationManagementBulkRequest", workspaceAutomationManagementBulkRequest);
|
|
7441
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/automations/unsubscribe`.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
7442
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7443
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
7444
|
+
let baseOptions;
|
|
7445
|
+
if (configuration) {
|
|
7446
|
+
baseOptions = configuration.baseOptions;
|
|
7447
|
+
}
|
|
7448
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
7449
|
+
const localVarHeaderParameter = {};
|
|
7450
|
+
const localVarQueryParameter = {};
|
|
7451
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
7452
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7453
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7454
|
+
localVarRequestOptions.headers = {
|
|
7455
|
+
...localVarHeaderParameter,
|
|
7456
|
+
...headersFromBaseOptions,
|
|
7457
|
+
...options.headers,
|
|
7458
|
+
};
|
|
7459
|
+
const needsSerialization = typeof workspaceAutomationManagementBulkRequest !== "string" ||
|
|
7460
|
+
localVarRequestOptions.headers["Content-Type"] === "application/json";
|
|
7461
|
+
localVarRequestOptions.data = needsSerialization
|
|
7462
|
+
? JSON.stringify(workspaceAutomationManagementBulkRequest !== undefined
|
|
7463
|
+
? workspaceAutomationManagementBulkRequest
|
|
7464
|
+
: {})
|
|
7465
|
+
: workspaceAutomationManagementBulkRequest || "";
|
|
7466
|
+
return {
|
|
7467
|
+
url: toPathString(localVarUrlObj),
|
|
7468
|
+
options: localVarRequestOptions,
|
|
7469
|
+
};
|
|
7470
|
+
},
|
|
7178
7471
|
/**
|
|
7179
7472
|
*
|
|
7180
7473
|
* @summary Unsubscribe from all automations in the workspace
|
|
@@ -7214,7 +7507,7 @@ export const AutomationsApiAxiosParamCreator = function (configuration) {
|
|
|
7214
7507
|
* @param {string} objectId
|
|
7215
7508
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
7216
7509
|
* @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\').
|
|
7217
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
7510
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
7218
7511
|
* @param {*} [options] Override http request option.
|
|
7219
7512
|
* @throws {RequiredError}
|
|
7220
7513
|
*/
|
|
@@ -7275,7 +7568,7 @@ export const AutomationsApiFp = function (configuration) {
|
|
|
7275
7568
|
* @summary Post Automations
|
|
7276
7569
|
* @param {string} workspaceId
|
|
7277
7570
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
7278
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
7571
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
7279
7572
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
7280
7573
|
* @param {*} [options] Override http request option.
|
|
7281
7574
|
* @throws {RequiredError}
|
|
@@ -7297,13 +7590,25 @@ export const AutomationsApiFp = function (configuration) {
|
|
|
7297
7590
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEntityAutomations(workspaceId, objectId, filter, options);
|
|
7298
7591
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
7299
7592
|
},
|
|
7593
|
+
/**
|
|
7594
|
+
*
|
|
7595
|
+
* @summary Delete selected automations in the workspace
|
|
7596
|
+
* @param {string} workspaceId
|
|
7597
|
+
* @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
|
|
7598
|
+
* @param {*} [options] Override http request option.
|
|
7599
|
+
* @throws {RequiredError}
|
|
7600
|
+
*/
|
|
7601
|
+
async deleteWorkspaceAutomations(workspaceId, workspaceAutomationManagementBulkRequest, options) {
|
|
7602
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteWorkspaceAutomations(workspaceId, workspaceAutomationManagementBulkRequest, options);
|
|
7603
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
7604
|
+
},
|
|
7300
7605
|
/**
|
|
7301
7606
|
*
|
|
7302
7607
|
* @summary Get all Automations
|
|
7303
7608
|
* @param {string} workspaceId
|
|
7304
7609
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
7305
7610
|
* @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\').
|
|
7306
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
7611
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
7307
7612
|
* @param {number} [page] Zero-based page index (0..N)
|
|
7308
7613
|
* @param {number} [size] The size of the page to be returned
|
|
7309
7614
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -7334,7 +7639,7 @@ export const AutomationsApiFp = function (configuration) {
|
|
|
7334
7639
|
* @param {string} workspaceId
|
|
7335
7640
|
* @param {string} objectId
|
|
7336
7641
|
* @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\').
|
|
7337
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
7642
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
7338
7643
|
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
7339
7644
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
7340
7645
|
* @param {*} [options] Override http request option.
|
|
@@ -7351,7 +7656,7 @@ export const AutomationsApiFp = function (configuration) {
|
|
|
7351
7656
|
* @param {string} objectId
|
|
7352
7657
|
* @param {JsonApiAutomationPatchDocument} jsonApiAutomationPatchDocument
|
|
7353
7658
|
* @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\').
|
|
7354
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
7659
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
7355
7660
|
* @param {*} [options] Override http request option.
|
|
7356
7661
|
* @throws {RequiredError}
|
|
7357
7662
|
*/
|
|
@@ -7393,6 +7698,18 @@ export const AutomationsApiFp = function (configuration) {
|
|
|
7393
7698
|
const localVarAxiosArgs = await localVarAxiosParamCreator.unsubscribeAutomation(workspaceId, automationId, options);
|
|
7394
7699
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
7395
7700
|
},
|
|
7701
|
+
/**
|
|
7702
|
+
*
|
|
7703
|
+
* @summary Unsubscribe from selected automations in the workspace
|
|
7704
|
+
* @param {string} workspaceId
|
|
7705
|
+
* @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
|
|
7706
|
+
* @param {*} [options] Override http request option.
|
|
7707
|
+
* @throws {RequiredError}
|
|
7708
|
+
*/
|
|
7709
|
+
async unsubscribeSelectedWorkspaceAutomations(workspaceId, workspaceAutomationManagementBulkRequest, options) {
|
|
7710
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.unsubscribeSelectedWorkspaceAutomations(workspaceId, workspaceAutomationManagementBulkRequest, options);
|
|
7711
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
7712
|
+
},
|
|
7396
7713
|
/**
|
|
7397
7714
|
*
|
|
7398
7715
|
* @summary Unsubscribe from all automations in the workspace
|
|
@@ -7411,7 +7728,7 @@ export const AutomationsApiFp = function (configuration) {
|
|
|
7411
7728
|
* @param {string} objectId
|
|
7412
7729
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
7413
7730
|
* @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\').
|
|
7414
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
7731
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
7415
7732
|
* @param {*} [options] Override http request option.
|
|
7416
7733
|
* @throws {RequiredError}
|
|
7417
7734
|
*/
|
|
@@ -7452,6 +7769,18 @@ export const AutomationsApiFactory = function (configuration, basePath, axios) {
|
|
|
7452
7769
|
.deleteEntityAutomations(requestParameters.workspaceId, requestParameters.objectId, requestParameters.filter, options)
|
|
7453
7770
|
.then((request) => request(axios, basePath));
|
|
7454
7771
|
},
|
|
7772
|
+
/**
|
|
7773
|
+
*
|
|
7774
|
+
* @summary Delete selected automations in the workspace
|
|
7775
|
+
* @param {AutomationsApiDeleteWorkspaceAutomationsRequest} requestParameters Request parameters.
|
|
7776
|
+
* @param {*} [options] Override http request option.
|
|
7777
|
+
* @throws {RequiredError}
|
|
7778
|
+
*/
|
|
7779
|
+
deleteWorkspaceAutomations(requestParameters, options) {
|
|
7780
|
+
return localVarFp
|
|
7781
|
+
.deleteWorkspaceAutomations(requestParameters.workspaceId, requestParameters.workspaceAutomationManagementBulkRequest, options)
|
|
7782
|
+
.then((request) => request(axios, basePath));
|
|
7783
|
+
},
|
|
7455
7784
|
/**
|
|
7456
7785
|
*
|
|
7457
7786
|
* @summary Get all Automations
|
|
@@ -7533,6 +7862,18 @@ export const AutomationsApiFactory = function (configuration, basePath, axios) {
|
|
|
7533
7862
|
.unsubscribeAutomation(requestParameters.workspaceId, requestParameters.automationId, options)
|
|
7534
7863
|
.then((request) => request(axios, basePath));
|
|
7535
7864
|
},
|
|
7865
|
+
/**
|
|
7866
|
+
*
|
|
7867
|
+
* @summary Unsubscribe from selected automations in the workspace
|
|
7868
|
+
* @param {AutomationsApiUnsubscribeSelectedWorkspaceAutomationsRequest} requestParameters Request parameters.
|
|
7869
|
+
* @param {*} [options] Override http request option.
|
|
7870
|
+
* @throws {RequiredError}
|
|
7871
|
+
*/
|
|
7872
|
+
unsubscribeSelectedWorkspaceAutomations(requestParameters, options) {
|
|
7873
|
+
return localVarFp
|
|
7874
|
+
.unsubscribeSelectedWorkspaceAutomations(requestParameters.workspaceId, requestParameters.workspaceAutomationManagementBulkRequest, options)
|
|
7875
|
+
.then((request) => request(axios, basePath));
|
|
7876
|
+
},
|
|
7536
7877
|
/**
|
|
7537
7878
|
*
|
|
7538
7879
|
* @summary Unsubscribe from all automations in the workspace
|
|
@@ -7592,6 +7933,19 @@ export class AutomationsApi extends BaseAPI {
|
|
|
7592
7933
|
.deleteEntityAutomations(requestParameters.workspaceId, requestParameters.objectId, requestParameters.filter, options)
|
|
7593
7934
|
.then((request) => request(this.axios, this.basePath));
|
|
7594
7935
|
}
|
|
7936
|
+
/**
|
|
7937
|
+
*
|
|
7938
|
+
* @summary Delete selected automations in the workspace
|
|
7939
|
+
* @param {AutomationsApiDeleteWorkspaceAutomationsRequest} requestParameters Request parameters.
|
|
7940
|
+
* @param {*} [options] Override http request option.
|
|
7941
|
+
* @throws {RequiredError}
|
|
7942
|
+
* @memberof AutomationsApi
|
|
7943
|
+
*/
|
|
7944
|
+
deleteWorkspaceAutomations(requestParameters, options) {
|
|
7945
|
+
return AutomationsApiFp(this.configuration)
|
|
7946
|
+
.deleteWorkspaceAutomations(requestParameters.workspaceId, requestParameters.workspaceAutomationManagementBulkRequest, options)
|
|
7947
|
+
.then((request) => request(this.axios, this.basePath));
|
|
7948
|
+
}
|
|
7595
7949
|
/**
|
|
7596
7950
|
*
|
|
7597
7951
|
* @summary Get all Automations
|
|
@@ -7682,6 +8036,19 @@ export class AutomationsApi extends BaseAPI {
|
|
|
7682
8036
|
.unsubscribeAutomation(requestParameters.workspaceId, requestParameters.automationId, options)
|
|
7683
8037
|
.then((request) => request(this.axios, this.basePath));
|
|
7684
8038
|
}
|
|
8039
|
+
/**
|
|
8040
|
+
*
|
|
8041
|
+
* @summary Unsubscribe from selected automations in the workspace
|
|
8042
|
+
* @param {AutomationsApiUnsubscribeSelectedWorkspaceAutomationsRequest} requestParameters Request parameters.
|
|
8043
|
+
* @param {*} [options] Override http request option.
|
|
8044
|
+
* @throws {RequiredError}
|
|
8045
|
+
* @memberof AutomationsApi
|
|
8046
|
+
*/
|
|
8047
|
+
unsubscribeSelectedWorkspaceAutomations(requestParameters, options) {
|
|
8048
|
+
return AutomationsApiFp(this.configuration)
|
|
8049
|
+
.unsubscribeSelectedWorkspaceAutomations(requestParameters.workspaceId, requestParameters.workspaceAutomationManagementBulkRequest, options)
|
|
8050
|
+
.then((request) => request(this.axios, this.basePath));
|
|
8051
|
+
}
|
|
7685
8052
|
/**
|
|
7686
8053
|
*
|
|
7687
8054
|
* @summary Unsubscribe from all automations in the workspace
|
|
@@ -13062,7 +13429,7 @@ export const EntitiesApiAxiosParamCreator = function (configuration) {
|
|
|
13062
13429
|
* @summary Post Automations
|
|
13063
13430
|
* @param {string} workspaceId
|
|
13064
13431
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
13065
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
13432
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
13066
13433
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
13067
13434
|
* @param {*} [options] Override http request option.
|
|
13068
13435
|
* @throws {RequiredError}
|
|
@@ -15652,7 +16019,7 @@ export const EntitiesApiAxiosParamCreator = function (configuration) {
|
|
|
15652
16019
|
* @param {string} workspaceId
|
|
15653
16020
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
15654
16021
|
* @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\').
|
|
15655
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
16022
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
15656
16023
|
* @param {number} [page] Zero-based page index (0..N)
|
|
15657
16024
|
* @param {number} [size] The size of the page to be returned
|
|
15658
16025
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -17810,7 +18177,7 @@ export const EntitiesApiAxiosParamCreator = function (configuration) {
|
|
|
17810
18177
|
* @param {string} workspaceId
|
|
17811
18178
|
* @param {string} objectId
|
|
17812
18179
|
* @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\').
|
|
17813
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
18180
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
17814
18181
|
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
17815
18182
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
17816
18183
|
* @param {*} [options] Override http request option.
|
|
@@ -19495,7 +19862,7 @@ export const EntitiesApiAxiosParamCreator = function (configuration) {
|
|
|
19495
19862
|
* @param {string} objectId
|
|
19496
19863
|
* @param {JsonApiAutomationPatchDocument} jsonApiAutomationPatchDocument
|
|
19497
19864
|
* @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\').
|
|
19498
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
19865
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
19499
19866
|
* @param {*} [options] Override http request option.
|
|
19500
19867
|
* @throws {RequiredError}
|
|
19501
19868
|
*/
|
|
@@ -20966,7 +21333,7 @@ export const EntitiesApiAxiosParamCreator = function (configuration) {
|
|
|
20966
21333
|
* @param {string} objectId
|
|
20967
21334
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
20968
21335
|
* @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\').
|
|
20969
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
21336
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
20970
21337
|
* @param {*} [options] Override http request option.
|
|
20971
21338
|
* @throws {RequiredError}
|
|
20972
21339
|
*/
|
|
@@ -22414,7 +22781,7 @@ export const EntitiesApiFp = function (configuration) {
|
|
|
22414
22781
|
* @summary Post Automations
|
|
22415
22782
|
* @param {string} workspaceId
|
|
22416
22783
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
22417
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
22784
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
22418
22785
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
22419
22786
|
* @param {*} [options] Override http request option.
|
|
22420
22787
|
* @throws {RequiredError}
|
|
@@ -23194,7 +23561,7 @@ export const EntitiesApiFp = function (configuration) {
|
|
|
23194
23561
|
* @param {string} workspaceId
|
|
23195
23562
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
23196
23563
|
* @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\').
|
|
23197
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
23564
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
23198
23565
|
* @param {number} [page] Zero-based page index (0..N)
|
|
23199
23566
|
* @param {number} [size] The size of the page to be returned
|
|
23200
23567
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -23846,7 +24213,7 @@ export const EntitiesApiFp = function (configuration) {
|
|
|
23846
24213
|
* @param {string} workspaceId
|
|
23847
24214
|
* @param {string} objectId
|
|
23848
24215
|
* @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\').
|
|
23849
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
24216
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
23850
24217
|
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
23851
24218
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
23852
24219
|
* @param {*} [options] Override http request option.
|
|
@@ -24373,7 +24740,7 @@ export const EntitiesApiFp = function (configuration) {
|
|
|
24373
24740
|
* @param {string} objectId
|
|
24374
24741
|
* @param {JsonApiAutomationPatchDocument} jsonApiAutomationPatchDocument
|
|
24375
24742
|
* @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\').
|
|
24376
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
24743
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
24377
24744
|
* @param {*} [options] Override http request option.
|
|
24378
24745
|
* @throws {RequiredError}
|
|
24379
24746
|
*/
|
|
@@ -24780,7 +25147,7 @@ export const EntitiesApiFp = function (configuration) {
|
|
|
24780
25147
|
* @param {string} objectId
|
|
24781
25148
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
24782
25149
|
* @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\').
|
|
24783
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
25150
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
24784
25151
|
* @param {*} [options] Override http request option.
|
|
24785
25152
|
* @throws {RequiredError}
|
|
24786
25153
|
*/
|
|
@@ -55940,7 +56307,7 @@ export const WorkspaceObjectControllerApiAxiosParamCreator = function (configura
|
|
|
55940
56307
|
* @summary Post Automations
|
|
55941
56308
|
* @param {string} workspaceId
|
|
55942
56309
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
55943
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
56310
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
55944
56311
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
55945
56312
|
* @param {*} [options] Override http request option.
|
|
55946
56313
|
* @throws {RequiredError}
|
|
@@ -57366,7 +57733,7 @@ export const WorkspaceObjectControllerApiAxiosParamCreator = function (configura
|
|
|
57366
57733
|
* @param {string} workspaceId
|
|
57367
57734
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
57368
57735
|
* @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\').
|
|
57369
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
57736
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
57370
57737
|
* @param {number} [page] Zero-based page index (0..N)
|
|
57371
57738
|
* @param {number} [size] The size of the page to be returned
|
|
57372
57739
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -58529,7 +58896,7 @@ export const WorkspaceObjectControllerApiAxiosParamCreator = function (configura
|
|
|
58529
58896
|
* @param {string} workspaceId
|
|
58530
58897
|
* @param {string} objectId
|
|
58531
58898
|
* @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\').
|
|
58532
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
58899
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
58533
58900
|
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
58534
58901
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
58535
58902
|
* @param {*} [options] Override http request option.
|
|
@@ -59425,7 +59792,7 @@ export const WorkspaceObjectControllerApiAxiosParamCreator = function (configura
|
|
|
59425
59792
|
* @param {string} objectId
|
|
59426
59793
|
* @param {JsonApiAutomationPatchDocument} jsonApiAutomationPatchDocument
|
|
59427
59794
|
* @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\').
|
|
59428
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
59795
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
59429
59796
|
* @param {*} [options] Override http request option.
|
|
59430
59797
|
* @throws {RequiredError}
|
|
59431
59798
|
*/
|
|
@@ -60195,7 +60562,7 @@ export const WorkspaceObjectControllerApiAxiosParamCreator = function (configura
|
|
|
60195
60562
|
* @param {string} objectId
|
|
60196
60563
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
60197
60564
|
* @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\').
|
|
60198
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
60565
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
60199
60566
|
* @param {*} [options] Override http request option.
|
|
60200
60567
|
* @throws {RequiredError}
|
|
60201
60568
|
*/
|
|
@@ -60882,7 +61249,7 @@ export const WorkspaceObjectControllerApiFp = function (configuration) {
|
|
|
60882
61249
|
* @summary Post Automations
|
|
60883
61250
|
* @param {string} workspaceId
|
|
60884
61251
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
60885
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
61252
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
60886
61253
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
60887
61254
|
* @param {*} [options] Override http request option.
|
|
60888
61255
|
* @throws {RequiredError}
|
|
@@ -61305,7 +61672,7 @@ export const WorkspaceObjectControllerApiFp = function (configuration) {
|
|
|
61305
61672
|
* @param {string} workspaceId
|
|
61306
61673
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
61307
61674
|
* @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\').
|
|
61308
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
61675
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
61309
61676
|
* @param {number} [page] Zero-based page index (0..N)
|
|
61310
61677
|
* @param {number} [size] The size of the page to be returned
|
|
61311
61678
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -61651,7 +62018,7 @@ export const WorkspaceObjectControllerApiFp = function (configuration) {
|
|
|
61651
62018
|
* @param {string} workspaceId
|
|
61652
62019
|
* @param {string} objectId
|
|
61653
62020
|
* @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\').
|
|
61654
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
62021
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
61655
62022
|
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
61656
62023
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
61657
62024
|
* @param {*} [options] Override http request option.
|
|
@@ -61919,7 +62286,7 @@ export const WorkspaceObjectControllerApiFp = function (configuration) {
|
|
|
61919
62286
|
* @param {string} objectId
|
|
61920
62287
|
* @param {JsonApiAutomationPatchDocument} jsonApiAutomationPatchDocument
|
|
61921
62288
|
* @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\').
|
|
61922
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
62289
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
61923
62290
|
* @param {*} [options] Override http request option.
|
|
61924
62291
|
* @throws {RequiredError}
|
|
61925
62292
|
*/
|
|
@@ -62127,7 +62494,7 @@ export const WorkspaceObjectControllerApiFp = function (configuration) {
|
|
|
62127
62494
|
* @param {string} objectId
|
|
62128
62495
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
62129
62496
|
* @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\').
|
|
62130
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | '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.
|
|
62497
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | '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.
|
|
62131
62498
|
* @param {*} [options] Override http request option.
|
|
62132
62499
|
* @throws {RequiredError}
|
|
62133
62500
|
*/
|