@gooddata/code-cli 0.42.0-alpha.3 → 0.42.0-alpha.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +995 -271
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -37366,7 +37366,7 @@ function isPromise(value) {
|
|
|
37366
37366
|
//#endregion
|
|
37367
37367
|
//#region package.json
|
|
37368
37368
|
var name$1 = "@gooddata/code-cli";
|
|
37369
|
-
var version$1 = "0.42.0-alpha.
|
|
37369
|
+
var version$1 = "0.42.0-alpha.5";
|
|
37370
37370
|
//#endregion
|
|
37371
37371
|
//#region ../code/esm/features/references/types.js
|
|
37372
37372
|
var UpdateReferencesType;
|
|
@@ -40609,6 +40609,30 @@ const metadata_v1 = {
|
|
|
40609
40609
|
"type": "array",
|
|
40610
40610
|
"items": { "type": "string" }
|
|
40611
40611
|
},
|
|
40612
|
+
"custom_tooltip": {
|
|
40613
|
+
"type": "object",
|
|
40614
|
+
"description": "Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.",
|
|
40615
|
+
"additionalProperties": false,
|
|
40616
|
+
"properties": {
|
|
40617
|
+
"enabled": {
|
|
40618
|
+
"type": "boolean",
|
|
40619
|
+
"description": "Whether the custom tooltip section is rendered."
|
|
40620
|
+
},
|
|
40621
|
+
"content": {
|
|
40622
|
+
"type": "string",
|
|
40623
|
+
"description": "Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references ({metric/id}, {label/id}) that resolve per hovered data point."
|
|
40624
|
+
},
|
|
40625
|
+
"placement": {
|
|
40626
|
+
"type": "string",
|
|
40627
|
+
"enum": [
|
|
40628
|
+
"above",
|
|
40629
|
+
"below",
|
|
40630
|
+
"replace"
|
|
40631
|
+
],
|
|
40632
|
+
"description": "Placement of the custom section relative to the default tooltip content. Defaults to \"above\"."
|
|
40633
|
+
}
|
|
40634
|
+
}
|
|
40635
|
+
},
|
|
40612
40636
|
"conditional_formatting": {
|
|
40613
40637
|
"type": "object",
|
|
40614
40638
|
"description": "Conditional formatting rules that color cells or rows based on their values.",
|
|
@@ -42551,8 +42575,8 @@ const metadata_v1 = {
|
|
|
42551
42575
|
}]
|
|
42552
42576
|
},
|
|
42553
42577
|
"attribute": {
|
|
42554
|
-
"description": "
|
|
42555
|
-
"oneOf": [{ "$ref": "#/$defs/
|
|
42578
|
+
"description": "Label reference or local identifier to use for this filter.",
|
|
42579
|
+
"oneOf": [{ "$ref": "#/$defs/labelIdentifier" }, {
|
|
42556
42580
|
"type": "string",
|
|
42557
42581
|
"$semantic": {
|
|
42558
42582
|
"type": "reference",
|
|
@@ -90853,6 +90877,28 @@ function saveChartFill(config, defaultsChartFill) {
|
|
|
90853
90877
|
measureToPatternName: config.chart_fill?.pattern_name_mapping ?? defaultsChartFill.measureToPatternName
|
|
90854
90878
|
};
|
|
90855
90879
|
}
|
|
90880
|
+
/** @internal */
|
|
90881
|
+
const DEFAULT_CUSTOM_TOOLTIP = {
|
|
90882
|
+
enabled: false,
|
|
90883
|
+
content: "",
|
|
90884
|
+
placement: "above"
|
|
90885
|
+
};
|
|
90886
|
+
function loadCustomTooltip(value) {
|
|
90887
|
+
if (!value) return;
|
|
90888
|
+
return saveConfigObject({
|
|
90889
|
+
enabled: getValueOrDefault(value.enabled, DEFAULT_CUSTOM_TOOLTIP.enabled, "bool"),
|
|
90890
|
+
content: getValueOrDefault(value.content, DEFAULT_CUSTOM_TOOLTIP.content),
|
|
90891
|
+
placement: getValueOrDefault(value.placement, DEFAULT_CUSTOM_TOOLTIP.placement)
|
|
90892
|
+
});
|
|
90893
|
+
}
|
|
90894
|
+
function saveCustomTooltip(value) {
|
|
90895
|
+
if (!value) return;
|
|
90896
|
+
return {
|
|
90897
|
+
enabled: getValueOrDefault(value.enabled, DEFAULT_CUSTOM_TOOLTIP.enabled, "bool"),
|
|
90898
|
+
content: getValueOrDefault(value.content, DEFAULT_CUSTOM_TOOLTIP.content),
|
|
90899
|
+
placement: getValueOrDefault(value.placement, DEFAULT_CUSTOM_TOOLTIP.placement)
|
|
90900
|
+
};
|
|
90901
|
+
}
|
|
90856
90902
|
function loadDisableKda(value) {
|
|
90857
90903
|
if (!value) return;
|
|
90858
90904
|
if (Object.keys(value).length === 0) return;
|
|
@@ -90906,7 +90952,8 @@ const DEFAULTS$21 = {
|
|
|
90906
90952
|
disableDrillIntoURL: false,
|
|
90907
90953
|
disableAlerts: false,
|
|
90908
90954
|
disableScheduledExports: false,
|
|
90909
|
-
disableKeyDriveAnalysisOn: {}
|
|
90955
|
+
disableKeyDriveAnalysisOn: {},
|
|
90956
|
+
customTooltip: DEFAULT_CUSTOM_TOOLTIP
|
|
90910
90957
|
};
|
|
90911
90958
|
/** @internal */
|
|
90912
90959
|
function areaChartLoad(props) {
|
|
@@ -90961,6 +91008,7 @@ function areaChartLoad(props) {
|
|
|
90961
91008
|
case "disableAlerts": return [["disable_alerts", getValueOrDefault(value, DEFAULTS$21.disableAlerts, "bool")]];
|
|
90962
91009
|
case "disableScheduledExports": return [["disable_scheduled_exports", getValueOrDefault(value, DEFAULTS$21.disableScheduledExports, "bool")]];
|
|
90963
91010
|
case "disableKeyDriveAnalysisOn": return [["disable_key_drive_analysis", loadDisableKda(value)]];
|
|
91011
|
+
case "customTooltip": return [["custom_tooltip", loadCustomTooltip(value)]];
|
|
90964
91012
|
default: return [];
|
|
90965
91013
|
}
|
|
90966
91014
|
});
|
|
@@ -91012,7 +91060,8 @@ function areaChartSave(_fields, config) {
|
|
|
91012
91060
|
disableDrillIntoURL: config.disable_drill_into_url === void 0 ? void 0 : !!config.disable_drill_into_url,
|
|
91013
91061
|
disableAlerts: getValueOrDefault(config.disable_alerts, DEFAULTS$21.disableAlerts, "bool"),
|
|
91014
91062
|
disableScheduledExports: getValueOrDefault(config.disable_scheduled_exports, DEFAULTS$21.disableScheduledExports, "bool"),
|
|
91015
|
-
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis)
|
|
91063
|
+
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis),
|
|
91064
|
+
customTooltip: saveConfigObject(saveCustomTooltip(config.custom_tooltip))
|
|
91016
91065
|
});
|
|
91017
91066
|
}
|
|
91018
91067
|
/**
|
|
@@ -91067,7 +91116,8 @@ const DEFAULTS$20 = {
|
|
|
91067
91116
|
disableDrillIntoURL: false,
|
|
91068
91117
|
disableAlerts: false,
|
|
91069
91118
|
disableScheduledExports: false,
|
|
91070
|
-
disableKeyDriveAnalysisOn: {}
|
|
91119
|
+
disableKeyDriveAnalysisOn: {},
|
|
91120
|
+
customTooltip: DEFAULT_CUSTOM_TOOLTIP
|
|
91071
91121
|
};
|
|
91072
91122
|
/** @internal */
|
|
91073
91123
|
function barChartLoad(props) {
|
|
@@ -91118,6 +91168,7 @@ function barChartLoad(props) {
|
|
|
91118
91168
|
case "disableAlerts": return [["disable_alerts", getValueOrDefault(value, DEFAULTS$20.disableAlerts, "bool")]];
|
|
91119
91169
|
case "disableScheduledExports": return [["disable_scheduled_exports", getValueOrDefault(value, DEFAULTS$20.disableScheduledExports, "bool")]];
|
|
91120
91170
|
case "disableKeyDriveAnalysisOn": return [["disable_key_drive_analysis", loadDisableKda(value)]];
|
|
91171
|
+
case "customTooltip": return [["custom_tooltip", loadCustomTooltip(value)]];
|
|
91121
91172
|
default: return [];
|
|
91122
91173
|
}
|
|
91123
91174
|
});
|
|
@@ -91165,7 +91216,8 @@ function barChartSave(_fields, config) {
|
|
|
91165
91216
|
disableDrillIntoURL: config.disable_drill_into_url === void 0 ? void 0 : !!config.disable_drill_into_url,
|
|
91166
91217
|
disableAlerts: getValueOrDefault(config.disable_alerts, DEFAULTS$20.disableAlerts, "bool"),
|
|
91167
91218
|
disableScheduledExports: getValueOrDefault(config.disable_scheduled_exports, DEFAULTS$20.disableScheduledExports, "bool"),
|
|
91168
|
-
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis)
|
|
91219
|
+
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis),
|
|
91220
|
+
customTooltip: saveConfigObject(saveCustomTooltip(config.custom_tooltip))
|
|
91169
91221
|
});
|
|
91170
91222
|
}
|
|
91171
91223
|
/**
|
|
@@ -91219,7 +91271,8 @@ const DEFAULTS$19 = {
|
|
|
91219
91271
|
disableDrillIntoURL: false,
|
|
91220
91272
|
disableAlerts: false,
|
|
91221
91273
|
disableScheduledExports: false,
|
|
91222
|
-
disableKeyDriveAnalysisOn: {}
|
|
91274
|
+
disableKeyDriveAnalysisOn: {},
|
|
91275
|
+
customTooltip: DEFAULT_CUSTOM_TOOLTIP
|
|
91223
91276
|
};
|
|
91224
91277
|
/** @internal */
|
|
91225
91278
|
function bubbleChartLoad(props) {
|
|
@@ -91266,6 +91319,7 @@ function bubbleChartLoad(props) {
|
|
|
91266
91319
|
case "disableAlerts": return [["disable_alerts", getValueOrDefault(value, DEFAULTS$19.disableAlerts, "bool")]];
|
|
91267
91320
|
case "disableScheduledExports": return [["disable_scheduled_exports", getValueOrDefault(value, DEFAULTS$19.disableScheduledExports, "bool")]];
|
|
91268
91321
|
case "disableKeyDriveAnalysisOn": return [["disable_key_drive_analysis", loadDisableKda(value)]];
|
|
91322
|
+
case "customTooltip": return [["custom_tooltip", loadCustomTooltip(value)]];
|
|
91269
91323
|
default: return [];
|
|
91270
91324
|
}
|
|
91271
91325
|
});
|
|
@@ -91312,7 +91366,8 @@ function bubbleChartSave(_fields, config) {
|
|
|
91312
91366
|
disableDrillIntoURL: config.disable_drill_into_url === void 0 ? void 0 : !!config.disable_drill_into_url,
|
|
91313
91367
|
disableAlerts: getValueOrDefault(config.disable_alerts, DEFAULTS$19.disableAlerts, "bool"),
|
|
91314
91368
|
disableScheduledExports: getValueOrDefault(config.disable_scheduled_exports, DEFAULTS$19.disableScheduledExports, "bool"),
|
|
91315
|
-
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis)
|
|
91369
|
+
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis),
|
|
91370
|
+
customTooltip: saveConfigObject(saveCustomTooltip(config.custom_tooltip))
|
|
91316
91371
|
});
|
|
91317
91372
|
}
|
|
91318
91373
|
/**
|
|
@@ -91360,7 +91415,8 @@ const DEFAULTS$18 = {
|
|
|
91360
91415
|
disableDrillIntoURL: false,
|
|
91361
91416
|
disableAlerts: false,
|
|
91362
91417
|
disableScheduledExports: false,
|
|
91363
|
-
disableKeyDriveAnalysisOn: {}
|
|
91418
|
+
disableKeyDriveAnalysisOn: {},
|
|
91419
|
+
customTooltip: DEFAULT_CUSTOM_TOOLTIP
|
|
91364
91420
|
};
|
|
91365
91421
|
/** @internal */
|
|
91366
91422
|
function bulletChartLoad(props) {
|
|
@@ -91401,6 +91457,7 @@ function bulletChartLoad(props) {
|
|
|
91401
91457
|
case "disableAlerts": return [["disable_alerts", getValueOrDefault(value, DEFAULTS$18.disableAlerts, "bool")]];
|
|
91402
91458
|
case "disableScheduledExports": return [["disable_scheduled_exports", getValueOrDefault(value, DEFAULTS$18.disableScheduledExports, "bool")]];
|
|
91403
91459
|
case "disableKeyDriveAnalysisOn": return [["disable_key_drive_analysis", loadDisableKda(value)]];
|
|
91460
|
+
case "customTooltip": return [["custom_tooltip", loadCustomTooltip(value)]];
|
|
91404
91461
|
default: return [];
|
|
91405
91462
|
}
|
|
91406
91463
|
});
|
|
@@ -91441,7 +91498,8 @@ function bulletChartSave(_fields, config) {
|
|
|
91441
91498
|
disableDrillIntoURL: config.disable_drill_into_url === void 0 ? void 0 : !!config.disable_drill_into_url,
|
|
91442
91499
|
disableAlerts: getValueOrDefault(config.disable_alerts, DEFAULTS$18.disableAlerts, "bool"),
|
|
91443
91500
|
disableScheduledExports: getValueOrDefault(config.disable_scheduled_exports, DEFAULTS$18.disableScheduledExports, "bool"),
|
|
91444
|
-
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis)
|
|
91501
|
+
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis),
|
|
91502
|
+
customTooltip: saveConfigObject(saveCustomTooltip(config.custom_tooltip))
|
|
91445
91503
|
});
|
|
91446
91504
|
}
|
|
91447
91505
|
/**
|
|
@@ -91496,7 +91554,8 @@ const DEFAULTS$17 = {
|
|
|
91496
91554
|
disableDrillIntoURL: false,
|
|
91497
91555
|
disableAlerts: false,
|
|
91498
91556
|
disableScheduledExports: false,
|
|
91499
|
-
disableKeyDriveAnalysisOn: {}
|
|
91557
|
+
disableKeyDriveAnalysisOn: {},
|
|
91558
|
+
customTooltip: DEFAULT_CUSTOM_TOOLTIP
|
|
91500
91559
|
};
|
|
91501
91560
|
/** @internal */
|
|
91502
91561
|
function columnChartLoad(props) {
|
|
@@ -91547,6 +91606,7 @@ function columnChartLoad(props) {
|
|
|
91547
91606
|
case "disableAlerts": return [["disable_alerts", getValueOrDefault(value, DEFAULTS$17.disableAlerts, "bool")]];
|
|
91548
91607
|
case "disableScheduledExports": return [["disable_scheduled_exports", getValueOrDefault(value, DEFAULTS$17.disableScheduledExports, "bool")]];
|
|
91549
91608
|
case "disableKeyDriveAnalysisOn": return [["disable_key_drive_analysis", loadDisableKda(value)]];
|
|
91609
|
+
case "customTooltip": return [["custom_tooltip", loadCustomTooltip(value)]];
|
|
91550
91610
|
default: return [];
|
|
91551
91611
|
}
|
|
91552
91612
|
});
|
|
@@ -91594,7 +91654,8 @@ function columnChartSave(_fields, config) {
|
|
|
91594
91654
|
disableDrillIntoURL: config.disable_drill_into_url === void 0 ? void 0 : !!config.disable_drill_into_url,
|
|
91595
91655
|
disableAlerts: getValueOrDefault(config.disable_alerts, DEFAULTS$17.disableAlerts, "bool"),
|
|
91596
91656
|
disableScheduledExports: getValueOrDefault(config.disable_scheduled_exports, DEFAULTS$17.disableScheduledExports, "bool"),
|
|
91597
|
-
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis)
|
|
91657
|
+
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis),
|
|
91658
|
+
customTooltip: saveConfigObject(saveCustomTooltip(config.custom_tooltip))
|
|
91598
91659
|
});
|
|
91599
91660
|
}
|
|
91600
91661
|
/**
|
|
@@ -91668,6 +91729,7 @@ const DEFAULTS$16 = {
|
|
|
91668
91729
|
disableAlerts: false,
|
|
91669
91730
|
disableScheduledExports: false,
|
|
91670
91731
|
disableKeyDriveAnalysisOn: {},
|
|
91732
|
+
customTooltip: DEFAULT_CUSTOM_TOOLTIP,
|
|
91671
91733
|
thresholdMeasures: [],
|
|
91672
91734
|
thresholdExcludedMeasures: []
|
|
91673
91735
|
};
|
|
@@ -91741,6 +91803,7 @@ function comboChartLoad(props) {
|
|
|
91741
91803
|
case "disableAlerts": return [["disable_alerts", getValueOrDefault(value, DEFAULTS$16.disableAlerts, "bool")]];
|
|
91742
91804
|
case "disableScheduledExports": return [["disable_scheduled_exports", getValueOrDefault(value, DEFAULTS$16.disableScheduledExports, "bool")]];
|
|
91743
91805
|
case "disableKeyDriveAnalysisOn": return [["disable_key_drive_analysis", loadDisableKda(value)]];
|
|
91806
|
+
case "customTooltip": return [["custom_tooltip", loadCustomTooltip(value)]];
|
|
91744
91807
|
case "thresholdMeasures": return [["line_style_control_metrics", getValueOrDefault(value, DEFAULTS$16.thresholdMeasures, "array")]];
|
|
91745
91808
|
case "thresholdExcludedMeasures": return [["line_style_excluded_metrics", getValueOrDefault(value, DEFAULTS$16.thresholdExcludedMeasures, "array")]];
|
|
91746
91809
|
default: return [];
|
|
@@ -91816,6 +91879,7 @@ function comboChartSave(_fields, config, buckets = []) {
|
|
|
91816
91879
|
disableAlerts: getValueOrDefault(config.disable_alerts, DEFAULTS$16.disableAlerts, "bool"),
|
|
91817
91880
|
disableScheduledExports: getValueOrDefault(config.disable_scheduled_exports, DEFAULTS$16.disableScheduledExports, "bool"),
|
|
91818
91881
|
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis),
|
|
91882
|
+
customTooltip: saveConfigObject(saveCustomTooltip(config.custom_tooltip)),
|
|
91819
91883
|
thresholdMeasures: getValueOrDefault(config.line_style_control_metrics, DEFAULTS$16.thresholdMeasures, "array"),
|
|
91820
91884
|
thresholdExcludedMeasures: getValueOrDefault(config.line_style_excluded_metrics, DEFAULTS$16.thresholdExcludedMeasures, "array")
|
|
91821
91885
|
});
|
|
@@ -91843,7 +91907,8 @@ const DEFAULTS$15 = {
|
|
|
91843
91907
|
disableDrillIntoURL: false,
|
|
91844
91908
|
disableAlerts: false,
|
|
91845
91909
|
disableScheduledExports: false,
|
|
91846
|
-
disableKeyDriveAnalysisOn: {}
|
|
91910
|
+
disableKeyDriveAnalysisOn: {},
|
|
91911
|
+
customTooltip: DEFAULT_CUSTOM_TOOLTIP
|
|
91847
91912
|
};
|
|
91848
91913
|
/** @internal */
|
|
91849
91914
|
function dependencyWheelChartLoad(props) {
|
|
@@ -91860,6 +91925,7 @@ function dependencyWheelChartLoad(props) {
|
|
|
91860
91925
|
case "disableAlerts": return [["disable_alerts", getValueOrDefault(value, DEFAULTS$15.disableAlerts, "bool")]];
|
|
91861
91926
|
case "disableScheduledExports": return [["disable_scheduled_exports", getValueOrDefault(value, DEFAULTS$15.disableScheduledExports, "bool")]];
|
|
91862
91927
|
case "disableKeyDriveAnalysisOn": return [["disable_key_drive_analysis", loadDisableKda(value)]];
|
|
91928
|
+
case "customTooltip": return [["custom_tooltip", loadCustomTooltip(value)]];
|
|
91863
91929
|
default: return [];
|
|
91864
91930
|
}
|
|
91865
91931
|
});
|
|
@@ -91878,7 +91944,8 @@ function dependencyWheelChartSave(_fields, config) {
|
|
|
91878
91944
|
disableDrillIntoURL: config.disable_drill_into_url === void 0 ? void 0 : !!config.disable_drill_into_url,
|
|
91879
91945
|
disableAlerts: getValueOrDefault(config.disable_alerts, DEFAULTS$15.disableAlerts, "bool"),
|
|
91880
91946
|
disableScheduledExports: getValueOrDefault(config.disable_scheduled_exports, DEFAULTS$15.disableScheduledExports, "bool"),
|
|
91881
|
-
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis)
|
|
91947
|
+
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis),
|
|
91948
|
+
customTooltip: saveConfigObject(saveCustomTooltip(config.custom_tooltip))
|
|
91882
91949
|
});
|
|
91883
91950
|
}
|
|
91884
91951
|
/**
|
|
@@ -91908,7 +91975,8 @@ const DEFAULTS$14 = {
|
|
|
91908
91975
|
disableDrillIntoURL: false,
|
|
91909
91976
|
disableAlerts: false,
|
|
91910
91977
|
disableScheduledExports: false,
|
|
91911
|
-
disableKeyDriveAnalysisOn: {}
|
|
91978
|
+
disableKeyDriveAnalysisOn: {},
|
|
91979
|
+
customTooltip: DEFAULT_CUSTOM_TOOLTIP
|
|
91912
91980
|
};
|
|
91913
91981
|
/** @internal */
|
|
91914
91982
|
function donutChartLoad(props) {
|
|
@@ -91929,6 +91997,7 @@ function donutChartLoad(props) {
|
|
|
91929
91997
|
case "disableAlerts": return [["disable_alerts", getValueOrDefault(value, DEFAULTS$14.disableAlerts, "bool")]];
|
|
91930
91998
|
case "disableScheduledExports": return [["disable_scheduled_exports", getValueOrDefault(value, DEFAULTS$14.disableScheduledExports, "bool")]];
|
|
91931
91999
|
case "disableKeyDriveAnalysisOn": return [["disable_key_drive_analysis", loadDisableKda(value)]];
|
|
92000
|
+
case "customTooltip": return [["custom_tooltip", loadCustomTooltip(value)]];
|
|
91932
92001
|
default: return [];
|
|
91933
92002
|
}
|
|
91934
92003
|
});
|
|
@@ -91951,7 +92020,8 @@ function donutChartSave(_fields, config) {
|
|
|
91951
92020
|
disableDrillIntoURL: config.disable_drill_into_url === void 0 ? void 0 : !!config.disable_drill_into_url,
|
|
91952
92021
|
disableAlerts: getValueOrDefault(config.disable_alerts, DEFAULTS$14.disableAlerts, "bool"),
|
|
91953
92022
|
disableScheduledExports: getValueOrDefault(config.disable_scheduled_exports, DEFAULTS$14.disableScheduledExports, "bool"),
|
|
91954
|
-
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis)
|
|
92023
|
+
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis),
|
|
92024
|
+
customTooltip: saveConfigObject(saveCustomTooltip(config.custom_tooltip))
|
|
91955
92025
|
});
|
|
91956
92026
|
}
|
|
91957
92027
|
/**
|
|
@@ -91981,7 +92051,8 @@ const DEFAULTS$13 = {
|
|
|
91981
92051
|
disableDrillIntoURL: false,
|
|
91982
92052
|
disableAlerts: false,
|
|
91983
92053
|
disableScheduledExports: false,
|
|
91984
|
-
disableKeyDriveAnalysisOn: {}
|
|
92054
|
+
disableKeyDriveAnalysisOn: {},
|
|
92055
|
+
customTooltip: DEFAULT_CUSTOM_TOOLTIP
|
|
91985
92056
|
};
|
|
91986
92057
|
/** @internal */
|
|
91987
92058
|
function funnelChartLoad(props) {
|
|
@@ -92002,6 +92073,7 @@ function funnelChartLoad(props) {
|
|
|
92002
92073
|
case "disableAlerts": return [["disable_alerts", getValueOrDefault(value, DEFAULTS$13.disableAlerts, "bool")]];
|
|
92003
92074
|
case "disableScheduledExports": return [["disable_scheduled_exports", getValueOrDefault(value, DEFAULTS$13.disableScheduledExports, "bool")]];
|
|
92004
92075
|
case "disableKeyDriveAnalysisOn": return [["disable_key_drive_analysis", loadDisableKda(value)]];
|
|
92076
|
+
case "customTooltip": return [["custom_tooltip", loadCustomTooltip(value)]];
|
|
92005
92077
|
default: return [];
|
|
92006
92078
|
}
|
|
92007
92079
|
});
|
|
@@ -92024,7 +92096,8 @@ function funnelChartSave(_fields, config) {
|
|
|
92024
92096
|
disableDrillIntoURL: config.disable_drill_into_url === void 0 ? void 0 : !!config.disable_drill_into_url,
|
|
92025
92097
|
disableAlerts: getValueOrDefault(config.disable_alerts, DEFAULTS$13.disableAlerts, "bool"),
|
|
92026
92098
|
disableScheduledExports: getValueOrDefault(config.disable_scheduled_exports, DEFAULTS$13.disableScheduledExports, "bool"),
|
|
92027
|
-
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis)
|
|
92099
|
+
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis),
|
|
92100
|
+
customTooltip: saveConfigObject(saveCustomTooltip(config.custom_tooltip))
|
|
92028
92101
|
});
|
|
92029
92102
|
}
|
|
92030
92103
|
/**
|
|
@@ -92071,7 +92144,8 @@ const DEFAULTS$12 = {
|
|
|
92071
92144
|
},
|
|
92072
92145
|
disableAlerts: false,
|
|
92073
92146
|
disableScheduledExports: false,
|
|
92074
|
-
disableKeyDriveAnalysisOn: {}
|
|
92147
|
+
disableKeyDriveAnalysisOn: {},
|
|
92148
|
+
customTooltip: DEFAULT_CUSTOM_TOOLTIP
|
|
92075
92149
|
};
|
|
92076
92150
|
function sanitizeControls$1(controls) {
|
|
92077
92151
|
const sanitized = { ...controls };
|
|
@@ -92139,6 +92213,7 @@ function geoAreaChartLoad(props) {
|
|
|
92139
92213
|
case "disableAlerts": return [["disable_alerts", getValueOrDefault(value, DEFAULTS$12.disableAlerts, "bool")]];
|
|
92140
92214
|
case "disableScheduledExports": return [["disable_scheduled_exports", getValueOrDefault(value, DEFAULTS$12.disableScheduledExports, "bool")]];
|
|
92141
92215
|
case "disableKeyDriveAnalysisOn": return [["disable_key_drive_analysis", loadDisableKda(value)]];
|
|
92216
|
+
case "customTooltip": return [["custom_tooltip", loadCustomTooltip(value)]];
|
|
92142
92217
|
default: return [];
|
|
92143
92218
|
}
|
|
92144
92219
|
});
|
|
@@ -92186,7 +92261,8 @@ function geoAreaChartSave(_fields, config, _positions) {
|
|
|
92186
92261
|
bounds,
|
|
92187
92262
|
disableAlerts: getValueOrDefault(config.disable_alerts, DEFAULTS$12.disableAlerts, "bool"),
|
|
92188
92263
|
disableScheduledExports: getValueOrDefault(config.disable_scheduled_exports, DEFAULTS$12.disableScheduledExports, "bool"),
|
|
92189
|
-
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis)
|
|
92264
|
+
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis),
|
|
92265
|
+
customTooltip: saveConfigObject(saveCustomTooltip(config.custom_tooltip))
|
|
92190
92266
|
});
|
|
92191
92267
|
}
|
|
92192
92268
|
/**
|
|
@@ -92242,7 +92318,8 @@ const DEFAULTS$11 = {
|
|
|
92242
92318
|
},
|
|
92243
92319
|
disableAlerts: false,
|
|
92244
92320
|
disableScheduledExports: false,
|
|
92245
|
-
disableKeyDriveAnalysisOn: {}
|
|
92321
|
+
disableKeyDriveAnalysisOn: {},
|
|
92322
|
+
customTooltip: DEFAULT_CUSTOM_TOOLTIP
|
|
92246
92323
|
};
|
|
92247
92324
|
function sanitizeControls(controls) {
|
|
92248
92325
|
const sanitized = { ...controls };
|
|
@@ -92324,6 +92401,7 @@ function geoChartLoad(props) {
|
|
|
92324
92401
|
case "disableAlerts": return [["disable_alerts", getValueOrDefault(value, DEFAULTS$11.disableAlerts, "bool")]];
|
|
92325
92402
|
case "disableScheduledExports": return [["disable_scheduled_exports", getValueOrDefault(value, DEFAULTS$11.disableScheduledExports, "bool")]];
|
|
92326
92403
|
case "disableKeyDriveAnalysisOn": return [["disable_key_drive_analysis", loadDisableKda(value)]];
|
|
92404
|
+
case "customTooltip": return [["custom_tooltip", loadCustomTooltip(value)]];
|
|
92327
92405
|
default: return [];
|
|
92328
92406
|
}
|
|
92329
92407
|
});
|
|
@@ -92388,6 +92466,7 @@ function geoChartSave(_fields, config, positions) {
|
|
|
92388
92466
|
disableAlerts: getValueOrDefault(config.disable_alerts, DEFAULTS$11.disableAlerts, "bool"),
|
|
92389
92467
|
disableScheduledExports: getValueOrDefault(config.disable_scheduled_exports, DEFAULTS$11.disableScheduledExports, "bool"),
|
|
92390
92468
|
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis),
|
|
92469
|
+
customTooltip: saveConfigObject(saveCustomTooltip(config.custom_tooltip)),
|
|
92391
92470
|
longitude: positions[0]?.longitude ?? "",
|
|
92392
92471
|
latitude: positions[0]?.latitude ?? ""
|
|
92393
92472
|
});
|
|
@@ -92531,7 +92610,8 @@ const DEFAULTS$9 = {
|
|
|
92531
92610
|
disableDrillIntoURL: false,
|
|
92532
92611
|
disableAlerts: false,
|
|
92533
92612
|
disableScheduledExports: false,
|
|
92534
|
-
disableKeyDriveAnalysisOn: {}
|
|
92613
|
+
disableKeyDriveAnalysisOn: {},
|
|
92614
|
+
customTooltip: DEFAULT_CUSTOM_TOOLTIP
|
|
92535
92615
|
};
|
|
92536
92616
|
/** @internal */
|
|
92537
92617
|
function heatmapChartLoad(props) {
|
|
@@ -92571,6 +92651,7 @@ function heatmapChartLoad(props) {
|
|
|
92571
92651
|
case "disableAlerts": return [["disable_alerts", getValueOrDefault(value, DEFAULTS$9.disableAlerts, "bool")]];
|
|
92572
92652
|
case "disableScheduledExports": return [["disable_scheduled_exports", getValueOrDefault(value, DEFAULTS$9.disableScheduledExports, "bool")]];
|
|
92573
92653
|
case "disableKeyDriveAnalysisOn": return [["disable_key_drive_analysis", loadDisableKda(value)]];
|
|
92654
|
+
case "customTooltip": return [["custom_tooltip", loadCustomTooltip(value)]];
|
|
92574
92655
|
default: return [];
|
|
92575
92656
|
}
|
|
92576
92657
|
});
|
|
@@ -92610,7 +92691,8 @@ function heatmapChartSave(_fields, config) {
|
|
|
92610
92691
|
disableDrillIntoURL: config.disable_drill_into_url === void 0 ? void 0 : !!config.disable_drill_into_url,
|
|
92611
92692
|
disableAlerts: getValueOrDefault(config.disable_alerts, DEFAULTS$9.disableAlerts, "bool"),
|
|
92612
92693
|
disableScheduledExports: getValueOrDefault(config.disable_scheduled_exports, DEFAULTS$9.disableScheduledExports, "bool"),
|
|
92613
|
-
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis)
|
|
92694
|
+
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis),
|
|
92695
|
+
customTooltip: saveConfigObject(saveCustomTooltip(config.custom_tooltip))
|
|
92614
92696
|
});
|
|
92615
92697
|
}
|
|
92616
92698
|
/**
|
|
@@ -92677,6 +92759,7 @@ const DEFAULTS$8 = {
|
|
|
92677
92759
|
disableAlerts: false,
|
|
92678
92760
|
disableScheduledExports: false,
|
|
92679
92761
|
disableKeyDriveAnalysisOn: {},
|
|
92762
|
+
customTooltip: DEFAULT_CUSTOM_TOOLTIP,
|
|
92680
92763
|
thresholdMeasures: [],
|
|
92681
92764
|
thresholdExcludedMeasures: []
|
|
92682
92765
|
};
|
|
@@ -92749,6 +92832,7 @@ function lineChartLoad(props) {
|
|
|
92749
92832
|
case "disableAlerts": return [["disable_alerts", getValueOrDefault(value, DEFAULTS$8.disableAlerts, "bool")]];
|
|
92750
92833
|
case "disableScheduledExports": return [["disable_scheduled_exports", getValueOrDefault(value, DEFAULTS$8.disableScheduledExports, "bool")]];
|
|
92751
92834
|
case "disableKeyDriveAnalysisOn": return [["disable_key_drive_analysis", loadDisableKda(value)]];
|
|
92835
|
+
case "customTooltip": return [["custom_tooltip", loadCustomTooltip(value)]];
|
|
92752
92836
|
case "thresholdMeasures": return [["line_style_control_metrics", getValueOrDefault(value, DEFAULTS$8.thresholdMeasures, "array")]];
|
|
92753
92837
|
case "thresholdExcludedMeasures": return [["line_style_excluded_metrics", getValueOrDefault(value, DEFAULTS$8.thresholdExcludedMeasures, "array")]];
|
|
92754
92838
|
default: return [];
|
|
@@ -92813,6 +92897,7 @@ function lineChartSave(_fields, config) {
|
|
|
92813
92897
|
disableAlerts: getValueOrDefault(config.disable_alerts, DEFAULTS$8.disableAlerts, "bool"),
|
|
92814
92898
|
disableScheduledExports: getValueOrDefault(config.disable_scheduled_exports, DEFAULTS$8.disableScheduledExports, "bool"),
|
|
92815
92899
|
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis),
|
|
92900
|
+
customTooltip: saveConfigObject(saveCustomTooltip(config.custom_tooltip)),
|
|
92816
92901
|
thresholdMeasures: getValueOrDefault(config.line_style_control_metrics, DEFAULTS$8.thresholdMeasures, "array"),
|
|
92817
92902
|
thresholdExcludedMeasures: getValueOrDefault(config.line_style_excluded_metrics, DEFAULTS$8.thresholdExcludedMeasures, "array")
|
|
92818
92903
|
});
|
|
@@ -92844,7 +92929,8 @@ const DEFAULTS$7 = {
|
|
|
92844
92929
|
disableDrillIntoURL: false,
|
|
92845
92930
|
disableAlerts: false,
|
|
92846
92931
|
disableScheduledExports: false,
|
|
92847
|
-
disableKeyDriveAnalysisOn: {}
|
|
92932
|
+
disableKeyDriveAnalysisOn: {},
|
|
92933
|
+
customTooltip: DEFAULT_CUSTOM_TOOLTIP
|
|
92848
92934
|
};
|
|
92849
92935
|
/** @internal */
|
|
92850
92936
|
function pieChartLoad(props) {
|
|
@@ -92865,6 +92951,7 @@ function pieChartLoad(props) {
|
|
|
92865
92951
|
case "disableAlerts": return [["disable_alerts", getValueOrDefault(value, DEFAULTS$7.disableAlerts, "bool")]];
|
|
92866
92952
|
case "disableScheduledExports": return [["disable_scheduled_exports", getValueOrDefault(value, DEFAULTS$7.disableScheduledExports, "bool")]];
|
|
92867
92953
|
case "disableKeyDriveAnalysisOn": return [["disable_key_drive_analysis", loadDisableKda(value)]];
|
|
92954
|
+
case "customTooltip": return [["custom_tooltip", loadCustomTooltip(value)]];
|
|
92868
92955
|
default: return [];
|
|
92869
92956
|
}
|
|
92870
92957
|
});
|
|
@@ -92887,7 +92974,8 @@ function pieChartSave(_fields, config) {
|
|
|
92887
92974
|
disableDrillIntoURL: config.disable_drill_into_url === void 0 ? void 0 : !!config.disable_drill_into_url,
|
|
92888
92975
|
disableAlerts: getValueOrDefault(config.disable_alerts, DEFAULTS$7.disableAlerts, "bool"),
|
|
92889
92976
|
disableScheduledExports: getValueOrDefault(config.disable_scheduled_exports, DEFAULTS$7.disableScheduledExports, "bool"),
|
|
92890
|
-
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis)
|
|
92977
|
+
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis),
|
|
92978
|
+
customTooltip: saveConfigObject(saveCustomTooltip(config.custom_tooltip))
|
|
92891
92979
|
});
|
|
92892
92980
|
}
|
|
92893
92981
|
/**
|
|
@@ -92917,7 +93005,8 @@ const DEFAULTS$6 = {
|
|
|
92917
93005
|
disableDrillIntoURL: false,
|
|
92918
93006
|
disableAlerts: false,
|
|
92919
93007
|
disableScheduledExports: false,
|
|
92920
|
-
disableKeyDriveAnalysisOn: {}
|
|
93008
|
+
disableKeyDriveAnalysisOn: {},
|
|
93009
|
+
customTooltip: DEFAULT_CUSTOM_TOOLTIP
|
|
92921
93010
|
};
|
|
92922
93011
|
/** @internal */
|
|
92923
93012
|
function pyramidChartLoad(props) {
|
|
@@ -92938,6 +93027,7 @@ function pyramidChartLoad(props) {
|
|
|
92938
93027
|
case "disableAlerts": return [["disable_alerts", getValueOrDefault(value, DEFAULTS$6.disableAlerts, "bool")]];
|
|
92939
93028
|
case "disableScheduledExports": return [["disable_scheduled_exports", getValueOrDefault(value, DEFAULTS$6.disableScheduledExports, "bool")]];
|
|
92940
93029
|
case "disableKeyDriveAnalysisOn": return [["disable_key_drive_analysis", loadDisableKda(value)]];
|
|
93030
|
+
case "customTooltip": return [["custom_tooltip", loadCustomTooltip(value)]];
|
|
92941
93031
|
default: return [];
|
|
92942
93032
|
}
|
|
92943
93033
|
});
|
|
@@ -92960,7 +93050,8 @@ function pyramidChartSave(_fields, config) {
|
|
|
92960
93050
|
disableDrillIntoURL: config.disable_drill_into_url === void 0 ? void 0 : !!config.disable_drill_into_url,
|
|
92961
93051
|
disableAlerts: getValueOrDefault(config.disable_alerts, DEFAULTS$6.disableAlerts, "bool"),
|
|
92962
93052
|
disableScheduledExports: getValueOrDefault(config.disable_scheduled_exports, DEFAULTS$6.disableScheduledExports, "bool"),
|
|
92963
|
-
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis)
|
|
93053
|
+
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis),
|
|
93054
|
+
customTooltip: saveConfigObject(saveCustomTooltip(config.custom_tooltip))
|
|
92964
93055
|
});
|
|
92965
93056
|
}
|
|
92966
93057
|
/**
|
|
@@ -93053,7 +93144,8 @@ const DEFAULTS$4 = {
|
|
|
93053
93144
|
disableDrillIntoURL: false,
|
|
93054
93145
|
disableAlerts: false,
|
|
93055
93146
|
disableScheduledExports: false,
|
|
93056
|
-
disableKeyDriveAnalysisOn: {}
|
|
93147
|
+
disableKeyDriveAnalysisOn: {},
|
|
93148
|
+
customTooltip: DEFAULT_CUSTOM_TOOLTIP
|
|
93057
93149
|
};
|
|
93058
93150
|
/** @internal */
|
|
93059
93151
|
function sankeyChartLoad(props) {
|
|
@@ -93073,6 +93165,7 @@ function sankeyChartLoad(props) {
|
|
|
93073
93165
|
case "disableAlerts": return [["disable_alerts", getValueOrDefault(value, DEFAULTS$4.disableAlerts, "bool")]];
|
|
93074
93166
|
case "disableScheduledExports": return [["disable_scheduled_exports", getValueOrDefault(value, DEFAULTS$4.disableScheduledExports, "bool")]];
|
|
93075
93167
|
case "disableKeyDriveAnalysisOn": return [["disable_key_drive_analysis", loadDisableKda(value)]];
|
|
93168
|
+
case "customTooltip": return [["custom_tooltip", loadCustomTooltip(value)]];
|
|
93076
93169
|
default: return [];
|
|
93077
93170
|
}
|
|
93078
93171
|
});
|
|
@@ -93094,7 +93187,8 @@ function sankeyChartSave(_fields, config) {
|
|
|
93094
93187
|
disableDrillIntoURL: config.disable_drill_into_url === void 0 ? void 0 : !!config.disable_drill_into_url,
|
|
93095
93188
|
disableAlerts: getValueOrDefault(config.disable_alerts, DEFAULTS$4.disableAlerts, "bool"),
|
|
93096
93189
|
disableScheduledExports: getValueOrDefault(config.disable_scheduled_exports, DEFAULTS$4.disableScheduledExports, "bool"),
|
|
93097
|
-
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis)
|
|
93190
|
+
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis),
|
|
93191
|
+
customTooltip: saveConfigObject(saveCustomTooltip(config.custom_tooltip))
|
|
93098
93192
|
});
|
|
93099
93193
|
}
|
|
93100
93194
|
/**
|
|
@@ -93149,7 +93243,8 @@ const DEFAULTS$3 = {
|
|
|
93149
93243
|
disableDrillIntoURL: false,
|
|
93150
93244
|
disableAlerts: false,
|
|
93151
93245
|
disableScheduledExports: false,
|
|
93152
|
-
disableKeyDriveAnalysisOn: {}
|
|
93246
|
+
disableKeyDriveAnalysisOn: {},
|
|
93247
|
+
customTooltip: DEFAULT_CUSTOM_TOOLTIP
|
|
93153
93248
|
};
|
|
93154
93249
|
/** @internal */
|
|
93155
93250
|
function scatterChartLoad(props) {
|
|
@@ -93200,6 +93295,7 @@ function scatterChartLoad(props) {
|
|
|
93200
93295
|
case "disableAlerts": return [["disable_alerts", getValueOrDefault(value, DEFAULTS$3.disableAlerts, "bool")]];
|
|
93201
93296
|
case "disableScheduledExports": return [["disable_scheduled_exports", getValueOrDefault(value, DEFAULTS$3.disableScheduledExports, "bool")]];
|
|
93202
93297
|
case "disableKeyDriveAnalysisOn": return [["disable_key_drive_analysis", loadDisableKda(value)]];
|
|
93298
|
+
case "customTooltip": return [["custom_tooltip", loadCustomTooltip(value)]];
|
|
93203
93299
|
default: return [];
|
|
93204
93300
|
}
|
|
93205
93301
|
});
|
|
@@ -93247,7 +93343,8 @@ function scatterChartSave(_fields, config) {
|
|
|
93247
93343
|
disableDrillIntoURL: config.disable_drill_into_url === void 0 ? void 0 : !!config.disable_drill_into_url,
|
|
93248
93344
|
disableAlerts: getValueOrDefault(config.disable_alerts, DEFAULTS$3.disableAlerts, "bool"),
|
|
93249
93345
|
disableScheduledExports: getValueOrDefault(config.disable_scheduled_exports, DEFAULTS$3.disableScheduledExports, "bool"),
|
|
93250
|
-
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis)
|
|
93346
|
+
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis),
|
|
93347
|
+
customTooltip: saveConfigObject(saveCustomTooltip(config.custom_tooltip))
|
|
93251
93348
|
});
|
|
93252
93349
|
}
|
|
93253
93350
|
/**
|
|
@@ -93475,7 +93572,8 @@ const DEFAULTS$1 = {
|
|
|
93475
93572
|
disableDrillIntoURL: false,
|
|
93476
93573
|
disableAlerts: false,
|
|
93477
93574
|
disableScheduledExports: false,
|
|
93478
|
-
disableKeyDriveAnalysisOn: {}
|
|
93575
|
+
disableKeyDriveAnalysisOn: {},
|
|
93576
|
+
customTooltip: DEFAULT_CUSTOM_TOOLTIP
|
|
93479
93577
|
};
|
|
93480
93578
|
/** @internal */
|
|
93481
93579
|
function treemapChartLoad(props) {
|
|
@@ -93496,6 +93594,7 @@ function treemapChartLoad(props) {
|
|
|
93496
93594
|
case "disableAlerts": return [["disable_alerts", getValueOrDefault(value, DEFAULTS$1.disableAlerts, "bool")]];
|
|
93497
93595
|
case "disableScheduledExports": return [["disable_scheduled_exports", getValueOrDefault(value, DEFAULTS$1.disableScheduledExports, "bool")]];
|
|
93498
93596
|
case "disableKeyDriveAnalysisOn": return [["disable_key_drive_analysis", loadDisableKda(value)]];
|
|
93597
|
+
case "customTooltip": return [["custom_tooltip", loadCustomTooltip(value)]];
|
|
93499
93598
|
default: return [];
|
|
93500
93599
|
}
|
|
93501
93600
|
});
|
|
@@ -93518,7 +93617,8 @@ function treemapChartSave(_fields, config) {
|
|
|
93518
93617
|
disableDrillIntoURL: config.disable_drill_into_url === void 0 ? void 0 : !!config.disable_drill_into_url,
|
|
93519
93618
|
disableAlerts: getValueOrDefault(config.disable_alerts, DEFAULTS$1.disableAlerts, "bool"),
|
|
93520
93619
|
disableScheduledExports: getValueOrDefault(config.disable_scheduled_exports, DEFAULTS$1.disableScheduledExports, "bool"),
|
|
93521
|
-
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis)
|
|
93620
|
+
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis),
|
|
93621
|
+
customTooltip: saveConfigObject(saveCustomTooltip(config.custom_tooltip))
|
|
93522
93622
|
});
|
|
93523
93623
|
}
|
|
93524
93624
|
/**
|
|
@@ -93575,7 +93675,8 @@ const DEFAULTS = {
|
|
|
93575
93675
|
disableDrillIntoURL: false,
|
|
93576
93676
|
disableAlerts: false,
|
|
93577
93677
|
disableScheduledExports: false,
|
|
93578
|
-
disableKeyDriveAnalysisOn: {}
|
|
93678
|
+
disableKeyDriveAnalysisOn: {},
|
|
93679
|
+
customTooltip: DEFAULT_CUSTOM_TOOLTIP
|
|
93579
93680
|
};
|
|
93580
93681
|
/** @internal */
|
|
93581
93682
|
function waterfallChartLoad(props) {
|
|
@@ -93625,6 +93726,7 @@ function waterfallChartLoad(props) {
|
|
|
93625
93726
|
case "disableAlerts": return [["disable_alerts", getValueOrDefault(value, DEFAULTS.disableAlerts, "bool")]];
|
|
93626
93727
|
case "disableScheduledExports": return [["disable_scheduled_exports", getValueOrDefault(value, DEFAULTS.disableScheduledExports, "bool")]];
|
|
93627
93728
|
case "disableKeyDriveAnalysisOn": return [["disable_key_drive_analysis", loadDisableKda(value)]];
|
|
93729
|
+
case "customTooltip": return [["custom_tooltip", loadCustomTooltip(value)]];
|
|
93628
93730
|
default: return [];
|
|
93629
93731
|
}
|
|
93630
93732
|
});
|
|
@@ -93674,7 +93776,8 @@ function waterfallChartSave(_fields, config) {
|
|
|
93674
93776
|
disableDrillIntoURL: config.disable_drill_into_url === void 0 ? void 0 : !!config.disable_drill_into_url,
|
|
93675
93777
|
disableAlerts: getValueOrDefault(config.disable_alerts, DEFAULTS.disableAlerts, "bool"),
|
|
93676
93778
|
disableScheduledExports: getValueOrDefault(config.disable_scheduled_exports, DEFAULTS.disableScheduledExports, "bool"),
|
|
93677
|
-
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis)
|
|
93779
|
+
disableKeyDriveAnalysisOn: saveConfigObject(config.disable_key_drive_analysis),
|
|
93780
|
+
customTooltip: saveConfigObject(saveCustomTooltip(config.custom_tooltip))
|
|
93678
93781
|
});
|
|
93679
93782
|
}
|
|
93680
93783
|
/**
|
|
@@ -151283,7 +151386,7 @@ const _CONFIG = {
|
|
|
151283
151386
|
common: {
|
|
151284
151387
|
"X-Requested-With": "XMLHttpRequest",
|
|
151285
151388
|
"X-GDC-JS-PACKAGE": "@gooddata/api-client-tiger",
|
|
151286
|
-
"X-GDC-JS-PACKAGE-VERSION": "11.46.0-alpha.
|
|
151389
|
+
"X-GDC-JS-PACKAGE-VERSION": "11.46.0-alpha.5"
|
|
151287
151390
|
},
|
|
151288
151391
|
post: { "Content-Type": "application/json;charset=utf8" },
|
|
151289
151392
|
put: { "Content-Type": "application/json;charset=utf8" }
|
|
@@ -151626,6 +151729,38 @@ async function ActionsApiAxiosParamCreator_CleanTranslations(workspaceId, locale
|
|
|
151626
151729
|
};
|
|
151627
151730
|
}
|
|
151628
151731
|
/**
|
|
151732
|
+
* Returns a list of Users who created any object for this workspace
|
|
151733
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
151734
|
+
* @param {string} workspaceId
|
|
151735
|
+
* @param {*} [options] Override http request option.
|
|
151736
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
151737
|
+
* @throws {RequiredError}
|
|
151738
|
+
*/
|
|
151739
|
+
async function ActionsApiAxiosParamCreator_CreatedBy(workspaceId, options = {}, configuration) {
|
|
151740
|
+
assertParamExists$6("createdBy", "workspaceId", workspaceId);
|
|
151741
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/createdBy`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
151742
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
151743
|
+
let baseOptions;
|
|
151744
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
151745
|
+
const localVarRequestOptions = {
|
|
151746
|
+
method: "GET",
|
|
151747
|
+
...baseOptions,
|
|
151748
|
+
...options
|
|
151749
|
+
};
|
|
151750
|
+
const localVarHeaderParameter = {};
|
|
151751
|
+
setSearchParams$7(localVarUrlObj, {});
|
|
151752
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
151753
|
+
localVarRequestOptions.headers = {
|
|
151754
|
+
...localVarHeaderParameter,
|
|
151755
|
+
...headersFromBaseOptions,
|
|
151756
|
+
...options.headers
|
|
151757
|
+
};
|
|
151758
|
+
return {
|
|
151759
|
+
url: toPathString$7(localVarUrlObj),
|
|
151760
|
+
options: localVarRequestOptions
|
|
151761
|
+
};
|
|
151762
|
+
}
|
|
151763
|
+
/**
|
|
151629
151764
|
*
|
|
151630
151765
|
* @summary Get Dashboard Permissions
|
|
151631
151766
|
* @param {string} workspaceId
|
|
@@ -152352,67 +152487,6 @@ async function ActionsApiAxiosParamCreator_ManageWorkspacePermissions(workspaceI
|
|
|
152352
152487
|
};
|
|
152353
152488
|
}
|
|
152354
152489
|
/**
|
|
152355
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger it in its scope only.
|
|
152356
|
-
* @summary (BETA) Sync Metadata to other services
|
|
152357
|
-
* @param {string} workspaceId
|
|
152358
|
-
* @param {*} [options] Override http request option.
|
|
152359
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
152360
|
-
* @throws {RequiredError}
|
|
152361
|
-
*/
|
|
152362
|
-
async function ActionsApiAxiosParamCreator_MetadataSync(workspaceId, options = {}, configuration) {
|
|
152363
|
-
assertParamExists$6("metadataSync", "workspaceId", workspaceId);
|
|
152364
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/metadataSync`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
152365
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
152366
|
-
let baseOptions;
|
|
152367
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
152368
|
-
const localVarRequestOptions = {
|
|
152369
|
-
method: "POST",
|
|
152370
|
-
...baseOptions,
|
|
152371
|
-
...options
|
|
152372
|
-
};
|
|
152373
|
-
const localVarHeaderParameter = {};
|
|
152374
|
-
setSearchParams$7(localVarUrlObj, {});
|
|
152375
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
152376
|
-
localVarRequestOptions.headers = {
|
|
152377
|
-
...localVarHeaderParameter,
|
|
152378
|
-
...headersFromBaseOptions,
|
|
152379
|
-
...options.headers
|
|
152380
|
-
};
|
|
152381
|
-
return {
|
|
152382
|
-
url: toPathString$7(localVarUrlObj),
|
|
152383
|
-
options: localVarRequestOptions
|
|
152384
|
-
};
|
|
152385
|
-
}
|
|
152386
|
-
/**
|
|
152387
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger sync in their scope only.
|
|
152388
|
-
* @summary (BETA) Sync organization scope Metadata to other services
|
|
152389
|
-
* @param {*} [options] Override http request option.
|
|
152390
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
152391
|
-
* @throws {RequiredError}
|
|
152392
|
-
*/
|
|
152393
|
-
async function ActionsApiAxiosParamCreator_MetadataSyncOrganization(options = {}, configuration) {
|
|
152394
|
-
const localVarUrlObj = new URL(`/api/v1/actions/organization/metadataSync`, DUMMY_BASE_URL$7);
|
|
152395
|
-
let baseOptions;
|
|
152396
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
152397
|
-
const localVarRequestOptions = {
|
|
152398
|
-
method: "POST",
|
|
152399
|
-
...baseOptions,
|
|
152400
|
-
...options
|
|
152401
|
-
};
|
|
152402
|
-
const localVarHeaderParameter = {};
|
|
152403
|
-
setSearchParams$7(localVarUrlObj, {});
|
|
152404
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
152405
|
-
localVarRequestOptions.headers = {
|
|
152406
|
-
...localVarHeaderParameter,
|
|
152407
|
-
...headersFromBaseOptions,
|
|
152408
|
-
...options.headers
|
|
152409
|
-
};
|
|
152410
|
-
return {
|
|
152411
|
-
url: toPathString$7(localVarUrlObj),
|
|
152412
|
-
options: localVarRequestOptions
|
|
152413
|
-
};
|
|
152414
|
-
}
|
|
152415
|
-
/**
|
|
152416
152490
|
* Finds API identifier overrides in given workspace hierarchy.
|
|
152417
152491
|
* @summary Finds identifier overrides in workspace hierarchy.
|
|
152418
152492
|
* @param {string} workspaceId
|
|
@@ -152617,6 +152691,35 @@ async function ActionsApiAxiosParamCreator_RegisterWorkspaceUploadNotification(w
|
|
|
152617
152691
|
};
|
|
152618
152692
|
}
|
|
152619
152693
|
/**
|
|
152694
|
+
* Re-applies the latest GoodData-managed AI observability layout to the organization. Requires the AI_OBSERVABILITY entitlement and organization MANAGE permission. Idempotent; customer-authored content is left untouched.
|
|
152695
|
+
* @summary Reload the managed AI observability layout
|
|
152696
|
+
* @param {*} [options] Override http request option.
|
|
152697
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
152698
|
+
* @throws {RequiredError}
|
|
152699
|
+
*/
|
|
152700
|
+
async function ActionsApiAxiosParamCreator_ReloadObservabilityLayout(options = {}, configuration) {
|
|
152701
|
+
const localVarUrlObj = new URL(`/api/v1/actions/organization/reloadObservabilityLayout`, DUMMY_BASE_URL$7);
|
|
152702
|
+
let baseOptions;
|
|
152703
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
152704
|
+
const localVarRequestOptions = {
|
|
152705
|
+
method: "POST",
|
|
152706
|
+
...baseOptions,
|
|
152707
|
+
...options
|
|
152708
|
+
};
|
|
152709
|
+
const localVarHeaderParameter = {};
|
|
152710
|
+
setSearchParams$7(localVarUrlObj, {});
|
|
152711
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
152712
|
+
localVarRequestOptions.headers = {
|
|
152713
|
+
...localVarHeaderParameter,
|
|
152714
|
+
...headersFromBaseOptions,
|
|
152715
|
+
...options.headers
|
|
152716
|
+
};
|
|
152717
|
+
return {
|
|
152718
|
+
url: toPathString$7(localVarUrlObj),
|
|
152719
|
+
options: localVarRequestOptions
|
|
152720
|
+
};
|
|
152721
|
+
}
|
|
152722
|
+
/**
|
|
152620
152723
|
*
|
|
152621
152724
|
* @summary Remove targets from IP allowlist policy
|
|
152622
152725
|
* @param {string} id
|
|
@@ -152937,6 +153040,38 @@ async function ActionsApiAxiosParamCreator_SwitchActiveIdentityProvider(switchId
|
|
|
152937
153040
|
};
|
|
152938
153041
|
}
|
|
152939
153042
|
/**
|
|
153043
|
+
* Returns a list of tags for this workspace
|
|
153044
|
+
* @summary Get Analytics Catalog Tags
|
|
153045
|
+
* @param {string} workspaceId
|
|
153046
|
+
* @param {*} [options] Override http request option.
|
|
153047
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
153048
|
+
* @throws {RequiredError}
|
|
153049
|
+
*/
|
|
153050
|
+
async function ActionsApiAxiosParamCreator_Tags(workspaceId, options = {}, configuration) {
|
|
153051
|
+
assertParamExists$6("tags", "workspaceId", workspaceId);
|
|
153052
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/tags`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
153053
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
153054
|
+
let baseOptions;
|
|
153055
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
153056
|
+
const localVarRequestOptions = {
|
|
153057
|
+
method: "GET",
|
|
153058
|
+
...baseOptions,
|
|
153059
|
+
...options
|
|
153060
|
+
};
|
|
153061
|
+
const localVarHeaderParameter = {};
|
|
153062
|
+
setSearchParams$7(localVarUrlObj, {});
|
|
153063
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
153064
|
+
localVarRequestOptions.headers = {
|
|
153065
|
+
...localVarHeaderParameter,
|
|
153066
|
+
...headersFromBaseOptions,
|
|
153067
|
+
...options.headers
|
|
153068
|
+
};
|
|
153069
|
+
return {
|
|
153070
|
+
url: toPathString$7(localVarUrlObj),
|
|
153071
|
+
options: localVarRequestOptions
|
|
153072
|
+
};
|
|
153073
|
+
}
|
|
153074
|
+
/**
|
|
152940
153075
|
*
|
|
152941
153076
|
* @summary Unpause selected automations across all workspaces
|
|
152942
153077
|
* @param {OrganizationAutomationManagementBulkRequest} organizationAutomationManagementBulkRequest
|
|
@@ -153330,6 +153465,19 @@ async function ActionsApi_CleanTranslations(axios, basePath, requestParameters,
|
|
|
153330
153465
|
return createRequestFunction$7(await ActionsApiAxiosParamCreator_CleanTranslations(requestParameters.workspaceId, requestParameters.localeRequest, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
153331
153466
|
}
|
|
153332
153467
|
/**
|
|
153468
|
+
* Returns a list of Users who created any object for this workspace
|
|
153469
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
153470
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
153471
|
+
* @param {string} basePath Base path.
|
|
153472
|
+
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
153473
|
+
* @param {*} [options] Override http request option.
|
|
153474
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
153475
|
+
* @throws {RequiredError}
|
|
153476
|
+
*/
|
|
153477
|
+
async function ActionsApi_CreatedBy(axios, basePath, requestParameters, options, configuration) {
|
|
153478
|
+
return createRequestFunction$7(await ActionsApiAxiosParamCreator_CreatedBy(requestParameters.workspaceId, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
153479
|
+
}
|
|
153480
|
+
/**
|
|
153333
153481
|
*
|
|
153334
153482
|
* @summary Get Dashboard Permissions
|
|
153335
153483
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -153588,31 +153736,6 @@ async function ActionsApi_ManageWorkspacePermissions(axios, basePath, requestPar
|
|
|
153588
153736
|
return createRequestFunction$7(await ActionsApiAxiosParamCreator_ManageWorkspacePermissions(requestParameters.workspaceId, requestParameters.workspacePermissionAssignment, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
153589
153737
|
}
|
|
153590
153738
|
/**
|
|
153591
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger it in its scope only.
|
|
153592
|
-
* @summary (BETA) Sync Metadata to other services
|
|
153593
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
153594
|
-
* @param {string} basePath Base path.
|
|
153595
|
-
* @param {ActionsApiMetadataSyncRequest} requestParameters Request parameters.
|
|
153596
|
-
* @param {*} [options] Override http request option.
|
|
153597
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
153598
|
-
* @throws {RequiredError}
|
|
153599
|
-
*/
|
|
153600
|
-
async function ActionsApi_MetadataSync(axios, basePath, requestParameters, options, configuration) {
|
|
153601
|
-
return createRequestFunction$7(await ActionsApiAxiosParamCreator_MetadataSync(requestParameters.workspaceId, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
153602
|
-
}
|
|
153603
|
-
/**
|
|
153604
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger sync in their scope only.
|
|
153605
|
-
* @summary (BETA) Sync organization scope Metadata to other services
|
|
153606
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
153607
|
-
* @param {string} basePath Base path.
|
|
153608
|
-
* @param {*} [options] Override http request option.
|
|
153609
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
153610
|
-
* @throws {RequiredError}
|
|
153611
|
-
*/
|
|
153612
|
-
async function ActionsApi_MetadataSyncOrganization(axios, basePath, options, configuration) {
|
|
153613
|
-
return createRequestFunction$7(await ActionsApiAxiosParamCreator_MetadataSyncOrganization(options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
153614
|
-
}
|
|
153615
|
-
/**
|
|
153616
153739
|
* Finds API identifier overrides in given workspace hierarchy.
|
|
153617
153740
|
* @summary Finds identifier overrides in workspace hierarchy.
|
|
153618
153741
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -153691,6 +153814,18 @@ async function ActionsApi_RegisterWorkspaceUploadNotification(axios, basePath, r
|
|
|
153691
153814
|
return createRequestFunction$7(await ActionsApiAxiosParamCreator_RegisterWorkspaceUploadNotification(requestParameters.workspaceId, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
153692
153815
|
}
|
|
153693
153816
|
/**
|
|
153817
|
+
* Re-applies the latest GoodData-managed AI observability layout to the organization. Requires the AI_OBSERVABILITY entitlement and organization MANAGE permission. Idempotent; customer-authored content is left untouched.
|
|
153818
|
+
* @summary Reload the managed AI observability layout
|
|
153819
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
153820
|
+
* @param {string} basePath Base path.
|
|
153821
|
+
* @param {*} [options] Override http request option.
|
|
153822
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
153823
|
+
* @throws {RequiredError}
|
|
153824
|
+
*/
|
|
153825
|
+
async function ActionsApi_ReloadObservabilityLayout(axios, basePath, options, configuration) {
|
|
153826
|
+
return createRequestFunction$7(await ActionsApiAxiosParamCreator_ReloadObservabilityLayout(options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
153827
|
+
}
|
|
153828
|
+
/**
|
|
153694
153829
|
*
|
|
153695
153830
|
* @summary Remove targets from IP allowlist policy
|
|
153696
153831
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -153807,6 +153942,19 @@ async function ActionsApi_SwitchActiveIdentityProvider(axios, basePath, requestP
|
|
|
153807
153942
|
return createRequestFunction$7(await ActionsApiAxiosParamCreator_SwitchActiveIdentityProvider(requestParameters.switchIdentityProviderRequest, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
153808
153943
|
}
|
|
153809
153944
|
/**
|
|
153945
|
+
* Returns a list of tags for this workspace
|
|
153946
|
+
* @summary Get Analytics Catalog Tags
|
|
153947
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
153948
|
+
* @param {string} basePath Base path.
|
|
153949
|
+
* @param {ActionsApiTagsRequest} requestParameters Request parameters.
|
|
153950
|
+
* @param {*} [options] Override http request option.
|
|
153951
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
153952
|
+
* @throws {RequiredError}
|
|
153953
|
+
*/
|
|
153954
|
+
async function ActionsApi_Tags(axios, basePath, requestParameters, options, configuration) {
|
|
153955
|
+
return createRequestFunction$7(await ActionsApiAxiosParamCreator_Tags(requestParameters.workspaceId, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
153956
|
+
}
|
|
153957
|
+
/**
|
|
153810
153958
|
*
|
|
153811
153959
|
* @summary Unpause selected automations across all workspaces
|
|
153812
153960
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -153995,6 +154143,17 @@ var ActionsApi$4 = class extends BaseAPI$7 {
|
|
|
153995
154143
|
return ActionsApi_CleanTranslations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
153996
154144
|
}
|
|
153997
154145
|
/**
|
|
154146
|
+
* Returns a list of Users who created any object for this workspace
|
|
154147
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
154148
|
+
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
154149
|
+
* @param {*} [options] Override http request option.
|
|
154150
|
+
* @throws {RequiredError}
|
|
154151
|
+
* @memberof ActionsApi
|
|
154152
|
+
*/
|
|
154153
|
+
createdBy(requestParameters, options) {
|
|
154154
|
+
return ActionsApi_CreatedBy(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
154155
|
+
}
|
|
154156
|
+
/**
|
|
153998
154157
|
*
|
|
153999
154158
|
* @summary Get Dashboard Permissions
|
|
154000
154159
|
* @param {ActionsApiDashboardPermissionsRequest} requestParameters Request parameters.
|
|
@@ -154213,27 +154372,6 @@ var ActionsApi$4 = class extends BaseAPI$7 {
|
|
|
154213
154372
|
return ActionsApi_ManageWorkspacePermissions(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
154214
154373
|
}
|
|
154215
154374
|
/**
|
|
154216
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger it in its scope only.
|
|
154217
|
-
* @summary (BETA) Sync Metadata to other services
|
|
154218
|
-
* @param {ActionsApiMetadataSyncRequest} requestParameters Request parameters.
|
|
154219
|
-
* @param {*} [options] Override http request option.
|
|
154220
|
-
* @throws {RequiredError}
|
|
154221
|
-
* @memberof ActionsApi
|
|
154222
|
-
*/
|
|
154223
|
-
metadataSync(requestParameters, options) {
|
|
154224
|
-
return ActionsApi_MetadataSync(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
154225
|
-
}
|
|
154226
|
-
/**
|
|
154227
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger sync in their scope only.
|
|
154228
|
-
* @summary (BETA) Sync organization scope Metadata to other services
|
|
154229
|
-
* @param {*} [options] Override http request option.
|
|
154230
|
-
* @throws {RequiredError}
|
|
154231
|
-
* @memberof ActionsApi
|
|
154232
|
-
*/
|
|
154233
|
-
metadataSyncOrganization(options) {
|
|
154234
|
-
return ActionsApi_MetadataSyncOrganization(this.axios, this.basePath, options, this.configuration);
|
|
154235
|
-
}
|
|
154236
|
-
/**
|
|
154237
154375
|
* Finds API identifier overrides in given workspace hierarchy.
|
|
154238
154376
|
* @summary Finds identifier overrides in workspace hierarchy.
|
|
154239
154377
|
* @param {ActionsApiOverriddenChildEntitiesRequest} requestParameters Request parameters.
|
|
@@ -154300,6 +154438,16 @@ var ActionsApi$4 = class extends BaseAPI$7 {
|
|
|
154300
154438
|
return ActionsApi_RegisterWorkspaceUploadNotification(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
154301
154439
|
}
|
|
154302
154440
|
/**
|
|
154441
|
+
* Re-applies the latest GoodData-managed AI observability layout to the organization. Requires the AI_OBSERVABILITY entitlement and organization MANAGE permission. Idempotent; customer-authored content is left untouched.
|
|
154442
|
+
* @summary Reload the managed AI observability layout
|
|
154443
|
+
* @param {*} [options] Override http request option.
|
|
154444
|
+
* @throws {RequiredError}
|
|
154445
|
+
* @memberof ActionsApi
|
|
154446
|
+
*/
|
|
154447
|
+
reloadObservabilityLayout(options) {
|
|
154448
|
+
return ActionsApi_ReloadObservabilityLayout(this.axios, this.basePath, options, this.configuration);
|
|
154449
|
+
}
|
|
154450
|
+
/**
|
|
154303
154451
|
*
|
|
154304
154452
|
* @summary Remove targets from IP allowlist policy
|
|
154305
154453
|
* @param {ActionsApiRemoveTargetsRequest} requestParameters Request parameters.
|
|
@@ -154398,6 +154546,17 @@ var ActionsApi$4 = class extends BaseAPI$7 {
|
|
|
154398
154546
|
return ActionsApi_SwitchActiveIdentityProvider(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
154399
154547
|
}
|
|
154400
154548
|
/**
|
|
154549
|
+
* Returns a list of tags for this workspace
|
|
154550
|
+
* @summary Get Analytics Catalog Tags
|
|
154551
|
+
* @param {ActionsApiTagsRequest} requestParameters Request parameters.
|
|
154552
|
+
* @param {*} [options] Override http request option.
|
|
154553
|
+
* @throws {RequiredError}
|
|
154554
|
+
* @memberof ActionsApi
|
|
154555
|
+
*/
|
|
154556
|
+
tags(requestParameters, options) {
|
|
154557
|
+
return ActionsApi_Tags(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
154558
|
+
}
|
|
154559
|
+
/**
|
|
154401
154560
|
*
|
|
154402
154561
|
* @summary Unpause selected automations across all workspaces
|
|
154403
154562
|
* @param {ActionsApiUnpauseOrganizationAutomationsRequest} requestParameters Request parameters.
|
|
@@ -155881,6 +156040,46 @@ async function EntitiesApiAxiosParamCreator_CreateEntityWorkspaceDataFilters(wor
|
|
|
155881
156040
|
}
|
|
155882
156041
|
/**
|
|
155883
156042
|
*
|
|
156043
|
+
* @summary Post Workspace Export Template
|
|
156044
|
+
* @param {string} workspaceId
|
|
156045
|
+
* @param {JsonApiWorkspaceExportTemplatePostOptionalIdDocument} jsonApiWorkspaceExportTemplatePostOptionalIdDocument
|
|
156046
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
156047
|
+
* @param {*} [options] Override http request option.
|
|
156048
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
156049
|
+
* @throws {RequiredError}
|
|
156050
|
+
*/
|
|
156051
|
+
async function EntitiesApiAxiosParamCreator_CreateEntityWorkspaceExportTemplates(workspaceId, jsonApiWorkspaceExportTemplatePostOptionalIdDocument, metaInclude, options = {}, configuration) {
|
|
156052
|
+
assertParamExists$6("createEntityWorkspaceExportTemplates", "workspaceId", workspaceId);
|
|
156053
|
+
assertParamExists$6("createEntityWorkspaceExportTemplates", "jsonApiWorkspaceExportTemplatePostOptionalIdDocument", jsonApiWorkspaceExportTemplatePostOptionalIdDocument);
|
|
156054
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/workspaceExportTemplates`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
156055
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
156056
|
+
let baseOptions;
|
|
156057
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
156058
|
+
const localVarRequestOptions = {
|
|
156059
|
+
method: "POST",
|
|
156060
|
+
...baseOptions,
|
|
156061
|
+
...options
|
|
156062
|
+
};
|
|
156063
|
+
const localVarHeaderParameter = {};
|
|
156064
|
+
const localVarQueryParameter = {};
|
|
156065
|
+
if (metaInclude) localVarQueryParameter["metaInclude"] = Array.from(metaInclude).join(COLLECTION_FORMATS$1.csv);
|
|
156066
|
+
const consumes = ["application/vnd.gooddata.api+json", "application/json"];
|
|
156067
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
156068
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter);
|
|
156069
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
156070
|
+
localVarRequestOptions.headers = {
|
|
156071
|
+
...localVarHeaderParameter,
|
|
156072
|
+
...headersFromBaseOptions,
|
|
156073
|
+
...options.headers
|
|
156074
|
+
};
|
|
156075
|
+
localVarRequestOptions.data = typeof jsonApiWorkspaceExportTemplatePostOptionalIdDocument !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(jsonApiWorkspaceExportTemplatePostOptionalIdDocument !== void 0 ? jsonApiWorkspaceExportTemplatePostOptionalIdDocument : {}) : jsonApiWorkspaceExportTemplatePostOptionalIdDocument || "";
|
|
156076
|
+
return {
|
|
156077
|
+
url: toPathString$7(localVarUrlObj),
|
|
156078
|
+
options: localVarRequestOptions
|
|
156079
|
+
};
|
|
156080
|
+
}
|
|
156081
|
+
/**
|
|
156082
|
+
*
|
|
155884
156083
|
* @summary Post Settings for Workspaces
|
|
155885
156084
|
* @param {string} workspaceId
|
|
155886
156085
|
* @param {JsonApiWorkspaceSettingPostOptionalIdDocument} jsonApiWorkspaceSettingPostOptionalIdDocument
|
|
@@ -157150,6 +157349,40 @@ async function EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceDataFilters(wor
|
|
|
157150
157349
|
}
|
|
157151
157350
|
/**
|
|
157152
157351
|
*
|
|
157352
|
+
* @summary Delete a Workspace Export Template
|
|
157353
|
+
* @param {string} workspaceId
|
|
157354
|
+
* @param {string} objectId
|
|
157355
|
+
* @param {*} [options] Override http request option.
|
|
157356
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
157357
|
+
* @throws {RequiredError}
|
|
157358
|
+
*/
|
|
157359
|
+
async function EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceExportTemplates(workspaceId, objectId, options = {}, configuration) {
|
|
157360
|
+
assertParamExists$6("deleteEntityWorkspaceExportTemplates", "workspaceId", workspaceId);
|
|
157361
|
+
assertParamExists$6("deleteEntityWorkspaceExportTemplates", "objectId", objectId);
|
|
157362
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/workspaceExportTemplates/{objectId}`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{objectId}`, encodeURIComponent(String(objectId)));
|
|
157363
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
157364
|
+
let baseOptions;
|
|
157365
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
157366
|
+
const localVarRequestOptions = {
|
|
157367
|
+
method: "DELETE",
|
|
157368
|
+
...baseOptions,
|
|
157369
|
+
...options
|
|
157370
|
+
};
|
|
157371
|
+
const localVarHeaderParameter = {};
|
|
157372
|
+
setSearchParams$7(localVarUrlObj, {});
|
|
157373
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
157374
|
+
localVarRequestOptions.headers = {
|
|
157375
|
+
...localVarHeaderParameter,
|
|
157376
|
+
...headersFromBaseOptions,
|
|
157377
|
+
...options.headers
|
|
157378
|
+
};
|
|
157379
|
+
return {
|
|
157380
|
+
url: toPathString$7(localVarUrlObj),
|
|
157381
|
+
options: localVarRequestOptions
|
|
157382
|
+
};
|
|
157383
|
+
}
|
|
157384
|
+
/**
|
|
157385
|
+
*
|
|
157153
157386
|
* @summary Delete a Setting for Workspace
|
|
157154
157387
|
* @param {string} workspaceId
|
|
157155
157388
|
* @param {string} objectId
|
|
@@ -159253,6 +159486,53 @@ async function EntitiesApiAxiosParamCreator_GetAllEntitiesWorkspaceDataFilters(w
|
|
|
159253
159486
|
}
|
|
159254
159487
|
/**
|
|
159255
159488
|
*
|
|
159489
|
+
* @summary Get all Workspace Export Templates
|
|
159490
|
+
* @param {string} workspaceId
|
|
159491
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
159492
|
+
* @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\').
|
|
159493
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
159494
|
+
* @param {number} [size] The size of the page to be returned
|
|
159495
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
159496
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
159497
|
+
* @param {Array<'origin' | 'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
159498
|
+
* @param {*} [options] Override http request option.
|
|
159499
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
159500
|
+
* @throws {RequiredError}
|
|
159501
|
+
*/
|
|
159502
|
+
async function EntitiesApiAxiosParamCreator_GetAllEntitiesWorkspaceExportTemplates(workspaceId, origin, filter, page, size, sort, xGDCVALIDATERELATIONS, metaInclude, options = {}, configuration) {
|
|
159503
|
+
assertParamExists$6("getAllEntitiesWorkspaceExportTemplates", "workspaceId", workspaceId);
|
|
159504
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/workspaceExportTemplates`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
159505
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
159506
|
+
let baseOptions;
|
|
159507
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
159508
|
+
const localVarRequestOptions = {
|
|
159509
|
+
method: "GET",
|
|
159510
|
+
...baseOptions,
|
|
159511
|
+
...options
|
|
159512
|
+
};
|
|
159513
|
+
const localVarHeaderParameter = {};
|
|
159514
|
+
const localVarQueryParameter = {};
|
|
159515
|
+
if (origin !== void 0) localVarQueryParameter["origin"] = origin;
|
|
159516
|
+
if (filter !== void 0) localVarQueryParameter["filter"] = filter;
|
|
159517
|
+
if (page !== void 0) localVarQueryParameter["page"] = page;
|
|
159518
|
+
if (size !== void 0) localVarQueryParameter["size"] = size;
|
|
159519
|
+
if (sort) localVarQueryParameter["sort"] = sort;
|
|
159520
|
+
if (metaInclude) localVarQueryParameter["metaInclude"] = Array.from(metaInclude).join(COLLECTION_FORMATS$1.csv);
|
|
159521
|
+
if (xGDCVALIDATERELATIONS !== void 0 && xGDCVALIDATERELATIONS !== null) localVarHeaderParameter["X-GDC-VALIDATE-RELATIONS"] = String(JSON.stringify(xGDCVALIDATERELATIONS));
|
|
159522
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter);
|
|
159523
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
159524
|
+
localVarRequestOptions.headers = {
|
|
159525
|
+
...localVarHeaderParameter,
|
|
159526
|
+
...headersFromBaseOptions,
|
|
159527
|
+
...options.headers
|
|
159528
|
+
};
|
|
159529
|
+
return {
|
|
159530
|
+
url: toPathString$7(localVarUrlObj),
|
|
159531
|
+
options: localVarRequestOptions
|
|
159532
|
+
};
|
|
159533
|
+
}
|
|
159534
|
+
/**
|
|
159535
|
+
*
|
|
159256
159536
|
* @summary Get all Setting for Workspaces
|
|
159257
159537
|
* @param {string} workspaceId
|
|
159258
159538
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
@@ -161230,6 +161510,47 @@ async function EntitiesApiAxiosParamCreator_GetEntityWorkspaceDataFilters(worksp
|
|
|
161230
161510
|
}
|
|
161231
161511
|
/**
|
|
161232
161512
|
*
|
|
161513
|
+
* @summary Get a Workspace Export Template
|
|
161514
|
+
* @param {string} workspaceId
|
|
161515
|
+
* @param {string} objectId
|
|
161516
|
+
* @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\').
|
|
161517
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
161518
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
161519
|
+
* @param {*} [options] Override http request option.
|
|
161520
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
161521
|
+
* @throws {RequiredError}
|
|
161522
|
+
*/
|
|
161523
|
+
async function EntitiesApiAxiosParamCreator_GetEntityWorkspaceExportTemplates(workspaceId, objectId, filter, xGDCVALIDATERELATIONS, metaInclude, options = {}, configuration) {
|
|
161524
|
+
assertParamExists$6("getEntityWorkspaceExportTemplates", "workspaceId", workspaceId);
|
|
161525
|
+
assertParamExists$6("getEntityWorkspaceExportTemplates", "objectId", objectId);
|
|
161526
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/workspaceExportTemplates/{objectId}`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{objectId}`, encodeURIComponent(String(objectId)));
|
|
161527
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
161528
|
+
let baseOptions;
|
|
161529
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
161530
|
+
const localVarRequestOptions = {
|
|
161531
|
+
method: "GET",
|
|
161532
|
+
...baseOptions,
|
|
161533
|
+
...options
|
|
161534
|
+
};
|
|
161535
|
+
const localVarHeaderParameter = {};
|
|
161536
|
+
const localVarQueryParameter = {};
|
|
161537
|
+
if (filter !== void 0) localVarQueryParameter["filter"] = filter;
|
|
161538
|
+
if (metaInclude) localVarQueryParameter["metaInclude"] = Array.from(metaInclude).join(COLLECTION_FORMATS$1.csv);
|
|
161539
|
+
if (xGDCVALIDATERELATIONS !== void 0 && xGDCVALIDATERELATIONS !== null) localVarHeaderParameter["X-GDC-VALIDATE-RELATIONS"] = String(JSON.stringify(xGDCVALIDATERELATIONS));
|
|
161540
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter);
|
|
161541
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
161542
|
+
localVarRequestOptions.headers = {
|
|
161543
|
+
...localVarHeaderParameter,
|
|
161544
|
+
...headersFromBaseOptions,
|
|
161545
|
+
...options.headers
|
|
161546
|
+
};
|
|
161547
|
+
return {
|
|
161548
|
+
url: toPathString$7(localVarUrlObj),
|
|
161549
|
+
options: localVarRequestOptions
|
|
161550
|
+
};
|
|
161551
|
+
}
|
|
161552
|
+
/**
|
|
161553
|
+
*
|
|
161233
161554
|
* @summary Get a Setting for Workspace
|
|
161234
161555
|
* @param {string} workspaceId
|
|
161235
161556
|
* @param {string} objectId
|
|
@@ -162942,6 +163263,48 @@ async function EntitiesApiAxiosParamCreator_PatchEntityWorkspaceDataFilters(work
|
|
|
162942
163263
|
}
|
|
162943
163264
|
/**
|
|
162944
163265
|
*
|
|
163266
|
+
* @summary Patch a Workspace Export Template
|
|
163267
|
+
* @param {string} workspaceId
|
|
163268
|
+
* @param {string} objectId
|
|
163269
|
+
* @param {JsonApiWorkspaceExportTemplatePatchDocument} jsonApiWorkspaceExportTemplatePatchDocument
|
|
163270
|
+
* @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\').
|
|
163271
|
+
* @param {*} [options] Override http request option.
|
|
163272
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
163273
|
+
* @throws {RequiredError}
|
|
163274
|
+
*/
|
|
163275
|
+
async function EntitiesApiAxiosParamCreator_PatchEntityWorkspaceExportTemplates(workspaceId, objectId, jsonApiWorkspaceExportTemplatePatchDocument, filter, options = {}, configuration) {
|
|
163276
|
+
assertParamExists$6("patchEntityWorkspaceExportTemplates", "workspaceId", workspaceId);
|
|
163277
|
+
assertParamExists$6("patchEntityWorkspaceExportTemplates", "objectId", objectId);
|
|
163278
|
+
assertParamExists$6("patchEntityWorkspaceExportTemplates", "jsonApiWorkspaceExportTemplatePatchDocument", jsonApiWorkspaceExportTemplatePatchDocument);
|
|
163279
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/workspaceExportTemplates/{objectId}`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{objectId}`, encodeURIComponent(String(objectId)));
|
|
163280
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
163281
|
+
let baseOptions;
|
|
163282
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
163283
|
+
const localVarRequestOptions = {
|
|
163284
|
+
method: "PATCH",
|
|
163285
|
+
...baseOptions,
|
|
163286
|
+
...options
|
|
163287
|
+
};
|
|
163288
|
+
const localVarHeaderParameter = {};
|
|
163289
|
+
const localVarQueryParameter = {};
|
|
163290
|
+
if (filter !== void 0) localVarQueryParameter["filter"] = filter;
|
|
163291
|
+
const consumes = ["application/vnd.gooddata.api+json", "application/json"];
|
|
163292
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
163293
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter);
|
|
163294
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
163295
|
+
localVarRequestOptions.headers = {
|
|
163296
|
+
...localVarHeaderParameter,
|
|
163297
|
+
...headersFromBaseOptions,
|
|
163298
|
+
...options.headers
|
|
163299
|
+
};
|
|
163300
|
+
localVarRequestOptions.data = typeof jsonApiWorkspaceExportTemplatePatchDocument !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(jsonApiWorkspaceExportTemplatePatchDocument !== void 0 ? jsonApiWorkspaceExportTemplatePatchDocument : {}) : jsonApiWorkspaceExportTemplatePatchDocument || "";
|
|
163301
|
+
return {
|
|
163302
|
+
url: toPathString$7(localVarUrlObj),
|
|
163303
|
+
options: localVarRequestOptions
|
|
163304
|
+
};
|
|
163305
|
+
}
|
|
163306
|
+
/**
|
|
163307
|
+
*
|
|
162945
163308
|
* @summary Patch a Setting for Workspace
|
|
162946
163309
|
* @param {string} workspaceId
|
|
162947
163310
|
* @param {string} objectId
|
|
@@ -165542,6 +165905,48 @@ async function EntitiesApiAxiosParamCreator_UpdateEntityWorkspaceDataFilters(wor
|
|
|
165542
165905
|
}
|
|
165543
165906
|
/**
|
|
165544
165907
|
*
|
|
165908
|
+
* @summary Put a Workspace Export Template
|
|
165909
|
+
* @param {string} workspaceId
|
|
165910
|
+
* @param {string} objectId
|
|
165911
|
+
* @param {JsonApiWorkspaceExportTemplateInDocument} jsonApiWorkspaceExportTemplateInDocument
|
|
165912
|
+
* @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\').
|
|
165913
|
+
* @param {*} [options] Override http request option.
|
|
165914
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
165915
|
+
* @throws {RequiredError}
|
|
165916
|
+
*/
|
|
165917
|
+
async function EntitiesApiAxiosParamCreator_UpdateEntityWorkspaceExportTemplates(workspaceId, objectId, jsonApiWorkspaceExportTemplateInDocument, filter, options = {}, configuration) {
|
|
165918
|
+
assertParamExists$6("updateEntityWorkspaceExportTemplates", "workspaceId", workspaceId);
|
|
165919
|
+
assertParamExists$6("updateEntityWorkspaceExportTemplates", "objectId", objectId);
|
|
165920
|
+
assertParamExists$6("updateEntityWorkspaceExportTemplates", "jsonApiWorkspaceExportTemplateInDocument", jsonApiWorkspaceExportTemplateInDocument);
|
|
165921
|
+
const localVarPath = `/api/v1/entities/workspaces/{workspaceId}/workspaceExportTemplates/{objectId}`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{objectId}`, encodeURIComponent(String(objectId)));
|
|
165922
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$7);
|
|
165923
|
+
let baseOptions;
|
|
165924
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
165925
|
+
const localVarRequestOptions = {
|
|
165926
|
+
method: "PUT",
|
|
165927
|
+
...baseOptions,
|
|
165928
|
+
...options
|
|
165929
|
+
};
|
|
165930
|
+
const localVarHeaderParameter = {};
|
|
165931
|
+
const localVarQueryParameter = {};
|
|
165932
|
+
if (filter !== void 0) localVarQueryParameter["filter"] = filter;
|
|
165933
|
+
const consumes = ["application/vnd.gooddata.api+json", "application/json"];
|
|
165934
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
165935
|
+
setSearchParams$7(localVarUrlObj, localVarQueryParameter);
|
|
165936
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
165937
|
+
localVarRequestOptions.headers = {
|
|
165938
|
+
...localVarHeaderParameter,
|
|
165939
|
+
...headersFromBaseOptions,
|
|
165940
|
+
...options.headers
|
|
165941
|
+
};
|
|
165942
|
+
localVarRequestOptions.data = typeof jsonApiWorkspaceExportTemplateInDocument !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(jsonApiWorkspaceExportTemplateInDocument !== void 0 ? jsonApiWorkspaceExportTemplateInDocument : {}) : jsonApiWorkspaceExportTemplateInDocument || "";
|
|
165943
|
+
return {
|
|
165944
|
+
url: toPathString$7(localVarUrlObj),
|
|
165945
|
+
options: localVarRequestOptions
|
|
165946
|
+
};
|
|
165947
|
+
}
|
|
165948
|
+
/**
|
|
165949
|
+
*
|
|
165545
165950
|
* @summary Put a Setting for a Workspace
|
|
165546
165951
|
* @param {string} workspaceId
|
|
165547
165952
|
* @param {string} objectId
|
|
@@ -166093,6 +166498,19 @@ async function EntitiesApi_CreateEntityWorkspaceDataFilters(axios, basePath, req
|
|
|
166093
166498
|
}
|
|
166094
166499
|
/**
|
|
166095
166500
|
*
|
|
166501
|
+
* @summary Post Workspace Export Template
|
|
166502
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
166503
|
+
* @param {string} basePath Base path.
|
|
166504
|
+
* @param {EntitiesApiCreateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
166505
|
+
* @param {*} [options] Override http request option.
|
|
166506
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
166507
|
+
* @throws {RequiredError}
|
|
166508
|
+
*/
|
|
166509
|
+
async function EntitiesApi_CreateEntityWorkspaceExportTemplates(axios, basePath, requestParameters, options, configuration) {
|
|
166510
|
+
return createRequestFunction$7(await EntitiesApiAxiosParamCreator_CreateEntityWorkspaceExportTemplates(requestParameters.workspaceId, requestParameters.jsonApiWorkspaceExportTemplatePostOptionalIdDocument, requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
166511
|
+
}
|
|
166512
|
+
/**
|
|
166513
|
+
*
|
|
166096
166514
|
* @summary Post Settings for Workspaces
|
|
166097
166515
|
* @param {AxiosInstance} axios Axios instance.
|
|
166098
166516
|
* @param {string} basePath Base path.
|
|
@@ -166587,6 +167005,19 @@ async function EntitiesApi_DeleteEntityWorkspaceDataFilters(axios, basePath, req
|
|
|
166587
167005
|
}
|
|
166588
167006
|
/**
|
|
166589
167007
|
*
|
|
167008
|
+
* @summary Delete a Workspace Export Template
|
|
167009
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
167010
|
+
* @param {string} basePath Base path.
|
|
167011
|
+
* @param {EntitiesApiDeleteEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
167012
|
+
* @param {*} [options] Override http request option.
|
|
167013
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
167014
|
+
* @throws {RequiredError}
|
|
167015
|
+
*/
|
|
167016
|
+
async function EntitiesApi_DeleteEntityWorkspaceExportTemplates(axios, basePath, requestParameters, options, configuration) {
|
|
167017
|
+
return createRequestFunction$7(await EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceExportTemplates(requestParameters.workspaceId, requestParameters.objectId, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
167018
|
+
}
|
|
167019
|
+
/**
|
|
167020
|
+
*
|
|
166590
167021
|
* @summary Delete a Setting for Workspace
|
|
166591
167022
|
* @param {AxiosInstance} axios Axios instance.
|
|
166592
167023
|
* @param {string} basePath Base path.
|
|
@@ -167210,6 +167641,19 @@ async function EntitiesApi_GetAllEntitiesWorkspaceDataFilters(axios, basePath, r
|
|
|
167210
167641
|
}
|
|
167211
167642
|
/**
|
|
167212
167643
|
*
|
|
167644
|
+
* @summary Get all Workspace Export Templates
|
|
167645
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
167646
|
+
* @param {string} basePath Base path.
|
|
167647
|
+
* @param {EntitiesApiGetAllEntitiesWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
167648
|
+
* @param {*} [options] Override http request option.
|
|
167649
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
167650
|
+
* @throws {RequiredError}
|
|
167651
|
+
*/
|
|
167652
|
+
async function EntitiesApi_GetAllEntitiesWorkspaceExportTemplates(axios, basePath, requestParameters, options, configuration) {
|
|
167653
|
+
return createRequestFunction$7(await EntitiesApiAxiosParamCreator_GetAllEntitiesWorkspaceExportTemplates(requestParameters.workspaceId, requestParameters.origin, requestParameters.filter, requestParameters.page, requestParameters.size, requestParameters.sort, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
167654
|
+
}
|
|
167655
|
+
/**
|
|
167656
|
+
*
|
|
167213
167657
|
* @summary Get all Setting for Workspaces
|
|
167214
167658
|
* @param {AxiosInstance} axios Axios instance.
|
|
167215
167659
|
* @param {string} basePath Base path.
|
|
@@ -167871,6 +168315,19 @@ async function EntitiesApi_GetEntityWorkspaceDataFilters(axios, basePath, reques
|
|
|
167871
168315
|
}
|
|
167872
168316
|
/**
|
|
167873
168317
|
*
|
|
168318
|
+
* @summary Get a Workspace Export Template
|
|
168319
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
168320
|
+
* @param {string} basePath Base path.
|
|
168321
|
+
* @param {EntitiesApiGetEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
168322
|
+
* @param {*} [options] Override http request option.
|
|
168323
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
168324
|
+
* @throws {RequiredError}
|
|
168325
|
+
*/
|
|
168326
|
+
async function EntitiesApi_GetEntityWorkspaceExportTemplates(axios, basePath, requestParameters, options, configuration) {
|
|
168327
|
+
return createRequestFunction$7(await EntitiesApiAxiosParamCreator_GetEntityWorkspaceExportTemplates(requestParameters.workspaceId, requestParameters.objectId, requestParameters.filter, requestParameters.xGDCVALIDATERELATIONS, requestParameters.metaInclude, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
168328
|
+
}
|
|
168329
|
+
/**
|
|
168330
|
+
*
|
|
167874
168331
|
* @summary Get a Setting for Workspace
|
|
167875
168332
|
* @param {AxiosInstance} axios Axios instance.
|
|
167876
168333
|
* @param {string} basePath Base path.
|
|
@@ -168404,6 +168861,19 @@ async function EntitiesApi_PatchEntityWorkspaceDataFilters(axios, basePath, requ
|
|
|
168404
168861
|
}
|
|
168405
168862
|
/**
|
|
168406
168863
|
*
|
|
168864
|
+
* @summary Patch a Workspace Export Template
|
|
168865
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
168866
|
+
* @param {string} basePath Base path.
|
|
168867
|
+
* @param {EntitiesApiPatchEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
168868
|
+
* @param {*} [options] Override http request option.
|
|
168869
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
168870
|
+
* @throws {RequiredError}
|
|
168871
|
+
*/
|
|
168872
|
+
async function EntitiesApi_PatchEntityWorkspaceExportTemplates(axios, basePath, requestParameters, options, configuration) {
|
|
168873
|
+
return createRequestFunction$7(await EntitiesApiAxiosParamCreator_PatchEntityWorkspaceExportTemplates(requestParameters.workspaceId, requestParameters.objectId, requestParameters.jsonApiWorkspaceExportTemplatePatchDocument, requestParameters.filter, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
168874
|
+
}
|
|
168875
|
+
/**
|
|
168876
|
+
*
|
|
168407
168877
|
* @summary Patch a Setting for Workspace
|
|
168408
168878
|
* @param {AxiosInstance} axios Axios instance.
|
|
168409
168879
|
* @param {string} basePath Base path.
|
|
@@ -169210,6 +169680,19 @@ async function EntitiesApi_UpdateEntityWorkspaceDataFilters(axios, basePath, req
|
|
|
169210
169680
|
}
|
|
169211
169681
|
/**
|
|
169212
169682
|
*
|
|
169683
|
+
* @summary Put a Workspace Export Template
|
|
169684
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
169685
|
+
* @param {string} basePath Base path.
|
|
169686
|
+
* @param {EntitiesApiUpdateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
169687
|
+
* @param {*} [options] Override http request option.
|
|
169688
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
169689
|
+
* @throws {RequiredError}
|
|
169690
|
+
*/
|
|
169691
|
+
async function EntitiesApi_UpdateEntityWorkspaceExportTemplates(axios, basePath, requestParameters, options, configuration) {
|
|
169692
|
+
return createRequestFunction$7(await EntitiesApiAxiosParamCreator_UpdateEntityWorkspaceExportTemplates(requestParameters.workspaceId, requestParameters.objectId, requestParameters.jsonApiWorkspaceExportTemplateInDocument, requestParameters.filter, options || {}, configuration), axios$1, BASE_PATH$7, configuration)(axios, basePath);
|
|
169693
|
+
}
|
|
169694
|
+
/**
|
|
169695
|
+
*
|
|
169213
169696
|
* @summary Put a Setting for a Workspace
|
|
169214
169697
|
* @param {AxiosInstance} axios Axios instance.
|
|
169215
169698
|
* @param {string} basePath Base path.
|
|
@@ -169639,6 +170122,17 @@ var EntitiesApi = class extends BaseAPI$7 {
|
|
|
169639
170122
|
}
|
|
169640
170123
|
/**
|
|
169641
170124
|
*
|
|
170125
|
+
* @summary Post Workspace Export Template
|
|
170126
|
+
* @param {EntitiesApiCreateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
170127
|
+
* @param {*} [options] Override http request option.
|
|
170128
|
+
* @throws {RequiredError}
|
|
170129
|
+
* @memberof EntitiesApi
|
|
170130
|
+
*/
|
|
170131
|
+
createEntityWorkspaceExportTemplates(requestParameters, options) {
|
|
170132
|
+
return EntitiesApi_CreateEntityWorkspaceExportTemplates(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
170133
|
+
}
|
|
170134
|
+
/**
|
|
170135
|
+
*
|
|
169642
170136
|
* @summary Post Settings for Workspaces
|
|
169643
170137
|
* @param {EntitiesApiCreateEntityWorkspaceSettingsRequest} requestParameters Request parameters.
|
|
169644
170138
|
* @param {*} [options] Override http request option.
|
|
@@ -170058,6 +170552,17 @@ var EntitiesApi = class extends BaseAPI$7 {
|
|
|
170058
170552
|
}
|
|
170059
170553
|
/**
|
|
170060
170554
|
*
|
|
170555
|
+
* @summary Delete a Workspace Export Template
|
|
170556
|
+
* @param {EntitiesApiDeleteEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
170557
|
+
* @param {*} [options] Override http request option.
|
|
170558
|
+
* @throws {RequiredError}
|
|
170559
|
+
* @memberof EntitiesApi
|
|
170560
|
+
*/
|
|
170561
|
+
deleteEntityWorkspaceExportTemplates(requestParameters, options) {
|
|
170562
|
+
return EntitiesApi_DeleteEntityWorkspaceExportTemplates(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
170563
|
+
}
|
|
170564
|
+
/**
|
|
170565
|
+
*
|
|
170061
170566
|
* @summary Delete a Setting for Workspace
|
|
170062
170567
|
* @param {EntitiesApiDeleteEntityWorkspaceSettingsRequest} requestParameters Request parameters.
|
|
170063
170568
|
* @param {*} [options] Override http request option.
|
|
@@ -170586,6 +171091,17 @@ var EntitiesApi = class extends BaseAPI$7 {
|
|
|
170586
171091
|
}
|
|
170587
171092
|
/**
|
|
170588
171093
|
*
|
|
171094
|
+
* @summary Get all Workspace Export Templates
|
|
171095
|
+
* @param {EntitiesApiGetAllEntitiesWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
171096
|
+
* @param {*} [options] Override http request option.
|
|
171097
|
+
* @throws {RequiredError}
|
|
171098
|
+
* @memberof EntitiesApi
|
|
171099
|
+
*/
|
|
171100
|
+
getAllEntitiesWorkspaceExportTemplates(requestParameters, options) {
|
|
171101
|
+
return EntitiesApi_GetAllEntitiesWorkspaceExportTemplates(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
171102
|
+
}
|
|
171103
|
+
/**
|
|
171104
|
+
*
|
|
170589
171105
|
* @summary Get all Setting for Workspaces
|
|
170590
171106
|
* @param {EntitiesApiGetAllEntitiesWorkspaceSettingsRequest} requestParameters Request parameters.
|
|
170591
171107
|
* @param {*} [options] Override http request option.
|
|
@@ -171146,6 +171662,17 @@ var EntitiesApi = class extends BaseAPI$7 {
|
|
|
171146
171662
|
}
|
|
171147
171663
|
/**
|
|
171148
171664
|
*
|
|
171665
|
+
* @summary Get a Workspace Export Template
|
|
171666
|
+
* @param {EntitiesApiGetEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
171667
|
+
* @param {*} [options] Override http request option.
|
|
171668
|
+
* @throws {RequiredError}
|
|
171669
|
+
* @memberof EntitiesApi
|
|
171670
|
+
*/
|
|
171671
|
+
getEntityWorkspaceExportTemplates(requestParameters, options) {
|
|
171672
|
+
return EntitiesApi_GetEntityWorkspaceExportTemplates(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
171673
|
+
}
|
|
171674
|
+
/**
|
|
171675
|
+
*
|
|
171149
171676
|
* @summary Get a Setting for Workspace
|
|
171150
171677
|
* @param {EntitiesApiGetEntityWorkspaceSettingsRequest} requestParameters Request parameters.
|
|
171151
171678
|
* @param {*} [options] Override http request option.
|
|
@@ -171598,6 +172125,17 @@ var EntitiesApi = class extends BaseAPI$7 {
|
|
|
171598
172125
|
}
|
|
171599
172126
|
/**
|
|
171600
172127
|
*
|
|
172128
|
+
* @summary Patch a Workspace Export Template
|
|
172129
|
+
* @param {EntitiesApiPatchEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
172130
|
+
* @param {*} [options] Override http request option.
|
|
172131
|
+
* @throws {RequiredError}
|
|
172132
|
+
* @memberof EntitiesApi
|
|
172133
|
+
*/
|
|
172134
|
+
patchEntityWorkspaceExportTemplates(requestParameters, options) {
|
|
172135
|
+
return EntitiesApi_PatchEntityWorkspaceExportTemplates(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
172136
|
+
}
|
|
172137
|
+
/**
|
|
172138
|
+
*
|
|
171601
172139
|
* @summary Patch a Setting for Workspace
|
|
171602
172140
|
* @param {EntitiesApiPatchEntityWorkspaceSettingsRequest} requestParameters Request parameters.
|
|
171603
172141
|
* @param {*} [options] Override http request option.
|
|
@@ -172281,6 +172819,17 @@ var EntitiesApi = class extends BaseAPI$7 {
|
|
|
172281
172819
|
}
|
|
172282
172820
|
/**
|
|
172283
172821
|
*
|
|
172822
|
+
* @summary Put a Workspace Export Template
|
|
172823
|
+
* @param {EntitiesApiUpdateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
172824
|
+
* @param {*} [options] Override http request option.
|
|
172825
|
+
* @throws {RequiredError}
|
|
172826
|
+
* @memberof EntitiesApi
|
|
172827
|
+
*/
|
|
172828
|
+
updateEntityWorkspaceExportTemplates(requestParameters, options) {
|
|
172829
|
+
return EntitiesApi_UpdateEntityWorkspaceExportTemplates(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
172830
|
+
}
|
|
172831
|
+
/**
|
|
172832
|
+
*
|
|
172284
172833
|
* @summary Put a Setting for a Workspace
|
|
172285
172834
|
* @param {EntitiesApiUpdateEntityWorkspaceSettingsRequest} requestParameters Request parameters.
|
|
172286
172835
|
* @param {*} [options] Override http request option.
|
|
@@ -177025,6 +177574,39 @@ async function ActionsApiAxiosParamCreator_CancelWorkflow(workspaceId, runId, op
|
|
|
177025
177574
|
};
|
|
177026
177575
|
}
|
|
177027
177576
|
/**
|
|
177577
|
+
*
|
|
177578
|
+
* @param {string} workspaceId Workspace identifier
|
|
177579
|
+
* @param {string} runId
|
|
177580
|
+
* @param {*} [options] Override http request option.
|
|
177581
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
177582
|
+
* @throws {RequiredError}
|
|
177583
|
+
*/
|
|
177584
|
+
async function ActionsApiAxiosParamCreator_CancelWorkflow1(workspaceId, runId, options = {}, configuration) {
|
|
177585
|
+
assertParamExists$3("cancelWorkflow1", "workspaceId", workspaceId);
|
|
177586
|
+
assertParamExists$3("cancelWorkflow1", "runId", runId);
|
|
177587
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/cancel`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{runId}`, encodeURIComponent(String(runId)));
|
|
177588
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
177589
|
+
let baseOptions;
|
|
177590
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
177591
|
+
const localVarRequestOptions = {
|
|
177592
|
+
method: "POST",
|
|
177593
|
+
...baseOptions,
|
|
177594
|
+
...options
|
|
177595
|
+
};
|
|
177596
|
+
const localVarHeaderParameter = {};
|
|
177597
|
+
setSearchParams$4(localVarUrlObj, {});
|
|
177598
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
177599
|
+
localVarRequestOptions.headers = {
|
|
177600
|
+
...localVarHeaderParameter,
|
|
177601
|
+
...headersFromBaseOptions,
|
|
177602
|
+
...options.headers
|
|
177603
|
+
};
|
|
177604
|
+
return {
|
|
177605
|
+
url: toPathString$4(localVarUrlObj),
|
|
177606
|
+
options: localVarRequestOptions
|
|
177607
|
+
};
|
|
177608
|
+
}
|
|
177609
|
+
/**
|
|
177028
177610
|
* Computes change analysis for the provided execution definition.
|
|
177029
177611
|
* @summary Compute change analysis
|
|
177030
177612
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -177381,38 +177963,6 @@ async function ActionsApiAxiosParamCreator_ComputeValidObjects(workspaceId, afmV
|
|
|
177381
177963
|
};
|
|
177382
177964
|
}
|
|
177383
177965
|
/**
|
|
177384
|
-
* Returns a list of Users who created any object for this workspace
|
|
177385
|
-
* @summary Get Analytics Catalog CreatedBy Users
|
|
177386
|
-
* @param {string} workspaceId Workspace identifier
|
|
177387
|
-
* @param {*} [options] Override http request option.
|
|
177388
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
177389
|
-
* @throws {RequiredError}
|
|
177390
|
-
*/
|
|
177391
|
-
async function ActionsApiAxiosParamCreator_CreatedBy(workspaceId, options = {}, configuration) {
|
|
177392
|
-
assertParamExists$3("createdBy", "workspaceId", workspaceId);
|
|
177393
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/createdBy`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
177394
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
177395
|
-
let baseOptions;
|
|
177396
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
177397
|
-
const localVarRequestOptions = {
|
|
177398
|
-
method: "GET",
|
|
177399
|
-
...baseOptions,
|
|
177400
|
-
...options
|
|
177401
|
-
};
|
|
177402
|
-
const localVarHeaderParameter = {};
|
|
177403
|
-
setSearchParams$4(localVarUrlObj, {});
|
|
177404
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
177405
|
-
localVarRequestOptions.headers = {
|
|
177406
|
-
...localVarHeaderParameter,
|
|
177407
|
-
...headersFromBaseOptions,
|
|
177408
|
-
...options.headers
|
|
177409
|
-
};
|
|
177410
|
-
return {
|
|
177411
|
-
url: toPathString$4(localVarUrlObj),
|
|
177412
|
-
options: localVarRequestOptions
|
|
177413
|
-
};
|
|
177414
|
-
}
|
|
177415
|
-
/**
|
|
177416
177966
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
177417
177967
|
* @summary AFM explain resource.
|
|
177418
177968
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -177453,8 +178003,8 @@ async function ActionsApiAxiosParamCreator_ExplainAFM(workspaceId, afmExecution,
|
|
|
177453
178003
|
};
|
|
177454
178004
|
}
|
|
177455
178005
|
/**
|
|
177456
|
-
*
|
|
177457
|
-
* @summary
|
|
178006
|
+
* Computes forecasted data points from the provided execution result and parameters.
|
|
178007
|
+
* @summary Smart functions - Forecast
|
|
177458
178008
|
* @param {string} workspaceId Workspace identifier
|
|
177459
178009
|
* @param {string} resultId Input result ID to be used in the computation
|
|
177460
178010
|
* @param {ForecastRequest} forecastRequest
|
|
@@ -177495,8 +178045,8 @@ async function ActionsApiAxiosParamCreator_Forecast(workspaceId, resultId, forec
|
|
|
177495
178045
|
};
|
|
177496
178046
|
}
|
|
177497
178047
|
/**
|
|
177498
|
-
*
|
|
177499
|
-
* @summary
|
|
178048
|
+
* Gets forecast result.
|
|
178049
|
+
* @summary Smart functions - Forecast Result
|
|
177500
178050
|
* @param {string} workspaceId Workspace identifier
|
|
177501
178051
|
* @param {string} resultId Result ID
|
|
177502
178052
|
* @param {number} [offset]
|
|
@@ -177571,6 +178121,43 @@ async function ActionsApiAxiosParamCreator_GenerateDashboardSummary(workspaceId,
|
|
|
177571
178121
|
};
|
|
177572
178122
|
}
|
|
177573
178123
|
/**
|
|
178124
|
+
*
|
|
178125
|
+
* @param {string} workspaceId Workspace identifier
|
|
178126
|
+
* @param {DashboardSummaryRequestDto} dashboardSummaryRequestDto
|
|
178127
|
+
* @param {*} [options] Override http request option.
|
|
178128
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
178129
|
+
* @throws {RequiredError}
|
|
178130
|
+
*/
|
|
178131
|
+
async function ActionsApiAxiosParamCreator_GenerateDashboardSummary1(workspaceId, dashboardSummaryRequestDto, options = {}, configuration) {
|
|
178132
|
+
assertParamExists$3("generateDashboardSummary1", "workspaceId", workspaceId);
|
|
178133
|
+
assertParamExists$3("generateDashboardSummary1", "dashboardSummaryRequestDto", dashboardSummaryRequestDto);
|
|
178134
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/dashboardSummary`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
178135
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
178136
|
+
let baseOptions;
|
|
178137
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
178138
|
+
const localVarRequestOptions = {
|
|
178139
|
+
method: "POST",
|
|
178140
|
+
...baseOptions,
|
|
178141
|
+
...options
|
|
178142
|
+
};
|
|
178143
|
+
const localVarHeaderParameter = {};
|
|
178144
|
+
const localVarQueryParameter = {};
|
|
178145
|
+
const consumes = ["application/json"];
|
|
178146
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
178147
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter);
|
|
178148
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
178149
|
+
localVarRequestOptions.headers = {
|
|
178150
|
+
...localVarHeaderParameter,
|
|
178151
|
+
...headersFromBaseOptions,
|
|
178152
|
+
...options.headers
|
|
178153
|
+
};
|
|
178154
|
+
localVarRequestOptions.data = typeof dashboardSummaryRequestDto !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(dashboardSummaryRequestDto !== void 0 ? dashboardSummaryRequestDto : {}) : dashboardSummaryRequestDto || "";
|
|
178155
|
+
return {
|
|
178156
|
+
url: toPathString$4(localVarUrlObj),
|
|
178157
|
+
options: localVarRequestOptions
|
|
178158
|
+
};
|
|
178159
|
+
}
|
|
178160
|
+
/**
|
|
177574
178161
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
177575
178162
|
* @summary Generate Description for Analytics Object
|
|
177576
178163
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -177609,6 +178196,43 @@ async function ActionsApiAxiosParamCreator_GenerateDescription(workspaceId, gene
|
|
|
177609
178196
|
};
|
|
177610
178197
|
}
|
|
177611
178198
|
/**
|
|
178199
|
+
*
|
|
178200
|
+
* @param {string} workspaceId Workspace identifier
|
|
178201
|
+
* @param {KnowledgeRecommendationsRequestDto} knowledgeRecommendationsRequestDto
|
|
178202
|
+
* @param {*} [options] Override http request option.
|
|
178203
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
178204
|
+
* @throws {RequiredError}
|
|
178205
|
+
*/
|
|
178206
|
+
async function ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(workspaceId, knowledgeRecommendationsRequestDto, options = {}, configuration) {
|
|
178207
|
+
assertParamExists$3("generateKnowledgeRecommendations", "workspaceId", workspaceId);
|
|
178208
|
+
assertParamExists$3("generateKnowledgeRecommendations", "knowledgeRecommendationsRequestDto", knowledgeRecommendationsRequestDto);
|
|
178209
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/knowledgeRecommendations`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
178210
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
178211
|
+
let baseOptions;
|
|
178212
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
178213
|
+
const localVarRequestOptions = {
|
|
178214
|
+
method: "POST",
|
|
178215
|
+
...baseOptions,
|
|
178216
|
+
...options
|
|
178217
|
+
};
|
|
178218
|
+
const localVarHeaderParameter = {};
|
|
178219
|
+
const localVarQueryParameter = {};
|
|
178220
|
+
const consumes = ["application/json"];
|
|
178221
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
178222
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter);
|
|
178223
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
178224
|
+
localVarRequestOptions.headers = {
|
|
178225
|
+
...localVarHeaderParameter,
|
|
178226
|
+
...headersFromBaseOptions,
|
|
178227
|
+
...options.headers
|
|
178228
|
+
};
|
|
178229
|
+
localVarRequestOptions.data = typeof knowledgeRecommendationsRequestDto !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(knowledgeRecommendationsRequestDto !== void 0 ? knowledgeRecommendationsRequestDto : {}) : knowledgeRecommendationsRequestDto || "";
|
|
178230
|
+
return {
|
|
178231
|
+
url: toPathString$4(localVarUrlObj),
|
|
178232
|
+
options: localVarRequestOptions
|
|
178233
|
+
};
|
|
178234
|
+
}
|
|
178235
|
+
/**
|
|
177612
178236
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
177613
178237
|
* @summary Generate Title for Analytics Object
|
|
177614
178238
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -177746,6 +178370,39 @@ async function ActionsApiAxiosParamCreator_GetWorkflowStatus(workspaceId, runId,
|
|
|
177746
178370
|
};
|
|
177747
178371
|
}
|
|
177748
178372
|
/**
|
|
178373
|
+
*
|
|
178374
|
+
* @param {string} workspaceId Workspace identifier
|
|
178375
|
+
* @param {string} runId
|
|
178376
|
+
* @param {*} [options] Override http request option.
|
|
178377
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
178378
|
+
* @throws {RequiredError}
|
|
178379
|
+
*/
|
|
178380
|
+
async function ActionsApiAxiosParamCreator_GetWorkflowStatus1(workspaceId, runId, options = {}, configuration) {
|
|
178381
|
+
assertParamExists$3("getWorkflowStatus1", "workspaceId", workspaceId);
|
|
178382
|
+
assertParamExists$3("getWorkflowStatus1", "runId", runId);
|
|
178383
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/status`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{runId}`, encodeURIComponent(String(runId)));
|
|
178384
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
178385
|
+
let baseOptions;
|
|
178386
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
178387
|
+
const localVarRequestOptions = {
|
|
178388
|
+
method: "GET",
|
|
178389
|
+
...baseOptions,
|
|
178390
|
+
...options
|
|
178391
|
+
};
|
|
178392
|
+
const localVarHeaderParameter = {};
|
|
178393
|
+
setSearchParams$4(localVarUrlObj, {});
|
|
178394
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
178395
|
+
localVarRequestOptions.headers = {
|
|
178396
|
+
...localVarHeaderParameter,
|
|
178397
|
+
...headersFromBaseOptions,
|
|
178398
|
+
...options.headers
|
|
178399
|
+
};
|
|
178400
|
+
return {
|
|
178401
|
+
url: toPathString$4(localVarUrlObj),
|
|
178402
|
+
options: localVarRequestOptions
|
|
178403
|
+
};
|
|
178404
|
+
}
|
|
178405
|
+
/**
|
|
177749
178406
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
177750
178407
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
177751
178408
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -178181,38 +178838,6 @@ async function ActionsApiAxiosParamCreator_RetrieveResultBinary(workspaceId, res
|
|
|
178181
178838
|
};
|
|
178182
178839
|
}
|
|
178183
178840
|
/**
|
|
178184
|
-
* Returns a list of tags for this workspace
|
|
178185
|
-
* @summary Get Analytics Catalog Tags
|
|
178186
|
-
* @param {string} workspaceId Workspace identifier
|
|
178187
|
-
* @param {*} [options] Override http request option.
|
|
178188
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
178189
|
-
* @throws {RequiredError}
|
|
178190
|
-
*/
|
|
178191
|
-
async function ActionsApiAxiosParamCreator_Tags(workspaceId, options = {}, configuration) {
|
|
178192
|
-
assertParamExists$3("tags", "workspaceId", workspaceId);
|
|
178193
|
-
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/tags`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId)));
|
|
178194
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
178195
|
-
let baseOptions;
|
|
178196
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
178197
|
-
const localVarRequestOptions = {
|
|
178198
|
-
method: "GET",
|
|
178199
|
-
...baseOptions,
|
|
178200
|
-
...options
|
|
178201
|
-
};
|
|
178202
|
-
const localVarHeaderParameter = {};
|
|
178203
|
-
setSearchParams$4(localVarUrlObj, {});
|
|
178204
|
-
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
178205
|
-
localVarRequestOptions.headers = {
|
|
178206
|
-
...localVarHeaderParameter,
|
|
178207
|
-
...headersFromBaseOptions,
|
|
178208
|
-
...options.headers
|
|
178209
|
-
};
|
|
178210
|
-
return {
|
|
178211
|
-
url: toPathString$4(localVarUrlObj),
|
|
178212
|
-
options: localVarRequestOptions
|
|
178213
|
-
};
|
|
178214
|
-
}
|
|
178215
|
-
/**
|
|
178216
178841
|
* Tests LLM provider connectivity with a full definition.
|
|
178217
178842
|
* @summary Test LLM Provider
|
|
178218
178843
|
* @param {TestLlmProviderDefinitionRequest} testLlmProviderDefinitionRequest
|
|
@@ -178349,6 +178974,45 @@ async function ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculation(works
|
|
|
178349
178974
|
};
|
|
178350
178975
|
}
|
|
178351
178976
|
/**
|
|
178977
|
+
*
|
|
178978
|
+
* @param {string} workspaceId Workspace identifier
|
|
178979
|
+
* @param {string} runId
|
|
178980
|
+
* @param {FeedbackRequestDto} feedbackRequestDto
|
|
178981
|
+
* @param {*} [options] Override http request option.
|
|
178982
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
178983
|
+
* @throws {RequiredError}
|
|
178984
|
+
*/
|
|
178985
|
+
async function ActionsApiAxiosParamCreator_UserFeedback(workspaceId, runId, feedbackRequestDto, options = {}, configuration) {
|
|
178986
|
+
assertParamExists$3("userFeedback", "workspaceId", workspaceId);
|
|
178987
|
+
assertParamExists$3("userFeedback", "runId", runId);
|
|
178988
|
+
assertParamExists$3("userFeedback", "feedbackRequestDto", feedbackRequestDto);
|
|
178989
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/agent/{runId}/feedback`.replace(`{workspaceId}`, encodeURIComponent(String(workspaceId))).replace(`{runId}`, encodeURIComponent(String(runId)));
|
|
178990
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL$4);
|
|
178991
|
+
let baseOptions;
|
|
178992
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
178993
|
+
const localVarRequestOptions = {
|
|
178994
|
+
method: "POST",
|
|
178995
|
+
...baseOptions,
|
|
178996
|
+
...options
|
|
178997
|
+
};
|
|
178998
|
+
const localVarHeaderParameter = {};
|
|
178999
|
+
const localVarQueryParameter = {};
|
|
179000
|
+
const consumes = ["application/json"];
|
|
179001
|
+
localVarHeaderParameter["Content-Type"] = consumes.includes("application/json") ? "application/json" : consumes[0];
|
|
179002
|
+
setSearchParams$4(localVarUrlObj, localVarQueryParameter);
|
|
179003
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
179004
|
+
localVarRequestOptions.headers = {
|
|
179005
|
+
...localVarHeaderParameter,
|
|
179006
|
+
...headersFromBaseOptions,
|
|
179007
|
+
...options.headers
|
|
179008
|
+
};
|
|
179009
|
+
localVarRequestOptions.data = typeof feedbackRequestDto !== "string" || localVarRequestOptions.headers["Content-Type"] === "application/json" ? JSON.stringify(feedbackRequestDto !== void 0 ? feedbackRequestDto : {}) : feedbackRequestDto || "";
|
|
179010
|
+
return {
|
|
179011
|
+
url: toPathString$4(localVarUrlObj),
|
|
179012
|
+
options: localVarRequestOptions
|
|
179013
|
+
};
|
|
179014
|
+
}
|
|
179015
|
+
/**
|
|
178352
179016
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
178353
179017
|
* @summary Validate LLM Endpoint (Removed)
|
|
178354
179018
|
* @param {*} [options] Override http request option.
|
|
@@ -178526,6 +179190,18 @@ async function ActionsApi_CancelWorkflow(axios, basePath, requestParameters, opt
|
|
|
178526
179190
|
return createRequestFunction$4(await ActionsApiAxiosParamCreator_CancelWorkflow(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration), axios$1, BASE_PATH$4, configuration)(axios, basePath);
|
|
178527
179191
|
}
|
|
178528
179192
|
/**
|
|
179193
|
+
*
|
|
179194
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
179195
|
+
* @param {string} basePath Base path.
|
|
179196
|
+
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
179197
|
+
* @param {*} [options] Override http request option.
|
|
179198
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
179199
|
+
* @throws {RequiredError}
|
|
179200
|
+
*/
|
|
179201
|
+
async function ActionsApi_CancelWorkflow1(axios, basePath, requestParameters, options, configuration) {
|
|
179202
|
+
return createRequestFunction$4(await ActionsApiAxiosParamCreator_CancelWorkflow1(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration), axios$1, BASE_PATH$4, configuration)(axios, basePath);
|
|
179203
|
+
}
|
|
179204
|
+
/**
|
|
178529
179205
|
* Computes change analysis for the provided execution definition.
|
|
178530
179206
|
* @summary Compute change analysis
|
|
178531
179207
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -178643,19 +179319,6 @@ async function ActionsApi_ComputeValidObjects(axios, basePath, requestParameters
|
|
|
178643
179319
|
return createRequestFunction$4(await ActionsApiAxiosParamCreator_ComputeValidObjects(requestParameters.workspaceId, requestParameters.afmValidObjectsQuery, options || {}, configuration), axios$1, BASE_PATH$4, configuration)(axios, basePath);
|
|
178644
179320
|
}
|
|
178645
179321
|
/**
|
|
178646
|
-
* Returns a list of Users who created any object for this workspace
|
|
178647
|
-
* @summary Get Analytics Catalog CreatedBy Users
|
|
178648
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
178649
|
-
* @param {string} basePath Base path.
|
|
178650
|
-
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
178651
|
-
* @param {*} [options] Override http request option.
|
|
178652
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
178653
|
-
* @throws {RequiredError}
|
|
178654
|
-
*/
|
|
178655
|
-
async function ActionsApi_CreatedBy(axios, basePath, requestParameters, options, configuration) {
|
|
178656
|
-
return createRequestFunction$4(await ActionsApiAxiosParamCreator_CreatedBy(requestParameters.workspaceId, options || {}, configuration), axios$1, BASE_PATH$4, configuration)(axios, basePath);
|
|
178657
|
-
}
|
|
178658
|
-
/**
|
|
178659
179322
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
178660
179323
|
* @summary AFM explain resource.
|
|
178661
179324
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -178669,8 +179332,8 @@ async function ActionsApi_ExplainAFM(axios, basePath, requestParameters, options
|
|
|
178669
179332
|
return createRequestFunction$4(await ActionsApiAxiosParamCreator_ExplainAFM(requestParameters.workspaceId, requestParameters.afmExecution, requestParameters.explainType, options || {}, configuration), axios$1, BASE_PATH$4, configuration)(axios, basePath);
|
|
178670
179333
|
}
|
|
178671
179334
|
/**
|
|
178672
|
-
*
|
|
178673
|
-
* @summary
|
|
179335
|
+
* Computes forecasted data points from the provided execution result and parameters.
|
|
179336
|
+
* @summary Smart functions - Forecast
|
|
178674
179337
|
* @param {AxiosInstance} axios Axios instance.
|
|
178675
179338
|
* @param {string} basePath Base path.
|
|
178676
179339
|
* @param {ActionsApiForecastRequest} requestParameters Request parameters.
|
|
@@ -178682,8 +179345,8 @@ async function ActionsApi_Forecast(axios, basePath, requestParameters, options,
|
|
|
178682
179345
|
return createRequestFunction$4(await ActionsApiAxiosParamCreator_Forecast(requestParameters.workspaceId, requestParameters.resultId, requestParameters.forecastRequest, requestParameters.skipCache, options || {}, configuration), axios$1, BASE_PATH$4, configuration)(axios, basePath);
|
|
178683
179346
|
}
|
|
178684
179347
|
/**
|
|
178685
|
-
*
|
|
178686
|
-
* @summary
|
|
179348
|
+
* Gets forecast result.
|
|
179349
|
+
* @summary Smart functions - Forecast Result
|
|
178687
179350
|
* @param {AxiosInstance} axios Axios instance.
|
|
178688
179351
|
* @param {string} basePath Base path.
|
|
178689
179352
|
* @param {ActionsApiForecastResultRequest} requestParameters Request parameters.
|
|
@@ -178707,6 +179370,18 @@ async function ActionsApi_GenerateDashboardSummary(axios, basePath, requestParam
|
|
|
178707
179370
|
return createRequestFunction$4(await ActionsApiAxiosParamCreator_GenerateDashboardSummary(requestParameters.workspaceId, requestParameters.workflowDashboardSummaryRequestDto, options || {}, configuration), axios$1, BASE_PATH$4, configuration)(axios, basePath);
|
|
178708
179371
|
}
|
|
178709
179372
|
/**
|
|
179373
|
+
*
|
|
179374
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
179375
|
+
* @param {string} basePath Base path.
|
|
179376
|
+
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
179377
|
+
* @param {*} [options] Override http request option.
|
|
179378
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
179379
|
+
* @throws {RequiredError}
|
|
179380
|
+
*/
|
|
179381
|
+
async function ActionsApi_GenerateDashboardSummary1(axios, basePath, requestParameters, options, configuration) {
|
|
179382
|
+
return createRequestFunction$4(await ActionsApiAxiosParamCreator_GenerateDashboardSummary1(requestParameters.workspaceId, requestParameters.dashboardSummaryRequestDto, options || {}, configuration), axios$1, BASE_PATH$4, configuration)(axios, basePath);
|
|
179383
|
+
}
|
|
179384
|
+
/**
|
|
178710
179385
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
178711
179386
|
* @summary Generate Description for Analytics Object
|
|
178712
179387
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -178720,6 +179395,18 @@ async function ActionsApi_GenerateDescription(axios, basePath, requestParameters
|
|
|
178720
179395
|
return createRequestFunction$4(await ActionsApiAxiosParamCreator_GenerateDescription(requestParameters.workspaceId, requestParameters.generateDescriptionRequest, options || {}, configuration), axios$1, BASE_PATH$4, configuration)(axios, basePath);
|
|
178721
179396
|
}
|
|
178722
179397
|
/**
|
|
179398
|
+
*
|
|
179399
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
179400
|
+
* @param {string} basePath Base path.
|
|
179401
|
+
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
179402
|
+
* @param {*} [options] Override http request option.
|
|
179403
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
179404
|
+
* @throws {RequiredError}
|
|
179405
|
+
*/
|
|
179406
|
+
async function ActionsApi_GenerateKnowledgeRecommendations(axios, basePath, requestParameters, options, configuration) {
|
|
179407
|
+
return createRequestFunction$4(await ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(requestParameters.workspaceId, requestParameters.knowledgeRecommendationsRequestDto, options || {}, configuration), axios$1, BASE_PATH$4, configuration)(axios, basePath);
|
|
179408
|
+
}
|
|
179409
|
+
/**
|
|
178723
179410
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
178724
179411
|
* @summary Generate Title for Analytics Object
|
|
178725
179412
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -178771,6 +179458,18 @@ async function ActionsApi_GetWorkflowStatus(axios, basePath, requestParameters,
|
|
|
178771
179458
|
return createRequestFunction$4(await ActionsApiAxiosParamCreator_GetWorkflowStatus(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration), axios$1, BASE_PATH$4, configuration)(axios, basePath);
|
|
178772
179459
|
}
|
|
178773
179460
|
/**
|
|
179461
|
+
*
|
|
179462
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
179463
|
+
* @param {string} basePath Base path.
|
|
179464
|
+
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
179465
|
+
* @param {*} [options] Override http request option.
|
|
179466
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
179467
|
+
* @throws {RequiredError}
|
|
179468
|
+
*/
|
|
179469
|
+
async function ActionsApi_GetWorkflowStatus1(axios, basePath, requestParameters, options, configuration) {
|
|
179470
|
+
return createRequestFunction$4(await ActionsApiAxiosParamCreator_GetWorkflowStatus1(requestParameters.workspaceId, requestParameters.runId, options || {}, configuration), axios$1, BASE_PATH$4, configuration)(axios, basePath);
|
|
179471
|
+
}
|
|
179472
|
+
/**
|
|
178774
179473
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
178775
179474
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
178776
179475
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -178927,19 +179626,6 @@ async function ActionsApi_RetrieveResultBinary(axios, basePath, requestParameter
|
|
|
178927
179626
|
return createRequestFunction$4(await ActionsApiAxiosParamCreator_RetrieveResultBinary(requestParameters.workspaceId, requestParameters.resultId, requestParameters.xGDCCANCELTOKEN, options || {}, configuration), axios$1, BASE_PATH$4, configuration)(axios, basePath);
|
|
178928
179627
|
}
|
|
178929
179628
|
/**
|
|
178930
|
-
* Returns a list of tags for this workspace
|
|
178931
|
-
* @summary Get Analytics Catalog Tags
|
|
178932
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
178933
|
-
* @param {string} basePath Base path.
|
|
178934
|
-
* @param {ActionsApiTagsRequest} requestParameters Request parameters.
|
|
178935
|
-
* @param {*} [options] Override http request option.
|
|
178936
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
178937
|
-
* @throws {RequiredError}
|
|
178938
|
-
*/
|
|
178939
|
-
async function ActionsApi_Tags(axios, basePath, requestParameters, options, configuration) {
|
|
178940
|
-
return createRequestFunction$4(await ActionsApiAxiosParamCreator_Tags(requestParameters.workspaceId, options || {}, configuration), axios$1, BASE_PATH$4, configuration)(axios, basePath);
|
|
178941
|
-
}
|
|
178942
|
-
/**
|
|
178943
179629
|
* Tests LLM provider connectivity with a full definition.
|
|
178944
179630
|
* @summary Test LLM Provider
|
|
178945
179631
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -178992,6 +179678,18 @@ async function ActionsApi_TriggerQualityIssuesCalculation(axios, basePath, reque
|
|
|
178992
179678
|
return createRequestFunction$4(await ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculation(requestParameters.workspaceId, options || {}, configuration), axios$1, BASE_PATH$4, configuration)(axios, basePath);
|
|
178993
179679
|
}
|
|
178994
179680
|
/**
|
|
179681
|
+
*
|
|
179682
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
179683
|
+
* @param {string} basePath Base path.
|
|
179684
|
+
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
179685
|
+
* @param {*} [options] Override http request option.
|
|
179686
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
179687
|
+
* @throws {RequiredError}
|
|
179688
|
+
*/
|
|
179689
|
+
async function ActionsApi_UserFeedback(axios, basePath, requestParameters, options, configuration) {
|
|
179690
|
+
return createRequestFunction$4(await ActionsApiAxiosParamCreator_UserFeedback(requestParameters.workspaceId, requestParameters.runId, requestParameters.feedbackRequestDto, options || {}, configuration), axios$1, BASE_PATH$4, configuration)(axios, basePath);
|
|
179691
|
+
}
|
|
179692
|
+
/**
|
|
178995
179693
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
178996
179694
|
* @summary Validate LLM Endpoint (Removed)
|
|
178997
179695
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -179124,6 +179822,16 @@ var ActionsApi$2 = class extends BaseAPI$4 {
|
|
|
179124
179822
|
return ActionsApi_CancelWorkflow(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
179125
179823
|
}
|
|
179126
179824
|
/**
|
|
179825
|
+
*
|
|
179826
|
+
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
179827
|
+
* @param {*} [options] Override http request option.
|
|
179828
|
+
* @throws {RequiredError}
|
|
179829
|
+
* @memberof ActionsApi
|
|
179830
|
+
*/
|
|
179831
|
+
cancelWorkflow1(requestParameters, options) {
|
|
179832
|
+
return ActionsApi_CancelWorkflow1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
179833
|
+
}
|
|
179834
|
+
/**
|
|
179127
179835
|
* Computes change analysis for the provided execution definition.
|
|
179128
179836
|
* @summary Compute change analysis
|
|
179129
179837
|
* @param {ActionsApiChangeAnalysisRequest} requestParameters Request parameters.
|
|
@@ -179223,17 +179931,6 @@ var ActionsApi$2 = class extends BaseAPI$4 {
|
|
|
179223
179931
|
return ActionsApi_ComputeValidObjects(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
179224
179932
|
}
|
|
179225
179933
|
/**
|
|
179226
|
-
* Returns a list of Users who created any object for this workspace
|
|
179227
|
-
* @summary Get Analytics Catalog CreatedBy Users
|
|
179228
|
-
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
179229
|
-
* @param {*} [options] Override http request option.
|
|
179230
|
-
* @throws {RequiredError}
|
|
179231
|
-
* @memberof ActionsApi
|
|
179232
|
-
*/
|
|
179233
|
-
createdBy(requestParameters, options) {
|
|
179234
|
-
return ActionsApi_CreatedBy(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
179235
|
-
}
|
|
179236
|
-
/**
|
|
179237
179934
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
179238
179935
|
* @summary AFM explain resource.
|
|
179239
179936
|
* @param {ActionsApiExplainAFMRequest} requestParameters Request parameters.
|
|
@@ -179245,8 +179942,8 @@ var ActionsApi$2 = class extends BaseAPI$4 {
|
|
|
179245
179942
|
return ActionsApi_ExplainAFM(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
179246
179943
|
}
|
|
179247
179944
|
/**
|
|
179248
|
-
*
|
|
179249
|
-
* @summary
|
|
179945
|
+
* Computes forecasted data points from the provided execution result and parameters.
|
|
179946
|
+
* @summary Smart functions - Forecast
|
|
179250
179947
|
* @param {ActionsApiForecastRequest} requestParameters Request parameters.
|
|
179251
179948
|
* @param {*} [options] Override http request option.
|
|
179252
179949
|
* @throws {RequiredError}
|
|
@@ -179256,8 +179953,8 @@ var ActionsApi$2 = class extends BaseAPI$4 {
|
|
|
179256
179953
|
return ActionsApi_Forecast(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
179257
179954
|
}
|
|
179258
179955
|
/**
|
|
179259
|
-
*
|
|
179260
|
-
* @summary
|
|
179956
|
+
* Gets forecast result.
|
|
179957
|
+
* @summary Smart functions - Forecast Result
|
|
179261
179958
|
* @param {ActionsApiForecastResultRequest} requestParameters Request parameters.
|
|
179262
179959
|
* @param {*} [options] Override http request option.
|
|
179263
179960
|
* @throws {RequiredError}
|
|
@@ -179277,6 +179974,16 @@ var ActionsApi$2 = class extends BaseAPI$4 {
|
|
|
179277
179974
|
return ActionsApi_GenerateDashboardSummary(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
179278
179975
|
}
|
|
179279
179976
|
/**
|
|
179977
|
+
*
|
|
179978
|
+
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
179979
|
+
* @param {*} [options] Override http request option.
|
|
179980
|
+
* @throws {RequiredError}
|
|
179981
|
+
* @memberof ActionsApi
|
|
179982
|
+
*/
|
|
179983
|
+
generateDashboardSummary1(requestParameters, options) {
|
|
179984
|
+
return ActionsApi_GenerateDashboardSummary1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
179985
|
+
}
|
|
179986
|
+
/**
|
|
179280
179987
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
179281
179988
|
* @summary Generate Description for Analytics Object
|
|
179282
179989
|
* @param {ActionsApiGenerateDescriptionRequest} requestParameters Request parameters.
|
|
@@ -179288,6 +179995,16 @@ var ActionsApi$2 = class extends BaseAPI$4 {
|
|
|
179288
179995
|
return ActionsApi_GenerateDescription(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
179289
179996
|
}
|
|
179290
179997
|
/**
|
|
179998
|
+
*
|
|
179999
|
+
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
180000
|
+
* @param {*} [options] Override http request option.
|
|
180001
|
+
* @throws {RequiredError}
|
|
180002
|
+
* @memberof ActionsApi
|
|
180003
|
+
*/
|
|
180004
|
+
generateKnowledgeRecommendations(requestParameters, options) {
|
|
180005
|
+
return ActionsApi_GenerateKnowledgeRecommendations(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
180006
|
+
}
|
|
180007
|
+
/**
|
|
179291
180008
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
179292
180009
|
* @summary Generate Title for Analytics Object
|
|
179293
180010
|
* @param {ActionsApiGenerateTitleRequest} requestParameters Request parameters.
|
|
@@ -179331,6 +180048,16 @@ var ActionsApi$2 = class extends BaseAPI$4 {
|
|
|
179331
180048
|
return ActionsApi_GetWorkflowStatus(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
179332
180049
|
}
|
|
179333
180050
|
/**
|
|
180051
|
+
*
|
|
180052
|
+
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
180053
|
+
* @param {*} [options] Override http request option.
|
|
180054
|
+
* @throws {RequiredError}
|
|
180055
|
+
* @memberof ActionsApi
|
|
180056
|
+
*/
|
|
180057
|
+
getWorkflowStatus1(requestParameters, options) {
|
|
180058
|
+
return ActionsApi_GetWorkflowStatus1(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
180059
|
+
}
|
|
180060
|
+
/**
|
|
179334
180061
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
179335
180062
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
179336
180063
|
* @param {ActionsApiKeyDriverAnalysisRequest} requestParameters Request parameters.
|
|
@@ -179464,17 +180191,6 @@ var ActionsApi$2 = class extends BaseAPI$4 {
|
|
|
179464
180191
|
return ActionsApi_RetrieveResultBinary(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
179465
180192
|
}
|
|
179466
180193
|
/**
|
|
179467
|
-
* Returns a list of tags for this workspace
|
|
179468
|
-
* @summary Get Analytics Catalog Tags
|
|
179469
|
-
* @param {ActionsApiTagsRequest} requestParameters Request parameters.
|
|
179470
|
-
* @param {*} [options] Override http request option.
|
|
179471
|
-
* @throws {RequiredError}
|
|
179472
|
-
* @memberof ActionsApi
|
|
179473
|
-
*/
|
|
179474
|
-
tags(requestParameters, options) {
|
|
179475
|
-
return ActionsApi_Tags(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
179476
|
-
}
|
|
179477
|
-
/**
|
|
179478
180194
|
* Tests LLM provider connectivity with a full definition.
|
|
179479
180195
|
* @summary Test LLM Provider
|
|
179480
180196
|
* @param {ActionsApiTestLlmProviderRequest} requestParameters Request parameters.
|
|
@@ -179519,6 +180235,16 @@ var ActionsApi$2 = class extends BaseAPI$4 {
|
|
|
179519
180235
|
return ActionsApi_TriggerQualityIssuesCalculation(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
179520
180236
|
}
|
|
179521
180237
|
/**
|
|
180238
|
+
*
|
|
180239
|
+
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
180240
|
+
* @param {*} [options] Override http request option.
|
|
180241
|
+
* @throws {RequiredError}
|
|
180242
|
+
* @memberof ActionsApi
|
|
180243
|
+
*/
|
|
180244
|
+
userFeedback(requestParameters, options) {
|
|
180245
|
+
return ActionsApi_UserFeedback(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
180246
|
+
}
|
|
180247
|
+
/**
|
|
179522
180248
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
179523
180249
|
* @summary Validate LLM Endpoint (Removed)
|
|
179524
180250
|
* @param {*} [options] Override http request option.
|
|
@@ -180623,8 +181349,6 @@ const tigerGenAIClientFactory = (axios) => {
|
|
|
180623
181349
|
getQualityIssues: actionsApi.getQualityIssues.bind(actionsApi),
|
|
180624
181350
|
getQualityIssuesCalculationStatus: actionsApi.getQualityIssuesCalculationStatus.bind(actionsApi),
|
|
180625
181351
|
triggerQualityIssuesCalculation: actionsApi.triggerQualityIssuesCalculation.bind(actionsApi),
|
|
180626
|
-
tags: actionsApi.tags.bind(actionsApi),
|
|
180627
|
-
createdBy: actionsApi.createdBy.bind(actionsApi),
|
|
180628
181352
|
memoryCreatedByUsers: actionsApi.memoryCreatedByUsers.bind(actionsApi),
|
|
180629
181353
|
getObservabilityOverview: observabilityApi.getObservabilityOverview.bind(observabilityApi)
|
|
180630
181354
|
};
|
|
@@ -196256,7 +196980,7 @@ async function get(state, opts) {
|
|
|
196256
196980
|
//#endregion
|
|
196257
196981
|
//#region ../code/package.json
|
|
196258
196982
|
var name = "@gooddata/code";
|
|
196259
|
-
var version = "0.42.0-alpha.
|
|
196983
|
+
var version = "0.42.0-alpha.5";
|
|
196260
196984
|
//#endregion
|
|
196261
196985
|
//#region ../code/esm/actions/initialize.js
|
|
196262
196986
|
async function initialize(state, emitter, options) {
|